]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/server.h
bfd/development.sh: Add experimental
[thirdparty/binutils-gdb.git] / gdb / gdbserver / server.h
CommitLineData
c906108c 1/* Common definitions for remote server for GDB.
e2882c85 2 Copyright (C) 1993-2018 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 18
0a30fbc4
DJ
19#ifndef SERVER_H
20#define SERVER_H
21
976411d6 22#include "common-defs.h"
0729219d 23
9239eeab
GB
24gdb_static_assert (sizeof (CORE_ADDR) >= sizeof (void *));
25
68070c10
PA
26#ifdef __MINGW32CE__
27#include "wincecompat.h"
28#endif
29
01208463 30#include "version.h"
18c1b81a 31
e122f1f5 32#if !HAVE_DECL_STRERROR
43d5792c
DJ
33#ifndef strerror
34extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
35#endif
36#endif
37
68070c10
PA
38#if !HAVE_DECL_PERROR
39#ifndef perror
40extern void perror (const char *);
41#endif
42#endif
43
bb0116a4
JB
44#if !HAVE_DECL_VASPRINTF
45extern int vasprintf(char **strp, const char *fmt, va_list ap);
46#endif
47#if !HAVE_DECL_VSNPRINTF
48int vsnprintf(char *str, size_t size, const char *format, va_list ap);
49#endif
50
5e1dc496
LM
51#ifdef IN_PROCESS_AGENT
52# define PROG "ipa"
53#else
54# define PROG "gdbserver"
55#endif
56
d26e3629
KY
57#include "buffer.h"
58#include "xml-utils.h"
d50171e4 59#include "regcache.h"
d50171e4
PA
60#include "gdb_signals.h"
61#include "target.h"
62#include "mem-break.h"
9a6c7d9c 63#include "environ.h"
c04a1aa8 64
c906108c
SS
65/* Target-specific functions */
66
4ce44c66 67void initialize_low ();
c906108c 68
c906108c
SS
69/* Public variables in server.c */
70
0d62e5e8 71extern int server_waiting;
c906108c 72
db42f210
PA
73extern int disable_packet_vCont;
74extern int disable_packet_Tthread;
75extern int disable_packet_qC;
76extern int disable_packet_qfThreadInfo;
77
03f2bd59 78extern int run_once;
bd99dc85
PA
79extern int non_stop;
80
ec48365d
PA
81#if USE_WIN32API
82#include <winsock2.h>
83typedef SOCKET gdb_fildes_t;
84#else
85typedef int gdb_fildes_t;
86#endif
87
0ce3d3b5 88#include "event-loop.h"
bd99dc85
PA
89
90/* Functions from server.c. */
28170b88
MK
91extern void handle_v_requests (char *own_buf, int packet_len,
92 int *new_packet_len);
8336d594
PA
93extern int handle_serial_event (int err, gdb_client_data client_data);
94extern int handle_target_event (int err, gdb_client_data client_data);
bd99dc85 95
465a859e
PA
96/* Get rid of the currently pending stop replies that match PTID. */
97extern void discard_queued_stop_replies (ptid_t ptid);
98
5a04c4cf
PA
99/* Returns true if there's a pending stop reply that matches PTID in
100 the vStopped notifications queue. */
101extern int in_queued_stop_replies (ptid_t ptid);
102
541af0f4 103#include "remote-utils.h"
c74d0ad8 104
ff42e6ab 105#include "utils.h"
87ce2a04 106#include "debug.h"
d9311bfa 107#include "gdb_vecs.h"
0a30fbc4 108
5c44784c
JM
109/* Maximum number of bytes to read/write at once. The value here
110 is chosen to fill up a packet (the headers account for the 32). */
111#define MAXBUFBYTES(N) (((N)-32)/2)
112
bb9c3d36
UW
113/* Buffer sizes for transferring memory, registers, etc. Set to a constant
114 value to accomodate multiple register formats. This value must be at least
115 as large as the largest register set supported by gdbserver. */
b91ad3ff 116#define PBUFSIZ 18432
0a30fbc4 117
82075af2
JS
118/* Definition for an unknown syscall, used basically in error-cases. */
119#define UNKNOWN_SYSCALL (-1)
120
121/* Definition for any syscall, used for unfiltered syscall reporting. */
122#define ANY_SYSCALL (-2)
123
2090129c
SDJ
124/* After fork_inferior has been called, we need to adjust a few
125 signals and call startup_inferior to start the inferior and consume
126 its first events. This is done here. PID is the pid of the new
127 inferior and PROGRAM is its name. */
128extern void post_fork_inferior (int pid, const char *program);
129
9a6c7d9c
SDJ
130/* Get the gdb_environ being used in the current session. */
131extern gdb_environ *get_environ ();
2090129c 132
2090129c
SDJ
133extern unsigned long signal_pid;
134
c12a5089
SC
135
136/* Description of the client remote protocol state for the currently
137 connected client. */
138
139struct client_state
140{
141 client_state ():
142 own_buf ((char *) xmalloc (PBUFSIZ + 1))
143 {}
144
145 /* The thread set with an `Hc' packet. `Hc' is deprecated in favor of
146 `vCont'. Note the multi-process extensions made `vCont' a
147 requirement, so `Hc pPID.TID' is pretty much undefined. So
148 CONT_THREAD can be null_ptid for no `Hc' thread, minus_one_ptid for
149 resuming all threads of the process (again, `Hc' isn't used for
150 multi-process), or a specific thread ptid_t. */
151 ptid_t cont_thread;
152
153 /* The thread set with an `Hg' packet. */
154 ptid_t general_thread;
155
156 int multi_process = 0;
157 int report_fork_events = 0;
158 int report_vfork_events = 0;
159 int report_exec_events = 0;
160 int report_thread_events = 0;
161
162 /* True if the "swbreak+" feature is active. In that case, GDB wants
163 us to report whether a trap is explained by a software breakpoint
164 and for the server to handle PC adjustment if necessary on this
165 target. Only enabled if the target supports it. */
166 int swbreak_feature = 0;
167 /* True if the "hwbreak+" feature is active. In that case, GDB wants
168 us to report whether a trap is explained by a hardware breakpoint.
169 Only enabled if the target supports it. */
170 int hwbreak_feature = 0;
171
172 /* True if the "vContSupported" feature is active. In that case, GDB
173 wants us to report whether single step is supported in the reply to
174 "vCont?" packet. */
175 int vCont_supported = 0;
176
177 /* Whether we should attempt to disable the operating system's address
178 space randomization feature before starting an inferior. */
179 int disable_randomization = 0;
180
181 int pass_signals[GDB_SIGNAL_LAST];
182 int program_signals[GDB_SIGNAL_LAST];
183 int program_signals_p = 0;
184
185 /* Last status reported to GDB. */
186 struct target_waitstatus last_status;
187 ptid_t last_ptid;
188
189 char *own_buf;
190
191 /* If true, then GDB has requested noack mode. */
192 int noack_mode = 0;
193 /* If true, then we tell GDB to use noack mode by default. */
194 int transport_is_reliable = 0;
195
196 /* The traceframe to be used as the source of data to send back to
197 GDB. A value of -1 means to get data from the live program. */
198
199 int current_traceframe = -1;
200
201};
202
203client_state &get_client_state ();
204
205#include "gdbthread.h"
206#include "inferiors.h"
207
0a30fbc4 208#endif /* SERVER_H */