Move aarch64_linux_new_thread to nat/aarch64-linux.c
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-aarch64-low.c
CommitLineData
176eb98c
MS
1/* GNU/Linux/AArch64 specific low level interface, for the remote server for
2 GDB.
3
32d0add0 4 Copyright (C) 2009-2015 Free Software Foundation, Inc.
176eb98c
MS
5 Contributed by ARM Ltd.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22#include "server.h"
23#include "linux-low.h"
db3cb7cb 24#include "nat/aarch64-linux.h"
554717a3 25#include "nat/aarch64-linux-hw-point.h"
3b53ae99 26#include "linux-aarch32-low.h"
176eb98c
MS
27#include "elf/common.h"
28
29#include <signal.h>
30#include <sys/user.h>
5826e159 31#include "nat/gdb_ptrace.h"
e9dae05e 32#include <asm/ptrace.h>
176eb98c
MS
33#include <sys/uio.h>
34
35#include "gdb_proc_service.h"
36
37/* Defined in auto-generated files. */
38void init_registers_aarch64 (void);
3aee8918 39extern const struct target_desc *tdesc_aarch64;
176eb98c 40
176eb98c
MS
41#ifdef HAVE_SYS_REG_H
42#include <sys/reg.h>
43#endif
44
45#define AARCH64_X_REGS_NUM 31
46#define AARCH64_V_REGS_NUM 32
47#define AARCH64_X0_REGNO 0
48#define AARCH64_SP_REGNO 31
49#define AARCH64_PC_REGNO 32
50#define AARCH64_CPSR_REGNO 33
51#define AARCH64_V0_REGNO 34
bf330350
CU
52#define AARCH64_FPSR_REGNO (AARCH64_V0_REGNO + AARCH64_V_REGS_NUM)
53#define AARCH64_FPCR_REGNO (AARCH64_V0_REGNO + AARCH64_V_REGS_NUM + 1)
176eb98c 54
bf330350 55#define AARCH64_NUM_REGS (AARCH64_V0_REGNO + AARCH64_V_REGS_NUM + 2)
176eb98c 56
176eb98c
MS
57/* Per-process arch-specific data we want to keep. */
58
59struct arch_process_info
60{
61 /* Hardware breakpoint/watchpoint data.
62 The reason for them to be per-process rather than per-thread is
63 due to the lack of information in the gdbserver environment;
64 gdbserver is not told that whether a requested hardware
65 breakpoint/watchpoint is thread specific or not, so it has to set
66 each hw bp/wp for every thread in the current process. The
67 higher level bp/wp management in gdb will resume a thread if a hw
68 bp/wp trap is not expected for it. Since the hw bp/wp setting is
69 same for each thread, it is reasonable for the data to live here.
70 */
71 struct aarch64_debug_reg_state debug_reg_state;
72};
73
3b53ae99
YQ
74/* Return true if the size of register 0 is 8 byte. */
75
76static int
77is_64bit_tdesc (void)
78{
79 struct regcache *regcache = get_thread_regcache (current_thread, 0);
80
81 return register_size (regcache->tdesc, 0) == 8;
82}
83
421530db
PL
84/* Implementation of linux_target_ops method "cannot_store_register". */
85
176eb98c
MS
86static int
87aarch64_cannot_store_register (int regno)
88{
89 return regno >= AARCH64_NUM_REGS;
90}
91
421530db
PL
92/* Implementation of linux_target_ops method "cannot_fetch_register". */
93
176eb98c
MS
94static int
95aarch64_cannot_fetch_register (int regno)
96{
97 return regno >= AARCH64_NUM_REGS;
98}
99
100static void
101aarch64_fill_gregset (struct regcache *regcache, void *buf)
102{
103 struct user_pt_regs *regset = buf;
104 int i;
105
106 for (i = 0; i < AARCH64_X_REGS_NUM; i++)
107 collect_register (regcache, AARCH64_X0_REGNO + i, &regset->regs[i]);
108 collect_register (regcache, AARCH64_SP_REGNO, &regset->sp);
109 collect_register (regcache, AARCH64_PC_REGNO, &regset->pc);
110 collect_register (regcache, AARCH64_CPSR_REGNO, &regset->pstate);
111}
112
113static void
114aarch64_store_gregset (struct regcache *regcache, const void *buf)
115{
116 const struct user_pt_regs *regset = buf;
117 int i;
118
119 for (i = 0; i < AARCH64_X_REGS_NUM; i++)
120 supply_register (regcache, AARCH64_X0_REGNO + i, &regset->regs[i]);
121 supply_register (regcache, AARCH64_SP_REGNO, &regset->sp);
122 supply_register (regcache, AARCH64_PC_REGNO, &regset->pc);
123 supply_register (regcache, AARCH64_CPSR_REGNO, &regset->pstate);
124}
125
126static void
127aarch64_fill_fpregset (struct regcache *regcache, void *buf)
128{
129 struct user_fpsimd_state *regset = buf;
130 int i;
131
132 for (i = 0; i < AARCH64_V_REGS_NUM; i++)
133 collect_register (regcache, AARCH64_V0_REGNO + i, &regset->vregs[i]);
bf330350
CU
134 collect_register (regcache, AARCH64_FPSR_REGNO, &regset->fpsr);
135 collect_register (regcache, AARCH64_FPCR_REGNO, &regset->fpcr);
176eb98c
MS
136}
137
138static void
139aarch64_store_fpregset (struct regcache *regcache, const void *buf)
140{
141 const struct user_fpsimd_state *regset = buf;
142 int i;
143
144 for (i = 0; i < AARCH64_V_REGS_NUM; i++)
145 supply_register (regcache, AARCH64_V0_REGNO + i, &regset->vregs[i]);
bf330350
CU
146 supply_register (regcache, AARCH64_FPSR_REGNO, &regset->fpsr);
147 supply_register (regcache, AARCH64_FPCR_REGNO, &regset->fpcr);
176eb98c
MS
148}
149
176eb98c
MS
150/* Enable miscellaneous debugging output. The name is historical - it
151 was originally used to debug LinuxThreads support. */
152extern int debug_threads;
153
421530db
PL
154/* Implementation of linux_target_ops method "get_pc". */
155
176eb98c
MS
156static CORE_ADDR
157aarch64_get_pc (struct regcache *regcache)
158{
8a7e4587
YQ
159 if (register_size (regcache->tdesc, 0) == 8)
160 {
161 unsigned long pc;
162
163 collect_register_by_name (regcache, "pc", &pc);
164 if (debug_threads)
165 debug_printf ("stop pc is %08lx\n", pc);
166 return pc;
167 }
168 else
169 {
170 unsigned int pc;
171
172 collect_register_by_name (regcache, "pc", &pc);
173 if (debug_threads)
174 debug_printf ("stop pc is %04x\n", pc);
175 return pc;
176 }
176eb98c
MS
177}
178
421530db
PL
179/* Implementation of linux_target_ops method "set_pc". */
180
176eb98c
MS
181static void
182aarch64_set_pc (struct regcache *regcache, CORE_ADDR pc)
183{
8a7e4587
YQ
184 if (register_size (regcache->tdesc, 0) == 8)
185 {
186 unsigned long newpc = pc;
187 supply_register_by_name (regcache, "pc", &newpc);
188 }
189 else
190 {
191 unsigned int newpc = pc;
192 supply_register_by_name (regcache, "pc", &newpc);
193 }
176eb98c
MS
194}
195
176eb98c
MS
196#define aarch64_breakpoint_len 4
197
37d66942
PL
198/* AArch64 BRK software debug mode instruction.
199 This instruction needs to match gdb/aarch64-tdep.c
200 (aarch64_default_breakpoint). */
201static const gdb_byte aarch64_breakpoint[] = {0x00, 0x00, 0x20, 0xd4};
176eb98c 202
421530db
PL
203/* Implementation of linux_target_ops method "breakpoint_at". */
204
176eb98c
MS
205static int
206aarch64_breakpoint_at (CORE_ADDR where)
207{
37d66942 208 gdb_byte insn[aarch64_breakpoint_len];
176eb98c 209
37d66942
PL
210 (*the_target->read_memory) (where, (unsigned char *) &insn,
211 aarch64_breakpoint_len);
212 if (memcmp (insn, aarch64_breakpoint, aarch64_breakpoint_len) == 0)
176eb98c
MS
213 return 1;
214
215 return 0;
216}
217
176eb98c
MS
218static void
219aarch64_init_debug_reg_state (struct aarch64_debug_reg_state *state)
220{
221 int i;
222
223 for (i = 0; i < AARCH64_HBP_MAX_NUM; ++i)
224 {
225 state->dr_addr_bp[i] = 0;
226 state->dr_ctrl_bp[i] = 0;
227 state->dr_ref_count_bp[i] = 0;
228 }
229
230 for (i = 0; i < AARCH64_HWP_MAX_NUM; ++i)
231 {
232 state->dr_addr_wp[i] = 0;
233 state->dr_ctrl_wp[i] = 0;
234 state->dr_ref_count_wp[i] = 0;
235 }
236}
237
176eb98c
MS
238/* Return the pointer to the debug register state structure in the
239 current process' arch-specific data area. */
240
db3cb7cb 241struct aarch64_debug_reg_state *
88e2cf7e 242aarch64_get_debug_reg_state (pid_t pid)
176eb98c 243{
88e2cf7e 244 struct process_info *proc = find_process_pid (pid);
176eb98c 245
fe978cb0 246 return &proc->priv->arch_private->debug_reg_state;
176eb98c
MS
247}
248
421530db
PL
249/* Implementation of linux_target_ops method "supports_z_point_type". */
250
4ff0d3d8
PA
251static int
252aarch64_supports_z_point_type (char z_type)
253{
254 switch (z_type)
255 {
96c97461 256 case Z_PACKET_SW_BP:
6085d6f6
YQ
257 {
258 if (!extended_protocol && is_64bit_tdesc ())
259 {
260 /* Only enable Z0 packet in non-multi-arch debugging. If
261 extended protocol is used, don't enable Z0 packet because
262 GDBserver may attach to 32-bit process. */
263 return 1;
264 }
265 else
266 {
267 /* Disable Z0 packet so that GDBserver doesn't have to handle
268 different breakpoint instructions (aarch64, arm, thumb etc)
269 in multi-arch debugging. */
270 return 0;
271 }
272 }
4ff0d3d8
PA
273 case Z_PACKET_HW_BP:
274 case Z_PACKET_WRITE_WP:
275 case Z_PACKET_READ_WP:
276 case Z_PACKET_ACCESS_WP:
277 return 1;
278 default:
4ff0d3d8
PA
279 return 0;
280 }
281}
282
421530db 283/* Implementation of linux_target_ops method "insert_point".
176eb98c 284
421530db
PL
285 It actually only records the info of the to-be-inserted bp/wp;
286 the actual insertion will happen when threads are resumed. */
176eb98c
MS
287
288static int
802e8e6d
PA
289aarch64_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
290 int len, struct raw_breakpoint *bp)
176eb98c
MS
291{
292 int ret;
4ff0d3d8 293 enum target_hw_bp_type targ_type;
88e2cf7e
YQ
294 struct aarch64_debug_reg_state *state
295 = aarch64_get_debug_reg_state (pid_of (current_thread));
4ff0d3d8 296
c5e92cca 297 if (show_debug_regs)
176eb98c
MS
298 fprintf (stderr, "insert_point on entry (addr=0x%08lx, len=%d)\n",
299 (unsigned long) addr, len);
300
802e8e6d
PA
301 /* Determine the type from the raw breakpoint type. */
302 targ_type = raw_bkpt_type_to_target_hw_bp_type (type);
176eb98c
MS
303
304 if (targ_type != hw_execute)
305 ret =
c67ca4de
YQ
306 aarch64_handle_watchpoint (targ_type, addr, len, 1 /* is_insert */,
307 state);
176eb98c
MS
308 else
309 ret =
c67ca4de
YQ
310 aarch64_handle_breakpoint (targ_type, addr, len, 1 /* is_insert */,
311 state);
176eb98c 312
60a191ed 313 if (show_debug_regs)
88e2cf7e
YQ
314 aarch64_show_debug_reg_state (state, "insert_point", addr, len,
315 targ_type);
176eb98c
MS
316
317 return ret;
318}
319
421530db 320/* Implementation of linux_target_ops method "remove_point".
176eb98c 321
421530db
PL
322 It actually only records the info of the to-be-removed bp/wp,
323 the actual removal will be done when threads are resumed. */
176eb98c
MS
324
325static int
802e8e6d
PA
326aarch64_remove_point (enum raw_bkpt_type type, CORE_ADDR addr,
327 int len, struct raw_breakpoint *bp)
176eb98c
MS
328{
329 int ret;
4ff0d3d8 330 enum target_hw_bp_type targ_type;
88e2cf7e
YQ
331 struct aarch64_debug_reg_state *state
332 = aarch64_get_debug_reg_state (pid_of (current_thread));
4ff0d3d8 333
c5e92cca 334 if (show_debug_regs)
176eb98c
MS
335 fprintf (stderr, "remove_point on entry (addr=0x%08lx, len=%d)\n",
336 (unsigned long) addr, len);
337
802e8e6d
PA
338 /* Determine the type from the raw breakpoint type. */
339 targ_type = raw_bkpt_type_to_target_hw_bp_type (type);
176eb98c
MS
340
341 /* Set up state pointers. */
342 if (targ_type != hw_execute)
343 ret =
c67ca4de
YQ
344 aarch64_handle_watchpoint (targ_type, addr, len, 0 /* is_insert */,
345 state);
176eb98c
MS
346 else
347 ret =
c67ca4de
YQ
348 aarch64_handle_breakpoint (targ_type, addr, len, 0 /* is_insert */,
349 state);
176eb98c 350
60a191ed 351 if (show_debug_regs)
88e2cf7e
YQ
352 aarch64_show_debug_reg_state (state, "remove_point", addr, len,
353 targ_type);
176eb98c
MS
354
355 return ret;
356}
357
421530db 358/* Implementation of linux_target_ops method "stopped_data_address". */
176eb98c
MS
359
360static CORE_ADDR
361aarch64_stopped_data_address (void)
362{
363 siginfo_t siginfo;
364 int pid, i;
365 struct aarch64_debug_reg_state *state;
366
0bfdf32f 367 pid = lwpid_of (current_thread);
176eb98c
MS
368
369 /* Get the siginfo. */
370 if (ptrace (PTRACE_GETSIGINFO, pid, NULL, &siginfo) != 0)
371 return (CORE_ADDR) 0;
372
373 /* Need to be a hardware breakpoint/watchpoint trap. */
374 if (siginfo.si_signo != SIGTRAP
375 || (siginfo.si_code & 0xffff) != 0x0004 /* TRAP_HWBKPT */)
376 return (CORE_ADDR) 0;
377
378 /* Check if the address matches any watched address. */
88e2cf7e 379 state = aarch64_get_debug_reg_state (pid_of (current_thread));
176eb98c
MS
380 for (i = aarch64_num_wp_regs - 1; i >= 0; --i)
381 {
382 const unsigned int len = aarch64_watchpoint_length (state->dr_ctrl_wp[i]);
383 const CORE_ADDR addr_trap = (CORE_ADDR) siginfo.si_addr;
384 const CORE_ADDR addr_watch = state->dr_addr_wp[i];
385 if (state->dr_ref_count_wp[i]
386 && DR_CONTROL_ENABLED (state->dr_ctrl_wp[i])
387 && addr_trap >= addr_watch
388 && addr_trap < addr_watch + len)
389 return addr_trap;
390 }
391
392 return (CORE_ADDR) 0;
393}
394
421530db 395/* Implementation of linux_target_ops method "stopped_by_watchpoint". */
176eb98c
MS
396
397static int
398aarch64_stopped_by_watchpoint (void)
399{
400 if (aarch64_stopped_data_address () != 0)
401 return 1;
402 else
403 return 0;
404}
405
406/* Fetch the thread-local storage pointer for libthread_db. */
407
408ps_err_e
55fac6e0 409ps_get_thread_area (const struct ps_prochandle *ph,
176eb98c
MS
410 lwpid_t lwpid, int idx, void **base)
411{
55fac6e0
MS
412 struct iovec iovec;
413 uint64_t reg;
414
415 iovec.iov_base = &reg;
416 iovec.iov_len = sizeof (reg);
417
418 if (ptrace (PTRACE_GETREGSET, lwpid, NT_ARM_TLS, &iovec) != 0)
176eb98c
MS
419 return PS_ERR;
420
421 /* IDX is the bias from the thread pointer to the beginning of the
422 thread descriptor. It has to be subtracted due to implementation
423 quirks in libthread_db. */
55fac6e0 424 *base = (void *) (reg - idx);
176eb98c
MS
425
426 return PS_OK;
427}
428
421530db 429/* Implementation of linux_target_ops method "linux_new_process". */
176eb98c
MS
430
431static struct arch_process_info *
432aarch64_linux_new_process (void)
433{
434 struct arch_process_info *info = xcalloc (1, sizeof (*info));
435
436 aarch64_init_debug_reg_state (&info->debug_reg_state);
437
438 return info;
439}
440
421530db
PL
441/* Implementation of linux_target_ops method "linux_new_fork". */
442
3a8a0396
DB
443static void
444aarch64_linux_new_fork (struct process_info *parent,
445 struct process_info *child)
446{
447 /* These are allocated by linux_add_process. */
61a7418c
DB
448 gdb_assert (parent->priv != NULL
449 && parent->priv->arch_private != NULL);
450 gdb_assert (child->priv != NULL
451 && child->priv->arch_private != NULL);
3a8a0396
DB
452
453 /* Linux kernel before 2.6.33 commit
454 72f674d203cd230426437cdcf7dd6f681dad8b0d
455 will inherit hardware debug registers from parent
456 on fork/vfork/clone. Newer Linux kernels create such tasks with
457 zeroed debug registers.
458
459 GDB core assumes the child inherits the watchpoints/hw
460 breakpoints of the parent, and will remove them all from the
461 forked off process. Copy the debug registers mirrors into the
462 new process so that all breakpoints and watchpoints can be
463 removed together. The debug registers mirror will become zeroed
464 in the end before detaching the forked off process, thus making
465 this compatible with older Linux kernels too. */
466
61a7418c 467 *child->priv->arch_private = *parent->priv->arch_private;
3a8a0396
DB
468}
469
3b53ae99
YQ
470/* Return the right target description according to the ELF file of
471 current thread. */
472
473static const struct target_desc *
474aarch64_linux_read_description (void)
475{
476 unsigned int machine;
477 int is_elf64;
478 int tid;
479
480 tid = lwpid_of (current_thread);
481
482 is_elf64 = linux_pid_exe_is_elf_64_file (tid, &machine);
483
484 if (is_elf64)
485 return tdesc_aarch64;
486 else
487 return tdesc_arm_with_neon;
488}
489
421530db
PL
490/* Implementation of linux_target_ops method "arch_setup". */
491
176eb98c
MS
492static void
493aarch64_arch_setup (void)
494{
3b53ae99 495 current_process ()->tdesc = aarch64_linux_read_description ();
176eb98c 496
af1b22f3 497 aarch64_linux_get_debug_reg_capacity (lwpid_of (current_thread));
176eb98c
MS
498}
499
3aee8918 500static struct regset_info aarch64_regsets[] =
176eb98c
MS
501{
502 { PTRACE_GETREGSET, PTRACE_SETREGSET, NT_PRSTATUS,
503 sizeof (struct user_pt_regs), GENERAL_REGS,
504 aarch64_fill_gregset, aarch64_store_gregset },
505 { PTRACE_GETREGSET, PTRACE_SETREGSET, NT_FPREGSET,
506 sizeof (struct user_fpsimd_state), FP_REGS,
507 aarch64_fill_fpregset, aarch64_store_fpregset
508 },
509 { 0, 0, 0, -1, -1, NULL, NULL }
510};
511
3aee8918
PA
512static struct regsets_info aarch64_regsets_info =
513 {
514 aarch64_regsets, /* regsets */
515 0, /* num_regsets */
516 NULL, /* disabled_regsets */
517 };
518
3b53ae99 519static struct regs_info regs_info_aarch64 =
3aee8918
PA
520 {
521 NULL, /* regset_bitmap */
c2d65f38 522 NULL, /* usrregs */
3aee8918
PA
523 &aarch64_regsets_info,
524 };
525
421530db
PL
526/* Implementation of linux_target_ops method "regs_info". */
527
3aee8918
PA
528static const struct regs_info *
529aarch64_regs_info (void)
530{
3b53ae99
YQ
531 if (is_64bit_tdesc ())
532 return &regs_info_aarch64;
533 else
534 return &regs_info_aarch32;
3aee8918
PA
535}
536
7671bf47
PL
537/* Implementation of linux_target_ops method "supports_tracepoints". */
538
539static int
540aarch64_supports_tracepoints (void)
541{
524b57e6
YQ
542 if (current_thread == NULL)
543 return 1;
544 else
545 {
546 /* We don't support tracepoints on aarch32 now. */
547 return is_64bit_tdesc ();
548 }
7671bf47
PL
549}
550
d1d0aea1
PL
551/* Implementation of linux_target_ops method "supports_range_stepping". */
552
553static int
554aarch64_supports_range_stepping (void)
555{
556 return 1;
557}
558
176eb98c
MS
559struct linux_target_ops the_low_target =
560{
561 aarch64_arch_setup,
3aee8918 562 aarch64_regs_info,
176eb98c
MS
563 aarch64_cannot_fetch_register,
564 aarch64_cannot_store_register,
421530db 565 NULL, /* fetch_register */
176eb98c
MS
566 aarch64_get_pc,
567 aarch64_set_pc,
568 (const unsigned char *) &aarch64_breakpoint,
569 aarch64_breakpoint_len,
421530db
PL
570 NULL, /* breakpoint_reinsert_addr */
571 0, /* decr_pc_after_break */
176eb98c 572 aarch64_breakpoint_at,
802e8e6d 573 aarch64_supports_z_point_type,
176eb98c
MS
574 aarch64_insert_point,
575 aarch64_remove_point,
576 aarch64_stopped_by_watchpoint,
577 aarch64_stopped_data_address,
421530db
PL
578 NULL, /* collect_ptrace_register */
579 NULL, /* supply_ptrace_register */
580 NULL, /* siginfo_fixup */
176eb98c
MS
581 aarch64_linux_new_process,
582 aarch64_linux_new_thread,
3a8a0396 583 aarch64_linux_new_fork,
176eb98c 584 aarch64_linux_prepare_to_resume,
421530db 585 NULL, /* process_qsupported */
7671bf47 586 aarch64_supports_tracepoints,
d1d0aea1
PL
587 NULL, /* get_thread_area */
588 NULL, /* install_fast_tracepoint_jump_pad */
589 NULL, /* emit_ops */
590 NULL, /* get_min_fast_tracepoint_insn_len */
591 aarch64_supports_range_stepping,
176eb98c 592};
3aee8918
PA
593
594void
595initialize_low_arch (void)
596{
597 init_registers_aarch64 ();
598
3b53ae99
YQ
599 initialize_low_arch_aarch32 ();
600
3aee8918
PA
601 initialize_regsets_info (&aarch64_regsets_info);
602}
This page took 0.276379 seconds and 4 git commands to generate.