1 /* Catastrophic failure reports. Generic POSIX.1 version.
2 Copyright (C) 1993-2023 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, see
17 <https://www.gnu.org/licenses/>. */
33 #include <not-cancel.h>
35 #ifdef FATAL_PREPARE_INCLUDE
36 #include FATAL_PREPARE_INCLUDE
39 #ifndef WRITEV_FOR_FATAL
40 # define WRITEV_FOR_FATAL writev_for_fatal
42 writev_for_fatal (int fd
, const struct iovec
*iov
, size_t niov
, size_t total
)
44 return TEMP_FAILURE_RETRY (__writev (fd
, iov
, niov
)) == total
;
48 /* Abort with an error message. */
50 __libc_message_impl (const char *fmt
, ...)
62 struct iovec iov
[LIBC_MESSAGE_MAX_ARGS
* 2 - 1];
70 /* Find the next "%s" or the end of the string. */
71 const char *next
= cp
;
72 while (next
[0] != '%' || next
[1] != 's')
74 next
= __strchrnul (next
+ 1, '%');
80 /* Determine what to print. */
83 if (cp
[0] == '%' && cp
[1] == 's')
85 str
= va_arg (ap
, const char *);
96 iov
[iovcnt
].iov_base
= (char *) str
;
97 iov
[iovcnt
].iov_len
= len
;
105 WRITEV_FOR_FATAL (fd
, iov
, iovcnt
, total
);
107 total
= (total
+ 1 + GLRO(dl_pagesize
) - 1) & ~(GLRO(dl_pagesize
) - 1);
108 struct abort_msg_s
*buf
= __mmap (NULL
, total
,
109 PROT_READ
| PROT_WRITE
,
110 MAP_ANON
| MAP_PRIVATE
, -1, 0);
111 if (__glibc_likely (buf
!= MAP_FAILED
))
115 for (int cnt
= 0; cnt
< iovcnt
; ++cnt
)
116 wp
= mempcpy (wp
, iov
[cnt
].iov_base
, iov
[cnt
].iov_len
);
119 /* We have to free the old buffer since the application might
120 catch the SIGABRT signal. */
121 struct abort_msg_s
*old
= atomic_exchange_acquire (&__abort_msg
,
124 __munmap (old
, old
->size
);
128 /* Kill the application. */
134 __libc_fatal (const char *message
)
136 /* The loop is added only to keep gcc happy. */
138 __libc_message ("%s", message
);
140 libc_hidden_def (__libc_fatal
)