2012-05-24 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.h
CommitLineData
58caa3dc 1/* Internal interfaces for the GNU/Linux specific target code for gdbserver.
0b302171
JB
2 Copyright (C) 2002, 2004-2005, 2007-2012 Free Software Foundation,
3 Inc.
58caa3dc
DJ
4
5 This file is part of GDB.
6
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
58caa3dc
DJ
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
58caa3dc 19
dae5f5cf
DJ
20#ifdef HAVE_THREAD_DB_H
21#include <thread_db.h>
22#endif
a5362b9a 23#include <signal.h>
dae5f5cf 24
623b6bdf 25#include "gdbthread.h"
95954743
PA
26#include "gdb_proc_service.h"
27
f15f9948
TJB
28#define PTRACE_ARG3_TYPE void *
29#define PTRACE_ARG4_TYPE void *
30#define PTRACE_XFER_TYPE long
31
58caa3dc 32#ifdef HAVE_LINUX_REGSETS
442ea881
PA
33typedef void (*regset_fill_func) (struct regcache *, void *);
34typedef void (*regset_store_func) (struct regcache *, const void *);
0d62e5e8
DJ
35enum regset_type {
36 GENERAL_REGS,
37 FP_REGS,
38 EXTENDED_REGS,
39};
40
58caa3dc
DJ
41struct regset_info
42{
43 int get_request, set_request;
1570b33e
L
44 /* If NT_TYPE isn't 0, it will be passed to ptrace as the 3rd
45 argument and the 4th argument should be "const struct iovec *". */
46 int nt_type;
58caa3dc 47 int size;
0d62e5e8
DJ
48 enum regset_type type;
49 regset_fill_func fill_function;
50 regset_store_func store_function;
58caa3dc
DJ
51};
52extern struct regset_info target_regsets[];
53#endif
2ec06d2e 54
95954743
PA
55struct process_info_private
56{
aa5ca48f
DE
57 /* Arch-specific additions. */
58 struct arch_process_info *arch_private;
cdbfd419
PP
59
60 /* libthread_db-specific additions. Not NULL if this process has loaded
61 thread_db, and it is active. */
62 struct thread_db *thread_db;
2268b414
JK
63
64 /* &_r_debug. 0 if not yet determined. -1 if no PT_DYNAMIC in Phdrs. */
65 CORE_ADDR r_debug;
95954743
PA
66};
67
aa5ca48f
DE
68struct lwp_info;
69
2ec06d2e
DJ
70struct linux_target_ops
71{
d05b4ac3
UW
72 /* Architecture-specific setup. */
73 void (*arch_setup) (void);
74
2ec06d2e
DJ
75 int num_regs;
76 int *regmap;
1faeff08
MR
77
78 /* Regset support bitmap: 1 for registers that are transferred as a part
79 of a regset, 0 for ones that need to be handled individually. This
80 can be NULL if all registers are transferred with regsets or regsets
81 are not supported. */
82 unsigned char *regset_bitmap;
2ec06d2e 83 int (*cannot_fetch_register) (int);
bc1e36ca
DJ
84
85 /* Returns 0 if we can store the register, 1 if we can not
86 store the register, and 2 if failure to store the register
87 is acceptable. */
2ec06d2e 88 int (*cannot_store_register) (int);
c14dfd32
PA
89
90 /* Hook to fetch a register in some non-standard way. Used for
91 example by backends that have read-only registers with hardcoded
92 values (e.g., IA64's gr0/fr0/fr1). Returns true if register
93 REGNO was supplied, false if not, and we should fallback to the
94 standard ptrace methods. */
95 int (*fetch_register) (struct regcache *regcache, int regno);
96
442ea881
PA
97 CORE_ADDR (*get_pc) (struct regcache *regcache);
98 void (*set_pc) (struct regcache *regcache, CORE_ADDR newpc);
f450004a 99 const unsigned char *breakpoint;
611cb4a5
DJ
100 int breakpoint_len;
101 CORE_ADDR (*breakpoint_reinsert_addr) (void);
0d62e5e8 102
0d62e5e8
DJ
103 int decr_pc_after_break;
104 int (*breakpoint_at) (CORE_ADDR pc);
e013ee27 105
d993e290
PA
106 /* Breakpoint and watchpoint related functions. See target.h for
107 comments. */
108 int (*insert_point) (char type, CORE_ADDR addr, int len);
109 int (*remove_point) (char type, CORE_ADDR addr, int len);
e013ee27
OF
110 int (*stopped_by_watchpoint) (void);
111 CORE_ADDR (*stopped_data_address) (void);
112
ee1a7ae4
UW
113 /* Hooks to reformat register data for PEEKUSR/POKEUSR (in particular
114 for registers smaller than an xfer unit). */
442ea881
PA
115 void (*collect_ptrace_register) (struct regcache *regcache,
116 int regno, char *buf);
117 void (*supply_ptrace_register) (struct regcache *regcache,
118 int regno, const char *buf);
d0722149
DE
119
120 /* Hook to convert from target format to ptrace format and back.
121 Returns true if any conversion was done; false otherwise.
122 If DIRECTION is 1, then copy from INF to NATIVE.
123 If DIRECTION is 0, copy from NATIVE to INF. */
a5362b9a 124 int (*siginfo_fixup) (siginfo_t *native, void *inf, int direction);
aa5ca48f
DE
125
126 /* Hook to call when a new process is created or attached to.
127 If extra per-process architecture-specific data is needed,
128 allocate it here. */
129 struct arch_process_info * (*new_process) (void);
130
131 /* Hook to call when a new thread is detected.
132 If extra per-thread architecture-specific data is needed,
133 allocate it here. */
134 struct arch_lwp_info * (*new_thread) (void);
135
136 /* Hook to call prior to resuming a thread. */
137 void (*prepare_to_resume) (struct lwp_info *);
1570b33e
L
138
139 /* Hook to support target specific qSupported. */
140 void (*process_qsupported) (const char *);
219f2f23
PA
141
142 /* Returns true if the low target supports tracepoints. */
143 int (*supports_tracepoints) (void);
fa593d66
PA
144
145 /* Fill ADDRP with the thread area address of LWPID. Returns 0 on
146 success, -1 on failure. */
147 int (*get_thread_area) (int lwpid, CORE_ADDR *addrp);
148
149 /* Install a fast tracepoint jump pad. See target.h for
150 comments. */
151 int (*install_fast_tracepoint_jump_pad) (CORE_ADDR tpoint, CORE_ADDR tpaddr,
152 CORE_ADDR collector,
153 CORE_ADDR lockaddr,
154 ULONGEST orig_size,
155 CORE_ADDR *jump_entry,
405f8e94
SS
156 CORE_ADDR *trampoline,
157 ULONGEST *trampoline_size,
fa593d66
PA
158 unsigned char *jjump_pad_insn,
159 ULONGEST *jjump_pad_insn_size,
160 CORE_ADDR *adjusted_insn_addr,
405f8e94
SS
161 CORE_ADDR *adjusted_insn_addr_end,
162 char *err);
6a271cae
PA
163
164 /* Return the bytecode operations vector for the current inferior.
165 Returns NULL if bytecode compilation is not supported. */
166 struct emit_ops *(*emit_ops) (void);
405f8e94
SS
167
168 /* Return the minimum length of an instruction that can be safely overwritten
169 for use as a fast tracepoint. */
170 int (*get_min_fast_tracepoint_insn_len) (void);
171
2ec06d2e
DJ
172};
173
174extern struct linux_target_ops the_low_target;
0d62e5e8 175
aa5ca48f 176#define ptid_of(proc) ((proc)->head.id)
95954743
PA
177#define pid_of(proc) ptid_get_pid ((proc)->head.id)
178#define lwpid_of(proc) ptid_get_lwp ((proc)->head.id)
bd99dc85 179
54a0b537
PA
180#define get_lwp(inf) ((struct lwp_info *)(inf))
181#define get_thread_lwp(thr) (get_lwp (inferior_target_data (thr)))
182#define get_lwp_thread(proc) ((struct thread_info *) \
183 find_inferior_id (&all_threads, \
95954743 184 get_lwp (proc)->head.id))
0d62e5e8 185
54a0b537 186struct lwp_info
0d62e5e8
DJ
187{
188 struct inferior_list_entry head;
0d62e5e8 189
ae13219e
DJ
190 /* If this flag is set, the next SIGSTOP will be ignored (the
191 process will be immediately resumed). This means that either we
192 sent the SIGSTOP to it ourselves and got some other pending event
193 (so the SIGSTOP is still pending), or that we stopped the
194 inferior implicitly via PTRACE_ATTACH and have not waited for it
195 yet. */
0d62e5e8
DJ
196 int stop_expected;
197
d50171e4
PA
198 /* When this is true, we shall not try to resume this thread, even
199 if last_resume_kind isn't resume_stop. */
bd99dc85
PA
200 int suspended;
201
202 /* If this flag is set, the lwp is known to be stopped right now (stop
0d62e5e8
DJ
203 event already received in a wait()). */
204 int stopped;
205
95954743
PA
206 /* If this flag is set, the lwp is known to be dead already (exit
207 event already received in a wait(), and is cached in
208 status_pending). */
209 int dead;
210
bd99dc85 211 /* When stopped is set, the last wait status recorded for this lwp. */
32ca6d61
DJ
212 int last_status;
213
d50171e4
PA
214 /* When stopped is set, this is where the lwp stopped, with
215 decr_pc_after_break already accounted for. */
216 CORE_ADDR stop_pc;
217
0d62e5e8
DJ
218 /* If this flag is set, STATUS_PENDING is a waitstatus that has not yet
219 been reported. */
220 int status_pending_p;
221 int status_pending;
222
c3adc08c
PA
223 /* STOPPED_BY_WATCHPOINT is non-zero if this LWP stopped with a data
224 watchpoint trap. */
225 int stopped_by_watchpoint;
226
227 /* On architectures where it is possible to know the data address of
228 a triggered watchpoint, STOPPED_DATA_ADDRESS is non-zero, and
229 contains such data address. Only valid if STOPPED_BY_WATCHPOINT
230 is true. */
231 CORE_ADDR stopped_data_address;
232
0d62e5e8
DJ
233 /* If this is non-zero, it is a breakpoint to be reinserted at our next
234 stop (SIGTRAP stops only). */
235 CORE_ADDR bp_reinsert;
236
d50171e4
PA
237 /* If this flag is set, the last continue operation at the ptrace
238 level on this process was a single-step. */
0d62e5e8
DJ
239 int stepping;
240
a6dbe5df
PA
241 /* If this flag is set, we need to set the event request flags the
242 next time we see this LWP stop. */
243 int must_set_ptrace_flags;
244
0d62e5e8
DJ
245 /* If this is non-zero, it points to a chain of signals which need to
246 be delivered to this process. */
247 struct pending_signals *pending_signals;
5544ad89
DJ
248
249 /* A link used when resuming. It is initialized from the resume request,
54a0b537 250 and then processed and cleared in linux_resume_one_lwp. */
5544ad89 251 struct thread_resume *resume;
dae5f5cf 252
fa593d66
PA
253 /* True if it is known that this lwp is presently collecting a fast
254 tracepoint (it is in the jump pad or in some code that will
255 return to the jump pad. Normally, we won't care about this, but
256 we will if a signal arrives to this lwp while it is
257 collecting. */
258 int collecting_fast_tracepoint;
259
260 /* If this is non-zero, it points to a chain of signals which need
261 to be reported to GDB. These were deferred because the thread
262 was doing a fast tracepoint collect when they arrived. */
263 struct pending_signals *pending_signals_to_report;
264
265 /* When collecting_fast_tracepoint is first found to be 1, we insert
266 a exit-jump-pad-quickly breakpoint. This is it. */
267 struct breakpoint *exit_jump_pad_bkpt;
268
d50171e4
PA
269 /* True if the LWP was seen stop at an internal breakpoint and needs
270 stepping over later when it is resumed. */
271 int need_step_over;
272
24a09b5f 273 int thread_known;
dae5f5cf 274#ifdef HAVE_THREAD_DB_H
24a09b5f
DJ
275 /* The thread handle, used for e.g. TLS access. Only valid if
276 THREAD_KNOWN is set. */
dae5f5cf
DJ
277 td_thrhandle_t th;
278#endif
aa5ca48f
DE
279
280 /* Arch-specific additions. */
281 struct arch_lwp_info *arch_private;
0d62e5e8 282};
5544ad89 283
54a0b537 284extern struct inferior_list all_lwps;
0d62e5e8 285
214d508e 286int linux_pid_exe_is_elf_64_file (int pid, unsigned int *machine);
d0722149 287
24a09b5f 288void linux_attach_lwp (unsigned long pid);
cdbfd419 289struct lwp_info *find_lwp_pid (ptid_t ptid);
964e4306 290void linux_stop_lwp (struct lwp_info *lwp);
0d62e5e8 291
cdbfd419 292/* From thread-db.c */
24a09b5f 293int thread_db_init (int use_events);
8336d594
PA
294void thread_db_detach (struct process_info *);
295void thread_db_mourn (struct process_info *);
cdbfd419 296int thread_db_handle_monitor_command (char *);
dae5f5cf
DJ
297int thread_db_get_tls_address (struct thread_info *thread, CORE_ADDR offset,
298 CORE_ADDR load_module, CORE_ADDR *address);
9836d6ea 299int thread_db_look_up_one_symbol (const char *name, CORE_ADDR *addrp);
This page took 0.743024 seconds and 4 git commands to generate.