1 /* Native-dependent code for GNU/Linux x86 (i386 and x86-64).
3 Copyright (C) 1999-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "elf/common.h"
23 #include "gdb_proc_service.h"
24 #include "nat/gdb_ptrace.h"
26 #include <sys/procfs.h>
31 #include "i386-linux-nat.h"
33 #include "x86-linux-nat.h"
34 #include "i386-linux-tdep.h"
36 #include "amd64-linux-tdep.h"
38 #include "gdbsupport/x86-xstate.h"
39 #include "nat/linux-btrace.h"
40 #include "nat/linux-nat.h"
41 #include "nat/x86-linux.h"
42 #include "nat/x86-linux-dregs.h"
43 #include "nat/linux-ptrace.h"
45 /* linux_nat_target::low_new_fork implementation. */
48 x86_linux_nat_target::low_new_fork (struct lwp_info
*parent
, pid_t child_pid
)
51 struct x86_debug_reg_state
*parent_state
;
52 struct x86_debug_reg_state
*child_state
;
54 /* NULL means no watchpoint has ever been set in the parent. In
55 that case, there's nothing to do. */
56 if (parent
->arch_private
== NULL
)
59 /* Linux kernel before 2.6.33 commit
60 72f674d203cd230426437cdcf7dd6f681dad8b0d
61 will inherit hardware debug registers from parent
62 on fork/vfork/clone. Newer Linux kernels create such tasks with
63 zeroed debug registers.
65 GDB core assumes the child inherits the watchpoints/hw
66 breakpoints of the parent, and will remove them all from the
67 forked off process. Copy the debug registers mirrors into the
68 new process so that all breakpoints and watchpoints can be
69 removed together. The debug registers mirror will become zeroed
70 in the end before detaching the forked off process, thus making
71 this compatible with older Linux kernels too. */
73 parent_pid
= parent
->ptid
.pid ();
74 parent_state
= x86_debug_reg_state (parent_pid
);
75 child_state
= x86_debug_reg_state (child_pid
);
76 *child_state
= *parent_state
;
80 x86_linux_nat_target::~x86_linux_nat_target ()
84 /* Implement the virtual inf_ptrace_target::post_startup_inferior method. */
87 x86_linux_nat_target::post_startup_inferior (ptid_t ptid
)
90 linux_nat_target::post_startup_inferior (ptid
);
94 /* Value of CS segment register:
96 32bit process: 0x23 */
97 #define AMD64_LINUX_USER64_CS 0x33
99 /* Value of DS segment register:
102 #define AMD64_LINUX_X32_DS 0x2b
105 /* Get Linux/x86 target description from running target. */
107 const struct target_desc
*
108 x86_linux_nat_target::read_description ()
115 static uint64_t xcr0
;
116 uint64_t xcr0_features_bits
;
118 tid
= inferior_ptid
.pid ();
125 /* Get CS register. */
127 cs
= ptrace (PTRACE_PEEKUSER
, tid
,
128 offsetof (struct user_regs_struct
, cs
), 0);
130 perror_with_name (_("Couldn't get CS register"));
132 is_64bit
= cs
== AMD64_LINUX_USER64_CS
;
134 /* Get DS register. */
136 ds
= ptrace (PTRACE_PEEKUSER
, tid
,
137 offsetof (struct user_regs_struct
, ds
), 0);
139 perror_with_name (_("Couldn't get DS register"));
141 is_x32
= ds
== AMD64_LINUX_X32_DS
;
143 if (sizeof (void *) == 4 && is_64bit
&& !is_x32
)
144 error (_("Can't debug 64-bit process with 32-bit GDB"));
146 #elif HAVE_PTRACE_GETFPXREGS
147 if (have_ptrace_getfpxregs
== -1)
149 elf_fpxregset_t fpxregs
;
151 if (ptrace (PTRACE_GETFPXREGS
, tid
, 0, (int) &fpxregs
) < 0)
153 have_ptrace_getfpxregs
= 0;
154 have_ptrace_getregset
= TRIBOOL_FALSE
;
155 return i386_linux_read_description (X86_XSTATE_X87_MASK
);
160 if (have_ptrace_getregset
== TRIBOOL_UNKNOWN
)
162 uint64_t xstateregs
[(X86_XSTATE_SSE_SIZE
/ sizeof (uint64_t))];
165 iov
.iov_base
= xstateregs
;
166 iov
.iov_len
= sizeof (xstateregs
);
168 /* Check if PTRACE_GETREGSET works. */
169 if (ptrace (PTRACE_GETREGSET
, tid
,
170 (unsigned int) NT_X86_XSTATE
, &iov
) < 0)
171 have_ptrace_getregset
= TRIBOOL_FALSE
;
174 have_ptrace_getregset
= TRIBOOL_TRUE
;
176 /* Get XCR0 from XSAVE extended state. */
177 xcr0
= xstateregs
[(I386_LINUX_XSAVE_XCR0_OFFSET
178 / sizeof (uint64_t))];
182 /* Check the native XCR0 only if PTRACE_GETREGSET is available. If
183 PTRACE_GETREGSET is not available then set xcr0_features_bits to
184 zero so that the "no-features" descriptions are returned by the
186 if (have_ptrace_getregset
== TRIBOOL_TRUE
)
187 xcr0_features_bits
= xcr0
& X86_XSTATE_ALL_MASK
;
189 xcr0_features_bits
= 0;
194 return amd64_linux_read_description (xcr0_features_bits
, is_x32
);
199 const struct target_desc
* tdesc
200 = i386_linux_read_description (xcr0_features_bits
);
203 tdesc
= i386_linux_read_description (X86_XSTATE_SSE_MASK
);
208 gdb_assert_not_reached ("failed to return tdesc");
212 /* Enable branch tracing. */
214 struct btrace_target_info
*
215 x86_linux_nat_target::enable_btrace (ptid_t ptid
,
216 const struct btrace_config
*conf
)
218 struct btrace_target_info
*tinfo
= nullptr;
221 tinfo
= linux_enable_btrace (ptid
, conf
);
223 catch (const gdb_exception_error
&exception
)
225 error (_("Could not enable branch tracing for %s: %s"),
226 target_pid_to_str (ptid
).c_str (), exception
.what ());
232 /* Disable branch tracing. */
235 x86_linux_nat_target::disable_btrace (struct btrace_target_info
*tinfo
)
237 enum btrace_error errcode
= linux_disable_btrace (tinfo
);
239 if (errcode
!= BTRACE_ERR_NONE
)
240 error (_("Could not disable branch tracing."));
243 /* Teardown branch tracing. */
246 x86_linux_nat_target::teardown_btrace (struct btrace_target_info
*tinfo
)
249 linux_disable_btrace (tinfo
);
253 x86_linux_nat_target::read_btrace (struct btrace_data
*data
,
254 struct btrace_target_info
*btinfo
,
255 enum btrace_read_type type
)
257 return linux_read_btrace (data
, btinfo
, type
);
260 /* See to_btrace_conf in target.h. */
262 const struct btrace_config
*
263 x86_linux_nat_target::btrace_conf (const struct btrace_target_info
*btinfo
)
265 return linux_btrace_conf (btinfo
);
270 /* Helper for ps_get_thread_area. Sets BASE_ADDR to a pointer to
271 the thread local storage (or its descriptor) and returns PS_OK
272 on success. Returns PS_ERR on failure. */
275 x86_linux_get_thread_area (pid_t pid
, void *addr
, unsigned int *base_addr
)
277 /* NOTE: cagney/2003-08-26: The definition of this buffer is found
278 in the kernel header <asm-i386/ldt.h>. It, after padding, is 4 x
279 4 byte integers in size: `entry_number', `base_addr', `limit',
280 and a bunch of status bits.
282 The values returned by this ptrace call should be part of the
283 regcache buffer, and ps_get_thread_area should channel its
284 request through the regcache. That way remote targets could
285 provide the value using the remote protocol and not this direct
288 Is this function needed? I'm guessing that the `base' is the
289 address of a descriptor that libthread_db uses to find the
290 thread local address base that GDB needs. Perhaps that
291 descriptor is defined by the ABI. Anyway, given that
292 libthread_db calls this function without prompting (gdb
293 requesting tls base) I guess it needs info in there anyway. */
294 unsigned int desc
[4];
296 /* This code assumes that "int" is 32 bits and that
297 GET_THREAD_AREA returns no more than 4 int values. */
298 gdb_assert (sizeof (int) == 4);
300 #ifndef PTRACE_GET_THREAD_AREA
301 #define PTRACE_GET_THREAD_AREA 25
304 if (ptrace (PTRACE_GET_THREAD_AREA
, pid
, addr
, &desc
) < 0)
307 *base_addr
= desc
[1];
312 void _initialize_x86_linux_nat ();
314 _initialize_x86_linux_nat ()
316 /* Initialize the debug register function vectors. */
317 x86_dr_low
.set_control
= x86_linux_dr_set_control
;
318 x86_dr_low
.set_addr
= x86_linux_dr_set_addr
;
319 x86_dr_low
.get_addr
= x86_linux_dr_get_addr
;
320 x86_dr_low
.get_status
= x86_linux_dr_get_status
;
321 x86_dr_low
.get_control
= x86_linux_dr_get_control
;
322 x86_set_debug_register_length (sizeof (void *));