OpenBSD/src XOwSLnGusr.sbin/rpki-client gbr.c

   Minimal gbr validation and printing fixes

   Job noticed a while back that one of the two .gbr in the ecosystem is
   malformed. Worse, it made filemode error out in json_do_string() when
   dumping JSON because its vCard is an empty octet string (which means it
   is the byte string 0x04 0x00, so it contains a control character):

         SEQUENCE {
           # rpkiGhostbusters
           OBJECT_IDENTIFIER { 1.2.840.113549.1.9.16.1.35 }
           [0] {
             OCTET_STRING { OCTET_STRING {} }
           }
         }

   A valid vCard contains a printable UTF-8 string and looks like this:

         SEQUENCE {
           # rpkiGhostbusters

    [16 lines not shown]
VersionDeltaFile
1.31+16-2usr.sbin/rpki-client/gbr.c
+16-21 files

OpenBSD/src MABJQXbusr.sbin/rpki-client tak.c

   tak: strvis the UTF-8 comment section

   This is an ugly kludge until we can do better validation. Now is not the
   right time in the release cycle to fiddle with even more complicated and
   more broken legacy messes than we already have to deal with in here.

   ok claudio
VersionDeltaFile
1.22+5-3usr.sbin/rpki-client/tak.c
+5-31 files

OpenBSD/src ZW0FZ1husr.bin/tmux mode-tree.c window-tree.c

   Only align panes and windows, not sessions, from David Mandelberg in
   GitHub issue 4444.
VersionDeltaFile
1.76+18-6usr.bin/tmux/mode-tree.c
1.67+6-2usr.bin/tmux/window-tree.c
1.1259+2-1usr.bin/tmux/tmux.h
+26-93 files

OpenBSD/src X36OGhNusr.sbin/rpki-client print.c

   takey_print: don't emit empty line between comments and URIs

   It was probably an oversight in RFC 8630 that TALs don't allow an empty
   line between the comment section and the URI section. Or maybe a comment
   of only one or two lines was intended rather than the ugly blob we now
   have in arin.tal. Be that as it may, the output is supposed to be a TAL
   and it should conform to the RFC.

   ok claudio
VersionDeltaFile
1.59+1-3usr.sbin/rpki-client/print.c
+1-31 files

OpenBSD/src DNCQ9mkusr.sbin/rpki-client json.c

   json.c: sync with bgpctl/json.c r1.11: escape ASCII control characters

   ok claudio
VersionDeltaFile
1.5+4-3usr.sbin/rpki-client/json.c
+4-31 files

OpenBSD/src xLrWFvUusr.sbin/bgpctl json.c

   Properly escape ASCII control characters in JSON rather than erroring

   shared pain with/ok claudio
VersionDeltaFile
1.11+4-3usr.sbin/bgpctl/json.c
+4-31 files

OpenBSD/src AD0ae0Gusr.bin/tmux window.c popup.c

   Popup window should not be draggable while mouse still pressed, and do
   not try to work out theme if no pane. From Michael Grant in GitHub issue
   4330.
VersionDeltaFile
1.304+6-2usr.bin/tmux/window.c
1.58+2-2usr.bin/tmux/popup.c
+8-42 files

OpenBSD/src oCtnKZGusr.bin/ssh sshkey.h

   Wrap #include <openssl/dsa.h> in #ifdef WITH_DSA

   ok djm
VersionDeltaFile
1.66+3-1usr.bin/ssh/sshkey.h
+3-11 files

OpenBSD/src VBIGnySusr.bin/ssh Makefile.inc

   remove ability to enable DSA support. Actual code will be g/c'd
   separately. ok deraadt@
VersionDeltaFile
1.99+1-10usr.bin/ssh/Makefile.inc
+1-101 files

OpenBSD/src J2X1SHeshare/man/man4 ice.4

   ice(4) manual page updates regarding firmware support
VersionDeltaFile
1.2+27-2share/man/man4/ice.4
+27-21 files

OpenBSD/src CEY7kQ7regress/usr.sbin/bgpd/integrationtests l3vpn.sh

   Run route get with -n to avoid DNS lookups.
VersionDeltaFile
1.7+9-9regress/usr.sbin/bgpd/integrationtests/l3vpn.sh
+9-91 files

OpenBSD/src 94bZPWmsys/dev/pci if_rge.c

   Apparently to read the counters we need to write the full DMA address
   before setting the command bit.  The current code causes hangs on a
   Radxa Orion O6 board with onboard RTL8126 chips.

   ok dlg@, kevlo@
VersionDeltaFile
1.36+10-6sys/dev/pci/if_rge.c
+10-61 files

OpenBSD/src QAz6MPfsys/arch/amd64/pci acpipci.c

   Use acpipci(4) on hypervisors

   If the hypervisor cpuid bit is set, use acpipci to attach PCI busses.
   As virtualization is not that old, we can assume that in VMs we don't
   need the quirk for old, broken ACPI.

   This solves problems with PCI BAR access and recent seabios versions
   on qemu.

   Agreement from @kettenis
VersionDeltaFile
1.10+2-2sys/arch/amd64/pci/acpipci.c
+2-21 files

OpenBSD/src US8Pucqsys/dev/pci if_ice.c

   unbreak IPv6 neighbor discovery on ice(4)

   problem reported by bluhm@
VersionDeltaFile
1.35+46-4sys/dev/pci/if_ice.c
+46-41 files

OpenBSD/src ep4uZUZsys/dev/pci if_ice.c

   restrict ice(4) firmware to features actually supported by the driver

   Avoids traffic stalls due to firmware trying to use multiple queues,
   which the driver does not handle yet.
VersionDeltaFile
1.34+33-9sys/dev/pci/if_ice.c
+33-91 files

OpenBSD/src aKfNp6ysys/dev/pci if_ice.c if_icevar.h

   port ice(4) code for loading DDP firmware packages from freebsd

   Loading firmware is a prerequisite for performance features such as
   checksum offload and TSO. These features are not yet implemented by our
   version of this driver and will be added during the next release cycle.

   Firmware has been made available on firmware.openbsd.org by sthen@
VersionDeltaFile
1.33+2,685-581sys/dev/pci/if_ice.c
1.6+330-5sys/dev/pci/if_icevar.h
+3,015-5862 files

OpenBSD/src 5WOTjYhregress/usr.sbin/bgpd/integrationtests attr.sh

   Stop printing SUCCESS/FAILED in attr.sh which already handled by
   bsd.regress.mk.
VersionDeltaFile
1.3+1-4regress/usr.sbin/bgpd/integrationtests/attr.sh
+1-41 files

OpenBSD/src I1h74ECusr.bin/sort sort.1

   Rewrite the description of how sorting works by default, in particular
   avoiding the nebulous word "lexicographically" and clarifiying that
   characters are ordered according to ascii(7).
   Polish a few nearby wordings for conciseness and readability.
   OK pascal@ jmc@
VersionDeltaFile
1.69+8-8usr.bin/sort/sort.1
+8-81 files

OpenBSD/src Q9l3Wd5etc daily, libexec/security security

   Support setting the new variable PASSWDSKIP in /etc/daily.local to prevent
   security(8) from complaining about specific accounts that have no password,
   typically used for services like anoncvs and gotd.

   In addition to improving support for gotd, this also improves security
   for everyone because the exception will now only exist on machines
   where the admin explicitly enables it.

   Based on an idea from stsp@; OK stsp@.
   (Actually, sthen@ also mentioned a similar idea in 2009, and afresh1@
    indicated potential support for the general direction in 2024.)
VersionDeltaFile
1.28+14-3share/man/man8/security.8
1.48+5-4libexec/security/security
1.101+2-2etc/daily
+21-93 files

OpenBSD/src 56h2QNcsys/dev/pv pvclock.c

   pvclock: Use VM_PAGE_TO_PHYS

   as requested by kettenis@
VersionDeltaFile
1.13+2-2sys/dev/pv/pvclock.c
+2-21 files

OpenBSD/src P8f0gogsys/dev/pv pvclock.c

   pvclock: Map page unencrypted

   If SEV is enabled, we need to map the pvclock page as unencrypted /
   shared with the hypervisor.

   ok bluhm@
   looks good to me hshoexer@
VersionDeltaFile
1.12+22-11sys/dev/pv/pvclock.c
+22-111 files

OpenBSD/src aXqx9lHusr.sbin/rpki-client repo.c

   Use the more portable st_mtime instead of the newer st_mtim member.

   The latter is defined in POSIX 2024 but it seems not many systems (aka Linux)
   picked that up yet as a default. POSIX 2024 defines fallback macros for using
   st_mtime so 'this is fine'.
   OK tb@
VersionDeltaFile
1.74+2-2usr.sbin/rpki-client/repo.c
+2-21 files

OpenBSD/src VMb3MGVsys/sys chio.h

   remove outdated note to drop O* ioctl defines, they were removed in 2003
VersionDeltaFile
1.9+1-5sys/sys/chio.h
+1-51 files

OpenBSD/src IEvWdNqsys/conf GENERIC

   disable POOL_DEBUG for release
   ok deraadt@
VersionDeltaFile
1.300+2-2sys/conf/GENERIC
+2-21 files

OpenBSD/src 3N4KvCdsys/dev/pci/drm/amd/amdkfd kfd_queue.c

   drm/amdkfd: Fix user queue validation on Gfx7/8

   From Philip Yang
   731eccbd65aac026770e78279d551e1895572bd0 in linux-6.12.y/6.12.21
   542c3bb836733a1325874310d54d25b4907ed10e in mainline linux
VersionDeltaFile
1.5+11-1sys/dev/pci/drm/amd/amdkfd/kfd_queue.c
+11-11 files

OpenBSD/src G7GA0kXsys/dev/pci/drm/amd/amdgpu nv.c soc15.c

   drm/amdgpu: Fix JPEG video caps max size for navi1x and raven

   From David Rosca
   3aa8e00fefcaadd33f40977225014b26ef3ae140 in linux-6.12.y/6.12.21
   ec33964d9d88488fa954a03d476a8b811efc6e85 in mainline linux
VersionDeltaFile
1.12+1-1sys/dev/pci/drm/amd/amdgpu/nv.c
1.29+1-1sys/dev/pci/drm/amd/amdgpu/soc15.c
+2-22 files

OpenBSD/src f0KM8mmsys/dev/pci/drm/amd/amdgpu vi.c nv.c

   drm/amdgpu: Fix MPEG2, MPEG4 and VC1 video caps max size

   From David Rosca
   a0a43a13337146f54060e7179c25bfbc8479c775 in linux-6.12.y/6.12.21
   f0105e173103c9d30a2bb959f7399437d536c848 in mainline linux
VersionDeltaFile
1.15+18-18sys/dev/pci/drm/amd/amdgpu/vi.c
1.11+9-9sys/dev/pci/drm/amd/amdgpu/nv.c
1.28+9-9sys/dev/pci/drm/amd/amdgpu/soc15.c
+36-363 files

OpenBSD/src e0ZI9nYsys/dev/pci/drm/amd/amdgpu vi.c soc15.c

   drm/amdgpu: Remove JPEG from vega and carrizo video caps

   From David Rosca
   499d1adcac3e89841f284cf82e67583f34d73106 in linux-6.12.y/6.12.21
   7fc0765208502e53297ce72c49ca43729f9d6ff3 in mainline linux
VersionDeltaFile
1.14+0-7sys/dev/pci/drm/amd/amdgpu/vi.c
1.27+0-1sys/dev/pci/drm/amd/amdgpu/soc15.c
+0-82 files

OpenBSD/src EcPlDBpsys/dev/pci/drm/amd/pm/swsmu/smu14 smu_v14_0_2_ppt.c

   drm/amdgpu/pm: wire up hwmon fan speed for smu 14.0.2

   From Alex Deucher
   97c2a78d29954015ce3f499fea2306fd83132e6c in linux-6.12.y/6.12.21
   5ca0040ecfe8ba0dee9df1f559e8d7587f12bf89 in mainline linux
VersionDeltaFile
1.3+35-0sys/dev/pci/drm/amd/pm/swsmu/smu14/smu_v14_0_2_ppt.c
+35-01 files

OpenBSD/src yXvbtyjsys/dev/pci/drm/amd/pm/swsmu/smu14 smu_v14_0_2_ppt.c

   drm/amdgpu/pm: Handle SCLK offset correctly in overdrive for smu 14.0.2

   From Tomasz Pakula
   4b8b7026fc3b4211c40ed26d88944a320d525ee4 in linux-6.12.y/6.12.21
   d9d4cb224e4140f51847642aa5a4a5c3eb998af0 in mainline linux
VersionDeltaFile
1.2+18-41sys/dev/pci/drm/amd/pm/swsmu/smu14/smu_v14_0_2_ppt.c
+18-411 files