Ignore MAP_VARIABLE in tst-mman-consts.py
[glibc.git] / sysdeps / posix / libc_fatal.c
blob70edcc10c15c0dc45a965d4979c36487f1fedb79
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/>. */
19 #include <atomic.h>
20 #include <errno.h>
21 #include <fcntl.h>
22 #include <ldsodefs.h>
23 #include <paths.h>
24 #include <stdarg.h>
25 #include <stdbool.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sysdep.h>
30 #include <unistd.h>
31 #include <sys/mman.h>
32 #include <sys/uio.h>
33 #include <not-cancel.h>
35 #ifdef FATAL_PREPARE_INCLUDE
36 #include FATAL_PREPARE_INCLUDE
37 #endif
39 #ifndef WRITEV_FOR_FATAL
40 # define WRITEV_FOR_FATAL writev_for_fatal
41 static bool
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;
46 #endif
48 struct str_list
50 const char *str;
51 size_t len;
52 struct str_list *next;
55 /* Abort with an error message. */
56 void
57 __libc_message (const char *fmt, ...)
59 va_list ap;
60 int fd = -1;
62 va_start (ap, fmt);
64 #ifdef FATAL_PREPARE
65 FATAL_PREPARE;
66 #endif
68 if (fd == -1)
69 fd = STDERR_FILENO;
71 struct str_list *list = NULL;
72 int nlist = 0;
74 const char *cp = fmt;
75 while (*cp != '\0')
77 /* Find the next "%s" or the end of the string. */
78 const char *next = cp;
79 while (next[0] != '%' || next[1] != 's')
81 next = __strchrnul (next + 1, '%');
83 if (next[0] == '\0')
84 break;
87 /* Determine what to print. */
88 const char *str;
89 size_t len;
90 if (cp[0] == '%' && cp[1] == 's')
92 str = va_arg (ap, const char *);
93 len = strlen (str);
94 cp += 2;
96 else
98 str = cp;
99 len = next - cp;
100 cp = next;
103 struct str_list *newp = alloca (sizeof (struct str_list));
104 newp->str = str;
105 newp->len = len;
106 newp->next = list;
107 list = newp;
108 ++nlist;
111 if (nlist > 0)
113 struct iovec *iov = alloca (nlist * sizeof (struct iovec));
114 ssize_t total = 0;
116 for (int cnt = nlist - 1; cnt >= 0; --cnt)
118 iov[cnt].iov_base = (char *) list->str;
119 iov[cnt].iov_len = list->len;
120 total += list->len;
121 list = list->next;
124 WRITEV_FOR_FATAL (fd, iov, nlist, total);
126 total = (total + 1 + GLRO(dl_pagesize) - 1) & ~(GLRO(dl_pagesize) - 1);
127 struct abort_msg_s *buf = __mmap (NULL, total,
128 PROT_READ | PROT_WRITE,
129 MAP_ANON | MAP_PRIVATE, -1, 0);
130 if (__glibc_likely (buf != MAP_FAILED))
132 buf->size = total;
133 char *wp = buf->msg;
134 for (int cnt = 0; cnt < nlist; ++cnt)
135 wp = mempcpy (wp, iov[cnt].iov_base, iov[cnt].iov_len);
136 *wp = '\0';
138 /* We have to free the old buffer since the application might
139 catch the SIGABRT signal. */
140 struct abort_msg_s *old = atomic_exchange_acquire (&__abort_msg,
141 buf);
142 if (old != NULL)
143 __munmap (old, old->size);
147 va_end (ap);
149 /* Kill the application. */
150 abort ();
154 void
155 __libc_fatal (const char *message)
157 /* The loop is added only to keep gcc happy. */
158 while (1)
159 __libc_message ("%s", message);
161 libc_hidden_def (__libc_fatal)