Go to file
Stefan Liebler 728894dba4 S390: Enable static PIE
This commit enables static PIE on 64bit.  On 31bit, static PIE is
not supported.

A new configure check in sysdeps/s390/s390-64/configure.ac also performs
a minimal test for requirements in ld:
Ensure you also have those patches for:
- binutils (ld)
  - "[PR ld/22263] s390: Avoid dynamic TLS relocs in PIE"
    https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=26b1426577b5dcb32d149c64cca3e603b81948a9
    (Tested by configure check above)
    Otherwise there will be a R_390_TLS_TPOFF relocation, which fails to
    be processed in _dl_relocate_static_pie() as static TLS map is not setup.
  - "s390: Add DT_JMPREL pointing to .rela.[i]plt with static-pie"
    https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=d942d8db12adf4c9e5c7d9ed6496a779ece7149e
    (We can't test it in configure as we are not able to link a static PIE
    executable if the system glibc lacks static PIE support)
    Otherwise there won't be DT_JMPREL, DT_PLTRELA, DT_PLTRELASZ entries
    and the IFUNC symbols are not processed, which leads to crashes.

- kernel (the mentioned links to the commits belong to 5.19 merge window):
  - "s390/mmap: increase stack/mmap gap to 128MB"
    https://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git/commit/?h=features&id=f2f47d0ef72c30622e62471903ea19446ea79ee2
  - "s390/vdso: move vdso mapping to its own function"
    https://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git/commit/?h=features&id=57761da4dc5cd60bed2c81ba0edb7495c3c740b8
  - "s390/vdso: map vdso above stack"
    https://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git/commit/?h=features&id=9e37a2e8546f9e48ea76c839116fa5174d14e033
  - "s390/vdso: add vdso randomization"
    https://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git/commit/?h=features&id=41cd81abafdc4e58a93fcb677712a76885e3ca25
  (We can't test the kernel of the target system)
  Otherwise if /proc/sys/kernel/randomize_va_space is turned off (0),
  static PIE executables like ldconfig will crash.  While startup sbrk is
  used to enlarge the HEAP.  Unfortunately the underlying brk syscall fails
  as there is not enough space after the HEAP.  Then the address of the TLS
  image is invalid and the following memcpy in __libc_setup_tls() leads
  to a segfault.
  If /proc/sys/kernel/randomize_va_space is activated (default: 2), there
  is enough space after HEAP.

- glibc
  - "Linux: Define MMAP_CALL_INTERNAL"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=c1b68685d438373efe64e5f076f4215723004dfb
  - "i386: Remove OPTIMIZE_FOR_GCC_5 from Linux libc-do-syscall.S"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=6e5c7a1e262961adb52443ab91bd2c9b72316402
  - "i386: Honor I386_USE_SYSENTER for 6-argument Linux system calls"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=60f0f2130d30cfd008ca39743027f1e200592dff
  - "ia64: Always define IA64_USE_NEW_STUB as a flag macro"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=18bd9c3d3b1b6a9182698c85354578d1d58e9d64
  - "Linux: Implement a useful version of _startup_fatal"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=a2a6bce7d7e52c1c34369a7da62c501cc350bc31
  - "Linux: Introduce __brk_call for invoking the brk system call"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=b57ab258c1140bc45464b4b9908713e3e0ee35aa
  - "csu: Implement and use _dl_early_allocate during static startup"
    https://sourceware.org/git/?p=glibc.git;a=commit;h=f787e138aa0bf677bf74fa2a08595c446292f3d7
  The mentioned patch series by Florian Weimer avoids the mentioned failing
  sbrk syscall by falling back to mmap.

This commit also adjusts startup code in start.S to be ready for static PIE.
We have to add a wrapper function for main as we are not allowed to use
GOT relocations before __libc_start_main is called.
(Compare also to:
- commit 14d886edbd
  "aarch64: fix start code for static pie"
- commit 3d1d79283e
  "aarch64: fix static pie enabled libc when main is in a shared library"
)
2022-05-18 14:31:26 +02:00
argp Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
assert Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
benchtests benchtests: Add wcrtomb microbenchmark 2022-05-06 18:16:43 +05:30
bits elf: Issue la_symbind for bind-now (BZ #23734) 2022-02-01 14:49:46 -03:00
catgets Update copyright dates not handled by scripts/update-copyrights. 2022-01-01 11:42:26 -08:00
ChangeLog.old Create ChangeLog.old/ChangeLog.24. 2022-02-03 00:27:54 -05:00
conform hurd: drop SA_SIGINFO availability xfail 2022-01-15 17:43:07 +01:00
crypt crypt: Remove unused variable on cert test 2022-03-31 09:00:54 -03:00
csu Remove kernel version check 2022-05-16 15:03:49 -03:00
ctype Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
debug wcrtomb: Make behavior POSIX compliant 2022-05-13 19:15:46 +05:30
dirent associate a deallocation for opendir 2022-03-14 20:02:46 +05:30
dlfcn dlfcn: Implement the RTLD_DI_PHDR request type for dlinfo 2022-04-29 17:00:53 +02:00
elf rtld: Remove DL_ARGV_NOT_RELRO and make _dl_skip_args const 2022-05-17 10:14:03 +01:00
gmon Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
gnulib Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
grp Add access function attributes to grp and shadow headers 2022-03-14 20:02:30 +05:30
gshadow Add access function attributes to grp and shadow headers 2022-03-14 20:02:30 +05:30
hesiod Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
htl htl: Destroy thread-specific data before releasing joins 2022-02-14 19:29:02 +01:00
hurd Replace {u}int_fast{16|32} with {u}int32_t 2022-04-13 21:23:04 -05:00
iconv Replace {u}int_fast{16|32} with {u}int32_t 2022-04-13 21:23:04 -05:00
iconvdata Replace {u}int_fast{16|32} with {u}int32_t 2022-04-13 21:23:04 -05:00
include stdio: Remove the usage of $(fno-unit-at-a-time) for siglist.c 2022-05-13 10:54:41 -03:00
inet inet: Return EAI_MEMORY when nrl_domainname() fails to allocate memory 2022-03-08 12:51:29 -03:00
intl intl: Avoid -Wuse-after-free [BZ #26779] 2022-01-25 17:38:31 -07:00
io linux: Fix fchmodat with AT_SYMLINK_NOFOLLOW for 64 bit time_t (BZ#29097) 2022-04-28 09:58:44 -03:00
libio libio: Flush-only _IO_str_overflow must not return EOF (bug 28949) 2022-03-18 21:40:02 +01:00
locale Replace {u}int_fast{16|32} with {u}int32_t 2022-04-13 21:23:04 -05:00
localedata Add locale for syr_SY 2022-04-21 13:05:40 +02:00
login Update copyright dates not handled by scripts/update-copyrights. 2022-01-01 11:42:26 -08:00
mach mach: Fix LLL_SHARED value 2022-02-14 19:29:02 +01:00
malloc malloc: Fix duplicate inline for do_set_mxfast 2022-03-23 12:28:44 -03:00
manual wcrtomb: Make behavior POSIX compliant 2022-05-13 19:15:46 +05:30
math math: Add more input to atanh accuracy tests 2022-02-24 09:20:43 -08:00
mathvec Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
misc sys/cdefs.h: Do not require C++ compilers to define __STDC__ 2022-05-16 16:48:51 +01:00
nis Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
nptl nptl: Add backoff mechanism to spinlock loop 2022-05-09 14:38:40 -07:00
nptl_db Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
nscd nscd: Remove unused variable 2022-03-23 15:33:17 -03:00
nss hurd: Fix arbitrary error code 2022-04-12 22:15:48 +02:00
po Update translations. 2022-02-02 23:30:15 -05:00
posix linux: Add P_PIDFD 2022-05-17 10:34:36 -03:00
pwd Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
resolv Replace {u}int_fast{16|32} with {u}int32_t 2022-04-13 21:23:04 -05:00
resource Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
rt rt/tst-mqueue*: Return UNSUPPORTED when mq_open fails with ENOSYS 2022-01-17 19:17:41 +01:00
scripts scripts/glibcelf.py: Add *T_RISCV_* constants 2022-05-16 22:22:38 +02:00
setjmp Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
shadow Add access function attributes to grp and shadow headers 2022-03-14 20:02:30 +05:30
signal Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
socket socket: Add the __sockaddr_un_set function 2022-01-17 10:21:53 +01:00
soft-fp Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
stdio-common stdio: Remove the usage of $(fno-unit-at-a-time) for siglist.c 2022-05-13 10:54:41 -03:00
stdlib stdlib: Reflow and sort most variable assignments 2022-04-13 16:52:39 -03:00
string Replace {u}int_fast{16|32} with {u}int32_t 2022-04-13 21:23:04 -05:00
sunrpc CVE-2022-23218: Buffer overflow in sunrpc svcunix_create (bug 28768) 2022-01-17 10:47:58 +01:00
support support: Add xmkfifo 2022-04-15 09:59:33 -03:00
sysdeps S390: Enable static PIE 2022-05-18 14:31:26 +02:00
sysvipc Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
termios posix: Add terminal control setting support for posix_spawn 2022-01-25 14:07:53 -03:00
time clock_settime/clock_gettime: Use __nonnull to avoid null pointer 2022-05-05 17:48:04 +05:30
timezone timezone: Fix tst-bz28707 Makefile rule 2022-01-12 10:30:10 -03:00
wcsmbs wcrtomb: Make behavior POSIX compliant 2022-05-13 19:15:46 +05:30
wctype Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
.clang-format Add .clang-format style file 2022-04-11 10:51:03 -05:00
.gitattributes
.gitignore
abi-tags
aclocal.m4 Properly check linker option in LIBC_LINKER_FEATURE [BZ #28738] 2022-01-03 05:12:34 -08:00
config.h.in Remove kernel version check 2022-05-16 15:03:49 -03:00
config.make.in Remove configure fno_unit_at_a_time 2022-05-13 10:54:41 -03:00
configure Remove configure fno_unit_at_a_time 2022-05-13 10:54:41 -03:00
configure.ac Remove configure fno_unit_at_a_time 2022-05-13 10:54:41 -03:00
CONTRIBUTED-BY Remove "Contributed by" lines 2021-09-03 22:06:44 +05:30
COPYING
COPYING.LIB
extra-lib.mk
gen-locales.mk
INSTALL INSTALL: Rephrase -with-default-link documentation 2022-04-26 14:22:23 +02:00
libc-abis
libof-iterator.mk
LICENSES
MAINTAINERS
Makeconfig stdio: Remove the usage of $(fno-unit-at-a-time) for errlist.c 2022-05-13 10:54:41 -03:00
Makefile Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
Makefile.help Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
Makefile.in
Makerules Do not use --hash-style=both for building glibc shared objects 2022-04-29 16:37:51 +02:00
NEWS linux: Add pidfd_send_signal 2022-05-17 10:33:46 -03:00
o-iterator.mk
README Documentation for OpenRISC port 2022-01-05 06:40:06 +09:00
Rules Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
SHARED-FILES Mention today's regex merge in SHARED-FILES 2021-09-21 18:00:10 -07:00
shlib-versions nss: Do not mention NSS test modules in <gnu/lib-names.h> 2022-03-11 08:24:04 +01:00
test-skeleton.c Update copyright dates with scripts/update-copyrights 2022-01-01 11:40:24 -08:00
version.h Open master branch for glibc 2.36 development 2022-02-03 01:21:33 -05:00

This directory contains the sources of the GNU C Library.
See the file "version.h" for what release version you have.

The GNU C Library is the standard system C library for all GNU systems,
and is an important part of what makes up a GNU system.  It provides the
system API for all programs written in C and C-compatible languages such
as C++ and Objective C; the runtime facilities of other programming
languages use the C library to access the underlying operating system.

In GNU/Linux systems, the C library works with the Linux kernel to
implement the operating system behavior seen by user applications.
In GNU/Hurd systems, it works with a microkernel and Hurd servers.

The GNU C Library implements much of the POSIX.1 functionality in the
GNU/Hurd system, using configurations i[4567]86-*-gnu.

When working with Linux kernels, this version of the GNU C Library
requires Linux kernel version 3.2 or later.

Also note that the shared version of the libgcc_s library must be
installed for the pthread library to work correctly.

The GNU C Library supports these configurations for using Linux kernels:

	aarch64*-*-linux-gnu
	alpha*-*-linux-gnu
	arc*-*-linux-gnu
	arm-*-linux-gnueabi
	csky-*-linux-gnuabiv2
	hppa-*-linux-gnu
	i[4567]86-*-linux-gnu
	x86_64-*-linux-gnu	Can build either x86_64 or x32
	ia64-*-linux-gnu
	m68k-*-linux-gnu
	microblaze*-*-linux-gnu
	mips-*-linux-gnu
	mips64-*-linux-gnu
	or1k-*-linux-gnu
	powerpc-*-linux-gnu	Hardware or software floating point, BE only.
	powerpc64*-*-linux-gnu	Big-endian and little-endian.
	s390-*-linux-gnu
	s390x-*-linux-gnu
	riscv32-*-linux-gnu
	riscv64-*-linux-gnu
	sh[34]-*-linux-gnu
	sparc*-*-linux-gnu
	sparc64*-*-linux-gnu

If you are interested in doing a port, please contact the glibc
maintainers; see https://www.gnu.org/software/libc/ for more
information.

See the file INSTALL to find out how to configure, build, and install
the GNU C Library.  You might also consider reading the WWW pages for
the C library at https://www.gnu.org/software/libc/.

The GNU C Library is (almost) completely documented by the Texinfo manual
found in the `manual/' subdirectory.  The manual is still being updated
and contains some known errors and omissions; we regret that we do not
have the resources to work on the manual as much as we would like.  For
corrections to the manual, please file a bug in the `manual' component,
following the bug-reporting instructions below.  Please be sure to check
the manual in the current development sources to see if your problem has
already been corrected.

Please see https://www.gnu.org/software/libc/bugs.html for bug reporting
information.  We are now using the Bugzilla system to track all bug reports.
This web page gives detailed information on how to report bugs properly.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.  License copyright years may be
listed using range notation, e.g., 1996-2015, indicating that every year in
the range, inclusive, is a copyrightable year that would otherwise be listed
individually.