2010-04-08 Stan Shebs <stan@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,
4c38e0a4 3 2006, 2007, 2008, 2009, 2010 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
e122f1f5 41#if !HAVE_DECL_STRERROR
43d5792c
DJ
42#ifndef strerror
43extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
44#endif
45#endif
46
68070c10
PA
47#if !HAVE_DECL_PERROR
48#ifndef perror
49extern void perror (const char *);
50#endif
51#endif
52
ec56be1b
PA
53#if !HAVE_DECL_MEMMEM
54extern void *memmem (const void *, size_t , const void *, size_t);
55#endif
56
0729219d
DJ
57#ifndef ATTR_NORETURN
58#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
59#define ATTR_NORETURN __attribute__ ((noreturn))
60#else
61#define ATTR_NORETURN /* nothing */
62#endif
63#endif
64
65#ifndef ATTR_FORMAT
66#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
67#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
68#else
69#define ATTR_FORMAT(type, x, y) /* nothing */
70#endif
71#endif
72
bca929d3
DE
73#ifndef ATTR_MALLOC
74#if defined(__GNUC__) && (__GNUC__ >= 3)
75#define ATTR_MALLOC __attribute__ ((__malloc__))
76#else
77#define ATTR_MALLOC /* nothing */
78#endif
79#endif
80
01f9e8fa
DJ
81/* A type used for binary buffers. */
82typedef unsigned char gdb_byte;
83
0729219d
DJ
84/* FIXME: This should probably be autoconf'd for. It's an integer type at
85 least the size of a (void *). */
0a30fbc4
DJ
86typedef long long CORE_ADDR;
87
95954743
PA
88typedef unsigned long long ULONGEST;
89
90/* The ptid struct is a collection of the various "ids" necessary
91 for identifying the inferior. This consists of the process id
92 (pid), thread id (tid), and other fields necessary for uniquely
93 identifying the inferior process/thread being debugged. When
94 manipulating ptids, the constructors, accessors, and predicate
95 declared in server.h should be used. These are as follows:
96
97 ptid_build - Make a new ptid from a pid, lwp, and tid.
98 pid_to_ptid - Make a new ptid from just a pid.
99 ptid_get_pid - Fetch the pid component of a ptid.
100 ptid_get_lwp - Fetch the lwp component of a ptid.
101 ptid_get_tid - Fetch the tid component of a ptid.
102 ptid_equal - Test to see if two ptids are equal.
103
104 Please do NOT access the struct ptid members directly (except, of
105 course, in the implementation of the above ptid manipulation
106 functions). */
107
108struct ptid
109 {
110 /* Process id */
111 int pid;
112
113 /* Lightweight process id */
114 long lwp;
115
116 /* Thread id */
117 long tid;
118 };
119
120typedef struct ptid ptid_t;
121
122/* The -1 ptid, often used to indicate either an error condition or a
123 "don't care" condition, i.e, "run all threads". */
124extern ptid_t minus_one_ptid;
125
126/* The null or zero ptid, often used to indicate no process. */
127extern ptid_t null_ptid;
128
129/* Attempt to find and return an existing ptid with the given PID,
130 LWP, and TID components. If none exists, create a new one and
131 return that. */
132ptid_t ptid_build (int pid, long lwp, long tid);
133
134/* Create a ptid from just a pid. */
135ptid_t pid_to_ptid (int pid);
136
137/* Fetch the pid (process id) component from a ptid. */
138int ptid_get_pid (ptid_t ptid);
139
140/* Fetch the lwp (lightweight process) component from a ptid. */
141long ptid_get_lwp (ptid_t ptid);
142
143/* Fetch the tid (thread id) component from a ptid. */
144long ptid_get_tid (ptid_t ptid);
145
146/* Compare two ptids to see if they are equal. */
147extern int ptid_equal (ptid_t p1, ptid_t p2);
148
149/* Return true if this ptid represents a process id. */
150extern int ptid_is_pid (ptid_t ptid);
151
0d62e5e8
DJ
152/* Generic information for tracking a list of ``inferiors'' - threads,
153 processes, etc. */
154struct inferior_list
155{
156 struct inferior_list_entry *head;
157 struct inferior_list_entry *tail;
158};
159struct inferior_list_entry
160{
95954743 161 ptid_t id;
0d62e5e8
DJ
162 struct inferior_list_entry *next;
163};
164
0d62e5e8 165struct thread_info;
d50171e4
PA
166struct process_info;
167struct regcache;
168
169#include "regcache.h"
170#include "gdb/signals.h"
171#include "gdb_signals.h"
172#include "target.h"
173#include "mem-break.h"
174
175struct thread_info
176{
177 struct inferior_list_entry entry;
178 void *target_data;
179 void *regcache_data;
180
181 /* The last wait status reported for this thread. */
182 struct target_waitstatus last_status;
183};
c04a1aa8 184
255e7678
DJ
185struct dll_info
186{
187 struct inferior_list_entry entry;
188 char *name;
189 CORE_ADDR base_addr;
190};
191
95954743
PA
192struct sym_cache;
193struct breakpoint;
8b07ae33 194struct raw_breakpoint;
95954743
PA
195struct process_info_private;
196
197struct process_info
198{
199 struct inferior_list_entry head;
200
201 int attached;
202
203 /* The symbol cache. */
204 struct sym_cache *symbol_cache;
205
206 /* If this flag has been set, assume symbol cache misses are
207 failures. */
208 int all_symbols_looked_up;
209
210 /* The list of memory breakpoints. */
211 struct breakpoint *breakpoints;
212
8b07ae33
PA
213 /* The list of raw memory breakpoints. */
214 struct raw_breakpoint *raw_breakpoints;
215
95954743
PA
216 /* Private target data. */
217 struct process_info_private *private;
218};
219
220/* Return a pointer to the process that corresponds to the current
221 thread (current_inferior). It is an error to call this if there is
222 no current thread selected. */
223
224struct process_info *current_process (void);
7fe519cb 225struct process_info *get_thread_process (struct thread_info *);
95954743 226
c906108c
SS
227/* Target-specific functions */
228
4ce44c66 229void initialize_low ();
c906108c 230
ce3a066d
DJ
231/* From inferiors.c. */
232
95954743 233extern struct inferior_list all_processes;
0d62e5e8 234extern struct inferior_list all_threads;
255e7678
DJ
235extern struct inferior_list all_dlls;
236extern int dlls_changed;
237
95954743
PA
238void initialize_inferiors (void);
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
95954743 299extern int multi_process;
bd99dc85
PA
300extern int non_stop;
301
302/* Functions from event-loop.c. */
303typedef void *gdb_client_data;
304typedef void (handler_func) (int, gdb_client_data);
305
306extern void delete_file_handler (int fd);
307extern void add_file_handler (int fd, handler_func *proc,
308 gdb_client_data client_data);
309
310extern void start_event_loop (void);
311
312/* Functions from server.c. */
313extern void handle_serial_event (int err, gdb_client_data client_data);
314extern void handle_target_event (int err, gdb_client_data client_data);
315
95954743 316extern void push_event (ptid_t ptid, struct target_waitstatus *status);
bd99dc85 317
a6b151f1
DJ
318/* Functions from hostio.c. */
319extern int handle_vFile (char *, int, int *);
320
59a016f0
PA
321/* Functions from hostio-errno.c. */
322extern void hostio_last_error_from_errno (char *own_buf);
323
ea025f5f
DJ
324/* From remote-utils.c */
325
c74d0ad8 326extern int remote_debug;
ea025f5f 327extern int all_symbols_looked_up;
a6f3e723
SL
328extern int noack_mode;
329extern int transport_is_reliable;
c906108c 330
95954743
PA
331ptid_t read_ptid (char *buf, char **obuf);
332char *write_ptid (char *buf, ptid_t ptid);
333
a14ed312 334int putpkt (char *buf);
01f9e8fa 335int putpkt_binary (char *buf, int len);
bd99dc85 336int putpkt_notif (char *buf);
a14ed312
KB
337int getpkt (char *buf);
338void remote_open (char *name);
339void remote_close (void);
340void write_ok (char *buf);
341void write_enn (char *buf);
a20d5e98 342void initialize_async_io (void);
a14ed312
KB
343void enable_async_io (void);
344void disable_async_io (void);
7390519e 345void check_remote_input_interrupt_request (void);
f450004a
DJ
346void convert_ascii_to_int (char *from, unsigned char *to, int n);
347void convert_int_to_ascii (unsigned char *from, char *to, int n);
0d62e5e8
DJ
348void new_thread_notify (int id);
349void dead_thread_notify (int id);
95954743 350void prepare_resume_reply (char *buf, ptid_t ptid,
5b1c542e 351 struct target_waitstatus *status);
c906108c 352
89be2091 353const char *decode_address_to_semicolon (CORE_ADDR *addrp, const char *start);
dae5f5cf 354void decode_address (CORE_ADDR *addrp, const char *start, int len);
a14ed312
KB
355void decode_m_packet (char *from, CORE_ADDR * mem_addr_ptr,
356 unsigned int *len_ptr);
357void decode_M_packet (char *from, CORE_ADDR * mem_addr_ptr,
f450004a 358 unsigned int *len_ptr, unsigned char *to);
01f9e8fa
DJ
359int decode_X_packet (char *from, int packet_len, CORE_ADDR * mem_addr_ptr,
360 unsigned int *len_ptr, unsigned char *to);
0e7f50da
UW
361int decode_xfer_write (char *buf, int packet_len, char **annex,
362 CORE_ADDR *offset, unsigned int *len,
363 unsigned char *data);
08388c79
DE
364int decode_search_memory_packet (const char *buf, int packet_len,
365 CORE_ADDR *start_addrp,
366 CORE_ADDR *search_space_lenp,
367 gdb_byte *pattern, unsigned int *pattern_lenp);
c906108c 368
ce3a066d
DJ
369int unhexify (char *bin, const char *hex, int count);
370int hexify (char *hex, const char *bin, int count);
01f9e8fa
DJ
371int remote_escape_output (const gdb_byte *buffer, int len,
372 gdb_byte *out_buf, int *out_len,
373 int out_maxlen);
ce3a066d 374
95954743 375void clear_symbol_cache (struct sym_cache **symcache_p);
2f2893d9 376int look_up_one_symbol (const char *name, CORE_ADDR *addrp);
ce3a066d 377
bce7165d 378void monitor_output (const char *msg);
c74d0ad8 379
255e7678
DJ
380char *xml_escape_text (const char *text);
381
07e059b5
VP
382/* Simple growing buffer. */
383
384struct buffer
385{
386 char *buffer;
387 size_t buffer_size; /* allocated size */
388 size_t used_size; /* actually used size */
389};
390
391/* Append DATA of size SIZE to the end of BUFFER. Grows the buffer to
392 accommodate the new data. */
393void buffer_grow (struct buffer *buffer, const char *data, size_t size);
394
395/* Release any memory held by BUFFER. */
396void buffer_free (struct buffer *buffer);
397
398/* Initialize BUFFER. BUFFER holds no memory afterwards. */
399void buffer_init (struct buffer *buffer);
400
401/* Return a pointer into BUFFER data, effectivelly transfering
402 ownership of the buffer memory to the caller. Calling buffer_free
403 afterwards has no effect on the returned data. */
404char* buffer_finish (struct buffer *buffer);
405
406/* Simple printf to BUFFER function. Current implemented formatters:
407 %s - grow an xml escaped text in OBSTACK. */
408void buffer_xml_printf (struct buffer *buffer, const char *format, ...)
409 ATTR_FORMAT (printf, 2, 3);;
410
411#define buffer_grow_str(BUFFER,STRING) \
412 buffer_grow (BUFFER, STRING, strlen (STRING))
413#define buffer_grow_str0(BUFFER,STRING) \
414 buffer_grow (BUFFER, STRING, strlen (STRING) + 1)
415
c906108c
SS
416/* Functions from utils.c */
417
bca929d3
DE
418void *xmalloc (size_t) ATTR_MALLOC;
419void *xcalloc (size_t, size_t) ATTR_MALLOC;
420char *xstrdup (const char *) ATTR_MALLOC;
aef93bd7 421void freeargv (char **argv);
54363045 422void perror_with_name (const char *string);
bee0189a
DJ
423void error (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
424void fatal (const char *string,...) ATTR_NORETURN ATTR_FORMAT (printf, 1, 2);
e92d13d5
PA
425void internal_error (const char *file, int line, const char *, ...)
426 ATTR_NORETURN ATTR_FORMAT (printf, 3, 4);
bee0189a 427void warning (const char *string,...) ATTR_FORMAT (printf, 1, 2);
aa5ca48f 428char *paddress (CORE_ADDR addr);
0a30fbc4 429
e92d13d5
PA
430#define gdb_assert(expr) \
431 ((void) ((expr) ? 0 : \
432 (gdb_assert_fail (#expr, __FILE__, __LINE__, ASSERT_FUNCTION), 0)))
433
434/* Version 2.4 and later of GCC define a magical variable `__PRETTY_FUNCTION__'
435 which contains the name of the function currently being defined.
436 This is broken in G++ before version 2.6.
437 C9x has a similar variable called __func__, but prefer the GCC one since
438 it demangles C++ function names. */
439#if (GCC_VERSION >= 2004)
440#define ASSERT_FUNCTION __PRETTY_FUNCTION__
441#else
442#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
443#define ASSERT_FUNCTION __func__
444#endif
445#endif
446
447/* This prints an "Assertion failed" message, and exits. */
448#if defined (ASSERT_FUNCTION)
449#define gdb_assert_fail(assertion, file, line, function) \
450 internal_error (file, line, "%s: Assertion `%s' failed.", \
451 function, assertion)
452#else
453#define gdb_assert_fail(assertion, file, line, function) \
454 internal_error (file, line, "Assertion `%s' failed.", \
455 assertion)
456#endif
457
5c44784c
JM
458/* Maximum number of bytes to read/write at once. The value here
459 is chosen to fill up a packet (the headers account for the 32). */
460#define MAXBUFBYTES(N) (((N)-32)/2)
461
bb9c3d36
UW
462/* Buffer sizes for transferring memory, registers, etc. Set to a constant
463 value to accomodate multiple register formats. This value must be at least
464 as large as the largest register set supported by gdbserver. */
465#define PBUFSIZ 16384
0a30fbc4 466
dd24457d
DJ
467/* Version information, from version.c. */
468extern const char version[];
469extern const char host_name[];
470
0a30fbc4 471#endif /* SERVER_H */
This page took 1.295397 seconds and 4 git commands to generate.