2023-01-06 21:08:04 +00:00
|
|
|
/* Copyright (C) 1993-2023 Free Software Foundation, Inc.
|
2001-07-06 04:58:11 +00:00
|
|
|
This file is part of the GNU C Library.
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1997-12-14 22:24:57 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>.
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
As a special exception, if you link the code in this file with
|
|
|
|
files compiled with a GNU compiler to produce an executable,
|
|
|
|
that does not cause the resulting executable to be covered by
|
|
|
|
the GNU Lesser General Public License. This exception does not
|
|
|
|
however invalidate any other reasons why the executable file
|
|
|
|
might be covered by the GNU Lesser General Public License.
|
|
|
|
This exception applies to code released by its copyright holders
|
|
|
|
in files containing the exception. */
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2000-03-27 05:18:47 +00:00
|
|
|
#include <shlib-compat.h>
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
|
|
|
|
|
1997-12-14 22:24:57 +00:00
|
|
|
#define _IO_USE_OLD_IO_FILE
|
2012-01-30 21:20:32 +00:00
|
|
|
#include <stdlib.h>
|
1997-12-14 22:24:57 +00:00
|
|
|
#include "libioP.h"
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2018-02-07 23:42:04 +00:00
|
|
|
FILE *
|
2004-03-10 09:29:17 +00:00
|
|
|
attribute_compat_text_section
|
2015-10-16 20:21:49 +00:00
|
|
|
_IO_old_fdopen (int fd, const char *mode)
|
1997-12-14 22:24:57 +00:00
|
|
|
{
|
|
|
|
int read_write;
|
|
|
|
int posix_mode = 0;
|
|
|
|
struct locked_FILE
|
|
|
|
{
|
2003-11-04 09:58:57 +00:00
|
|
|
struct _IO_FILE_complete_plus fp;
|
1997-12-14 22:24:57 +00:00
|
|
|
#ifdef _IO_MTSAFE_IO
|
|
|
|
_IO_lock_t lock;
|
|
|
|
#endif
|
|
|
|
} *new_f;
|
|
|
|
int fd_flags;
|
|
|
|
|
|
|
|
switch (*mode++)
|
|
|
|
{
|
|
|
|
case 'r':
|
|
|
|
read_write = _IO_NO_WRITES;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
read_write = _IO_NO_READS;
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
posix_mode = O_APPEND;
|
|
|
|
read_write = _IO_NO_READS|_IO_IS_APPENDING;
|
|
|
|
break;
|
|
|
|
default:
|
Remove miscellaneous debris from libio.
This patch eliminates a number of #if 0 and #ifdef TODO blocks, macros
that are never used, macros that provide portability to substrates that
lack basic things like EINVAL and off_t, and other such debris.
I preserved IO_DEBUG and CHECK_FILE, even though as far as I can tell
IO_DEBUG is never defined and therefore CHECK_FILE never does
anything, because it seems like we might actually want to turn it _on_.
Installed stripped libraries and executables are unchanged, except,
again, that the line number of an assertion changes (this time it's
somewhere in fileops.c).
* libio/libio.h (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust):
Define here, unconditionally.
* libio/iolibio.h (_IO_pos_BAD): Don't define here.
* libio/libioP.h: Remove #if 0 blocks.
(_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust): Don't define here.
(_IO_va_start, COERCE_FILE, MAYBE_SET_EINVAL): Don't define.
(CHECK_FILE): Don't use MAYBE_SET_EINVAL or COERCE_FILE. Fix style.
* libio/clearerr.c, libio/fputc.c, libio/getchar.c:
Assume weak_alias is always defined.
* libio/fileops.c, libio/genops.c, libio/oldfileops.c
* libio/oldpclose.c, libio/pclose.c, libio/wfileops.c:
Remove #if 0 and #ifdef TODO blocks.
Assume text_set_element is always defined.
* libio/iofdopen.c, libio/iogetdelim.c, libio/oldiofdopen.c
Use __set_errno (EINVAL) instead of MAYBE_SET_EINVAL.
* libio/tst-mmap-eofsync.c: Make #if 1 block unconditional.
2018-02-21 19:38:24 +00:00
|
|
|
__set_errno (EINVAL);
|
1997-12-14 22:24:57 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (mode[0] == '+' || (mode[0] == 'b' && mode[1] == '+'))
|
|
|
|
read_write &= _IO_IS_APPENDING;
|
2017-08-31 12:07:23 +00:00
|
|
|
fd_flags = __fcntl (fd, F_GETFL);
|
1997-12-14 22:24:57 +00:00
|
|
|
if (fd_flags == -1
|
|
|
|
|| ((fd_flags & O_ACCMODE) == O_RDONLY && !(read_write & _IO_NO_WRITES))
|
|
|
|
|| ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* The May 93 draft of P1003.4/D14.1 (redesignated as 1003.1b)
|
|
|
|
[System Application Program Interface (API) Amendment 1:
|
|
|
|
Realtime Extensions], Rationale B.8.3.3
|
|
|
|
Open a Stream on a File Descriptor says:
|
|
|
|
|
|
|
|
Although not explicitly required by POSIX.1, a good
|
|
|
|
implementation of append ("a") mode would cause the
|
|
|
|
O_APPEND flag to be set.
|
|
|
|
|
|
|
|
(Historical implementations [such as Solaris2] do a one-time
|
|
|
|
seek in fdopen.)
|
|
|
|
|
|
|
|
However, we do not turn O_APPEND off if the mode is "w" (even
|
|
|
|
though that would seem consistent) because that would be more
|
|
|
|
likely to break historical programs.
|
|
|
|
*/
|
|
|
|
if ((posix_mode & O_APPEND) && !(fd_flags & O_APPEND))
|
|
|
|
{
|
2017-08-31 12:07:23 +00:00
|
|
|
if (__fcntl (fd, F_SETFL, fd_flags | O_APPEND) == -1)
|
1997-12-14 22:24:57 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
new_f = (struct locked_FILE *) malloc (sizeof (struct locked_FILE));
|
|
|
|
if (new_f == NULL)
|
|
|
|
return NULL;
|
|
|
|
#ifdef _IO_MTSAFE_IO
|
2003-11-04 09:58:57 +00:00
|
|
|
new_f->fp.file._file._lock = &new_f->lock;
|
1997-12-14 22:24:57 +00:00
|
|
|
#endif
|
2003-11-04 09:58:57 +00:00
|
|
|
_IO_old_init (&new_f->fp.file._file, 0);
|
2015-05-18 11:58:54 +00:00
|
|
|
_IO_JUMPS_FILE_plus (&new_f->fp) = &_IO_old_file_jumps;
|
libio: Implement vtable verification [BZ #20191]
This commit puts all libio vtables in a dedicated, read-only ELF
section, so that they are consecutive in memory. Before any indirect
jump, the vtable pointer is checked against the section boundaries,
and the process is terminated if the vtable pointer does not fall into
the special ELF section.
To enable backwards compatibility, a special flag variable
(_IO_accept_foreign_vtables), protected by the pointer guard, avoids
process termination if libio stream object constructor functions have
been called earlier. Such constructor functions are called by the GCC
2.95 libstdc++ library, and this mechanism ensures compatibility with
old binaries. Existing callers inside glibc of these functions are
adjusted to call the original functions, not the wrappers which enable
vtable compatiblity.
The compatibility mechanism is used to enable passing FILE * objects
across a static dlopen boundary, too.
2016-06-23 18:01:40 +00:00
|
|
|
_IO_old_file_init_internal ((struct _IO_FILE_plus *) &new_f->fp);
|
2003-11-04 09:58:57 +00:00
|
|
|
if (_IO_old_file_attach (&new_f->fp.file._file, fd) == NULL)
|
1997-12-14 22:24:57 +00:00
|
|
|
{
|
2012-05-23 11:33:15 +00:00
|
|
|
_IO_un_link ((struct _IO_FILE_plus *) &new_f->fp);
|
1997-12-14 22:24:57 +00:00
|
|
|
free (new_f);
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-04 09:58:57 +00:00
|
|
|
new_f->fp.file._file._flags &= ~_IO_DELETE_DONT_CLOSE;
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2010-07-18 12:51:45 +00:00
|
|
|
_IO_mask_flags (&new_f->fp.file._file, read_write,
|
|
|
|
_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
|
1997-12-14 22:24:57 +00:00
|
|
|
|
2018-02-07 23:42:04 +00:00
|
|
|
return (FILE *) &new_f->fp;
|
1997-12-14 22:24:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
strong_alias (_IO_old_fdopen, __old_fdopen)
|
2000-03-27 05:18:47 +00:00
|
|
|
compat_symbol (libc, _IO_old_fdopen, _IO_fdopen, GLIBC_2_0);
|
|
|
|
compat_symbol (libc, __old_fdopen, fdopen, GLIBC_2_0);
|
|
|
|
|
|
|
|
#endif
|