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