forked from Imagelibrary/binutils-gdb
The previous commit describes PR gdb/30547, a segfault when running test-case
gdb.base/vfork-follow-parent.exp on powerpc64 (likewise on s390x).
The root cause for the segmentation fault is that linux_is_uclinux gives an
incorrect result: it returns true instead of false.
So, why does linux_is_uclinux:
...
int
linux_is_uclinux (void)
{
CORE_ADDR dummy;
return (target_auxv_search (AT_NULL, &dummy) > 0
&& target_auxv_search (AT_PAGESZ, &dummy) == 0);
...
return true?
This is because ppc_linux_target_wordsize returns 4 instead of 8, causing
ppc_linux_nat_target::auxv_parse to misinterpret the auxv vector.
So, why does ppc_linux_target_wordsize:
...
int
ppc_linux_target_wordsize (int tid)
{
int wordsize = 4;
/* Check for 64-bit inferior process. This is the case when the host is
64-bit, and in addition the top bit of the MSR register is set. */
long msr;
errno = 0;
msr = (long) ptrace (PTRACE_PEEKUSER, tid, PT_MSR * 8, 0);
if (errno == 0 && ppc64_64bit_inferior_p (msr))
wordsize = 8;
return wordsize;
}
...
return 4?
Specifically, we get this result because because tid == 0, so we get
errno == ESRCH.
The tid == 0 is caused by the switch_to_no_thread in
handle_vfork_child_exec_or_exit:
...
/* Switch to no-thread while running clone_program_space, so
that clone_program_space doesn't want to read the
selected frame of a dead process. */
scoped_restore_current_thread restore_thread;
switch_to_no_thread ();
inf->pspace = new program_space (maybe_new_address_space ());
...
but moving the maybe_new_address_space call to before that gives us the
same result. The tid is no longer 0, but we still get ESRCH because the
thread has exited.
Fix this in handle_vfork_child_exec_or_exit by doing the
maybe_new_address_space call in the context of the vfork parent.
Tested on top of trunk on x86_64-linux and ppc64le-linux.
Tested on top of gdb-14-branch on ppc64-linux.
Co-Authored-By: Simon Marchi <simon.marchi@polymtl.ca>
PR gdb/30547
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30547
98 lines
2.4 KiB
C
98 lines
2.4 KiB
C
/*Copyright (C) 2015-2023 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "gdbsupport/common-defs.h"
|
|
#include "ppc-linux.h"
|
|
#include "nat/gdb_ptrace.h"
|
|
#include <elf.h>
|
|
|
|
#ifdef HAVE_GETAUXVAL
|
|
#include <sys/auxv.h>
|
|
#endif
|
|
|
|
#ifdef __powerpc64__
|
|
|
|
/* Get the HWCAP from the process of GDB or GDBserver. If success,
|
|
save it in *VALP. */
|
|
|
|
static void
|
|
ppc64_host_hwcap (unsigned long *valp)
|
|
{
|
|
#ifdef HAVE_GETAUXVAL
|
|
*valp = getauxval (AT_HWCAP);
|
|
#else
|
|
unsigned long data[2];
|
|
FILE *f = fopen ("/proc/self/auxv", "r");
|
|
|
|
if (f == NULL)
|
|
return;
|
|
|
|
while (fread (data, sizeof (data), 1, f) > 0)
|
|
{
|
|
if (data[0] == AT_HWCAP)
|
|
{
|
|
*valp = data[1];
|
|
break;
|
|
}
|
|
}
|
|
|
|
fclose (f);
|
|
#endif /* HAVE_GETAUXVAL */
|
|
}
|
|
|
|
static inline int
|
|
ppc64_64bit_inferior_p (long msr)
|
|
{
|
|
unsigned long ppc_host_hwcap = 0;
|
|
|
|
/* Get host's HWCAP to check whether the machine is Book E. */
|
|
ppc64_host_hwcap (&ppc_host_hwcap);
|
|
|
|
/* We actually have a 64-bit inferior only if the certain bit of the
|
|
MSR is set. The PowerISA Book III-S MSR is different from the
|
|
PowerISA Book III-E MSR. The Book III-S MSR is 64 bits wide, and
|
|
its MSR[SF] is the bit 0 of a 64-bit value. Book III-E MSR is 32
|
|
bits wide, and its MSR[CM] is the bit 0 of a 32-bit value. */
|
|
if (ppc_host_hwcap & PPC_FEATURE_BOOKE)
|
|
return msr & 0x80000000;
|
|
else
|
|
return msr < 0;
|
|
}
|
|
|
|
#endif
|
|
|
|
int
|
|
ppc_linux_target_wordsize (int tid)
|
|
{
|
|
gdb_assert (tid != 0);
|
|
|
|
int wordsize = 4;
|
|
|
|
/* Check for 64-bit inferior process. This is the case when the host is
|
|
64-bit, and in addition the top bit of the MSR register is set. */
|
|
#ifdef __powerpc64__
|
|
long msr;
|
|
|
|
errno = 0;
|
|
msr = (long) ptrace (PTRACE_PEEKUSER, tid, PT_MSR * 8, 0);
|
|
if (errno == 0 && ppc64_64bit_inferior_p (msr))
|
|
wordsize = 8;
|
|
#endif
|
|
|
|
return wordsize;
|
|
}
|