2011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / server.h
CommitLineData
c906108c 1/* Common definitions for remote server for GDB.
ea025f5f 2 Copyright (C) 1993, 1995, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
7b6bb8da 3 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 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/>. */
c906108c 19
0a30fbc4
DJ
20#ifndef SERVER_H
21#define SERVER_H
22
23#include "config.h"
0729219d 24
68070c10
PA
25#ifdef __MINGW32CE__
26#include "wincecompat.h"
27#endif
28
0a30fbc4
DJ
29#include <stdarg.h>
30#include <stdio.h>
31#include <stdlib.h>
68070c10 32#ifdef HAVE_ERRNO_H
0a30fbc4 33#include <errno.h>
68070c10 34#endif
0729219d 35#include <setjmp.h>
0a30fbc4 36
d64b8841
DJ
37#ifdef HAVE_STRING_H
38#include <string.h>
39#endif
40
a1723c35 41#ifdef HAVE_ALLOCA_H
42#include <alloca.h>
43#endif
a778ab81 44/* On some systems such as MinGW, alloca is declared in malloc.h
45 (there is no alloca.h). */
46#if HAVE_MALLOC_H
47#include <malloc.h>
48#endif
a1723c35 49
e122f1f5 50#if !HAVE_DECL_STRERROR
43d5792c
DJ
51#ifndef strerror
52extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
53#endif
54#endif
55
68070c10
PA
56#if !HAVE_DECL_PERROR
57#ifndef perror
58extern void perror (const char *);
59#endif
60#endif
61
ec56be1b
PA
62#if !HAVE_DECL_MEMMEM
63extern void *memmem (const void *, size_t , const void *, size_t);
64#endif
65
bb0116a4
JB
66#if !HAVE_DECL_VASPRINTF
67extern int vasprintf(char **strp, const char *fmt, va_list ap);
68#endif
69#if !HAVE_DECL_VSNPRINTF
70int vsnprintf(char *str, size_t size, const char *format, va_list ap);
71#endif
72
0729219d 73#ifndef ATTR_NORETURN
493e2a69
MS
74#if defined(__GNUC__) && (__GNUC__ > 2 \
75 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
0729219d
DJ
76#define ATTR_NORETURN __attribute__ ((noreturn))
77#else
78#define ATTR_NORETURN /* nothing */
79#endif
80#endif
81
82#ifndef ATTR_FORMAT
493e2a69
MS
83#if defined(__GNUC__) && (__GNUC__ > 2 \
84 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
0729219d
DJ
85#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
86#else
87#define ATTR_FORMAT(type, x, y) /* nothing */
88#endif
89#endif
90
bca929d3
DE
91#ifndef ATTR_MALLOC
92#if defined(__GNUC__) && (__GNUC__ >= 3)
93#define ATTR_MALLOC __attribute__ ((__malloc__))
94#else
95#define ATTR_MALLOC /* nothing */
96#endif
97#endif
98
9e0627f1
PM
99/* Define underscore macro, if not available, to be able to use it inside
100 code shared with gdb in common directory. */
101#ifndef _
102#define _(String) (String)
103#endif
104
01f9e8fa
DJ
105/* A type used for binary buffers. */
106typedef unsigned char gdb_byte;
107
d26e3629
KY
108#include "ptid.h"
109#include "buffer.h"
110#include "xml-utils.h"
111#include "gdb_locale.h"
112
0729219d
DJ
113/* FIXME: This should probably be autoconf'd for. It's an integer type at
114 least the size of a (void *). */
0a30fbc4
DJ
115typedef long long CORE_ADDR;
116
219f2f23 117typedef long long LONGEST;
95954743
PA
118typedef unsigned long long ULONGEST;
119
0d62e5e8
DJ
120/* Generic information for tracking a list of ``inferiors'' - threads,
121 processes, etc. */
122struct inferior_list
123{
124 struct inferior_list_entry *head;
125 struct inferior_list_entry *tail;
126};
127struct inferior_list_entry
128{
95954743 129 ptid_t id;
0d62e5e8
DJ
130 struct inferior_list_entry *next;
131};
132
0d62e5e8 133struct thread_info;
d50171e4
PA
134struct process_info;
135struct regcache;
136
137#include "regcache.h"
138#include "gdb/signals.h"
139#include "gdb_signals.h"
140#include "target.h"
141#include "mem-break.h"
142
143struct thread_info
144{
145 struct inferior_list_entry entry;
146 void *target_data;
147 void *regcache_data;
148
8336d594
PA
149 /* The last resume GDB requested on this thread. */
150 enum resume_kind last_resume_kind;
151
d50171e4
PA
152 /* The last wait status reported for this thread. */
153 struct target_waitstatus last_status;
219f2f23
PA
154
155 /* Given `while-stepping', a thread may be collecting data for more
156 than one tracepoint simultaneously. E.g.:
157
158 ff0001 INSN1 <-- TP1, while-stepping 10 collect $regs
159 ff0002 INSN2
160 ff0003 INSN3 <-- TP2, collect $regs
161 ff0004 INSN4 <-- TP3, while-stepping 10 collect $regs
162 ff0005 INSN5
163
164 Notice that when instruction INSN5 is reached, the while-stepping
165 actions of both TP1 and TP3 are still being collected, and that TP2
166 had been collected meanwhile. The whole range of ff0001-ff0005
167 should be single-stepped, due to at least TP1's while-stepping
168 action covering the whole range.
169
170 On the other hand, the same tracepoint with a while-stepping action
171 may be hit by more than one thread simultaneously, hence we can't
172 keep the current step count in the tracepoint itself.
173
174 This is the head of the list of the states of `while-stepping'
175 tracepoint actions this thread is now collecting; NULL if empty.
176 Each item in the list holds the current step of the while-stepping
177 action. */
178 struct wstep_state *while_stepping;
d50171e4 179};
c04a1aa8 180
255e7678
DJ
181struct dll_info
182{
183 struct inferior_list_entry entry;
184 char *name;
185 CORE_ADDR base_addr;
186};
187
95954743
PA
188struct sym_cache;
189struct breakpoint;
8b07ae33 190struct raw_breakpoint;
fa593d66 191struct fast_tracepoint_jump;
95954743
PA
192struct process_info_private;
193
194struct process_info
195{
196 struct inferior_list_entry head;
197
8336d594
PA
198 /* Nonzero if this child process was attached rather than
199 spawned. */
95954743
PA
200 int attached;
201
8336d594
PA
202 /* True if GDB asked us to detach from this process, but we remained
203 attached anyway. */
204 int gdb_detached;
205
95954743
PA
206 /* The symbol cache. */
207 struct sym_cache *symbol_cache;
208
95954743
PA
209 /* The list of memory breakpoints. */
210 struct breakpoint *breakpoints;
211
8b07ae33
PA
212 /* The list of raw memory breakpoints. */
213 struct raw_breakpoint *raw_breakpoints;
214
fa593d66
PA
215 /* The list of installed fast tracepoints. */
216 struct fast_tracepoint_jump *fast_tracepoint_jumps;
217
95954743
PA
218 /* Private target data. */
219 struct process_info_private *private;
220};
221
222/* Return a pointer to the process that corresponds to the current
223 thread (current_inferior). It is an error to call this if there is
224 no current thread selected. */
225
226struct process_info *current_process (void);
7fe519cb 227struct process_info *get_thread_process (struct thread_info *);
95954743 228
c906108c
SS
229/* Target-specific functions */
230
4ce44c66 231void initialize_low ();
c906108c 232
ce3a066d
DJ
233/* From inferiors.c. */
234
95954743 235extern struct inferior_list all_processes;
0d62e5e8 236extern struct inferior_list all_threads;
255e7678
DJ
237extern struct inferior_list all_dlls;
238extern int dlls_changed;
239
0d62e5e8
DJ
240void add_inferior_to_list (struct inferior_list *list,
241 struct inferior_list_entry *new_inferior);
242void for_each_inferior (struct inferior_list *list,
243 void (*action) (struct inferior_list_entry *));
95954743 244
0d62e5e8
DJ
245extern struct thread_info *current_inferior;
246void remove_inferior (struct inferior_list *list,
247 struct inferior_list_entry *entry);
248void remove_thread (struct thread_info *thread);
95954743
PA
249void add_thread (ptid_t ptid, void *target_data);
250
251struct process_info *add_process (int pid, int attached);
252void remove_process (struct process_info *process);
253struct process_info *find_process_pid (int pid);
9f767825
DE
254int have_started_inferiors_p (void);
255int have_attached_inferiors_p (void);
95954743 256
e09875d4 257struct thread_info *find_thread_ptid (ptid_t ptid);
95954743
PA
258
259ptid_t thread_id_to_gdb_id (ptid_t);
260ptid_t thread_to_gdb_id (struct thread_info *);
261ptid_t gdb_id_to_thread_id (ptid_t);
dae5f5cf 262struct thread_info *gdb_id_to_thread (unsigned int);
ce3a066d 263void clear_inferiors (void);
0d62e5e8
DJ
264struct inferior_list_entry *find_inferior
265 (struct inferior_list *,
266 int (*func) (struct inferior_list_entry *,
267 void *),
268 void *arg);
269struct inferior_list_entry *find_inferior_id (struct inferior_list *list,
95954743 270 ptid_t id);
0d62e5e8
DJ
271void *inferior_target_data (struct thread_info *);
272void set_inferior_target_data (struct thread_info *, void *);
273void *inferior_regcache_data (struct thread_info *);
274void set_inferior_regcache_data (struct thread_info *, void *);
24a09b5f
DJ
275void add_pid_to_list (struct inferior_list *list, unsigned long pid);
276int pull_pid_from_list (struct inferior_list *list, unsigned long pid);
ce3a066d 277
255e7678
DJ
278void loaded_dll (const char *name, CORE_ADDR base_addr);
279void unloaded_dll (const char *name, CORE_ADDR base_addr);
280
c906108c
SS
281/* Public variables in server.c */
282
95954743
PA
283extern ptid_t cont_thread;
284extern ptid_t general_thread;
285extern ptid_t step_thread;
5b1c542e 286
0d62e5e8 287extern int server_waiting;
c74d0ad8 288extern int debug_threads;
aa5ca48f 289extern int debug_hw_points;
89be2091 290extern int pass_signals[];
c906108c
SS
291
292extern jmp_buf toplevel;
c906108c 293
db42f210
PA
294extern int disable_packet_vCont;
295extern int disable_packet_Tthread;
296extern int disable_packet_qC;
297extern int disable_packet_qfThreadInfo;
298
03f2bd59 299extern int run_once;
95954743 300extern int multi_process;
bd99dc85
PA
301extern int non_stop;
302
ec48365d
PA
303#if USE_WIN32API
304#include <winsock2.h>
305typedef SOCKET gdb_fildes_t;
306#else
307typedef int gdb_fildes_t;
308#endif
309
bd99dc85
PA
310/* Functions from event-loop.c. */
311typedef void *gdb_client_data;
8336d594 312typedef int (handler_func) (int, gdb_client_data);
24b066ba 313typedef int (callback_handler_func) (gdb_client_data);
bd99dc85 314
ec48365d
PA
315extern void delete_file_handler (gdb_fildes_t fd);
316extern void add_file_handler (gdb_fildes_t fd, handler_func *proc,
bd99dc85 317 gdb_client_data client_data);
24b066ba
DE
318extern int append_callback_event (callback_handler_func *proc,
319 gdb_client_data client_data);
320extern void delete_callback_event (int id);
bd99dc85
PA
321
322extern void start_event_loop (void);
323
324/* Functions from server.c. */
8336d594
PA
325extern int handle_serial_event (int err, gdb_client_data client_data);
326extern int handle_target_event (int err, gdb_client_data client_data);
bd99dc85 327
95954743 328extern void push_event (ptid_t ptid, struct target_waitstatus *status);
bd99dc85 329
a6b151f1
DJ
330/* Functions from hostio.c. */
331extern int handle_vFile (char *, int, int *);
332
59a016f0
PA
333/* Functions from hostio-errno.c. */
334extern void hostio_last_error_from_errno (char *own_buf);
335
ea025f5f
DJ
336/* From remote-utils.c */
337
c74d0ad8 338extern int remote_debug;
a6f3e723
SL
339extern int noack_mode;
340extern int transport_is_reliable;
c906108c 341
8336d594
PA
342int gdb_connected (void);
343
95954743
PA
344ptid_t read_ptid (char *buf, char **obuf);
345char *write_ptid (char *buf, ptid_t ptid);
346
a14ed312 347int putpkt (char *buf);
01f9e8fa 348int putpkt_binary (char *buf, int len);
bd99dc85 349int putpkt_notif (char *buf);
a14ed312 350int getpkt (char *buf);
03f2bd59 351void remote_prepare (char *name);
a14ed312
KB
352void remote_open (char *name);
353void remote_close (void);
354void write_ok (char *buf);
355void write_enn (char *buf);
a20d5e98 356void initialize_async_io (void);
a14ed312
KB
357void enable_async_io (void);
358void disable_async_io (void);
7390519e 359void check_remote_input_interrupt_request (void);
fa593d66
PA
360void convert_ascii_to_int (const char *from, unsigned char *to, int n);
361void convert_int_to_ascii (const unsigned char *from, char *to, int n);
0d62e5e8
DJ
362void new_thread_notify (int id);
363void dead_thread_notify (int id);
95954743 364void prepare_resume_reply (char *buf, ptid_t ptid,
5b1c542e 365 struct target_waitstatus *status);
c906108c 366
89be2091 367const char *decode_address_to_semicolon (CORE_ADDR *addrp, const char *start);
dae5f5cf 368void decode_address (CORE_ADDR *addrp, const char *start, int len);
a14ed312
KB
369void decode_m_packet (char *from, CORE_ADDR * mem_addr_ptr,
370 unsigned int *len_ptr);
371void decode_M_packet (char *from, CORE_ADDR * mem_addr_ptr,
fa593d66 372 unsigned int *len_ptr, unsigned char **to_p);
01f9e8fa 373int decode_X_packet (char *from, int packet_len, CORE_ADDR * mem_addr_ptr,
fa593d66 374 unsigned int *len_ptr, unsigned char **to_p);
d08aafef 375int decode_xfer_write (char *buf, int packet_len,
0e7f50da
UW
376 CORE_ADDR *offset, unsigned int *len,
377 unsigned char *data);
08388c79
DE
378int decode_search_memory_packet (const char *buf, int packet_len,
379 CORE_ADDR *start_addrp,
380 CORE_ADDR *search_space_lenp,
493e2a69
MS
381 gdb_byte *pattern,
382 unsigned int *pattern_lenp);
c906108c 383
ce3a066d
DJ
384int unhexify (char *bin, const char *hex, int count);
385int hexify (char *hex, const char *bin, int count);
01f9e8fa
DJ
386int remote_escape_output (const gdb_byte *buffer, int len,
387 gdb_byte *out_buf, int *out_len,
388 int out_maxlen);
219f2f23 389char *unpack_varlen_hex (char *buff, ULONGEST *result);
ce3a066d 390
95954743 391void clear_symbol_cache (struct sym_cache **symcache_p);
9836d6ea 392int look_up_one_symbol (const char *name, CORE_ADDR *addrp, int may_ask_gdb);
ce3a066d 393
fa593d66
PA
394int relocate_instruction (CORE_ADDR *to, CORE_ADDR oldloc);
395
bce7165d 396void monitor_output (const char *msg);
c74d0ad8 397
c906108c 398/* Functions from utils.c */
d26e3629 399#include "common-utils.h"
c906108c 400
bca929d3 401void *xmalloc (size_t) ATTR_MALLOC;
219f2f23 402void *xrealloc (void *, size_t);
bca929d3
DE
403void *xcalloc (size_t, size_t) ATTR_MALLOC;
404char *xstrdup (const char *) ATTR_MALLOC;
6cebaf6e 405int xsnprintf (char *str, size_t size, const char *format, ...)
406 ATTR_FORMAT (printf, 3, 4);;
aef93bd7 407void freeargv (char **argv);
54363045 408void perror_with_name (const char *string);
bee0189a
DJ
409void error (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
410void fatal (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
411void warning (const char *string,...) ATTR_FORMAT (printf, 1, 2);
aa5ca48f 412char *paddress (CORE_ADDR addr);
219f2f23
PA
413char *pulongest (ULONGEST u);
414char *plongest (LONGEST l);
415char *phex_nz (ULONGEST l, int sizeof_l);
ec48365d 416char *pfildes (gdb_fildes_t fd);
0a30fbc4 417
d26e3629 418#include "gdb_assert.h"
e92d13d5 419
5c44784c
JM
420/* Maximum number of bytes to read/write at once. The value here
421 is chosen to fill up a packet (the headers account for the 32). */
422#define MAXBUFBYTES(N) (((N)-32)/2)
423
bb9c3d36
UW
424/* Buffer sizes for transferring memory, registers, etc. Set to a constant
425 value to accomodate multiple register formats. This value must be at least
426 as large as the largest register set supported by gdbserver. */
427#define PBUFSIZ 16384
0a30fbc4 428
219f2f23
PA
429/* Functions from tracepoint.c */
430
fa593d66
PA
431int in_process_agent_loaded (void);
432
219f2f23
PA
433void initialize_tracepoint (void);
434
8336d594
PA
435extern int tracing;
436extern int disconnected_tracing;
437
fa593d66
PA
438void tracepoint_look_up_symbols (void);
439
8336d594
PA
440void stop_tracing (void);
441
219f2f23
PA
442int handle_tracepoint_general_set (char *own_buf);
443int handle_tracepoint_query (char *own_buf);
444
445int tracepoint_finished_step (struct thread_info *tinfo, CORE_ADDR stop_pc);
446int tracepoint_was_hit (struct thread_info *tinfo, CORE_ADDR stop_pc);
447
448void release_while_stepping_state_list (struct thread_info *tinfo);
449
450extern int current_traceframe;
451
452int in_readonly_region (CORE_ADDR addr, ULONGEST length);
453int traceframe_read_mem (int tfnum, CORE_ADDR addr,
454 unsigned char *buf, ULONGEST length,
455 ULONGEST *nbytes);
456int fetch_traceframe_registers (int tfnum,
457 struct regcache *regcache,
458 int regnum);
459
0fb4aa4b
PA
460int traceframe_read_sdata (int tfnum, ULONGEST offset,
461 unsigned char *buf, ULONGEST length,
462 ULONGEST *nbytes);
463
b3b9301e
PA
464int traceframe_read_info (int tfnum, struct buffer *buffer);
465
fa593d66
PA
466/* If a thread is determined to be collecting a fast tracepoint, this
467 structure holds the collect status. */
468
469struct fast_tpoint_collect_status
470{
471 /* The tracepoint that is presently being collected. */
472 int tpoint_num;
473 CORE_ADDR tpoint_addr;
474
475 /* The address range in the jump pad of where the original
476 instruction the tracepoint jump was inserted was relocated
477 to. */
478 CORE_ADDR adjusted_insn_addr;
479 CORE_ADDR adjusted_insn_addr_end;
480};
481
482int fast_tracepoint_collecting (CORE_ADDR thread_area,
483 CORE_ADDR stop_pc,
484 struct fast_tpoint_collect_status *status);
485void force_unlock_trace_buffer (void);
486
487int handle_tracepoint_bkpts (struct thread_info *tinfo, CORE_ADDR stop_pc);
488
489#ifdef IN_PROCESS_AGENT
490void initialize_low_tracepoint (void);
491void supply_fast_tracepoint_registers (struct regcache *regcache,
492 const unsigned char *regs);
0fb4aa4b
PA
493void supply_static_tracepoint_registers (struct regcache *regcache,
494 const unsigned char *regs,
495 CORE_ADDR pc);
fa593d66
PA
496#else
497void stop_tracing (void);
498#endif
499
6a271cae
PA
500/* Bytecode compilation function vector. */
501
502struct emit_ops
503{
504 void (*emit_prologue) (void);
505 void (*emit_epilogue) (void);
506 void (*emit_add) (void);
507 void (*emit_sub) (void);
508 void (*emit_mul) (void);
509 void (*emit_lsh) (void);
510 void (*emit_rsh_signed) (void);
511 void (*emit_rsh_unsigned) (void);
512 void (*emit_ext) (int arg);
513 void (*emit_log_not) (void);
514 void (*emit_bit_and) (void);
515 void (*emit_bit_or) (void);
516 void (*emit_bit_xor) (void);
517 void (*emit_bit_not) (void);
518 void (*emit_equal) (void);
519 void (*emit_less_signed) (void);
520 void (*emit_less_unsigned) (void);
521 void (*emit_ref) (int size);
522 void (*emit_if_goto) (int *offset_p, int *size_p);
523 void (*emit_goto) (int *offset_p, int *size_p);
524 void (*write_goto_address) (CORE_ADDR from, CORE_ADDR to, int size);
4e29fb54 525 void (*emit_const) (LONGEST num);
6a271cae
PA
526 void (*emit_call) (CORE_ADDR fn);
527 void (*emit_reg) (int reg);
528 void (*emit_pop) (void);
529 void (*emit_stack_flush) (void);
530 void (*emit_zero_ext) (int arg);
531 void (*emit_swap) (void);
532 void (*emit_stack_adjust) (int n);
533
534 /* Emit code for a generic function that takes one fixed integer
535 argument and returns a 64-bit int (for instance, tsv getter). */
536 void (*emit_int_call_1) (CORE_ADDR fn, int arg1);
537
538 /* Emit code for a generic function that takes one fixed integer
539 argument and a 64-bit int from the top of the stack, and returns
540 nothing (for instance, tsv setter). */
541 void (*emit_void_call_2) (CORE_ADDR fn, int arg1);
542};
543
544/* Returns the address of the get_raw_reg function in the IPA. */
545CORE_ADDR get_raw_reg_func_addr (void);
546
547CORE_ADDR current_insn_ptr;
548int emit_error;
549
dd24457d
DJ
550/* Version information, from version.c. */
551extern const char version[];
552extern const char host_name[];
553
0a30fbc4 554#endif /* SERVER_H */
This page took 0.828489 seconds and 4 git commands to generate.