OpenBSD/src TLm0GmZusr.bin/ssh ssh-sk-client.c

   Fix potential 1-byte array overrun in the case where read() returns
   exactly 100 bytes.  Flagged by Coverity CID 901296, ok djm@
VersionDeltaFile
1.17+2-2usr.bin/ssh/ssh-sk-client.c
+2-21 files

OpenBSD/src FvQXb3Hsys/dev/pci if_iwx.c

   Only enable MIMO on MLD iwx(4) devices if our AP supports MIMO.

   Same approach as we are using for the pre-MLD device generation.

   OK phessler@ kevlo@ jan@
VersionDeltaFile
1.209+11-3sys/dev/pci/if_iwx.c
+11-31 files

OpenBSD/src Qn8Thpvsys/dev/pci if_iwx.c if_iwxreg.h

   Only add iwx(4) firmware PHY context once our channel is known.

   The Linux iwlwifi driver no longer adds unused firmware PHY contexts
   because newer firmware runs calibration when a PHY context is added.

   See linux.git commit f3276ff0d498a364dfdff74cc1825b5f6e27f472

   ok phessler@ kevlo@

   Tested:
   AX200: stsp
   AX210: kevlo
   AX211: phessler
   AX211 (BZ): stsp
VersionDeltaFile
1.208+45-37sys/dev/pci/if_iwx.c
1.65+2-2sys/dev/pci/if_iwxreg.h
1.47+2-1sys/dev/pci/if_iwxvar.h
+49-403 files

OpenBSD/src OYm9OUletc/root root.mail, share/mk sys.mk

   move to 7.9-beta
VersionDeltaFile
1.214+4-4sys/conf/newvers.sh
1.63+4-4usr.bin/signify/signify.1
1.180+3-3etc/root/root.mail
1.146+3-3sys/sys/param.h
1.99+2-2share/mk/sys.mk
1.56+2-2sys/arch/macppc/stand/tbxidata/bsd.tbxi
+18-186 files

OpenBSD/src tMvmNGQusr.sbin/smtpd parse.y

   RFC5321 specifies max-rcpt to be >= 100 as a MUST.

   feedback and OK kirill@
VersionDeltaFile
1.301+7-1usr.sbin/smtpd/parse.y
+7-11 files

OpenBSD/src K6DhPeGusr.sbin/smtpd log.c lka_filter.c

   Allow filters to prepend loglines with a priority tag. This way logmessages
   can be written under a reasonable priority, instead of putting everything
   under warning.
   Current behaviour of tagless messages will still be written out under
   warning.

   OK kirill@, op@
VersionDeltaFile
1.22+33-1usr.sbin/smtpd/log.c
1.81+24-3usr.sbin/smtpd/lka_filter.c
1.11+7-1usr.sbin/smtpd/log.h
+64-53 files

OpenBSD/src UwPTa76usr.sbin/smtpd log.c parse.y

   Let smtpd write filter logging out to syslog under their own syslogtag.
   This makes the layout more consistent with smtpd internal, and gives a
   little more flexibility inside syslogd.

   While here also document the user, group, and chroot arguments to a filter
   as well.

   OK kirill@, op@
VersionDeltaFile
1.21+29-33usr.sbin/smtpd/log.c
1.300+51-1usr.sbin/smtpd/parse.y
1.280+47-4usr.sbin/smtpd/smtpd.conf.5
1.359+16-15usr.sbin/smtpd/smtpd.c
1.80+13-6usr.sbin/smtpd/lka_filter.c
1.160+12-1usr.sbin/smtpd/util.c
+168-603 files not shown
+184-669 files

OpenBSD/src e0hHIM2sys/kern kern_pledge.c

   From now on, readlink(2) requires pledge "rpath"
   Discussed with david leadbeater and beck
VersionDeltaFile
1.345+2-2sys/kern/kern_pledge.c
+2-21 files

OpenBSD/src b9V8nJclib/libc/gen readpassphrase.c

   use O_CLOEXEC; ok guenther
VersionDeltaFile
1.29+2-2lib/libc/gen/readpassphrase.c
+2-21 files

OpenBSD/src NFzoNAOlib/libarch/alpha bwx.c, lib/libc/gmon gmon.c

   use O_CLOEXEC; ok guenther
VersionDeltaFile
1.41+3-3lib/libc/gmon/gmon.c
1.11+3-3lib/libarch/alpha/bwx.c
1.19+2-2lib/libc/hash/helper.c
1.59+2-2lib/libfuse/fuse.c
1.3+1-1lib/libfido2/src/hid_unix.c
+11-115 files

OpenBSD/src rfPH1SMsys/conf files

   make uvm_io.c build conditional to save space on ramdisks

   uvm_io() calls in kern_sysctl.c are under #ifndef SMALL_KERNEL
   sys_process.c has a uvm_io() call but is only built for ptrace | dt

   feedback from miod@
VersionDeltaFile
1.751+2-2sys/conf/files
+2-21 files

OpenBSD/src LVQcXG1sys/dev/pci if_iwx.c if_iwxvar.h

   Remove custom Rx A-MPDU reordering code from iwx(4).

   The equivalent code was deleted from iwlwifi in 2023. It is only needed for
   iwm 9k devices running with multiple Rx queues. AX200 and later devices do
   Rx reordering in firmware and provide flags the driver can check to avoid
   sending duplicate frames up the stack.

   See linux.git commit 29fa9a984b6d1075020f12071a89897fd62ed27f
   and linux.git commit ff8e3a40d78bc414213b2724ad775adf98780a5a

   ok phessler@ kettenis@ kevlo@

   Tested:
   AX200: jmc, stsp
   AX210 (MA): kettenis, kevlo
   AX211 (BZ): stsp
VersionDeltaFile
1.207+7-200sys/dev/pci/if_iwx.c
1.46+1-16sys/dev/pci/if_iwxvar.h
1.64+2-1sys/dev/pci/if_iwxreg.h
+10-2173 files

OpenBSD/src EiuXoQwsys/dev/pci if_iwx.c

   Prevent fatal firmware errors on iwx(4) Bz devices when forcing 11a/b/g mode.

   Avoid enabling wide channels or MIMO in firmware Tx rate selection if we are
   running in 11a/b/g mode.

   Honour the "nomimo" network flag in any mode.

   ok phessler@

   Tested:
   AX200: stsp
   AX201 (MA): kettenis, kevlo
   AX211 (BZ): stsp
VersionDeltaFile
1.206+25-11sys/dev/pci/if_iwx.c
+25-111 files

OpenBSD/src T4NDplRusr.bin/ssh ssh-agent.c

   whitespace
VersionDeltaFile
1.324+2-2usr.bin/ssh/ssh-agent.c
+2-21 files

OpenBSD/src kcF6JZUlib/libsndio sio.c sio_sun.c

   libsndio: Move sio_sun_xrun() to sio.c and rename it to _sio_xrun()
VersionDeltaFile
1.30+106-1lib/libsndio/sio.c
1.36+1-106lib/libsndio/sio_sun.c
1.15+2-1lib/libsndio/sio_priv.h
+109-1083 files

OpenBSD/src p7rslkelib/libsndio sio_sun.c

   libsndio: Make sio_sun_xrun() backend-independent

   The sio_sun_xrun() function uses only the sio_hdl field of the
   structure passed as its first (and only) argument. Change the function
   to take a sio_hdl pointer instead. This hides all audio(4)-specific
   data and makes clear that the function is not related to the audio(4)
   API.

   No behavior change.
VersionDeltaFile
1.35+17-17lib/libsndio/sio_sun.c
+17-171 files

OpenBSD/src m5dTYTHusr.bin/ssh ssh-agent.c

   when unveils error our, use correct variable
VersionDeltaFile
1.323+3-3usr.bin/ssh/ssh-agent.c
+3-31 files

OpenBSD/src bPkBLTOdistrib/special/libstubs Makefile

   document why there is a replacement db.c here
VersionDeltaFile
1.25+3-2distrib/special/libstubs/Makefile
+3-21 files

OpenBSD/src MkScBjblib/libsndio sio_sun.c sio.c

   libsndio: Factor handling of pending clock ticks

   No behavior change.
VersionDeltaFile
1.34+9-12lib/libsndio/sio_sun.c
1.29+13-7lib/libsndio/sio.c
1.23+4-10lib/libsndio/sio_aucat.c
1.14+2-1lib/libsndio/sio_priv.h
+28-304 files

OpenBSD/src cZrhAg8lib/libcrypto/man BIO_s_mem.3

   Fix BIO_get_mem_data(3) return value documentation

   pointed out by/ok dlg
VersionDeltaFile
1.21+18-3lib/libcrypto/man/BIO_s_mem.3
+18-31 files

OpenBSD/src G9ii36xlib/libcrypto/ui ui_openssl.c

   use the "e" flag with fopen() for O_CLOEXEC; ok tb
VersionDeltaFile
1.30+3-3lib/libcrypto/ui/ui_openssl.c
+3-31 files

OpenBSD/src XdGevxelib/libcrypto/rand randfile.c, lib/libtls tls_config.c tls_util.c

   use O_CLOEXEC; ok tb
VersionDeltaFile
1.46+2-2lib/libcrypto/rand/randfile.c
1.72+2-2lib/libtls/tls_config.c
1.17+2-2lib/libtls/tls_util.c
+6-63 files

OpenBSD/src 4jMLInssys/kern kern_pledge.c

   remove historical XXX comments no longer applicable
VersionDeltaFile
1.344+2-3sys/kern/kern_pledge.c
+2-31 files

OpenBSD/src VpajNAwinclude db.h

   oops, deleted the wrong side of the #ifdef
VersionDeltaFile
1.14+4-4include/db.h
+4-41 files

OpenBSD/src LFV4tcGinclude db.h

   Remove pdp11 support (no joke)
VersionDeltaFile
1.13+1-7include/db.h
+1-71 files

OpenBSD/src YENzof5lib/libc/gen login_cap.c authenticate.c

   use O_CLOEXEC; ok guenther
VersionDeltaFile
1.49+2-2lib/libc/gen/login_cap.c
1.30+2-2lib/libc/gen/authenticate.c
+4-42 files

OpenBSD/src mNYf2HXusr.bin/ssh ssh-sk-client.c

   When execve() failure is indicated on the pipe, replicate the same
   error conditions as the previous access() check did
   ok djm
VersionDeltaFile
1.16+3-3usr.bin/ssh/ssh-sk-client.c
+3-31 files

OpenBSD/src qPmD6yWusr.bin/ssh ssh-agent.c

   unveil ssh-pkcs11-helper too; fixes breakage spotted by anton@

   If SK/P11/askpass is overridden by environment, only unveil the requested
   path and not both the requested one and the default.

   feedback/ok deraadt@
VersionDeltaFile
1.322+14-16usr.bin/ssh/ssh-agent.c
+14-161 files

OpenBSD/src v16Jjvelib/libc/gen getpwent.c

   I optimized a bit too far before commiting...
VersionDeltaFile
1.72+10-5lib/libc/gen/getpwent.c
+10-51 files

OpenBSD/src mHCRtopsys/dev/pci/drm/amd/amdgpu amdgpu_devlist.h

   add comments for Strix/Krackan ids reused for Gorgon Point
VersionDeltaFile
1.44+13-4sys/dev/pci/drm/amd/amdgpu/amdgpu_devlist.h
+13-41 files