1 /* Error handler for noninteractive utilities
2 Copyright (C) 1990-1998, 2000-2007, 2009-2011 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
31 #if !_LIBC && ENABLE_NLS
33 # define _(msgid) gettext (msgid)
41 # define mbsrtowcs __mbsrtowcs
45 # include "unlocked-io.h"
49 # define _(String) String
52 /* If NULL, error will flush stdout, then print on stderr the program
53 name, a colon and a space. Otherwise, error will call this
54 function without parameters instead. */
55 void (*error_print_progname
) (void);
57 /* This variable is incremented each time `error' is called. */
58 unsigned int error_message_count
;
61 /* In the GNU C library, there is a predefined variable for this. */
63 # define program_name program_invocation_name
66 # include <libio/libioP.h>
68 /* In GNU libc we want do not want to use the common name `error' directly.
69 Instead make it a weak alias. */
70 extern void __error (int status
, int errnum
, const char *message
, ...)
71 __attribute__ ((__format__ (__printf__
, 3, 4)));
72 extern void __error_at_line (int status
, int errnum
, const char *file_name
,
73 unsigned int line_number
, const char *message
,
75 __attribute__ ((__format__ (__printf__
, 5, 6)));;
76 # define error __error
77 # define error_at_line __error_at_line
79 # include <libio/iolibio.h>
80 # define fflush(s) INTUSE(_IO_fflush) (s)
82 # define putc(c, fp) INTUSE(_IO_putc) (c, fp)
84 # include <bits/libc-lock.h>
91 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
92 /* Get declarations of the Win32 API functions. */
93 # define WIN32_LEAN_AND_MEAN
97 /* The gnulib override of fcntl is not needed in this file. */
100 # if !HAVE_DECL_STRERROR_R
101 # ifndef HAVE_DECL_STRERROR_R
102 "this configure-time declaration test was not run"
104 # if STRERROR_R_CHAR_P
111 /* The calling program should define program_name and set it to the
112 name of the executing program. */
113 extern char *program_name
;
115 # if HAVE_STRERROR_R || defined strerror_r
116 # define __strerror_r strerror_r
117 # endif /* HAVE_STRERROR_R || defined strerror_r */
118 #endif /* not _LIBC */
121 /* Return non-zero if FD is open. */
125 # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
126 /* On Win32: The initial state of unassigned standard file descriptors is
127 that they are open but point to an INVALID_HANDLE_VALUE. There is no
128 fcntl, and the gnulib replacement fcntl does not support F_GETFL. */
129 return (HANDLE
) _get_osfhandle (fd
) != INVALID_HANDLE_VALUE
;
132 # error Please port fcntl to your platform
134 return 0 <= fcntl (fd
, F_GETFL
);
145 # if GNULIB_FREOPEN_SAFER
146 /* Use of gnulib's freopen-safer module normally ensures that
148 whenever stdout is open. */
149 stdout_fd
= STDOUT_FILENO
;
151 /* POSIX states that fileno (stdout) after fclose is unspecified. But in
152 practice it is not a problem, because stdout is statically allocated and
153 the fd of a FILE stream is stored as a field in its allocated memory. */
154 stdout_fd
= fileno (stdout
);
156 /* POSIX states that fflush (stdout) after fclose is unspecified; it
157 is safe in glibc, but not on all other platforms. fflush (NULL)
158 is always defined, but too draconian. */
159 if (0 <= stdout_fd
&& is_open (stdout_fd
))
165 print_errno_message (int errnum
)
169 #if defined HAVE_STRERROR_R || _LIBC
171 # if STRERROR_R_CHAR_P || _LIBC
172 s
= __strerror_r (errnum
, errbuf
, sizeof errbuf
);
174 if (__strerror_r (errnum
, errbuf
, sizeof errbuf
) == 0)
180 s
= strerror (errnum
);
185 s
= _("Unknown system error");
189 __fxprintf (NULL
, ": %s", s
);
191 fprintf (stderr
, ": %s", s
);
196 error_tail (int status
, int errnum
, const char *message
, va_list args
)
199 if (_IO_fwide (stderr
, 0) > 0)
201 # define ALLOCA_LIMIT 2000
202 size_t len
= strlen (message
) + 1;
203 wchar_t *wmessage
= NULL
;
207 bool use_malloc
= false;
211 if (__libc_use_alloca (len
* sizeof (wchar_t)))
212 wmessage
= (wchar_t *) alloca (len
* sizeof (wchar_t));
218 wchar_t *p
= (wchar_t *) realloc (wmessage
,
219 len
* sizeof (wchar_t));
223 fputws_unlocked (L
"out of memory\n", stderr
);
230 memset (&st
, '\0', sizeof (st
));
233 res
= mbsrtowcs (wmessage
, &tmp
, len
, &st
);
237 if (__builtin_expect (len
>= SIZE_MAX
/ 2, 0))
239 /* This really should not happen if everything is fine. */
247 if (res
== (size_t) -1)
249 /* The string cannot be converted. */
255 wmessage
= (wchar_t *) L
"???";
258 __vfwprintf (stderr
, wmessage
, args
);
265 vfprintf (stderr
, message
, args
);
268 ++error_message_count
;
270 print_errno_message (errnum
);
272 __fxprintf (NULL
, "\n");
282 /* Print the program name and error message MESSAGE, which is a printf-style
283 format string with optional args.
284 If ERRNUM is nonzero, print its corresponding system error message.
285 Exit with status STATUS if it is nonzero. */
287 error (int status
, int errnum
, const char *message
, ...)
291 #if defined _LIBC && defined __libc_ptf_call
292 /* We do not want this call to be cut short by a thread
293 cancellation. Therefore disable cancellation for now. */
294 int state
= PTHREAD_CANCEL_ENABLE
;
295 __libc_ptf_call (pthread_setcancelstate
, (PTHREAD_CANCEL_DISABLE
, &state
),
301 _IO_flockfile (stderr
);
303 if (error_print_progname
)
304 (*error_print_progname
) ();
308 __fxprintf (NULL
, "%s: ", program_name
);
310 fprintf (stderr
, "%s: ", program_name
);
314 va_start (args
, message
);
315 error_tail (status
, errnum
, message
, args
);
318 _IO_funlockfile (stderr
);
319 # ifdef __libc_ptf_call
320 __libc_ptf_call (pthread_setcancelstate
, (state
, NULL
), 0);
325 /* Sometimes we want to have at most one error per line. This
326 variable controls whether this mode is selected or not. */
327 int error_one_per_line
;
330 error_at_line (int status
, int errnum
, const char *file_name
,
331 unsigned int line_number
, const char *message
, ...)
335 if (error_one_per_line
)
337 static const char *old_file_name
;
338 static unsigned int old_line_number
;
340 if (old_line_number
== line_number
341 && (file_name
== old_file_name
342 || strcmp (old_file_name
, file_name
) == 0))
343 /* Simply return and print nothing. */
346 old_file_name
= file_name
;
347 old_line_number
= line_number
;
350 #if defined _LIBC && defined __libc_ptf_call
351 /* We do not want this call to be cut short by a thread
352 cancellation. Therefore disable cancellation for now. */
353 int state
= PTHREAD_CANCEL_ENABLE
;
354 __libc_ptf_call (pthread_setcancelstate
, (PTHREAD_CANCEL_DISABLE
, &state
),
360 _IO_flockfile (stderr
);
362 if (error_print_progname
)
363 (*error_print_progname
) ();
367 __fxprintf (NULL
, "%s:", program_name
);
369 fprintf (stderr
, "%s:", program_name
);
374 __fxprintf (NULL
, file_name
!= NULL
? "%s:%d: " : " ",
375 file_name
, line_number
);
377 fprintf (stderr
, file_name
!= NULL
? "%s:%d: " : " ",
378 file_name
, line_number
);
381 va_start (args
, message
);
382 error_tail (status
, errnum
, message
, args
);
385 _IO_funlockfile (stderr
);
386 # ifdef __libc_ptf_call
387 __libc_ptf_call (pthread_setcancelstate
, (state
, NULL
), 0);
393 /* Make the weak alias. */
395 # undef error_at_line
396 weak_alias (__error
, error
)
397 weak_alias (__error_at_line
, error_at_line
)