]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
4 years agoMake zlib encoding messages idempotent.
markj [Wed, 19 Jun 2019 16:09:20 +0000 (16:09 +0000)]
Make zlib encoding messages idempotent.

Otherwise duplicate messages can trigger a reinitialization of the
compression stream while the update thread is running.  Also ensure
that the stream is initialized before the update thread may attempt
to use it.

PR: 238333
Reviewed by: cem, rgrimes
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D20673

4 years agoUse sbuf_cat() in GEOM confxml generation.
mav [Wed, 19 Jun 2019 15:36:02 +0000 (15:36 +0000)]
Use sbuf_cat() in GEOM confxml generation.

When it comes to megabytes of text, difference between sbuf_printf() and
sbuf_cat() becomes substantial.

MFC after: 2 weeks
Sponsored by: iXsystems, Inc.

4 years agoAdd the ability to limit how much the code will fragment the RACK send map
jtl [Wed, 19 Jun 2019 13:55:00 +0000 (13:55 +0000)]
Add the ability to limit how much the code will fragment the RACK send map
in response to SACKs. The default behavior is unchanged; however, the limit
can be activated by changing the new net.inet.tcp.rack.split_limit sysctl.

Submitted by: Peter Lei <peterlei@netflix.com>
Reported by: jtl
Reviewed by: lstewart (earlier version)
Security: CVE-2019-5599

4 years agoFix typo in r349178.
mav [Wed, 19 Jun 2019 13:30:50 +0000 (13:30 +0000)]
Fix typo in r349178.

Reported by: ae
MFC after: 1 week

4 years ago[PPC] Fix loader input with newer QEMU versions
luporl [Wed, 19 Jun 2019 11:37:43 +0000 (11:37 +0000)]
[PPC] Fix loader input with newer QEMU versions

At least since version 4.0.0, QEMU became bug-compatible with PowerVM's
vty, by inserting a \0 after every \r. As this confuses loader's
interpreter and as a \0 coming from the console doesn't seem reasonable,
it's now being filtered at OFW console input.

Reviewed by: jhibbits
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D20676

4 years agoWhitespace
sevan [Wed, 19 Jun 2019 11:22:09 +0000 (11:22 +0000)]
Whitespace

4 years agoV_ip6_forwarding and V_ipforwarding have been defined in ip6_var.h /
zec [Wed, 19 Jun 2019 08:49:24 +0000 (08:49 +0000)]
V_ip6_forwarding and V_ipforwarding have been defined in ip6_var.h /
ip_var.h since at least 2008, so make use of those definitions here.

MFC after: 3 days

4 years agoEvaluating htons() at compile time is more efficient than doing ntohs()
zec [Wed, 19 Jun 2019 08:39:19 +0000 (08:39 +0000)]
Evaluating htons() at compile time is more efficient than doing ntohs()
at runtime.  This change removes a dependency on a barrel shifter pass
before branch resolution, while reducing the instruction stream size
by 9 bytes on amd64.

MFC after: 3 days

4 years agoImplement VT-d capability detection on chipsets that have multiple
scottl [Wed, 19 Jun 2019 06:41:07 +0000 (06:41 +0000)]
Implement VT-d capability detection on chipsets that have multiple
translation units with differing capabilities

From the author via Bugzilla:
---
When an attempt is made to passthrough a PCI device to a bhyve VM
(causing initialisation of IOMMU) on certain Intel chipsets using
VT-d the PCI bus stops working entirely. This issue occurs on the
E3-1275 v5 processor on C236 chipset and has also been encountered
by others on the forums with different hardware in the Skylake
series.

The chipset has two VT-d translation units. The issue is caused by
an attempt to use the VT-d device-IOTLB capability that is
supported by only the first unit for devices attached to the
second unit which lacks that capability. Only the capabilities of
the first unit are checked and are assumed to be the same for all
units.

Attached is a patch to rectify this issue by determining which
unit is responsible for the device being added to a domain and
then checking that unit's device-IOTLB capability. In addition to
this a few fixes have been made to other instances where the first
unit's capabilities are assumed for all units for domains they
share. In these cases a mutual set of capabilities is determined.
The patch should hopefully fix any bugs for current/future
hardware with multiple translation units supporting different
capabilities.

A description is on the forums at
https://forums.freebsd.org/threads/pci-passthrough-bhyve-usb-xhci.65235
The thread includes observations by other users of the bug
occurring, and description as well as confirmation of the fix.
I'd also like to thank Ordoban for their help.

---
Personally tested on a Skylake laptop, Skylake Xeon server, and
a Xeon-D-1541, passing through XHCI and NVMe functions.  Passthru
is hit-or-miss to the point of being unusable without this
patch.

PR: 229852
Submitted by: callum@aitchison.org
MFC after: 1 week

4 years agoCorrect an error in r349122. pmap_unwire() should update the pmap's wired
alc [Wed, 19 Jun 2019 03:33:00 +0000 (03:33 +0000)]
Correct an error in r349122.  pmap_unwire() should update the pmap's wired
count, not its resident count.

X-MFC with: r349122

4 years agoRework r349061: Don't apply guessed dependencies if there is a custom target.
bdrewery [Tue, 18 Jun 2019 22:00:38 +0000 (22:00 +0000)]
Rework r349061: Don't apply guessed dependencies if there is a custom target.

This is still targeting bin/sh cyclic dependency issues.  Only apply
guessed dependencies that are explicitly set for an object (which
gnu/lib/cc/cc_tools needs) and if no custom target exists with its
own dependencies.

This was manifesting as a missing yacc.h in usr.bin/mkesdb_static when
built without -j (or -B). No actual yacc.h dependency ordering was
defined but with -j it got lucky and built fine.

Before r349061 the behavior was different for META_MODE but that logic
difference isn't needed.

X-MFC-With: r349061
Sponsored by: DellEMC

4 years agoOptimize kern.geom.conf* sysctls.
mav [Tue, 18 Jun 2019 21:05:10 +0000 (21:05 +0000)]
Optimize kern.geom.conf* sysctls.

On large systems those sysctls may generate megabytes of output.  Before
this change sbuf(9) code was resizing buffer by 4KB each time many times,
generating tons of TLB shootdowns.  Unfortunately in this case existing
sbuf_new_for_sysctl() mechanism, supposed to help with this issue, is not
applicable, since all the sbuf writes are done in different kernel thread.

This change improves situation in two ways:
 - on first sysctl call, not providing any output buffer, it sets special
sbuf drain function, just counting the data and so not needing big buffer;
 - on second sysctl call it uses as initial buffer size value saved on
previous call, so that in most cases there will be no reallocation, unless
GEOM topology changed significantly.

MFC after: 1 week
Sponsored by: iXsystems, Inc.

4 years agoMark NetBSD branch points
sevan [Tue, 18 Jun 2019 21:02:40 +0000 (21:02 +0000)]
Mark NetBSD branch points
NetBSD 7.0 was a separate branch, subsequent 8.x releases did not emerge from
this branch.
Clean up minor visual nits, centre OpenBSD listing on the B, DragonFly
listings on the y.

4 years agorandom(4): Fix a regression in short AES mode reads
cem [Tue, 18 Jun 2019 18:50:58 +0000 (18:50 +0000)]
random(4): Fix a regression in short AES mode reads

In r349154, random device reads of size < 16 bytes (AES block size) were
accidentally broken to loop forever.  Correct the loop condition for small
reads.

Reported by: pho
Reviewed by: delphij
Approved by: secteam(delphij)
Differential Revision: https://reviews.freebsd.org/D20686

4 years agobhyve: vtnet: fix locking on receive
vmaffione [Tue, 18 Jun 2019 17:51:30 +0000 (17:51 +0000)]
bhyve: vtnet: fix locking on receive

The vsc_rx_ready and the RX virtqueue is protected by the rx_mtx lock.
However, pci_vtnet_ping_rxq() (currently called only once after each
device reset) accesses those without acquiring the lock.

Reviewed by: markj
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D20609

4 years agoHandle labels specified with hints even on FDT systems. Hints are the
ian [Tue, 18 Jun 2019 17:05:05 +0000 (17:05 +0000)]
Handle labels specified with hints even on FDT systems.  Hints are the
easiest thing for a user to control (via loader.conf or kenv+kldload), so
handle them in addition to any label specified via the FDT data.

4 years agoRemove sys/capability.h for the third time
emaste [Tue, 18 Jun 2019 14:13:52 +0000 (14:13 +0000)]
Remove sys/capability.h for the third time

In all supported (and most unsupported) FreeBSD versions the appropriate
header for Capsicum is sys/capsicum.h.  Software including sys/capability.h
is most likely looking for Linux capabilities based on the withdrawn
POSIX.1e draft.

This header was previously removed in r334929 and r340156, but reverted
each time due to ports failures.  These issues have now (broadly) been
addressed.

PR: 228878 [exp-run]
Submitted by: eadler (r334929)
Relnotes: Yes
Sponsored by: The FreeBSD Foundation

4 years agoAdd a pwmc(4) manpage.
ian [Tue, 18 Jun 2019 04:32:19 +0000 (04:32 +0000)]
Add a pwmc(4) manpage.

4 years agoOops, it seems I left out the word 'cycle', fix it.
ian [Tue, 18 Jun 2019 02:27:30 +0000 (02:27 +0000)]
Oops, it seems I left out the word 'cycle', fix it.

Reported by: rpokala@

4 years agoRearrange the argument checking and processing so that enable and disable
ian [Tue, 18 Jun 2019 01:15:00 +0000 (01:15 +0000)]
Rearrange the argument checking and processing so that enable and disable
can be combined with configuring the period and duty cycle (the same ioctl
sets all 3 values at once, so there's no reason to require the user to run
the program twice to get all 3 things set).

4 years agoExplain the relationship between PWM hardware channels being controlled and
ian [Tue, 18 Jun 2019 00:17:10 +0000 (00:17 +0000)]
Explain the relationship between PWM hardware channels being controlled and
pwmc(4) device filenames.  Also, use uppercase PWM when the term is being
used as an acronym, and expand the acronym where it's first used.

4 years agoRemove everything related to channels from the pwmc public interface, now
ian [Tue, 18 Jun 2019 00:11:00 +0000 (00:11 +0000)]
Remove everything related to channels from the pwmc public interface, now
that there is a pwmc(4) instance per channel and the channel number is
maintained as a driver ivar rather than being passed in from userland.

4 years agoAdd ACPI support for USB driver.
takawata [Mon, 17 Jun 2019 23:03:30 +0000 (23:03 +0000)]
Add ACPI support for USB driver.
This adds ACPI device path on devinfo(8) output and
show  value of _UPC(usb port capabilities), _PLD (physical location of device)
when hw.usb.debug >= 1 .

Reviewed by: hselasky
Differential Revision: https://reviews.freebsd.org/D20630

4 years agoFix passing ${CONF_FILES} (which contains MAKE_CONF and
gjb [Mon, 17 Jun 2019 22:53:39 +0000 (22:53 +0000)]
Fix passing ${CONF_FILES} (which contains MAKE_CONF and
SRC_CONF, __MAKE_CONF and SRCCONF, respectively) through
to arm_install_base() and chroot_arm_build_release().
This prevents failures when the target image is intended
to be build with make.conf(5) and src.conf(5) overrides,
which are correctly handled for non-embedded image builds.

Reported and tested by: Daniel Engberg
PR: 238615
MFC after: 3 days
Sponsored by: The FreeBSD Foundation

4 years agoAdd NetBSD 8.1 & DragonFly BSD 5.6
sevan [Mon, 17 Jun 2019 21:46:13 +0000 (21:46 +0000)]
Add NetBSD 8.1 & DragonFly BSD 5.6

4 years agoFix tab
sevan [Mon, 17 Jun 2019 21:38:33 +0000 (21:38 +0000)]
Fix tab

4 years agorandom(4): Fortuna: allow increased concurrency
cem [Mon, 17 Jun 2019 20:29:13 +0000 (20:29 +0000)]
random(4): Fortuna: allow increased concurrency

Add experimental feature to increase concurrency in Fortuna.  As this
diverges slightly from canonical Fortuna, and due to the security
sensitivity of random(4), it is off by default.  To enable it, set the
tunable kern.random.fortuna.concurrent_read="1".  The rest of this commit
message describes the behavior when enabled.

Readers continue to update shared Fortuna state under global mutex, as they
do in the status quo implementation of the algorithm, but shift the actual
PRF generation out from under the global lock.  This massively reduces the
CPU time readers spend holding the global lock, allowing for increased
concurrency on SMP systems and less bullying of the harvestq kthread.

It is somewhat of a deviation from FS&K.  I think the primary difference is
that the specific sequence of AES keys will differ if READ_RANDOM_UIO is
accessed concurrently (as the 2nd thread to take the mutex will no longer
receive a key derived from rekeying the first thread).  However, I believe
the goals of rekeying AES are maintained: trivially, we continue to rekey
every 1MB for the statistical property; and each consumer gets a
forward-secret, independent AES key for their PRF.

Since Chacha doesn't need to rekey for sequences of any length, this change
makes no difference to the sequence of Chacha keys and PRF generated when
Chacha is used in place of AES.

On a GENERIC 4-thread VM (so, INVARIANTS/WITNESS, numbers not necessarily
representative), 3x concurrent AES performance jumped from ~55 MiB/s per
thread to ~197 MB/s per thread.  Concurrent Chacha20 at 3 threads went from
roughly ~113 MB/s per thread to ~430 MB/s per thread.

Prior to this change, the system was extremely unresponsive with 3-4
concurrent random readers; each thread had high variance in latency and
throughput, depending on who got lucky and won the lock.  "rand_harvestq"
thread CPU use was high (double digits), seemingly due to spinning on the
global lock.

After the change, concurrent random readers and the system in general are
much more responsive, and rand_harvestq CPU use dropped to basically zero.

Tests are added to the devrandom suite to ensure the uint128_add64 primitive
utilized by unlocked read functions to specification.

Reviewed by: markm
Approved by: secteam(delphij)
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D20313

4 years agoAllow the hostapd program to be specified. This allows users to use
cy [Mon, 17 Jun 2019 20:11:02 +0000 (20:11 +0000)]
Allow the hostapd program to be specified. This allows users to use
hostapd from ports instead of the one in base. The default is the hostapd
in base.

PR: 238571
MFC after: 1 week

4 years agoMake ipf_objbytes a constant. ipf_objbytes is a table of internal data
cy [Mon, 17 Jun 2019 20:10:55 +0000 (20:10 +0000)]
Make ipf_objbytes a constant. ipf_objbytes is a table of internal data
structures that are saved across reboots by ipfs(8). The table is not
changed at runtime.

MFC after: 3 days

4 years agoSeparate kernel crc32() implementation to its own header (gsb_crc32.h) and
delphij [Mon, 17 Jun 2019 19:49:08 +0000 (19:49 +0000)]
Separate kernel crc32() implementation to its own header (gsb_crc32.h) and
rename the source to gsb_crc32.c.

This is a prerequisite of unifying kernel zlib instances.

PR: 229763
Submitted by: Yoshihiro Ota <ota at j.email.ne.jp>
Differential Revision: https://reviews.freebsd.org/D20193

4 years agopci.4: Use plural configuration registers
zeising [Mon, 17 Jun 2019 17:35:55 +0000 (17:35 +0000)]
pci.4: Use plural configuration registers

It is customary to use plural when talking about PCI configure registers.

Reported by: scottl
MFC after: 2 weeks
X-MFC-with: r349133

4 years agoAdd some missing MLINKs for tree(3).
markj [Mon, 17 Jun 2019 16:57:44 +0000 (16:57 +0000)]
Add some missing MLINKs for tree(3).

MFC after: 3 days

4 years agopci.4: wordsmith and add missing words
zeising [Mon, 17 Jun 2019 16:54:51 +0000 (16:54 +0000)]
pci.4: wordsmith and add missing words

Add missing words after PCI in the description of the PCIOCWRITE and
PCIOCATTACHED ioctls.
Use singular in PCIOCREAD, we only read one register at the time.

Reviewed by: bcr, bjk, rgrimes, cem
MFC after: 2 weeks
X-MFC-with: r349133
Differential Revision: https://reviews.freebsd.org/D20671

4 years agoPut periods at the ends of argument descriptions. Explain the relationship
ian [Mon, 17 Jun 2019 16:50:58 +0000 (16:50 +0000)]
Put periods at the ends of argument descriptions.  Explain the relationship
between the period and duty arguments.

4 years agoFollow changes in the pwmc(4) driver in relation to device filenames.
ian [Mon, 17 Jun 2019 16:43:33 +0000 (16:43 +0000)]
Follow changes in the pwmc(4) driver in relation to device filenames.

The driver now names its cdev nodes pwmcX.Y where X is unit number and
Y is the channel within that unit.  Change the default device name from
pwmc0 to pwmc0.0.  The driver now puts cdev files and label aliases in
the /dev/pwm directory, so allow the user to provide unqualified names
with -f and automatically prepend the /dev/pwm part for them.

Update the examples in the manpage to show the new device name format
and location within /dev/pwm.

4 years agoPut the pwmc cdev filenames under the pwm directory along with any label
ian [Mon, 17 Jun 2019 16:26:43 +0000 (16:26 +0000)]
Put the pwmc cdev filenames under the pwm directory along with any label
names.  I.e., everything related to pwm now goes in /dev/pwm.  This will
make it easier for userland tools to turn an unqualified name into a fully
qualified pathname, whether it's the base pwmcX.Y name or a label name.

4 years agorandom(4): Generalize algorithm-independent APIs
cem [Mon, 17 Jun 2019 15:09:12 +0000 (15:09 +0000)]
random(4): Generalize algorithm-independent APIs

At a basic level, remove assumptions about the underlying algorithm (such as
output block size and reseeding requirements) from the algorithm-independent
logic in randomdev.c.  Chacha20 does not have many of the restrictions that
AES-ICM does as a PRF (Pseudo-Random Function), because it has a cipher
block size of 512 bits.  The motivation is that by generalizing the API,
Chacha is not penalized by the limitations of AES.

In READ_RANDOM_UIO, first attempt to NOWAIT allocate a large enough buffer
for the entire user request, or the maximal input we'll accept between
signal checking, whichever is smaller.  The idea is that the implementation
of any randomdev algorithm is then free to divide up large requests in
whatever fashion it sees fit.

As part of this, two responsibilities from the "algorithm-generic" randomdev
code are pushed down into the Fortuna ra_read implementation (and any other
future or out-of-tree ra_read implementations):

  1. If an algorithm needs to rekey every N bytes, it is responsible for
  handling that in ra_read(). (I.e., Fortuna's 1MB rekey interval for AES
  block generation.)

  2. If an algorithm uses a block cipher that doesn't tolerate partial-block
  requests (again, e.g., AES), it is also responsible for handling that in
  ra_read().

Several APIs are changed from u_int buffer length to the more canonical
size_t.  Several APIs are changed from taking a blockcount to a bytecount,
to permit PRFs like Chacha20 to directly generate quantities of output that
are not multiples of RANDOM_BLOCKSIZE (AES block size).

The Fortuna algorithm is changed to NOT rekey every 1MiB when in Chacha20
mode (kern.random.use_chacha20_cipher="1").  This is explicitly supported by
the math in FS&K ยง9.4 (Ferguson, Schneier, and Kohno; "Cryptography
Engineering"), as well as by their conclusion: "If we had a block cipher
with a 256-bit [or greater] block size, then the collisions would not
have been an issue at all."

For now, continue to break up reads into PAGE_SIZE chunks, as they were
before.  So, no functional change, mostly.

Reviewed by: markm
Approved by: secteam(delphij)
Differential Revision: https://reviews.freebsd.org/D20312

4 years agorandom(4): Add regression tests for uint128 implementation, Chacha CTR
cem [Mon, 17 Jun 2019 14:59:45 +0000 (14:59 +0000)]
random(4): Add regression tests for uint128 implementation, Chacha CTR

Add some basic regression tests to verify behavior of both uint128
implementations at typical boundary conditions, to run on all architectures.

Test uint128 increment behavior of Chacha in keystream mode, as used by
'kern.random.use_chacha20_cipher=1' (r344913) to verify assumptions at edge
cases.  These assumptions are critical to the safety of using Chacha as a
PRF in Fortuna (as implemented).

(Chacha's use in arc4random is safe regardless of these tests, as it is
limited to far less than 4 billion blocks of output in that API.)

Reviewed by: markm
Approved by: secteam(gordon)
Differential Revision: https://reviews.freebsd.org/D20392

4 years agoMFV r349134:
mm [Mon, 17 Jun 2019 11:46:37 +0000 (11:46 +0000)]
MFV r349134:
Sync libarchive with vendor.

Relevant vendor changes:
  PR #1212: RAR5 reader - window_mask was not updated correctly
            (OSS-Fuzz 15278)
  OSS-Fuzz 15120: RAR reader - extend use after free bugfix

MFC after: 1 week (together with r348993)

4 years agoUpdate vendor/libarchive/dist to git 809f0dc32fff7434aef45a7c688fa285c7208af7
mm [Mon, 17 Jun 2019 11:29:32 +0000 (11:29 +0000)]
Update vendor/libarchive/dist to git 809f0dc32fff7434aef45a7c688fa285c7208af7

Relevant vendor changes:
  PR #1212: RAR5 reader - window_mask was not updated correctly
            (OSS-Fuzz 15278)
  OSS-Fuzz 15120: RAR reader - extend use after free bugfix
  Add HAVE_UNLINKAT to config_freebsd.h

4 years agopci(4): Document PCIOCATTACHED
zeising [Mon, 17 Jun 2019 05:41:47 +0000 (05:41 +0000)]
pci(4): Document PCIOCATTACHED

Document the PCIOCATTACHED ioctl(2) in the pci(4) manual.
PCIOCATTACHED is used to query if a driver has attached to a PCI.

Reviewed by: bcr, imp
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D20652

4 years agoAdd back a const qualifier I somehow fumbled away between test-building
ian [Mon, 17 Jun 2019 03:48:44 +0000 (03:48 +0000)]
Add back a const qualifier I somehow fumbled away between test-building
and committing recent changes.

4 years agoImplement the ofw_bus_get_node method in aw_pwm(4) so that ofw_pwmbus can
ian [Mon, 17 Jun 2019 03:40:00 +0000 (03:40 +0000)]
Implement the ofw_bus_get_node method in aw_pwm(4) so that ofw_pwmbus can
find its metadata for instantiating children.

4 years agoAdd ofw_pwmbus to enumerate pwmbus devices on systems configured with fdt
ian [Mon, 17 Jun 2019 03:32:05 +0000 (03:32 +0000)]
Add ofw_pwmbus to enumerate pwmbus devices on systems configured with fdt
data.  Also, add fdt support to pwmc.

4 years agoEliminate a redundant call to pmap_invalidate_page() from
alc [Mon, 17 Jun 2019 01:58:25 +0000 (01:58 +0000)]
Eliminate a redundant call to pmap_invalidate_page() from
pmap_ts_referenced().

MFC after: 14 days
Differential Revision: https://reviews.freebsd.org/D12725

4 years agoThree changes to arm64's pmap_unwire():
alc [Sun, 16 Jun 2019 22:13:27 +0000 (22:13 +0000)]
Three changes to arm64's pmap_unwire():

Implement wiring changes on superpage mappings.  Previously, a superpage
mapping was unconditionally demoted by pmap_unwire(), even if the wiring
change applied to the entire superpage mapping.

Rewrite a comment to use the arm64 names for bits in a page table entry.
Previously, the bits were referred to by their x86 names.

Use atomic_"op"_64() instead of atomic_"op"_long() to update a page table
entry in order to match the prevailing style in this file.

MFC after: 10 days

4 years agoFix bug on newbus device deletion: we should delete the child's devinfo
nwhitehorn [Sun, 16 Jun 2019 21:56:45 +0000 (21:56 +0000)]
Fix bug on newbus device deletion: we should delete the child's devinfo
on deletion, not the parent's.

MFC after: 3 weeks

4 years agoRemove tabs from BSD.var.dist
antoine [Sun, 16 Jun 2019 20:01:45 +0000 (20:01 +0000)]
Remove tabs from BSD.var.dist

Reported by: zeising

4 years agoRework pwmbus and pwmc so that each child will handle a single PWM channel.
ian [Sun, 16 Jun 2019 19:44:42 +0000 (19:44 +0000)]
Rework pwmbus and pwmc so that each child will handle a single PWM channel.

Previously, there was a pwmc instance for each instance of pwm hardware
regardless of how many pwm channels that hardware supported.  Now there
will be a pwmc instance for each channel when the hardware supports
multiple channels.  With a separate instance for each channel, we can have
"named channels" in userland by making devfs alias entries in /dev/pwm.

These changes add support for ivars to pwmbus, and use an ivar to track the
channel number for each child.  It also adds support for hinted children.

In pwmc, the driver checks for a label hint, and if present, it's used to
create an alias for the cdev in /dev/pwm.  It's not anticipated that hints
will be heavily used, but it's easy to do and allows quick ad-hoc creation
of named channels from userland by using kenv to create hint.pwmc.N.label=
hints.  Upcoming changes will add FDT support, and most labels will
probably be specified that way.

4 years agoIn iostat(8) output, skip the decimal point and the fractional part
trasz [Sun, 16 Jun 2019 17:32:05 +0000 (17:32 +0000)]
In iostat(8) output, skip the decimal point and the fractional part
for tps >= 100 and MB/s >= 1000, to prevent them for widening too much.

MFC after: 2 weeks

4 years agoThree enhancements to arm64's pmap_protect():
alc [Sun, 16 Jun 2019 16:45:01 +0000 (16:45 +0000)]
Three enhancements to arm64's pmap_protect():

Implement protection changes on superpage mappings.  Previously, a superpage
mapping was unconditionally demoted by pmap_protect(), even if the
protection change applied to the entire superpage mapping.

Precompute the bit mask describing the protection changes rather than
recomputing it for every page table entry that is changed.

Skip page table entries that already have the requested protection changes
in place.

Reviewed by: andrew, kib
MFC after: 10 days
Differential Revision: https://reviews.freebsd.org/D20657

4 years agoIn detach(), call bus_generic_detach() before deleting the iicbus child.
ian [Sun, 16 Jun 2019 16:02:50 +0000 (16:02 +0000)]
In detach(), call bus_generic_detach() before deleting the iicbus child.
This gives the bus and its children the chance to return EBUSY to abort
the detach if they're in the middle of doing some IO.

4 years agoRename pwmbus.h to ofw_pwm.h, because after all the recent changes, there
ian [Sun, 16 Jun 2019 15:56:59 +0000 (15:56 +0000)]
Rename pwmbus.h to ofw_pwm.h, because after all the recent changes, there
is nothing left in the file that related to pwmbus at all.  It just contains
prototypes for the functions implemented in dev/pwm.ofw_pwm.c, so name it
accordingly and fix the include protect wrappers to match.

A new pwmbus.h will be coming along in a future commit.

4 years agovtfontcvt: correct typo in hex parsing update
emaste [Sun, 16 Jun 2019 15:14:49 +0000 (15:14 +0000)]
vtfontcvt: correct typo in hex parsing update

PR: 205707
Submitted by: Dmitry Wagin
MFC with: 349100
Event: Berlin Devsummit 2019

4 years agovtfontcvt: improve .bdf validation
emaste [Sun, 16 Jun 2019 13:51:45 +0000 (13:51 +0000)]
vtfontcvt: improve .bdf validation

Previously if we had a BBX entry that had invalid values (e.g. bounding
box outside of font bounding box) and failed sscanf (e.g., because it
had fewer than four values) we skipped the BBX value validation and then
triggered an assertion failure.

Reported by: afl
MFC with: r349100
Event: Berlin Devsummit 2019
Sponsored by: The FreeBSD Foundation

4 years agovtfontcvt: improve .bdf verification
emaste [Sun, 16 Jun 2019 13:35:53 +0000 (13:35 +0000)]
vtfontcvt: improve .bdf verification

Previously we would crash if the BBX y-offset was outside of the font
bounding box.

Reported by: afl
MFC with: r349100
Event: Berlin Devsummit 2019
Sponsored by: The FreeBSD Foundation

4 years agoallow vt(4) fonts to be built from .bdf files
emaste [Sun, 16 Jun 2019 12:44:49 +0000 (12:44 +0000)]
allow vt(4) fonts to be built from .bdf files

vtfontcvt(8) can convert both .bdf and .hex inputs to binary vt(4) .fnt
files.

Event: Berlin Devsummit 2019
Sponsored by: The FreeBSD Foundation

4 years agovtfontcvt: initialize another variable to quiet GCC warning
emaste [Sun, 16 Jun 2019 12:26:46 +0000 (12:26 +0000)]
vtfontcvt: initialize another variable to quiet GCC warning

I believe this case could be triggered by a broken .bdf font.

PR: 205707
Reported by: ci.freebsd.org
MFC with: 349100
Event: Berlin Devsummit 2019
Sponsored by: The FreeBSD Foundation

4 years agoDifferentiate package versions for ALPHA/BETA/PRERELEASE/RC phases.
rene [Sun, 16 Jun 2019 11:53:22 +0000 (11:53 +0000)]
Differentiate package versions for ALPHA/BETA/PRERELEASE/RC phases.

Currently APLHA packages are treated as CURRENT or STABLE versions,
resulting in e.g. 13.0.s20190615125609. This version number is indeed
different from the next version number but ALPHA2 would be nicer IMO.

For the BETA, PRERELEASE and RC phases the packages are versioned the
same as for releases, so 11.3-BETA1 is 11.3 and so is 11.3-RC1, meaning
that pkg cannot easiliy upgrade from the former the next. This happened
on my Raspberry Pi which runs pkgbase.

Submitted by: rene
Approved by: manu
Event: Berlin hackathon 2019
Differential Revision: https://reviews.freebsd.org/D20651

4 years agovtfontcvt: initialize bbwbytes to avoid GCC 4.2.1 uninitialized warning
emaste [Sun, 16 Jun 2019 10:43:18 +0000 (10:43 +0000)]
vtfontcvt: initialize bbwbytes to avoid GCC 4.2.1 uninitialized warning

PR: 205707
MFC with: 349100
Event: Berlin Devsummit 2019
Sponsored by: The FreeBSD Foundation

4 years agovtfontcvt: improve BDF and hex font parsing
emaste [Sun, 16 Jun 2019 09:17:26 +0000 (09:17 +0000)]
vtfontcvt: improve BDF and hex font parsing

Support larger font sizes.

PR: 205707
Submitted by: Dmitry Wagin (original version)
MFC after: 2 weeks
Event: Berlin Devsummit 2019
Differential Revision: https://reviews.freebsd.org/D20650

4 years agosymlinkat(2) is not covered.
bdrewery [Sun, 16 Jun 2019 05:12:17 +0000 (05:12 +0000)]
symlinkat(2) is not covered.

4 years agoAdd macOS-like three finger drag trackpad gesture to psm(4)
philip [Sun, 16 Jun 2019 03:06:05 +0000 (03:06 +0000)]
Add macOS-like three finger drag trackpad gesture to psm(4)

Submitted by: Yan Ka Chiu <nyan@myuji.xyz>
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D20648

4 years agoBuild SoC-specific modules with GENERIC for the SoCs that have them.
ian [Sun, 16 Jun 2019 01:23:45 +0000 (01:23 +0000)]
Build SoC-specific modules with GENERIC for the SoCs that have them.

4 years agoAdd module makefiles for Texas Instruments ARM SoCs.
ian [Sun, 16 Jun 2019 01:22:44 +0000 (01:22 +0000)]
Add module makefiles for Texas Instruments ARM SoCs.

The natural place to look for them based on how other SoCs are organized
would be sys/modules/ti, but that's already taken.  Drop a clue into
modules/ti/Makefile directing people to modules/arm_ti if they're looking
for ARM modules.

4 years agoSplit the dtb MODULES_EXTRA line to a series of += lines, making it easier
ian [Sun, 16 Jun 2019 01:05:53 +0000 (01:05 +0000)]
Split the dtb MODULES_EXTRA line to a series of += lines, making it easier
to maintain and keep in alphabetical order, and paving the way for adding
some other modules that aren't dtb-related.

4 years agoAdd module makefiles for pwm.
ian [Sun, 16 Jun 2019 00:53:09 +0000 (00:53 +0000)]
Add module makefiles for pwm.

4 years agoThis code no longer uses fdt/ofw stuff, no need to include ofw headers.
ian [Sun, 16 Jun 2019 00:43:05 +0000 (00:43 +0000)]
This code no longer uses fdt/ofw stuff, no need to include ofw headers.

4 years agoMake channel number unsigned, and spell unsigned int u_int. This should
ian [Sun, 16 Jun 2019 00:32:19 +0000 (00:32 +0000)]
Make channel number unsigned, and spell unsigned int u_int.  This should
have been part of r349088.

4 years agoThe pwm interface was replaced with pwmbus, include the right header file.
ian [Sun, 16 Jun 2019 00:27:11 +0000 (00:27 +0000)]
The pwm interface was replaced with pwmbus, include the right header file.

4 years agoMake pwm channel numbers unsigned.
ian [Sat, 15 Jun 2019 23:02:09 +0000 (23:02 +0000)]
Make pwm channel numbers unsigned.

4 years agoRestructure the pwm device hirearchy and interfaces.
ian [Sat, 15 Jun 2019 22:25:39 +0000 (22:25 +0000)]
Restructure the pwm device hirearchy and interfaces.

The pwm and pwmbus interfaces were nearly identical, this merges them into a
single pwmbus interface.  The pwmbus driver now implements the pwmbus
interface by simply passing all calls through to its parent (the hardware
driver).  The channel_count method moves from pwm to pwmbus, and the
get_bus method is deleted (just no longer needed).

The net effect is that the interface for doing pwm stuff is now the same
regardless of whether you're a child of pwmbus, or some random driver
elsewhere in the hierarchy that is bypassing the pwmbus layer and is talking
directly to the hardware driver via cross-hierarchy connections established
using fdt data.

The pwmc driver is now a child of pwmbus, instead of being its sibling
(that's why the get_bus method is no longer needed; pwmc now gets the
device_t of the bus using device_get_parent()).

4 years agoDestroy the cdev on device detach. Also, make the driver and devclass
ian [Sat, 15 Jun 2019 21:51:55 +0000 (21:51 +0000)]
Destroy the cdev on device detach.  Also, make the driver and devclass
static, because nothing outside this file needs them.

4 years agoRename the channel_max method to channel_count, because that's what it's
ian [Sat, 15 Jun 2019 21:36:14 +0000 (21:36 +0000)]
Rename the channel_max method to channel_count, because that's what it's
returning.  (If the channel count is 2, then the max channel number is 1.)

4 years agoGive the aw_pwm driver a module version.
ian [Sat, 15 Jun 2019 21:31:04 +0000 (21:31 +0000)]
Give the aw_pwm driver a module version.

4 years agoSpell unsigned int as u_int and channel as chan; eliminates the need to wrap
ian [Sat, 15 Jun 2019 21:19:23 +0000 (21:19 +0000)]
Spell unsigned int as u_int and channel as chan; eliminates the need to wrap
some long lines.

4 years agoUnwrap prototype lines so that return type and function name are on the
ian [Sat, 15 Jun 2019 20:54:33 +0000 (20:54 +0000)]
Unwrap prototype lines so that return type and function name are on the
same line.  No functional changes.

4 years agoMake pwmbus driver and devclass vars static; they're not mentioned in any
ian [Sat, 15 Jun 2019 20:53:26 +0000 (20:53 +0000)]
Make pwmbus driver and devclass vars static; they're not mentioned in any
header file, so they can't be used outside this file anyway.

4 years agoAdd a missing #include. I suspect this used to get included via some header
ian [Sat, 15 Jun 2019 20:20:36 +0000 (20:20 +0000)]
Add a missing #include.  I suspect this used to get included via some header
pollution that was cleaned up recently, and this file got missed in the
cleanup because it's not attached to the build unless you specifically
request this device in a custom kernel config.

4 years agoUse device_delete_children() instead of a locally-rolled copy of it that
ian [Sat, 15 Jun 2019 20:17:00 +0000 (20:17 +0000)]
Use device_delete_children() instead of a locally-rolled copy of it that
leaks the device-list memory.

4 years agoRemove pwmbus_attach_bus(), it no longer has any callers. Also remove a
ian [Sat, 15 Jun 2019 20:13:42 +0000 (20:13 +0000)]
Remove pwmbus_attach_bus(), it no longer has any callers.  Also remove a
couple prototypes for functions that never existed (and never will).

4 years agoMove/rename the sys/pwm.h header file to dev/pwm/pwmc.h. The file contains
ian [Sat, 15 Jun 2019 19:46:59 +0000 (19:46 +0000)]
Move/rename the sys/pwm.h header file to dev/pwm/pwmc.h.  The file contains
ioctl definitions and related datatypes that allow userland control of pwm
hardware via the pwmc device.  The new name and location better reflects its
assocation with a single device driver.

4 years agoDo not include pwm.h here, it is purely a userland interface file containing
ian [Sat, 15 Jun 2019 19:43:33 +0000 (19:43 +0000)]
Do not include pwm.h here, it is purely a userland interface file containing
ioctl defintions for the pwmc driver. It is not part of the pwmbus interface.

4 years agoRemove pcf8563reg.h, the driver it was associated with was replaced in 2017
ian [Sat, 15 Jun 2019 19:16:02 +0000 (19:16 +0000)]
Remove pcf8563reg.h, the driver it was associated with was replaced in 2017
with the nxprtc multi-chip driver.

4 years agoPreviously, when pmap_remove_pages() destroyed a dirty superpage mapping,
alc [Sat, 15 Jun 2019 17:26:42 +0000 (17:26 +0000)]
Previously, when pmap_remove_pages() destroyed a dirty superpage mapping,
it only called vm_page_dirty() on the first of the superpage's constituent
4KB pages.  This revision corrects that error, calling vm_page_dirty() on
all of superpage's constituent 4KB pages.

MFC after: 3 days

4 years agocsu: Add proper .depend tracking for each object.
bdrewery [Sat, 15 Jun 2019 17:08:39 +0000 (17:08 +0000)]
csu: Add proper .depend tracking for each object.

This doesn't appear to have ever worked. After a .depend is generated
there will be duplicate .c dependencies so only use the first one.

MFC after: 2 weeks
Sponsored by: DellEMC

4 years agoAllow DEPENDOBJS/DEPENDSRCS to work with only OBJS set and no SRCS.
bdrewery [Sat, 15 Jun 2019 17:08:35 +0000 (17:08 +0000)]
Allow DEPENDOBJS/DEPENDSRCS to work with only OBJS set and no SRCS.

Default to tracking .depend.* for OBJS rather than SRCS.

This helps cover some special case builds like gnu/lib/csu which
do more of a PROGS-like thing with bsd.prog.mk.

It is possible this causes out-of-tree Makefiles to have problems if they use
this pattern:
foo.o: foo.c
${CC} -o ${.TARGET} ${.ALLSRC}
This may cause multiple source files to be compiled due to finding the
'foo.o: foo.c' dependency both in the Makefile at the .depend file. Or
it may try compiling headers. This can be worked around by either of these:
foo.o: foo.c
${CC} -o ${.TARGET} ${.ALLSRC:N*.h:[1]}
Or
foo.o: foo.c
${CC} -o ${.TARGET} ${.CURDIR}/foo.c
In the latter case the ${.CURDIR} may need to be a different path. The
first case covers automatically using .PATH.

Sponsored by: DellEMC

4 years agoSupport reading in .depend files.
bdrewery [Sat, 15 Jun 2019 17:08:32 +0000 (17:08 +0000)]
Support reading in .depend files.

This is for an upcoming change that fixes .depend handling in here.
It will cause some duplicate sources which need to be trimmed out.

MFC after: 2 weeks
Sponsored by: DellEMC

4 years agoMETA_MODE: Delete build targets that fail.
bdrewery [Sat, 15 Jun 2019 17:08:28 +0000 (17:08 +0000)]
META_MODE: Delete build targets that fail.

If a meta mode change is triggered but then the build fails then the
next build will not retrigger meta mode. This only prevented by
removing the target on rebuild or on the failure to rebuild.

Sponsored by: DellEMC

4 years agoAdd various CFLAGS/LDADD overrides for the output target file.
bdrewery [Sat, 15 Jun 2019 17:08:24 +0000 (17:08 +0000)]
Add various CFLAGS/LDADD overrides for the output target file.

Sponsored by: DellEMC

4 years agoAvoid generating DEPENDFILES='.depend.' when there's no DEPENDOBJS.
bdrewery [Sat, 15 Jun 2019 17:08:21 +0000 (17:08 +0000)]
Avoid generating DEPENDFILES='.depend.' when there's no DEPENDOBJS.

MFC after: 2 weeks
Sponsored by: DellEMC

4 years agoSimilar to r335710 avoid ccache when linking a .cc file directly.
bdrewery [Sat, 15 Jun 2019 17:08:18 +0000 (17:08 +0000)]
Similar to r335710 avoid ccache when linking a .cc file directly.

Sponsored by: DellEMC

4 years agoFix .depend files to work for build tools.
bdrewery [Sat, 15 Jun 2019 17:08:13 +0000 (17:08 +0000)]
Fix .depend files to work for build tools.

This is somewhat of a follow-up to r335746.

MFC after: 2 weeks
Sponsored by: DellEMC

4 years agoDon't force OBJS_DEPEND_GUESS headers onto all objects.
bdrewery [Sat, 15 Jun 2019 17:08:02 +0000 (17:08 +0000)]
Don't force OBJS_DEPEND_GUESS headers onto all objects.

This is in the case of not having any .depend.foo.o yet.  Don't force add *.h
as a dependency for those. They are built in beforebuild already when in
SRCS/DPSRCS.

This change allows custom rules, like in bin/sh/Makefile for mksyntax, to not
have cyclic dependency problems when connected to the .depend.* handling.

This is purposely not copied to sys/conf/kern.post.mk as it handles
generating headers slightly differently.

MFC after: 2 weeks
Sponsored by: DellEMC

4 years agoHandle failure to enable the clock or obtain its frequency.
ian [Sat, 15 Jun 2019 16:59:03 +0000 (16:59 +0000)]
Handle failure to enable the clock or obtain its frequency.

4 years agoDon't call pwmbus_attach_bus(), because it may not be present if this
ian [Sat, 15 Jun 2019 16:56:00 +0000 (16:56 +0000)]
Don't call pwmbus_attach_bus(), because it may not be present if this
driver is compiled into the kernel but pwmbus will be loaded as a module
when needed (and because of that, pwmbus_attach_bus() is going away in
the near future).  Instead, just directly do what that function did:
register the fdt xfef handle, and attach the pwmbus.

4 years agoIn detach(), check for failure of bus_generic_detach(), only release
ian [Sat, 15 Jun 2019 16:36:29 +0000 (16:36 +0000)]
In detach(), check for failure of bus_generic_detach(), only release
resources if they got allocated (because detach() gets called from attach()
to handle various failures), and delete the pwmbus child if it got created.

4 years agoAllow pwm(9) components to be selected individually, while 'device pwm'
ian [Sat, 15 Jun 2019 16:16:29 +0000 (16:16 +0000)]
Allow pwm(9) components to be selected individually, while 'device pwm'
still includes it all.

4 years agonetmap.4: Fix a typo as FreeBSD Linux is not a thing
0mp [Sat, 15 Jun 2019 12:09:22 +0000 (12:09 +0000)]
netmap.4: Fix a typo as FreeBSD Linux is not a thing

Approved by: src (emaste)
Event: Berlin Devsummit 2019

4 years ago- Replace unused and only ever written to members of public iflib(9)
marius [Sat, 15 Jun 2019 11:07:41 +0000 (11:07 +0000)]
- Replace unused and only ever written to members of public iflib(9)
  structs with placeholders (in the latter case, IFLIB_MAX_TX_BYTES
  etc. are also only ever used for these write-only members if at all,
  so both these macros and members can just go). Using these spares
  may render it possible to merge certain iflib(9) fixes to stable/12.
  Otherwise, changes extending struct if_irq or struct if_shared_ctx
  in any way would break KBI as instances of these are allocated by
  the driver front-ends (by contrast, struct if_pkt_info as well as
  struct if_softc_ctx instances are provided by iflib(9) and, thus,
  may grow at least at the end without breaking KBI).
- Make the pvi_name in struct pci_vendor_info const char * as device
  identifiers in hardware lookup tables aren't to be expected to ever
  change at runtime.
- Similarly, make the pci_vendor_info_t of struct if_shared_ctx which
  is used to point to the struct pci_vendor_info arrays provided by
  the driver front-ends const.
- Remove the ETH_ADDR_LEN macro from iflib.h; this was duplicating
  ETHER_ADDR_LEN of <net/ethernet.h> with iflib(9) actually only
  consuming the latter macro.
- Make the name argument of iflib_io_tqg_attach(9) const, matching
  the taskqgroup_attach_cpu(9) this function wraps as well as e. g.
  iflib_config_gtask_init(9).
- Remove the orphaned iflib_qset_lock_get() prototype.
- Remove some extraneous empty lines.