Go to file
Adhemerval Zanella 2f959dfe84 sysvipc: Set ipc_perm mode as mode_t (BZ#18231)
This patch sets the mode field in ipc_perm as mode_t for all architectures,
as POSIX specification [1].  The changes required are as follow:

  1. It moves the ipc_perm definition out of ipc.h to its own header
     ipc_perm.h.  It also allows consolidate the IPC_* definition on
     only one header.

  2. The generic implementation follow the kernel ipc64_perm size so the
     syscall can be made directly without temporary buffer copy.  However,
     since glibc defines the MODE field as mode_t, it omits the __PAD1 field
     (since glibc does not export mode_t as 16-bit for any architecture).

     It is a two-fold improvement:

     2.1. New implementation which follow Linux UAPI will not need to
	  provide an arch-specific ipc-perm.h header neither wrongly
          use the wrong 16-bit definition from previous default ipc.h
	  (as csky did).

     2.1. It allows consolidate ipc_perm definition for architectures that
          already provide mode_t as 32-bit.

  3. All kernel ABIs for the supported architectures already provides the
     expected padding for mode type extension to 32-bit.  However, some
     architectures the padding has the wrong placement, so it requires
     the ipc control routines (msgctl, semctl, and shmctl) to adjust the
     mode field accordingly.  Currently they are armeb, microblaze, m68k,
     s390, and sheb.

     A new assume is added, __ASSUME_SYSVIPC_BROKEN_MODE_T, which the
     required ABIs define.

  4. For the ABIs that define __ASSUME_SYSVIPC_BROKEN_MODE_T, it also
     require compat symbols that do not adjust the mode field.

Checked on arm-linux-gnueabihf, aarch64-linux-gnu, powerpc64le-linux-gnu,
and x86_64-linux-gnu. I also checked the sysvipc tests on hppa-linux-gnu,
sh4-linux-gnu, s390x-linux-gnu, and s390-linux-gnu.

I also did a sanity test against armeb qemu usermode for the sysvipc
tests.

	[BZ #18231]
	* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
	bits/ipc-perm.h.
	* sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: Remove file.
	* sysdeps/unix/sysv/linux/alpha/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/hppa/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/ia64/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/mips/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
	* sysdeps/unix/sysv/linux/arm/kernel-features.h
	[__BYTE_ORDER == __BIG_ENDIAN] (__ASSUME_SYSVIPC_BROKEN_MODE_T):
	Define.
	* sysdeps/sysv/linux/microblaze/kernel-features.h: Likewise.
	* sysdeps/unix/sysv/linux/s390/kernel-features.h
	[!__s390x__] (__ASSUME_SYSVIPC_BROKEN_MODE_T): Define.
	* sysdeps/unix/sysv/linux/sh/kernel-features.h
	(__ASSUME_SYSVIPC_BROKEN_MODE_T): Define.
	* sysdeps/unix/sysv/linux/m68k/kernel-features.h: Likewise.
	* sysdeps/unix/sysv/linux/bits/ipc-perm.h: New file.
	* sysdeps/unix/sysv/linux/powerpc/bits/ipc-perm.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/ipc-perm.h: Likewise.
	* sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Move to
	bits/ipc-perm.h.
	* sysdeps/unix/sysv/linux/hppa/bits/ipc-perm.h: New file.
	* sysdeps/unix/sysv/linux/kernel-features.h: Add comment about
	__ASSUME_SYSVIPC_BROKEN_MODE_T semantic.
	* sysdeps/unix/sysv/linux/msgctl.c (DEFAULT_VERSION): Define as
	2.31 if __ASSUME_SYSVIPC_BROKEN_MODE_T is defined.
	(msgctl_syscall, __msgctl_mode16): New symbol.
	(__new_msgctl): Add bits for __ASSUME_SYSVIPC_BROKEN_MODE_T.
	* sysdeps/unix/sysv/linux/semctl.c: Likewise.
	* sysdeps/unix/sysv/linux/shmctl.c: Likewise.
	* sysdeps/unix/sysv/linux/arm/be/libc.abilist (GLIBC_2.31): Add
	msgctl, semctl, and shmctl.
	* sysdeps/sysv/linux/microblaze/be/libc.abilist: Likewise.
	* sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
	* sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
	* sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
	* sysdeps/unix/sysv/linux/sh/be/libc.abilist: Likewise.
	* conform/data/sys/ipc.h-data: Only xfail {struct ipc_perm} mode_t
	mode for Hurd.
	* sysdeps/unix/sysv/linux/m68k/Versions (libc) [GLIBC_2.31]: Add
	msgctl, semctl, and shmctl.
	* sysdeps/unix/sysv/linux/arm/be/Versions: New file.
	* sysdeps/unix/sysv/linux/microblaze/be/Versions: Likewise.
	* sysdeps/unix/sysv/linux/sh/be/Versions: Likewise.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_ipc.h.html
2019-10-10 17:33:27 -03:00
argp Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
assert Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
benchtests Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
bits Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
catgets Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
ChangeLog.old Correct the spelling of more contributors 2019-08-29 02:50:04 -07:00
conform sysvipc: Set ipc_perm mode as mode_t (BZ#18231) 2019-10-10 17:33:27 -03:00
crypt Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
csu Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
ctype Split up endian.h to minimize exposure of BYTE_ORDER. 2019-10-01 14:54:46 -07:00
debug Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
dirent Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
dlfcn Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
elf Simplify note processing 2019-10-10 13:01:38 +02:00
gmon Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
gnulib Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
grp Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
gshadow Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
hesiod Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
htl Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
hurd Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
iconv Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
iconvdata Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
include y2038: linux: Provide __clock_settime64 implementation 2019-10-10 00:17:46 +02:00
inet inet/net-internal.h: Fix uninitalised clntudp_call() variable 2019-09-24 21:55:36 +01:00
intl Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
io Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
libio Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
locale Regenerate charmap-kw.h, locfile-kw.h 2019-09-09 14:16:40 -07:00
localedata Sync "language", "lang_name", "territory", "country_name" with CLDR/langtable 2019-10-01 10:27:02 +02:00
login Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
mach Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
malloc Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
manual Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
math Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
mathvec Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
misc Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
nis Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
nptl nptl: Move pthread_attr_setschedparam implementation into libc 2019-10-07 20:00:38 +02:00
nptl_db Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
nscd Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
nss Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
po Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
posix posix: Use posix_spawn for wordexp 2019-10-09 17:48:41 -03:00
pwd Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
resolv Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
resource Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
rt Set the expects flags to clock_nanosleep 2019-09-25 16:28:45 -07:00
scripts Use binutils 2.33 branch in build-many-glibcs.py. 2019-09-30 22:21:39 +00:00
setjmp Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
shadow Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
signal Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
socket Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
soft-fp Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
stdio-common Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
stdlib Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
string string/endian.h: Restore the __USE_MISC conditionals 2019-10-02 12:26:06 -07:00
sunrpc Disable -Wmaybe-uninitialized for total_deadline in sunrpc/clnt_udp.c. 2019-10-02 21:12:17 +00:00
support Fix building support_ptrace.c on i686-gnu. 2019-09-19 12:26:18 +02:00
sysdeps sysvipc: Set ipc_perm mode as mode_t (BZ#18231) 2019-10-10 17:33:27 -03:00
sysvipc Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
termios Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
time Make tst-strftime2 and tst-strftime3 depend on locale generation 2019-10-08 18:34:05 -03:00
timezone Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
wcsmbs Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
wctype Split up endian.h to minimize exposure of BYTE_ORDER. 2019-10-01 14:54:46 -07:00
.gitattributes Assume __NR_openat is always defined 2016-03-23 23:35:08 +01:00
.gitignore Add *.pyc to .gitignore 2015-05-18 15:26:26 +05:30
abi-tags Remove the bulk of the NaCl port. 2017-05-20 08:09:10 -04:00
aclocal.m4 LIBC_SLIBDIR_RTLDDIR: substitute arguments in single quotes 2018-01-25 17:20:28 +01:00
ChangeLog sysvipc: Set ipc_perm mode as mode_t (BZ#18231) 2019-10-10 17:33:27 -03:00
config.h.in sparc: Assume GOTDATA support in the toolchain 2019-10-09 19:15:33 +02:00
config.make.in Make --bindir effective 2019-05-14 11:04:33 -03:00
configure Fix http: URL in 'configure' 2019-09-09 14:16:40 -07:00
configure.ac Fix http: URL in 'configure' 2019-09-09 14:16:40 -07:00
COPYING Update to latest versions of GPL-2.0 and LGPL-2.1 2013-09-09 12:52:48 +10:00
COPYING.LIB Update to latest versions of GPL-2.0 and LGPL-2.1 2013-09-09 12:52:48 +10:00
extra-lib.mk Rename cppflags-iterator.mk to libof-iterator.mk, remove extra-modules.mk. 2017-05-09 07:06:29 -04:00
gen-locales.mk Improve gen-locales.mk and gen-locale.sh to make test files with @ options work 2018-02-27 17:01:57 +01:00
INSTALL Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
libc-abis libc-abis: Define ABSOLUTE ABI [BZ #19818][BZ #23307] 2018-07-05 18:06:43 +01:00
libof-iterator.mk Rename cppflags-iterator.mk to libof-iterator.mk, remove extra-modules.mk. 2017-05-09 07:06:29 -04:00
LICENSES Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
MAINTAINERS Add MAINTAINERS 2017-05-11 13:38:30 -04:00
Makeconfig Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
Makefile Enable passing arguments to the inferior in debugglibc.sh 2019-10-02 14:01:24 +02:00
Makefile.in New make target to only build benchmark binaries 2016-04-20 10:23:28 +05:30
Makerules Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
NEWS Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
o-iterator.mk
README Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
Rules Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
shlib-versions Extend NSS test suite 2017-07-17 15:52:44 -04:00
test-skeleton.c Prefer https to http for gnu.org and fsf.org URLs 2019-09-07 02:43:31 -07:00
version.h Open master for 2.31 development. 2019-08-01 00:41:53 -04: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
	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
	powerpc-*-linux-gnu	Hardware or software floating point, BE only.
	powerpc64*-*-linux-gnu	Big-endian and little-endian.
	s390-*-linux-gnu
	s390x-*-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.