]> git.ipfire.org Git - thirdparty/glibc.git/log
thirdparty/glibc.git
17 hours agomalloc: Add threaded variants of single-threaded malloc tests master
Arjun Shankar [Fri, 14 Nov 2025 17:31:46 +0000 (18:31 +0100)] 
malloc: Add threaded variants of single-threaded malloc tests

Single-threaded malloc tests exercise only the SINGLE_THREAD_P paths in
the malloc implementation.  This commit runs variants of these tests in
a multi-threaded environment in order to exercise the alternate code
paths in the same test scenarios, thus potentially improving coverage.

$(test)-threaded-main and $(test)-threaded-worker variants are
introduced for most single-threaded malloc tests (with a small number of
exceptions).  The -main variants run the base test in a main thread
while the test environment has an alternate thread running, whereas the
-worker variants run the test in an alternate thread while the main
thread waits on it.

The tests themselves are unmodified, and the change is accomplished by
using -DTEST_IN_THREAD at compile time, which instructs support/
infrastructure to run the test while an alternate thread waits on it.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
17 hours agosupport: Add support for running tests in a multi-threaded environment
Arjun Shankar [Fri, 14 Nov 2025 17:31:45 +0000 (18:31 +0100)] 
support: Add support for running tests in a multi-threaded environment

It can be useful to be able to write a single-threaded test but run it
as part of a multi-threaded program simply to exercise glibc
synchronization code paths, e.g. the malloc implementation.

This commit adds support to enable this kind of testing.  Tests that
define TEST_IN_THREAD, either as TEST_THREAD_MAIN or TEST_THREAD_WORKER,
and then use support infrastructure (by including test-driver.c) will be
accordingly run in either the main thread, or in a second "worker"
thread while the other thread waits.

This can be used in new tests, or to easily make and run copies of
existing tests without modifying the tests themselves.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
2 days agohtl: Fix conditions for thread list variables
Samuel Thibault [Sat, 22 Nov 2025 10:55:40 +0000 (11:55 +0100)] 
htl: Fix conditions for thread list variables

_dl_stack_used/user/etc. vs _dl_pthread_num_threads etc. is really an
nptl vs htl question rather than pthread being in libc.

2 days agopthread: Simplify condition for hidden proto
Samuel Thibault [Sat, 22 Nov 2025 10:54:12 +0000 (11:54 +0100)] 
pthread: Simplify condition for hidden proto

This is not needed yet for htl (only the Linux mq_notify), but we can as
well just simplify the header.

3 days agohtl: move c11 symbols into libc.
gfleury [Fri, 21 Nov 2025 19:13:36 +0000 (21:13 +0200)] 
htl: move c11 symbols into libc.

thrd_{create,detach,exit,join}.
mtx_{init,destroy,lock,trylock,unlock,timeelock}.
cnd_{broadcast,destroy,init,signal,timewait,wait,destroy}
tss_{create,delete,get,set}. call_once.
Message-ID: <20251121191336.1224485-1-gfleury@disroot.org>

3 days agohtl: Also use __libc_thread_freeres to clean TLS state
Samuel Thibault [Sat, 22 Nov 2025 02:25:26 +0000 (02:25 +0000)] 
htl: Also use __libc_thread_freeres to clean TLS state

3 days agobenchtests: Fix bench-build after cd748a63ab
Adhemerval Zanella [Fri, 21 Nov 2025 16:21:25 +0000 (13:21 -0300)] 
benchtests: Fix bench-build after cd748a63ab

The benchtests does not define _LIBC.

3 days agolinux: Handle EINVAL as unsupported on tst-pidfd_getinfo
Adhemerval Zanella [Thu, 20 Nov 2025 19:42:04 +0000 (16:42 -0300)] 
linux: Handle EINVAL as unsupported on tst-pidfd_getinfo

Some kernels returns EINVAL for ioctl (PIDFD_GET_INFO) on pidfd
descriptors.

Checked on aarch64-linux-gnu with Linux 6.12.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
3 days agobench-malloc-thread: Add libm for powf
Adhemerval Zanella [Thu, 20 Nov 2025 18:30:15 +0000 (15:30 -0300)] 
bench-malloc-thread: Add libm for powf

The compiler might not constant fold the call, which issues
linker error.

Reviewed-by: Sam James <sam@gentoo.org>
3 days agobenchtests: Remove clang warnings
Adhemerval Zanella [Thu, 20 Nov 2025 18:30:14 +0000 (15:30 -0300)] 
benchtests: Remove clang warnings

clangs warns of the implicit cast of RAND_MAX to float:

  error: implicit conversion from 'int' to 'float' changes value from
  2147483647 to 2147483648 [-Werror,-Wimplicit-const-int-float-conversion]

So make it explicit.

Reviewed-by: Sam James <sam@gentoo.org>
3 days agobenchtests: Add attribute_optimize
Adhemerval Zanella [Thu, 20 Nov 2025 18:30:13 +0000 (15:30 -0300)] 
benchtests: Add attribute_optimize

Similar to tst-printf-bz18872.sh, add the attribute_optimize to avoid
build failures with compilers that do not support "GCC optimize" pragma.

Reviewed-by: Sam James <sam@gentoo.org>
3 days agobenchtests: Use __f128 on ilogbf128-inputs constants
Adhemerval Zanella [Thu, 20 Nov 2025 18:30:12 +0000 (15:30 -0300)] 
benchtests: Use __f128 on ilogbf128-inputs constants

The f128 is not a valid floating constant suffix on clang.

Reviewed-by: Sam James <sam@gentoo.org>
3 days agoEnable --enable-fortify-source with clang
Adhemerval Zanella [Thu, 20 Nov 2025 18:30:11 +0000 (15:30 -0300)] 
Enable --enable-fortify-source with clang

clang generates internal calls for some _chk symbol, so add internal
aliases for them, and stub some with rtld-stubbed-symbols to avoid
ld.so linker issues.

Reviewed-by: Sam James <sam@gentoo.org>
3 days agoconfigure: Only use -fno-fp-int-builtin-inexact if compiler supports it
Adhemerval Zanella [Thu, 20 Nov 2025 18:30:10 +0000 (15:30 -0300)] 
configure: Only use -fno-fp-int-builtin-inexact if compiler supports it

Checked on x86_64-linux-gnu.

Reviewed-by: Sam James <sam@gentoo.org>
3 days agobenchtests: Add fmaf benchtests
Adhemerval Zanella [Thu, 13 Nov 2025 12:58:21 +0000 (09:58 -0300)] 
benchtests: Add fmaf benchtests

Random inputs in the range [0,10].

Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
3 days agomath: Remove ldbl-96 fma implementation
Adhemerval Zanella [Thu, 13 Nov 2025 12:58:19 +0000 (09:58 -0300)] 
math: Remove ldbl-96 fma implementation

It is worse than the ldbl-64 version on recent x86 hardware.  With
Zen3 and gcc-15:

ldbl-96 removal
reciprocal-throughput        master        patched   improvement
x86_64                    1176.2200       289.4640         4.06x
i686                      1476.0600       636.8660         2.32x

latency                      master        patched   improvement
x86_64                    1176.2200        293.7360        4.00x
i686                      1480.0700        658.4160        2.25x

Checked on x86_64-linux-gnu and i686-linux-gnu.

Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
3 days agobenchtests: Add fma benchtests
Adhemerval Zanella [Thu, 13 Nov 2025 12:58:18 +0000 (09:58 -0300)] 
benchtests: Add fma benchtests

Random inputs in the range [0,10].

Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
4 days agohtl: Move pthread_atfork compatibility symbol to libc
Samuel Thibault [Wed, 19 Nov 2025 19:16:18 +0000 (20:16 +0100)] 
htl: Move pthread_atfork compatibility symbol to libc

There is no new symbol version because of the compatibility symbol
status.

4 days agohtl: move pthread_spin_{destroy, lock, init, trylock, unlock) and remove _pthread_spi...
gfleury [Thu, 20 Nov 2025 08:56:47 +0000 (10:56 +0200)] 
htl: move pthread_spin_{destroy, lock, init, trylock, unlock) and remove _pthread_spin_lock, into libc.

Message-ID: <20251120085647.326643-1-gfleury@disroot.org>

4 days agoImplement C23 const-preserving standard library macros
Joseph Myers [Thu, 20 Nov 2025 19:30:27 +0000 (19:30 +0000)] 
Implement C23 const-preserving standard library macros

C23 makes various standard library functions, that return a pointer
into an input array, into macros that return a pointer to const when
the relevant argument passed to the macro is a pointer to const.  (The
requirement is for macros, with the existing function types applying
when macro expansion is suppressed.  When a null pointer constant is
passed, such as integer 0, that's the same as a pointer to non-const.)

Implement this feature.  This only applies to C, not C++, since such
macros are not an appropriate way of doing this for C++ and all the
affected functions other than bsearch have overloads to implement an
equivalent feature for C++ anyway.  Nothing is done to apply such a
change to any non-C23 functions with the same property of returning a
pointer into an input array.

The feature is also disabled when _LIBC is defined, since there are
various places in glibc that either redefine these identifiers as
macros, or define the functions themselves, and would need changing to
work in the presence of these macro definitions.  A natural question
is whether we should in fact change those places and not disable the
macro definitions for _LIBC.  If so, we'd need a solution for the
places in glibc that define the macro *before* including the relevant
header (in order in effect to disable the header declaration of the
function by renaming that declaration).

One testcase has #undef added to avoid conflicting with this feature
and another has const added; -Wno-discarded-qualifiers is added for
building zic (but could be removed once there's a new upstream tzcode
release that's const-safe with this C23 change and glibc has updated
to code from that new release).  Probably other places in glibc proper
would need const added if we remove the _LIBC conditionals.

Another question would be whether some GCC extension should be added
to support this feature better with macros that only expand each
argument once (as well as reducing duplication of diagnostics for bad
usages such as non-pointer and pointer-to-volatile-qualfied
arguments).

Tested for x86_64.

4 days agoCheck if linker supports -Wl,--undefined-version
Adhemerval Zanella [Thu, 20 Nov 2025 12:20:41 +0000 (09:20 -0300)] 
Check if linker supports -Wl,--undefined-version

Although binutils has supported --no-undefined-version for a long timei
(319416359200 back in 2002), --undefined-version was only added more
recently (27fb6a1a7fcd on 2.40).

Reviewed-by: Sam James <sam@gentoo.org>
4 days agonptl: Replace FALLTHROUGH with [[fallthrough]]
Adhemerval Zanella [Tue, 18 Nov 2025 16:00:19 +0000 (13:00 -0300)] 
nptl: Replace FALLTHROUGH with [[fallthrough]]

The b9579342c6 reinstate '/* FALLTHROUGH */' that were replaced
the the C23 [[fallthrough]] by 970364dac0.

4 days agohurd: Add missing free_sized and free_aligned_sized
Samuel Thibault [Wed, 19 Nov 2025 18:37:18 +0000 (19:37 +0100)] 
hurd: Add missing free_sized and free_aligned_sized

56549264d1e1 ("malloc: add free_sized and free_aligned_sized from C23")
missed adding them.

4 days agoUse __fstat64_time64 in __fts64_children_time64 (bug 33653)
Andreas Schwab [Thu, 20 Nov 2025 11:16:15 +0000 (12:16 +0100)] 
Use __fstat64_time64 in __fts64_children_time64 (bug 33653)

Make sure that fts_safe_changedir can handle a directory with a time stamp
after y2038.

4 days agomalloc: Use _int_free_chunk in tcache_thread_shutdown
Wilco Dijkstra [Fri, 29 Aug 2025 12:47:54 +0000 (12:47 +0000)] 
malloc: Use _int_free_chunk in tcache_thread_shutdown

Directly call _int_free_chunk during tcache shutdown to avoid recursion.
Calling __libc_free on a block from tcache gets flagged as a double free,
and tcache_double_free_verify checks every tcache chunk (quadratic
overhead).

Reviewed-by: Arjun Shankar <arjun@redhat.com>
5 days agomath: Sync atanh from CORE-MATH
Adhemerval Zanella [Wed, 19 Nov 2025 18:21:44 +0000 (15:21 -0300)] 
math: Sync atanh from CORE-MATH

The CORE-MATH commit 703d7487 fixes some issues for RNDZ:

Failure: Test: atanh_towardzero (0x5.96200b978b69cp-4)
Result:
 is:          3.6447730550366463e-01   0x1.753989ed16faap-2
 should be:   3.6447730550366458e-01   0x1.753989ed16fa9p-2
 difference:  5.5511151231257827e-17   0x1.0000000000000p-54
 ulp       :  1.0000
 max.ulp   :  0.0000
Maximal error of `atanh_towardzero'
 is      : 1 ulp
 accepted: 0 ulp

Checked on x86_64-linux-gnu, x86_64-linux-gnu-v3, aarch64-linux-gnu,
and i686-linux-gnu.

5 days agomalloc: add free_sized and free_aligned_sized from C23
Justin King [Wed, 22 Oct 2025 12:51:43 +0000 (05:51 -0700)] 
malloc: add free_sized and free_aligned_sized from C23

Signed-off-by: Justin King <jcking@google.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
5 days agomath: Sync acosh from CORE-MATH
Adhemerval Zanella [Wed, 19 Nov 2025 15:54:04 +0000 (12:54 -0300)] 
math: Sync acosh from CORE-MATH

The CORE-MATH commit 6736002f fixes some issues for RNDZ:

Failure: Test: acosh_towardzero (0x1.08000c1e79fp+0)
Result:
 is:          2.4935636091994373e-01   0x1.feae8c399b18cp-3
 should be:   2.4935636091994370e-01   0x1.feae8c399b18bp-3
 difference:  2.7755575615628913e-17   0x1.0000000000000p-55
 ulp       :  1.0000
 max.ulp   :  0.0000
Failure: Test: acosh_towardzero (0x1.080016353964ep+0)
Result:
 is:          2.4935874767710369e-01   0x1.feafcc91f518ep-3
 should be:   2.4935874767710367e-01   0x1.feafcc91f518dp-3
 difference:  2.7755575615628913e-17   0x1.0000000000000p-55
 ulp       :  1.0000
 max.ulp   :  0.0000
Maximal error of `acosh_towardzero'
 is      : 1 ulp
 accepted: 0 ulp

This only happens when the ISA supports fma, such as x86_64-v3, aarch64,
or powerpc.

Checked on x86_64-linux-gnu, x86_64-linux-gnu-v3, aarch64-linux-gnu,
and i686-linux-gnu.

6 days agolinux/termios: test the kernel-side termios canonicalization
H. Peter Anvin [Tue, 18 Nov 2025 18:21:18 +0000 (10:21 -0800)] 
linux/termios: test the kernel-side termios canonicalization

Verify that the kernel side of the termios interface gets the various
speed fields set according to our current canonicalization policy.

[ v2.1: fix formatting - Adhemerval Netto ]
[ v4: fix typo in patch description - Dan Horák ]

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org> (v2.1)
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
6 days agonss: Remove effectively unused __nss_*_database variables
Florian Weimer [Tue, 18 Nov 2025 19:18:06 +0000 (20:18 +0100)] 
nss: Remove effectively unused __nss_*_database variables

Use of this cache was removed in commit f8847d83e17774ed5e9c0f75ef693
("nsswitch: use new internal API (core)").

Reviewed-by: Collin Funk <collin.funk1@gmail.com>
6 days agoAArch64: Remove WANT_SIMD_EXCEPT from aarch64 AdvSIMD math routines
Dylan Fleming [Tue, 18 Nov 2025 15:34:41 +0000 (15:34 +0000)] 
AArch64: Remove WANT_SIMD_EXCEPT from aarch64 AdvSIMD math routines

Remove legacy code for supporting an old Arm Optimised Routines
deprecated feature for throwing SIMD Exceptions.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
6 days agoAArch64: Fix and improve SVE pow(f) special cases
Pierre Blanchard [Tue, 18 Nov 2025 15:09:05 +0000 (15:09 +0000)] 
AArch64: Fix and improve SVE pow(f) special cases

powf:

Update scalar special case function to best use new interface.

pow:

Make specialcase NOINLINE to prevent str/ldr leaking in fast path.
Remove depency in sv_call2, as new callback impl is not a
performance gain.
Replace with vectorised specialcase since structure of scalar
routine is fairly simple.

Throughput gain of about 5-10% on V1 for large values and 25% for subnormal `x`.

Reviewed-by: Wilco Dijkstra  <Wilco.Dijkstra@arm.com>
6 days agoAArch64: fix SVE tanpi(f) [BZ #33642]
Pierre Blanchard [Tue, 18 Nov 2025 15:03:10 +0000 (15:03 +0000)] 
AArch64: fix SVE tanpi(f) [BZ #33642]

Fixed svld1rq using incorrect predicates (BZ #33642).
Next to no performance variations (tested on V1).

Reviewed-by: Wilco Dijkstra  <Wilco.Dijkstra@arm.com>
6 days agohtl: move pthread_hurd_cond_timedwait_np, pthread_hurd_cond_wait_np into libc.
gfleury [Tue, 18 Nov 2025 12:50:44 +0000 (14:50 +0200)] 
htl: move pthread_hurd_cond_timedwait_np, pthread_hurd_cond_wait_np into libc.

Message-ID: <20251118125044.1160780-3-gfleury@disroot.org>

6 days agohtl: move pthread_getname_np/setname_np into libc.
gfleury [Tue, 18 Nov 2025 12:50:43 +0000 (14:50 +0200)] 
htl: move pthread_getname_np/setname_np into libc.

Message-ID: <20251118125044.1160780-2-gfleury@disroot.org>

6 days agohtl: fix compatibility
gfleury [Tue, 18 Nov 2025 12:50:42 +0000 (14:50 +0200)] 
htl: fix compatibility

This fix 91fb9914d867320d65a2abe284fb623d91ae5efb which break a system
built with an old glibc
Message-ID: <20251118125044.1160780-1-gfleury@disroot.org>

6 days agoAdd new AArch64 HWCAP3 definitions from Linux 6.17 to bits/hwcap.h
Adhemerval Zanella [Thu, 2 Oct 2025 19:43:33 +0000 (16:43 -0300)] 
Add new AArch64 HWCAP3 definitions from Linux 6.17 to bits/hwcap.h

Linux 7c7f55039b8d6 added HWCAP3_MTE_FAR and f620372209bfe added
HWCAP3_MTE_STORE_ONLY.

6 days agomalloc: Simplify tst-free-errno munmap failure test
Arjun Shankar [Thu, 13 Nov 2025 20:26:08 +0000 (21:26 +0100)] 
malloc: Simplify tst-free-errno munmap failure test

The Linux specific test-case in tst-free-errno was backing up malloc
metadata for a large mmap'd block, overwriting the block with its own
mmap, then restoring malloc metadata and calling free to force an munmap
failure.  However, the backed up pages containing metadata can
occasionally be overlapped by the overwriting mmap, leading to a
metadata corruption.

This commit replaces this Linux specific test case with a simpler,
generic, three block allocation, expecting the kernel to coalesce the
VMAs, then cause a fragmentation to trigger the same failure.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
6 days agoRemove support for lock elision.
Stefan Liebler [Tue, 28 Oct 2025 14:21:18 +0000 (15:21 +0100)] 
Remove support for lock elision.

The support for lock elision was already deprecated with glibc 2.42:
commit 77438db8cfa6ee66b3906230156bdae11c49a195
"Mark support for lock elision as deprecated."
See also discussions:
https://sourceware.org/pipermail/libc-alpha/2025-July/168492.html

This patch removes the architecture specific support for lock elision
for x86, powerpc and s390 by removing the elision-conf.h, elision-conf.c,
elision-lock.c, elision-timed.c, elision-unlock.c, elide.h, htm.h/hle.h files.
Those generic files are also removed.

The architecture specific structures are adjusted and the elision fields are
marked as unused.  See struct_mutex.h files.
Furthermore in struct_rwlock.h, the leftover __rwelision was also removed.
Those were originally removed with commit 0377a7fde6dfcc078dda29a1225d7720a0931357
"nptl: Remove rwlock elision definitions"
and by chance reintroduced with commit 7df8af43ad1cd8ce527444de50bee6f35eebe071
"nptl: Add struct_rwlock.h"

The common code (e.g. the pthread_mutex-files) are changed back to the time
before lock elision was introduced with the x86-support:
- commit 1cdbe579482c07e9f4bb3baa4864da2d3e7eb837
"Add the low level infrastructure for pthreads lock elision with TSX"
- commit b023e4ca99f5e81f90d87d23cd267ef2abd2388c
"Add new internal mutex type flags for elision."
- commit 68cc29355f3334c7ad18f648ff9a6383a0916d23
"Add minimal test suite changes for elision enabled kernels"
- commit e8c659d74e011346785355eeef03b7fb6f533c61
"Add elision to pthread_mutex_{try,timed,un}lock"
- commit 49186d21ef2d87986bccaf0a7c45c48c91b265f3
"Disable elision for any pthread_mutexattr_settype call"
- commit 1717da59aed9612becd56aaa1249aac695af4c8a
"Add a configure option to enable lock elision and disable by default"

Elision is removed also from the tunables, the initialization part, the
pretty-printers and the manual.

Some extra handling in the testsuite is removed as well as the full tst-mutex10
testcase, which tested a race while enabling lock elision.

I've also searched the code for "elision", "elide", "transaction" and e.g.
cleaned some comments.

I've run the testsuite on x86_64 and s390x and run the build-many-glibcs.py
script.
Thanks to Sachin Monga, this patch is also tested on powerpc.

A NEWS entry also mentions the removal.
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
6 days agonss: Remove effectively unused struct nss_database_default_cache
Florian Weimer [Mon, 17 Nov 2025 17:43:50 +0000 (18:43 +0100)] 
nss: Remove effectively unused struct nss_database_default_cache

We always start with a zero-initialized cache, so this is completely
ineffective.

Reviewed-by: Collin Funk <collin.funk1@gmail.com>
7 days agonss: Clean up function pointer/void * unions
Florian Weimer [Mon, 17 Nov 2025 16:18:00 +0000 (17:18 +0100)] 
nss: Clean up function pointer/void * unions

All our targets support casts between function pointers and void *,
so we might as well use them.

This change was largely auto-generated, with the following prompts.

@getXXbyYY_r.c Remove the use of the `fct` union and replace it by
pointer casts.

Apply the same change to ether_* getnetgrent_r getnssent_r netname
publickey .

Do not use explicit `*` in function pointer calls. Replace
`(*((lookup_function) fct))` and similar with `((lookup_function) fct)`.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
7 days agolinux/termios: factor out the kernel interface from termios_internal.h
H. Peter Anvin [Mon, 20 Oct 2025 20:42:10 +0000 (13:42 -0700)] 
linux/termios: factor out the kernel interface from termios_internal.h

Factor out the internal kernel interface from termios_internal.h, so
that it can be used in test code without causing breakage due to glibc
internals used in headers.

[ v3: fix Alpha build breakage ]

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
7 days agolinux/termios: clear k_termios.c_cflag & CIBAUD for non-split speed [BZ 33340]
H. Peter Anvin [Mon, 20 Oct 2025 20:42:09 +0000 (13:42 -0700)] 
linux/termios: clear k_termios.c_cflag & CIBAUD for non-split speed [BZ 33340]

After getting more experience with the various broken direct-to-ioctl
termios2 hacks using Fedora 43 beta, I have found a fair number of
cases where the software would fail to set, or clear CIBAUD for
non-split-speed operation.

Thus it seems will help improve compatibility to clear the kernel-side
version of c_cflag & CIBAUD (having the same meaning to the Linux
kernel as the speed 0 has for cfsetibaud(), i.e. force the input speed
to equal the output speed) for non-split-speed operation, rather than
having it explicitly equal the output speed in CBAUD.

When writing the code that went into glibc 2.42 I had considered this
issue, and had to make an educated guess which way would be more
likely to break fewer things.  Unfortunately, it appears I guessed
wrong.

A third option would be to *always* set CIBAUD to __BOTHER, even for
the standard baud rates.  However, that is an even bigger departure
from legacy behavior, whereas this variant mostly preserves current
behavior in terms of under what conditions buggy utilities will
continue to work.

This change is in tcsetattr() rather than
___termios2_canonicalize_speeds(), as it should not be run for
tcgetattr(); that would break split speed support for the legacy
interface versions of cfgetispeed() and cfsetispeed().

[ v2: fixed comment style ]

Resolves: BZ #33340
Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
7 days agomanual: don't use the FSF's old address in license text.
Collin Funk [Tue, 11 Nov 2025 19:49:07 +0000 (11:49 -0800)] 
manual: don't use the FSF's old address in license text.

Update to latest text from Gnulib commit
08f579c56d81cf78c60fcd3568190f97e6e7f684, file doc/lgpl-2.1.texi.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
7 days agoposix: execvpe: fix UMR with file > NAME_MAX [BZ #33627]
Pádraig Brady [Fri, 14 Nov 2025 13:58:58 +0000 (13:58 +0000)] 
posix: execvpe: fix UMR with file > NAME_MAX [BZ #33627]

* posix/execvpe.c (__execvpe_common): Since strnlen doesn't inspect
beyond NAME_MAX and NAME_MAX does not cover the NUL, we need
to explicitly check for the NUL.  I.e. the existing check for,
file_len-1 > NAME_MAX, was never true.  This check is required
so that we're guaranteed that file_len includes the NUL, as we
depend on that in the following memcpy to properly terminate
the file buffer passed to execve().  Otherwise that call will trigger
UMR when inspecting the passed file, which can be seen with valgrind.
Note returning ENAMETOOLONG early here for FILE names > NAME_MAX
will also avoid redundant processing of ENAMETOOLONG on each entry
in $PATH, after the change in [BZ #33626] is applied.

Reviewed-by: Collin Funk <collin.funk1@gmail.com>
7 days agoconfigure: Remove for redirection of built-in functions
Adhemerval Zanella [Mon, 10 Nov 2025 13:29:02 +0000 (10:29 -0300)] 
configure: Remove for redirection of built-in functions

The check was initially used to define HAVE_BUILTIN_REDIRECTION, which
enables or not libc_hidden_builtin_proto support. It was later removed
with 3ce1f2959437e952b9db4eaeed2407424f11a4d1, making the feature
mandatory. The configure check was kept as a transition knob.

Current minimum gcc/linker always supports this, as well as clang with
some extra care. Also, missing hidden_proto/hidden_def support is
already flagged in the check-localplt test.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
7 days agomath: Handle fabsf128 !__USE_EXTERN_INLINES
Adhemerval Zanella [Mon, 10 Nov 2025 13:29:01 +0000 (10:29 -0300)] 
math: Handle fabsf128 !__USE_EXTERN_INLINES

Work around the clang limitation wrt inline function and attribute
definition, where it does not allow to 'add' new attribute if a
function is already defined:

clang on x86_64 fails to build s_fabsf128.c with:

../sysdeps/ieee754/float128/../ldbl-128/s_fabsl.c:32:1: error: attribute declaration must precede definition [-Werror,-Wignored-attributes]
   32 | libm_alias_ldouble (__fabs, fabs)
      | ^
../sysdeps/generic/libm-alias-ldouble.h:63:38: note: expanded from macro 'libm_alias_ldouble'
   63 | #define libm_alias_ldouble(from, to) libm_alias_ldouble_r (from, to, )
      |                                      ^
../sysdeps/ieee754/float128/float128_private.h:133:43: note: expanded from macro 'libm_alias_ldouble_r'
  133 | #define libm_alias_ldouble_r(from, to, r) libm_alias_float128_r (from, to, r)
      |                                           ^
../sysdeps/ieee754/float128/s_fabsf128.c:5:3: note: expanded from macro 'libm_alias_float128_r'
    5 |   static_weak_alias (from ## f128 ## r, to ## f128 ## r);       \
      |   ^
./../include/libc-symbols.h:166:46: note: expanded from macro 'static_weak_alias'
  166 | #  define static_weak_alias(name, aliasname) weak_alias (name, aliasname)
      |                                              ^
./../include/libc-symbols.h:154:38: note: expanded from macro 'weak_alias'
  154 | # define weak_alias(name, aliasname) _weak_alias (name, aliasname)
      |                                      ^
./../include/libc-symbols.h:156:52: note: expanded from macro '_weak_alias'
  156 |   extern __typeof (name) aliasname __attribute__ ((weak, alias (#name))) \
      |                                                    ^
../include/math.h:134:1: note: previous definition is here
  134 | fabsf128 (_Float128 x)

If compiler does not support __USE_EXTERN_INLINES we need to route
fabsf128 call to an internal symbol.

7 days agox86: Fix strstr ifunc on clang
Adhemerval Zanella [Mon, 10 Nov 2025 13:28:59 +0000 (10:28 -0300)] 
x86: Fix strstr ifunc on clang

Work around the clang limitation wrt inline function and attribute
definition, where it does not allow to 'add' new attribute if a
function is already defined:

Buildint with clang triggers multiple issue on how ifunc macro are
used:

  ../sysdeps/x86_64/multiarch/strstr.c:38:54: error: attribute declaration must precede definition [-Werror,-Wignored-attributes]
     38 | extern __typeof (__redirect_strstr) __strstr_generic attribute_hidden;
        |                                                      ^
  ./../include/libc-symbols.h:356:43: note: expanded from macro 'attribute_hidden'
    356 | # define attribute_hidden __attribute__ ((visibility ("hidden")))
        |                                           ^
  ../string/strstr.c:76:1: note: previous definition is here
     76 | STRSTR (const char *haystack, const char *needle)
        | ^
  ../sysdeps/x86_64/multiarch/strstr.c:27:16: note: expanded from macro 'STRSTR'
     27 | #define STRSTR __strstr_generic
        |                ^
  ../sysdeps/x86_64/multiarch/strstr.c:65:43: error: redefinition of '__libc_strstr'
     65 | libc_ifunc_redirected (__redirect_strstr, __libc_strstr, IFUNC_SELECTOR ());
        |                                           ^

And

  ../sysdeps/x86_64/multiarch/strstr.c:65:43: error: redefinition of '__libc_strstr'
     65 | libc_ifunc_redirected (__redirect_strstr, __libc_strstr, IFUNC_SELECTOR ());
        |                                           ^
  ../sysdeps/x86_64/multiarch/strstr.c:59:13: note: previous definition is here
     59 | libc_ifunc (__libc_strstr,
        |             ^

Refactor to use a auxiliary function like other selection (for instance,
x86_64/multiarch/strcmp.c).

7 days agox86: Use -mavx instead of -msse2avx
Adhemerval Zanella [Mon, 10 Nov 2025 13:28:58 +0000 (10:28 -0300)] 
x86: Use -mavx instead of -msse2avx

clang supports -msse2avx from version 19 and onwards, but it should
be gated as an option to assembler (either with -Wa or -Xassembler).

The -DSSE2AVX option was used because there were asm statements with
SSE-only instructions which was fixed by commit ff8be6152bc.

Now we can simply use -mavx.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
7 days agomath: Don't redirect inlined builtin math functions
Adhemerval Zanella [Mon, 10 Nov 2025 13:28:56 +0000 (10:28 -0300)] 
math: Don't redirect inlined builtin math functions

When we want to inline builtin math functions, like truncf, for

  extern float truncf (float __x) __attribute__ ((__nothrow__ )) __attribute__ ((__const__));
  extern float __truncf (float __x) __attribute__ ((__nothrow__ )) __attribute__ ((__const__));

  float (truncf) (float) asm ("__truncf");

compiler may redirect truncf calls to __truncf, instead of inlining it
(for instance, clang).  The USE_TRUNCF_BUILTIN is 1 to indicate that
truncf should be inlined.  In this case, we don't want the truncf
redirection:

  1. For each math function which may be inlined, we define

  #if USE_TRUNCF_BUILTIN
   # define NO_truncf_BUILTIN inline_truncf
   #else
   # define NO_truncf_BUILTIN truncf
   #endif

in <math-use-builtins.h>.

  2. Include <math-use-builtins.h> in include/math.h.

  3. Change MATH_REDIRECT to

   #define MATH_REDIRECT(FUNC, PREFIX, ARGS) \
    float (NO_ ## FUNC ## f ## _BUILTIN) (ARGS (float)) \
      asm (PREFIX #FUNC "f");

With this change If USE_TRUNCF_BUILTIN is 0, we get

  float (truncf) (float) asm ("__truncf");
  truncf will be redirected to __truncf.

And for USE_TRUNCF_BUILTIN 1, we get:

  float (inline_truncf) (float) asm ("__truncf");

In both cases either truncf will be inlined or the internal alias
(__truncf) will be called.

It is not required for all math-use-builtin symbol, only the one
defined in math.h.  It also allows to remove all the math-use-builtin
inclusion, since it is now implicitly included by math.h.

For MIPS, some math-use-builtin headers include sysdep.h and this
in turn includes a lot of extra headers that do not allow ldbl-128
code to override alias definition (math.h will include
some stdlib.h definition).  The math-use-builtin only requires
the __mips_isa_rev, so move the defintion to sgidefs.h.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Co-authored-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
7 days agoUpdate COPYING, COPYING.LIB from gnulib, using gnulib file names
Florian Weimer [Mon, 17 Nov 2025 10:15:13 +0000 (11:15 +0100)] 
Update COPYING, COPYING.LIB from gnulib, using gnulib file names

The new file names are COPYINGv2 and COPYING.LESSERv2.  Lots of
copyright headers mention COPYING.LIB, so add a symbolic link.
(This is not the first symbolic link in the repository, so this
should be fine.)

The files come from gnulib commit 3cc5b69dda06890929a2d0433f30708.

Signed-off-by: Florian Weimer <fweimer@redhat.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
7 days agoAdd COPYINGv3 with the GPL version 3 text
Florian Weimer [Mon, 17 Nov 2025 10:15:13 +0000 (11:15 +0100)] 
Add COPYINGv3 with the GPL version 3 text

The license is referenced in various headers, so we should ship it.
The text was copied from gnulib commit d64d66cc4897d605f543257dcd0,
file doc/COPYINGv3.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
Signed-off-by: Florian Weimer <fweimer@redhat.com>
7 days agoReference COPYING.LIB in <sframe.h> copyright header
Florian Weimer [Mon, 17 Nov 2025 10:15:13 +0000 (11:15 +0100)] 
Reference COPYING.LIB in <sframe.h> copyright header

Commit 3360913c37f5c3a0c8737b76321fd5ce2608fcd5 ("elf: Add SFrame
stack tracing") added this file with an inconsistent copyright header.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
8 days agohtl: move pthread_create to into libc
Samuel Thibault [Sun, 16 Nov 2025 14:09:11 +0000 (14:09 +0000)] 
htl: move pthread_create to into libc

This is notably needed for the main thread structure to be always
initialized so that some pthread functions can work from the main thread
without other threads, e.g. pthread_cancel.

8 days agohtl: Move __pthread_enable/disable_asynccancel into libc
Samuel Thibault [Sun, 16 Nov 2025 15:40:19 +0000 (15:40 +0000)] 
htl: Move __pthread_enable/disable_asynccancel into libc

This is actually needed before we make pthread_cancel available in libc.

8 days agohurd: Fix getting rlimit in _hurd_alloc_fd
Samuel Thibault [Sun, 16 Nov 2025 16:34:40 +0000 (16:34 +0000)] 
hurd: Fix getting rlimit in _hurd_alloc_fd

rlim_t is unsigned, and RLIM_INFINITY can be (rlim_t) -1

8 days agohtl: Add missing include
Samuel Thibault [Sun, 16 Nov 2025 10:53:46 +0000 (11:53 +0100)] 
htl: Add missing include

For IS_IN.

8 days agoloongarch: Remove TLS_TCB_ALIGN
Samuel Thibault [Sun, 16 Nov 2025 10:26:34 +0000 (11:26 +0100)] 
loongarch: Remove TLS_TCB_ALIGN

This reverts a part of 9f18265a8ec8 ("Remove TLS_TCB_ALIGN and
TLS_INIT_TCB_ALIGN"), as loongarch uses this macro internally.

9 days agohurd: Fix restoring SSE state on signal
Samuel Thibault [Sun, 16 Nov 2025 00:32:22 +0000 (01:32 +0100)] 
hurd: Fix restoring SSE state on signal

mach_port_mod_refs() needs to avoid using SSE&MMX for __sigreturn2 to be
able to use it without thrashing SSE&MMX.

9 days agoRemove TLS_TCB_ALIGN and TLS_INIT_TCB_ALIGN
Samuel Thibault [Sat, 15 Nov 2025 21:01:07 +0000 (22:01 +0100)] 
Remove TLS_TCB_ALIGN and TLS_INIT_TCB_ALIGN

This is the rest of 627f5ede70d7 ("Remove TLS_TCB_ALIGN and
TLS_INIT_TCB_ALIGN"), for loongarch and or1k which missed it.

10 days agomath: Optimize frexpl (intel96) with fast path for normal numbers
Osama Abdelkader [Mon, 10 Nov 2025 20:17:07 +0000 (20:17 +0000)] 
math: Optimize frexpl (intel96) with fast path for normal numbers

Add fast path optimization for frexpl (80-bit x87 extended precision) using
a single unsigned comparison to identify normal floating-point numbers and
return immediately via arithmetic on the exponent field.

The implementation uses arithmetic operations (se - ex ) to
adjust the exponent directly, which is simpler than bit masking. For subnormals,
the traditional multiply-based normalization is retained as it handles the
split word format more reliably.

The zero/infinity/NaN check groups these special cases together for better
branch prediction.

Benchmark results on Intel Core i9-13900H (13th Gen):
  Baseline:     25.543 ns/op
  Optimized:    25.531 ns/op
  Speedup:      1.00x (neutral)
  Zero:         17.774 ns/op
  Denormal:     23.900 ns/op

Signed-off-by: Osama Abdelkader <osama.abdelkader@gmail.com>
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
10 days agoRevert __HAVE_64B_ATOMICS configure check
Adhemerval Zanella [Thu, 13 Nov 2025 17:26:08 +0000 (14:26 -0300)] 
Revert __HAVE_64B_ATOMICS configure check

The 53807741fb44edb8e7c094cb5e7d4ff4e92a6ec1 added a configure check
for 64-bit atomic operations that were not previously enabled on some
32-bit ABIs.

However, the NPTL semaphore code casts a sem_t to a new_sem and issues
a 64-bit atomic operation for __HAVE_64B_ATOMICS.  Since sem_t has
32-bit alignment on 32-bit architectures, this prevents the use of
64-bit atomics even if the ABI supports them.

Assume 64-bit atomic support from __WORDSIZE, which maps to how glibc
defines it before the broken change.  Also rename __HAVE_64B_ATOMICS
to USE_64B_ATOMICS to define better the flag meaning.

Checked on x86_64-linux-gnu and i686-linux-gnu.

Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
10 days agox86: Increase allowable TSX abort rate to 6%.
Carlos O'Donell [Mon, 10 Nov 2025 20:17:45 +0000 (15:17 -0500)] 
x86: Increase allowable TSX abort rate to 6%.

In pre-commit CI on an E5-2698 v4 we sometimes see ~5% aborts.

Set the trip point to 6%.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
11 days agohtl: Remove errno and herrno from libpthread
Samuel Thibault [Thu, 13 Nov 2025 22:45:12 +0000 (23:45 +0100)] 
htl: Remove errno and herrno from libpthread

libc already has them.

11 days agohtl: Drop pthread-functions infrastructure
Samuel Thibault [Thu, 13 Nov 2025 22:08:34 +0000 (23:08 +0100)] 
htl: Drop pthread-functions infrastructure

All previously forwarded functions are now called directly (either via local
call in libc, or through a __export).t

11 days agohtl: Move __pthread_cleanup_stack out of libc_pthread_init.c
Samuel Thibault [Thu, 13 Nov 2025 22:20:23 +0000 (23:20 +0100)] 
htl: Move __pthread_cleanup_stack out of libc_pthread_init.c

It does not actually need to be extern any more.

11 days agohtl: move {,_IO_}f{,un,try}lockfile implementation into libc
Samuel Thibault [Thu, 13 Nov 2025 20:13:53 +0000 (21:13 +0100)] 
htl: move {,_IO_}f{,un,try}lockfile implementation into libc

11 days agolinux: Add mseal to mips32 nofpu abilist
Adhemerval Zanella [Thu, 13 Nov 2025 18:32:26 +0000 (15:32 -0300)] 
linux: Add mseal to mips32 nofpu abilist

It was missing from 3d52fd274e9.

12 days agohppa: Consistently reference LGPL in copyright header
Florian Weimer [Thu, 13 Nov 2025 08:46:15 +0000 (09:46 +0100)] 
hppa: Consistently reference LGPL in copyright header

The file was added with a GPL reference (but LGPL statement) in
commit 0d6bed71502f053fa702ccbb7dd4fa6741b2a0ed ("hppa: Add
____longjmp_check C implementation.").

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
12 days agoChange fromfp functions to return floating types following C23 (bug 28327)
Joseph Myers [Thu, 13 Nov 2025 00:04:21 +0000 (00:04 +0000)] 
Change fromfp functions to return floating types following C23 (bug 28327)

As discussed in bug 28327, C23 changed the fromfp functions to return
floating types instead of intmax_t / uintmax_t.  (Although the
motivation in N2548 was reducing the use of intmax_t in library
interfaces, the new version does have the advantage of being able to
specify arbitrary integer widths for e.g. assigning the result to a
_BitInt, as well as being able to indicate an error case in-band with
a NaN return.)

As with other such changes from interfaces introduced in TS 18661,
implement the new types as a replacement for the old ones, with the
old functions remaining as compat symbols but not supported as an API.
The test generator used for many of the tests is updated to handle
both versions of the functions.

Tested for x86_64 and x86, and with build-many-glibcs.py.

Also tested tgmath tests for x86_64 with GCC 7 to make sure that the
modified case for older compilers in <tgmath.h> does work.

Also tested for powerpc64le to cover the ldbl-128ibm implementation
and the other things that are handled differently for that
configuration.  The new tests fail for ibm128, but all the failures
relate to incorrect signs of zero results and turn out to arise from
bugs in the underlying roundl, ceill, truncl and floorl
implementations that I've reported in bug 33623, rather than
indicating any bug in the actual new implementation of the functions
for that format.  So given fixes for those functions (which shouldn't
be hard, and of course should add to the tests for those functions
rather than relying only on indirect testing via fromfp), the fromfp
tests should start passing for ibm128 as well.

12 days agomath: Remove float_t and double_t [BZ #33563]
Wilco Dijkstra [Tue, 11 Nov 2025 17:46:19 +0000 (17:46 +0000)] 
math: Remove float_t and double_t [BZ #33563]

Remove uses of float_t and double_t. This is not useful on modern machines,
and does not help given GCC defaults to -fexcess-precision=fast.
One use of double_t remains to allow forcing the precision to double
on targets where FLT_EVAL_METHOD=2. This fixes BZ #33563 on
i486-pc-linux-gnu.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
12 days agomath: Remove ldbl-128/s_fma.c
Wilco Dijkstra [Mon, 10 Nov 2025 13:52:14 +0000 (13:52 +0000)] 
math: Remove ldbl-128/s_fma.c

Remove ldbl-128/s_fma.c - it makes no sense to use emulated float128
operations to emulate FMA.  Benchmarking shows dbl-64/s_fma.c is about
twice as fast.  Remove redundant dbl-64/s_fma.c includes in targets
that were trying to work around this issue.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
12 days agolinux: Add mseal syscall support
Adhemerval Zanella [Mon, 10 Nov 2025 18:03:05 +0000 (15:03 -0300)] 
linux: Add mseal syscall support

It has been added on Linux 6.10 (8be7258aad44b5e25977a98db136f677fa6f4370)
as a way to block operations such as mapping, moving to another location,
shrinking the size, expanding the size, or modifying it to a pre-existing
memory mapping.

Although the system only works on 64-bit CPUs, the entrypoint was added
for all ABIs (since the kernel might eventually implement it for additional
ones and/or the ABI can execute on a 64-bit kernel).

Checked on x86_64-linux-gnu and aarch64-linux-gnu.

Reviewed-by: Collin Funk <collin.funk1@gmail.com>
12 days agoaarch64: fix includes in SME tests
Yury Khrustalev [Tue, 11 Nov 2025 11:40:25 +0000 (11:40 +0000)] 
aarch64: fix includes in SME tests

Use the correct include for the SIGCHLD macro: signal.h

Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
13 days agoLoongArch: Call elf_ifunc_invoke for R_LARCH_IRELATIVE in elf_machine_rela
Xi Ruoyao [Fri, 7 Nov 2025 15:49:22 +0000 (23:49 +0800)] 
LoongArch: Call elf_ifunc_invoke for R_LARCH_IRELATIVE in elf_machine_rela

When R_LARCH_IRELATIVE is resolved by apply_irel, the ifunc resolver is
called via elf_ifunc_invoke so it can read HWCAP from the __ifunc_arg_t
argument.  But when R_LARCH_IRELATIVE is resolved by elf_machine_rela (it
will happen if we dlopen() a shared object containing R_LARCH_IRELATIVE),
the ifunc resolver is invoked directly with no or different argument.
This causes a segfault if the resolver uses the __ifunc_arg_t.

Despite the LoongArch psABI does not specify this argument, IMO it's
more convenient to have this argument IMO and per hyrum's rule there may
be objects in wild which already relies on this argument (they just
didn't blow up because they are not dlopen()ed yet).  So make the
behavior handling R_LARCH_IRELATIVE of elf_machine_rela same as
apply_irel.

This fixes BZ #33610.

Signed-off-by: Xi Ruoyao <xry111@xry111.site>
13 days agohurd: Drop remnants of cthreads
Samuel Thibault [Tue, 11 Nov 2025 21:32:39 +0000 (22:32 +0100)] 
hurd: Drop remnants of cthreads

These are not used in GNU/Hurd since very long now.

13 days agocdefs: Fix some typos in comments.
Bruno Haible [Tue, 11 Nov 2025 19:04:29 +0000 (11:04 -0800)] 
cdefs: Fix some typos in comments.

Reviewed-by: Collin Funk <collin.funk1@gmail.com>
13 days agostdlib: Do not define once_flag, ONCE_FLAG_INIT for C++
Florian Weimer [Tue, 11 Nov 2025 17:20:10 +0000 (18:20 +0100)] 
stdlib: Do not define once_flag, ONCE_FLAG_INIT for C++

The definition of once_flag conflicts with std::once_flag in
if “using namespace std;” is active.

Updates commit a7ddbf456d97ac8d1aa7afd735e196a1488bd874
("Add once_flag, ONCE_FLAG_INIT and call_once to stdlib.h for C23").

Suggested-by: Jonathan Wakely <jwakely@redhat.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
13 days agox86-64: Fix a typo in fesetenv.c [BZ #33619]
H.J. Lu [Tue, 11 Nov 2025 07:43:31 +0000 (15:43 +0800)] 
x86-64: Fix a typo in fesetenv.c [BZ #33619]

Fix a typo in

commit 427c25278d1dae62dffa07ea5cd0fc33f07190af
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Fri Oct 31 17:00:46 2025 -0300

    x86: Adapt "%v" usage on clang to emit VEX enconding

@@ -103,8 +104,8 @@ __fesetenv (const fenv_t *envp)
       temp.__mxcsr = envp->__mxcsr;
     }

-  __asm__ ("fldenv %0\n"
-          "%vldmxcsr %1" : : "m" (temp), "m" (temp.__mxcsr));
+  asm volatile ("fldenv %0" : "=m" (temp));
+  ldmxcsr_inline_asm (&temp.__mxcsr);

   /* Success.  */
   return 0;

"temp" is input not output.  This fixes BZ #33619.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Collin Funk <collin.funk1@gmail.com>
2 weeks agoSet Prefer_No_AVX512 flag for hygon platform
Xie jiamei [Tue, 11 Nov 2025 02:28:54 +0000 (10:28 +0800)] 
Set Prefer_No_AVX512 flag for hygon platform

Benchmarks indicate evex can be more profitable on Hygon hardware
than AVX512. So add Prefer_No_AVX512 to make it run with evex.

Change-Id: Icc59492f71fde7a783a8bd315714ffd6f7ecaf29
Signed-off-by: Li jing <lijing@hygon.cn>
Signed-off-by: Xie jiamei <xiejiamei@hygon.cn>
2 weeks agomath: Optimize frexpl (binary128) with fast path for normal numbers
Osama Abdelkader [Wed, 5 Nov 2025 20:24:08 +0000 (22:24 +0200)] 
math: Optimize frexpl (binary128) with fast path for normal numbers

Add fast path optimization for frexpl (128-bit IEEE quad precision) using
a single unsigned comparison to identify normal floating-point numbers and
return immediately via arithmetic on the exponent field.

The implementation uses arithmetic operations hx = hx - (ex << 48)
to adjust the exponent in place, which is simpler and more efficient than
bit masking. For subnormals, the traditional multiply-based normalization
is retained for reliability with the split 64-bit word format.

The zero/infinity/NaN check groups these special cases together for better
branch prediction.

This optimization provides the same algorithmic improvements as the other
frexp variants while maintaining correctness for all edge cases.

Signed-off-by: Osama Abdelkader <osama.abdelkader@gmail.com>
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com>
2 weeks agomath: Optimize frexp (binary64) with fast path for normal numbers
Osama Abdelkader [Thu, 23 Oct 2025 15:06:29 +0000 (18:06 +0300)] 
math: Optimize frexp (binary64) with fast path for normal numbers

Add fast path optimization for frexp using a single unsigned comparison
to identify normal floating-point numbers and return immediately via
arithmetic on the bit representation.

The implementation uses asuint64()/asdouble() from math_config.h and arithmetic
operations to adjust the exponent, which generates better code than bit masking
on ARM and RISC-V architectures. For subnormals, stdc_leading_zeros provides
faster normalization than the traditional multiply approach.

The zero/infinity/NaN check is simplified to (int64_t)(ix << 1) <= 0, which
is more efficient than separate comparisons.

Benchmark results on Intel Core i9-13900H (13th Gen):
  Baseline:     6.778 ns/op
  Optimized:    4.007 ns/op
  Speedup:      1.69x (40.9% faster)
  Zero:         3.580 ns/op (fast path)
  Denormal:     6.096 ns/op (slower, rare case)

Signed-off-by: Osama Abdelkader <osama.abdelkader@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
2 weeks agomath: Optimize frexpf (binary32) with fast path for normal numbers
Osama Abdelkader [Thu, 23 Oct 2025 15:06:28 +0000 (18:06 +0300)] 
math: Optimize frexpf (binary32) with fast path for normal numbers

Add fast path optimization for frexpf using a single unsigned comparison
to identify normal floating-point numbers and return immediately via
arithmetic on the bit representation.

The implementation uses asuint()/asfloat() from math_config.h and arithmetic
operations to adjust the exponent, which generates better code than bit masking
on ARM and RISC-V architectures. For subnormals, stdc_leading_zeros provides
faster normalization than the traditional multiply approach.

The zero/infinity/NaN check is simplified to (int32_t)(hx << 1) <= 0, which
is more efficient than separate comparisons.

Benchmark results on Intel Core i9-13900H (13th Gen):
  Baseline:     5.858 ns/op
  Optimized:    4.003 ns/op
  Speedup:      1.46x (31.7% faster)
  Zero:         3.580 ns/op (fast path)
  Denormal:     5.597 ns/op (slower, rare case)

Signed-off-by: Osama Abdelkader <osama.abdelkader@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
2 weeks agobenchtests: Add benchmarks for frexp functions
Osama Abdelkader [Tue, 4 Nov 2025 17:55:05 +0000 (19:55 +0200)] 
benchtests: Add benchmarks for frexp functions

Add benchmark support for frexp, frexpf, and frexpl to measure the
performance improvement of the fast path optimization.

- Created frexp-inputs, frexpf-inputs, frexpl-inputs with random test values
- Added frexp, frexpf, frexpl to bench-math list
- Added CFLAGS to disable builtins for accurate benchmarking

These benchmarks will be used to quantify the performance gains from the
fast path optimization for normal floating-point numbers.

Signed-off-by: Osama Abdelkader <osama.abdelkader@gmail.com>
2 weeks agomath: Sync acosh from CORE-MATH
Adhemerval Zanella [Mon, 10 Nov 2025 11:44:14 +0000 (08:44 -0300)] 
math: Sync acosh from CORE-MATH

The c9abdf80 fix handle some cases for RNDZ.

Checked on x86_64-linux-gnu.

2 weeks agoFilter out internal abort during ld.so build
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:49 +0000 (17:00 -0300)] 
Filter out internal abort during ld.so build

clang might generate an abort call when cleanup functions (set by
__attribute__ ((cleanup)) calls functions not marked as nothrow.

The hurd already provides abort for the loader at
sysdeps/mach/hurd/dl-sysdep.c, and adding it rtld-stubbed-symbols
triggers duplicate symbols.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2 weeks agox86: Fix THREAD_GSCOPE_RESET_FLAG build on clang
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:47 +0000 (17:00 -0300)] 
x86: Fix THREAD_GSCOPE_RESET_FLAG build on clang

clang does not support __seg_fs in asm constraint.

Reviewed-by: Uros Bizjak <ubizjak@gmail.com>
2 weeks agox86: Adapt "%v" usage on clang to emit VEX enconding
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:46 +0000 (17:00 -0300)] 
x86: Adapt "%v" usage on clang to emit VEX enconding

clang does not support the %v to select the AVX encoding, nor the '%d' asm
contrain, and for AVX build it requires all 3 arguments.

This patch add a new internal header, math-inline-asm.h, that adds
functions to abstract the inline asm required differences between
gcc and clang.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2 weeks agox86: math: Use of __libgcc_cmp_return__ iff compiler supports it
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:44 +0000 (17:00 -0300)] 
x86: math: Use of __libgcc_cmp_return__ iff compiler supports it

clang does not support '__attribute__ ((mode (__libgcc_cmp_return__)))',
so use a more close related type instead fo the default 'int'.

2 weeks agostring: Check if attribute can declared after function declaration
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:42 +0000 (17:00 -0300)] 
string: Check if attribute can declared after function declaration

Some symbols that might be auto-generated by the compiler are redefined
to internal alias (for instance mempcpy to __mempcpy).  However, if fortify
is enabled, the fortify wrapper is define before the alias re-defined and
clang warns attribute declaration must precede definition.

Use an asm alias if compiler does not support it, instead of an
attribute.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2 weeks agonss: Suppress clang -Wstring-plus-int on __nss_shlib_revision definition
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:41 +0000 (17:00 -0300)] 
nss: Suppress clang -Wstring-plus-int on __nss_shlib_revision definition

clang issues an warning that adding 'unsigned long' to a string does not
append to the string.

Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2 weeks agostdlib: Remove mp_clz_tab.c
Adhemerval Zanella [Fri, 31 Oct 2025 20:00:34 +0000 (17:00 -0300)] 
stdlib: Remove mp_clz_tab.c

The count_leading_zeros is not used anymore, so there is no need to
provide the table for possible usage.  The hppa already provides
the compat symbol on libgcc-compat.c.

Reviewed-by: Collin Funk <collin.funk1@gmail.com>
2 weeks agohurd: make setpriority clamp nice values to 0..2*NZERO-1 [BZ #33614]
Samuel Thibault [Sun, 9 Nov 2025 10:32:42 +0000 (11:32 +0100)] 
hurd: make setpriority clamp nice values to 0..2*NZERO-1 [BZ #33614]

2 weeks agoRevert "hurd: Make rename refuse trailing slashes [BZ #32570]"
Samuel Thibault [Sat, 8 Nov 2025 23:06:38 +0000 (00:06 +0100)] 
Revert "hurd: Make rename refuse trailing slashes [BZ #32570]"

This reverts commit 2ae4ec56c2b18c46ef8220bcddac4303a4b6ef1c.

This introduced regressions, as rename should accept trailing slashes
for directories: BZ #33607, BZ #33608

This was rather fixed on the server side:
https://cgit.git.savannah.gnu.org/cgit/hurd/hurd.git/commit/?id=e34000cb395a135dd2ad5c13e6f6d4c5c1006389

2 weeks agoAdd missing $(rpath-link) to elf/ld.so --library-path
Samuel Thibault [Sat, 8 Nov 2025 20:47:25 +0000 (21:47 +0100)] 
Add missing $(rpath-link) to elf/ld.so --library-path

This is notably needed for GNU/Hurd's libmachuser.so and libhurduser.so.

2 weeks agoAdd missing $(rpath-link) to /elf/ld.so --library-path
Samuel Thibault [Sat, 8 Nov 2025 16:44:05 +0000 (17:44 +0100)] 
Add missing $(rpath-link) to /elf/ld.so --library-path

This is notably needed for GNU/Hurd's libmachuser.so and libhurduser.so.

2 weeks agonss: Add ERANGE testing to tst-nss-test4 (bug 33361)
Carlos O'Donell [Fri, 7 Nov 2025 14:46:10 +0000 (09:46 -0500)] 
nss: Add ERANGE testing to tst-nss-test4 (bug 33361)

This adds testing for the fix added in commit:
0fceed254559836b57ee05188deac649bc505d05
"nss: Group merge does not react to ERANGE during merge (bug 33361)"

The in-use group size is increased large enough to trigger ERANGE
for initial buffers and cause a retry.  The actualy size is
approximately twice that required to trigger the defect, though
any size larger than NSS_BUFLEN_GROUP triggers the defect.

Without the fix the group is not merged and the failure is detected,
but with the fix the ERANGE error is handled, buffers are enlarged
and subsequently correctly merged.

Tested with a/b testing before and after patching.
Tested on x86_64 with no regression.

Co-authored-by: Patsy Griffin <patsy@redhat.com>
Reviewed-by: DJ Delorie <dj@redhat.com>
2 weeks agoaarch64: Remove $(aarch64-bti) check
Florian Weimer [Fri, 7 Nov 2025 11:29:09 +0000 (12:29 +0100)] 
aarch64: Remove $(aarch64-bti) check

The variable was removed in commit 2c421fc4302ecb729823ca442f9dfab9
("AArch64: Cleanup PAC and BTI"), so this Makefile fragment is
always excluded.

Reviewed-by: Yury Khrustalev <yury.khrustalev@arm.com>
2 weeks agoposix: Fix invalid flags test for p{write,read}v2
Yury Khrustalev [Thu, 6 Nov 2025 12:57:58 +0000 (12:57 +0000)] 
posix: Fix invalid flags test for p{write,read}v2

Two tests fail from time to time when a new flag is added for the
p{write,read}v2 functions in a new Linux kernel:

 - misc/tst-preadvwritev2
 - misc/tst-preadvwritev64v2

This disrupts when testing Glibc on a system with a newer kernel
and it seems we can try improve testing for invalid flags setting
all the bits that are not supposed to be supported (rather than
setting only the next unsupported bit).

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
2 weeks agosupport: Exit on consistency check failure in resolv_response_add_name
Florian Weimer [Thu, 6 Nov 2025 13:49:21 +0000 (14:49 +0100)] 
support: Exit on consistency check failure in resolv_response_add_name

Using TEST_VERIFY (crname_target != crname) instructs some analysis
tools that crname_target == crname might hold.  Under this assumption,
they report a use-after-free for crname_target->offset below, caused
by the previous free (crname).

Reviewed-by: Collin Funk <collin.funk1@gmail.com>