glibc/bits
H.J. Lu 6c57d32048 sysconf: Add _SC_MINSIGSTKSZ/_SC_SIGSTKSZ [BZ #20305]
Add _SC_MINSIGSTKSZ for the minimum signal stack size derived from
AT_MINSIGSTKSZ, which is the minimum number of bytes of free stack
space required in order to gurantee successful, non-nested handling
of a single signal whose handler is an empty function, and _SC_SIGSTKSZ
which is the suggested minimum number of bytes of stack space required
for a signal stack.

If AT_MINSIGSTKSZ isn't available, sysconf (_SC_MINSIGSTKSZ) returns
MINSIGSTKSZ.  On Linux/x86 with XSAVE, the signal frame used by kernel
is composed of the following areas and laid out as:

 ------------------------------
 | alignment padding          |
 ------------------------------
 | xsave buffer               |
 ------------------------------
 | fsave header (32-bit only) |
 ------------------------------
 | siginfo + ucontext         |
 ------------------------------

Compute AT_MINSIGSTKSZ value as size of xsave buffer + size of fsave
header (32-bit only) + size of siginfo and ucontext + alignment padding.

If _SC_SIGSTKSZ_SOURCE or _GNU_SOURCE are defined, MINSIGSTKSZ and SIGSTKSZ
are redefined as

/* Default stack size for a signal handler: sysconf (SC_SIGSTKSZ).  */
 # undef SIGSTKSZ
 # define SIGSTKSZ sysconf (_SC_SIGSTKSZ)

/* Minimum stack size for a signal handler: SIGSTKSZ.  */
 # undef MINSIGSTKSZ
 # define MINSIGSTKSZ SIGSTKSZ

Compilation will fail if the source assumes constant MINSIGSTKSZ or
SIGSTKSZ.

The reason for not simply increasing the kernel's MINSIGSTKSZ #define
(apart from the fact that it is rarely used, due to glibc's shadowing
definitions) was that userspace binaries will have baked in the old
value of the constant and may be making assumptions about it.

For example, the type (char [MINSIGSTKSZ]) changes if this #define
changes.  This could be a problem if an newly built library tries to
memcpy() or dump such an object defined by and old binary.
Bounds-checking and the stack sizes passed to things like sigaltstack()
and makecontext() could similarly go wrong.
2021-02-01 11:00:52 -08:00
..
types Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
byteswap.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
confname.h sysconf: Add _SC_MINSIGSTKSZ/_SC_SIGSTKSZ [BZ #20305] 2021-02-01 11:00:52 -08:00
dirent.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
dirent_ext.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
dlfcn.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
elfclass.h Update. 1999-07-27 05:53:25 +00:00
endian.h
environments.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
errno.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
fcntl.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
fenv.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
floatn-common.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
floatn.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
flt-eval-method.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
fp-fast.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
fp-logb.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
hwcap.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
in.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
indirect-return.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
ioctl-types.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
ioctls.h
ipc.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
ipctypes.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
iscanonical.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
libc-header-start.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
libm-simd-decl-stubs.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
link.h * csu/elf-init.c (__libc_csu_fini): Don't do anything here. 2005-01-06 22:40:27 +00:00
local_lim.h
long-double.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
math-vector.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
mathdef.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
mman.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
mqueue.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
msq.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
netdb.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
param.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
poll.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
posix_opt.h
pthreadtypes.h 2002-11-10 Roland McGrath <roland@redhat.com> 2002-11-10 23:22:35 +00:00
resource.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sched.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
select.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sem.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
setjmp.h
shm.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sigaction.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sigcontext.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sigevent-consts.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
siginfo-consts.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
signal_ext.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
signum-arch.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
signum-generic.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sigstack.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sigstksz.h sysconf: Add _SC_MINSIGSTKSZ/_SC_SIGSTKSZ [BZ #20305] 2021-02-01 11:00:52 -08:00
sigthread.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sockaddr.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
socket.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
ss_flags.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
stat.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
statfs.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
statvfs.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
stdint-intn.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
stdint-uintn.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
stdlib-bsearch.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
syslog-path.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
sysmacros.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
termios.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
time.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
time64.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
timesize.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
typesizes.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
uintn-identity.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
uio-ext.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
uio_lim.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
unistd_ext.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
utmp.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
utsname.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
waitflags.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
waitstatus.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wchar.h Update copyright dates with scripts/update-copyrights 2021-01-02 12:17:34 -08:00
wordsize.h Define wordsize.h macros everywhere 2016-11-04 09:37:44 -07:00