2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
|
1997-02-15 04:31:36 +00:00
|
|
|
This file is part of the GNU C Library.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-02-15 04:31:36 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
1997-02-15 04:31:36 +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
|
|
|
|
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.
|
1995-02-18 01:27:10 +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/>. */
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2000-12-05 00:41:57 +00:00
|
|
|
#include <errno.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <stdio.h>
|
1998-04-15 10:15:16 +00:00
|
|
|
#include <string.h>
|
2001-08-16 05:23:52 +00:00
|
|
|
#include <unistd.h>
|
2000-12-05 00:41:57 +00:00
|
|
|
#include <wchar.h>
|
2004-03-19 00:37:59 +00:00
|
|
|
#include "libioP.h"
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2001-08-16 05:23:52 +00:00
|
|
|
static void
|
2001-09-01 06:10:36 +00:00
|
|
|
perror_internal (FILE *fp, const char *s, int errnum)
|
1995-02-18 01:27:10 +00:00
|
|
|
{
|
|
|
|
char buf[1024];
|
1997-02-15 04:31:36 +00:00
|
|
|
const char *colon;
|
2000-12-05 00:41:57 +00:00
|
|
|
const char *errstring;
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
if (s == NULL || *s == '\0')
|
|
|
|
s = colon = "";
|
|
|
|
else
|
|
|
|
colon = ": ";
|
|
|
|
|
2000-12-05 00:41:57 +00:00
|
|
|
errstring = __strerror_r (errnum, buf, sizeof buf);
|
|
|
|
|
2005-07-20 17:51:14 +00:00
|
|
|
(void) __fxprintf (fp, "%s%s%s\n", s, colon, errstring);
|
2001-08-16 05:23:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Print a line on stderr consisting of the text in S, a colon, a space,
|
|
|
|
a message describing the meaning of the contents of `errno' and a newline.
|
|
|
|
If S is NULL or "", the colon and space are omitted. */
|
|
|
|
void
|
|
|
|
perror (const char *s)
|
|
|
|
{
|
2001-09-01 06:10:36 +00:00
|
|
|
int errnum = errno;
|
2001-08-16 05:23:52 +00:00
|
|
|
FILE *fp;
|
|
|
|
int fd = -1;
|
|
|
|
|
2001-08-18 02:49:41 +00:00
|
|
|
|
2001-08-16 05:23:52 +00:00
|
|
|
/* The standard says that 'perror' must not change the orientation
|
|
|
|
of the stream. What is supposed to happen when the stream isn't
|
|
|
|
oriented yet? In this case we'll create a new stream which is
|
|
|
|
using the same underlying file descriptor. */
|
|
|
|
if (__builtin_expect (_IO_fwide (stderr, 0) != 0, 1)
|
2014-11-24 15:59:15 +00:00
|
|
|
|| (fd = __fileno (stderr)) == -1
|
Update.
2002-08-04 Jakub Jelinek <jakub@redhat.com>
* manual/debug.texi: Fix spelling to programmatically.
Reported by <hayastan132@hotmail.com>.
* include/libio.h: Add libc_hidden_proto for __uflow.
* include/stdio.h: Map fopen, fdopen, fclose, fputs, fsetpos, and
fgetpos to _IO_* names.
Add libc_hidden_proto for fileno, fwrite, fseek, fflush_unlocked,
fread_unlocked, fwrite_unlocked, fgets_unlocked, fputs_unlocked.
* include/wchar.h: Add libc_hidden_proto for fputws_unlocked,
putwc_unlocked, vswscanf.
* libio/iolibio.h: Add libc_hidden_proto for _IO_fputs.
* libio/fileno.c: Use <stdio.h> and libc_hidden_def.
* libio/fseek.c: Likewise.
* libio/fmemopen.c: Include "libioP.h". Call _IO_fopencookie and
not fopencookie.
* libio/genops.c (__uflow): Add libc_hidden_def.
* libio/iofflush_u.c (fflush_unlocked): Likewise.
* libio/iofgets_u.c (fgets_unlocked): Likewise.
* libio/iofputs_u.c (fputs_unlocked): Likewise.
* libio/iofputws_u.c (fputws_unlocked): Likewise.
* libio/iofread_u.c (fread_unlocked): Likewise.
* libio/iofwrite_u.c (fwrite_unlocked): Likewise.
* libio/iovswscanf.c (vswscanf): Likewise.
* libio/putwc_u.c (putwc_unlocked): Likewise.
* libio/iofputs.c: Use libc_hidden_def instead of INTDEF.
* malloc/malloc.c: Redirect fwrite calls to _IO_fwrite.
* malloc/mtrace.c: Likewise.
* sunrpc/clnt_perr.c: Remove fputs macro.
* sunrpc/svc_simple.c: Likewise.
* sunrpc/svc_tcp.c: Likewise.
* sunrpc/svc_udp.c: Likewise.
* sunrpc/xdr_rec.c: Likewise.
* sunrpc/xdr_ref.c: Likewise.
* iconv/Makefile: Add CPPFLAGS definitions with -DNOT_in_libc for
iconv_prog, linereader, and charmap-dir.
* locale/Makefile: Likewise for locale and charmap-dir.
* malloc/Makefile: Likewise for memusagestat.
* nscd/Makefile: Likewise for nscd, nscd_conf, and dbg_log.
* sunrpc/Makefile: Likewise for rpc_main.
* sysdeps/unix/sysv/linux/Makefile: Likewise for lddlibc4.
* timezone/Makefile: Likewise for zic.
* stdio-common/perror.c: Avoid multiple calls to fileno_unlocked.
2002-08-04 20:54:20 +00:00
|
|
|
|| (fd = __dup (fd)) == -1
|
2001-08-16 05:23:52 +00:00
|
|
|
|| (fp = fdopen (fd, "w+")) == NULL)
|
|
|
|
{
|
2014-02-10 13:45:42 +00:00
|
|
|
if (__glibc_unlikely (fd != -1))
|
2001-08-17 07:51:36 +00:00
|
|
|
__close (fd);
|
2001-08-16 05:23:52 +00:00
|
|
|
|
|
|
|
/* Use standard error as is. */
|
2001-09-01 06:10:36 +00:00
|
|
|
perror_internal (stderr, s, errnum);
|
2001-08-16 05:23:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We don't have to do any special hacks regarding the file
|
|
|
|
position. Since the stderr stream wasn't used so far we just
|
|
|
|
write to the descriptor. */
|
2001-09-01 06:10:36 +00:00
|
|
|
perror_internal (fp, s, errnum);
|
2011-05-21 04:42:06 +00:00
|
|
|
|
|
|
|
if (_IO_ferror_unlocked (fp))
|
|
|
|
stderr->_flags |= _IO_ERR_SEEN;
|
|
|
|
|
2001-08-16 05:23:52 +00:00
|
|
|
/* Close the stream. */
|
|
|
|
fclose (fp);
|
|
|
|
}
|
1995-02-18 01:27:10 +00:00
|
|
|
}
|
2002-08-10 09:24:53 +00:00
|
|
|
libc_hidden_def (perror)
|