]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
3 years agoopenssh: refer to OpenSSL not SSLeay
Ed Maste [Wed, 15 Jul 2020 15:35:26 +0000 (15:35 +0000)]
openssh: refer to OpenSSL not SSLeay

This change was made upstream between 7.9p1 and 8.0p1.  We've made local
changes in the same places for handling the version_addendum; apply the
SSLeay_version to OpenSSL_version change in advance of importing 8.0p1.

Obtained from: OpenSSH-portable a65784c9f9c5
Sponsored by: The FreeBSD Foundation

3 years agozpool-features(7): Note that the boot loader has support for large_blocks
Allan Jude [Wed, 15 Jul 2020 14:38:15 +0000 (14:38 +0000)]
zpool-features(7): Note that the boot loader has support for large_blocks

Since r304321 (-current: Aug 18, 2016) and r328866 (stable/11: Feb 5, 2018)
the FreeBSD loader has supported reading from datasets with the
large_blocks feature active.

PR: 247992
Reported by: Anton Saietskii <vsasjason@gmail.com>
MFC after: 2 weeks
Sponsored by: Klara Inc.

3 years agovlan(4): Minor grammar corrections
Allan Jude [Wed, 15 Jul 2020 14:27:23 +0000 (14:27 +0000)]
vlan(4): Minor grammar corrections

Note: date not bumped because "content" was not changed, just inserted some
missing words.

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

3 years ago[PowerPC] Use PVO_PADDR to get the PA from PVO
Leandro Lupori [Wed, 15 Jul 2020 13:43:48 +0000 (13:43 +0000)]
[PowerPC] Use PVO_PADDR to get the PA from PVO

Use PVO_PADDR macro to get the physical address from a PVO, instead of
explicitly ANDing pvo_pte.pa with LPTE_RPGN where it is needed.  Besides
improving readability, this is needed to support superpages (D25237), where
the steps to get the PA from a PVO are different.

Reviewed by: markj
Sponsored by: Eldorado Research Institute (eldorado.org.br)
Differential Revision: https://reviews.freebsd.org/D25654

3 years agoFix style in r363220
Eric van Gyzen [Wed, 15 Jul 2020 13:26:15 +0000 (13:26 +0000)]
Fix style in r363220

Apply the style change Kostik suggested in the review.

Reported by: kib
MFC after: 2 weeks
X-MFC with: r363220
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D25676

3 years agoFix Coverity issues in OFED
Eric van Gyzen [Wed, 15 Jul 2020 13:17:16 +0000 (13:17 +0000)]
Fix Coverity issues in OFED

read_ibdiag_config NULL deref
read_ibdiag_config mem leak
ib_mad_inv_field_str Missing comma in a string array initialization
print_node_header NULL deref
diff_node_ports copy-paste error
ibportstate.c main() missing break in switch
set_thresholds NULL ptr deref
dump_unicast_tables leaks mapnd
umad_cm_attr_str dead code
__ibv_close_device close(-1)
check return value of listen()
mlx5 bitmap.h - bad bit shift - UB
get_dst_addr check return value of inet_pton
osm_perfmgr_init check return value of cl_spinlock_init
osm_port_new memory leak on error path
sa_mad_ctrl_rcv_callback missing break in switch case

I did not include CID numbers because these were found by an internal
run at Isilon.

Reviewed by: cem kib
MFC after: 2 weeks
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D25676

3 years agoFix BUILD_WITH_STRICT_TMPPATH builds
Alex Richardson [Wed, 15 Jul 2020 12:08:06 +0000 (12:08 +0000)]
Fix BUILD_WITH_STRICT_TMPPATH builds

We need dd in $PATH for some of the MK_BOOT code and some tests also use it.

Obtained from: CheriBSD

3 years agoAllow bootstrapping localdef on non-FreeBSD systems
Alex Richardson [Wed, 15 Jul 2020 12:07:59 +0000 (12:07 +0000)]
Allow bootstrapping localdef on non-FreeBSD systems

The current localedef simply assumes that the locale headers on build system
are compatible with those on the target system which is not necessarily true.
It generally works on FreeBSD (as long as we don't change the locale headers),
but Linux and macOS provide completely different locale headers.

This change adds new bootstrap headers that namespace certain xlocale
structures defined or used by in the headers that localdef needs.
This is required since system headers *must* be able to include the "real"
locale headers for printf(), etc., but we also want to access the target
systems's internal locale structures.

Reviewed By: yuripv, brooks
Differential Revision: https://reviews.freebsd.org/D25229

3 years agoAdd missing newline and return in localedef error message
Alex Richardson [Wed, 15 Jul 2020 12:07:53 +0000 (12:07 +0000)]
Add missing newline and return in localedef error message

I hit those error messages when using a localedef built against headers
that don't match the target system (cross-building from a Linux host).
This problem will be fixed in the next commit.

3 years agoAvoid rebuilding libpmc in every incremental rebuild
Alex Richardson [Wed, 15 Jul 2020 12:07:47 +0000 (12:07 +0000)]
Avoid rebuilding libpmc in every incremental rebuild

Generate libpmc_events.c in a temporary file first and only overwrite it
if the files are actually different.
This avoids compiling and relinking the different variants of libpmc on
every incremental build.

Reviewed By: jhb
Differential Revision: https://reviews.freebsd.org/D24784

3 years agopoll: factor fd lookup out of scan and rescan
Mateusz Guzik [Wed, 15 Jul 2020 10:24:39 +0000 (10:24 +0000)]
poll: factor fd lookup out of scan and rescan

3 years agofd: remove fd_lastfile
Mateusz Guzik [Wed, 15 Jul 2020 10:24:04 +0000 (10:24 +0000)]
fd: remove fd_lastfile

It keeps recalculated way more often than it is needed.

Provide a routine (fdlastfile) to get it if necessary.

Consumers may be better off with a bitmap iterator instead.

3 years agofd: add obvious branch predictions to fdalloc
Mateusz Guzik [Wed, 15 Jul 2020 10:14:00 +0000 (10:14 +0000)]
fd: add obvious branch predictions to fdalloc

3 years agolibprocstat: fix kvm filedesc access after introduction of fdescenttbl
Mateusz Guzik [Wed, 15 Jul 2020 10:13:23 +0000 (10:13 +0000)]
libprocstat: fix kvm filedesc access after introduction of fdescenttbl

3 years agoGrammar and typo fixes.
Konstantin Belousov [Wed, 15 Jul 2020 09:48:36 +0000 (09:48 +0000)]
Grammar and typo fixes.

Submitted by: alc
MFC after: 20 days

3 years agoFix the pNFS flexible file layout client for servers with small write size.
Rick Macklem [Wed, 15 Jul 2020 01:26:28 +0000 (01:26 +0000)]
Fix the pNFS flexible file layout client for servers with small write size.

The code in nfscl_dofflayout() loops when a flexible file layout server
provides a small write data limit (no extant server is known to do this).
If/when it looped, it erroneously reused the "drpc" argument for the
mirror worker thread, corrupting it.
This patch fixes the problem by only using the calling thread after the
first loop iteration.

Found during testing by simulating a server with a small write size.

Since no extant pNFS server is known to provide a small write size,
this fix it not needed in practice at this time.

MFC after: 2 weeks

3 years agoRemove obsolete files after byacc 20200330 import (r363171).
Jung-uk Kim [Wed, 15 Jul 2020 00:13:15 +0000 (00:13 +0000)]
Remove obsolete files after byacc 20200330 import (r363171).

Reported by: lwhsu

3 years agoRemove a redundant file from test directory to unbreak yacc regression test.
Jung-uk Kim [Tue, 14 Jul 2020 23:59:00 +0000 (23:59 +0000)]
Remove a redundant file from test directory to unbreak yacc regression test.

It looks like the obsolete file from old regression test was accidentally
re-added between version 20170709 and 20180510.

Reported by: lwhsu

3 years agotop: VIS_SAFE turned out to be unsafe
Yuri Pankov [Tue, 14 Jul 2020 22:43:40 +0000 (22:43 +0000)]
top: VIS_SAFE turned out to be unsafe

Unset VIS_SAFE flag as it turned out to be actually unsafe
for continuos top display as it's passing through sequences
resulting cursor movement (backspace, tab, carriage-return),
and explicitly set VIS_TAB for the same reason.

Reported by: Mark Millard <marklmi@yahoo.com>, swills
Tested by: Mark Millard <marklmi@yahoo.com>, swills

3 years agohwpmc: Always set pmc_cpuid to something
Ryan Moeller [Tue, 14 Jul 2020 22:25:06 +0000 (22:25 +0000)]
hwpmc: Always set pmc_cpuid to something

pmc_cpuid was uninitialized for most AMD processor families.  We can still
populate this string for unimplemented families.

Also added a CPUID_TO_STEPPING macro and converted existing code to use it.

Reviewed by: mav
MFC after: 2 weeks
Sponsored by: iXsystems, Inc.
Differential Revision: https://reviews.freebsd.org/D25673

3 years agolinuxkpi: Ignore NULL pointers passed to string parameter of kstr(n)dup
Vladimir Kondratyev [Tue, 14 Jul 2020 21:56:59 +0000 (21:56 +0000)]
linuxkpi: Ignore NULL pointers passed to string parameter of kstr(n)dup

That follows Linux and fixes related drm-kmod-5.3 panic.

Reviewed by: imp, hselasky
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D25657

3 years agocache: make negative shrinker round robin on all lists every time
Mateusz Guzik [Tue, 14 Jul 2020 21:19:33 +0000 (21:19 +0000)]
cache: make negative shrinker round robin on all lists every time

Previously it would check 4, 3, 2, 1 lists. In practice by the time
it is getting called all lists have some elements and consequently
this does not result in new evictions.

Nonetheless, the code is clearer.

Tested by: pho

3 years agocache: remove numcalls
Mateusz Guzik [Tue, 14 Jul 2020 21:17:46 +0000 (21:17 +0000)]
cache: remove numcalls

The counter is not very useful and if necessary the value can be
found by summing up other counters.

3 years agocache: count dropped entries
Mateusz Guzik [Tue, 14 Jul 2020 21:17:08 +0000 (21:17 +0000)]
cache: count dropped entries

3 years agocache: remove neg_locked argument from cache_zap_locked
Mateusz Guzik [Tue, 14 Jul 2020 21:16:48 +0000 (21:16 +0000)]
cache: remove neg_locked argument from cache_zap_locked

Tested by: pho

3 years agocache: remove a useless argument from cache_negative_insert
Mateusz Guzik [Tue, 14 Jul 2020 21:16:07 +0000 (21:16 +0000)]
cache: remove a useless argument from cache_negative_insert

3 years agoReally fix cleandir after r362973
Mitchell Horne [Tue, 14 Jul 2020 21:15:16 +0000 (21:15 +0000)]
Really fix cleandir after r362973

I made an attempt to fix this in r362978, but all it really did was
confine the issue to the $MACHINE_CPUARCH == "riscv" case. The real
problem is that LINKER_FEATURES is not defined here, so bsd.linker.mk
needs to be included.

This error with cleandir only occurs when META_MODE is disabled, which
explains why it was missed by both CI and myself.

Note that this effectively reverts r362978.

Reported by: mjg
Reviewed by: imp, kevans (in IRC)

3 years agocache: create a dedicate struct for negative entries
Mateusz Guzik [Tue, 14 Jul 2020 21:14:59 +0000 (21:14 +0000)]
cache: create a dedicate struct for negative entries

.. and stuff if into the unused target vnode field

This gets rid of concurrent nc_flag modifications racing with the
shrinker and consequently fixes a bug where such a change could have
been missed when cache_ncp_invalidate was being issued..

Reported by: zeising
Tested by: pho, zeising
Fixes: r362828 ("cache: lockless forward lookup with smr")

3 years agoamd64: allow parallel shootdown IPIs
Konstantin Belousov [Tue, 14 Jul 2020 20:37:50 +0000 (20:37 +0000)]
amd64: allow parallel shootdown IPIs

Stop using smp_ipi_mtx to protect global shootdown state, and
move/multiply the global state into pcpu.  Now each CPU can initiate
shootdown IPI independently from other CPUs.  Initiator enters
critical section, then fills its local PCPU shootdown info
(pc_smp_tlb_XXX), then clears scoreboard generation at location (cpu,
my_cpuid) for each target cpu.  After that IPI is sent to all targets
which scan for zeroed scoreboard generation words.  Upon finding such
word the shootdown data is read from corresponding cpu' pcpu, and
generation is set.  Meantime initiator loops waiting for all zeroed
generations in scoreboard to update.

Initiator does not disable interrupts, which should allow
non-invalidation IPIs from deadlocking, it only needs to disable
preemption to pin itself to the instance of the pcpu smp_tlb data.

The generation is set before the actual invalidation is performed in
handler. It is safe because target CPU cannot return to userspace
before handler finishes. In principle only NMI can preempt the
handler, but NMI would see the kernel handler frame and not touch
not-invalidated user page table.

Handlers loop until they do not see zeroed scoreboard generations.
This, together with hardware keeping one pending IPI in LAPIC IRR
should prevent lost shootdowns.

Notes.
1. The code does protect writes to LAPIC ICR with exclusion. I believe
   this is fine because we in fact do not send IPIs from interrupt
   handlers. More for !x2APIC mode where ICR access for write requires
   two registers write, we disable interrupts around it. If considered
   incorrect, I can add per-cpu spinlock around ipi_send().
2. Scoreboard lines owned by given target CPU can be padded to the
   cache line, to reduce ping-pong.

Reviewed by: markj (previous version)
Discussed with: alc
Tested by: pho
Sponsored by: The FreeBSD Foundation
MFC after: 3 weeks
Differential revision: https://reviews.freebsd.org/D25510

3 years agoImprove the error handling in generating ASCONF chunks.
Michael Tuexen [Tue, 14 Jul 2020 20:32:50 +0000 (20:32 +0000)]
Improve the error handling in generating ASCONF chunks.
In case of errors, the cleanup was not consistent.
Thanks to Felix Weinrank for fuzzing the userland stack and making
me aware of the issue.

MFC after: 1 week

3 years agoMake CLOCK_REALTIME and TIMER_ABSTIME available for XOPEN_SOURCE >= 500.
Konstantin Belousov [Tue, 14 Jul 2020 20:23:27 +0000 (20:23 +0000)]
Make CLOCK_REALTIME and TIMER_ABSTIME available for XOPEN_SOURCE >= 500.

Reported by: jbeich
PR: 247701
Reviewed by: jilles
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D25554

3 years agoUpdate to D25266, bin/ps: Make the rtprio option actually show
Kirk McKusick [Tue, 14 Jul 2020 18:57:31 +0000 (18:57 +0000)]
Update to D25266, bin/ps: Make the rtprio option actually show
realtime priorities

The current `ps -axO rtprio' show threads running at interrupt
priority such as the [intr] thread as '1:48' and threads running
at kernel priority such as [pagedaemon] as normal:4294967260.

This change shows [intr] as intr:48 and [pagedaemon] as kernel:4.

Reviewed by:    kib
MFC after: 1 week (together with -r362369)
Differential Revision: https://reviews.freebsd.org/D25660

3 years agoPrint the arm64 registers in more exception handling panics
Andrew Turner [Tue, 14 Jul 2020 18:50:48 +0000 (18:50 +0000)]
Print the arm64 registers in more exception handling panics

It can be useful to get a dump of all registers when investigating why we
received an exception that we are unable to handle. In these cases we
already call panic, however we don't always print the registers.

Add calls to print_registers and print esr and far when applicable.

Sponsored by: Innovate UK

3 years agoAdd stepping to the kern.hwpmc.cpuid string on x86.
Alexander Motin [Tue, 14 Jul 2020 18:11:05 +0000 (18:11 +0000)]
Add stepping to the kern.hwpmc.cpuid string on x86.

It follows the equivalent Linux change to be able to differentiate
skylakex and cascadelakex, sharing the same model but not stepping.

This fixes skylakex handling broken by r363144.

MFC after: 6 days

3 years agoEnable EFI system partition on amd64 and i386 VM images
Oleksandr Tymoshenko [Tue, 14 Jul 2020 18:02:24 +0000 (18:02 +0000)]
Enable EFI system partition on amd64 and i386 VM images

EFI support is a hard requirement for generating Hyper-V Gen2 VM images.

Reviewed by: gjb
MFC after: 2 weeks
Differential Revision: https://reviews.freebsd.org/D25655

3 years agoAdd a RELNOTES entry for safexcel(4).
Mark Johnston [Tue, 14 Jul 2020 15:05:38 +0000 (15:05 +0000)]
Add a RELNOTES entry for safexcel(4).

Sponsored by: Rubicon Communications, LLC (Netgate)

3 years agosafexcel(4): Fix the INVARIANTS build after a last-second change.
Mark Johnston [Tue, 14 Jul 2020 15:05:24 +0000 (15:05 +0000)]
safexcel(4): Fix the INVARIANTS build after a last-second change.

Reported by: Jenkins
MFC with: r363180

3 years agoAdd safexcel(4) to cryptotest.
Mark Johnston [Tue, 14 Jul 2020 14:11:54 +0000 (14:11 +0000)]
Add safexcel(4) to cryptotest.

MFC after: 1 week
Sponsored by: Rubicon Communications, LLC (Netgate)

3 years agoAdd a driver for the SafeXcel EIP-97.
Mark Johnston [Tue, 14 Jul 2020 14:09:29 +0000 (14:09 +0000)]
Add a driver for the SafeXcel EIP-97.

The EIP-97 is a packet processing module found on the ESPRESSObin.  This
commit adds a crypto(9) driver for the crypto and hash engine in this
device.  An initial skeleton driver that could attach and submit
requests was written by loos and others at Netgate, and the driver was
finished by me.

Support for separate AAD and output buffers will be added in a separate
commit, to simplify merging to stable/12 (where those features don't
exist).

Reviewed by: gnn, jhb
Feedback from: andrew, cem, manu
MFC after: 1 week
Sponsored by: Rubicon Communications, LLC (Netgate)
Differential Revision: https://reviews.freebsd.org/D25417

3 years agoRevert r362809: Mention FreeBSD in the HISTORY sections of apropos(1) and makewhatis(8).
Gordon Bergling [Tue, 14 Jul 2020 12:02:30 +0000 (12:02 +0000)]
Revert r362809: Mention FreeBSD in the HISTORY sections of apropos(1) and makewhatis(8).

We don't mention the first appearance of a utility in FreeBSD, when it first
appeared in a BSD version that predates FreeBSD.

PR: 223520, 223521
Reported by: rgrimes, imp
Reviewed by: bcr (mentor)
Approved by: bcr (mentor)
Differential Revision: https://reviews.freebsd.org/D25521

3 years agoStart splitting-out the Intel DMAR busdma backend to a generic place,
Ruslan Bukin [Tue, 14 Jul 2020 10:55:19 +0000 (10:55 +0000)]
Start splitting-out the Intel DMAR busdma backend to a generic place,
so it can be used on other IOMMU systems.

Provide MI iommu_unit, iommu_domain and iommu_ctx structs in sys/iommu.h;
use them as a first member of MD dmar_unit, dmar_domain and dmar_ctx.

Change the namespace in DMAR backend: use iommu_ prefix instead of dmar_.

Move some macroses and function prototypes to sys/iommu.h.

Reviewed by: kib
Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D25574

3 years ago[pmc] whoops, remove spurious #'s
Adrian Chadd [Tue, 14 Jul 2020 05:33:23 +0000 (05:33 +0000)]
[pmc] whoops, remove spurious #'s

pointed out by gonzo@, thanks!

3 years ago[hwpmc] Compile 'pmc' only if we have C++11.
Adrian Chadd [Tue, 14 Jul 2020 05:10:50 +0000 (05:10 +0000)]
[hwpmc] Compile 'pmc' only if we have C++11.

I noticed when compiling with ye olde gcc-6.3.0 on mips that it tripped over
a lack of C++11 bits.  This allows it to compile fine.

3 years ago[ipfw] quieten maybe-uninitialized errors in ipfw when compiled under mips-gcc-6...
Adrian Chadd [Tue, 14 Jul 2020 05:07:16 +0000 (05:07 +0000)]
[ipfw] quieten maybe-uninitialized errors in ipfw when compiled under mips-gcc-6.3.0.

This is mostly an exercise to set variables to NULL/0 when declared, but
one was ensuring a string variable was set before printing it.
We should never see "<unknown>" in a printed rule; if we do then this code
definitely has some bugs that need addressing.

3 years ago[bc] Fix a "maybe uninitialized" compiler warning under mips-gcc-6.3.0.
Adrian Chadd [Tue, 14 Jul 2020 05:02:18 +0000 (05:02 +0000)]
[bc] Fix a "maybe uninitialized" compiler warning under mips-gcc-6.3.0.

I guess this didn't like the case statements.. ? But this does quieten
the compiler error.

3 years ago[flex] Fix compilation issue under mips-gcc-6.4
Adrian Chadd [Tue, 14 Jul 2020 05:00:08 +0000 (05:00 +0000)]
[flex] Fix compilation issue under mips-gcc-6.4

This was triggering a pointer-losing-constness error.

3 years agoMFV: r362513
Jung-uk Kim [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
Allan Jude [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
Navdeep Parhar [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.
Mark Johnston [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
Li-Wen Hsu [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.
Mark Johnston [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.
Mark Johnston [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().
Mark Johnston [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.
Alexander Motin [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
Gordon Bergling [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
Gordon Bergling [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'
Gordon Bergling [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.
Alexander Motin [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
Allan Jude [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
Tom Jones [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
Oleksandr Tymoshenko [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
Allan Jude [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
Yuri Pankov [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.
Rick Macklem [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
Eugene Grosbein [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.
Michael 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`
Enji Cooper [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)),
Alexander Leidinger [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
Michael 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.
Alexander V. Chernikov [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.
Alexander V. Chernikov [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).
Alexander Leidinger [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.
Michal Meloun [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.
Michal Meloun [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.
Michal Meloun [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
Simon J. Gerraty [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 agoImport bmake-20200710
Simon J. Gerraty [Sat, 11 Jul 2020 22:45:05 +0000 (22:45 +0000)]
Import bmake-20200710

from ChangeLog:

    o filemon/filemon_dev.c: use O_CLOEXEC rather than extra syscall
    o meta.c: target flagged .META is out-of-date if meta file missing
    o cond.c: fix for compare_expression when doEval=0
    o unit-tests/Makefile: rework
    o filemon/filemon_dev.c: ensure filemon fd is closed on exec.

3 years agoperiodic.conf: correct capitailization in the middle of a sentence
Allan Jude [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
Mateusz Guzik [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
Mateusz Guzik [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
Allan Jude [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
Allan Jude [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
Allan Jude [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
Allan Jude [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
Allan Jude [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
Sergio Carlavilla Delgado [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
Allan Jude [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'
Allan Jude [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
Allan Jude [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.
Mark Johnston [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
Allan Jude [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"
Allan Jude [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
Allan Jude [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.
Michael Reifenberger [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.
Edward Tomasz Napierala [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.
Edward Tomasz Napierala [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
Stefan Eßer [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
Toomas Soome [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.
Eugene Grosbein [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