HardenedBSD/src 91d8ee3stand/i386/loader Makefile

i386/loader: force 4k linker max page size

Force the BIOS loaders to use the standard 4k linker max page size
so that they fit in the limited space even if someone has set
a larger default linker max page size via /etc/src.conf.

Reviewed by:    imp
Sponsored by:   Netflix
DeltaFile
+4-0stand/i386/loader/Makefile
+4-01 files

HardenedBSD/src a335a52usr.sbin/bsnmpd/bsnmpd Makefile

bsnmpd: append to LDFLAGS rather than replacing it

Sponsored by:   Netflix
DeltaFile
+1-1usr.sbin/bsnmpd/bsnmpd/Makefile
+1-11 files

HardenedBSD/src db466e4usr.sbin/trim Makefile

trim: add missing include of src.opts.mk, remove unneeded LDFLAGS

Sponsored by:   Netflix
DeltaFile
+2-1usr.sbin/trim/Makefile
+2-11 files

HardenedBSD/src 623be66usr.bin/beep Makefile

beep: add missing include of src.opts.mk, use LIBADD instead of LDFLAGS

Sponsored by:   Netflix
DeltaFile
+3-2usr.bin/beep/Makefile
+3-21 files

HardenedBSD/src 083608esys/ufs/ffs ffs_vfsops.c

UFS: panic rather than forcibly unmount the root fs

If the root fs is forcibly unmounted then basically every process
will die with a SEGV as soon as it tries to run again because libc.so
is gone, which leaves the system basically hung.  It seems better
to just panic instead, so let's do that.

PR:             276944
Requested-by:   karels
Reviewed-by:    imp, mckusick, karels
Sponsored-by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D41387

(cherry picked from commit 60a41168d195cc09f7351c2c2bcafc389ed52406)
DeltaFile
+3-0sys/ufs/ffs/ffs_vfsops.c
+3-01 files

HardenedBSD/src 34467bdsys/x86/include ucode.h, sys/x86/x86 ucode_subr.c ucode.c

x86/ucode: add support for early loading of CPU ucode on AMD.

Sponsored by:   Netflix
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D43318
DeltaFile
+239-0sys/x86/x86/ucode_subr.c
+5-136usr.sbin/cpucontrol/amd10h.c
+55-0sys/x86/x86/ucode.c
+0-41usr.sbin/cpucontrol/amd.h
+11-0sys/x86/include/ucode.h
+5-1usr.sbin/cpucontrol/Makefile
+315-1781 files not shown
+316-1787 files

HardenedBSD/src fd24a63sys/x86/include ucode.h, sys/x86/x86 ucode.c

x86/ucode: add const where appropriate

Sponsored by:   Netflix
Reviewed by:    markj
Differential Revision:  https://reviews.freebsd.org/D43865
DeltaFile
+21-19sys/x86/x86/ucode.c
+1-1sys/x86/include/ucode.h
+22-202 files

HardenedBSD/src 2f2da21sys/dev/mpi3mr mpi3mr_pci.c

mpi3mr: add missing terminator entry to mpi3mr_identifiers array

Reported by:    KASAN
Sponsored by:   Netflix
Reviewed by:    imp
Differential Revision:  https://reviews.freebsd.org/D43519
DeltaFile
+1-0sys/dev/mpi3mr/mpi3mr_pci.c
+1-01 files

HardenedBSD/src c545a7bsys/kern subr_prf.c

prf: add setting of msgbuftrigger in paths where it is missing

Logging things to msgbuf is supposed to set msgbuftrigger so that
syslogd will notice that there is more to read from /dev/klog,
but several paths do not do that.  Add the missing trigger.

Reviewed by:    imp, kib
Differential Revision:  https://reviews.freebsd.org/D42173
DeltaFile
+6-2sys/kern/subr_prf.c
+6-21 files

HardenedBSD/src 60a4116sys/ufs/ffs ffs_vfsops.c

UFS: panic rather than forcibly unmount the root fs

If the root fs is forcibly unmounted then basically every process
will die with a SEGV as soon as it tries to run again because libc.so
is gone, which leaves the system basically hung.  It seems better
to just panic instead, so let's do that.

Requested-by:   karels
Reviewed-by:    imp, mckusick, karels
Sponsored-by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D41387
DeltaFile
+3-0sys/ufs/ffs/ffs_vfsops.c
+3-01 files

HardenedBSD/src 89bd147sbin/newfs mkfs.c, usr.sbin/makefs/ffs mkfs.c

ffs: restore backward compatibility of newfs and makefs with older binaries

The previous change to CGSIZE had the unintended side-effect of allowing
newfs and makefs to create file systems that would fail validation when
examined by older commands and kernels, by allowing newfs/makefs to pack
slightly more blocks into a CG than those older binaries think is valid.
Fix this by having newfs/makefs artificially restrict the number of blocks
in a CG to the slightly smaller value that those older binaries will accept.
The validation code will continue to accept the slightly larger value
that the current newfs/makefs (before this change) could create.

Fixes:          0a6e34e950cd5889122a199c34519b67569be9cc
Reviewed by:    mckusick
MFC after:      3 days
Sponsored by:   Netflix

(cherry picked from commit d464a7698de8fe18530ea65fac90dce56b860a59)
DeltaFile
+23-3sbin/newfs/mkfs.c
+23-3usr.sbin/makefs/ffs/mkfs.c
+46-62 files

HardenedBSD/src d464a76sbin/newfs mkfs.c, usr.sbin/makefs/ffs mkfs.c

ffs: restore backward compatibility of newfs and makefs with older binaries

The previous change to CGSIZE had the unintended side-effect of allowing
newfs and makefs to create file systems that would fail validation when
examined by older commands and kernels, by allowing newfs/makefs to pack
slightly more blocks into a CG than those older binaries think is valid.
Fix this by having newfs/makefs artificially restrict the number of blocks
in a CG to the slightly smaller value that those older binaries will accept.
The validation code will continue to accept the slightly larger value
that the current newfs/makefs (before this change) could create.

Fixes:          0a6e34e950cd5889122a199c34519b67569be9cc
Reviewed by:    mckusick
MFC after:      3 days
Sponsored by:   Netflix
DeltaFile
+23-3sbin/newfs/mkfs.c
+23-3usr.sbin/makefs/ffs/mkfs.c
+46-62 files

HardenedBSD/src 9095169sys/cddl/dev/fbt/x86 fbt_isa.c

fbt/x86: update FBT_AFRAMES to match the trap handlers

Reviewed by:    markj
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D40054
DeltaFile
+4-2sys/cddl/dev/fbt/x86/fbt_isa.c
+4-21 files

HardenedBSD/src db1a4d9sbin/fsck_ffs fsutil.c pass1.c

fsck_ffs: fix the previous change that skipped pass 5 in some cases

The previous change involved calling check_cgmagic() twice in a row
for the same CG in order to differentiate when the CG was already ok vs.
when the CG was rebuilt, but that doesn't work because the second call
(which was supposed to rebuild the CG) returns 0 (indicating that
the CG was not rebuilt) due to the prevfailcg check causing an early
failure return.  Fix this by moving the rebuild part of check_cgmagic()
out into a separate function which is called by pass1() when it wants to
rebuild a CG.

Fixes: da86e7a20dc4a4b17e8d9e7630ed9b675cf71702
Reported by:    pho
Discussed with: mckusick
Sponsored by:   Netflix

(cherry picked from commit 406475581246360faa7af9891dc8ad2423284e18)
DeltaFile
+13-15sbin/fsck_ffs/fsutil.c
+9-3sbin/fsck_ffs/pass1.c
+2-2sbin/fsck_ffs/suj.c
+2-1sbin/fsck_ffs/fsck.h
+1-1sbin/fsck_ffs/inode.c
+1-1sbin/fsck_ffs/gjournal.c
+28-231 files not shown
+29-247 files

HardenedBSD/src 4064755sbin/fsck_ffs fsutil.c pass1.c

fsck_ffs: fix the previous change that skipped pass 5 in some cases

The previous change involved calling check_cgmagic() twice in a row
for the same CG in order to differentiate when the CG was already ok vs.
when the CG was rebuilt, but that doesn't work because the second call
(which was supposed to rebuild the CG) returns 0 (indicating that
the CG was not rebuilt) due to the prevfailcg check causing an early
failure return.  Fix this by moving the rebuild part of check_cgmagic()
out into a separate function which is called by pass1() when it wants to
rebuild a CG.

Fixes: da86e7a20dc4a4b17e8d9e7630ed9b675cf71702
Reported by:    pho
Discussed with: mckusick
Sponsored by:   Netflix
DeltaFile
+13-15sbin/fsck_ffs/fsutil.c
+9-3sbin/fsck_ffs/pass1.c
+2-2sbin/fsck_ffs/suj.c
+2-1sbin/fsck_ffs/fsck.h
+1-1sbin/fsck_ffs/main.c
+1-1sbin/fsck_ffs/inode.c
+28-231 files not shown
+29-247 files

HardenedBSD/src 9dda00dsbin/restore tape.c dirs.c

restore: fix restore of NFS4 ACLs

Changing the mode bits on a file with an NFS4 ACL results in the
NFS4 ACL being replaced by one matching the new mode bits being set,
so when restoring a file with an NFS4 ACL, set the owner/group/mode first
and then set the NFS4 ACL, so that setting the mode does not throw away
the ACL that we just set.

Reviewed by:    mckusick
Differential Revision:  https://reviews.freebsd.org/D37618
DeltaFile
+8-8sbin/restore/tape.c
+5-5sbin/restore/dirs.c
+13-132 files

HardenedBSD/src f0f3e3esys/dev/ipmi ipmi.c ipmi_kcs.c

ipmi: use a queue for kcs driver requests when possible

The ipmi watchdog pretimeout action can trigger unintentionally in
certain rare, complicated situations.  What we have seen at Netflix
is that the BMC can sometimes be sent a continuous stream of
writes to port 0x80, and due to what is a bug or misconfiguration
in the BMC software, this results in the BMC running out of memory,
becoming very slow to respond to KCS requests, and eventually being
rebooted by its own internal watchdog.  While that is going on in
the BMC, back in the host OS, a number of requests are pending in
the ipmi request queue, and the kcs_loop thread is working on
processing these requests.  All of the KCS accesses to process
those requests are timing out and eventually failing because the
BMC is responding very slowly or not at all, and the kcs_loop thread
is holding the IPMI_IO_LOCK the whole time that is going on.
Meanwhile the watchdogd process in the host is trying to pat the
BMC watchdog, and this process is sleeping waiting to get the
IPMI_IO_LOCK.  It's not entirely clear why the watchdogd process
is sleeping for this lock, because the intention is that a thread

    [33 lines not shown]
DeltaFile
+30-3sys/dev/ipmi/ipmi.c
+27-1sys/dev/ipmi/ipmi_kcs.c
+2-0sys/dev/ipmi/ipmivars.h
+59-43 files

HardenedBSD/src f1b4324sys/ufs/ffs ffs_vfsops.c, sys/ufs/ufs ufs_vnops.c ufsmount.h

ffs: fix vn_read_from_obj() usage for PAGE_SIZE > block size

vn_read_from_obj() requires that all pages of a vnode (except the last
partial page) be either completely valid or completely invalid,
but for file systems with block size smaller than PAGE_SIZE,
partially valid pages may exist anywhere in the file.
Do not enable the vn_read_from_obj() path in this case.

Reviewed by:    mckusick, kib, markj
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D34836
DeltaFile
+2-1sys/ufs/ufs/ufs_vnops.c
+2-0sys/ufs/ffs/ffs_vfsops.c
+1-0sys/ufs/ufs/ufsmount.h
+5-13 files

HardenedBSD/src 5bd21cbsys/kern vfs_bio.c

vfs: fix vfs_bio_clrbuf() for PAGE_SIZE > block size

Calculate the desired page valid mask using math that will not
overflow the types used.

Sponsored by:   Netflix

Reviewed by:    mckusick, kib, markj
Differential Revision:  https://reviews.freebsd.org/D34837
DeltaFile
+5-2sys/kern/vfs_bio.c
+5-21 files

HardenedBSD/src 82817f2sys/ufs/ffs ffs_vnops.c

ffs: fix vn_io_fault_pgmove() offset for PAGE_SIZE > block size

The "offset" argument to vn_io_fault_pgmove() is supposed to be
the offset within the page, but for ffs we currently use the offset
within the block.  When the block size is at least as large as the
page size then these values are the same, but when the page size is
larger than the block size then we need to add the offset of
the block within the page as well.

Sponsored by:   Netflix

Reviewed by:    mckusick, kib, markj
Differential Revision:  https://reviews.freebsd.org/D34835
DeltaFile
+4-2sys/ufs/ffs/ffs_vnops.c
+4-21 files

HardenedBSD/src 3dc5f8esys/ufs/ffs ffs_vfsops.c

ffs: wait for trims earlier during unmount to avoid panic

All softdep processing is supposed to be completed by
softdep_flushfiles() and no more deps are supposed to be created after
that, but if a pending trim completes after softdep_flushfiles() and
before softdep_unmount() then the blkfree that is performed by
ffs_blkfree_trim_task() will create a dep when none should exist, and
if softdep_unmount() is called before that dep is freed then the
kernel will panic.  Prevent this by waiting for trims to complete
earlier in the unmount process, in ffs_flushfiles(), so that any deps
will be freed and any modified CG buffers will be flushed by the final
fsync of the devvp in ffs_flushfiles() as intended.

Reviewed by:    mckusick, kib
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D34806
DeltaFile
+15-3sys/ufs/ffs/ffs_vfsops.c
+15-31 files

HardenedBSD/src f339a3ecddl/contrib/opensolaris/lib/libdtrace/common dt_subr.c

dtrace: remove unnecessary fflush()

This call was added back in the early days of dtrace porting and
no one knows why anymore.  The extra flushing causes lots of
unnecessary CPU overhead when a script produces lots of output,
as well as easily losing output because the command can't keep up.

Sponsored by:   Netflix
Reviewed by:    imp, markj
Differential Revision:  https://reviews.freebsd.org/D34216
DeltaFile
+0-1cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c
+0-11 files

HardenedBSD/src dfd0026lib/librtld_db rtld_db.c

librtld_db: Handle shlibs with discontiguous mappings.

Some shared libraries specify mappings that leave a gap (actually a
MAP_GUARD mapping) in between the file mappings (libcrypto.so was
the one I found), and this would cause rd_loadobj_iter() to report
the mapping info incorrectly, leaving out rdl_path and misreporting
rdl_offset for file mappings after the gap.  Fix rd_loadobj_iter()
to handle this situation.

Reviewed by:    markj
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D32950
DeltaFile
+5-3lib/librtld_db/rtld_db.c
+5-31 files

HardenedBSD/src ed1a156sbin/fsck_ffs main.c

fsck_ffs: don't try to write in read-only mode

Skip trying to change fs_mtime for SU+J if we are running read-only.

Reviewed by:    mckusick
Sponsored by:   Netflix
DeltaFile
+13-11sbin/fsck_ffs/main.c
+13-111 files

HardenedBSD/src 84768d1sbin/fsdb fsdb.c

fsdb: add missing bufinit() call

The bufinit() call in fsck_ffs was moved in commit f190f9193bc10
from a function that is shared with fsdb to one that is private to fsck_ffs,
so add a bufinit() call in fsdb to compensate for that.

Reviewed by:    mckusick
Sponsored by:   Netflix
DeltaFile
+1-0sbin/fsdb/fsdb.c
+1-01 files

HardenedBSD/src 8c59e86usr.bin/tail forward.c

tail: fix "tail -F" file rotation detection

When checking if the newly opened file is the same as the old one,
we need to fstat() the new file descriptor, not the old one again.

Reviewed by:    glebius
Sponsored by:   Netflix

(cherry picked from commit 7787e7eed9d2a43fb6eb66666040f1b495995a2f)
DeltaFile
+1-1usr.bin/tail/forward.c
+1-11 files

HardenedBSD/src 7787e7eusr.bin/tail forward.c

tail: fix "tail -F" file rotation detection

When checking if the newly opened file is the same as the old one,
we need to fstat() the new file descriptor, not the old one again.

Reviewed by:    glebius
Sponsored by:   Netflix
DeltaFile
+1-1usr.bin/tail/forward.c
+1-11 files

HardenedBSD/src 11403bdsys/kern vfs_vnops.c

vfs: fix rangelock range in vn_rdwr() for IO_APPEND

vn_rdwr() must lock the entire file range for IO_APPEND
just like vn_io_fault() does for O_APPEND.

Reviewed by:    kib, imp, mckusick
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D28008
DeltaFile
+2-0sys/kern/vfs_vnops.c
+2-01 files

HardenedBSD/src 8b88330 (r366453)sys/ufs/ufs ufs_vnops.c

ufs: restore uniqueness of st_dev as returned by ufs_stat()

switch ufs_stat() to use the same value for st_dev as was used by
the previous ufs_getattr() stat path.

Submitted by:   gallatin
Reviewed by:    mjg, imp, kib, mckusick
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D26596
DeltaFile
+1-1sys/ufs/ufs/ufs_vnops.c
+1-11 files

HardenedBSD/src a0a36d4 (r365351)sys/kern vfs_hash.c

vfs: avoid exposing partially constructed vnodes

If multiple threads race calling vfs_hash_insert() while creating vnodes
with the same identity, all of the vnodes which lose the race must be
destroyed before any other thread can see them. Previously this was
accomplished by the vput() in vfs_hash_insert() resulting in the vnode's
VOP_INACTIVE() method calling vgone() before the vnode lock was unlocked,
but at some point changes to the the vnode refcount/inactive logic have caused
that to no longer work, leading to crashes, so instead vfs_hash_insert()
must call vgone() itself before calling vput() on vnodes which lose the race.

Reviewed by:    mjg, kib
Sponsored by:   Netflix
Differential Revision:  https://reviews.freebsd.org/D26291
DeltaFile
+1-0sys/kern/vfs_hash.c
+1-01 files