1 /* Copyright (C) 1993,1994,1995,1997,2000,2004,2005
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library 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 GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
30 #include <sys/syslog.h>
32 #include <not-cancel.h>
34 #ifdef FATAL_PREPARE_INCLUDE
35 #include FATAL_PREPARE_INCLUDE
42 struct str_list
*next
;
46 /* Abort with an error message. */
48 __libc_message (int do_abort
, const char *fmt
, ...)
55 va_copy (ap_copy
, ap
);
61 /* Open a descriptor for /dev/tty unless the user explicitly
62 requests errors on standard error. */
63 const char *on_2
= __secure_getenv ("LIBC_FATAL_STDERR_");
64 if (on_2
== NULL
|| *on_2
== '\0')
65 fd
= open_not_cancel_2 (_PATH_TTY
, O_RDWR
| O_NOCTTY
| O_NDELAY
);
70 struct str_list
*list
= NULL
;
76 /* Find the next "%s" or the end of the string. */
77 const char *next
= cp
;
78 while (next
[0] != '%' || next
[1] != 's')
80 next
= __strchrnul (next
+ 1, '%');
86 /* Determine what to print. */
89 if (cp
[0] == '%' && cp
[1] == 's')
91 str
= va_arg (ap
, const char *);
102 struct str_list
*newp
= alloca (sizeof (struct str_list
));
110 bool written
= false;
113 struct iovec
*iov
= alloca (nlist
* sizeof (struct iovec
));
116 for (int cnt
= nlist
- 1; cnt
>= 0; --cnt
)
118 iov
[cnt
].iov_base
= (char *) list
->str
;
119 iov
[cnt
].iov_len
= list
->len
;
124 if (TEMP_FAILURE_RETRY (__writev (fd
, iov
, nlist
)) == total
)
130 /* If we had no success writing the message, use syslog. */
132 vsyslog (LOG_ERR
, fmt
, ap_copy
);
137 /* Kill the application. */
143 __libc_fatal (message
)
146 /* The loop is added only to keep gcc happy. */
148 __libc_message (1, "%s", message
);
150 libc_hidden_def (__libc_fatal
)