1 /* Catch segmentation faults and print backtrace.
2 Copyright (C) 1998-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
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, see
18 <http://www.gnu.org/licenses/>. */
34 /* This file defines macros to access the content of the sigcontext element
35 passed up by the signal handler. */
36 #include <sigcontextinfo.h>
38 /* Get code to possibly dump the content of all registers. */
39 #include <register-dump.h>
41 /* We'll use this a lot. */
42 #define WRITE_STRING(s) write (fd, s, strlen (s))
44 /* Name of the output file. */
45 static const char *fname
;
48 /* We better should not use `strerror' since it can call far too many
49 other functions which might fail. Do it here ourselves. */
51 write_strsignal (int fd
, int signal
)
53 if (signal
< 0 || signal
>= _NSIG
|| _sys_siglist
[signal
] == NULL
)
56 char *ptr
= _itoa_word (signal
, &buf
[sizeof (buf
)], 10, 0);
57 WRITE_STRING ("signal ");
58 write (fd
, buf
, &buf
[sizeof (buf
)] - ptr
);
61 WRITE_STRING (_sys_siglist
[signal
]);
65 /* This function is called when a segmentation fault is caught. The system
66 is in an unstable state now. This means especially that malloc() might
69 catch_segfault (int signal
, SIGCONTEXT ctx
)
76 /* This is the name of the file we are writing to. If none is given
77 or we cannot write to this file write to stderr. */
81 fd
= open (fname
, O_TRUNC
| O_WRONLY
| O_CREAT
, 0666);
86 WRITE_STRING ("*** ");
87 write_strsignal (fd
, signal
);
94 WRITE_STRING ("\nBacktrace:\n");
96 /* Get the backtrace. */
97 arr
= alloca (256 * sizeof (void *));
98 cnt
= backtrace (arr
, 256);
100 /* Now try to locate the PC from signal context in the backtrace.
101 Normally it will be found at arr[2], but it might appear later
102 if there were some signal handler wrappers. Allow a few bytes
103 difference to cope with as many arches as possible. */
104 pc
= (uintptr_t) GET_PC (ctx
);
105 for (i
= 0; i
< cnt
; ++i
)
106 if ((uintptr_t) arr
[i
] >= pc
- 16 && (uintptr_t) arr
[i
] <= pc
+ 16)
109 /* If we haven't found it, better dump full backtrace even including
110 the signal handler frames instead of not dumping anything. */
114 /* Now generate nicely formatted output. */
115 __backtrace_symbols_fd (arr
+ i
, cnt
- i
, fd
);
117 #ifdef HAVE_PROC_SELF
118 /* Now the link map. */
119 int mapfd
= open ("/proc/self/maps", O_RDONLY
);
122 write (fd
, "\nMemory map:\n\n", 14);
127 while ((n
= TEMP_FAILURE_RETRY (read (mapfd
, buf
, sizeof (buf
)))) > 0)
128 TEMP_FAILURE_RETRY (write (fd
, buf
, n
));
134 /* Pass on the signal (so that a core file is produced). */
135 sa
.sa_handler
= SIG_DFL
;
136 sigemptyset (&sa
.sa_mask
);
138 sigaction (signal
, &sa
, NULL
);
144 __attribute__ ((constructor
))
145 install_handler (void)
148 const char *sigs
= getenv ("SEGFAULT_SIGNALS");
151 sa
.sa_handler
= (void *) catch_segfault
;
152 sigemptyset (&sa
.sa_mask
);
153 sa
.sa_flags
= SA_RESTART
;
155 /* Maybe we are expected to use an alternative stack. */
156 if (getenv ("SEGFAULT_USE_ALTSTACK") != 0)
158 void *stack_mem
= malloc (2 * SIGSTKSZ
);
159 struct sigaltstack ss
;
161 if (stack_mem
!= NULL
)
163 ss
.ss_sp
= stack_mem
;
165 ss
.ss_size
= 2 * SIGSTKSZ
;
167 if (sigaltstack (&ss
, NULL
) == 0)
168 sa
.sa_flags
|= SA_ONSTACK
;
173 sigaction (SIGSEGV
, &sa
, NULL
);
174 else if (sigs
[0] == '\0')
175 /* Do not do anything. */
180 int all
= __strcasecmp (sigs
, "all") == 0;
182 #define INSTALL_FOR_SIG(sig, name) \
183 where = __strcasestr (sigs, name); \
184 if (all || (where != NULL \
185 && (where == sigs || !isalnum (where[-1])) \
186 && !isalnum (where[sizeof (name) - 1]))) \
187 sigaction (sig, &sa, NULL);
189 INSTALL_FOR_SIG (SIGSEGV
, "segv");
190 INSTALL_FOR_SIG (SIGILL
, "ill");
192 INSTALL_FOR_SIG (SIGBUS
, "bus");
195 INSTALL_FOR_SIG (SIGSTKFLT
, "stkflt");
197 INSTALL_FOR_SIG (SIGABRT
, "abrt");
198 INSTALL_FOR_SIG (SIGFPE
, "fpe");
201 /* Preserve the output file name if there is any given. */
202 name
= getenv ("SEGFAULT_OUTPUT_NAME");
203 if (name
!= NULL
&& name
[0] != '\0')
205 int ret
= access (name
, R_OK
| W_OK
);
207 if (ret
== 0 || (ret
== -1 && errno
== ENOENT
))
208 fname
= __strdup (name
);