mirror of
https://sourceware.org/git/glibc.git
synced 2025-04-23 10:27:48 +03:00
If the process is in a bad state, we used to print backtraces in many cases. This is problematic because doing so could involve a lot of work, like loading libgcc_s using the dynamic linker, and this could itself be targeted by exploit writers. For example, if the crashing process was forked from a long-lived process, the addresses in the error message could be used to bypass ASLR. Commit ed421fca42fd9b4cab7c66e77894b8dd7ca57ed0 ("Avoid backtrace from __stack_chk_fail [BZ #12189]"), backtraces where no longer printed because backtrace_and_maps was always called with do_abort == 1. Rather than fixing this logic error, this change removes the backtrace functionality from the sources. With the prevalence of external crash handlers, it does not appear to be particularly useful. The crash handler may also destroy useful information for debugging. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
/* Catastrophic failure reports. Linux version.
|
|
Copyright (C) 1993-2019 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include <errno.h>
|
|
#include <sys/uio.h>
|
|
|
|
static bool
|
|
writev_for_fatal (int fd, const struct iovec *iov, size_t niov, size_t total)
|
|
{
|
|
INTERNAL_SYSCALL_DECL (err);
|
|
ssize_t cnt;
|
|
do
|
|
cnt = INTERNAL_SYSCALL (writev, err, 3, fd, iov, niov);
|
|
while (INTERNAL_SYSCALL_ERROR_P (cnt, err)
|
|
&& INTERNAL_SYSCALL_ERRNO (cnt, err) == EINTR);
|
|
return cnt == total;
|
|
}
|
|
#define WRITEV_FOR_FATAL writev_for_fatal
|
|
|
|
#include <sysdeps/posix/libc_fatal.c>
|