mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Avoid cancellable I/O primitives in ld.so.
Neither the <dlfcn.h> entry points, nor lazy symbol resolution, nor initial shared library load-up, are cancellation points, so ld.so should exclusively use I/O primitives that are not cancellable. We currently achieve this by having the cancellation hooks compile as no-ops when IS_IN(rtld); this patch changes to using exclusively _nocancel primitives in the source code instead, which makes the intent clearer and significantly reduces the amount of code compiled under IS_IN(rtld) as well as IS_IN(libc) -- in particular, elf/Makefile no longer thinks we require a copy of unwind.c in rtld-libc.a. (The older mechanism is preserved as a backstop.) The bulk of the change is splitting up the files that define the _nocancel I/O functions, so they don't also define the variants that *are* cancellation points; after which, the existing logic for picking out the bits of libc that need to be recompiled as part of ld.so Just Works. I did this for all of the _nocancel functions, not just the ones used by ld.so, for consistency. fcntl was a little tricky because it's only a cancellation point for certain opcodes (F_SETLKW(64), which can block), and the existing __fcntl_nocancel wasn't applying the FCNTL_ADJUST_CMD hook, which strikes me as asking for trouble, especially as the only nontrivial definition of FCNTL_ADJUST_CMD (for powerpc64) changes F_*LK* opcodes. To fix this, fcntl_common moves to fcntl_nocancel.c along with __fcntl_nocancel, and changes its name to the extern (but hidden) symbol __fcntl_nocancel_adjusted, so that regular fcntl can continue calling it. __fcntl_nocancel now applies FCNTL_ADJUST_CMD; so that both both fcntl.c and fcntl_nocancel.c can see it, the only nontrivial definition moves from sysdeps/u/s/l/powerpc/powerpc64/fcntl.c to .../powerpc64/sysdep.h and becomes entirely a macro, instead of a macro that calls an inline function. The nptl version of libpthread also changes a little, because its "compat-routines" formerly included files that defined all the _nocancel functions it uses; instead of continuing to duplicate them, I exported the relevant ones from libc.so as GLIBC_PRIVATE. Since the Linux fcntl.c calls a function defined by fcntl_nocancel.c, it can no longer be used from libpthread.so; instead, introduce a custom forwarder, pt-fcntl.c, and export __libc_fcntl from libc.so as GLIBC_PRIVATE. The nios2-linux ABI doesn't include a copy of vfork() in libpthread, and it was handling that by manipulating libpthread-routines in .../linux/nios2/Makefile; it is cleaner to do what other such ports do, and have a pt-vfork.S that defines no symbols. Right now, it appears that Hurd does not implement _nocancel I/O, so sysdeps/generic/not-cancel.h will forward everything back to the regular functions. This changed the names of some of the functions that sysdeps/mach/hurd/dl-sysdep.c needs to interpose. * elf/dl-load.c, elf/dl-misc.c, elf/dl-profile.c, elf/rtld.c * sysdeps/unix/sysv/linux/dl-sysdep.c Include not-cancel.h. Use __close_nocancel instead of __close, __open64_nocancel instead of __open, __read_nocancel instead of __libc_read, and __write_nocancel instead of __libc_write. * csu/check_fds.c (check_one_fd) * sysdeps/posix/fdopendir.c (__fdopendir) * sysdeps/posix/opendir.c (__alloc_dir): Use __fcntl_nocancel instead of __fcntl and/or __libc_fcntl. * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np) * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np) * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Use __open64_nocancel instead of __open_nocancel. * sysdeps/unix/sysv/linux/not-cancel.h: Move all of the hidden_proto declarations to the end and issue them if either IS_IN(libc) or IS_IN(rtld). * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines): Add close_nocancel, fcntl_nocancel, nanosleep_nocancel, open_nocancel, open64_nocancel, openat_nocancel, pause_nocancel, read_nocancel, waitpid_nocancel, write_nocancel. * io/Versions [GLIBC_PRIVATE]: Add __libc_fcntl, __fcntl_nocancel, __open64_nocancel, __write_nocancel. * posix/Versions: Add __nanosleep_nocancel, __pause_nocancel. * nptl/pt-fcntl.c: New file. * nptl/Makefile (pthread-compat-wrappers): Remove fcntl. (libpthread-routines): Add pt-fcntl. * include/fcntl.h (__fcntl_nocancel_adjusted): New function. (__libc_fcntl): Remove attribute_hidden. * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Call __fcntl_nocancel_adjusted, not fcntl_common. (__fcntl_nocancel): Move to new file fcntl_nocancel.c. (fcntl_common): Rename to __fcntl_nocancel_adjusted; also move to fcntl_nocancel.c. * sysdeps/unix/sysv/linux/fcntl_nocancel.c: New file. * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Remove file. * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Define FCNTL_ADJUST_CMD here, as a self-contained macro. * sysdeps/unix/sysv/linux/close.c: Move __close_nocancel to... * sysdeps/unix/sysv/linux/close_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/nanosleep.c: Move __nanosleep_nocancel to... * sysdeps/unix/sysv/linux/nanosleep_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/open.c: Move __open_nocancel to... * sysdeps/unix/sysv/linux/open_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/open64.c: Move __open64_nocancel to... * sysdeps/unix/sysv/linux/open64_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/openat.c: Move __openat_nocancel to... * sysdeps/unix/sysv/linux/openat_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/openat64.c: Move __openat64_nocancel to... * sysdeps/unix/sysv/linux/openat64_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/pause.c: Move __pause_nocancel to... * sysdeps/unix/sysv/linux/pause_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/read.c: Move __read_nocancel to... * sysdeps/unix/sysv/linux/read_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/waitpid.c: Move __waitpid_nocancel to... * sysdeps/unix/sysv/linux/waitpid_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/write.c: Move __write_nocancel to... * sysdeps/unix/sysv/linux/write_nocancel.c: ...this new file. * sysdeps/unix/sysv/linux/nios2/Makefile: Don't override libpthread-routines. * sysdeps/unix/sysv/linux/nios2/pt-vfork.S: New file which defines nothing. * sysdeps/mach/hurd/dl-sysdep.c: Define __read instead of __libc_read, and __write instead of __libc_write. Define __open64 in addition to __open.
This commit is contained in:
@ -167,7 +167,12 @@ endif
|
||||
|
||||
ifeq ($(subdir),io)
|
||||
sysdep_routines += xstatconv internal_statvfs internal_statvfs64 \
|
||||
sync_file_range fallocate fallocate64
|
||||
sync_file_range fallocate fallocate64 \
|
||||
close_nocancel fcntl_nocancel nanosleep_nocancel \
|
||||
open_nocancel open64_nocancel \
|
||||
openat_nocancel openat64_nocancel \
|
||||
pause_nocancel read_nocancel waitpid_nocancel write_nocancel
|
||||
|
||||
sysdep_headers += bits/fcntl-linux.h
|
||||
|
||||
tests += tst-fallocate tst-fallocate64
|
||||
|
@ -29,14 +29,3 @@ __close (int fd)
|
||||
libc_hidden_def (__close)
|
||||
strong_alias (__close, __libc_close)
|
||||
weak_alias (__close, close)
|
||||
|
||||
# if !IS_IN (rtld)
|
||||
int
|
||||
__close_nocancel (int fd)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (close, fd);
|
||||
}
|
||||
#else
|
||||
strong_alias (__libc_close, __close_nocancel)
|
||||
#endif
|
||||
libc_hidden_def (__close_nocancel)
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
|
||||
/* Linux close syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -16,17 +17,12 @@
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
static inline int
|
||||
fcntl_adjust_cmd (int cmd)
|
||||
int
|
||||
__close_nocancel (int fd)
|
||||
{
|
||||
if (cmd >= F_GETLK64 && cmd <= F_SETLKW64)
|
||||
cmd -= F_GETLK64 - F_GETLK;
|
||||
return cmd;
|
||||
return INLINE_SYSCALL_CALL (close, fd);
|
||||
}
|
||||
|
||||
#define FCNTL_ADJUST_CMD(__cmd) \
|
||||
fcntl_adjust_cmd (__cmd)
|
||||
|
||||
#include <sysdeps/unix/sysv/linux/fcntl.c>
|
||||
libc_hidden_def (__close_nocancel)
|
@ -25,6 +25,7 @@
|
||||
#include <sys/param.h>
|
||||
#include <sys/utsname.h>
|
||||
#include <ldsodefs.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifdef SHARED
|
||||
# define DL_SYSDEP_INIT frob_brk ()
|
||||
@ -87,11 +88,11 @@ _dl_discover_osversion (void)
|
||||
if (__uname (&uts))
|
||||
{
|
||||
/* This was not successful. Now try reading the /proc filesystem. */
|
||||
int fd = __open ("/proc/sys/kernel/osrelease", O_RDONLY);
|
||||
int fd = __open64_nocancel ("/proc/sys/kernel/osrelease", O_RDONLY);
|
||||
if (fd < 0)
|
||||
return -1;
|
||||
ssize_t reslen = __read (fd, bufmem, sizeof (bufmem));
|
||||
__close (fd);
|
||||
ssize_t reslen = __read_nocancel (fd, bufmem, sizeof (bufmem));
|
||||
__close_nocancel (fd);
|
||||
if (reslen <= 0)
|
||||
/* This also didn't work. We give up since we cannot
|
||||
make sure the library can actually work. */
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
|
||||
/* Linux fcntl syscall implementation.
|
||||
Copyright (C) 2000-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -29,24 +30,6 @@
|
||||
# define FCNTL_ADJUST_CMD(__cmd) __cmd
|
||||
#endif
|
||||
|
||||
static int
|
||||
fcntl_common (int fd, int cmd, void *arg)
|
||||
{
|
||||
if (cmd == F_GETOWN)
|
||||
{
|
||||
INTERNAL_SYSCALL_DECL (err);
|
||||
struct f_owner_ex fex;
|
||||
int res = INTERNAL_SYSCALL_CALL (fcntl64, err, fd, F_GETOWN_EX, &fex);
|
||||
if (!INTERNAL_SYSCALL_ERROR_P (res, err))
|
||||
return fex.type == F_OWNER_GID ? -fex.pid : fex.pid;
|
||||
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE (INTERNAL_SYSCALL_ERRNO (res,
|
||||
err));
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (fcntl64, fd, cmd, (void *) arg);
|
||||
}
|
||||
|
||||
int
|
||||
__libc_fcntl (int fd, int cmd, ...)
|
||||
{
|
||||
@ -62,28 +45,10 @@ __libc_fcntl (int fd, int cmd, ...)
|
||||
if (cmd == F_SETLKW || cmd == F_SETLKW64)
|
||||
return SYSCALL_CANCEL (fcntl64, fd, cmd, (void *) arg);
|
||||
|
||||
return fcntl_common (fd, cmd, arg);
|
||||
return __fcntl_nocancel_adjusted (fd, cmd, arg);
|
||||
}
|
||||
libc_hidden_def (__libc_fcntl)
|
||||
|
||||
#if !IS_IN (rtld)
|
||||
int
|
||||
__fcntl_nocancel (int fd, int cmd, ...)
|
||||
{
|
||||
va_list ap;
|
||||
void *arg;
|
||||
|
||||
va_start (ap, cmd);
|
||||
arg = va_arg (ap, void *);
|
||||
va_end (ap);
|
||||
|
||||
return fcntl_common (fd, cmd, arg);
|
||||
}
|
||||
#else
|
||||
strong_alias (__libc_fcntl, __fcntl_nocancel)
|
||||
#endif
|
||||
libc_hidden_def (__fcntl_nocancel)
|
||||
|
||||
weak_alias (__libc_fcntl, __fcntl)
|
||||
libc_hidden_weak (__fcntl)
|
||||
weak_alias (__libc_fcntl, fcntl)
|
||||
|
65
sysdeps/unix/sysv/linux/fcntl_nocancel.c
Normal file
65
sysdeps/unix/sysv/linux/fcntl_nocancel.c
Normal file
@ -0,0 +1,65 @@
|
||||
/* Linux fcntl syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
#include <errno.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifndef __NR_fcntl64
|
||||
# define __NR_fcntl64 __NR_fcntl
|
||||
#endif
|
||||
|
||||
#ifndef FCNTL_ADJUST_CMD
|
||||
# define FCNTL_ADJUST_CMD(__cmd) __cmd
|
||||
#endif
|
||||
|
||||
int
|
||||
__fcntl_nocancel (int fd, int cmd, ...)
|
||||
{
|
||||
va_list ap;
|
||||
void *arg;
|
||||
|
||||
va_start (ap, cmd);
|
||||
arg = va_arg (ap, void *);
|
||||
va_end (ap);
|
||||
|
||||
cmd = FCNTL_ADJUST_CMD (cmd);
|
||||
|
||||
return __fcntl_nocancel_adjusted (fd, cmd, arg);
|
||||
}
|
||||
hidden_def (__fcntl_nocancel)
|
||||
|
||||
int
|
||||
__fcntl_nocancel_adjusted (int fd, int cmd, void *arg)
|
||||
{
|
||||
if (cmd == F_GETOWN)
|
||||
{
|
||||
INTERNAL_SYSCALL_DECL (err);
|
||||
struct f_owner_ex fex;
|
||||
int res = INTERNAL_SYSCALL_CALL (fcntl64, err, fd, F_GETOWN_EX, &fex);
|
||||
if (!INTERNAL_SYSCALL_ERROR_P (res, err))
|
||||
return fex.type == F_OWNER_GID ? -fex.pid : fex.pid;
|
||||
|
||||
return INLINE_SYSCALL_ERROR_RETURN_VALUE
|
||||
(INTERNAL_SYSCALL_ERRNO (res, err));
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (fcntl64, fd, cmd, (void *) arg);
|
||||
}
|
@ -41,7 +41,7 @@ is_smp_system (void)
|
||||
else
|
||||
{
|
||||
/* This was not successful. Now try reading the /proc filesystem. */
|
||||
int fd = __open_nocancel ("/proc/sys/kernel/version", O_RDONLY);
|
||||
int fd = __open64_nocancel ("/proc/sys/kernel/version", O_RDONLY);
|
||||
if (__builtin_expect (fd, 0) == -1
|
||||
|| __read_nocancel (fd, u.buf, sizeof (u.buf)) <= 0)
|
||||
/* This also didn't work. We give up and say it's a UP machine. */
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Linux high resolution nanosleep implementation.
|
||||
/* Linux nanosleep syscall implementation.
|
||||
Copyright (C) 2017-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
@ -29,11 +29,3 @@ __nanosleep (const struct timespec *requested_time,
|
||||
}
|
||||
hidden_def (__nanosleep)
|
||||
weak_alias (__nanosleep, nanosleep)
|
||||
|
||||
int
|
||||
__nanosleep_nocancel (const struct timespec *requested_time,
|
||||
struct timespec *remaining)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (nanosleep, requested_time, remaining);
|
||||
}
|
||||
hidden_def (__nanosleep_nocancel)
|
||||
|
29
sysdeps/unix/sysv/linux/nanosleep_nocancel.c
Normal file
29
sysdeps/unix/sysv/linux/nanosleep_nocancel.c
Normal file
@ -0,0 +1,29 @@
|
||||
/* Linux nanosleep syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <time.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
int
|
||||
__nanosleep_nocancel (const struct timespec *requested_time,
|
||||
struct timespec *remaining)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (nanosleep, requested_time, remaining);
|
||||
}
|
||||
hidden_def (__nanosleep_nocancel)
|
@ -7,7 +7,3 @@ ifeq ($(subdir),misc)
|
||||
sysdep_headers += sys/cachectl.h
|
||||
sysdep_routines += cacheflush
|
||||
endif
|
||||
|
||||
ifeq ($(subdir),nptl)
|
||||
libpthread-routines := $(filter-out pt-vfork,$(libpthread-routines))
|
||||
endif
|
||||
|
1
sysdeps/unix/sysv/linux/nios2/pt-vfork.S
Normal file
1
sysdeps/unix/sysv/linux/nios2/pt-vfork.S
Normal file
@ -0,0 +1 @@
|
||||
# Nios2 does not require a stub for vfork in libpthread.
|
@ -30,31 +30,24 @@
|
||||
|
||||
/* Non cancellable open syscall. */
|
||||
__typeof (open) __open_nocancel;
|
||||
libc_hidden_proto (__open_nocancel)
|
||||
|
||||
/* Non cancellable open syscall (LFS version). */
|
||||
__typeof (open64) __open64_nocancel;
|
||||
libc_hidden_proto (__open64_nocancel)
|
||||
|
||||
/* Non cancellable openat syscall. */
|
||||
__typeof (openat) __openat_nocancel;
|
||||
libc_hidden_proto (__openat_nocancel)
|
||||
|
||||
/* Non cacellable openat syscall (LFS version). */
|
||||
__typeof (openat64) __openat64_nocancel;
|
||||
libc_hidden_proto (__openat64_nocancel)
|
||||
|
||||
/* Non cancellable read syscall. */
|
||||
__typeof (__read) __read_nocancel;
|
||||
libc_hidden_proto (__read_nocancel)
|
||||
|
||||
/* Uncancelable write. */
|
||||
__typeof (__write) __write_nocancel;
|
||||
libc_hidden_proto (__write_nocancel)
|
||||
|
||||
/* Uncancelable close. */
|
||||
__typeof (__close) __close_nocancel;
|
||||
libc_hidden_proto (__close_nocancel)
|
||||
|
||||
/* Non cancellable close syscall that does not also set errno in case of
|
||||
failure. */
|
||||
@ -75,18 +68,28 @@ __writev_nocancel_nostatus (int fd, const struct iovec *iov, int iovcnt)
|
||||
|
||||
/* Uncancelable waitpid. */
|
||||
__typeof (waitpid) __waitpid_nocancel;
|
||||
libc_hidden_proto (__waitpid_nocancel)
|
||||
|
||||
/* Uncancelable pause. */
|
||||
__typeof (pause) __pause_nocancel;
|
||||
libc_hidden_proto (__pause_nocancel)
|
||||
|
||||
/* Uncancelable nanosleep. */
|
||||
__typeof (__nanosleep) __nanosleep_nocancel;
|
||||
hidden_proto (__nanosleep_nocancel)
|
||||
|
||||
/* Uncancelable fcntl. */
|
||||
__typeof (__fcntl) __fcntl_nocancel;
|
||||
libc_hidden_proto (__fcntl_nocancel)
|
||||
|
||||
#if IS_IN (libc) || IS_IN (rtld)
|
||||
hidden_proto (__open_nocancel)
|
||||
hidden_proto (__open64_nocancel)
|
||||
hidden_proto (__openat_nocancel)
|
||||
hidden_proto (__openat64_nocancel)
|
||||
hidden_proto (__read_nocancel)
|
||||
hidden_proto (__write_nocancel)
|
||||
hidden_proto (__close_nocancel)
|
||||
hidden_proto (__waitpid_nocancel)
|
||||
hidden_proto (__pause_nocancel)
|
||||
hidden_proto (__nanosleep_nocancel)
|
||||
hidden_proto (__fcntl_nocancel)
|
||||
#endif
|
||||
|
||||
#endif /* NOT_CANCEL_H */
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 2017-2018 Free Software Foundation, Inc.
|
||||
/* Linux open syscall implementation, non-LFS.
|
||||
Copyright (C) 2017-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Chris Metcalf <cmetcalf@tilera.com>, 2011.
|
||||
|
||||
@ -22,7 +23,6 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifndef __OFF_T_MATCHES_OFF64_T
|
||||
|
||||
@ -48,25 +48,4 @@ libc_hidden_def (__libc_open)
|
||||
weak_alias (__libc_open, __open)
|
||||
libc_hidden_weak (__open)
|
||||
weak_alias (__libc_open, open)
|
||||
|
||||
# if !IS_IN (rtld)
|
||||
int
|
||||
__open_nocancel (const char *file, int oflag, ...)
|
||||
{
|
||||
int mode = 0;
|
||||
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, int);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, AT_FDCWD, file, oflag, mode);
|
||||
}
|
||||
# else
|
||||
strong_alias (__libc_open, __open_nocancel)
|
||||
# endif
|
||||
libc_hidden_def (__open_nocancel)
|
||||
#endif
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
|
||||
/* Linux open syscall implementation, LFS.
|
||||
Copyright (C) 1991-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -21,7 +22,7 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
# define EXTRA_OPEN_FLAGS 0
|
||||
@ -52,34 +53,9 @@ strong_alias (__libc_open64, __open64)
|
||||
libc_hidden_weak (__open64)
|
||||
weak_alias (__libc_open64, open64)
|
||||
|
||||
# if !IS_IN (rtld)
|
||||
int
|
||||
__open64_nocancel (const char *file, int oflag, ...)
|
||||
{
|
||||
int mode = 0;
|
||||
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, int);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, AT_FDCWD, file, oflag | EXTRA_OPEN_FLAGS,
|
||||
mode);
|
||||
}
|
||||
#else
|
||||
strong_alias (__libc_open64, __open64_nocancel)
|
||||
#endif
|
||||
libc_hidden_def (__open64_nocancel)
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
strong_alias (__libc_open64, __libc_open)
|
||||
strong_alias (__libc_open64, __open)
|
||||
libc_hidden_weak (__open)
|
||||
weak_alias (__libc_open64, open)
|
||||
|
||||
strong_alias (__open64_nocancel, __open_nocancel)
|
||||
libc_hidden_weak (__open_nocancel)
|
||||
#endif
|
||||
|
54
sysdeps/unix/sysv/linux/open64_nocancel.c
Normal file
54
sysdeps/unix/sysv/linux/open64_nocancel.c
Normal file
@ -0,0 +1,54 @@
|
||||
/* Linux open syscall implementation, LFS, non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
# define EXTRA_OPEN_FLAGS 0
|
||||
#else
|
||||
# define EXTRA_OPEN_FLAGS O_LARGEFILE
|
||||
#endif
|
||||
|
||||
int
|
||||
__open64_nocancel (const char *file, int oflag, ...)
|
||||
{
|
||||
int mode = 0;
|
||||
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, int);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, AT_FDCWD, file, oflag | EXTRA_OPEN_FLAGS,
|
||||
mode);
|
||||
}
|
||||
|
||||
hidden_def (__open64_nocancel)
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
strong_alias (__open64_nocancel, __open_nocancel)
|
||||
hidden_def (__open_nocancel)
|
||||
#endif
|
46
sysdeps/unix/sysv/linux/open_nocancel.c
Normal file
46
sysdeps/unix/sysv/linux/open_nocancel.c
Normal file
@ -0,0 +1,46 @@
|
||||
/* Linux open syscall implementation, non-LFS, non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library. If not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifndef __OFF_T_MATCHES_OFF64_T
|
||||
|
||||
int
|
||||
__open_nocancel (const char *file, int oflag, ...)
|
||||
{
|
||||
int mode = 0;
|
||||
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, int);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, AT_FDCWD, file, oflag, mode);
|
||||
}
|
||||
hidden_def (__open_nocancel)
|
||||
|
||||
#endif
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 2005-2018 Free Software Foundation, Inc.
|
||||
/* Linux openat syscall implementation, non-LFS.
|
||||
Copyright (C) 2005-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -19,7 +20,6 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifndef __OFF_T_MATCHES_OFF64_T
|
||||
|
||||
@ -43,24 +43,4 @@ __libc_openat (int fd, const char *file, int oflag, ...)
|
||||
weak_alias (__libc_openat, __openat)
|
||||
libc_hidden_weak (__openat)
|
||||
weak_alias (__libc_openat, openat)
|
||||
|
||||
# if !IS_IN (rtld)
|
||||
int
|
||||
__openat_nocancel (int fd, const char *file, int oflag, ...)
|
||||
{
|
||||
mode_t mode = 0;
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, mode_t);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, fd, file, oflag, mode);
|
||||
}
|
||||
# else
|
||||
strong_alias (__libc_openat, __openat_nocancel)
|
||||
# endif
|
||||
libc_hidden_weak (__openat_nocancel)
|
||||
#endif
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 2007-2018 Free Software Foundation, Inc.
|
||||
/* Linux openat syscall implementation, LFS.
|
||||
Copyright (C) 2007-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -19,7 +20,6 @@
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
# define EXTRA_OPEN_FLAGS 0
|
||||
@ -49,31 +49,8 @@ strong_alias (__libc_openat64, __openat64)
|
||||
libc_hidden_weak (__openat64)
|
||||
weak_alias (__libc_openat64, openat64)
|
||||
|
||||
#if !IS_IN (rtld)
|
||||
int
|
||||
__openat64_nocancel (int fd, const char *file, int oflag, ...)
|
||||
{
|
||||
mode_t mode = 0;
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, mode_t);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, fd, file, oflag | EXTRA_OPEN_FLAGS,
|
||||
mode);
|
||||
}
|
||||
#else
|
||||
strong_alias (__libc_openat64, __openat64_nocancel)
|
||||
#endif
|
||||
libc_hidden_def (__openat64_nocancel)
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
strong_alias (__libc_openat64, __openat)
|
||||
libc_hidden_weak (__openat)
|
||||
weak_alias (__libc_openat64, openat)
|
||||
|
||||
strong_alias (__openat64_nocancel, __openat_nocancel)
|
||||
#endif
|
||||
|
51
sysdeps/unix/sysv/linux/openat64_nocancel.c
Normal file
51
sysdeps/unix/sysv/linux/openat64_nocancel.c
Normal file
@ -0,0 +1,51 @@
|
||||
/* Linux openat syscall implementation, LFS, non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
# define EXTRA_OPEN_FLAGS 0
|
||||
#else
|
||||
# define EXTRA_OPEN_FLAGS O_LARGEFILE
|
||||
#endif
|
||||
|
||||
int
|
||||
__openat64_nocancel (int fd, const char *file, int oflag, ...)
|
||||
{
|
||||
mode_t mode = 0;
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, mode_t);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, fd, file, oflag | EXTRA_OPEN_FLAGS,
|
||||
mode);
|
||||
}
|
||||
hidden_def (__openat64_nocancel)
|
||||
|
||||
#ifdef __OFF_T_MATCHES_OFF64_T
|
||||
strong_alias (__openat64_nocancel, __openat_nocancel)
|
||||
hidden_def (__openat_nocancel)
|
||||
#endif
|
43
sysdeps/unix/sysv/linux/openat_nocancel.c
Normal file
43
sysdeps/unix/sysv/linux/openat_nocancel.c
Normal file
@ -0,0 +1,43 @@
|
||||
/* Linux openat syscall implementation, non-LFS, non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
#ifndef __OFF_T_MATCHES_OFF64_T
|
||||
|
||||
int
|
||||
__openat_nocancel (int fd, const char *file, int oflag, ...)
|
||||
{
|
||||
mode_t mode = 0;
|
||||
if (__OPEN_NEEDS_MODE (oflag))
|
||||
{
|
||||
va_list arg;
|
||||
va_start (arg, oflag);
|
||||
mode = va_arg (arg, mode_t);
|
||||
va_end (arg);
|
||||
}
|
||||
|
||||
return INLINE_SYSCALL_CALL (openat, fd, file, oflag, mode);
|
||||
}
|
||||
hidden_def (__openat_nocancel)
|
||||
|
||||
#endif
|
@ -19,7 +19,6 @@
|
||||
#include <signal.h>
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
/* Suspend the process until a signal arrives.
|
||||
This always returns -1 and sets errno to EINTR. */
|
||||
@ -33,14 +32,3 @@ __libc_pause (void)
|
||||
#endif
|
||||
}
|
||||
weak_alias (__libc_pause, pause)
|
||||
|
||||
int
|
||||
__pause_nocancel (void)
|
||||
{
|
||||
#ifdef __NR_pause
|
||||
return INLINE_SYSCALL_CALL (pause);
|
||||
#else
|
||||
return INLINE_SYSCALL_CALL (ppoll, NULL, 0, NULL, NULL);
|
||||
#endif
|
||||
}
|
||||
libc_hidden_def (__pause_nocancel)
|
||||
|
33
sysdeps/unix/sysv/linux/pause_nocancel.c
Normal file
33
sysdeps/unix/sysv/linux/pause_nocancel.c
Normal file
@ -0,0 +1,33 @@
|
||||
/* Linux pause syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library. If not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <signal.h>
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
int
|
||||
__pause_nocancel (void)
|
||||
{
|
||||
#ifdef __NR_pause
|
||||
return INLINE_SYSCALL_CALL (pause);
|
||||
#else
|
||||
return INLINE_SYSCALL_CALL (ppoll, NULL, 0, NULL, NULL);
|
||||
#endif
|
||||
}
|
||||
hidden_def (__pause_nocancel)
|
@ -236,4 +236,13 @@
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/* In the PowerPC64 ABI, the unadorned F_GETLK* opcodes should be used
|
||||
even by largefile64 code. */
|
||||
#define FCNTL_ADJUST_CMD(__cmd) \
|
||||
({ int cmd_ = (__cmd); \
|
||||
if (cmd_ >= F_GETLK64 && cmd_ <= F_SETLKW64) \
|
||||
cmd_ -= F_GETLK64 - F_GETLK; \
|
||||
cmd_; })
|
||||
|
||||
|
||||
#endif /* linux/powerpc/powerpc64/sysdep.h */
|
||||
|
@ -45,7 +45,7 @@ pthread_getname_np (pthread_t th, char *buf, size_t len)
|
||||
char fname[sizeof (FMT) + 8];
|
||||
sprintf (fname, FMT, (unsigned int) pd->tid);
|
||||
|
||||
int fd = __open_nocancel (fname, O_RDONLY);
|
||||
int fd = __open64_nocancel (fname, O_RDONLY);
|
||||
if (fd == -1)
|
||||
return errno;
|
||||
|
||||
|
@ -46,7 +46,7 @@ pthread_setname_np (pthread_t th, const char *name)
|
||||
char fname[sizeof (FMT) + 8];
|
||||
sprintf (fname, FMT, (unsigned int) pd->tid);
|
||||
|
||||
int fd = __open_nocancel (fname, O_RDWR);
|
||||
int fd = __open64_nocancel (fname, O_RDWR);
|
||||
if (fd == -1)
|
||||
return errno;
|
||||
|
||||
|
@ -18,7 +18,6 @@
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
/* Read NBYTES into BUF from FD. Return the number read or -1. */
|
||||
ssize_t
|
||||
@ -32,14 +31,3 @@ libc_hidden_def (__read)
|
||||
weak_alias (__libc_read, __read)
|
||||
libc_hidden_def (read)
|
||||
weak_alias (__libc_read, read)
|
||||
|
||||
#if !IS_IN (rtld)
|
||||
ssize_t
|
||||
__read_nocancel (int fd, void *buf, size_t nbytes)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (read, fd, buf, nbytes);
|
||||
}
|
||||
#else
|
||||
strong_alias (__libc_read, __read_nocancel)
|
||||
#endif
|
||||
libc_hidden_def (__read_nocancel)
|
||||
|
28
sysdeps/unix/sysv/linux/read_nocancel.c
Normal file
28
sysdeps/unix/sysv/linux/read_nocancel.c
Normal file
@ -0,0 +1,28 @@
|
||||
/* Linux read syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
ssize_t
|
||||
__read_nocancel (int fd, void *buf, size_t nbytes)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (read, fd, buf, nbytes);
|
||||
}
|
||||
hidden_def (__read_nocancel)
|
@ -1,4 +1,5 @@
|
||||
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
|
||||
/* Linux waitpid syscall implementation.
|
||||
Copyright (C) 1991-2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -19,7 +20,6 @@
|
||||
#include <sysdep-cancel.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/wait.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
__pid_t
|
||||
__waitpid (__pid_t pid, int *stat_loc, int options)
|
||||
@ -32,14 +32,3 @@ __waitpid (__pid_t pid, int *stat_loc, int options)
|
||||
}
|
||||
libc_hidden_def (__waitpid)
|
||||
weak_alias (__waitpid, waitpid)
|
||||
|
||||
__pid_t
|
||||
__waitpid_nocancel (__pid_t pid, int *stat_loc, int options)
|
||||
{
|
||||
#ifdef __NR_waitpid
|
||||
return INLINE_SYSCALL_CALL (waitpid, pid, stat_loc, options);
|
||||
#else
|
||||
return INLINE_SYSCALL_CALL (wait4, pid, stat_loc, options, NULL);
|
||||
#endif
|
||||
}
|
||||
libc_hidden_def (__waitpid_nocancel)
|
||||
|
34
sysdeps/unix/sysv/linux/waitpid_nocancel.c
Normal file
34
sysdeps/unix/sysv/linux/waitpid_nocancel.c
Normal file
@ -0,0 +1,34 @@
|
||||
/* Linux waitpid syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <errno.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/wait.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
__pid_t
|
||||
__waitpid_nocancel (__pid_t pid, int *stat_loc, int options)
|
||||
{
|
||||
#ifdef __NR_waitpid
|
||||
return INLINE_SYSCALL_CALL (waitpid, pid, stat_loc, options);
|
||||
#else
|
||||
return INLINE_SYSCALL_CALL (wait4, pid, stat_loc, options, NULL);
|
||||
#endif
|
||||
}
|
||||
libc_hidden_def (__waitpid_nocancel)
|
@ -18,7 +18,6 @@
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
/* Write NBYTES of BUF to FD. Return the number written, or -1. */
|
||||
ssize_t
|
||||
@ -32,14 +31,3 @@ weak_alias (__libc_write, __write)
|
||||
libc_hidden_weak (__write)
|
||||
weak_alias (__libc_write, write)
|
||||
libc_hidden_weak (write)
|
||||
|
||||
#if !IS_IN (rtld)
|
||||
ssize_t
|
||||
__write_nocancel (int fd, const void *buf, size_t nbytes)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (write, fd, buf, nbytes);
|
||||
}
|
||||
#else
|
||||
strong_alias (__libc_write, __write_nocancel)
|
||||
#endif
|
||||
libc_hidden_def (__write_nocancel)
|
||||
|
28
sysdeps/unix/sysv/linux/write_nocancel.c
Normal file
28
sysdeps/unix/sysv/linux/write_nocancel.c
Normal file
@ -0,0 +1,28 @@
|
||||
/* Linux write syscall implementation -- non-cancellable.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <unistd.h>
|
||||
#include <sysdep-cancel.h>
|
||||
#include <not-cancel.h>
|
||||
|
||||
ssize_t
|
||||
__write_nocancel (int fd, const void *buf, size_t nbytes)
|
||||
{
|
||||
return INLINE_SYSCALL_CALL (write, fd, buf, nbytes);
|
||||
}
|
||||
hidden_def (__write_nocancel)
|
Reference in New Issue
Block a user