1 /* Error handler for noninteractive utilities
2 Copyright (C) 1990-1998, 2000-2002, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library. Its master source is NOT part of
4 the C library, however. The master source lives in /gd/gnu/lib.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
31 # define mbsrtowcs __mbsrtowcs
34 #if HAVE_VPRINTF || HAVE_DOPRNT || _LIBC
37 # define VA_START(args, lastarg) va_start(args, lastarg)
40 # define VA_START(args, lastarg) va_start(args)
43 # define va_alist a1, a2, a3, a4, a5, a6, a7, a8
44 # define va_dcl char *a1, *a2, *a3, *a4, *a5, *a6, *a7, *a8;
47 #if STDC_HEADERS || _LIBC
57 # define _(String) String
60 /* If NULL, error will flush stdout, then print on stderr the program
61 name, a colon and a space. Otherwise, error will call this
62 function without parameters instead. */
63 void (*error_print_progname
) (
69 /* This variable is incremented each time `error' is called. */
70 unsigned int error_message_count
;
73 /* In the GNU C library, there is a predefined variable for this. */
75 # define program_name program_invocation_name
77 # include <libio/libioP.h>
79 /* In GNU libc we want do not want to use the common name `error' directly.
80 Instead make it a weak alias. */
81 extern void __error (int status
, int errnum
, const char *message
, ...)
82 __attribute__ ((__format__ (__printf__
, 3, 4)));
83 extern void __error_at_line (int status
, int errnum
, const char *file_name
,
84 unsigned int line_number
, const char *message
,
86 __attribute__ ((__format__ (__printf__
, 5, 6)));;
87 # define error __error
88 # define error_at_line __error_at_line
90 # include <libio/iolibio.h>
91 # define fflush(s) INTUSE(_IO_fflush) (s)
93 # define putc(c, fp) INTUSE(_IO_putc) (c, fp)
95 # include <bits/libc-lock.h>
99 # if !HAVE_DECL_STRERROR_R && STRERROR_R_CHAR_P
100 # ifndef HAVE_DECL_STRERROR_R
101 "this configure-time declaration test was not run"
106 /* The calling program should define program_name and set it to the
107 name of the executing program. */
108 extern char *program_name
;
110 # if HAVE_STRERROR_R || defined strerror_r
111 # define __strerror_r strerror_r
114 # ifndef HAVE_DECL_STRERROR
115 "this configure-time declaration test was not run"
117 # if !HAVE_DECL_STRERROR
122 private_strerror (int errnum
)
124 extern char *sys_errlist
[];
127 if (errnum
> 0 && errnum
<= sys_nerr
)
128 return _(sys_errlist
[errnum
]);
129 return _("Unknown system error");
131 # define strerror private_strerror
132 # endif /* HAVE_STRERROR */
133 # endif /* HAVE_STRERROR_R || defined strerror_r */
134 #endif /* not _LIBC */
137 print_errno_message (int errnum
)
141 #if defined HAVE_STRERROR_R || _LIBC
143 # if STRERROR_R_CHAR_P || _LIBC
144 s
= __strerror_r (errnum
, errbuf
, sizeof errbuf
);
146 if (__strerror_r (errnum
, errbuf
, sizeof errbuf
) == 0)
152 s
= strerror (errnum
);
157 s
= _("Unknown system error");
161 if (_IO_fwide (stderr
, 0) > 0)
163 __fwprintf (stderr
, L
": %s", s
);
168 fprintf (stderr
, ": %s", s
);
173 error_tail (int status
, int errnum
, const char *message
, va_list args
)
175 # if HAVE_VPRINTF || _LIBC
177 if (_IO_fwide (stderr
, 0) > 0)
179 # define ALLOCA_LIMIT 2000
180 size_t len
= strlen (message
) + 1;
181 wchar_t *wmessage
= NULL
;
188 if (len
< ALLOCA_LIMIT
)
189 wmessage
= (wchar_t *) alloca (len
* sizeof (wchar_t));
192 if (wmessage
!= NULL
&& len
/ 2 < ALLOCA_LIMIT
)
195 wmessage
= (wchar_t *) realloc (wmessage
,
196 len
* sizeof (wchar_t));
198 if (wmessage
== NULL
)
200 fputws_unlocked (L
"out of memory\n", stderr
);
205 memset (&st
, '\0', sizeof (st
));
208 while ((res
= mbsrtowcs (wmessage
, &tmp
, len
, &st
)) == len
);
210 if (res
== (size_t) -1)
211 /* The string cannot be converted. */
212 wmessage
= (wchar_t *) L
"???";
214 __vfwprintf (stderr
, wmessage
, args
);
218 vfprintf (stderr
, message
, args
);
220 _doprnt (message
, args
, stderr
);
224 ++error_message_count
;
226 print_errno_message (errnum
);
228 if (_IO_fwide (stderr
, 0) > 0)
229 putwc (L
'\n', stderr
);
240 /* Print the program name and error message MESSAGE, which is a printf-style
241 format string with optional args.
242 If ERRNUM is nonzero, print its corresponding system error message.
243 Exit with status STATUS if it is nonzero. */
246 #if defined VA_START && __STDC__
247 error (int status
, int errnum
, const char *message
, ...)
249 error (status
, errnum
, message
, va_alist
)
260 #if defined _LIBC && defined __libc_ptf_call
261 /* We do not want this call to be cut short by a thread
262 cancellation. Therefore disable cancellation for now. */
263 int state
= PTHREAD_CANCEL_ENABLE
;
264 __libc_ptf_call (pthread_setcancelstate
, (PTHREAD_CANCEL_DISABLE
, &state
),
270 _IO_flockfile (stderr
);
272 if (error_print_progname
)
273 (*error_print_progname
) ();
277 if (_IO_fwide (stderr
, 0) > 0)
278 __fwprintf (stderr
, L
"%s: ", program_name
);
281 fprintf (stderr
, "%s: ", program_name
);
285 VA_START (args
, message
);
286 error_tail (status
, errnum
, message
, args
);
288 fprintf (stderr
, message
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
);
290 ++error_message_count
;
292 print_errno_message (errnum
);
300 _IO_funlockfile (stderr
);
301 # ifdef __libc_ptf_call
302 __libc_ptf_call (pthread_setcancelstate
, (state
, NULL
), 0);
307 /* Sometimes we want to have at most one error per line. This
308 variable controls whether this mode is selected or not. */
309 int error_one_per_line
;
312 #if defined VA_START && __STDC__
313 error_at_line (int status
, int errnum
, const char *file_name
,
314 unsigned int line_number
, const char *message
, ...)
316 error_at_line (status
, errnum
, file_name
, line_number
, message
, va_alist
)
319 const char *file_name
;
320 unsigned int line_number
;
329 if (error_one_per_line
)
331 static const char *old_file_name
;
332 static unsigned int old_line_number
;
334 if (old_line_number
== line_number
335 && (file_name
== old_file_name
336 || strcmp (old_file_name
, file_name
) == 0))
337 /* Simply return and print nothing. */
340 old_file_name
= file_name
;
341 old_line_number
= line_number
;
344 #if defined _LIBC && defined __libc_ptf_call
345 /* We do not want this call to be cut short by a thread
346 cancellation. Therefore disable cancellation for now. */
347 int state
= PTHREAD_CANCEL_ENABLE
;
348 __libc_ptf_call (pthread_setcancelstate
, (PTHREAD_CANCEL_DISABLE
, &state
),
354 _IO_flockfile (stderr
);
356 if (error_print_progname
)
357 (*error_print_progname
) ();
361 if (_IO_fwide (stderr
, 0) > 0)
362 __fwprintf (stderr
, L
"%s: ", program_name
);
365 fprintf (stderr
, "%s:", program_name
);
368 if (file_name
!= NULL
)
371 if (_IO_fwide (stderr
, 0) > 0)
372 __fwprintf (stderr
, L
"%s:%d: ", file_name
, line_number
);
375 fprintf (stderr
, "%s:%d: ", file_name
, line_number
);
379 VA_START (args
, message
);
380 error_tail (status
, errnum
, message
, args
);
382 fprintf (stderr
, message
, a1
, a2
, a3
, a4
, a5
, a6
, a7
, a8
);
384 ++error_message_count
;
386 print_errno_message (errnum
);
394 _IO_funlockfile (stderr
);
395 # ifdef __libc_ptf_call
396 __libc_ptf_call (pthread_setcancelstate
, (state
, NULL
), 0);
402 /* Make the weak alias. */
404 # undef error_at_line
405 weak_alias (__error
, error
)
406 weak_alias (__error_at_line
, error_at_line
)