FreeBSD/src 50caa0econtrib/unbound ltmain.sh configure, contrib/unbound/util configparser.c

unbound: Update to 1.25.1

Release notes at
        https://nlnetlabs.nl/news/2026/May/20/unbound-1.25.1-released/

Merge commit '22e58f330a151944c24e010d23ec3881df6681b6'

Security:       CVE-2026-33278
Security:       CVE-2026-42944
Security:       CVE-2026-42959
Security:       CVE-2026-32792
Security:       CVE-2026-40622
Security:       CVE-2026-41292
Security:       CVE-2026-42534
Security:       CVE-2026-42923
Security:       CVE-2026-42960
Security:       CVE-2026-44390
Security:       CVE-2026-44608
MFC after:      1 week
DeltaFile
+969-601contrib/unbound/ltmain.sh
+1,129-366contrib/unbound/configure
+425-471contrib/unbound/util/configparser.c
+509-348contrib/unbound/aclocal.m4
+108-68contrib/unbound/install-sh
+71-5contrib/unbound/validator/val_nsec3.c
+3,211-1,85934 files not shown
+3,403-1,93140 files

FreeBSD/src 5fa84c6contrib/unbound configure, contrib/unbound/pythonmod interface.i

unbound: Update to 1.25.0

Release notes at
        https://nlnetlabs.nl/news/2026/Apr/29/unbound-1.25.0-released/

Merge commit '4dd0a17edce60370304a45f2c40251e09e193bd6'

MFC after:      1 week
DeltaFile
+3,982-3,941contrib/unbound/util/configlexer.c
+2,504-3,790contrib/unbound/configure
+2,396-2,294contrib/unbound/util/configparser.c
+0-2,764contrib/unbound/testcode/doqclient.c
+0-2,044contrib/unbound/testcode/fake_event.c
+0-1,857contrib/unbound/pythonmod/interface.i
+8,882-16,690132 files not shown
+15,803-27,136138 files

DragonFlyBSD/src 3346037lib/libc/iconv iconv.c

fix: iconv: move NULL checks before pointer arithmetic in iconvctl()

strchr() result was used in pointer arithmetic and incremented before
being checked for NULL. Move the guards above the strlcpy() call.
DeltaFile
+4-2lib/libc/iconv/iconv.c
+4-21 files

LLVM/project 387a738libc/test/src/math SubTest.h FmaTest.h, libc/test/src/math/smoke ILogbTest.h

[libc][NFC] Reduce the test size for math functions by default. (#199308)
DeltaFile
+2-2libc/test/src/math/SubTest.h
+2-2libc/test/src/math/FmaTest.h
+2-2libc/test/src/math/DivTest.h
+2-2libc/test/src/math/MulTest.h
+2-2libc/test/src/math/NearbyIntTest.h
+2-2libc/test/src/math/smoke/ILogbTest.h
+12-1280 files not shown
+100-10086 files

DragonFlyBSD/src b77d373lib/libtcplay safe_mem.c, sbin/cryptdisks safe_mem.c

tcplay/cryptdisks: Suppress GCC 15 false-positive -Wmaybe-uninitialized.

GCC 15 cannot see that mem is always initialized after the
malloc NULL check. Use a guarded diagnostic pragma to suppress
the warning only on GCC >= 15.
DeltaFile
+8-0lib/libtcplay/safe_mem.c
+8-0sbin/cryptdisks/safe_mem.c
+16-02 files

DragonFlyBSD/src bdbecb4games/adventure save.c, lib/libefivar uefi-dplib.h

various: Fix -Wstringop-overread and -Wdangling-pointer warnings.

Fix sizeof(&sum) vs sizeof(sum) bug in adventure save/restore.
Fix strcmp() on non-NUL-terminated fgetln() buffer in libfetch.
Suppress false positives in libefivar and libnvmm.
DeltaFile
+20-0lib/libnvmm/libnvmm_x86.c
+9-2lib/libefivar/uefi-dplib.h
+2-2lib/libfetch/http.c
+2-2games/adventure/save.c
+33-64 files

LLVM/project cd1baf3libc/test/src/__support/wctype CMakeLists.txt

[libc][NFC][wctype] Fix test ci for old drivers (#199307)
DeltaFile
+17-2libc/test/src/__support/wctype/CMakeLists.txt
+17-21 files

LLVM/project d22dfb7llvm/docs LangRef.rst

mention pointer comparisons created by passes

Created using spr 1.3.6-beta.1
DeltaFile
+9-6llvm/docs/LangRef.rst
+9-61 files

DragonFlyBSD/src 572db2blib/libc/gen setmode.c, usr.bin/rs rs.c

libc/rs: Fix use-after-free on realloc (-Wuse-after-free).

GCC 15 warns when pointer arithmetic references a pointer that was
passed to realloc(). Save the offset before the realloc call and
recompute the pointer from the new allocation afterwards.
DeltaFile
+5-3usr.bin/rs/rs.c
+3-3lib/libc/gen/setmode.c
+8-62 files

DragonFlyBSD/src 58a4a85sys/kern kern_kinfo.c, usr.bin/systat ifstat.c

various: Fix always-true/false address comparisons (-Waddress).

GCC 15 warns when comparing the address of a struct member against
NULL, since such addresses can never be NULL. Replace with emptiness
checks where intent was "is it set", remove dead guards otherwise.

Also fixes a latent bug in telnet ring.c where a pointer expression
was used as a boolean instead of as the RHS of a comparison.
DeltaFile
+2-4sys/kern/kern_kinfo.c
+2-2usr.sbin/ppp/ipcp.c
+2-2usr.sbin/pciconf/pciconf.c
+1-1usr.bin/systat/ifstat.c
+1-1usr.bin/telnet/ring.c
+1-1usr.sbin/keyserv/crypt_server.c
+9-115 files not shown
+14-1611 files

LLVM/project 0bc7fb9libc/test/src/__support/wctype CMakeLists.txt

[libc][NFC][wctype] Fix test ci for old drivers
DeltaFile
+8-2libc/test/src/__support/wctype/CMakeLists.txt
+8-21 files

DragonFlyBSD/src ace1c17bin/test test.c, games/adventure save.c

various: Fix -Wunterminated-string-initialization warnings.

GCC 15 warns when a string literal exactly fills a char array,
truncating the NUL terminator. Extend arrays used as strings.
Use char array initializers for intentionally non-terminated arrays.
DeltaFile
+1-1bin/test/test.c
+1-1games/adventure/save.c
+1-1games/gomoku/main.c
+1-1lib/libfetch/common.c
+1-1lib/libthread_xu/thread/thr_printf.c
+1-1usr.bin/m4/misc.c
+6-61 files not shown
+7-77 files

DragonFlyBSD/src a1fbaa2sbin/rconfig rconfig.c, sbin/restore symtab.c

various: Swap transposed calloc() count/size arguments.

GCC 15 warns when calloc() is called with sizeof() as the first
argument and count as the second (-Wcalloc-transposed-args).
The correct prototype is calloc(count, size).
DeltaFile
+8-8usr.bin/localedef/collate.c
+5-5sbin/svc/remote.c
+3-3usr.bin/ministat/ministat.c
+1-1sbin/rconfig/rconfig.c
+1-1sbin/restore/symtab.c
+1-1sbin/svc/subs.c
+19-197 files not shown
+26-2613 files

LLVM/project f76446bllvm/test/CodeGen/X86 ctselect.ll ctselect-vector.ll

[X86] Stop claiming f128 CT_SELECT Custom; regen ctselect tests

X86's LowerCT_SELECT falls through to X86ISD::CT_SELECT for any FP
type it claims Custom but doesn't special-case (only f80 has the
three-i32-chunk path, and scalar f32/f64 the SSE register path).
For f128 the fall-through produces an X86ISD::CT_SELECT with f128
result type, for which no isel pattern exists, and selection
ICEs with "Cannot select".

Drop f128 from the CT_SELECT Custom loop so the generic legalizer's
memory-blend path (recently added in the core PR) handles it.

Regenerate CHECK lines for all X86 ctselect tests to reflect the
expanded coverage (half/bfloat/fp80/fp128) introduced upstream.
DeltaFile
+1,107-1,533llvm/test/CodeGen/X86/ctselect.ll
+125-534llvm/test/CodeGen/X86/ctselect-vector.ll
+184-187llvm/test/CodeGen/X86/ctselect-i386-mmx.ll
+26-208llvm/test/CodeGen/X86/ctselect-i386-fp.ll
+8-63llvm/test/CodeGen/X86/ctselect-i386.ll
+3-24llvm/test/CodeGen/X86/ctselect-edge-cases.ll
+1,453-2,5491 files not shown
+1,459-2,5507 files

LLVM/project 88fff4bllvm/lib/Target/X86 X86ISelLowering.cpp

[X86] Restore combineSelect BLENDV sign-bit fold

The optimization that folds X86ISD::BLENDV away when the condition's
sign bit is statically known was inadvertently dropped during a prior
rebase conflict resolution. Its absence caused unrelated CHECK lines
in combine-sdiv.ll, vector-compress.ll, vector-idiv-{u,s}div-*.ll to
fail because main expects the post-optimization codegen.

Restores the block at llvm/lib/Target/X86/X86ISelLowering.cpp line
~49587 (after combineLogicBlendIntoConditionalNegate, before the
VSELECT/BLENDV shuffle handling), matching origin/main verbatim.
DeltaFile
+15-3llvm/lib/Target/X86/X86ISelLowering.cpp
+15-31 files

LLVM/project e785e33llvm/lib/Target/X86 X86InstrInfo.cpp X86ISelLowering.cpp, llvm/test/CodeGen/X86 ctselect-vector.ll ctselect-i386-mmx.ll

[LLVM][X86] Add f80 support for ct.select

Add special handling for x86_fp80 types in CTSELECT lowering by splitting
them into three 32-bit chunks, performing constant-time selection on each
chunk, and reassembling the result. This fixes crashes when compiling
tests with f80 types.

Also updated ctselect.ll to match current generic fallback implementation.
DeltaFile
+463-452llvm/lib/Target/X86/X86InstrInfo.cpp
+211-492llvm/test/CodeGen/X86/ctselect-vector.ll
+188-255llvm/test/CodeGen/X86/ctselect-i386-mmx.ll
+126-146llvm/test/CodeGen/X86/ctselect-i386-fp.ll
+69-6llvm/lib/Target/X86/X86ISelLowering.cpp
+3-6llvm/lib/Target/X86/X86InstrInfo.h
+1,060-1,3572 files not shown
+1,061-1,3608 files

LLVM/project e0c4d09clang/docs LanguageExtensions.rst, clang/include/clang/Basic Builtins.td

[ConstantTime][Clang] Add __builtin_ct_select for constant-time selection
DeltaFile
+683-0clang/test/Sema/builtin-ct-select.c
+373-0clang/test/Sema/builtin-ct-select-edge-cases.c
+64-0clang/lib/Sema/SemaChecking.cpp
+44-0clang/docs/LanguageExtensions.rst
+13-0clang/lib/CodeGen/CGBuiltin.cpp
+8-0clang/include/clang/Basic/Builtins.td
+1,185-06 files

LLVM/project 700d215llvm/lib/Target/X86 X86ISelLowering.cpp X86InstrInfo.cpp, llvm/test/CodeGen/X86 ctselect-vector.ll ctselect-i386-fp.ll

[LLVM][X86] Add native ct.select support for X86 and i386

Add native X86 implementation with CMOV instructions and comprehensive tests:
- X86 ISelLowering with CMOV for x86_64 and i386
- Fallback bitwise operations for i386 targets without CMOV
- Post-RA expansion for pseudo-instructions
- Comprehensive test coverage:
  - Edge cases (zero conditions, large integers)
  - i386-specific tests (FP, MMX, non-CMOV fallback)
  - Vector operations
  - Optimization patterns

The basic test demonstrating fallback is in the core infrastructure PR.
DeltaFile
+1,274-0llvm/test/CodeGen/X86/ctselect-vector.ll
+763-35llvm/lib/Target/X86/X86ISelLowering.cpp
+722-0llvm/test/CodeGen/X86/ctselect-i386-fp.ll
+604-5llvm/lib/Target/X86/X86InstrInfo.cpp
+428-0llvm/test/CodeGen/X86/ctselect-i386-mmx.ll
+409-0llvm/test/CodeGen/X86/ctselect-edge-cases.ll
+4,200-4010 files not shown
+5,085-4516 files

LLVM/project 2fa5182llvm/test/CodeGen/ARM ctselect-vector.ll ctselect-half.ll

[ARM] Regen ctselect tests for new core legalization

The core PR moved CT_SELECT lowering into the generic legalizer
(memory-blend for FP types without a legal same-size integer,
scalar-mask+splat for vectors). ARM tests' CHECK lines need to
reflect the new codegen.

No functional change in ARM target lowering itself; only test
expectations updated to match generated output.
DeltaFile
+972-1,333llvm/test/CodeGen/ARM/ctselect-vector.ll
+513-627llvm/test/CodeGen/ARM/ctselect-half.ll
+51-182llvm/test/CodeGen/ARM/ctselect.ll
+1,536-2,1423 files

LLVM/project d8bee53llvm/lib/Target/ARM ARMISelLowering.cpp ARMTargetMachine.cpp

[ARM] Restore STRICT FP setup, byval pre-load fix, bundle predicate

A prior rebase conflict resolution accidentally dropped several
unrelated pieces of upstream ARM code:

- ARMISelLowering: STRICT_FP_ROUND/FMINNUM/FMAXNUM/FP_EXTEND
  setOperationAction calls (from d08b0f7240aa "Disable strict node
  mutation"), the STRICT_FP_TO_SINT/UINT i32 unconditional setup,
  the STRICT_FP16_TO_FP Expand fallback (reverted from LibCall), the
  byval pre-load fix in LowerCall (from a01a921004c1), and the
  IsStrictFPEnabled=true line at the end of the constructor.
- ARMTargetMachine: broadened createUnpackMachineBundlesLegacy from
  the Thumb2/KCFI predicate to nullptr (unconditional).

These deletions caused CHECK-line mismatches in fp16-fullfp16.ll,
fp-intrinsics-vector.ll, and byval_struct_copy_tailcall.ll. None of
the affected tests use llvm.ct.select.

Restores the upstream code verbatim; ct.select work is unaffected.
DeltaFile
+68-15llvm/lib/Target/ARM/ARMISelLowering.cpp
+5-3llvm/lib/Target/ARM/ARMTargetMachine.cpp
+0-1llvm/lib/Target/ARM/ARMISelLowering.h
+73-193 files

LLVM/project dc7ae68llvm/lib/Target/ARM ARMISelLowering.cpp ARMBaseInstrInfo.cpp, llvm/test/CodeGen/ARM ctselect-vector.ll ctselect-half.ll

[LLVM][ARM] Add native ct.select support for ARM32 and Thumb

This patch implements architecture-specific lowering for ct.select on ARM
(both ARM32 and Thumb modes) using conditional move instructions and
bitwise operations for constant-time selection.

Implementation details:
- Uses pseudo-instructions that are expanded Post-RA to bitwise operations
- Post-RA expansion in ARMBaseInstrInfo for BUNDLE pseudo-instructions
- Handles scalar integer types, floating-point, and half-precision types
- Handles vector types with NEON when available
- Support for both ARM and Thumb instruction sets (Thumb1 and Thumb2)
- Special handling for Thumb1 which lacks conditional execution
- Comprehensive test coverage including half-precision and vectors

The implementation includes:
- ISelLowering: Custom lowering to CTSELECT pseudo-instructions
- ISelDAGToDAG: Selection of appropriate pseudo-instructions
- BaseInstrInfo: Post-RA expansion of BUNDLE to bitwise instruction sequences

    [3 lines not shown]
DeltaFile
+1,839-0llvm/test/CodeGen/ARM/ctselect-vector.ll
+867-0llvm/test/CodeGen/ARM/ctselect-half.ll
+549-0llvm/test/CodeGen/ARM/ctselect.ll
+311-62llvm/lib/Target/ARM/ARMISelLowering.cpp
+335-2llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
+187-0llvm/lib/Target/ARM/ARMInstrInfo.td
+4,088-644 files not shown
+4,187-6910 files

LLVM/project ac82f34clang/docs LanguageExtensions.rst, clang/include/clang/Basic Builtins.td

[ConstantTime][Clang] Add __builtin_ct_select for constant-time selection
DeltaFile
+683-0clang/test/Sema/builtin-ct-select.c
+373-0clang/test/Sema/builtin-ct-select-edge-cases.c
+64-0clang/lib/Sema/SemaChecking.cpp
+44-0clang/docs/LanguageExtensions.rst
+13-0clang/lib/CodeGen/CGBuiltin.cpp
+8-0clang/include/clang/Basic/Builtins.td
+1,185-06 files

LLVM/project 49c5c48llvm/test/CodeGen/WebAssembly ctselect-fallback-vector.ll ctselect-fallback-patterns.ll

[WebAssembly] Regen ctselect tests, drop SIMD <8xi16>/<16xi8> cases

The core PR's new CT_SELECT expansion normalizes scalar mask to the
vector element type. On WebAssembly that fails for i16/i8 element
vectors because those aren't legal scalar register types, triggering
"Unexpected illegal type!" in LegalizeOp.

Drop <8 x i16> and <16 x i8> cases from the SIMD vector test pending
a fix in lib/CodeGen/SelectionDAG/LegalizeDAG.cpp (see TODO at top).
Regen CHECK lines for everything else.
DeltaFile
+117-233llvm/test/CodeGen/WebAssembly/ctselect-fallback-vector.ll
+16-0llvm/test/CodeGen/WebAssembly/ctselect-fallback-patterns.ll
+12-0llvm/test/CodeGen/WebAssembly/ctselect-fallback.ll
+6-2llvm/test/CodeGen/WebAssembly/ctselect-fallback-edge-cases.ll
+151-2354 files

LLVM/project 633cc16llvm/test/CodeGen/WebAssembly ctselect-fallback-vector.ll ctselect-fallback-patterns.ll

[LLVM][WebAssembly] Regenerate ct.select test CHECK lines

Update CHECK lines to match the new constant-time AND/OR/XOR expansion
from the CT_SELECT legalization fix.
DeltaFile
+196-238llvm/test/CodeGen/WebAssembly/ctselect-fallback-vector.ll
+166-256llvm/test/CodeGen/WebAssembly/ctselect-fallback-patterns.ll
+129-201llvm/test/CodeGen/WebAssembly/ctselect-fallback.ll
+127-186llvm/test/CodeGen/WebAssembly/ctselect-fallback-edge-cases.ll
+10-16llvm/test/CodeGen/WebAssembly/ctselect-side-effects.ll
+628-8975 files

LLVM/project 036021ellvm/test/CodeGen/WebAssembly ctselect-fallback-vector.ll ctselect-fallback-patterns.ll

[ConstantTime][WebAssembly] Add comprehensive tests for ct.select
DeltaFile
+714-0llvm/test/CodeGen/WebAssembly/ctselect-fallback-vector.ll
+641-0llvm/test/CodeGen/WebAssembly/ctselect-fallback-patterns.ll
+552-0llvm/test/CodeGen/WebAssembly/ctselect-fallback.ll
+376-0llvm/test/CodeGen/WebAssembly/ctselect-fallback-edge-cases.ll
+226-0llvm/test/CodeGen/WebAssembly/ctselect-side-effects.ll
+2,509-05 files

LLVM/project 27b0dfaclang/docs LanguageExtensions.rst, clang/include/clang/Basic Builtins.td

[ConstantTime][Clang] Add __builtin_ct_select for constant-time selection
DeltaFile
+683-0clang/test/Sema/builtin-ct-select.c
+373-0clang/test/Sema/builtin-ct-select-edge-cases.c
+64-0clang/lib/Sema/SemaChecking.cpp
+44-0clang/docs/LanguageExtensions.rst
+13-0clang/lib/CodeGen/CGBuiltin.cpp
+8-0clang/include/clang/Basic/Builtins.td
+1,185-06 files

FreeBSD/doc 2c923b1website/data/en/news news.toml

15.1: Announce RC1

Approved by:    re (implicit)
Sponsored by:   OpenSats Initiative
DeltaFile
+5-0website/data/en/news/news.toml
+5-01 files

LLVM/project da43e82llvm/test/CodeGen/RISCV ctselect-side-effects.ll ctselect-fallback-edge-cases.ll

[LLVM][RISCV] Drop -O3/-filetype from ct.select test RUN lines

llc defaults to -O2 and asm; codegen tests should exercise the
default pipeline. CHECK lines are unchanged — -O2 produces identical
asm to -O3 for all five files.
DeltaFile
+2-2llvm/test/CodeGen/RISCV/ctselect-side-effects.ll
+2-2llvm/test/CodeGen/RISCV/ctselect-fallback-edge-cases.ll
+2-2llvm/test/CodeGen/RISCV/ctselect-fallback-patterns.ll
+2-2llvm/test/CodeGen/RISCV/ctselect-fallback.ll
+8-84 files

LLVM/project 62b6872llvm/test/CodeGen/RISCV ctselect-fallback-vector-rvv.ll ctselect-fallback-edge-cases.ll

[RISCV] Regen ctselect tests, replace RVV vector test with placeholder

The core PR's new CT_SELECT legalizer expansion currently fails for
several scalable-vector cases on RISC-V V extension (basic/load/mixed
patterns hit "Unexpected illegal type!" in LegalizeOp).

Replace the RVV scalable test file with a passing placeholder
documenting the issue. Regen CHECK lines for the other ctselect tests
to match the new core codegen.
DeltaFile
+11-569llvm/test/CodeGen/RISCV/ctselect-fallback-vector-rvv.ll
+3-2llvm/test/CodeGen/RISCV/ctselect-fallback-edge-cases.ll
+4-0llvm/test/CodeGen/RISCV/ctselect-fallback-patterns.ll
+18-5713 files

LLVM/project b909a70llvm/test/CodeGen/RISCV ctselect-fallback-vector-rvv.ll ctselect-fallback-edge-cases.ll

[LLVM][RISCV] Regenerate ct.select test CHECK lines

Update CHECK lines to match the new constant-time AND/OR/XOR expansion
from the CT_SELECT legalization fix.
DeltaFile
+116-348llvm/test/CodeGen/RISCV/ctselect-fallback-vector-rvv.ll
+66-78llvm/test/CodeGen/RISCV/ctselect-fallback-edge-cases.ll
+62-77llvm/test/CodeGen/RISCV/ctselect-fallback-patterns.ll
+7-8llvm/test/CodeGen/RISCV/ctselect-side-effects.ll
+251-5114 files