Build date: 1777845603 - Sun May 3 22:00:03 UTC 2026 Build cvs date: 1777831575 - Sun May 3 18:06:15 UTC 2026 Build id: 2026-05-04.1 Build tags: amd64-regress ports sysupgrade Applied the following diff(s): /home/anton/tmp/robsd/src-sys-em.diff /home/anton/tmp/robsd/src-sys-uhidev-sispm.diff /home/anton/tmp/robsd/src-sysupgrade.diff P regress/lib/libcrypto/certs/README P sbin/dhcp6leased/engine.c P sys/arch/amd64/stand/boot/conf.c P sys/arch/amd64/stand/efiboot/conf.c P sys/arch/amd64/stand/efiboot/diskprobe.c P sys/arch/amd64/stand/libsa/diskprobe.c P sys/arch/i386/stand/boot/conf.c P sys/arch/i386/stand/libsa/diskprobe.c M sys/dev/usb/uhidev.c P usr.bin/tmux/control.c P usr.bin/tmux/format.c P usr.bin/tmux/options-table.c P usr.bin/tmux/tmux.1 P usr.bin/tmux/window-tree.c P usr.bin/tmux/window.c M usr.sbin/bgpd/session.c commit Ktxi42H4kfeQoRl4 Author: tb Date: 2026/05/03 18:06:15 cert regress: update README for tests 14a and 14b. regress/lib/libcrypto/certs/README commit Z0NcFZn2F9dVo8aB Author: florian Date: 2026/05/03 15:49:09 Prevent unsigned underflow leading to a crash. An IA_PD option contains one or more nested dhcp options. We first need to make sure that the length field of the option header does not point outside of the encapsulating option, which we did. When we then parse the nested options we need to make sure that nested option header length field is large enough for the nested option, not that the encapsulating option length is large enough for the encapsulated option. Otherwise opt_hdr.len - 2 can underflow, which strvisx(3) interprets as a size_t, i.e. a very large number, leading to a crash once we hit a guard. Underflow pointed out by an AI tool (sorry, don't know which one) in a somewhat convoluted way. It also provided an reproducer for the issue which was more helpful. AI reports triaged by millert. While here fix the same bug in the DHO_IA_PREFIX case and prevent a memory leak. OK tb sbin/dhcp6leased/engine.c commit QcZad080UtCVoVnI Author: nicm Date: 2026/05/03 15:02:48 Allow the indicator in tree mode to be customized by two new options: tree-mode-preview-format and tree-mode-preview-style. usr.bin/tmux/options-table.c usr.bin/tmux/tmux.1 usr.bin/tmux/window-tree.c commit idNQVRq8i8azcX7H Author: nicm Date: 2026/05/03 15:01:21 Fix control client hang on exit after toggling no-output, GitHub issue 5049 from Aaron Campbell. usr.bin/tmux/control.c commit QeyqY6bOZxcXFfPp Author: nicm Date: 2026/05/03 14:57:09 Do not check for NULL after dereferencing, from alexarama at yahoo dot com in GitHub issue 5051. usr.bin/tmux/window.c commit p8hx6fy6zVo9Q0PF Author: nicm Date: 2026/05/03 14:55:43 Free working stuff when R formats fail. usr.bin/tmux/format.c commit 3pxxZ9KqccXJJK8d Author: stsp Date: 2026/05/03 13:10:46 Avoid setting boothowto flags based on information read through a NULL pointer + an offset into the diskinfo structure. Fixes boot from RAID 1C softraid volumes where the kernel could be tricked into believing it is booting to unhibernate the machine, skipping devices such as network interfaces, which would then be missing in the running system once booted. Debugged together with jtt@ when several of our gothub.org servers lost their network interfaces after reinstallation with RAID 1C. ok kettenis@ sys/arch/amd64/stand/boot/conf.c sys/arch/amd64/stand/efiboot/conf.c sys/arch/amd64/stand/efiboot/diskprobe.c sys/arch/amd64/stand/libsa/diskprobe.c sys/arch/i386/stand/boot/conf.c sys/arch/i386/stand/libsa/diskprobe.c