]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
3 years agoMFV: r362513
jkim [Tue, 14 Jul 2020 01:54:24 +0000 (01:54 +0000)]
MFV: r362513

Update byacc to 20200330.

3 years agoActually install the new 221.backup-gpart periodic script
allanjude [Tue, 14 Jul 2020 00:46:20 +0000 (00:46 +0000)]
Actually install the new 221.backup-gpart periodic script

Submitted by: Rob Fairbanks <rob.fx907@gmail.com>
Reported by: Michael Butler <imb@protected-networks.net>
MFC with: r363110
Sponsored by: Klara Inc.

3 years agocxgbev(4): Compare at most 16 bytes of the Ethernet header when trying
np [Mon, 13 Jul 2020 19:15:29 +0000 (19:15 +0000)]
cxgbev(4): Compare at most 16 bytes of the Ethernet header when trying
to coalesce tx work requests.

Note that Coverity will still treat this as an out-of-bounds access.  We
do want to compare 16B starting from ethmacdst but cmp_l2hdr was was
going beyond that by 2B.

cmp_l2hdr was introduced in r362905.

Reported by: Coverity (CID 1430284)
Sponsored by: Chelsio Communications

3 years agoipfw(8): Handle unaligned pointers in pr_u64.
markj [Mon, 13 Jul 2020 19:10:16 +0000 (19:10 +0000)]
ipfw(8): Handle unaligned pointers in pr_u64.

struct _ipfw_dyn_rule is defined as packed, and as a result, its
uint64_t fields are misaligned on some 32-bit platforms.  Since
pr_u64() is explicitly supposed to handle this case, avoid using a
uint64_t * for the input pointer to make sure that the compiler won't
(correctly) warn about the misalignment.

Reported by: jenkins
MFC with: r363164

3 years agoRevert r351416 to let lib.libc.gen.getmntinfo_test.getmntinfo_test get more test
lwhsu [Mon, 13 Jul 2020 18:19:02 +0000 (18:19 +0000)]
Revert r351416 to let lib.libc.gen.getmntinfo_test.getmntinfo_test get more test

This is supposed to be fixed by r363068

PR: 240049
Sponsored by: The FreeBSD Foundation

3 years agoipfw(8): Fix most warnings with the default WARNS level.
markj [Mon, 13 Jul 2020 17:51:04 +0000 (17:51 +0000)]
ipfw(8): Fix most warnings with the default WARNS level.

- Add missing const and static qualifiers.
- Avoid shadowing the global "co" by renaming it to "g_co".
- Avoid mixing signedness in loop bound checks.
- Leave -Wcast-align warnings disabled for now.

Reviewed by: ae, melifaro
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D25456

3 years agoPrint arm64 physmem info during boot.
markj [Mon, 13 Jul 2020 17:05:44 +0000 (17:05 +0000)]
Print arm64 physmem info during boot.

PR: 243682
Reviewed by: andrew, emaste
MFC after: 1 week
Event: July 2020 Bugathon
Differential Revision: https://reviews.freebsd.org/D25625

3 years agoAdd vm_map_valid_range_KBI().
markj [Mon, 13 Jul 2020 16:39:27 +0000 (16:39 +0000)]
Add vm_map_valid_range_KBI().

This is required for standalone module builds.

Reported by: hselasky
Reviewed by: dougm, hselasky, kib
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D25650

3 years agoUpdate AMD Zen1 and add Zen2 events mapping.
mav [Mon, 13 Jul 2020 16:23:02 +0000 (16:23 +0000)]
Update AMD Zen1 and add Zen2 events mapping.

MFC after: 2 weeks

3 years agolseek(2): Document the seek behavior better and update the POSIX compliance
gbe [Mon, 13 Jul 2020 15:52:57 +0000 (15:52 +0000)]
lseek(2): Document the seek behavior better and update the POSIX compliance

In certain situations lseek(2) will return successful although if no seek
was performed. This can happen when operating on devices that don't support
seeking (older tape drives) or when operating on changeable media devices
(such as DVD or Blu-ray devices) without a medium inserted.

Document this within the man page and update the POSIX compliance while here.

PR: 162765
Submitted by: arundel@
Reported by: arundel@
Reviewed by: bcr (mentor)
Approved by: bcr (mentor)
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D25646

3 years agogethostname(3): Correct the reference of the undefined value HOST_NAME_MAX
gbe [Mon, 13 Jul 2020 15:17:29 +0000 (15:17 +0000)]
gethostname(3): Correct the reference of the undefined value HOST_NAME_MAX

PR: 143472
Submitted by: bcran@
Reported by: Jeremy Huddleston <jeremyhu at apple dot com>
Reviewed by: bcr (mentor)
Approved by: bcr (mentor)
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D25647

3 years agoarp(8) clarify the use of the '-a flag'
gbe [Mon, 13 Jul 2020 15:06:29 +0000 (15:06 +0000)]
arp(8) clarify the use of the '-a flag'

PR: 238146
Submitted by: Andrew Stevenson <andrew at ugh dot net dot au>
Reported by: Andrew Stevenson <andrew at ugh dot net dot au>
Reviewed by: bcr (mentor)
Approved by: bcr (mentor)
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D25645

3 years agoMinor textual fixes.
mav [Mon, 13 Jul 2020 14:25:25 +0000 (14:25 +0000)]
Minor textual fixes.

MFC after: 1 week

3 years agoRemove excess spaces from rc.d scripts
allanjude [Mon, 13 Jul 2020 13:44:54 +0000 (13:44 +0000)]
Remove excess spaces from rc.d scripts

The space between words is already being echoed by the space between quoted strings:

    % echo 'foo' 'bar'
    foo bar

    % echo 'foo' ' baz'
    foo  baz

Found in `ipfw` and `mountlate` messages.

PR: 247948
Submitted by: Jose Luis Duran <jlduran@gmail.com>
MFC after: 2 weeks
Sponsored by: Klara Inc.

3 years agoDon't print VNET pointer when initializing dummynet
thj [Mon, 13 Jul 2020 13:35:36 +0000 (13:35 +0000)]
Don't print VNET pointer when initializing dummynet

When dummynet initializes it prints a debug message with the current VNET
pointer unnecessarily revealing kernel memory layout. This appears to be left
over from when the first pieces of vimage support were added.

PR: 238658
Submitted by: huangfq.daxian@gmail.com
Reviewed by: markj, bz, gnn, kp, melifaro
Approved by: jtl (co-mentor), bz (co-mentor)
Event: July 2020 Bugathon
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D25619

3 years agoFix invalid VHDX generation for image larger than 4Gb
gonzo [Mon, 13 Jul 2020 02:24:31 +0000 (02:24 +0000)]
Fix invalid VHDX generation for image larger than 4Gb

- Part of BAT payload location was lost due to invalid
    BAT entry encoding type (32 bits instead of 64 bits)
- The sequence of PB/SB entries in BAT was broken due to
    off-by-one index check. It worked for smaller than
    4Gb because there were no SB entries in BAT.

MFC after: 1 day

3 years agoLoader: explain the syntax of currdev
allanjude [Mon, 13 Jul 2020 02:09:21 +0000 (02:09 +0000)]
Loader: explain the syntax of currdev

The origin text was: "Syntax for devices is odd."
That is not very helpful.

PR: 199103
Reviewed by: kevans, tsoome
Sponsored by: Klara Inc.
Event: July 2020 Bugathon
Differential Revision: https://reviews.freebsd.org/D25629

3 years agosed/multi_test: print comment for current test, not next one
yuripv [Mon, 13 Jul 2020 01:32:37 +0000 (01:32 +0000)]
sed/multi_test: print comment for current test, not next one

This is visible when e.g. 8.20 is failing:

not ok 96 8.20 # \ in y command

8.20's comment should be '[ as an s delimiter and its escapes'.

3 years agoMinor code cleanup that removes "nd->nd_bpos = mcp;" in both if and else.
rmacklem [Mon, 13 Jul 2020 01:28:45 +0000 (01:28 +0000)]
Minor code cleanup that removes "nd->nd_bpos = mcp;" in both if and else.

The statement "nd->nd_bpos = mcp;" was in both the if and else. Correct,
but potentially confusing.  This patch fixes this.

There should be no semantics change caused by this commit.

3 years agoinstall(1): another correction after r363064
eugen [Sun, 12 Jul 2020 20:59:52 +0000 (20:59 +0000)]
install(1): another correction after r363064

Make sure we call fsync(2) on strip result
in case of "safecopy" and "strip -o tempcopy -- src"
before renaming tempcopy to destination.

MFC after: 3 weeks
X-MFC-With: r363064

3 years agoCleanup, no functional change intended.
tuexen [Sun, 12 Jul 2020 18:34:09 +0000 (18:34 +0000)]
Cleanup, no functional change intended.

This file is only compiled if INET or INET6 is defined. So there
is no need for checking that.

Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D25635

3 years agoDon't leave `path` behind when executing `:chflags_success`
ngie [Sun, 12 Jul 2020 17:16:57 +0000 (17:16 +0000)]
Don't leave `path` behind when executing `:chflags_success`

Prior to this change a `SF_IMMUTABLE` chflagsat(2)'ed file (`path`) was left
behind, which sabotaged kyua(1) from being able to clean up the work directory,
This resulted in unnecessary work for folks having to clean up the work
directory on non-disposable systems, which defaults to `/tmp`. Use `UF_OFFLINE`
instead of `SF_IMMUTABLE`, in part because setting `SF_IMMUTABLE` isn't relevant
to the test and `SF_IMMUTABLE` cannot be cleared at all securelevels, as pointed
out by @asomers.

Additional work is required to catch cases like this upfront in the future to
avoid tester headache. See PR # 247765 for more details/followup.

Suggested by: asomers
Reviewed By: asomers, #tests
MFC after: 1 week
PR: 247761
Sponsored by: DellEMC
Differential Revision: https://reviews.freebsd.org/D25561

3 years agoFix r363125 (Implement CLOCK_MONOTONIC_RAW (linux >= 2.6.28)),
netchild [Sun, 12 Jul 2020 14:57:29 +0000 (14:57 +0000)]
Fix r363125 (Implement CLOCK_MONOTONIC_RAW (linux >= 2.6.28)),
by realy using the MONOTONIC version and not the REALTIME version.

Noticed by: myfreeweb at github

3 years ago(Re)activate SCTP system calls when compiling SCTP support into the kernel
tuexen [Sun, 12 Jul 2020 14:50:12 +0000 (14:50 +0000)]
(Re)activate SCTP system calls when compiling SCTP support into the kernel
r363079 introduced the possibility of loading the SCTP stack as a module in
addition to compiling it into the kernel. As part of this, the registration
of the system calls was removed and put into the loading of the module.
Therefore, the system calls are not registered anymore when compiling the
SCTP into the kernel. This patch addresses that.

Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D25632

3 years agoSwitch inet6 default route subscription to the new rib subscription api.
melifaro [Sun, 12 Jul 2020 11:24:23 +0000 (11:24 +0000)]
Switch inet6 default route subscription to the new rib subscription api.

Old subscription model allowed only single customer.

Switch inet6 to the new subscription api and eliminate the old model.

Differential Revision: https://reviews.freebsd.org/D25615

3 years agoAdd destructor for the rib subscription system to simplify users code.
melifaro [Sun, 12 Jul 2020 11:18:09 +0000 (11:18 +0000)]
Add destructor for the rib subscription system to simplify users code.

Subscriptions are planned to be used by modules such as route lookup engines.
In that case that's the module task to properly unsibscribe before detach.
However, the in-kernel customer - inet6 wants to track default route changes.
To avoid having inet6 store per-fib subscriptions, handle automatic
 destruction internally.

Differential Revision: https://reviews.freebsd.org/D25614

3 years agoImplement CLOCK_MONOTONIC_RAW (linux >= 2.6.28).
netchild [Sun, 12 Jul 2020 09:51:09 +0000 (09:51 +0000)]
Implement CLOCK_MONOTONIC_RAW (linux >= 2.6.28).

It is documented as a raw hardware-based clock not subject to NTP or
incremental adjustments. With this "not as precise as CLOCK_MONOTONIC"
description in mind, map it to our CLOCK_MONOTNIC_FAST (the same
mapping as for the linux CLOCK_MONOTONIC_COARSE).

This is needed for the webcomponent of steam (chromium) and some
other steam component or game.

The linux-steam-utils port contains a LD_PRELOAD based fix for this.
There this is mapped to CLOCK_MONOTONIC.
As an untrained ear/eye (= the majority of people) is normaly not
noticing a difference of jitter in the 10-20 ms range, specially
if you don't pay attention like for example in a browser session
while watching a video stream, the mapping to CLOCK_MONOTONIC_FAST
seems more appropriate than to CLOCK_MONOTONIC.

3 years agoReverse the processing order of assigned clocks property.
mmel [Sun, 12 Jul 2020 07:59:15 +0000 (07:59 +0000)]
Reverse the processing order of assigned clocks property.
Linux processes these clocks in reverse order and some DT relies
on this fact. For example, the frequency setting for a given PLL
is the last in the list, preceded by the frequency setting of its
following divider or so...

MFC after: 1 week

3 years ago Assigned clocks: fix off-by-one bug, don't leak allocated memory.
mmel [Sun, 12 Jul 2020 07:42:21 +0000 (07:42 +0000)]
 Assigned clocks: fix off-by-one bug, don't leak allocated memory.

 MFC after: 1 week

3 years agoFix the module name for some arm drivers.
mmel [Sun, 12 Jul 2020 07:27:21 +0000 (07:27 +0000)]
Fix the module name for some arm drivers.
Module name (unlike of the of driver name) must be system wide unique.

Reported by: Mark Millard(bcm_pci), andrew(mvebu_gpio)
MFC with: r362954, r362385

3 years agoUpdate to bmake-20200710
sjg [Sun, 12 Jul 2020 01:11:48 +0000 (01:11 +0000)]
Update to bmake-20200710

Key changes include reduced noise at end of failed build log
and avoid evaluation of unnecessary terms in conditionals.
In META MODE; a target flagged .META is out-of-date if meta file
is missing

MFC after:      1 week

3 years agoperiodic.conf: correct capitailization in the middle of a sentence
allanjude [Sat, 11 Jul 2020 22:14:44 +0000 (22:14 +0000)]
periodic.conf: correct capitailization in the middle of a sentence

Reported by: yuripv
Event: July 2020 Bugathon

3 years agosx: remove SX_NOADAPTIVE from the man page
mjg [Sat, 11 Jul 2020 21:57:43 +0000 (21:57 +0000)]
sx: remove SX_NOADAPTIVE from the man page

The flag itself was removed in r341593

3 years agofd: stop looping in pwd_hold
mjg [Sat, 11 Jul 2020 21:57:03 +0000 (21:57 +0000)]
fd: stop looping in pwd_hold

We don't expect to fail acquiring the reference unless running into a corner
case. Just in case ensure forward progress by taking the lock.

Reviewed by: kib, markj
Differential Revision: https://reviews.freebsd.org/D25616

3 years agoAdd cross references betwen ttys(5) and related drivers
allanjude [Sat, 11 Jul 2020 20:56:57 +0000 (20:56 +0000)]
Add cross references betwen ttys(5) and related drivers

nmdm(4), ucom(4), and uart(4)

PR: 247638
Submitted by: Pau Amma <pauamma@gundo.com>
Reported by: 0mp
MFC after: 4 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon

3 years agoAdd a periodic script to backup the partition table and boot code
allanjude [Sat, 11 Jul 2020 20:53:31 +0000 (20:53 +0000)]
Add a periodic script to backup the partition table and boot code

Optionally, alert you if the contents change from the previous backup

PR: 86388
Submitted by: Rob Fairbanks <rob.fx907@gmail.com>, Miroslav Lachman <000.fbsd@quip.cz> (Original Version)
MFC after: 4 weeks
Relnotes: yes
Sponsored by: Klara Inc.
Event: July 2020 Bugathon
Differential Revision: https://reviews.freebsd.org/D25628

3 years agonscd: does not warn about invalid values what parsing config file
allanjude [Sat, 11 Jul 2020 19:44:12 +0000 (19:44 +0000)]
nscd: does not warn about invalid values what parsing config file

PR: 202135
Submitted by: amutu@amutu.com
Reported By: Trond.Endrestol@ximalas.info
Reviewed by: markj, freqlabs
MFC after: 4 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon
Differential Revision: https://reviews.freebsd.org/D25627

3 years agoboot(8): fix sorting of cross references
allanjude [Sat, 11 Jul 2020 19:29:24 +0000 (19:29 +0000)]
boot(8): fix sorting of cross references

Reported by: yuripv
Event: July 2020 Bugathon

3 years agoboot(8): Add additional cross references
allanjude [Sat, 11 Jul 2020 19:18:43 +0000 (19:18 +0000)]
boot(8): Add additional cross references

Provide hints to direct people towards gptzfsboot, zfsbootcfg, efibootmgr, etc

PR: 199103
MFC after: 2 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon

3 years agoAdd orders man page
carlavilla [Sat, 11 Jul 2020 18:27:05 +0000 (18:27 +0000)]
Add orders man page

PR: 239020
Submitted by: gbe@
Approved by: imp@
Obtained from: NetBSD
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D24293

3 years agoppp: Document the fact that ppp_nat is enabled by default
allanjude [Sat, 11 Jul 2020 18:24:16 +0000 (18:24 +0000)]
ppp: Document the fact that ppp_nat is enabled by default

No functional change.

PR: 243062
Submitted by: Evilham <contact@evilham.com> (original version)
MFC after: 2 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon
Differential Revision: https://reviews.freebsd.org/D25623

3 years agoprocctl(2): consistently refer to the last agrument as 'data'
allanjude [Sat, 11 Jul 2020 18:04:09 +0000 (18:04 +0000)]
procctl(2): consistently refer to the last agrument as 'data'

Some older references called it 'arg'

Also fix a syntax error that was underlining an entire sentence.

PR: 247386
Reported by: Paul Floyd <paulf@free.fr>, PauAmma (research)
MFC after: 2 weeks
Sponsored by: Klara Inc.

3 years agobsdinstall: only kill the dhclient for the interface we are restarting
allanjude [Sat, 11 Jul 2020 17:20:17 +0000 (17:20 +0000)]
bsdinstall: only kill the dhclient for the interface we are restarting

PR: 205821
Reported by: mjg
MFC after: 2 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon

3 years agoping(8): Check for integer truncation when handling the value for -s.
markj [Sat, 11 Jul 2020 17:10:16 +0000 (17:10 +0000)]
ping(8): Check for integer truncation when handling the value for -s.

PR: 239976
Submitted by: Neeraj <neerajpal09@gmail.com>
MFC after: 1 week
Event: July 2020 Bugathon

3 years agobsdinstall: don't fail if fstab is empty
allanjude [Sat, 11 Jul 2020 17:06:48 +0000 (17:06 +0000)]
bsdinstall: don't fail if fstab is empty

PR: 210865
Submitted by: Tim Lukasiewicz <eclipzetech08@gmail.com>, h-fujishima@sakura.ad.jp (original version)
Reported by: h-fujishima@sakura.ad.jp
Reviewed by: sef
MFC after: 2 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon

3 years agodefaults/rc.conf: note that the default is ppp_nat="YES"
allanjude [Sat, 11 Jul 2020 16:57:44 +0000 (16:57 +0000)]
defaults/rc.conf: note that the default is ppp_nat="YES"

PR: 243062
Submitted by: Evilham <contact@evilham.com>
MFC after: 2 weeks
Sponsored by: Klara Inc.
Differential Revision: https://reviews.freebsd.org/D25621

3 years agobsdinstall: kill dhclient before starting a new instance
allanjude [Sat, 11 Jul 2020 15:32:53 +0000 (15:32 +0000)]
bsdinstall: kill dhclient before starting a new instance

PR: 205821
Submitted by: William Orr <will@worrbase.com>
MFC after: 2 weeks
Sponsored by: Klara Inc.
Event: July 2020 Bugathon
Differential Revision: https://reviews.freebsd.org/D14572

3 years agoHandle device removal and removal+add cases to fix infinity rate.
mr [Sat, 11 Jul 2020 13:56:36 +0000 (13:56 +0000)]
Handle device removal and removal+add cases to fix infinity rate.

PR: 219829
Submitted by: ota@j.email.ne.jp
Reported by: rezo@live.cn
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D25226

3 years agoMake linprocfs(5) report correct tty number in /proc/<PID>/stat.
trasz [Sat, 11 Jul 2020 13:11:54 +0000 (13:11 +0000)]
Make linprocfs(5) report correct tty number in /proc/<PID>/stat.
Fixes sudo (sudo-1.8.21p2-3ubuntu1.2); previously would fail
with "sudo: no tty present and no askpass program specified".

Reviewed by: kib, emaste
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D25588

3 years agoMake linux stat(2) return the same st_dev for every devfs instance.
trasz [Sat, 11 Jul 2020 13:08:16 +0000 (13:08 +0000)]
Make linux stat(2) return the same st_dev for every devfs instance.
The reason for this is to work around an idiosyncrasy of glibc
getttynam(3) implementation: it checks whether st_dev returned for
fd 0 is the same as st_dev returned for the target of /proc/self/fd/0
symlink, and with linux chroots having their own devfs instance,
the check will fail if you chrooted into it.

PR: kern/240767
Reviewed by: kib
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D25559

3 years agoUpdate to version 3.1.3
se [Sat, 11 Jul 2020 07:33:18 +0000 (07:33 +0000)]
Update to version 3.1.3

This version fixes the following evaluation, which lead to a parse error:

     echo "if (1 < 3) 1" | bc

3 years agoloader: implement GELI writes
tsoome [Sat, 11 Jul 2020 06:51:42 +0000 (06:51 +0000)]
loader: implement GELI writes

Bug: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247482

This patch is based on initial work from allanjude.

PR: 247482
Obtained from: https://reviews.freebsd.org/D10236
Differential Revision: https://reviews.freebsd.org/D25605

3 years agoFix the tests for install(1): add support for STRIPBIN's -o option.
eugen [Fri, 10 Jul 2020 22:59:26 +0000 (22:59 +0000)]
Fix the tests for install(1): add support for STRIPBIN's -o option.

Reported by: lwhsu
MFC after: 1 week

3 years agoDon't emit warnings on MADV_HUGEPAGE; Firefox uses it a lot.
trasz [Fri, 10 Jul 2020 21:41:09 +0000 (21:41 +0000)]
Don't emit warnings on MADV_HUGEPAGE; Firefox uses it a lot.

MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation

3 years agoAdd a RELNOTES entry for r363084.
markj [Fri, 10 Jul 2020 19:58:26 +0000 (19:58 +0000)]
Add a RELNOTES entry for r363084.

3 years agoAdjust .Dd, missed in r363084.
markj [Fri, 10 Jul 2020 19:58:07 +0000 (19:58 +0000)]
Adjust .Dd, missed in r363084.

MFC with: r363084

3 years agoAdd a --sctp flag to nc.
markj [Fri, 10 Jul 2020 19:54:04 +0000 (19:54 +0000)]
Add a --sctp flag to nc.

The change adds an SCTP mode akin to UDP mode.  This is handy for doing
smoke testing of SCTP.

Use a long option to minimize the risk of option conflicts with OpenBSD.
For bonus points, this change unbreaks --no-tcpopt by adding a missing
case required by getopt_long().

Reviewed by: delphij, tuexen
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D25610

3 years agoinstall(1): addition to r363067
eugen [Fri, 10 Jul 2020 17:42:22 +0000 (17:42 +0000)]
install(1): addition to r363067

Also, make it not break if STRIPBIN points to strip version without -o support
and destination does not exist before installing.

Reported by: lwhsu
MFC after:      1 month
X-MFC-With:     363064

3 years agoWhitespace changes due to upstreaming r363079.
tuexen [Fri, 10 Jul 2020 16:59:06 +0000 (16:59 +0000)]
Whitespace changes due to upstreaming r363079.

3 years agoProvide support for building SCTP as a loadable module.
markj [Fri, 10 Jul 2020 14:56:05 +0000 (14:56 +0000)]
Provide support for building SCTP as a loadable module.

With this change, a kernel compiled with "options SCTP_SUPPORT" and
without "options SCTP" supports dynamic loading of the SCTP stack.

Currently sctp.ko cannot be unloaded since some prerequisite teardown
logic is not yet implemented.  Attempts to unload the module will return
EOPNOTSUPP.

Discussed with: tuexen
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D21997

3 years agoImplement the bitmap_subset() function in the LinuxKPI. This function
hselasky [Fri, 10 Jul 2020 12:06:18 +0000 (12:06 +0000)]
Implement the bitmap_subset() function in the LinuxKPI. This function
checks if the bitmap pointed to by the first argument is a subset of
the bitmap pointed to by the second argument. The function returns one
on success and zero on failure.

MFC after: 1 week
Sponsored by: Mellanox Technologies

3 years agoImplement the array_size() function in the LinuxKPI. This function
hselasky [Fri, 10 Jul 2020 11:27:54 +0000 (11:27 +0000)]
Implement the array_size() function in the LinuxKPI. This function
basically multiplies its two arguments and returns SIZE_MAX if the
result overflows the size_t type.  Else the product of the two
arguments is returned.

Bump the FreeBSD_version to mitigate issues with existing
implementation of array_size() in drm-devel-kmod.

Discussed with: manu@
MFC after: 1 week
Sponsored by: Mellanox Technologies

3 years agoFix a use-after-free bug for the userland stack. The kernel
tuexen [Fri, 10 Jul 2020 11:15:10 +0000 (11:15 +0000)]
Fix a use-after-free bug for the userland stack. The kernel
stack is not affected.
Thanks to Mark Wodrich from Google for finding and reporting the
bug.

MFC after: 1 week

3 years agoSplit long lines in the Raspberry Pi FB driver
andrew [Fri, 10 Jul 2020 09:34:47 +0000 (09:34 +0000)]
Split long lines in the Raspberry Pi FB driver

Sponsored by: Innovate UK

3 years agovfs: fix early termination of kern_getfsstat
mjg [Fri, 10 Jul 2020 09:24:27 +0000 (09:24 +0000)]
vfs: fix early termination of kern_getfsstat

The kernel would unlock already unlocked mutex if the buffer got filled up
before the mount list ended.

Reported by: pho
Fixes: r363069 ("vfs: depessimize getfsstat when only the count is requested")

3 years agovfs: fix trivial whitespace issues which don't interefere with blame
mjg [Fri, 10 Jul 2020 09:01:36 +0000 (09:01 +0000)]
vfs: fix trivial whitespace issues which don't interefere with blame

.. even without the -w switch

3 years agoAdvertise 64-bit physical-address capability.
grehan [Fri, 10 Jul 2020 07:26:50 +0000 (07:26 +0000)]
Advertise 64-bit physical-address capability.

This fixes a coredump with NetBSD guests when XHCI is configured.
On seeing the AC64 flag clear, the NetBSD XHCI driver was only writing
to the lower 32-bits of 64-bit physical address registers. The emulation
relies on a write to the hi 32-bits to calculate a host virtual address
for internal use, and has always supported 64-bit addressing.

All other guests were seen to write to both the lo- and hi- address
registers, regardless of the AC64 setting.

Discussed with:  Leon Dang (author)
Tested with:  Ubuntu 16/18/20, Windows10, OpenBSD UEFI guests.

MFC after: 2 weeks.

3 years agovfs: depessimize getfsstat when only the count is requested
mjg [Fri, 10 Jul 2020 06:47:58 +0000 (06:47 +0000)]
vfs: depessimize getfsstat when only the count is requested

This avoids relocking mountlist_mtx for each entry.

3 years agovfs: avoid spurious memcpy in vfs_statfs
mjg [Fri, 10 Jul 2020 06:46:42 +0000 (06:46 +0000)]
vfs: avoid spurious memcpy in vfs_statfs

It is quite often called for the very same buffer.

3 years agoinstall(1): correction after r363064
eugen [Fri, 10 Jul 2020 00:45:34 +0000 (00:45 +0000)]
install(1): correction after r363064

Make it not break if STRIPBIN points to strip version without -o support.
In that case, perform extra copy just like before r363064.

MFC after: 1 month
X-MFC-With: 363064

3 years agomemfd_create: turn on SHM_GROW_ON_WRITE
kevans [Fri, 10 Jul 2020 00:45:16 +0000 (00:45 +0000)]
memfd_create: turn on SHM_GROW_ON_WRITE

memfd_create fds will no longer require an ftruncate(2) to set the size;
they'll grow (to the extent that it's possible) upon write(2)-like syscalls.

Reviewed by: kib
Differential Revision: https://reviews.freebsd.org/D25502

3 years agoshm_open2: Implement SHM_GROW_ON_WRITE
kevans [Fri, 10 Jul 2020 00:43:45 +0000 (00:43 +0000)]
shm_open2: Implement SHM_GROW_ON_WRITE

Lack of SHM_GROW_ON_WRITE is actively breaking Python's memfd_create tests,
so go ahead and implement it. A future change will make memfd_create always
set SHM_GROW_ON_WRITE, to match Linux behavior and unbreak Python's tests
on -CURRENT.

Reviewed by: kib
Differential Revision: https://reviews.freebsd.org/D25502

3 years agoOptimize install(1) a bit.
eugen [Fri, 10 Jul 2020 00:24:42 +0000 (00:24 +0000)]
Optimize install(1) a bit.

Currently, "install -s -S" behaviour is inefficient for upgrade.
First it finds that destination file already exists and copies
source file to temporary file. Then it calls strip(1)
with name of temporary file as single agrument and our strip(1) creates
another temporary file in the /tmp (or TMPDIR) making another copy
that is finally copied to DESTDIR third time.

Meantime, strip(1) has an option "-o dst" to specify destination
so install(1) is allowed to skip initial copying from obj to DESTDIR.
This change makes it do so.

Take a look at https://reviews.freebsd.org/D25551 for details
and efficiency numbers (in short: upto 32% gained for installword).

MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D25551

3 years agoProperly backout r362998
imp [Fri, 10 Jul 2020 00:24:06 +0000 (00:24 +0000)]
Properly backout r362998

Correct a small mistake in r363060's backaout of r362998 by reverse-applying
r362998 by hand to loader.conf.

Differential Revision: https://reviews.freebsd.org/D25606

3 years agoshmfd: make shm_size a vm_ooffset_t
kevans [Fri, 10 Jul 2020 00:03:06 +0000 (00:03 +0000)]
shmfd: make shm_size a vm_ooffset_t

On 32-bit platforms, this expands the shm_size to a 64-bit quantity and
resolves a mismatch between the shmfd size and underlying vm_object size.
The implementation did not account for this kind of mismatch.

Reviewed by: kib
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D25602

3 years agoEnable support for IEEE 802.11N, 802.11W, 802.11AC and 802.11.AX to
cy [Thu, 9 Jul 2020 23:01:36 +0000 (23:01 +0000)]
Enable support for IEEE 802.11N, 802.11W, 802.11AC and 802.11.AX to
hostapd and wpa_supplicant.

Submitted by: bz
MFC after: 2 weeks
Relnotes: yes
Sponsored by: Rubicon Communications, LLC (d/b/a "Netgate")

3 years agoRevert r362998, r326999 while a better compatibility strategy is devised.
scottl [Thu, 9 Jul 2020 22:38:36 +0000 (22:38 +0000)]
Revert r362998, r326999 while a better compatibility strategy is devised.

3 years agosh: Do not ignore INTOFF during a trap
jilles [Thu, 9 Jul 2020 20:53:56 +0000 (20:53 +0000)]
sh: Do not ignore INTOFF during a trap

INTOFF postpones SIGINT processing and INTON enables it again. This is
important so an interactive shell can return to the top level prompt when
Ctrl+C is pressed.

Given that INTON is automatically done when a builtin completes, the part
where onsig() ignores suppressint when in_dotrap is true is both unnecessary
and unsafe. If the trap is for some other signal than SIGINT, arbitrary code
could have been interrupted.

Historically, INTOFF remained in effect for longer.

Reviewed by: bdrewery
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D25270

3 years agoApply the logic from r363051 to semctl(2) and __sem_base field.
markj [Thu, 9 Jul 2020 18:34:54 +0000 (18:34 +0000)]
Apply the logic from r363051 to semctl(2) and __sem_base field.

Reported by: Jeffball <jeffball@grimm-co.com>
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D25600

3 years agowhois: Handle referrals to rwhois servers.
markj [Thu, 9 Jul 2020 17:27:14 +0000 (17:27 +0000)]
whois: Handle referrals to rwhois servers.

PR: 243862
Submitted by: ben@desync.com
Differential Revision: https://reviews.freebsd.org/D25156

3 years agoAvoid copying out kernel pointers from msgctl(IPC_STAT).
markj [Thu, 9 Jul 2020 17:26:49 +0000 (17:26 +0000)]
Avoid copying out kernel pointers from msgctl(IPC_STAT).

While this behaviour is harmless, it is really just an artifact of the
fact that the msgctl(2) implementation uses a user-visible structure as
part of the internal implementation, so it is not deliberate and these
pointers are not useful to userspace.  Thus, NULL them out before
copying out, and remove references to them from the manual page.

Reported by: Jeffball <jeffball@grimm-co.com>
Reviewed by: emaste, kib
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D25600

3 years agoAdd a driver to talk to the Raspberry Pi firmware
andrew [Thu, 9 Jul 2020 16:28:13 +0000 (16:28 +0000)]
Add a driver to talk to the Raspberry Pi firmware

Communicating with the Raspberry Pi firmware is currently handled by each
driver calling into the mbox driver, however the device tree is structured
such that they should be calling into a firmware driver.

Add a driver for this node with an interface to communicate to the firmware
via the mbox interface.

There is a sysctl to get the firmware revision. This is a unix date so can
be parsed with:

root@generic:~ # date -j -f '%s' sysctl -n dev.bcm2835_firmware.0.revision
Tue Nov 19 16:40:28 UTC 2019

Reviewed by: manu
Sponsored by: Innovate UK
Differential Revision: https://reviews.freebsd.org/D25572

3 years agoOptimize flushing of receive queues.
tuexen [Thu, 9 Jul 2020 16:18:42 +0000 (16:18 +0000)]
Optimize flushing of receive queues.
This addresses an issue found and reported for the userland stack in
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=21243

MFC after: 1 week

3 years agoloader: setting vdev size based on label asize is not working
tsoome [Thu, 9 Jul 2020 13:19:00 +0000 (13:19 +0000)]
loader: setting vdev size based on label asize is not working

Because we need to read asize from vdev_tree. We also need to consider
different vdev type difference.

Reviewed by: allanjude
Sponsored by: Netflix, Klara Inc.
Differential Revision: https://reviews.freebsd.org/D25586

3 years agog_concat_find_device: trim /dev/ if it is present, like other GEOM
delphij [Thu, 9 Jul 2020 08:00:46 +0000 (08:00 +0000)]
g_concat_find_device: trim /dev/ if it is present, like other GEOM
classes.

Reviewed by: cem
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D25596

3 years agoRevert r363031
sjg [Thu, 9 Jul 2020 03:46:07 +0000 (03:46 +0000)]
Revert r363031

3 years agosys/geom: consistently use _PATH_DEV instead of hardcoding "/dev/".
delphij [Thu, 9 Jul 2020 02:52:39 +0000 (02:52 +0000)]
sys/geom: consistently use _PATH_DEV instead of hardcoding "/dev/".

Reviewed by: cem
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D25565

3 years agoInstall extra TCP stack header files: They are needed to compile a userland
olivier [Wed, 8 Jul 2020 21:40:27 +0000 (21:40 +0000)]
Install extra TCP stack header files: They are needed to compile a userland
component of TCP Blackbox Recorder as example.

Approved by: rrs
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D25584

3 years agoUpdate to bmake-20200704
sjg [Wed, 8 Jul 2020 21:20:12 +0000 (21:20 +0000)]
Update to bmake-20200704

Key changes include reduced noise at end of failed build log
and avoid evaluation of unnecessary terms in conditionals.

MFC after: 1 week

3 years agotwsi: Fix for > Allwinner A20
manu [Wed, 8 Jul 2020 19:14:44 +0000 (19:14 +0000)]
twsi: Fix for > Allwinner A20

Every revision of twsi after the A20 have a bug where we need to
write again the control register after each interrupts. We also need
to add some delay before writing to this register, a simple read of the
same register does the job so do that.
Also fix the case when we have finish sending all the bytes, it only worked
for 1 byte transfer (the same kind that we do for talking to the PMIC on A20
boards).
While here add more debug messages and rework some of them.

This was tested by talking to a AT23C32 eeprom and a DS3231 RTC from an
H3 and A20 board.

PR: 247576
Reported by: Manuel Stühn (freebsd@justmail.de)
MFC after: 1 week

3 years agotest: add libkvm read test
alfredo [Wed, 8 Jul 2020 18:58:44 +0000 (18:58 +0000)]
test: add libkvm read test

This test checks if value received from kvm_read is sane, based on
value returned by sysctl interface.

This should catch regression on bug fixed by r359160

Reviewed by: jhb
Approved by: jhibbits (mentor)
MFC after: 1 week
Sponsored by: Eldorado Research Institute (eldorado.org.br)
Differential Revision: https://reviews.freebsd.org/D23783

3 years agotag bmake-20200704
sjg [Wed, 8 Jul 2020 18:32:25 +0000 (18:32 +0000)]
tag bmake-20200704

3 years agoImport bmake-20200704
sjg [Wed, 8 Jul 2020 18:32:15 +0000 (18:32 +0000)]
Import bmake-20200704

from ChangeLog:

    (most of this by rillig@)
    o lots of style and white-space cleanup
    o lots more unit tests for variable modifiers
    o simplified description of some functions
    o str.c: refactor Str_Match
    o var.c: debugging output for :@
      constify VarModify parameter
      fix :hash modifier on 16-bit platforms
      remove unnecessary forward declarations
      refactor ApplyModifier_SysV to have less indentation
      simplify code for :E and :R
      clean up code for :H and :T
      refactor ApplyModifiers

    * var.c: we need stdint.h on some platforms to get uint32_t
    * unit-test/Makefile: we need to supress the specific error
    for RE substitution error in modmisc, since it varies accross
    different OS.

3 years agoextres/syscon_generic: Make device quiet if not in boot verbose
manu [Wed, 8 Jul 2020 17:14:44 +0000 (17:14 +0000)]
extres/syscon_generic: Make device quiet if not in boot verbose

On some boards there is a lot of of syscon node that are unused as
more specific drivers is probed before, no need to flood the console
for the mostly-unused generic ones.

MFC after: 1 week

3 years agogeli: enable direct dispatch
asomers [Wed, 8 Jul 2020 17:12:12 +0000 (17:12 +0000)]
geli: enable direct dispatch

geli does all of its crypto operations in a separate thread pool, so
g_eli_start, g_eli_read_done, and g_eli_write_done don't actually do very
much work. Enabling direct dispatch eliminates the g_up/g_down bottlenecks,
doubling IOPs on my system. This change does not affect the thread pool.

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

3 years agoMerge commit 065fc1eafe7c from llvm git (by Richard Smith):
dim [Wed, 8 Jul 2020 16:50:47 +0000 (16:50 +0000)]
Merge commit 065fc1eafe7c from llvm git (by Richard Smith):

  PR45521: Preserve the value kind when performing a standard
  conversion sequence on a glvalue expression.

  If the sequence is supposed to perform an lvalue-to-rvalue
  conversion, then one will be specified as the first conversion in the
  sequence. Otherwise, one should not be invented.

This should fix clang crashing with "can't implicitly cast lvalue to
rvalue with this cast kind", followed by "UNREACHABLE executed at
/usr/src/contrib/llvm-project/clang/lib/Sema/Sema.cpp:538!", when
building recent versions of Ceph, and the CPAN module SYBER/Date-5.2.0.

Reported by: Willem Jan Withagen <wjw@digiware.nl>, eserte12@yahoo.de
PR: 245530, 247812
MFC after: 3 days

3 years agoImprove consistency.
tuexen [Wed, 8 Jul 2020 16:23:40 +0000 (16:23 +0000)]
Improve consistency.

MFC after: 1 week

3 years agoFix error description.
tuexen [Wed, 8 Jul 2020 16:04:06 +0000 (16:04 +0000)]
Fix error description.

MFC after: 1 week

3 years agoDon't accept FORWARD-TSN chunks when I-FORWARD-TSN was negotiated
tuexen [Wed, 8 Jul 2020 15:49:30 +0000 (15:49 +0000)]
Don't accept FORWARD-TSN chunks when I-FORWARD-TSN was negotiated
and vice versa.

MFC after: 1 week

3 years agoImprove handling of PKTDROP chunks. This includes the input validation
tuexen [Wed, 8 Jul 2020 12:25:19 +0000 (12:25 +0000)]
Improve handling of PKTDROP chunks. This includes the input validation
to address two issues found by ossfuzz testing the userland stack:
* https://oss-fuzz.com/testcase-detail/5387560242380800
* https://oss-fuzz.com/testcase-detail/4887954068865024
and adding support for I-DATA chunks in addition to DATA chunks.