]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Remote target communications for serial-line targets in custom GDB protocol |
8926118c AC |
2 | |
3 | Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, | |
4 | 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. | |
c906108c | 5 | |
c5aa993b JM |
6 | This file is part of GDB. |
7 | ||
8 | This program is free software; you can redistribute it and/or modify | |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
12 | ||
13 | This program is distributed in the hope that it will be useful, | |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 59 Temple Place - Suite 330, | |
21 | Boston, MA 02111-1307, USA. */ | |
c5aa993b | 22 | |
96baa820 | 23 | /* See the GDB User Guide for details of the GDB remote protocol. */ |
c5aa993b | 24 | |
c906108c SS |
25 | #include "defs.h" |
26 | #include "gdb_string.h" | |
27 | #include <ctype.h> | |
28 | #include <fcntl.h> | |
c906108c SS |
29 | #include "inferior.h" |
30 | #include "bfd.h" | |
31 | #include "symfile.h" | |
32 | #include "target.h" | |
c5aa993b | 33 | /*#include "terminal.h" */ |
c906108c SS |
34 | #include "gdbcmd.h" |
35 | #include "objfiles.h" | |
36 | #include "gdb-stabs.h" | |
37 | #include "gdbthread.h" | |
c2c6d25f | 38 | #include "remote.h" |
4e052eda | 39 | #include "regcache.h" |
fd0407d6 | 40 | #include "value.h" |
1ff9c3d6 | 41 | #include "gdb_assert.h" |
c906108c | 42 | |
7a292a7a | 43 | #include <ctype.h> |
9846de1b | 44 | #include <sys/time.h> |
c906108c SS |
45 | #ifdef USG |
46 | #include <sys/types.h> | |
47 | #endif | |
48 | ||
43ff13b4 | 49 | #include "event-loop.h" |
c2c6d25f | 50 | #include "event-top.h" |
2acceee2 | 51 | #include "inf-loop.h" |
43ff13b4 | 52 | |
c906108c SS |
53 | #include <signal.h> |
54 | #include "serial.h" | |
55 | ||
6240bebf MS |
56 | #include "gdbcore.h" /* for exec_bfd */ |
57 | ||
c906108c | 58 | /* Prototypes for local functions */ |
6426a772 JM |
59 | static void cleanup_sigint_signal_handler (void *dummy); |
60 | static void initialize_sigint_signal_handler (void); | |
d9fcf2fb | 61 | static int getpkt_sane (char *buf, long sizeof_buf, int forever); |
6426a772 | 62 | |
a14ed312 KB |
63 | static void handle_remote_sigint (int); |
64 | static void handle_remote_sigint_twice (int); | |
65 | static void async_remote_interrupt (gdb_client_data); | |
66 | void async_remote_interrupt_twice (gdb_client_data); | |
43ff13b4 | 67 | |
a14ed312 | 68 | static void build_remote_gdbarch_data (void); |
0f71a2f6 | 69 | |
917317f4 | 70 | static int remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len); |
c906108c | 71 | |
a14ed312 | 72 | static int remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len); |
c906108c | 73 | |
a14ed312 | 74 | static void remote_files_info (struct target_ops *ignore); |
c906108c | 75 | |
a14ed312 KB |
76 | static int remote_xfer_memory (CORE_ADDR memaddr, char *myaddr, |
77 | int len, int should_write, | |
29e57380 | 78 | struct mem_attrib *attrib, |
a14ed312 | 79 | struct target_ops *target); |
c906108c | 80 | |
a14ed312 | 81 | static void remote_prepare_to_store (void); |
c906108c | 82 | |
a14ed312 | 83 | static void remote_fetch_registers (int regno); |
c906108c | 84 | |
39f77062 KB |
85 | static void remote_resume (ptid_t ptid, int step, |
86 | enum target_signal siggnal); | |
87 | static void remote_async_resume (ptid_t ptid, int step, | |
a14ed312 | 88 | enum target_signal siggnal); |
36918e70 | 89 | static int remote_start_remote (struct ui_out *uiout, void *dummy); |
c906108c | 90 | |
a14ed312 KB |
91 | static void remote_open (char *name, int from_tty); |
92 | static void remote_async_open (char *name, int from_tty); | |
c906108c | 93 | |
a14ed312 KB |
94 | static void extended_remote_open (char *name, int from_tty); |
95 | static void extended_remote_async_open (char *name, int from_tty); | |
c906108c | 96 | |
a14ed312 KB |
97 | static void remote_open_1 (char *, int, struct target_ops *, int extended_p); |
98 | static void remote_async_open_1 (char *, int, struct target_ops *, | |
99 | int extended_p); | |
c906108c | 100 | |
a14ed312 | 101 | static void remote_close (int quitting); |
c906108c | 102 | |
a14ed312 | 103 | static void remote_store_registers (int regno); |
c906108c | 104 | |
a14ed312 KB |
105 | static void remote_mourn (void); |
106 | static void remote_async_mourn (void); | |
c906108c | 107 | |
a14ed312 | 108 | static void extended_remote_restart (void); |
c906108c | 109 | |
a14ed312 | 110 | static void extended_remote_mourn (void); |
c906108c | 111 | |
a14ed312 KB |
112 | static void extended_remote_create_inferior (char *, char *, char **); |
113 | static void extended_remote_async_create_inferior (char *, char *, char **); | |
c906108c | 114 | |
a14ed312 | 115 | static void remote_mourn_1 (struct target_ops *); |
c906108c | 116 | |
c2d11a7d | 117 | static void remote_send (char *buf, long sizeof_buf); |
c906108c | 118 | |
a14ed312 | 119 | static int readchar (int timeout); |
c906108c | 120 | |
39f77062 KB |
121 | static ptid_t remote_wait (ptid_t ptid, |
122 | struct target_waitstatus *status); | |
123 | static ptid_t remote_async_wait (ptid_t ptid, | |
124 | struct target_waitstatus *status); | |
c906108c | 125 | |
a14ed312 KB |
126 | static void remote_kill (void); |
127 | static void remote_async_kill (void); | |
c906108c | 128 | |
a14ed312 | 129 | static int tohex (int nib); |
c906108c | 130 | |
a14ed312 KB |
131 | static void remote_detach (char *args, int from_tty); |
132 | static void remote_async_detach (char *args, int from_tty); | |
c906108c | 133 | |
a14ed312 | 134 | static void remote_interrupt (int signo); |
c906108c | 135 | |
a14ed312 | 136 | static void remote_interrupt_twice (int signo); |
7a292a7a | 137 | |
a14ed312 | 138 | static void interrupt_query (void); |
c906108c | 139 | |
a14ed312 | 140 | static void set_thread (int, int); |
c906108c | 141 | |
39f77062 | 142 | static int remote_thread_alive (ptid_t); |
c906108c | 143 | |
a14ed312 | 144 | static void get_offsets (void); |
c906108c | 145 | |
c2d11a7d | 146 | static long read_frame (char *buf, long sizeof_buf); |
c906108c | 147 | |
a14ed312 | 148 | static int remote_insert_breakpoint (CORE_ADDR, char *); |
c906108c | 149 | |
a14ed312 | 150 | static int remote_remove_breakpoint (CORE_ADDR, char *); |
c906108c | 151 | |
a14ed312 | 152 | static int hexnumlen (ULONGEST num); |
c906108c | 153 | |
a14ed312 | 154 | static void init_remote_ops (void); |
c906108c | 155 | |
a14ed312 | 156 | static void init_extended_remote_ops (void); |
c906108c | 157 | |
a14ed312 | 158 | static void init_remote_cisco_ops (void); |
0f71a2f6 JM |
159 | |
160 | static struct target_ops remote_cisco_ops; | |
161 | ||
a14ed312 | 162 | static void remote_stop (void); |
c906108c | 163 | |
a14ed312 | 164 | static int ishex (int ch, int *val); |
c906108c | 165 | |
a14ed312 | 166 | static int stubhex (int ch); |
c906108c | 167 | |
a14ed312 | 168 | static int remote_query (int /*char */ , char *, char *, int *); |
c906108c | 169 | |
a14ed312 | 170 | static int hexnumstr (char *, ULONGEST); |
c906108c | 171 | |
a14ed312 | 172 | static int hexnumnstr (char *, ULONGEST, int); |
2df3850c | 173 | |
a14ed312 | 174 | static CORE_ADDR remote_address_masked (CORE_ADDR); |
c906108c | 175 | |
a14ed312 | 176 | static void print_packet (char *); |
c906108c | 177 | |
a14ed312 | 178 | static unsigned long crc32 (unsigned char *, int, unsigned int); |
c906108c | 179 | |
a14ed312 | 180 | static void compare_sections_command (char *, int); |
c906108c | 181 | |
a14ed312 | 182 | static void packet_command (char *, int); |
c906108c | 183 | |
a14ed312 | 184 | static int stub_unpack_int (char *buff, int fieldlength); |
c906108c | 185 | |
39f77062 | 186 | static ptid_t remote_current_thread (ptid_t oldptid); |
c906108c | 187 | |
a14ed312 | 188 | static void remote_find_new_threads (void); |
c906108c | 189 | |
a14ed312 | 190 | static void record_currthread (int currthread); |
c906108c | 191 | |
30559e10 | 192 | static int fromhex (int a); |
c906108c | 193 | |
dc8acb97 | 194 | static int hex2bin (const char *hex, char *bin, int count); |
c906108c | 195 | |
dc8acb97 | 196 | static int bin2hex (const char *bin, char *hex, int count); |
234fa6d1 | 197 | |
a14ed312 | 198 | static int putpkt_binary (char *buf, int cnt); |
c906108c | 199 | |
a14ed312 | 200 | static void check_binary_download (CORE_ADDR addr); |
c906108c | 201 | |
5a2468f5 | 202 | struct packet_config; |
5a2468f5 | 203 | |
a14ed312 | 204 | static void show_packet_config_cmd (struct packet_config *config); |
5a2468f5 | 205 | |
d471ea57 | 206 | static void update_packet_config (struct packet_config *config); |
5a2468f5 | 207 | |
c906108c SS |
208 | /* Define the target subroutine names */ |
209 | ||
a14ed312 | 210 | void open_remote_target (char *, int, struct target_ops *, int); |
c906108c | 211 | |
a14ed312 | 212 | void _initialize_remote (void); |
c906108c | 213 | |
694f61fb | 214 | /* Description of the remote protocol. Strictly speaking, when the |
d01949b6 AC |
215 | target is open()ed, remote.c should create a per-target description |
216 | of the remote protocol using that target's architecture. | |
217 | Unfortunatly, the target stack doesn't include local state. For | |
218 | the moment keep the information in the target's architecture | |
219 | object. Sigh.. */ | |
220 | ||
ad10f812 AC |
221 | struct packet_reg |
222 | { | |
223 | long offset; /* Offset into G packet. */ | |
224 | long regnum; /* GDB's internal register number. */ | |
225 | LONGEST pnum; /* Remote protocol register number. */ | |
b323314b | 226 | int in_g_packet; /* Always part of G packet. */ |
ad10f812 AC |
227 | /* long size in bytes; == REGISTER_RAW_SIZE (regnum); at present. */ |
228 | /* char *name; == REGISTER_NAME (regnum); at present. */ | |
229 | }; | |
230 | ||
d01949b6 AC |
231 | struct remote_state |
232 | { | |
ad10f812 AC |
233 | /* Description of the remote protocol registers. */ |
234 | long sizeof_g_packet; | |
b323314b AC |
235 | |
236 | /* Description of the remote protocol registers indexed by REGNUM | |
237 | (making an array of NUM_REGS + NUM_PSEUDO_REGS in size). */ | |
238 | struct packet_reg *regs; | |
ad10f812 | 239 | |
d01949b6 AC |
240 | /* This is the size (in chars) of the first response to the ``g'' |
241 | packet. It is used as a heuristic when determining the maximum | |
242 | size of memory-read and memory-write packets. A target will | |
243 | typically only reserve a buffer large enough to hold the ``g'' | |
244 | packet. The size does not include packet overhead (headers and | |
245 | trailers). */ | |
246 | long actual_register_packet_size; | |
247 | ||
248 | /* This is the maximum size (in chars) of a non read/write packet. | |
249 | It is also used as a cap on the size of read/write packets. */ | |
250 | long remote_packet_size; | |
251 | }; | |
252 | ||
253 | /* Handle for retreving the remote protocol data from gdbarch. */ | |
254 | static struct gdbarch_data *remote_gdbarch_data_handle; | |
255 | ||
256 | static struct remote_state * | |
5ae5f592 | 257 | get_remote_state (void) |
d01949b6 | 258 | { |
451fbdda | 259 | return gdbarch_data (current_gdbarch, remote_gdbarch_data_handle); |
d01949b6 AC |
260 | } |
261 | ||
262 | static void * | |
263 | init_remote_state (struct gdbarch *gdbarch) | |
264 | { | |
265 | int regnum; | |
266 | struct remote_state *rs = xmalloc (sizeof (struct remote_state)); | |
267 | ||
ad10f812 AC |
268 | /* Start out by having the remote protocol mimic the existing |
269 | behavour - just copy in the description of the register cache. */ | |
270 | rs->sizeof_g_packet = REGISTER_BYTES; /* OK use. */ | |
271 | ||
b323314b AC |
272 | /* Assume a 1:1 regnum<->pnum table. */ |
273 | rs->regs = xcalloc (NUM_REGS + NUM_PSEUDO_REGS, sizeof (struct packet_reg)); | |
274 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) | |
ad10f812 | 275 | { |
b323314b AC |
276 | struct packet_reg *r = &rs->regs[regnum]; |
277 | r->pnum = regnum; | |
278 | r->regnum = regnum; | |
279 | r->offset = REGISTER_BYTE (regnum); | |
280 | r->in_g_packet = (regnum < NUM_REGS); | |
ad10f812 AC |
281 | /* ...size = REGISTER_RAW_SIZE (regnum); */ |
282 | /* ...name = REGISTER_NAME (regnum); */ | |
283 | } | |
284 | ||
d01949b6 AC |
285 | /* Default maximum number of characters in a packet body. Many |
286 | remote stubs have a hardwired buffer size of 400 bytes | |
287 | (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used | |
288 | as the maximum packet-size to ensure that the packet and an extra | |
289 | NUL character can always fit in the buffer. This stops GDB | |
290 | trashing stubs that try to squeeze an extra NUL into what is | |
291 | already a full buffer (As of 1999-12-04 that was most stubs. */ | |
292 | rs->remote_packet_size = 400 - 1; | |
293 | ||
ad10f812 AC |
294 | /* Should rs->sizeof_g_packet needs more space than the |
295 | default, adjust the size accordingly. Remember that each byte is | |
296 | encoded as two characters. 32 is the overhead for the packet | |
297 | header / footer. NOTE: cagney/1999-10-26: I suspect that 8 | |
d01949b6 AC |
298 | (``$NN:G...#NN'') is a better guess, the below has been padded a |
299 | little. */ | |
ad10f812 AC |
300 | if (rs->sizeof_g_packet > ((rs->remote_packet_size - 32) / 2)) |
301 | rs->remote_packet_size = (rs->sizeof_g_packet * 2 + 32); | |
d01949b6 AC |
302 | |
303 | /* This one is filled in when a ``g'' packet is received. */ | |
304 | rs->actual_register_packet_size = 0; | |
305 | ||
306 | return rs; | |
307 | } | |
308 | ||
309 | static void | |
310 | free_remote_state (struct gdbarch *gdbarch, void *pointer) | |
311 | { | |
ad10f812 | 312 | struct remote_state *data = pointer; |
b323314b | 313 | xfree (data->regs); |
ad10f812 AC |
314 | xfree (data); |
315 | } | |
316 | ||
317 | static struct packet_reg * | |
318 | packet_reg_from_regnum (struct remote_state *rs, long regnum) | |
319 | { | |
b323314b AC |
320 | if (regnum < 0 && regnum >= NUM_REGS + NUM_PSEUDO_REGS) |
321 | return NULL; | |
322 | else | |
ad10f812 | 323 | { |
b323314b AC |
324 | struct packet_reg *r = &rs->regs[regnum]; |
325 | gdb_assert (r->regnum == regnum); | |
326 | return r; | |
ad10f812 | 327 | } |
ad10f812 AC |
328 | } |
329 | ||
330 | static struct packet_reg * | |
331 | packet_reg_from_pnum (struct remote_state *rs, LONGEST pnum) | |
332 | { | |
b323314b AC |
333 | int i; |
334 | for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++) | |
ad10f812 | 335 | { |
b323314b AC |
336 | struct packet_reg *r = &rs->regs[i]; |
337 | if (r->pnum == pnum) | |
338 | return r; | |
ad10f812 AC |
339 | } |
340 | return NULL; | |
d01949b6 AC |
341 | } |
342 | ||
c906108c SS |
343 | /* */ |
344 | ||
345 | static struct target_ops remote_ops; | |
346 | ||
347 | static struct target_ops extended_remote_ops; | |
348 | ||
43ff13b4 JM |
349 | /* Temporary target ops. Just like the remote_ops and |
350 | extended_remote_ops, but with asynchronous support. */ | |
351 | static struct target_ops remote_async_ops; | |
352 | ||
353 | static struct target_ops extended_async_remote_ops; | |
354 | ||
6426a772 JM |
355 | /* FIXME: cagney/1999-09-23: Even though getpkt was called with |
356 | ``forever'' still use the normal timeout mechanism. This is | |
357 | currently used by the ASYNC code to guarentee that target reads | |
358 | during the initial connect always time-out. Once getpkt has been | |
359 | modified to return a timeout indication and, in turn | |
360 | remote_wait()/wait_for_inferior() have gained a timeout parameter | |
361 | this can go away. */ | |
362 | static int wait_forever_enabled_p = 1; | |
363 | ||
364 | ||
c906108c SS |
365 | /* This variable chooses whether to send a ^C or a break when the user |
366 | requests program interruption. Although ^C is usually what remote | |
367 | systems expect, and that is the default here, sometimes a break is | |
368 | preferable instead. */ | |
369 | ||
370 | static int remote_break; | |
371 | ||
c906108c SS |
372 | /* Descriptor for I/O to remote machine. Initialize it to NULL so that |
373 | remote_open knows that we don't have a file open when the program | |
374 | starts. */ | |
819cc324 | 375 | static struct serial *remote_desc = NULL; |
c906108c | 376 | |
0f71a2f6 JM |
377 | /* This is set by the target (thru the 'S' message) |
378 | to denote that the target is in kernel mode. */ | |
379 | static int cisco_kernel_mode = 0; | |
380 | ||
c906108c SS |
381 | /* This variable sets the number of bits in an address that are to be |
382 | sent in a memory ("M" or "m") packet. Normally, after stripping | |
383 | leading zeros, the entire address would be sent. This variable | |
384 | restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The | |
385 | initial implementation of remote.c restricted the address sent in | |
386 | memory packets to ``host::sizeof long'' bytes - (typically 32 | |
387 | bits). Consequently, for 64 bit targets, the upper 32 bits of an | |
388 | address was never sent. Since fixing this bug may cause a break in | |
389 | some remote targets this variable is principly provided to | |
390 | facilitate backward compatibility. */ | |
391 | ||
392 | static int remote_address_size; | |
393 | ||
6426a772 JM |
394 | /* Tempoary to track who currently owns the terminal. See |
395 | target_async_terminal_* for more details. */ | |
396 | ||
397 | static int remote_async_terminal_ours_p; | |
398 | ||
11cf8741 | 399 | \f |
11cf8741 | 400 | /* User configurable variables for the number of characters in a |
ad10f812 AC |
401 | memory read/write packet. MIN ((rs->remote_packet_size), |
402 | rs->sizeof_g_packet) is the default. Some targets need smaller | |
403 | values (fifo overruns, et.al.) and some users need larger values | |
404 | (speed up transfers). The variables ``preferred_*'' (the user | |
405 | request), ``current_*'' (what was actually set) and ``forced_*'' | |
406 | (Positive - a soft limit, negative - a hard limit). */ | |
11cf8741 JM |
407 | |
408 | struct memory_packet_config | |
409 | { | |
410 | char *name; | |
411 | long size; | |
412 | int fixed_p; | |
413 | }; | |
414 | ||
415 | /* Compute the current size of a read/write packet. Since this makes | |
416 | use of ``actual_register_packet_size'' the computation is dynamic. */ | |
417 | ||
418 | static long | |
419 | get_memory_packet_size (struct memory_packet_config *config) | |
420 | { | |
d01949b6 | 421 | struct remote_state *rs = get_remote_state (); |
11cf8741 JM |
422 | /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk |
423 | law?) that some hosts don't cope very well with large alloca() | |
424 | calls. Eventually the alloca() code will be replaced by calls to | |
425 | xmalloc() and make_cleanups() allowing this restriction to either | |
426 | be lifted or removed. */ | |
427 | #ifndef MAX_REMOTE_PACKET_SIZE | |
428 | #define MAX_REMOTE_PACKET_SIZE 16384 | |
429 | #endif | |
430 | /* NOTE: 16 is just chosen at random. */ | |
431 | #ifndef MIN_REMOTE_PACKET_SIZE | |
432 | #define MIN_REMOTE_PACKET_SIZE 16 | |
433 | #endif | |
434 | long what_they_get; | |
435 | if (config->fixed_p) | |
436 | { | |
437 | if (config->size <= 0) | |
438 | what_they_get = MAX_REMOTE_PACKET_SIZE; | |
439 | else | |
440 | what_they_get = config->size; | |
441 | } | |
442 | else | |
443 | { | |
d01949b6 | 444 | what_they_get = (rs->remote_packet_size); |
11cf8741 JM |
445 | /* Limit the packet to the size specified by the user. */ |
446 | if (config->size > 0 | |
447 | && what_they_get > config->size) | |
448 | what_they_get = config->size; | |
449 | /* Limit it to the size of the targets ``g'' response. */ | |
d01949b6 AC |
450 | if ((rs->actual_register_packet_size) > 0 |
451 | && what_they_get > (rs->actual_register_packet_size)) | |
452 | what_they_get = (rs->actual_register_packet_size); | |
11cf8741 JM |
453 | } |
454 | if (what_they_get > MAX_REMOTE_PACKET_SIZE) | |
455 | what_they_get = MAX_REMOTE_PACKET_SIZE; | |
456 | if (what_they_get < MIN_REMOTE_PACKET_SIZE) | |
457 | what_they_get = MIN_REMOTE_PACKET_SIZE; | |
458 | return what_they_get; | |
459 | } | |
460 | ||
461 | /* Update the size of a read/write packet. If they user wants | |
462 | something really big then do a sanity check. */ | |
463 | ||
464 | static void | |
465 | set_memory_packet_size (char *args, struct memory_packet_config *config) | |
466 | { | |
467 | int fixed_p = config->fixed_p; | |
468 | long size = config->size; | |
469 | if (args == NULL) | |
470 | error ("Argument required (integer, `fixed' or `limited')."); | |
471 | else if (strcmp (args, "hard") == 0 | |
472 | || strcmp (args, "fixed") == 0) | |
473 | fixed_p = 1; | |
474 | else if (strcmp (args, "soft") == 0 | |
475 | || strcmp (args, "limit") == 0) | |
476 | fixed_p = 0; | |
477 | else | |
478 | { | |
479 | char *end; | |
480 | size = strtoul (args, &end, 0); | |
481 | if (args == end) | |
482 | error ("Invalid %s (bad syntax).", config->name); | |
483 | #if 0 | |
484 | /* Instead of explicitly capping the size of a packet to | |
485 | MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is | |
486 | instead allowed to set the size to something arbitrarily | |
487 | large. */ | |
488 | if (size > MAX_REMOTE_PACKET_SIZE) | |
489 | error ("Invalid %s (too large).", config->name); | |
490 | #endif | |
491 | } | |
492 | /* Extra checks? */ | |
493 | if (fixed_p && !config->fixed_p) | |
494 | { | |
495 | if (! query ("The target may not be able to correctly handle a %s\n" | |
496 | "of %ld bytes. Change the packet size? ", | |
497 | config->name, size)) | |
498 | error ("Packet size not changed."); | |
499 | } | |
500 | /* Update the config. */ | |
501 | config->fixed_p = fixed_p; | |
502 | config->size = size; | |
503 | } | |
504 | ||
505 | static void | |
506 | show_memory_packet_size (struct memory_packet_config *config) | |
507 | { | |
508 | printf_filtered ("The %s is %ld. ", config->name, config->size); | |
509 | if (config->fixed_p) | |
510 | printf_filtered ("Packets are fixed at %ld bytes.\n", | |
511 | get_memory_packet_size (config)); | |
512 | else | |
513 | printf_filtered ("Packets are limited to %ld bytes.\n", | |
514 | get_memory_packet_size (config)); | |
515 | } | |
516 | ||
517 | static struct memory_packet_config memory_write_packet_config = | |
518 | { | |
519 | "memory-write-packet-size", | |
520 | }; | |
521 | ||
522 | static void | |
523 | set_memory_write_packet_size (char *args, int from_tty) | |
524 | { | |
525 | set_memory_packet_size (args, &memory_write_packet_config); | |
526 | } | |
527 | ||
528 | static void | |
529 | show_memory_write_packet_size (char *args, int from_tty) | |
530 | { | |
531 | show_memory_packet_size (&memory_write_packet_config); | |
532 | } | |
533 | ||
534 | static long | |
535 | get_memory_write_packet_size (void) | |
536 | { | |
537 | return get_memory_packet_size (&memory_write_packet_config); | |
538 | } | |
539 | ||
540 | static struct memory_packet_config memory_read_packet_config = | |
541 | { | |
542 | "memory-read-packet-size", | |
543 | }; | |
544 | ||
545 | static void | |
546 | set_memory_read_packet_size (char *args, int from_tty) | |
547 | { | |
548 | set_memory_packet_size (args, &memory_read_packet_config); | |
549 | } | |
550 | ||
551 | static void | |
552 | show_memory_read_packet_size (char *args, int from_tty) | |
553 | { | |
554 | show_memory_packet_size (&memory_read_packet_config); | |
555 | } | |
556 | ||
557 | static long | |
558 | get_memory_read_packet_size (void) | |
559 | { | |
d01949b6 | 560 | struct remote_state *rs = get_remote_state (); |
11cf8741 JM |
561 | long size = get_memory_packet_size (&memory_read_packet_config); |
562 | /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an | |
563 | extra buffer size argument before the memory read size can be | |
d01949b6 AC |
564 | increased beyond (rs->remote_packet_size). */ |
565 | if (size > (rs->remote_packet_size)) | |
566 | size = (rs->remote_packet_size); | |
11cf8741 JM |
567 | return size; |
568 | } | |
569 | ||
11cf8741 | 570 | \f |
5a2468f5 JM |
571 | /* Generic configuration support for packets the stub optionally |
572 | supports. Allows the user to specify the use of the packet as well | |
573 | as allowing GDB to auto-detect support in the remote stub. */ | |
574 | ||
575 | enum packet_support | |
576 | { | |
577 | PACKET_SUPPORT_UNKNOWN = 0, | |
578 | PACKET_ENABLE, | |
579 | PACKET_DISABLE | |
580 | }; | |
581 | ||
5a2468f5 JM |
582 | struct packet_config |
583 | { | |
5a2468f5 JM |
584 | char *name; |
585 | char *title; | |
7f19b9a2 | 586 | enum auto_boolean detect; |
5a2468f5 JM |
587 | enum packet_support support; |
588 | }; | |
589 | ||
d471ea57 AC |
590 | /* Analyze a packet's return value and update the packet config |
591 | accordingly. */ | |
592 | ||
593 | enum packet_result | |
594 | { | |
595 | PACKET_ERROR, | |
596 | PACKET_OK, | |
597 | PACKET_UNKNOWN | |
598 | }; | |
599 | ||
5a2468f5 | 600 | static void |
d471ea57 | 601 | update_packet_config (struct packet_config *config) |
5a2468f5 | 602 | { |
d471ea57 AC |
603 | switch (config->detect) |
604 | { | |
7f19b9a2 | 605 | case AUTO_BOOLEAN_TRUE: |
d471ea57 AC |
606 | config->support = PACKET_ENABLE; |
607 | break; | |
7f19b9a2 | 608 | case AUTO_BOOLEAN_FALSE: |
d471ea57 AC |
609 | config->support = PACKET_DISABLE; |
610 | break; | |
7f19b9a2 | 611 | case AUTO_BOOLEAN_AUTO: |
d471ea57 AC |
612 | config->support = PACKET_SUPPORT_UNKNOWN; |
613 | break; | |
614 | } | |
5a2468f5 JM |
615 | } |
616 | ||
617 | static void | |
fba45db2 | 618 | show_packet_config_cmd (struct packet_config *config) |
5a2468f5 JM |
619 | { |
620 | char *support = "internal-error"; | |
621 | switch (config->support) | |
622 | { | |
623 | case PACKET_ENABLE: | |
624 | support = "enabled"; | |
625 | break; | |
626 | case PACKET_DISABLE: | |
627 | support = "disabled"; | |
628 | break; | |
629 | case PACKET_SUPPORT_UNKNOWN: | |
630 | support = "unknown"; | |
631 | break; | |
632 | } | |
633 | switch (config->detect) | |
634 | { | |
7f19b9a2 | 635 | case AUTO_BOOLEAN_AUTO: |
5a2468f5 JM |
636 | printf_filtered ("Support for remote protocol `%s' (%s) packet is auto-detected, currently %s.\n", |
637 | config->name, config->title, support); | |
638 | break; | |
7f19b9a2 AC |
639 | case AUTO_BOOLEAN_TRUE: |
640 | case AUTO_BOOLEAN_FALSE: | |
8e248173 | 641 | printf_filtered ("Support for remote protocol `%s' (%s) packet is currently %s.\n", |
5a2468f5 | 642 | config->name, config->title, support); |
8e248173 | 643 | break; |
5a2468f5 JM |
644 | } |
645 | } | |
646 | ||
647 | static void | |
d471ea57 AC |
648 | add_packet_config_cmd (struct packet_config *config, |
649 | char *name, | |
650 | char *title, | |
e9e68a56 AC |
651 | cmd_sfunc_ftype *set_func, |
652 | cmd_sfunc_ftype *show_func, | |
d471ea57 AC |
653 | struct cmd_list_element **set_remote_list, |
654 | struct cmd_list_element **show_remote_list, | |
655 | int legacy) | |
656 | { | |
657 | struct cmd_list_element *set_cmd; | |
658 | struct cmd_list_element *show_cmd; | |
5a2468f5 JM |
659 | char *set_doc; |
660 | char *show_doc; | |
d471ea57 | 661 | char *cmd_name; |
5a2468f5 JM |
662 | config->name = name; |
663 | config->title = title; | |
7f19b9a2 | 664 | config->detect = AUTO_BOOLEAN_AUTO; |
8e248173 | 665 | config->support = PACKET_SUPPORT_UNKNOWN; |
76995688 AC |
666 | xasprintf (&set_doc, "Set use of remote protocol `%s' (%s) packet", |
667 | name, title); | |
668 | xasprintf (&show_doc, "Show current use of remote protocol `%s' (%s) packet", | |
669 | name, title); | |
d471ea57 | 670 | /* set/show TITLE-packet {auto,on,off} */ |
76995688 | 671 | xasprintf (&cmd_name, "%s-packet", title); |
e9e68a56 AC |
672 | add_setshow_auto_boolean_cmd (cmd_name, class_obscure, |
673 | &config->detect, set_doc, show_doc, | |
674 | set_func, show_func, | |
675 | set_remote_list, show_remote_list); | |
d471ea57 AC |
676 | /* set/show remote NAME-packet {auto,on,off} -- legacy */ |
677 | if (legacy) | |
678 | { | |
679 | char *legacy_name; | |
76995688 | 680 | xasprintf (&legacy_name, "%s-packet", name); |
d471ea57 AC |
681 | add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, |
682 | set_remote_list); | |
683 | add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, | |
684 | show_remote_list); | |
685 | } | |
5a2468f5 JM |
686 | } |
687 | ||
d471ea57 AC |
688 | static enum packet_result |
689 | packet_ok (const char *buf, struct packet_config *config) | |
5a2468f5 | 690 | { |
d471ea57 | 691 | if (buf[0] != '\0') |
5a2468f5 | 692 | { |
d471ea57 AC |
693 | /* The stub recognized the packet request. Check that the |
694 | operation succeeded. */ | |
695 | switch (config->support) | |
696 | { | |
697 | case PACKET_SUPPORT_UNKNOWN: | |
698 | if (remote_debug) | |
699 | fprintf_unfiltered (gdb_stdlog, | |
700 | "Packet %s (%s) is supported\n", | |
701 | config->name, config->title); | |
702 | config->support = PACKET_ENABLE; | |
703 | break; | |
704 | case PACKET_DISABLE: | |
8e65ff28 AC |
705 | internal_error (__FILE__, __LINE__, |
706 | "packet_ok: attempt to use a disabled packet"); | |
d471ea57 AC |
707 | break; |
708 | case PACKET_ENABLE: | |
709 | break; | |
710 | } | |
711 | if (buf[0] == 'O' && buf[1] == 'K' && buf[2] == '\0') | |
712 | /* "OK" - definitly OK. */ | |
713 | return PACKET_OK; | |
714 | if (buf[0] == 'E' | |
715 | && isxdigit (buf[1]) && isxdigit (buf[2]) | |
716 | && buf[3] == '\0') | |
717 | /* "Enn" - definitly an error. */ | |
718 | return PACKET_ERROR; | |
719 | /* The packet may or may not be OK. Just assume it is */ | |
720 | return PACKET_OK; | |
721 | } | |
722 | else | |
723 | { | |
724 | /* The stub does not support the packet. */ | |
725 | switch (config->support) | |
726 | { | |
727 | case PACKET_ENABLE: | |
7f19b9a2 | 728 | if (config->detect == AUTO_BOOLEAN_AUTO) |
d471ea57 AC |
729 | /* If the stub previously indicated that the packet was |
730 | supported then there is a protocol error.. */ | |
731 | error ("Protocol error: %s (%s) conflicting enabled responses.", | |
732 | config->name, config->title); | |
733 | else | |
734 | /* The user set it wrong. */ | |
735 | error ("Enabled packet %s (%s) not recognized by stub", | |
736 | config->name, config->title); | |
737 | break; | |
738 | case PACKET_SUPPORT_UNKNOWN: | |
739 | if (remote_debug) | |
740 | fprintf_unfiltered (gdb_stdlog, | |
741 | "Packet %s (%s) is NOT supported\n", | |
742 | config->name, config->title); | |
743 | config->support = PACKET_DISABLE; | |
744 | break; | |
745 | case PACKET_DISABLE: | |
746 | break; | |
747 | } | |
748 | return PACKET_UNKNOWN; | |
5a2468f5 JM |
749 | } |
750 | } | |
751 | ||
dc8acb97 MS |
752 | /* Should we try the 'qSymbol' (target symbol lookup service) request? */ |
753 | static struct packet_config remote_protocol_qSymbol; | |
754 | ||
755 | static void | |
756 | set_remote_protocol_qSymbol_packet_cmd (char *args, int from_tty, | |
757 | struct cmd_list_element *c) | |
758 | { | |
759 | update_packet_config (&remote_protocol_qSymbol); | |
760 | } | |
761 | ||
762 | static void | |
e9e68a56 AC |
763 | show_remote_protocol_qSymbol_packet_cmd (char *args, int from_tty, |
764 | struct cmd_list_element *c) | |
dc8acb97 MS |
765 | { |
766 | show_packet_config_cmd (&remote_protocol_qSymbol); | |
767 | } | |
768 | ||
44eaed12 C |
769 | /* Should we try the 'e' (step over range) request? */ |
770 | static struct packet_config remote_protocol_e; | |
771 | ||
772 | static void | |
773 | set_remote_protocol_e_packet_cmd (char *args, int from_tty, | |
774 | struct cmd_list_element *c) | |
775 | { | |
776 | update_packet_config (&remote_protocol_e); | |
777 | } | |
778 | ||
779 | static void | |
e9e68a56 AC |
780 | show_remote_protocol_e_packet_cmd (char *args, int from_tty, |
781 | struct cmd_list_element *c) | |
44eaed12 C |
782 | { |
783 | show_packet_config_cmd (&remote_protocol_e); | |
784 | } | |
785 | ||
786 | ||
787 | /* Should we try the 'E' (step over range / w signal #) request? */ | |
788 | static struct packet_config remote_protocol_E; | |
789 | ||
790 | static void | |
791 | set_remote_protocol_E_packet_cmd (char *args, int from_tty, | |
792 | struct cmd_list_element *c) | |
793 | { | |
794 | update_packet_config (&remote_protocol_E); | |
795 | } | |
796 | ||
797 | static void | |
e9e68a56 AC |
798 | show_remote_protocol_E_packet_cmd (char *args, int from_tty, |
799 | struct cmd_list_element *c) | |
44eaed12 C |
800 | { |
801 | show_packet_config_cmd (&remote_protocol_E); | |
802 | } | |
803 | ||
804 | ||
5a2468f5 JM |
805 | /* Should we try the 'P' (set register) request? */ |
806 | ||
807 | static struct packet_config remote_protocol_P; | |
808 | ||
809 | static void | |
fba45db2 KB |
810 | set_remote_protocol_P_packet_cmd (char *args, int from_tty, |
811 | struct cmd_list_element *c) | |
5a2468f5 | 812 | { |
d471ea57 | 813 | update_packet_config (&remote_protocol_P); |
5a2468f5 JM |
814 | } |
815 | ||
816 | static void | |
e9e68a56 AC |
817 | show_remote_protocol_P_packet_cmd (char *args, int from_tty, |
818 | struct cmd_list_element *c) | |
5a2468f5 JM |
819 | { |
820 | show_packet_config_cmd (&remote_protocol_P); | |
821 | } | |
822 | ||
d471ea57 AC |
823 | /* Should we try one of the 'Z' requests? */ |
824 | ||
825 | enum Z_packet_type | |
826 | { | |
827 | Z_PACKET_SOFTWARE_BP, | |
828 | Z_PACKET_HARDWARE_BP, | |
829 | Z_PACKET_WRITE_WP, | |
830 | Z_PACKET_READ_WP, | |
831 | Z_PACKET_ACCESS_WP, | |
832 | NR_Z_PACKET_TYPES | |
833 | }; | |
96baa820 | 834 | |
d471ea57 AC |
835 | static struct packet_config remote_protocol_Z[NR_Z_PACKET_TYPES]; |
836 | ||
837 | /* FIXME: Instead of having all these boiler plate functions, the | |
838 | command callback should include a context argument. */ | |
839 | ||
840 | static void | |
841 | set_remote_protocol_Z_software_bp_packet_cmd (char *args, int from_tty, | |
842 | struct cmd_list_element *c) | |
843 | { | |
844 | update_packet_config (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]); | |
845 | } | |
846 | ||
847 | static void | |
e9e68a56 AC |
848 | show_remote_protocol_Z_software_bp_packet_cmd (char *args, int from_tty, |
849 | struct cmd_list_element *c) | |
d471ea57 AC |
850 | { |
851 | show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]); | |
852 | } | |
853 | ||
854 | static void | |
855 | set_remote_protocol_Z_hardware_bp_packet_cmd (char *args, int from_tty, | |
856 | struct cmd_list_element *c) | |
857 | { | |
858 | update_packet_config (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]); | |
859 | } | |
860 | ||
861 | static void | |
e9e68a56 AC |
862 | show_remote_protocol_Z_hardware_bp_packet_cmd (char *args, int from_tty, |
863 | struct cmd_list_element *c) | |
d471ea57 AC |
864 | { |
865 | show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]); | |
866 | } | |
867 | ||
868 | static void | |
869 | set_remote_protocol_Z_write_wp_packet_cmd (char *args, int from_tty, | |
870 | struct cmd_list_element *c) | |
871 | { | |
872 | update_packet_config (&remote_protocol_Z[Z_PACKET_WRITE_WP]); | |
873 | } | |
874 | ||
875 | static void | |
e9e68a56 AC |
876 | show_remote_protocol_Z_write_wp_packet_cmd (char *args, int from_tty, |
877 | struct cmd_list_element *c) | |
d471ea57 AC |
878 | { |
879 | show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP]); | |
880 | } | |
881 | ||
882 | static void | |
883 | set_remote_protocol_Z_read_wp_packet_cmd (char *args, int from_tty, | |
884 | struct cmd_list_element *c) | |
885 | { | |
886 | update_packet_config (&remote_protocol_Z[Z_PACKET_READ_WP]); | |
887 | } | |
888 | ||
889 | static void | |
e9e68a56 AC |
890 | show_remote_protocol_Z_read_wp_packet_cmd (char *args, int from_tty, |
891 | struct cmd_list_element *c) | |
d471ea57 AC |
892 | { |
893 | show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP]); | |
894 | } | |
895 | ||
896 | static void | |
897 | set_remote_protocol_Z_access_wp_packet_cmd (char *args, int from_tty, | |
898 | struct cmd_list_element *c) | |
899 | { | |
900 | update_packet_config (&remote_protocol_Z[Z_PACKET_ACCESS_WP]); | |
901 | } | |
902 | ||
903 | static void | |
e9e68a56 AC |
904 | show_remote_protocol_Z_access_wp_packet_cmd (char *args, int from_tty, |
905 | struct cmd_list_element *c) | |
d471ea57 AC |
906 | { |
907 | show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP]); | |
908 | } | |
909 | ||
910 | /* For compatibility with older distributions. Provide a ``set remote | |
911 | Z-packet ...'' command that updates all the Z packet types. */ | |
912 | ||
7f19b9a2 | 913 | static enum auto_boolean remote_Z_packet_detect; |
96baa820 JM |
914 | |
915 | static void | |
fba45db2 KB |
916 | set_remote_protocol_Z_packet_cmd (char *args, int from_tty, |
917 | struct cmd_list_element *c) | |
96baa820 | 918 | { |
d471ea57 AC |
919 | int i; |
920 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) | |
921 | { | |
922 | remote_protocol_Z[i].detect = remote_Z_packet_detect; | |
923 | update_packet_config (&remote_protocol_Z[i]); | |
924 | } | |
96baa820 JM |
925 | } |
926 | ||
927 | static void | |
e9e68a56 AC |
928 | show_remote_protocol_Z_packet_cmd (char *args, int from_tty, |
929 | struct cmd_list_element *c) | |
96baa820 | 930 | { |
d471ea57 AC |
931 | int i; |
932 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) | |
933 | { | |
934 | show_packet_config_cmd (&remote_protocol_Z[i]); | |
935 | } | |
96baa820 JM |
936 | } |
937 | ||
938 | /* Should we try the 'X' (remote binary download) packet? | |
939 | ||
940 | This variable (available to the user via "set remote X-packet") | |
941 | dictates whether downloads are sent in binary (via the 'X' packet). | |
942 | We assume that the stub can, and attempt to do it. This will be | |
943 | cleared if the stub does not understand it. This switch is still | |
944 | needed, though in cases when the packet is supported in the stub, | |
945 | but the connection does not allow it (i.e., 7-bit serial connection | |
946 | only). */ | |
947 | ||
948 | static struct packet_config remote_protocol_binary_download; | |
949 | ||
9d1f7ab2 MS |
950 | /* Should we try the 'ThreadInfo' query packet? |
951 | ||
952 | This variable (NOT available to the user: auto-detect only!) | |
953 | determines whether GDB will use the new, simpler "ThreadInfo" | |
954 | query or the older, more complex syntax for thread queries. | |
955 | This is an auto-detect variable (set to true at each connect, | |
956 | and set to false when the target fails to recognize it). */ | |
957 | ||
958 | static int use_threadinfo_query; | |
959 | static int use_threadextra_query; | |
960 | ||
96baa820 JM |
961 | static void |
962 | set_remote_protocol_binary_download_cmd (char *args, | |
963 | int from_tty, | |
964 | struct cmd_list_element *c) | |
965 | { | |
d471ea57 | 966 | update_packet_config (&remote_protocol_binary_download); |
96baa820 JM |
967 | } |
968 | ||
969 | static void | |
e9e68a56 AC |
970 | show_remote_protocol_binary_download_cmd (char *args, int from_tty, |
971 | struct cmd_list_element *c) | |
96baa820 JM |
972 | { |
973 | show_packet_config_cmd (&remote_protocol_binary_download); | |
974 | } | |
975 | ||
c906108c | 976 | |
43ff13b4 | 977 | /* Tokens for use by the asynchronous signal handlers for SIGINT */ |
ae44c0c4 AC |
978 | static void *sigint_remote_twice_token; |
979 | static void *sigint_remote_token; | |
43ff13b4 | 980 | |
c906108c SS |
981 | /* These are pointers to hook functions that may be set in order to |
982 | modify resume/wait behavior for a particular architecture. */ | |
983 | ||
507f3c78 KB |
984 | void (*target_resume_hook) (void); |
985 | void (*target_wait_loop_hook) (void); | |
c906108c SS |
986 | \f |
987 | ||
c5aa993b | 988 | |
c906108c SS |
989 | /* These are the threads which we last sent to the remote system. |
990 | -1 for all or -2 for not sent yet. */ | |
991 | static int general_thread; | |
cce74817 | 992 | static int continue_thread; |
c906108c SS |
993 | |
994 | /* Call this function as a result of | |
995 | 1) A halt indication (T packet) containing a thread id | |
996 | 2) A direct query of currthread | |
997 | 3) Successful execution of set thread | |
998 | */ | |
999 | ||
1000 | static void | |
fba45db2 | 1001 | record_currthread (int currthread) |
c906108c | 1002 | { |
c906108c | 1003 | general_thread = currthread; |
cce74817 | 1004 | |
c906108c SS |
1005 | /* If this is a new thread, add it to GDB's thread list. |
1006 | If we leave it up to WFI to do this, bad things will happen. */ | |
39f77062 | 1007 | if (!in_thread_list (pid_to_ptid (currthread))) |
0f71a2f6 | 1008 | { |
39f77062 | 1009 | add_thread (pid_to_ptid (currthread)); |
8b93c638 | 1010 | ui_out_text (uiout, "[New "); |
39f77062 | 1011 | ui_out_text (uiout, target_pid_to_str (pid_to_ptid (currthread))); |
8b93c638 | 1012 | ui_out_text (uiout, "]\n"); |
0f71a2f6 | 1013 | } |
c906108c SS |
1014 | } |
1015 | ||
1016 | #define MAGIC_NULL_PID 42000 | |
1017 | ||
1018 | static void | |
fba45db2 | 1019 | set_thread (int th, int gen) |
c906108c | 1020 | { |
d01949b6 AC |
1021 | struct remote_state *rs = get_remote_state (); |
1022 | char *buf = alloca (rs->remote_packet_size); | |
cce74817 | 1023 | int state = gen ? general_thread : continue_thread; |
c906108c SS |
1024 | |
1025 | if (state == th) | |
1026 | return; | |
1027 | ||
1028 | buf[0] = 'H'; | |
1029 | buf[1] = gen ? 'g' : 'c'; | |
1030 | if (th == MAGIC_NULL_PID) | |
1031 | { | |
1032 | buf[2] = '0'; | |
1033 | buf[3] = '\0'; | |
1034 | } | |
1035 | else if (th < 0) | |
1036 | sprintf (&buf[2], "-%x", -th); | |
1037 | else | |
1038 | sprintf (&buf[2], "%x", th); | |
1039 | putpkt (buf); | |
d01949b6 | 1040 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c | 1041 | if (gen) |
c5aa993b | 1042 | general_thread = th; |
c906108c | 1043 | else |
cce74817 | 1044 | continue_thread = th; |
c906108c SS |
1045 | } |
1046 | \f | |
1047 | /* Return nonzero if the thread TH is still alive on the remote system. */ | |
1048 | ||
1049 | static int | |
39f77062 | 1050 | remote_thread_alive (ptid_t ptid) |
c906108c | 1051 | { |
39f77062 | 1052 | int tid = PIDGET (ptid); |
cce74817 | 1053 | char buf[16]; |
c906108c | 1054 | |
cce74817 JM |
1055 | if (tid < 0) |
1056 | sprintf (buf, "T-%08x", -tid); | |
c906108c | 1057 | else |
cce74817 | 1058 | sprintf (buf, "T%08x", tid); |
c906108c | 1059 | putpkt (buf); |
c2d11a7d | 1060 | getpkt (buf, sizeof (buf), 0); |
c906108c SS |
1061 | return (buf[0] == 'O' && buf[1] == 'K'); |
1062 | } | |
1063 | ||
1064 | /* About these extended threadlist and threadinfo packets. They are | |
1065 | variable length packets but, the fields within them are often fixed | |
1066 | length. They are redundent enough to send over UDP as is the | |
1067 | remote protocol in general. There is a matching unit test module | |
1068 | in libstub. */ | |
1069 | ||
cce74817 JM |
1070 | #define OPAQUETHREADBYTES 8 |
1071 | ||
1072 | /* a 64 bit opaque identifier */ | |
1073 | typedef unsigned char threadref[OPAQUETHREADBYTES]; | |
1074 | ||
1075 | /* WARNING: This threadref data structure comes from the remote O.S., libstub | |
1076 | protocol encoding, and remote.c. it is not particularly changable */ | |
1077 | ||
1078 | /* Right now, the internal structure is int. We want it to be bigger. | |
1079 | Plan to fix this. | |
c5aa993b | 1080 | */ |
cce74817 | 1081 | |
c5aa993b | 1082 | typedef int gdb_threadref; /* internal GDB thread reference */ |
cce74817 | 1083 | |
9d1f7ab2 | 1084 | /* gdb_ext_thread_info is an internal GDB data structure which is |
cce74817 JM |
1085 | equivalint to the reply of the remote threadinfo packet */ |
1086 | ||
1087 | struct gdb_ext_thread_info | |
c5aa993b JM |
1088 | { |
1089 | threadref threadid; /* External form of thread reference */ | |
1090 | int active; /* Has state interesting to GDB? , regs, stack */ | |
1091 | char display[256]; /* Brief state display, name, blocked/syspended */ | |
1092 | char shortname[32]; /* To be used to name threads */ | |
1093 | char more_display[256]; /* Long info, statistics, queue depth, whatever */ | |
1094 | }; | |
cce74817 JM |
1095 | |
1096 | /* The volume of remote transfers can be limited by submitting | |
1097 | a mask containing bits specifying the desired information. | |
1098 | Use a union of these values as the 'selection' parameter to | |
1099 | get_thread_info. FIXME: Make these TAG names more thread specific. | |
c5aa993b | 1100 | */ |
cce74817 JM |
1101 | |
1102 | #define TAG_THREADID 1 | |
1103 | #define TAG_EXISTS 2 | |
1104 | #define TAG_DISPLAY 4 | |
1105 | #define TAG_THREADNAME 8 | |
c5aa993b | 1106 | #define TAG_MOREDISPLAY 16 |
cce74817 | 1107 | |
c906108c SS |
1108 | #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES*2) |
1109 | ||
b2dd6311 | 1110 | char *unpack_varlen_hex (char *buff, ULONGEST *result); |
cce74817 | 1111 | |
a14ed312 | 1112 | static char *unpack_nibble (char *buf, int *val); |
cce74817 | 1113 | |
a14ed312 | 1114 | static char *pack_nibble (char *buf, int nibble); |
cce74817 | 1115 | |
a14ed312 | 1116 | static char *pack_hex_byte (char *pkt, int /*unsigned char */ byte); |
cce74817 | 1117 | |
a14ed312 | 1118 | static char *unpack_byte (char *buf, int *value); |
cce74817 | 1119 | |
a14ed312 | 1120 | static char *pack_int (char *buf, int value); |
cce74817 | 1121 | |
a14ed312 | 1122 | static char *unpack_int (char *buf, int *value); |
cce74817 | 1123 | |
a14ed312 | 1124 | static char *unpack_string (char *src, char *dest, int length); |
cce74817 | 1125 | |
a14ed312 | 1126 | static char *pack_threadid (char *pkt, threadref * id); |
cce74817 | 1127 | |
a14ed312 | 1128 | static char *unpack_threadid (char *inbuf, threadref * id); |
cce74817 | 1129 | |
a14ed312 | 1130 | void int_to_threadref (threadref * id, int value); |
cce74817 | 1131 | |
a14ed312 | 1132 | static int threadref_to_int (threadref * ref); |
cce74817 | 1133 | |
a14ed312 | 1134 | static void copy_threadref (threadref * dest, threadref * src); |
cce74817 | 1135 | |
a14ed312 | 1136 | static int threadmatch (threadref * dest, threadref * src); |
cce74817 | 1137 | |
a14ed312 | 1138 | static char *pack_threadinfo_request (char *pkt, int mode, threadref * id); |
cce74817 | 1139 | |
a14ed312 KB |
1140 | static int remote_unpack_thread_info_response (char *pkt, |
1141 | threadref * expectedref, | |
1142 | struct gdb_ext_thread_info | |
1143 | *info); | |
cce74817 JM |
1144 | |
1145 | ||
a14ed312 KB |
1146 | static int remote_get_threadinfo (threadref * threadid, int fieldset, /*TAG mask */ |
1147 | struct gdb_ext_thread_info *info); | |
cce74817 | 1148 | |
a14ed312 KB |
1149 | static int adapt_remote_get_threadinfo (gdb_threadref * ref, |
1150 | int selection, | |
1151 | struct gdb_ext_thread_info *info); | |
cce74817 | 1152 | |
a14ed312 KB |
1153 | static char *pack_threadlist_request (char *pkt, int startflag, |
1154 | int threadcount, | |
1155 | threadref * nextthread); | |
cce74817 | 1156 | |
a14ed312 KB |
1157 | static int parse_threadlist_response (char *pkt, |
1158 | int result_limit, | |
1159 | threadref * original_echo, | |
1160 | threadref * resultlist, int *doneflag); | |
cce74817 | 1161 | |
a14ed312 KB |
1162 | static int remote_get_threadlist (int startflag, |
1163 | threadref * nextthread, | |
1164 | int result_limit, | |
1165 | int *done, | |
1166 | int *result_count, threadref * threadlist); | |
cce74817 | 1167 | |
c5aa993b | 1168 | typedef int (*rmt_thread_action) (threadref * ref, void *context); |
cce74817 | 1169 | |
a14ed312 KB |
1170 | static int remote_threadlist_iterator (rmt_thread_action stepfunction, |
1171 | void *context, int looplimit); | |
cce74817 | 1172 | |
a14ed312 | 1173 | static int remote_newthread_step (threadref * ref, void *context); |
cce74817 | 1174 | |
c906108c SS |
1175 | /* encode 64 bits in 16 chars of hex */ |
1176 | ||
1177 | static const char hexchars[] = "0123456789abcdef"; | |
1178 | ||
1179 | static int | |
fba45db2 | 1180 | ishex (int ch, int *val) |
c906108c SS |
1181 | { |
1182 | if ((ch >= 'a') && (ch <= 'f')) | |
1183 | { | |
1184 | *val = ch - 'a' + 10; | |
1185 | return 1; | |
1186 | } | |
1187 | if ((ch >= 'A') && (ch <= 'F')) | |
1188 | { | |
1189 | *val = ch - 'A' + 10; | |
1190 | return 1; | |
1191 | } | |
1192 | if ((ch >= '0') && (ch <= '9')) | |
1193 | { | |
1194 | *val = ch - '0'; | |
1195 | return 1; | |
1196 | } | |
1197 | return 0; | |
1198 | } | |
1199 | ||
1200 | static int | |
fba45db2 | 1201 | stubhex (int ch) |
c906108c SS |
1202 | { |
1203 | if (ch >= 'a' && ch <= 'f') | |
1204 | return ch - 'a' + 10; | |
1205 | if (ch >= '0' && ch <= '9') | |
1206 | return ch - '0'; | |
1207 | if (ch >= 'A' && ch <= 'F') | |
1208 | return ch - 'A' + 10; | |
1209 | return -1; | |
1210 | } | |
1211 | ||
1212 | static int | |
fba45db2 | 1213 | stub_unpack_int (char *buff, int fieldlength) |
c906108c SS |
1214 | { |
1215 | int nibble; | |
1216 | int retval = 0; | |
1217 | ||
1218 | while (fieldlength) | |
1219 | { | |
1220 | nibble = stubhex (*buff++); | |
1221 | retval |= nibble; | |
1222 | fieldlength--; | |
1223 | if (fieldlength) | |
1224 | retval = retval << 4; | |
1225 | } | |
1226 | return retval; | |
1227 | } | |
1228 | ||
1229 | char * | |
fba45db2 | 1230 | unpack_varlen_hex (char *buff, /* packet to parse */ |
b2dd6311 | 1231 | ULONGEST *result) |
c906108c SS |
1232 | { |
1233 | int nibble; | |
1234 | int retval = 0; | |
1235 | ||
1236 | while (ishex (*buff, &nibble)) | |
1237 | { | |
1238 | buff++; | |
1239 | retval = retval << 4; | |
1240 | retval |= nibble & 0x0f; | |
1241 | } | |
1242 | *result = retval; | |
1243 | return buff; | |
1244 | } | |
1245 | ||
1246 | static char * | |
fba45db2 | 1247 | unpack_nibble (char *buf, int *val) |
c906108c SS |
1248 | { |
1249 | ishex (*buf++, val); | |
1250 | return buf; | |
1251 | } | |
1252 | ||
1253 | static char * | |
fba45db2 | 1254 | pack_nibble (char *buf, int nibble) |
c906108c SS |
1255 | { |
1256 | *buf++ = hexchars[(nibble & 0x0f)]; | |
1257 | return buf; | |
1258 | } | |
1259 | ||
1260 | static char * | |
fba45db2 | 1261 | pack_hex_byte (char *pkt, int byte) |
c906108c SS |
1262 | { |
1263 | *pkt++ = hexchars[(byte >> 4) & 0xf]; | |
1264 | *pkt++ = hexchars[(byte & 0xf)]; | |
1265 | return pkt; | |
1266 | } | |
1267 | ||
1268 | static char * | |
fba45db2 | 1269 | unpack_byte (char *buf, int *value) |
c906108c SS |
1270 | { |
1271 | *value = stub_unpack_int (buf, 2); | |
1272 | return buf + 2; | |
1273 | } | |
1274 | ||
1275 | static char * | |
fba45db2 | 1276 | pack_int (char *buf, int value) |
c906108c SS |
1277 | { |
1278 | buf = pack_hex_byte (buf, (value >> 24) & 0xff); | |
1279 | buf = pack_hex_byte (buf, (value >> 16) & 0xff); | |
1280 | buf = pack_hex_byte (buf, (value >> 8) & 0x0ff); | |
1281 | buf = pack_hex_byte (buf, (value & 0xff)); | |
1282 | return buf; | |
1283 | } | |
1284 | ||
1285 | static char * | |
fba45db2 | 1286 | unpack_int (char *buf, int *value) |
c906108c SS |
1287 | { |
1288 | *value = stub_unpack_int (buf, 8); | |
1289 | return buf + 8; | |
1290 | } | |
1291 | ||
c5aa993b | 1292 | #if 0 /* currently unused, uncomment when needed */ |
a14ed312 | 1293 | static char *pack_string (char *pkt, char *string); |
c906108c SS |
1294 | |
1295 | static char * | |
fba45db2 | 1296 | pack_string (char *pkt, char *string) |
c906108c SS |
1297 | { |
1298 | char ch; | |
1299 | int len; | |
1300 | ||
1301 | len = strlen (string); | |
1302 | if (len > 200) | |
1303 | len = 200; /* Bigger than most GDB packets, junk??? */ | |
1304 | pkt = pack_hex_byte (pkt, len); | |
1305 | while (len-- > 0) | |
1306 | { | |
1307 | ch = *string++; | |
1308 | if ((ch == '\0') || (ch == '#')) | |
1309 | ch = '*'; /* Protect encapsulation */ | |
1310 | *pkt++ = ch; | |
1311 | } | |
1312 | return pkt; | |
1313 | } | |
1314 | #endif /* 0 (unused) */ | |
1315 | ||
1316 | static char * | |
fba45db2 | 1317 | unpack_string (char *src, char *dest, int length) |
c906108c SS |
1318 | { |
1319 | while (length--) | |
1320 | *dest++ = *src++; | |
1321 | *dest = '\0'; | |
1322 | return src; | |
1323 | } | |
1324 | ||
1325 | static char * | |
fba45db2 | 1326 | pack_threadid (char *pkt, threadref *id) |
c906108c SS |
1327 | { |
1328 | char *limit; | |
1329 | unsigned char *altid; | |
1330 | ||
1331 | altid = (unsigned char *) id; | |
1332 | limit = pkt + BUF_THREAD_ID_SIZE; | |
1333 | while (pkt < limit) | |
1334 | pkt = pack_hex_byte (pkt, *altid++); | |
1335 | return pkt; | |
1336 | } | |
1337 | ||
1338 | ||
1339 | static char * | |
fba45db2 | 1340 | unpack_threadid (char *inbuf, threadref *id) |
c906108c SS |
1341 | { |
1342 | char *altref; | |
1343 | char *limit = inbuf + BUF_THREAD_ID_SIZE; | |
1344 | int x, y; | |
1345 | ||
1346 | altref = (char *) id; | |
1347 | ||
1348 | while (inbuf < limit) | |
1349 | { | |
1350 | x = stubhex (*inbuf++); | |
1351 | y = stubhex (*inbuf++); | |
1352 | *altref++ = (x << 4) | y; | |
1353 | } | |
1354 | return inbuf; | |
1355 | } | |
1356 | ||
1357 | /* Externally, threadrefs are 64 bits but internally, they are still | |
1358 | ints. This is due to a mismatch of specifications. We would like | |
1359 | to use 64bit thread references internally. This is an adapter | |
1360 | function. */ | |
1361 | ||
1362 | void | |
fba45db2 | 1363 | int_to_threadref (threadref *id, int value) |
c906108c SS |
1364 | { |
1365 | unsigned char *scan; | |
1366 | ||
1367 | scan = (unsigned char *) id; | |
1368 | { | |
1369 | int i = 4; | |
1370 | while (i--) | |
1371 | *scan++ = 0; | |
1372 | } | |
1373 | *scan++ = (value >> 24) & 0xff; | |
1374 | *scan++ = (value >> 16) & 0xff; | |
1375 | *scan++ = (value >> 8) & 0xff; | |
1376 | *scan++ = (value & 0xff); | |
1377 | } | |
1378 | ||
1379 | static int | |
fba45db2 | 1380 | threadref_to_int (threadref *ref) |
c906108c SS |
1381 | { |
1382 | int i, value = 0; | |
1383 | unsigned char *scan; | |
1384 | ||
1385 | scan = (char *) ref; | |
1386 | scan += 4; | |
1387 | i = 4; | |
1388 | while (i-- > 0) | |
1389 | value = (value << 8) | ((*scan++) & 0xff); | |
1390 | return value; | |
1391 | } | |
1392 | ||
1393 | static void | |
fba45db2 | 1394 | copy_threadref (threadref *dest, threadref *src) |
c906108c SS |
1395 | { |
1396 | int i; | |
1397 | unsigned char *csrc, *cdest; | |
1398 | ||
1399 | csrc = (unsigned char *) src; | |
1400 | cdest = (unsigned char *) dest; | |
1401 | i = 8; | |
1402 | while (i--) | |
1403 | *cdest++ = *csrc++; | |
1404 | } | |
1405 | ||
1406 | static int | |
fba45db2 | 1407 | threadmatch (threadref *dest, threadref *src) |
c906108c SS |
1408 | { |
1409 | /* things are broken right now, so just assume we got a match */ | |
1410 | #if 0 | |
1411 | unsigned char *srcp, *destp; | |
1412 | int i, result; | |
1413 | srcp = (char *) src; | |
1414 | destp = (char *) dest; | |
1415 | ||
1416 | result = 1; | |
1417 | while (i-- > 0) | |
1418 | result &= (*srcp++ == *destp++) ? 1 : 0; | |
1419 | return result; | |
1420 | #endif | |
1421 | return 1; | |
1422 | } | |
1423 | ||
1424 | /* | |
c5aa993b JM |
1425 | threadid:1, # always request threadid |
1426 | context_exists:2, | |
1427 | display:4, | |
1428 | unique_name:8, | |
1429 | more_display:16 | |
1430 | */ | |
c906108c SS |
1431 | |
1432 | /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */ | |
1433 | ||
1434 | static char * | |
fba45db2 | 1435 | pack_threadinfo_request (char *pkt, int mode, threadref *id) |
c906108c SS |
1436 | { |
1437 | *pkt++ = 'q'; /* Info Query */ | |
1438 | *pkt++ = 'P'; /* process or thread info */ | |
1439 | pkt = pack_int (pkt, mode); /* mode */ | |
1440 | pkt = pack_threadid (pkt, id); /* threadid */ | |
1441 | *pkt = '\0'; /* terminate */ | |
1442 | return pkt; | |
1443 | } | |
1444 | ||
1445 | /* These values tag the fields in a thread info response packet */ | |
1446 | /* Tagging the fields allows us to request specific fields and to | |
1447 | add more fields as time goes by */ | |
1448 | ||
c5aa993b JM |
1449 | #define TAG_THREADID 1 /* Echo the thread identifier */ |
1450 | #define TAG_EXISTS 2 /* Is this process defined enough to | |
1451 | fetch registers and its stack */ | |
1452 | #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */ | |
1453 | #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is */ | |
1454 | #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about | |
1455 | the process */ | |
c906108c SS |
1456 | |
1457 | static int | |
fba45db2 KB |
1458 | remote_unpack_thread_info_response (char *pkt, threadref *expectedref, |
1459 | struct gdb_ext_thread_info *info) | |
c906108c | 1460 | { |
d01949b6 | 1461 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
1462 | int mask, length; |
1463 | unsigned int tag; | |
1464 | threadref ref; | |
d01949b6 | 1465 | char *limit = pkt + (rs->remote_packet_size); /* plausable parsing limit */ |
c906108c SS |
1466 | int retval = 1; |
1467 | ||
1468 | /* info->threadid = 0; FIXME: implement zero_threadref */ | |
1469 | info->active = 0; | |
1470 | info->display[0] = '\0'; | |
1471 | info->shortname[0] = '\0'; | |
1472 | info->more_display[0] = '\0'; | |
1473 | ||
1474 | /* Assume the characters indicating the packet type have been stripped */ | |
1475 | pkt = unpack_int (pkt, &mask); /* arg mask */ | |
1476 | pkt = unpack_threadid (pkt, &ref); | |
1477 | ||
1478 | if (mask == 0) | |
1479 | warning ("Incomplete response to threadinfo request\n"); | |
1480 | if (!threadmatch (&ref, expectedref)) | |
1481 | { /* This is an answer to a different request */ | |
1482 | warning ("ERROR RMT Thread info mismatch\n"); | |
1483 | return 0; | |
1484 | } | |
1485 | copy_threadref (&info->threadid, &ref); | |
1486 | ||
1487 | /* Loop on tagged fields , try to bail if somthing goes wrong */ | |
1488 | ||
c5aa993b | 1489 | while ((pkt < limit) && mask && *pkt) /* packets are terminated with nulls */ |
c906108c SS |
1490 | { |
1491 | pkt = unpack_int (pkt, &tag); /* tag */ | |
1492 | pkt = unpack_byte (pkt, &length); /* length */ | |
1493 | if (!(tag & mask)) /* tags out of synch with mask */ | |
1494 | { | |
1495 | warning ("ERROR RMT: threadinfo tag mismatch\n"); | |
1496 | retval = 0; | |
1497 | break; | |
1498 | } | |
1499 | if (tag == TAG_THREADID) | |
1500 | { | |
1501 | if (length != 16) | |
1502 | { | |
1503 | warning ("ERROR RMT: length of threadid is not 16\n"); | |
1504 | retval = 0; | |
1505 | break; | |
1506 | } | |
1507 | pkt = unpack_threadid (pkt, &ref); | |
1508 | mask = mask & ~TAG_THREADID; | |
1509 | continue; | |
1510 | } | |
1511 | if (tag == TAG_EXISTS) | |
1512 | { | |
1513 | info->active = stub_unpack_int (pkt, length); | |
1514 | pkt += length; | |
1515 | mask = mask & ~(TAG_EXISTS); | |
1516 | if (length > 8) | |
1517 | { | |
1518 | warning ("ERROR RMT: 'exists' length too long\n"); | |
1519 | retval = 0; | |
1520 | break; | |
1521 | } | |
1522 | continue; | |
1523 | } | |
1524 | if (tag == TAG_THREADNAME) | |
1525 | { | |
1526 | pkt = unpack_string (pkt, &info->shortname[0], length); | |
1527 | mask = mask & ~TAG_THREADNAME; | |
1528 | continue; | |
1529 | } | |
1530 | if (tag == TAG_DISPLAY) | |
1531 | { | |
1532 | pkt = unpack_string (pkt, &info->display[0], length); | |
1533 | mask = mask & ~TAG_DISPLAY; | |
1534 | continue; | |
1535 | } | |
1536 | if (tag == TAG_MOREDISPLAY) | |
1537 | { | |
1538 | pkt = unpack_string (pkt, &info->more_display[0], length); | |
1539 | mask = mask & ~TAG_MOREDISPLAY; | |
1540 | continue; | |
1541 | } | |
1542 | warning ("ERROR RMT: unknown thread info tag\n"); | |
1543 | break; /* Not a tag we know about */ | |
1544 | } | |
1545 | return retval; | |
1546 | } | |
1547 | ||
1548 | static int | |
fba45db2 KB |
1549 | remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */ |
1550 | struct gdb_ext_thread_info *info) | |
c906108c | 1551 | { |
d01949b6 | 1552 | struct remote_state *rs = get_remote_state (); |
c906108c | 1553 | int result; |
d01949b6 | 1554 | char *threadinfo_pkt = alloca (rs->remote_packet_size); |
c906108c SS |
1555 | |
1556 | pack_threadinfo_request (threadinfo_pkt, fieldset, threadid); | |
1557 | putpkt (threadinfo_pkt); | |
d01949b6 | 1558 | getpkt (threadinfo_pkt, (rs->remote_packet_size), 0); |
c906108c SS |
1559 | result = remote_unpack_thread_info_response (threadinfo_pkt + 2, threadid, |
1560 | info); | |
1561 | return result; | |
1562 | } | |
1563 | ||
1564 | /* Unfortunately, 61 bit thread-ids are bigger than the internal | |
1565 | representation of a threadid. */ | |
1566 | ||
1567 | static int | |
fba45db2 KB |
1568 | adapt_remote_get_threadinfo (gdb_threadref *ref, int selection, |
1569 | struct gdb_ext_thread_info *info) | |
c906108c SS |
1570 | { |
1571 | threadref lclref; | |
1572 | ||
1573 | int_to_threadref (&lclref, *ref); | |
1574 | return remote_get_threadinfo (&lclref, selection, info); | |
1575 | } | |
1576 | ||
1577 | /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */ | |
1578 | ||
1579 | static char * | |
fba45db2 KB |
1580 | pack_threadlist_request (char *pkt, int startflag, int threadcount, |
1581 | threadref *nextthread) | |
c906108c SS |
1582 | { |
1583 | *pkt++ = 'q'; /* info query packet */ | |
1584 | *pkt++ = 'L'; /* Process LIST or threadLIST request */ | |
1585 | pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */ | |
1586 | pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */ | |
1587 | pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */ | |
1588 | *pkt = '\0'; | |
1589 | return pkt; | |
1590 | } | |
1591 | ||
1592 | /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */ | |
1593 | ||
1594 | static int | |
fba45db2 KB |
1595 | parse_threadlist_response (char *pkt, int result_limit, |
1596 | threadref *original_echo, threadref *resultlist, | |
1597 | int *doneflag) | |
c906108c | 1598 | { |
d01949b6 | 1599 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
1600 | char *limit; |
1601 | int count, resultcount, done; | |
1602 | ||
1603 | resultcount = 0; | |
1604 | /* Assume the 'q' and 'M chars have been stripped. */ | |
d01949b6 | 1605 | limit = pkt + ((rs->remote_packet_size) - BUF_THREAD_ID_SIZE); /* done parse past here */ |
c906108c SS |
1606 | pkt = unpack_byte (pkt, &count); /* count field */ |
1607 | pkt = unpack_nibble (pkt, &done); | |
1608 | /* The first threadid is the argument threadid. */ | |
1609 | pkt = unpack_threadid (pkt, original_echo); /* should match query packet */ | |
1610 | while ((count-- > 0) && (pkt < limit)) | |
1611 | { | |
1612 | pkt = unpack_threadid (pkt, resultlist++); | |
1613 | if (resultcount++ >= result_limit) | |
1614 | break; | |
1615 | } | |
1616 | if (doneflag) | |
1617 | *doneflag = done; | |
1618 | return resultcount; | |
1619 | } | |
1620 | ||
1621 | static int | |
fba45db2 KB |
1622 | remote_get_threadlist (int startflag, threadref *nextthread, int result_limit, |
1623 | int *done, int *result_count, threadref *threadlist) | |
c906108c | 1624 | { |
d01949b6 | 1625 | struct remote_state *rs = get_remote_state (); |
c906108c | 1626 | static threadref echo_nextthread; |
d01949b6 AC |
1627 | char *threadlist_packet = alloca (rs->remote_packet_size); |
1628 | char *t_response = alloca (rs->remote_packet_size); | |
c906108c SS |
1629 | int result = 1; |
1630 | ||
1631 | /* Trancate result limit to be smaller than the packet size */ | |
d01949b6 AC |
1632 | if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= (rs->remote_packet_size)) |
1633 | result_limit = ((rs->remote_packet_size) / BUF_THREAD_ID_SIZE) - 2; | |
c906108c SS |
1634 | |
1635 | pack_threadlist_request (threadlist_packet, | |
1636 | startflag, result_limit, nextthread); | |
1637 | putpkt (threadlist_packet); | |
d01949b6 | 1638 | getpkt (t_response, (rs->remote_packet_size), 0); |
c906108c SS |
1639 | |
1640 | *result_count = | |
1641 | parse_threadlist_response (t_response + 2, result_limit, &echo_nextthread, | |
1642 | threadlist, done); | |
1643 | ||
1644 | if (!threadmatch (&echo_nextthread, nextthread)) | |
1645 | { | |
1646 | /* FIXME: This is a good reason to drop the packet */ | |
1647 | /* Possably, there is a duplicate response */ | |
1648 | /* Possabilities : | |
1649 | retransmit immediatly - race conditions | |
1650 | retransmit after timeout - yes | |
1651 | exit | |
1652 | wait for packet, then exit | |
1653 | */ | |
1654 | warning ("HMM: threadlist did not echo arg thread, dropping it\n"); | |
1655 | return 0; /* I choose simply exiting */ | |
1656 | } | |
1657 | if (*result_count <= 0) | |
1658 | { | |
1659 | if (*done != 1) | |
1660 | { | |
1661 | warning ("RMT ERROR : failed to get remote thread list\n"); | |
1662 | result = 0; | |
1663 | } | |
1664 | return result; /* break; */ | |
1665 | } | |
1666 | if (*result_count > result_limit) | |
1667 | { | |
1668 | *result_count = 0; | |
1669 | warning ("RMT ERROR: threadlist response longer than requested\n"); | |
1670 | return 0; | |
1671 | } | |
1672 | return result; | |
1673 | } | |
1674 | ||
1675 | /* This is the interface between remote and threads, remotes upper interface */ | |
1676 | ||
1677 | /* remote_find_new_threads retrieves the thread list and for each | |
1678 | thread in the list, looks up the thread in GDB's internal list, | |
1679 | ading the thread if it does not already exist. This involves | |
1680 | getting partial thread lists from the remote target so, polling the | |
1681 | quit_flag is required. */ | |
1682 | ||
1683 | ||
1684 | /* About this many threadisds fit in a packet. */ | |
1685 | ||
1686 | #define MAXTHREADLISTRESULTS 32 | |
1687 | ||
1688 | static int | |
fba45db2 KB |
1689 | remote_threadlist_iterator (rmt_thread_action stepfunction, void *context, |
1690 | int looplimit) | |
c906108c SS |
1691 | { |
1692 | int done, i, result_count; | |
1693 | int startflag = 1; | |
1694 | int result = 1; | |
1695 | int loopcount = 0; | |
1696 | static threadref nextthread; | |
1697 | static threadref resultthreadlist[MAXTHREADLISTRESULTS]; | |
1698 | ||
1699 | done = 0; | |
1700 | while (!done) | |
1701 | { | |
1702 | if (loopcount++ > looplimit) | |
1703 | { | |
1704 | result = 0; | |
1705 | warning ("Remote fetch threadlist -infinite loop-\n"); | |
1706 | break; | |
1707 | } | |
1708 | if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS, | |
1709 | &done, &result_count, resultthreadlist)) | |
1710 | { | |
1711 | result = 0; | |
1712 | break; | |
1713 | } | |
1714 | /* clear for later iterations */ | |
1715 | startflag = 0; | |
1716 | /* Setup to resume next batch of thread references, set nextthread. */ | |
1717 | if (result_count >= 1) | |
1718 | copy_threadref (&nextthread, &resultthreadlist[result_count - 1]); | |
1719 | i = 0; | |
1720 | while (result_count--) | |
1721 | if (!(result = (*stepfunction) (&resultthreadlist[i++], context))) | |
1722 | break; | |
1723 | } | |
1724 | return result; | |
1725 | } | |
1726 | ||
1727 | static int | |
fba45db2 | 1728 | remote_newthread_step (threadref *ref, void *context) |
c906108c | 1729 | { |
39f77062 | 1730 | ptid_t ptid; |
c906108c | 1731 | |
39f77062 KB |
1732 | ptid = pid_to_ptid (threadref_to_int (ref)); |
1733 | ||
1734 | if (!in_thread_list (ptid)) | |
1735 | add_thread (ptid); | |
c906108c SS |
1736 | return 1; /* continue iterator */ |
1737 | } | |
1738 | ||
1739 | #define CRAZY_MAX_THREADS 1000 | |
1740 | ||
39f77062 KB |
1741 | static ptid_t |
1742 | remote_current_thread (ptid_t oldpid) | |
c906108c | 1743 | { |
d01949b6 AC |
1744 | struct remote_state *rs = get_remote_state (); |
1745 | char *buf = alloca (rs->remote_packet_size); | |
c906108c SS |
1746 | |
1747 | putpkt ("qC"); | |
d01949b6 | 1748 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c | 1749 | if (buf[0] == 'Q' && buf[1] == 'C') |
39f77062 | 1750 | return pid_to_ptid (strtol (&buf[2], NULL, 16)); |
c906108c SS |
1751 | else |
1752 | return oldpid; | |
1753 | } | |
1754 | ||
9d1f7ab2 MS |
1755 | /* Find new threads for info threads command. |
1756 | * Original version, using John Metzler's thread protocol. | |
1757 | */ | |
cce74817 JM |
1758 | |
1759 | static void | |
fba45db2 | 1760 | remote_find_new_threads (void) |
c906108c | 1761 | { |
c5aa993b JM |
1762 | remote_threadlist_iterator (remote_newthread_step, 0, |
1763 | CRAZY_MAX_THREADS); | |
39f77062 KB |
1764 | if (PIDGET (inferior_ptid) == MAGIC_NULL_PID) /* ack ack ack */ |
1765 | inferior_ptid = remote_current_thread (inferior_ptid); | |
c906108c SS |
1766 | } |
1767 | ||
9d1f7ab2 MS |
1768 | /* |
1769 | * Find all threads for info threads command. | |
1770 | * Uses new thread protocol contributed by Cisco. | |
1771 | * Falls back and attempts to use the older method (above) | |
1772 | * if the target doesn't respond to the new method. | |
1773 | */ | |
1774 | ||
0f71a2f6 JM |
1775 | static void |
1776 | remote_threads_info (void) | |
1777 | { | |
d01949b6 AC |
1778 | struct remote_state *rs = get_remote_state (); |
1779 | char *buf = alloca (rs->remote_packet_size); | |
085dd6e6 | 1780 | char *bufp; |
0f71a2f6 JM |
1781 | int tid; |
1782 | ||
1783 | if (remote_desc == 0) /* paranoia */ | |
1784 | error ("Command can only be used when connected to the remote target."); | |
1785 | ||
9d1f7ab2 MS |
1786 | if (use_threadinfo_query) |
1787 | { | |
1788 | putpkt ("qfThreadInfo"); | |
1789 | bufp = buf; | |
d01949b6 | 1790 | getpkt (bufp, (rs->remote_packet_size), 0); |
9d1f7ab2 MS |
1791 | if (bufp[0] != '\0') /* q packet recognized */ |
1792 | { | |
1793 | while (*bufp++ == 'm') /* reply contains one or more TID */ | |
1794 | { | |
1795 | do | |
1796 | { | |
1797 | tid = strtol (bufp, &bufp, 16); | |
39f77062 KB |
1798 | if (tid != 0 && !in_thread_list (pid_to_ptid (tid))) |
1799 | add_thread (pid_to_ptid (tid)); | |
9d1f7ab2 MS |
1800 | } |
1801 | while (*bufp++ == ','); /* comma-separated list */ | |
1802 | putpkt ("qsThreadInfo"); | |
1803 | bufp = buf; | |
d01949b6 | 1804 | getpkt (bufp, (rs->remote_packet_size), 0); |
9d1f7ab2 MS |
1805 | } |
1806 | return; /* done */ | |
1807 | } | |
1808 | } | |
1809 | ||
1810 | /* Else fall back to old method based on jmetzler protocol. */ | |
1811 | use_threadinfo_query = 0; | |
1812 | remote_find_new_threads (); | |
1813 | return; | |
1814 | } | |
1815 | ||
1816 | /* | |
1817 | * Collect a descriptive string about the given thread. | |
1818 | * The target may say anything it wants to about the thread | |
1819 | * (typically info about its blocked / runnable state, name, etc.). | |
1820 | * This string will appear in the info threads display. | |
1821 | * | |
1822 | * Optional: targets are not required to implement this function. | |
1823 | */ | |
1824 | ||
1825 | static char * | |
1826 | remote_threads_extra_info (struct thread_info *tp) | |
1827 | { | |
d01949b6 | 1828 | struct remote_state *rs = get_remote_state (); |
9d1f7ab2 MS |
1829 | int result; |
1830 | int set; | |
1831 | threadref id; | |
1832 | struct gdb_ext_thread_info threadinfo; | |
1833 | static char display_buf[100]; /* arbitrary... */ | |
d01949b6 | 1834 | char *bufp = alloca (rs->remote_packet_size); |
9d1f7ab2 MS |
1835 | int n = 0; /* position in display_buf */ |
1836 | ||
1837 | if (remote_desc == 0) /* paranoia */ | |
8e65ff28 AC |
1838 | internal_error (__FILE__, __LINE__, |
1839 | "remote_threads_extra_info"); | |
9d1f7ab2 MS |
1840 | |
1841 | if (use_threadextra_query) | |
1842 | { | |
39f77062 | 1843 | sprintf (bufp, "qThreadExtraInfo,%x", PIDGET (tp->ptid)); |
9d1f7ab2 | 1844 | putpkt (bufp); |
d01949b6 | 1845 | getpkt (bufp, (rs->remote_packet_size), 0); |
9d1f7ab2 MS |
1846 | if (bufp[0] != 0) |
1847 | { | |
30559e10 MS |
1848 | n = min (strlen (bufp) / 2, sizeof (display_buf)); |
1849 | result = hex2bin (bufp, display_buf, n); | |
1850 | display_buf [result] = '\0'; | |
9d1f7ab2 MS |
1851 | return display_buf; |
1852 | } | |
0f71a2f6 | 1853 | } |
9d1f7ab2 MS |
1854 | |
1855 | /* If the above query fails, fall back to the old method. */ | |
1856 | use_threadextra_query = 0; | |
1857 | set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME | |
1858 | | TAG_MOREDISPLAY | TAG_DISPLAY; | |
39f77062 | 1859 | int_to_threadref (&id, PIDGET (tp->ptid)); |
9d1f7ab2 MS |
1860 | if (remote_get_threadinfo (&id, set, &threadinfo)) |
1861 | if (threadinfo.active) | |
0f71a2f6 | 1862 | { |
9d1f7ab2 MS |
1863 | if (*threadinfo.shortname) |
1864 | n += sprintf(&display_buf[0], " Name: %s,", threadinfo.shortname); | |
1865 | if (*threadinfo.display) | |
1866 | n += sprintf(&display_buf[n], " State: %s,", threadinfo.display); | |
1867 | if (*threadinfo.more_display) | |
1868 | n += sprintf(&display_buf[n], " Priority: %s", | |
1869 | threadinfo.more_display); | |
1870 | ||
1871 | if (n > 0) | |
c5aa993b | 1872 | { |
9d1f7ab2 MS |
1873 | /* for purely cosmetic reasons, clear up trailing commas */ |
1874 | if (',' == display_buf[n-1]) | |
1875 | display_buf[n-1] = ' '; | |
1876 | return display_buf; | |
c5aa993b | 1877 | } |
0f71a2f6 | 1878 | } |
9d1f7ab2 | 1879 | return NULL; |
0f71a2f6 | 1880 | } |
9d1f7ab2 | 1881 | |
c906108c | 1882 | \f |
c5aa993b | 1883 | |
c906108c SS |
1884 | /* Restart the remote side; this is an extended protocol operation. */ |
1885 | ||
1886 | static void | |
fba45db2 | 1887 | extended_remote_restart (void) |
c906108c | 1888 | { |
d01949b6 AC |
1889 | struct remote_state *rs = get_remote_state (); |
1890 | char *buf = alloca (rs->remote_packet_size); | |
c906108c SS |
1891 | |
1892 | /* Send the restart command; for reasons I don't understand the | |
1893 | remote side really expects a number after the "R". */ | |
1894 | buf[0] = 'R'; | |
1895 | sprintf (&buf[1], "%x", 0); | |
1896 | putpkt (buf); | |
1897 | ||
1898 | /* Now query for status so this looks just like we restarted | |
1899 | gdbserver from scratch. */ | |
1900 | putpkt ("?"); | |
d01949b6 | 1901 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c SS |
1902 | } |
1903 | \f | |
1904 | /* Clean up connection to a remote debugger. */ | |
1905 | ||
1906 | /* ARGSUSED */ | |
1907 | static void | |
fba45db2 | 1908 | remote_close (int quitting) |
c906108c SS |
1909 | { |
1910 | if (remote_desc) | |
2cd58942 | 1911 | serial_close (remote_desc); |
c906108c SS |
1912 | remote_desc = NULL; |
1913 | } | |
1914 | ||
1915 | /* Query the remote side for the text, data and bss offsets. */ | |
1916 | ||
1917 | static void | |
fba45db2 | 1918 | get_offsets (void) |
c906108c | 1919 | { |
d01949b6 AC |
1920 | struct remote_state *rs = get_remote_state (); |
1921 | char *buf = alloca (rs->remote_packet_size); | |
085dd6e6 | 1922 | char *ptr; |
c906108c SS |
1923 | int lose; |
1924 | CORE_ADDR text_addr, data_addr, bss_addr; | |
1925 | struct section_offsets *offs; | |
1926 | ||
1927 | putpkt ("qOffsets"); | |
1928 | ||
d01949b6 | 1929 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c SS |
1930 | |
1931 | if (buf[0] == '\000') | |
1932 | return; /* Return silently. Stub doesn't support | |
1933 | this command. */ | |
1934 | if (buf[0] == 'E') | |
1935 | { | |
1936 | warning ("Remote failure reply: %s", buf); | |
1937 | return; | |
1938 | } | |
1939 | ||
1940 | /* Pick up each field in turn. This used to be done with scanf, but | |
1941 | scanf will make trouble if CORE_ADDR size doesn't match | |
1942 | conversion directives correctly. The following code will work | |
1943 | with any size of CORE_ADDR. */ | |
1944 | text_addr = data_addr = bss_addr = 0; | |
1945 | ptr = buf; | |
1946 | lose = 0; | |
1947 | ||
1948 | if (strncmp (ptr, "Text=", 5) == 0) | |
1949 | { | |
1950 | ptr += 5; | |
1951 | /* Don't use strtol, could lose on big values. */ | |
1952 | while (*ptr && *ptr != ';') | |
1953 | text_addr = (text_addr << 4) + fromhex (*ptr++); | |
1954 | } | |
1955 | else | |
1956 | lose = 1; | |
1957 | ||
1958 | if (!lose && strncmp (ptr, ";Data=", 6) == 0) | |
1959 | { | |
1960 | ptr += 6; | |
1961 | while (*ptr && *ptr != ';') | |
1962 | data_addr = (data_addr << 4) + fromhex (*ptr++); | |
1963 | } | |
1964 | else | |
1965 | lose = 1; | |
1966 | ||
1967 | if (!lose && strncmp (ptr, ";Bss=", 5) == 0) | |
1968 | { | |
1969 | ptr += 5; | |
1970 | while (*ptr && *ptr != ';') | |
1971 | bss_addr = (bss_addr << 4) + fromhex (*ptr++); | |
1972 | } | |
1973 | else | |
1974 | lose = 1; | |
1975 | ||
1976 | if (lose) | |
1977 | error ("Malformed response to offset query, %s", buf); | |
1978 | ||
1979 | if (symfile_objfile == NULL) | |
1980 | return; | |
1981 | ||
d4f3574e SS |
1982 | offs = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS); |
1983 | memcpy (offs, symfile_objfile->section_offsets, SIZEOF_SECTION_OFFSETS); | |
c906108c | 1984 | |
a4c8257b | 1985 | offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr; |
c906108c SS |
1986 | |
1987 | /* This is a temporary kludge to force data and bss to use the same offsets | |
1988 | because that's what nlmconv does now. The real solution requires changes | |
1989 | to the stub and remote.c that I don't have time to do right now. */ | |
1990 | ||
a4c8257b EZ |
1991 | offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr; |
1992 | offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr; | |
c906108c SS |
1993 | |
1994 | objfile_relocate (symfile_objfile, offs); | |
1995 | } | |
1996 | ||
0f71a2f6 JM |
1997 | /* |
1998 | * Cisco version of section offsets: | |
1999 | * | |
2000 | * Instead of having GDB query the target for the section offsets, | |
2001 | * Cisco lets the target volunteer the information! It's also in | |
2002 | * a different format, so here are the functions that will decode | |
2003 | * a section offset packet from a Cisco target. | |
2004 | */ | |
2005 | ||
2006 | /* | |
2007 | * Function: remote_cisco_section_offsets | |
2008 | * | |
2009 | * Returns: zero for success, non-zero for failure | |
2010 | */ | |
2011 | ||
c5aa993b | 2012 | static int |
c2d11a7d JM |
2013 | remote_cisco_section_offsets (bfd_vma text_addr, |
2014 | bfd_vma data_addr, | |
2015 | bfd_vma bss_addr, | |
2016 | bfd_signed_vma *text_offs, | |
2017 | bfd_signed_vma *data_offs, | |
2018 | bfd_signed_vma *bss_offs) | |
0f71a2f6 JM |
2019 | { |
2020 | bfd_vma text_base, data_base, bss_base; | |
2021 | struct minimal_symbol *start; | |
2022 | asection *sect; | |
c5aa993b | 2023 | bfd *abfd; |
0f71a2f6 | 2024 | int len; |
0f71a2f6 JM |
2025 | |
2026 | if (symfile_objfile == NULL) | |
c5aa993b | 2027 | return -1; /* no can do nothin' */ |
0f71a2f6 JM |
2028 | |
2029 | start = lookup_minimal_symbol ("_start", NULL, NULL); | |
2030 | if (start == NULL) | |
c5aa993b | 2031 | return -1; /* Can't find "_start" symbol */ |
0f71a2f6 JM |
2032 | |
2033 | data_base = bss_base = 0; | |
2034 | text_base = SYMBOL_VALUE_ADDRESS (start); | |
2035 | ||
2036 | abfd = symfile_objfile->obfd; | |
c5aa993b | 2037 | for (sect = abfd->sections; |
0f71a2f6 JM |
2038 | sect != 0; |
2039 | sect = sect->next) | |
2040 | { | |
ce359b09 | 2041 | const char *p = bfd_get_section_name (abfd, sect); |
0f71a2f6 JM |
2042 | len = strlen (p); |
2043 | if (strcmp (p + len - 4, "data") == 0) /* ends in "data" */ | |
2044 | if (data_base == 0 || | |
2045 | data_base > bfd_get_section_vma (abfd, sect)) | |
2046 | data_base = bfd_get_section_vma (abfd, sect); | |
2047 | if (strcmp (p + len - 3, "bss") == 0) /* ends in "bss" */ | |
c5aa993b | 2048 | if (bss_base == 0 || |
0f71a2f6 JM |
2049 | bss_base > bfd_get_section_vma (abfd, sect)) |
2050 | bss_base = bfd_get_section_vma (abfd, sect); | |
2051 | } | |
2052 | *text_offs = text_addr - text_base; | |
2053 | *data_offs = data_addr - data_base; | |
c5aa993b | 2054 | *bss_offs = bss_addr - bss_base; |
0f71a2f6 JM |
2055 | if (remote_debug) |
2056 | { | |
2057 | char tmp[128]; | |
2058 | ||
2059 | sprintf (tmp, "VMA: text = 0x"); | |
2060 | sprintf_vma (tmp + strlen (tmp), text_addr); | |
c5aa993b | 2061 | sprintf (tmp + strlen (tmp), " data = 0x"); |
0f71a2f6 | 2062 | sprintf_vma (tmp + strlen (tmp), data_addr); |
c5aa993b | 2063 | sprintf (tmp + strlen (tmp), " bss = 0x"); |
0f71a2f6 JM |
2064 | sprintf_vma (tmp + strlen (tmp), bss_addr); |
2065 | fprintf_filtered (gdb_stdlog, tmp); | |
2066 | fprintf_filtered (gdb_stdlog, | |
d4f3574e SS |
2067 | "Reloc offset: text = 0x%s data = 0x%s bss = 0x%s\n", |
2068 | paddr_nz (*text_offs), | |
2069 | paddr_nz (*data_offs), | |
2070 | paddr_nz (*bss_offs)); | |
0f71a2f6 JM |
2071 | } |
2072 | ||
2073 | return 0; | |
2074 | } | |
2075 | ||
2076 | /* | |
2077 | * Function: remote_cisco_objfile_relocate | |
2078 | * | |
2079 | * Relocate the symbol file for a remote target. | |
2080 | */ | |
2081 | ||
96baa820 | 2082 | void |
fba45db2 KB |
2083 | remote_cisco_objfile_relocate (bfd_signed_vma text_off, bfd_signed_vma data_off, |
2084 | bfd_signed_vma bss_off) | |
0f71a2f6 JM |
2085 | { |
2086 | struct section_offsets *offs; | |
2087 | ||
c5aa993b | 2088 | if (text_off != 0 || data_off != 0 || bss_off != 0) |
0f71a2f6 JM |
2089 | { |
2090 | /* FIXME: This code assumes gdb-stabs.h is being used; it's | |
c5aa993b JM |
2091 | broken for xcoff, dwarf, sdb-coff, etc. But there is no |
2092 | simple canonical representation for this stuff. */ | |
0f71a2f6 | 2093 | |
d4f3574e SS |
2094 | offs = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS); |
2095 | memcpy (offs, symfile_objfile->section_offsets, SIZEOF_SECTION_OFFSETS); | |
0f71a2f6 | 2096 | |
a4c8257b EZ |
2097 | offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_off; |
2098 | offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_off; | |
2099 | offs->offsets[SECT_OFF_BSS (symfile_objfile)] = bss_off; | |
0f71a2f6 JM |
2100 | |
2101 | /* First call the standard objfile_relocate. */ | |
2102 | objfile_relocate (symfile_objfile, offs); | |
2103 | ||
2104 | /* Now we need to fix up the section entries already attached to | |
c5aa993b JM |
2105 | the exec target. These entries will control memory transfers |
2106 | from the exec file. */ | |
0f71a2f6 JM |
2107 | |
2108 | exec_set_section_offsets (text_off, data_off, bss_off); | |
2109 | } | |
2110 | } | |
2111 | ||
c906108c SS |
2112 | /* Stub for catch_errors. */ |
2113 | ||
0f71a2f6 | 2114 | static int |
36918e70 | 2115 | remote_start_remote_dummy (struct ui_out *uiout, void *dummy) |
0f71a2f6 JM |
2116 | { |
2117 | start_remote (); /* Initialize gdb process mechanisms */ | |
36918e70 AC |
2118 | /* NOTE: Return something >=0. A -ve value is reserved for |
2119 | catch_exceptions. */ | |
0f71a2f6 JM |
2120 | return 1; |
2121 | } | |
2122 | ||
c906108c | 2123 | static int |
36918e70 | 2124 | remote_start_remote (struct ui_out *uiout, void *dummy) |
c906108c | 2125 | { |
8edbea78 | 2126 | immediate_quit++; /* Allow user to interrupt it */ |
c906108c SS |
2127 | |
2128 | /* Ack any packet which the remote side has already sent. */ | |
2cd58942 | 2129 | serial_write (remote_desc, "+", 1); |
c906108c SS |
2130 | |
2131 | /* Let the stub know that we want it to return the thread. */ | |
2132 | set_thread (-1, 0); | |
2133 | ||
39f77062 | 2134 | inferior_ptid = remote_current_thread (inferior_ptid); |
c906108c SS |
2135 | |
2136 | get_offsets (); /* Get text, data & bss offsets */ | |
2137 | ||
2138 | putpkt ("?"); /* initiate a query from remote machine */ | |
8edbea78 | 2139 | immediate_quit--; |
c906108c | 2140 | |
36918e70 AC |
2141 | /* NOTE: See comment above in remote_start_remote_dummy(). This |
2142 | function returns something >=0. */ | |
2143 | return remote_start_remote_dummy (uiout, dummy); | |
c906108c SS |
2144 | } |
2145 | ||
2146 | /* Open a connection to a remote debugger. | |
2147 | NAME is the filename used for communication. */ | |
2148 | ||
2149 | static void | |
fba45db2 | 2150 | remote_open (char *name, int from_tty) |
c906108c SS |
2151 | { |
2152 | remote_open_1 (name, from_tty, &remote_ops, 0); | |
2153 | } | |
2154 | ||
43ff13b4 JM |
2155 | /* Just like remote_open, but with asynchronous support. */ |
2156 | static void | |
fba45db2 | 2157 | remote_async_open (char *name, int from_tty) |
43ff13b4 JM |
2158 | { |
2159 | remote_async_open_1 (name, from_tty, &remote_async_ops, 0); | |
2160 | } | |
2161 | ||
c906108c SS |
2162 | /* Open a connection to a remote debugger using the extended |
2163 | remote gdb protocol. NAME is the filename used for communication. */ | |
2164 | ||
2165 | static void | |
fba45db2 | 2166 | extended_remote_open (char *name, int from_tty) |
c906108c | 2167 | { |
c5aa993b | 2168 | remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */ ); |
c906108c SS |
2169 | } |
2170 | ||
43ff13b4 JM |
2171 | /* Just like extended_remote_open, but with asynchronous support. */ |
2172 | static void | |
fba45db2 | 2173 | extended_remote_async_open (char *name, int from_tty) |
43ff13b4 | 2174 | { |
c5aa993b | 2175 | remote_async_open_1 (name, from_tty, &extended_async_remote_ops, 1 /*extended_p */ ); |
43ff13b4 JM |
2176 | } |
2177 | ||
c906108c SS |
2178 | /* Generic code for opening a connection to a remote target. */ |
2179 | ||
d471ea57 AC |
2180 | static void |
2181 | init_all_packet_configs (void) | |
2182 | { | |
2183 | int i; | |
44eaed12 C |
2184 | update_packet_config (&remote_protocol_e); |
2185 | update_packet_config (&remote_protocol_E); | |
d471ea57 | 2186 | update_packet_config (&remote_protocol_P); |
dc8acb97 | 2187 | update_packet_config (&remote_protocol_qSymbol); |
d471ea57 AC |
2188 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) |
2189 | update_packet_config (&remote_protocol_Z[i]); | |
2190 | /* Force remote_write_bytes to check whether target supports binary | |
2191 | downloading. */ | |
2192 | update_packet_config (&remote_protocol_binary_download); | |
2193 | } | |
2194 | ||
dc8acb97 MS |
2195 | /* Symbol look-up. */ |
2196 | ||
2197 | static void | |
2198 | remote_check_symbols (struct objfile *objfile) | |
2199 | { | |
d01949b6 | 2200 | struct remote_state *rs = get_remote_state (); |
dc8acb97 MS |
2201 | char *msg, *reply, *tmp; |
2202 | struct minimal_symbol *sym; | |
2203 | int end; | |
2204 | ||
2205 | if (remote_protocol_qSymbol.support == PACKET_DISABLE) | |
2206 | return; | |
2207 | ||
d01949b6 AC |
2208 | msg = alloca (rs->remote_packet_size); |
2209 | reply = alloca (rs->remote_packet_size); | |
dc8acb97 MS |
2210 | |
2211 | /* Invite target to request symbol lookups. */ | |
2212 | ||
2213 | putpkt ("qSymbol::"); | |
d01949b6 | 2214 | getpkt (reply, (rs->remote_packet_size), 0); |
dc8acb97 MS |
2215 | packet_ok (reply, &remote_protocol_qSymbol); |
2216 | ||
2217 | while (strncmp (reply, "qSymbol:", 8) == 0) | |
2218 | { | |
2219 | tmp = &reply[8]; | |
2220 | end = hex2bin (tmp, msg, strlen (tmp) / 2); | |
2221 | msg[end] = '\0'; | |
2222 | sym = lookup_minimal_symbol (msg, NULL, NULL); | |
2223 | if (sym == NULL) | |
2224 | sprintf (msg, "qSymbol::%s", &reply[8]); | |
2225 | else | |
2226 | sprintf (msg, "qSymbol:%s:%s", | |
2227 | paddr_nz (SYMBOL_VALUE_ADDRESS (sym)), | |
2228 | &reply[8]); | |
2229 | putpkt (msg); | |
d01949b6 | 2230 | getpkt (reply, (rs->remote_packet_size), 0); |
dc8acb97 MS |
2231 | } |
2232 | } | |
2233 | ||
9db8d71f DJ |
2234 | static struct serial * |
2235 | remote_serial_open (char *name) | |
2236 | { | |
2237 | static int udp_warning = 0; | |
2238 | ||
2239 | /* FIXME: Parsing NAME here is a hack. But we want to warn here instead | |
2240 | of in ser-tcp.c, because it is the remote protocol assuming that the | |
2241 | serial connection is reliable and not the serial connection promising | |
2242 | to be. */ | |
2243 | if (!udp_warning && strncmp (name, "udp:", 4) == 0) | |
2244 | { | |
2245 | warning ("The remote protocol may be unreliable over UDP."); | |
2246 | warning ("Some events may be lost, rendering further debugging " | |
2247 | "impossible."); | |
2248 | udp_warning = 1; | |
2249 | } | |
2250 | ||
2251 | return serial_open (name); | |
2252 | } | |
2253 | ||
c906108c | 2254 | static void |
fba45db2 KB |
2255 | remote_open_1 (char *name, int from_tty, struct target_ops *target, |
2256 | int extended_p) | |
c906108c | 2257 | { |
36918e70 | 2258 | int ex; |
d01949b6 | 2259 | struct remote_state *rs = get_remote_state (); |
c906108c | 2260 | if (name == 0) |
22e04375 AC |
2261 | error ("To open a remote debug connection, you need to specify what\n" |
2262 | "serial device is attached to the remote system\n" | |
2263 | "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); | |
c906108c | 2264 | |
6426a772 JM |
2265 | /* See FIXME above */ |
2266 | wait_forever_enabled_p = 1; | |
2267 | ||
c906108c SS |
2268 | target_preopen (from_tty); |
2269 | ||
2270 | unpush_target (target); | |
2271 | ||
9db8d71f | 2272 | remote_desc = remote_serial_open (name); |
c906108c SS |
2273 | if (!remote_desc) |
2274 | perror_with_name (name); | |
2275 | ||
2276 | if (baud_rate != -1) | |
2277 | { | |
2cd58942 | 2278 | if (serial_setbaudrate (remote_desc, baud_rate)) |
c906108c | 2279 | { |
2cd58942 | 2280 | serial_close (remote_desc); |
c906108c SS |
2281 | perror_with_name (name); |
2282 | } | |
2283 | } | |
2284 | ||
2cd58942 | 2285 | serial_raw (remote_desc); |
c906108c SS |
2286 | |
2287 | /* If there is something sitting in the buffer we might take it as a | |
2288 | response to a command, which would be bad. */ | |
2cd58942 | 2289 | serial_flush_input (remote_desc); |
c906108c SS |
2290 | |
2291 | if (from_tty) | |
2292 | { | |
2293 | puts_filtered ("Remote debugging using "); | |
2294 | puts_filtered (name); | |
2295 | puts_filtered ("\n"); | |
2296 | } | |
c5aa993b | 2297 | push_target (target); /* Switch to using remote target now */ |
c906108c | 2298 | |
d471ea57 | 2299 | init_all_packet_configs (); |
96baa820 | 2300 | |
c5aa993b | 2301 | general_thread = -2; |
cce74817 | 2302 | continue_thread = -2; |
c906108c | 2303 | |
9d1f7ab2 MS |
2304 | /* Probe for ability to use "ThreadInfo" query, as required. */ |
2305 | use_threadinfo_query = 1; | |
2306 | use_threadextra_query = 1; | |
2307 | ||
c906108c SS |
2308 | /* Without this, some commands which require an active target (such |
2309 | as kill) won't work. This variable serves (at least) double duty | |
2310 | as both the pid of the target process (if it has such), and as a | |
2311 | flag indicating that a target is active. These functions should | |
2312 | be split out into seperate variables, especially since GDB will | |
2313 | someday have a notion of debugging several processes. */ | |
2314 | ||
39f77062 | 2315 | inferior_ptid = pid_to_ptid (MAGIC_NULL_PID); |
f78f6cf1 MS |
2316 | #ifdef SOLIB_CREATE_INFERIOR_HOOK |
2317 | /* First delete any symbols previously loaded from shared libraries. */ | |
2318 | no_shared_libraries (NULL, 0); | |
2319 | #endif | |
2320 | ||
36918e70 | 2321 | /* Start the remote connection. If error() or QUIT, discard this |
165b8e33 AC |
2322 | target (we'd otherwise be in an inconsistent state) and then |
2323 | propogate the error on up the exception chain. This ensures that | |
2324 | the caller doesn't stumble along blindly assuming that the | |
2325 | function succeeded. The CLI doesn't have this problem but other | |
2326 | UI's, such as MI do. | |
36918e70 AC |
2327 | |
2328 | FIXME: cagney/2002-05-19: Instead of re-throwing the exception, | |
2329 | this function should return an error indication letting the | |
2330 | caller restore the previous state. Unfortunatly the command | |
2331 | ``target remote'' is directly wired to this function making that | |
2332 | impossible. On a positive note, the CLI side of this problem has | |
2333 | been fixed - the function set_cmd_context() makes it possible for | |
2334 | all the ``target ....'' commands to share a common callback | |
2335 | function. See cli-dump.c. */ | |
2336 | ex = catch_exceptions (uiout, | |
2337 | remote_start_remote, NULL, | |
2338 | "Couldn't establish connection to remote" | |
2339 | " target\n", | |
2340 | RETURN_MASK_ALL); | |
2341 | if (ex < 0) | |
c906108c SS |
2342 | { |
2343 | pop_target (); | |
165b8e33 | 2344 | throw_exception (ex); |
c906108c SS |
2345 | } |
2346 | ||
2347 | if (extended_p) | |
2348 | { | |
6240bebf | 2349 | /* Tell the remote that we are using the extended protocol. */ |
d01949b6 | 2350 | char *buf = alloca (rs->remote_packet_size); |
c906108c | 2351 | putpkt ("!"); |
d01949b6 | 2352 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c | 2353 | } |
f78f6cf1 | 2354 | #ifdef SOLIB_CREATE_INFERIOR_HOOK |
6240bebf MS |
2355 | /* FIXME: need a master target_open vector from which all |
2356 | remote_opens can be called, so that stuff like this can | |
2357 | go there. Failing that, the following code must be copied | |
2358 | to the open function for any remote target that wants to | |
2359 | support svr4 shared libraries. */ | |
f78f6cf1 MS |
2360 | |
2361 | /* Set up to detect and load shared libraries. */ | |
6240bebf | 2362 | if (exec_bfd) /* No use without an exec file. */ |
dc8acb97 MS |
2363 | { |
2364 | SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid)); | |
2365 | remote_check_symbols (symfile_objfile); | |
2366 | } | |
6240bebf | 2367 | #endif |
c906108c SS |
2368 | } |
2369 | ||
43ff13b4 JM |
2370 | /* Just like remote_open but with asynchronous support. */ |
2371 | static void | |
fba45db2 KB |
2372 | remote_async_open_1 (char *name, int from_tty, struct target_ops *target, |
2373 | int extended_p) | |
43ff13b4 | 2374 | { |
36918e70 | 2375 | int ex; |
d01949b6 | 2376 | struct remote_state *rs = get_remote_state (); |
43ff13b4 | 2377 | if (name == 0) |
22e04375 AC |
2378 | error ("To open a remote debug connection, you need to specify what\n" |
2379 | "serial device is attached to the remote system\n" | |
2380 | "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); | |
43ff13b4 JM |
2381 | |
2382 | target_preopen (from_tty); | |
2383 | ||
2384 | unpush_target (target); | |
2385 | ||
9db8d71f | 2386 | remote_desc = remote_serial_open (name); |
43ff13b4 JM |
2387 | if (!remote_desc) |
2388 | perror_with_name (name); | |
2389 | ||
2390 | if (baud_rate != -1) | |
2391 | { | |
2cd58942 | 2392 | if (serial_setbaudrate (remote_desc, baud_rate)) |
43ff13b4 | 2393 | { |
2cd58942 | 2394 | serial_close (remote_desc); |
43ff13b4 JM |
2395 | perror_with_name (name); |
2396 | } | |
2397 | } | |
2398 | ||
2cd58942 | 2399 | serial_raw (remote_desc); |
43ff13b4 JM |
2400 | |
2401 | /* If there is something sitting in the buffer we might take it as a | |
2402 | response to a command, which would be bad. */ | |
2cd58942 | 2403 | serial_flush_input (remote_desc); |
43ff13b4 JM |
2404 | |
2405 | if (from_tty) | |
2406 | { | |
2407 | puts_filtered ("Remote debugging using "); | |
2408 | puts_filtered (name); | |
2409 | puts_filtered ("\n"); | |
2410 | } | |
2411 | ||
c5aa993b | 2412 | push_target (target); /* Switch to using remote target now */ |
43ff13b4 | 2413 | |
d471ea57 | 2414 | init_all_packet_configs (); |
43ff13b4 | 2415 | |
c5aa993b | 2416 | general_thread = -2; |
43ff13b4 JM |
2417 | continue_thread = -2; |
2418 | ||
9d1f7ab2 MS |
2419 | /* Probe for ability to use "ThreadInfo" query, as required. */ |
2420 | use_threadinfo_query = 1; | |
2421 | use_threadextra_query = 1; | |
2422 | ||
43ff13b4 JM |
2423 | /* Without this, some commands which require an active target (such |
2424 | as kill) won't work. This variable serves (at least) double duty | |
2425 | as both the pid of the target process (if it has such), and as a | |
2426 | flag indicating that a target is active. These functions should | |
2427 | be split out into seperate variables, especially since GDB will | |
2428 | someday have a notion of debugging several processes. */ | |
39f77062 | 2429 | inferior_ptid = pid_to_ptid (MAGIC_NULL_PID); |
6426a772 JM |
2430 | |
2431 | /* With this target we start out by owning the terminal. */ | |
2432 | remote_async_terminal_ours_p = 1; | |
2433 | ||
2434 | /* FIXME: cagney/1999-09-23: During the initial connection it is | |
2435 | assumed that the target is already ready and able to respond to | |
e26cc349 | 2436 | requests. Unfortunately remote_start_remote() eventually calls |
6426a772 JM |
2437 | wait_for_inferior() with no timeout. wait_forever_enabled_p gets |
2438 | around this. Eventually a mechanism that allows | |
2439 | wait_for_inferior() to expect/get timeouts will be | |
2440 | implemented. */ | |
2441 | wait_forever_enabled_p = 0; | |
2442 | ||
f78f6cf1 MS |
2443 | #ifdef SOLIB_CREATE_INFERIOR_HOOK |
2444 | /* First delete any symbols previously loaded from shared libraries. */ | |
2445 | no_shared_libraries (NULL, 0); | |
2446 | #endif | |
2447 | ||
36918e70 | 2448 | /* Start the remote connection; if error, discard this target. See |
165b8e33 AC |
2449 | the comments in remote_open_1() for further details such as the |
2450 | need to re-throw the exception. */ | |
36918e70 AC |
2451 | ex = catch_exceptions (uiout, |
2452 | remote_start_remote, NULL, | |
2453 | "Couldn't establish connection to remote" | |
2454 | " target\n", | |
2455 | RETURN_MASK_ALL); | |
2456 | if (ex < 0) | |
43ff13b4 | 2457 | { |
43ff13b4 | 2458 | pop_target (); |
6426a772 | 2459 | wait_forever_enabled_p = 1; |
165b8e33 | 2460 | throw_exception (ex); |
43ff13b4 JM |
2461 | } |
2462 | ||
6426a772 JM |
2463 | wait_forever_enabled_p = 1; |
2464 | ||
2465 | if (extended_p) | |
43ff13b4 | 2466 | { |
6240bebf | 2467 | /* Tell the remote that we are using the extended protocol. */ |
d01949b6 | 2468 | char *buf = alloca (rs->remote_packet_size); |
6426a772 | 2469 | putpkt ("!"); |
d01949b6 | 2470 | getpkt (buf, (rs->remote_packet_size), 0); |
43ff13b4 | 2471 | } |
f78f6cf1 | 2472 | #ifdef SOLIB_CREATE_INFERIOR_HOOK |
6240bebf MS |
2473 | /* FIXME: need a master target_open vector from which all |
2474 | remote_opens can be called, so that stuff like this can | |
2475 | go there. Failing that, the following code must be copied | |
2476 | to the open function for any remote target that wants to | |
2477 | support svr4 shared libraries. */ | |
f78f6cf1 MS |
2478 | |
2479 | /* Set up to detect and load shared libraries. */ | |
6240bebf | 2480 | if (exec_bfd) /* No use without an exec file. */ |
dc8acb97 MS |
2481 | { |
2482 | SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid)); | |
2483 | remote_check_symbols (symfile_objfile); | |
2484 | } | |
6240bebf | 2485 | #endif |
43ff13b4 JM |
2486 | } |
2487 | ||
c906108c SS |
2488 | /* This takes a program previously attached to and detaches it. After |
2489 | this is done, GDB can be used to debug some other program. We | |
2490 | better not have left any breakpoints in the target program or it'll | |
2491 | die when it hits one. */ | |
2492 | ||
2493 | static void | |
fba45db2 | 2494 | remote_detach (char *args, int from_tty) |
c906108c | 2495 | { |
d01949b6 AC |
2496 | struct remote_state *rs = get_remote_state (); |
2497 | char *buf = alloca (rs->remote_packet_size); | |
c906108c SS |
2498 | |
2499 | if (args) | |
2500 | error ("Argument given to \"detach\" when remotely debugging."); | |
2501 | ||
2502 | /* Tell the remote target to detach. */ | |
2503 | strcpy (buf, "D"); | |
d01949b6 | 2504 | remote_send (buf, (rs->remote_packet_size)); |
c906108c | 2505 | |
cca728d0 | 2506 | target_mourn_inferior (); |
c906108c SS |
2507 | if (from_tty) |
2508 | puts_filtered ("Ending remote debugging.\n"); | |
96baa820 | 2509 | |
c906108c SS |
2510 | } |
2511 | ||
43ff13b4 JM |
2512 | /* Same as remote_detach, but with async support. */ |
2513 | static void | |
fba45db2 | 2514 | remote_async_detach (char *args, int from_tty) |
43ff13b4 | 2515 | { |
d01949b6 AC |
2516 | struct remote_state *rs = get_remote_state (); |
2517 | char *buf = alloca (rs->remote_packet_size); | |
43ff13b4 JM |
2518 | |
2519 | if (args) | |
2520 | error ("Argument given to \"detach\" when remotely debugging."); | |
2521 | ||
2522 | /* Tell the remote target to detach. */ | |
2523 | strcpy (buf, "D"); | |
d01949b6 | 2524 | remote_send (buf, (rs->remote_packet_size)); |
43ff13b4 JM |
2525 | |
2526 | /* Unregister the file descriptor from the event loop. */ | |
ed9a39eb | 2527 | if (target_is_async_p ()) |
2cd58942 | 2528 | serial_async (remote_desc, NULL, 0); |
43ff13b4 | 2529 | |
cca728d0 | 2530 | target_mourn_inferior (); |
43ff13b4 JM |
2531 | if (from_tty) |
2532 | puts_filtered ("Ending remote debugging.\n"); | |
2533 | } | |
2534 | ||
c906108c SS |
2535 | /* Convert hex digit A to a number. */ |
2536 | ||
30559e10 | 2537 | static int |
fba45db2 | 2538 | fromhex (int a) |
c906108c SS |
2539 | { |
2540 | if (a >= '0' && a <= '9') | |
2541 | return a - '0'; | |
2542 | else if (a >= 'a' && a <= 'f') | |
2543 | return a - 'a' + 10; | |
2544 | else if (a >= 'A' && a <= 'F') | |
2545 | return a - 'A' + 10; | |
c5aa993b | 2546 | else |
c906108c SS |
2547 | error ("Reply contains invalid hex digit %d", a); |
2548 | } | |
2549 | ||
30559e10 MS |
2550 | static int |
2551 | hex2bin (const char *hex, char *bin, int count) | |
2552 | { | |
2553 | int i; | |
2554 | ||
30559e10 MS |
2555 | for (i = 0; i < count; i++) |
2556 | { | |
2557 | if (hex[0] == 0 || hex[1] == 0) | |
2558 | { | |
2559 | /* Hex string is short, or of uneven length. | |
2560 | Return the count that has been converted so far. */ | |
2561 | return i; | |
2562 | } | |
2563 | *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]); | |
2564 | hex += 2; | |
2565 | } | |
2566 | return i; | |
2567 | } | |
2568 | ||
c906108c SS |
2569 | /* Convert number NIB to a hex digit. */ |
2570 | ||
2571 | static int | |
fba45db2 | 2572 | tohex (int nib) |
c906108c SS |
2573 | { |
2574 | if (nib < 10) | |
c5aa993b | 2575 | return '0' + nib; |
c906108c | 2576 | else |
c5aa993b | 2577 | return 'a' + nib - 10; |
c906108c | 2578 | } |
30559e10 MS |
2579 | |
2580 | static int | |
234fa6d1 | 2581 | bin2hex (const char *bin, char *hex, int count) |
30559e10 MS |
2582 | { |
2583 | int i; | |
2584 | /* May use a length, or a nul-terminated string as input. */ | |
2585 | if (count == 0) | |
2586 | count = strlen (bin); | |
2587 | ||
2588 | for (i = 0; i < count; i++) | |
2589 | { | |
2590 | *hex++ = tohex ((*bin >> 4) & 0xf); | |
2591 | *hex++ = tohex (*bin++ & 0xf); | |
2592 | } | |
2593 | *hex = 0; | |
2594 | return i; | |
2595 | } | |
c906108c SS |
2596 | \f |
2597 | /* Tell the remote machine to resume. */ | |
2598 | ||
2599 | static enum target_signal last_sent_signal = TARGET_SIGNAL_0; | |
2600 | ||
2601 | static int last_sent_step; | |
2602 | ||
2603 | static void | |
39f77062 | 2604 | remote_resume (ptid_t ptid, int step, enum target_signal siggnal) |
c906108c | 2605 | { |
d01949b6 AC |
2606 | struct remote_state *rs = get_remote_state (); |
2607 | char *buf = alloca (rs->remote_packet_size); | |
39f77062 | 2608 | int pid = PIDGET (ptid); |
44eaed12 | 2609 | char *p; |
c906108c SS |
2610 | |
2611 | if (pid == -1) | |
2612 | set_thread (0, 0); /* run any thread */ | |
2613 | else | |
2614 | set_thread (pid, 0); /* run this thread */ | |
2615 | ||
c906108c SS |
2616 | last_sent_signal = siggnal; |
2617 | last_sent_step = step; | |
2618 | ||
2619 | /* A hook for when we need to do something at the last moment before | |
2620 | resumption. */ | |
2621 | if (target_resume_hook) | |
2622 | (*target_resume_hook) (); | |
2623 | ||
44eaed12 C |
2624 | |
2625 | /* The s/S/c/C packets do not return status. So if the target does | |
2626 | not support the S or C packets, the debug agent returns an empty | |
2627 | string which is detected in remote_wait(). This protocol defect | |
2628 | is fixed in the e/E packets. */ | |
2629 | ||
2630 | if (step && step_range_end) | |
2631 | { | |
2632 | /* If the target does not support the 'E' packet, we try the 'S' | |
2633 | packet. Ideally we would fall back to the 'e' packet if that | |
2634 | too is not supported. But that would require another copy of | |
2635 | the code to issue the 'e' packet (and fall back to 's' if not | |
2636 | supported) in remote_wait(). */ | |
2637 | ||
2638 | if (siggnal != TARGET_SIGNAL_0) | |
2639 | { | |
2640 | if (remote_protocol_E.support != PACKET_DISABLE) | |
2641 | { | |
2642 | p = buf; | |
2643 | *p++ = 'E'; | |
2644 | *p++ = tohex (((int) siggnal >> 4) & 0xf); | |
2645 | *p++ = tohex (((int) siggnal) & 0xf); | |
2646 | *p++ = ','; | |
2647 | p += hexnumstr (p, (ULONGEST) step_range_start); | |
2648 | *p++ = ','; | |
2649 | p += hexnumstr (p, (ULONGEST) step_range_end); | |
2650 | *p++ = 0; | |
2651 | ||
2652 | putpkt (buf); | |
d01949b6 | 2653 | getpkt (buf, (rs->remote_packet_size), 0); |
44eaed12 | 2654 | |
234fa6d1 | 2655 | if (packet_ok (buf, &remote_protocol_E) == PACKET_OK) |
44eaed12 C |
2656 | return; |
2657 | } | |
2658 | } | |
2659 | else | |
2660 | { | |
2661 | if (remote_protocol_e.support != PACKET_DISABLE) | |
2662 | { | |
2663 | p = buf; | |
2664 | *p++ = 'e'; | |
2665 | p += hexnumstr (p, (ULONGEST) step_range_start); | |
2666 | *p++ = ','; | |
2667 | p += hexnumstr (p, (ULONGEST) step_range_end); | |
2668 | *p++ = 0; | |
2669 | ||
2670 | putpkt (buf); | |
d01949b6 | 2671 | getpkt (buf, (rs->remote_packet_size), 0); |
44eaed12 | 2672 | |
234fa6d1 | 2673 | if (packet_ok (buf, &remote_protocol_e) == PACKET_OK) |
44eaed12 C |
2674 | return; |
2675 | } | |
2676 | } | |
2677 | } | |
2678 | ||
c906108c SS |
2679 | if (siggnal != TARGET_SIGNAL_0) |
2680 | { | |
2681 | buf[0] = step ? 'S' : 'C'; | |
c5aa993b | 2682 | buf[1] = tohex (((int) siggnal >> 4) & 0xf); |
44eaed12 | 2683 | buf[2] = tohex (((int) siggnal) & 0xf); |
c906108c SS |
2684 | buf[3] = '\0'; |
2685 | } | |
2686 | else | |
c5aa993b | 2687 | strcpy (buf, step ? "s" : "c"); |
c906108c SS |
2688 | |
2689 | putpkt (buf); | |
2690 | } | |
43ff13b4 JM |
2691 | |
2692 | /* Same as remote_resume, but with async support. */ | |
2693 | static void | |
39f77062 | 2694 | remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal) |
43ff13b4 | 2695 | { |
d01949b6 AC |
2696 | struct remote_state *rs = get_remote_state (); |
2697 | char *buf = alloca (rs->remote_packet_size); | |
39f77062 | 2698 | int pid = PIDGET (ptid); |
44eaed12 | 2699 | char *p; |
43ff13b4 JM |
2700 | |
2701 | if (pid == -1) | |
2702 | set_thread (0, 0); /* run any thread */ | |
2703 | else | |
2704 | set_thread (pid, 0); /* run this thread */ | |
2705 | ||
43ff13b4 JM |
2706 | last_sent_signal = siggnal; |
2707 | last_sent_step = step; | |
2708 | ||
2709 | /* A hook for when we need to do something at the last moment before | |
2710 | resumption. */ | |
2711 | if (target_resume_hook) | |
2712 | (*target_resume_hook) (); | |
2713 | ||
44eaed12 C |
2714 | /* The s/S/c/C packets do not return status. So if the target does |
2715 | not support the S or C packets, the debug agent returns an empty | |
2716 | string which is detected in remote_wait(). This protocol defect | |
2717 | is fixed in the e/E packets. */ | |
2718 | ||
2719 | if (step && step_range_end) | |
2720 | { | |
2721 | /* If the target does not support the 'E' packet, we try the 'S' | |
2722 | packet. Ideally we would fall back to the 'e' packet if that | |
2723 | too is not supported. But that would require another copy of | |
2724 | the code to issue the 'e' packet (and fall back to 's' if not | |
2725 | supported) in remote_wait(). */ | |
2726 | ||
2727 | if (siggnal != TARGET_SIGNAL_0) | |
2728 | { | |
2729 | if (remote_protocol_E.support != PACKET_DISABLE) | |
2730 | { | |
2731 | p = buf; | |
2732 | *p++ = 'E'; | |
2733 | *p++ = tohex (((int) siggnal >> 4) & 0xf); | |
2734 | *p++ = tohex (((int) siggnal) & 0xf); | |
2735 | *p++ = ','; | |
2736 | p += hexnumstr (p, (ULONGEST) step_range_start); | |
2737 | *p++ = ','; | |
2738 | p += hexnumstr (p, (ULONGEST) step_range_end); | |
2739 | *p++ = 0; | |
2740 | ||
2741 | putpkt (buf); | |
d01949b6 | 2742 | getpkt (buf, (rs->remote_packet_size), 0); |
44eaed12 | 2743 | |
234fa6d1 | 2744 | if (packet_ok (buf, &remote_protocol_E) == PACKET_OK) |
44eaed12 C |
2745 | goto register_event_loop; |
2746 | } | |
2747 | } | |
2748 | else | |
2749 | { | |
2750 | if (remote_protocol_e.support != PACKET_DISABLE) | |
2751 | { | |
2752 | p = buf; | |
2753 | *p++ = 'e'; | |
2754 | p += hexnumstr (p, (ULONGEST) step_range_start); | |
2755 | *p++ = ','; | |
2756 | p += hexnumstr (p, (ULONGEST) step_range_end); | |
2757 | *p++ = 0; | |
2758 | ||
2759 | putpkt (buf); | |
d01949b6 | 2760 | getpkt (buf, (rs->remote_packet_size), 0); |
44eaed12 | 2761 | |
234fa6d1 | 2762 | if (packet_ok (buf, &remote_protocol_e) == PACKET_OK) |
44eaed12 C |
2763 | goto register_event_loop; |
2764 | } | |
2765 | } | |
2766 | } | |
2767 | ||
43ff13b4 JM |
2768 | if (siggnal != TARGET_SIGNAL_0) |
2769 | { | |
2770 | buf[0] = step ? 'S' : 'C'; | |
c5aa993b JM |
2771 | buf[1] = tohex (((int) siggnal >> 4) & 0xf); |
2772 | buf[2] = tohex ((int) siggnal & 0xf); | |
43ff13b4 JM |
2773 | buf[3] = '\0'; |
2774 | } | |
2775 | else | |
c5aa993b | 2776 | strcpy (buf, step ? "s" : "c"); |
44eaed12 C |
2777 | |
2778 | putpkt (buf); | |
43ff13b4 | 2779 | |
44eaed12 | 2780 | register_event_loop: |
2acceee2 JM |
2781 | /* We are about to start executing the inferior, let's register it |
2782 | with the event loop. NOTE: this is the one place where all the | |
2783 | execution commands end up. We could alternatively do this in each | |
2784 | of the execution commands in infcmd.c.*/ | |
2785 | /* FIXME: ezannoni 1999-09-28: We may need to move this out of here | |
2786 | into infcmd.c in order to allow inferior function calls to work | |
2787 | NOT asynchronously. */ | |
ed9a39eb | 2788 | if (event_loop_p && target_can_async_p ()) |
2acceee2 JM |
2789 | target_async (inferior_event_handler, 0); |
2790 | /* Tell the world that the target is now executing. */ | |
2791 | /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set | |
2792 | this? Instead, should the client of target just assume (for | |
2793 | async targets) that the target is going to start executing? Is | |
2794 | this information already found in the continuation block? */ | |
ed9a39eb | 2795 | if (target_is_async_p ()) |
2acceee2 | 2796 | target_executing = 1; |
43ff13b4 | 2797 | } |
c906108c | 2798 | \f |
43ff13b4 JM |
2799 | |
2800 | /* Set up the signal handler for SIGINT, while the target is | |
2801 | executing, ovewriting the 'regular' SIGINT signal handler. */ | |
2802 | static void | |
fba45db2 | 2803 | initialize_sigint_signal_handler (void) |
43ff13b4 | 2804 | { |
c5aa993b | 2805 | sigint_remote_token = |
43ff13b4 JM |
2806 | create_async_signal_handler (async_remote_interrupt, NULL); |
2807 | signal (SIGINT, handle_remote_sigint); | |
2808 | } | |
2809 | ||
2810 | /* Signal handler for SIGINT, while the target is executing. */ | |
2811 | static void | |
fba45db2 | 2812 | handle_remote_sigint (int sig) |
43ff13b4 JM |
2813 | { |
2814 | signal (sig, handle_remote_sigint_twice); | |
c5aa993b | 2815 | sigint_remote_twice_token = |
43ff13b4 JM |
2816 | create_async_signal_handler (async_remote_interrupt_twice, NULL); |
2817 | mark_async_signal_handler_wrapper (sigint_remote_token); | |
2818 | } | |
2819 | ||
2820 | /* Signal handler for SIGINT, installed after SIGINT has already been | |
2821 | sent once. It will take effect the second time that the user sends | |
2822 | a ^C. */ | |
2823 | static void | |
fba45db2 | 2824 | handle_remote_sigint_twice (int sig) |
43ff13b4 JM |
2825 | { |
2826 | signal (sig, handle_sigint); | |
c5aa993b | 2827 | sigint_remote_twice_token = |
2df3850c | 2828 | create_async_signal_handler (inferior_event_handler_wrapper, NULL); |
43ff13b4 JM |
2829 | mark_async_signal_handler_wrapper (sigint_remote_twice_token); |
2830 | } | |
2831 | ||
6426a772 | 2832 | /* Perform the real interruption of the target execution, in response |
43ff13b4 | 2833 | to a ^C. */ |
c5aa993b | 2834 | static void |
fba45db2 | 2835 | async_remote_interrupt (gdb_client_data arg) |
43ff13b4 JM |
2836 | { |
2837 | if (remote_debug) | |
2838 | fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n"); | |
2839 | ||
2840 | target_stop (); | |
2841 | } | |
2842 | ||
2843 | /* Perform interrupt, if the first attempt did not succeed. Just give | |
2844 | up on the target alltogether. */ | |
2df3850c | 2845 | void |
fba45db2 | 2846 | async_remote_interrupt_twice (gdb_client_data arg) |
43ff13b4 | 2847 | { |
2df3850c JM |
2848 | if (remote_debug) |
2849 | fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n"); | |
6426a772 JM |
2850 | /* Do something only if the target was not killed by the previous |
2851 | cntl-C. */ | |
2852 | if (target_executing) | |
2853 | { | |
2854 | interrupt_query (); | |
2855 | signal (SIGINT, handle_remote_sigint); | |
2856 | } | |
43ff13b4 JM |
2857 | } |
2858 | ||
2859 | /* Reinstall the usual SIGINT handlers, after the target has | |
2860 | stopped. */ | |
6426a772 JM |
2861 | static void |
2862 | cleanup_sigint_signal_handler (void *dummy) | |
43ff13b4 JM |
2863 | { |
2864 | signal (SIGINT, handle_sigint); | |
2865 | if (sigint_remote_twice_token) | |
c2c6d25f | 2866 | delete_async_signal_handler ((struct async_signal_handler **) & sigint_remote_twice_token); |
43ff13b4 | 2867 | if (sigint_remote_token) |
c2c6d25f | 2868 | delete_async_signal_handler ((struct async_signal_handler **) & sigint_remote_token); |
43ff13b4 JM |
2869 | } |
2870 | ||
c906108c SS |
2871 | /* Send ^C to target to halt it. Target will respond, and send us a |
2872 | packet. */ | |
507f3c78 | 2873 | static void (*ofunc) (int); |
c906108c | 2874 | |
7a292a7a SS |
2875 | /* The command line interface's stop routine. This function is installed |
2876 | as a signal handler for SIGINT. The first time a user requests a | |
2877 | stop, we call remote_stop to send a break or ^C. If there is no | |
2878 | response from the target (it didn't stop when the user requested it), | |
2879 | we ask the user if he'd like to detach from the target. */ | |
c906108c | 2880 | static void |
fba45db2 | 2881 | remote_interrupt (int signo) |
c906108c | 2882 | { |
7a292a7a SS |
2883 | /* If this doesn't work, try more severe steps. */ |
2884 | signal (signo, remote_interrupt_twice); | |
2885 | ||
2886 | if (remote_debug) | |
0f71a2f6 | 2887 | fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n"); |
7a292a7a SS |
2888 | |
2889 | target_stop (); | |
2890 | } | |
2891 | ||
2892 | /* The user typed ^C twice. */ | |
2893 | ||
2894 | static void | |
fba45db2 | 2895 | remote_interrupt_twice (int signo) |
7a292a7a SS |
2896 | { |
2897 | signal (signo, ofunc); | |
2898 | interrupt_query (); | |
c906108c SS |
2899 | signal (signo, remote_interrupt); |
2900 | } | |
7a292a7a SS |
2901 | |
2902 | /* This is the generic stop called via the target vector. When a target | |
2903 | interrupt is requested, either by the command line or the GUI, we | |
2904 | will eventually end up here. */ | |
c906108c | 2905 | static void |
fba45db2 | 2906 | remote_stop (void) |
c906108c | 2907 | { |
7a292a7a SS |
2908 | /* Send a break or a ^C, depending on user preference. */ |
2909 | if (remote_debug) | |
0f71a2f6 | 2910 | fprintf_unfiltered (gdb_stdlog, "remote_stop called\n"); |
c906108c | 2911 | |
7a292a7a | 2912 | if (remote_break) |
2cd58942 | 2913 | serial_send_break (remote_desc); |
c906108c | 2914 | else |
2cd58942 | 2915 | serial_write (remote_desc, "\003", 1); |
c906108c SS |
2916 | } |
2917 | ||
2918 | /* Ask the user what to do when an interrupt is received. */ | |
2919 | ||
2920 | static void | |
fba45db2 | 2921 | interrupt_query (void) |
c906108c SS |
2922 | { |
2923 | target_terminal_ours (); | |
2924 | ||
2925 | if (query ("Interrupted while waiting for the program.\n\ | |
2926 | Give up (and stop debugging it)? ")) | |
2927 | { | |
2928 | target_mourn_inferior (); | |
b5a2688f | 2929 | throw_exception (RETURN_QUIT); |
c906108c SS |
2930 | } |
2931 | ||
2932 | target_terminal_inferior (); | |
2933 | } | |
2934 | ||
6426a772 JM |
2935 | /* Enable/disable target terminal ownership. Most targets can use |
2936 | terminal groups to control terminal ownership. Remote targets are | |
2937 | different in that explicit transfer of ownership to/from GDB/target | |
2938 | is required. */ | |
2939 | ||
2940 | static void | |
2941 | remote_async_terminal_inferior (void) | |
2942 | { | |
2943 | /* FIXME: cagney/1999-09-27: Shouldn't need to test for | |
2944 | sync_execution here. This function should only be called when | |
2945 | GDB is resuming the inferior in the forground. A background | |
2946 | resume (``run&'') should leave GDB in control of the terminal and | |
2947 | consequently should not call this code. */ | |
2948 | if (!sync_execution) | |
2949 | return; | |
2950 | /* FIXME: cagney/1999-09-27: Closely related to the above. Make | |
2951 | calls target_terminal_*() idenpotent. The event-loop GDB talking | |
2952 | to an asynchronous target with a synchronous command calls this | |
2953 | function from both event-top.c and infrun.c/infcmd.c. Once GDB | |
2954 | stops trying to transfer the terminal to the target when it | |
2955 | shouldn't this guard can go away. */ | |
2956 | if (!remote_async_terminal_ours_p) | |
2957 | return; | |
2958 | delete_file_handler (input_fd); | |
2959 | remote_async_terminal_ours_p = 0; | |
2960 | initialize_sigint_signal_handler (); | |
2961 | /* NOTE: At this point we could also register our selves as the | |
2962 | recipient of all input. Any characters typed could then be | |
2963 | passed on down to the target. */ | |
2964 | } | |
2965 | ||
2966 | static void | |
2967 | remote_async_terminal_ours (void) | |
2968 | { | |
2969 | /* See FIXME in remote_async_terminal_inferior. */ | |
2970 | if (!sync_execution) | |
2971 | return; | |
2972 | /* See FIXME in remote_async_terminal_inferior. */ | |
2973 | if (remote_async_terminal_ours_p) | |
2974 | return; | |
2975 | cleanup_sigint_signal_handler (NULL); | |
2976 | add_file_handler (input_fd, stdin_event_handler, 0); | |
2977 | remote_async_terminal_ours_p = 1; | |
2978 | } | |
2979 | ||
c906108c SS |
2980 | /* If nonzero, ignore the next kill. */ |
2981 | ||
2982 | int kill_kludge; | |
2983 | ||
2984 | void | |
917317f4 | 2985 | remote_console_output (char *msg) |
c906108c SS |
2986 | { |
2987 | char *p; | |
2988 | ||
c5aa993b | 2989 | for (p = msg; p[0] && p[1]; p += 2) |
c906108c SS |
2990 | { |
2991 | char tb[2]; | |
2992 | char c = fromhex (p[0]) * 16 + fromhex (p[1]); | |
2993 | tb[0] = c; | |
2994 | tb[1] = 0; | |
43ff13b4 | 2995 | fputs_unfiltered (tb, gdb_stdtarg); |
c906108c | 2996 | } |
917317f4 | 2997 | gdb_flush (gdb_stdtarg); |
c906108c SS |
2998 | } |
2999 | ||
0f71a2f6 JM |
3000 | /* Wait until the remote machine stops, then return, |
3001 | storing status in STATUS just as `wait' would. | |
3002 | Returns "pid", which in the case of a multi-threaded | |
3003 | remote OS, is the thread-id. */ | |
c906108c | 3004 | |
39f77062 KB |
3005 | static ptid_t |
3006 | remote_wait (ptid_t ptid, struct target_waitstatus *status) | |
c906108c | 3007 | { |
d01949b6 AC |
3008 | struct remote_state *rs = get_remote_state (); |
3009 | unsigned char *buf = alloca (rs->remote_packet_size); | |
b2dd6311 | 3010 | ULONGEST thread_num = -1; |
c906108c SS |
3011 | |
3012 | status->kind = TARGET_WAITKIND_EXITED; | |
3013 | status->value.integer = 0; | |
3014 | ||
3015 | while (1) | |
3016 | { | |
3017 | unsigned char *p; | |
3018 | ||
c906108c | 3019 | ofunc = signal (SIGINT, remote_interrupt); |
d01949b6 | 3020 | getpkt (buf, (rs->remote_packet_size), 1); |
c906108c SS |
3021 | signal (SIGINT, ofunc); |
3022 | ||
3023 | /* This is a hook for when we need to do something (perhaps the | |
c5aa993b | 3024 | collection of trace data) every time the target stops. */ |
c906108c SS |
3025 | if (target_wait_loop_hook) |
3026 | (*target_wait_loop_hook) (); | |
3027 | ||
3028 | switch (buf[0]) | |
3029 | { | |
3030 | case 'E': /* Error of some sort */ | |
3031 | warning ("Remote failure reply: %s", buf); | |
3032 | continue; | |
3033 | case 'T': /* Status with PC, SP, FP, ... */ | |
3034 | { | |
3035 | int i; | |
e6cbd02a | 3036 | char* regs = (char*) alloca (MAX_REGISTER_RAW_SIZE); |
c906108c SS |
3037 | |
3038 | /* Expedited reply, containing Signal, {regno, reg} repeat */ | |
3039 | /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where | |
c5aa993b JM |
3040 | ss = signal number |
3041 | n... = register number | |
3042 | r... = register contents | |
3043 | */ | |
c906108c SS |
3044 | p = &buf[3]; /* after Txx */ |
3045 | ||
3046 | while (*p) | |
3047 | { | |
3048 | unsigned char *p1; | |
3049 | char *p_temp; | |
97345198 | 3050 | int fieldsize; |
c906108c | 3051 | |
ad10f812 AC |
3052 | /* Read the ``P'' register number. */ |
3053 | LONGEST pnum = strtol ((const char *) p, &p_temp, 16); | |
c5aa993b | 3054 | p1 = (unsigned char *) p_temp; |
c906108c | 3055 | |
c5aa993b | 3056 | if (p1 == p) /* No register number present here */ |
c906108c SS |
3057 | { |
3058 | p1 = (unsigned char *) strchr ((const char *) p, ':'); | |
3059 | if (p1 == NULL) | |
3060 | warning ("Malformed packet(a) (missing colon): %s\n\ | |
3061 | Packet: '%s'\n", | |
3062 | p, buf); | |
3063 | if (strncmp ((const char *) p, "thread", p1 - p) == 0) | |
3064 | { | |
3065 | p_temp = unpack_varlen_hex (++p1, &thread_num); | |
3066 | record_currthread (thread_num); | |
3067 | p = (unsigned char *) p_temp; | |
3068 | } | |
3069 | } | |
3070 | else | |
3071 | { | |
ad10f812 | 3072 | struct packet_reg *reg = packet_reg_from_pnum (rs, pnum); |
c906108c SS |
3073 | p = p1; |
3074 | ||
3075 | if (*p++ != ':') | |
3076 | warning ("Malformed packet(b) (missing colon): %s\n\ | |
3077 | Packet: '%s'\n", | |
3078 | p, buf); | |
3079 | ||
ad10f812 AC |
3080 | if (reg == NULL) |
3081 | warning ("Remote sent bad register number %s: %s\n\ | |
c906108c | 3082 | Packet: '%s'\n", |
ad10f812 | 3083 | phex_nz (pnum, 0), p, buf); |
c906108c | 3084 | |
ad10f812 | 3085 | fieldsize = hex2bin (p, regs, REGISTER_RAW_SIZE (reg->regnum)); |
97345198 | 3086 | p += 2 * fieldsize; |
ad10f812 | 3087 | if (fieldsize < REGISTER_RAW_SIZE (reg->regnum)) |
30559e10 | 3088 | warning ("Remote reply is too short: %s", buf); |
ad10f812 | 3089 | supply_register (reg->regnum, regs); |
c906108c SS |
3090 | } |
3091 | ||
3092 | if (*p++ != ';') | |
3093 | { | |
3094 | warning ("Remote register badly formatted: %s", buf); | |
c5aa993b | 3095 | warning (" here: %s", p); |
c906108c SS |
3096 | } |
3097 | } | |
3098 | } | |
3099 | /* fall through */ | |
3100 | case 'S': /* Old style status, just signal only */ | |
3101 | status->kind = TARGET_WAITKIND_STOPPED; | |
3102 | status->value.sig = (enum target_signal) | |
3103 | (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))); | |
3104 | ||
0f71a2f6 JM |
3105 | if (buf[3] == 'p') |
3106 | { | |
3107 | /* Export Cisco kernel mode as a convenience variable | |
c5aa993b | 3108 | (so that it can be used in the GDB prompt if desired). */ |
0f71a2f6 JM |
3109 | |
3110 | if (cisco_kernel_mode == 1) | |
c5aa993b | 3111 | set_internalvar (lookup_internalvar ("cisco_kernel_mode"), |
0f71a2f6 JM |
3112 | value_from_string ("PDEBUG-")); |
3113 | cisco_kernel_mode = 0; | |
3114 | thread_num = strtol ((const char *) &buf[4], NULL, 16); | |
3115 | record_currthread (thread_num); | |
3116 | } | |
3117 | else if (buf[3] == 'k') | |
3118 | { | |
3119 | /* Export Cisco kernel mode as a convenience variable | |
c5aa993b | 3120 | (so that it can be used in the GDB prompt if desired). */ |
0f71a2f6 JM |
3121 | |
3122 | if (cisco_kernel_mode == 1) | |
c5aa993b | 3123 | set_internalvar (lookup_internalvar ("cisco_kernel_mode"), |
0f71a2f6 JM |
3124 | value_from_string ("KDEBUG-")); |
3125 | cisco_kernel_mode = 1; | |
3126 | } | |
c906108c | 3127 | goto got_status; |
0f71a2f6 JM |
3128 | case 'N': /* Cisco special: status and offsets */ |
3129 | { | |
3130 | bfd_vma text_addr, data_addr, bss_addr; | |
3131 | bfd_signed_vma text_off, data_off, bss_off; | |
3132 | unsigned char *p1; | |
3133 | ||
3134 | status->kind = TARGET_WAITKIND_STOPPED; | |
3135 | status->value.sig = (enum target_signal) | |
3136 | (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))); | |
3137 | ||
c5aa993b | 3138 | if (symfile_objfile == NULL) |
0f71a2f6 | 3139 | { |
d4f3574e | 3140 | warning ("Relocation packet received with no symbol file. \ |
0f71a2f6 JM |
3141 | Packet Dropped"); |
3142 | goto got_status; | |
3143 | } | |
3144 | ||
3145 | /* Relocate object file. Buffer format is NAATT;DD;BB | |
3146 | * where AA is the signal number, TT is the new text | |
3147 | * address, DD * is the new data address, and BB is the | |
3148 | * new bss address. */ | |
3149 | ||
3150 | p = &buf[3]; | |
3151 | text_addr = strtoul (p, (char **) &p1, 16); | |
3152 | if (p1 == p || *p1 != ';') | |
3153 | warning ("Malformed relocation packet: Packet '%s'", buf); | |
3154 | p = p1 + 1; | |
3155 | data_addr = strtoul (p, (char **) &p1, 16); | |
3156 | if (p1 == p || *p1 != ';') | |
3157 | warning ("Malformed relocation packet: Packet '%s'", buf); | |
3158 | p = p1 + 1; | |
3159 | bss_addr = strtoul (p, (char **) &p1, 16); | |
c5aa993b | 3160 | if (p1 == p) |
0f71a2f6 JM |
3161 | warning ("Malformed relocation packet: Packet '%s'", buf); |
3162 | ||
3163 | if (remote_cisco_section_offsets (text_addr, data_addr, bss_addr, | |
3164 | &text_off, &data_off, &bss_off) | |
3165 | == 0) | |
c5aa993b | 3166 | if (text_off != 0 || data_off != 0 || bss_off != 0) |
0f71a2f6 JM |
3167 | remote_cisco_objfile_relocate (text_off, data_off, bss_off); |
3168 | ||
3169 | goto got_status; | |
3170 | } | |
c906108c SS |
3171 | case 'W': /* Target exited */ |
3172 | { | |
3173 | /* The remote process exited. */ | |
3174 | status->kind = TARGET_WAITKIND_EXITED; | |
3175 | status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]); | |
3176 | goto got_status; | |
3177 | } | |
3178 | case 'X': | |
3179 | status->kind = TARGET_WAITKIND_SIGNALLED; | |
3180 | status->value.sig = (enum target_signal) | |
3181 | (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))); | |
3182 | kill_kludge = 1; | |
3183 | ||
3184 | goto got_status; | |
3185 | case 'O': /* Console output */ | |
3186 | remote_console_output (buf + 1); | |
3187 | continue; | |
3188 | case '\0': | |
3189 | if (last_sent_signal != TARGET_SIGNAL_0) | |
3190 | { | |
3191 | /* Zero length reply means that we tried 'S' or 'C' and | |
c5aa993b | 3192 | the remote system doesn't support it. */ |
c906108c SS |
3193 | target_terminal_ours_for_output (); |
3194 | printf_filtered | |
3195 | ("Can't send signals to this remote system. %s not sent.\n", | |
3196 | target_signal_to_name (last_sent_signal)); | |
3197 | last_sent_signal = TARGET_SIGNAL_0; | |
3198 | target_terminal_inferior (); | |
3199 | ||
3200 | strcpy ((char *) buf, last_sent_step ? "s" : "c"); | |
3201 | putpkt ((char *) buf); | |
3202 | continue; | |
3203 | } | |
3204 | /* else fallthrough */ | |
3205 | default: | |
3206 | warning ("Invalid remote reply: %s", buf); | |
3207 | continue; | |
3208 | } | |
3209 | } | |
c5aa993b | 3210 | got_status: |
c906108c SS |
3211 | if (thread_num != -1) |
3212 | { | |
39f77062 | 3213 | return pid_to_ptid (thread_num); |
c906108c | 3214 | } |
39f77062 | 3215 | return inferior_ptid; |
c906108c SS |
3216 | } |
3217 | ||
43ff13b4 | 3218 | /* Async version of remote_wait. */ |
39f77062 KB |
3219 | static ptid_t |
3220 | remote_async_wait (ptid_t ptid, struct target_waitstatus *status) | |
43ff13b4 | 3221 | { |
d01949b6 AC |
3222 | struct remote_state *rs = get_remote_state (); |
3223 | unsigned char *buf = alloca (rs->remote_packet_size); | |
b2dd6311 | 3224 | ULONGEST thread_num = -1; |
43ff13b4 JM |
3225 | |
3226 | status->kind = TARGET_WAITKIND_EXITED; | |
3227 | status->value.integer = 0; | |
3228 | ||
3229 | while (1) | |
3230 | { | |
3231 | unsigned char *p; | |
c5aa993b | 3232 | |
ed9a39eb | 3233 | if (!target_is_async_p ()) |
43ff13b4 | 3234 | ofunc = signal (SIGINT, remote_interrupt); |
6426a772 JM |
3235 | /* FIXME: cagney/1999-09-27: If we're in async mode we should |
3236 | _never_ wait for ever -> test on target_is_async_p(). | |
3237 | However, before we do that we need to ensure that the caller | |
3238 | knows how to take the target into/out of async mode. */ | |
d01949b6 | 3239 | getpkt (buf, (rs->remote_packet_size), wait_forever_enabled_p); |
ed9a39eb | 3240 | if (!target_is_async_p ()) |
43ff13b4 JM |
3241 | signal (SIGINT, ofunc); |
3242 | ||
3243 | /* This is a hook for when we need to do something (perhaps the | |
c5aa993b | 3244 | collection of trace data) every time the target stops. */ |
43ff13b4 JM |
3245 | if (target_wait_loop_hook) |
3246 | (*target_wait_loop_hook) (); | |
3247 | ||
3248 | switch (buf[0]) | |
3249 | { | |
3250 | case 'E': /* Error of some sort */ | |
3251 | warning ("Remote failure reply: %s", buf); | |
3252 | continue; | |
3253 | case 'T': /* Status with PC, SP, FP, ... */ | |
3254 | { | |
3255 | int i; | |
e6cbd02a | 3256 | char* regs = (char*) alloca (MAX_REGISTER_RAW_SIZE); |
43ff13b4 JM |
3257 | |
3258 | /* Expedited reply, containing Signal, {regno, reg} repeat */ | |
3259 | /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where | |
c5aa993b JM |
3260 | ss = signal number |
3261 | n... = register number | |
3262 | r... = register contents | |
3263 | */ | |
43ff13b4 JM |
3264 | p = &buf[3]; /* after Txx */ |
3265 | ||
3266 | while (*p) | |
3267 | { | |
3268 | unsigned char *p1; | |
3269 | char *p_temp; | |
6c3f2dbf | 3270 | int fieldsize; |
43ff13b4 JM |
3271 | |
3272 | /* Read the register number */ | |
ad10f812 | 3273 | long pnum = strtol ((const char *) p, &p_temp, 16); |
c5aa993b | 3274 | p1 = (unsigned char *) p_temp; |
43ff13b4 | 3275 | |
c5aa993b | 3276 | if (p1 == p) /* No register number present here */ |
43ff13b4 JM |
3277 | { |
3278 | p1 = (unsigned char *) strchr ((const char *) p, ':'); | |
3279 | if (p1 == NULL) | |
3280 | warning ("Malformed packet(a) (missing colon): %s\n\ | |
3281 | Packet: '%s'\n", | |
3282 | p, buf); | |
3283 | if (strncmp ((const char *) p, "thread", p1 - p) == 0) | |
3284 | { | |
3285 | p_temp = unpack_varlen_hex (++p1, &thread_num); | |
3286 | record_currthread (thread_num); | |
3287 | p = (unsigned char *) p_temp; | |
3288 | } | |
3289 | } | |
3290 | else | |
3291 | { | |
ad10f812 | 3292 | struct packet_reg *reg = packet_reg_from_pnum (rs, pnum); |
43ff13b4 | 3293 | p = p1; |
43ff13b4 JM |
3294 | if (*p++ != ':') |
3295 | warning ("Malformed packet(b) (missing colon): %s\n\ | |
3296 | Packet: '%s'\n", | |
3297 | p, buf); | |
3298 | ||
ad10f812 | 3299 | if (reg == NULL) |
43ff13b4 JM |
3300 | warning ("Remote sent bad register number %ld: %s\n\ |
3301 | Packet: '%s'\n", | |
ad10f812 | 3302 | pnum, p, buf); |
43ff13b4 | 3303 | |
ad10f812 | 3304 | fieldsize = hex2bin (p, regs, REGISTER_RAW_SIZE (reg->regnum)); |
6c3f2dbf | 3305 | p += 2 * fieldsize; |
ad10f812 | 3306 | if (fieldsize < REGISTER_RAW_SIZE (reg->regnum)) |
30559e10 | 3307 | warning ("Remote reply is too short: %s", buf); |
ad10f812 | 3308 | supply_register (reg->regnum, regs); |
43ff13b4 JM |
3309 | } |
3310 | ||
3311 | if (*p++ != ';') | |
3312 | { | |
3313 | warning ("Remote register badly formatted: %s", buf); | |
c5aa993b | 3314 | warning (" here: %s", p); |
43ff13b4 JM |
3315 | } |
3316 | } | |
3317 | } | |
3318 | /* fall through */ | |
3319 | case 'S': /* Old style status, just signal only */ | |
3320 | status->kind = TARGET_WAITKIND_STOPPED; | |
3321 | status->value.sig = (enum target_signal) | |
3322 | (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))); | |
3323 | ||
3324 | if (buf[3] == 'p') | |
3325 | { | |
3326 | /* Export Cisco kernel mode as a convenience variable | |
c5aa993b | 3327 | (so that it can be used in the GDB prompt if desired). */ |
43ff13b4 JM |
3328 | |
3329 | if (cisco_kernel_mode == 1) | |
c5aa993b | 3330 | set_internalvar (lookup_internalvar ("cisco_kernel_mode"), |
43ff13b4 JM |
3331 | value_from_string ("PDEBUG-")); |
3332 | cisco_kernel_mode = 0; | |
3333 | thread_num = strtol ((const char *) &buf[4], NULL, 16); | |
3334 | record_currthread (thread_num); | |
3335 | } | |
3336 | else if (buf[3] == 'k') | |
3337 | { | |
3338 | /* Export Cisco kernel mode as a convenience variable | |
c5aa993b | 3339 | (so that it can be used in the GDB prompt if desired). */ |
43ff13b4 JM |
3340 | |
3341 | if (cisco_kernel_mode == 1) | |
c5aa993b | 3342 | set_internalvar (lookup_internalvar ("cisco_kernel_mode"), |
43ff13b4 JM |
3343 | value_from_string ("KDEBUG-")); |
3344 | cisco_kernel_mode = 1; | |
3345 | } | |
3346 | goto got_status; | |
3347 | case 'N': /* Cisco special: status and offsets */ | |
3348 | { | |
3349 | bfd_vma text_addr, data_addr, bss_addr; | |
3350 | bfd_signed_vma text_off, data_off, bss_off; | |
3351 | unsigned char *p1; | |
3352 | ||
3353 | status->kind = TARGET_WAITKIND_STOPPED; | |
3354 | status->value.sig = (enum target_signal) | |
3355 | (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))); | |
3356 | ||
c5aa993b | 3357 | if (symfile_objfile == NULL) |
43ff13b4 JM |
3358 | { |
3359 | warning ("Relocation packet recieved with no symbol file. \ | |
3360 | Packet Dropped"); | |
3361 | goto got_status; | |
3362 | } | |
3363 | ||
3364 | /* Relocate object file. Buffer format is NAATT;DD;BB | |
3365 | * where AA is the signal number, TT is the new text | |
3366 | * address, DD * is the new data address, and BB is the | |
3367 | * new bss address. */ | |
3368 | ||
3369 | p = &buf[3]; | |
3370 | text_addr = strtoul (p, (char **) &p1, 16); | |
3371 | if (p1 == p || *p1 != ';') | |
3372 | warning ("Malformed relocation packet: Packet '%s'", buf); | |
3373 | p = p1 + 1; | |
3374 | data_addr = strtoul (p, (char **) &p1, 16); | |
3375 | if (p1 == p || *p1 != ';') | |
3376 | warning ("Malformed relocation packet: Packet '%s'", buf); | |
3377 | p = p1 + 1; | |
3378 | bss_addr = strtoul (p, (char **) &p1, 16); | |
c5aa993b | 3379 | if (p1 == p) |
43ff13b4 JM |
3380 | warning ("Malformed relocation packet: Packet '%s'", buf); |
3381 | ||
3382 | if (remote_cisco_section_offsets (text_addr, data_addr, bss_addr, | |
3383 | &text_off, &data_off, &bss_off) | |
3384 | == 0) | |
c5aa993b | 3385 | if (text_off != 0 || data_off != 0 || bss_off != 0) |
43ff13b4 JM |
3386 | remote_cisco_objfile_relocate (text_off, data_off, bss_off); |
3387 | ||
3388 | goto got_status; | |
3389 | } | |
3390 | case 'W': /* Target exited */ | |
3391 | { | |
3392 | /* The remote process exited. */ | |
3393 | status->kind = TARGET_WAITKIND_EXITED; | |
3394 | status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]); | |
3395 | goto got_status; | |
3396 | } | |
3397 | case 'X': | |
3398 | status->kind = TARGET_WAITKIND_SIGNALLED; | |
3399 | status->value.sig = (enum target_signal) | |
3400 | (((fromhex (buf[1])) << 4) + (fromhex (buf[2]))); | |
3401 | kill_kludge = 1; | |
3402 | ||
3403 | goto got_status; | |
3404 | case 'O': /* Console output */ | |
3405 | remote_console_output (buf + 1); | |
c4093a6a JM |
3406 | /* Return immediately to the event loop. The event loop will |
3407 | still be waiting on the inferior afterwards. */ | |
3408 | status->kind = TARGET_WAITKIND_IGNORE; | |
3409 | goto got_status; | |
43ff13b4 JM |
3410 | case '\0': |
3411 | if (last_sent_signal != TARGET_SIGNAL_0) | |
3412 | { | |
3413 | /* Zero length reply means that we tried 'S' or 'C' and | |
c5aa993b | 3414 | the remote system doesn't support it. */ |
43ff13b4 JM |
3415 | target_terminal_ours_for_output (); |
3416 | printf_filtered | |
3417 | ("Can't send signals to this remote system. %s not sent.\n", | |
3418 | target_signal_to_name (last_sent_signal)); | |
3419 | last_sent_signal = TARGET_SIGNAL_0; | |
3420 | target_terminal_inferior (); | |
3421 | ||
3422 | strcpy ((char *) buf, last_sent_step ? "s" : "c"); | |
3423 | putpkt ((char *) buf); | |
3424 | continue; | |
3425 | } | |
3426 | /* else fallthrough */ | |
3427 | default: | |
3428 | warning ("Invalid remote reply: %s", buf); | |
3429 | continue; | |
3430 | } | |
3431 | } | |
c5aa993b | 3432 | got_status: |
43ff13b4 JM |
3433 | if (thread_num != -1) |
3434 | { | |
39f77062 | 3435 | return pid_to_ptid (thread_num); |
43ff13b4 | 3436 | } |
39f77062 | 3437 | return inferior_ptid; |
43ff13b4 JM |
3438 | } |
3439 | ||
c906108c SS |
3440 | /* Number of bytes of registers this stub implements. */ |
3441 | ||
3442 | static int register_bytes_found; | |
3443 | ||
3444 | /* Read the remote registers into the block REGS. */ | |
ad10f812 | 3445 | /* Currently we just read all the registers, so we don't use regnum. */ |
c906108c SS |
3446 | |
3447 | /* ARGSUSED */ | |
3448 | static void | |
ad10f812 | 3449 | remote_fetch_registers (int regnum) |
c906108c | 3450 | { |
d01949b6 AC |
3451 | struct remote_state *rs = get_remote_state (); |
3452 | char *buf = alloca (rs->remote_packet_size); | |
c906108c SS |
3453 | int i; |
3454 | char *p; | |
ad10f812 | 3455 | char *regs = alloca (rs->sizeof_g_packet); |
c906108c | 3456 | |
39f77062 | 3457 | set_thread (PIDGET (inferior_ptid), 1); |
c906108c | 3458 | |
b323314b AC |
3459 | if (regnum >= 0) |
3460 | { | |
3461 | struct packet_reg *reg = packet_reg_from_regnum (rs, regnum); | |
3462 | gdb_assert (reg != NULL); | |
3463 | if (!reg->in_g_packet) | |
3464 | internal_error (__FILE__, __LINE__, | |
3465 | "Attempt to fetch a non G-packet register when this " | |
3466 | "remote.c does not support the p-packet."); | |
3467 | } | |
3468 | ||
c906108c | 3469 | sprintf (buf, "g"); |
d01949b6 | 3470 | remote_send (buf, (rs->remote_packet_size)); |
c906108c | 3471 | |
11cf8741 JM |
3472 | /* Save the size of the packet sent to us by the target. Its used |
3473 | as a heuristic when determining the max size of packets that the | |
3474 | target can safely receive. */ | |
d01949b6 AC |
3475 | if ((rs->actual_register_packet_size) == 0) |
3476 | (rs->actual_register_packet_size) = strlen (buf); | |
c906108c SS |
3477 | |
3478 | /* Unimplemented registers read as all bits zero. */ | |
ad10f812 | 3479 | memset (regs, 0, rs->sizeof_g_packet); |
c906108c SS |
3480 | |
3481 | /* We can get out of synch in various cases. If the first character | |
3482 | in the buffer is not a hex character, assume that has happened | |
3483 | and try to fetch another packet to read. */ | |
3484 | while ((buf[0] < '0' || buf[0] > '9') | |
3485 | && (buf[0] < 'a' || buf[0] > 'f') | |
3486 | && buf[0] != 'x') /* New: unavailable register value */ | |
3487 | { | |
3488 | if (remote_debug) | |
0f71a2f6 JM |
3489 | fprintf_unfiltered (gdb_stdlog, |
3490 | "Bad register packet; fetching a new packet\n"); | |
d01949b6 | 3491 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c SS |
3492 | } |
3493 | ||
3494 | /* Reply describes registers byte by byte, each byte encoded as two | |
3495 | hex characters. Suck them all up, then supply them to the | |
3496 | register cacheing/storage mechanism. */ | |
3497 | ||
3498 | p = buf; | |
ad10f812 | 3499 | for (i = 0; i < rs->sizeof_g_packet; i++) |
c906108c SS |
3500 | { |
3501 | if (p[0] == 0) | |
3502 | break; | |
3503 | if (p[1] == 0) | |
3504 | { | |
3505 | warning ("Remote reply is of odd length: %s", buf); | |
3506 | /* Don't change register_bytes_found in this case, and don't | |
3507 | print a second warning. */ | |
3508 | goto supply_them; | |
3509 | } | |
3510 | if (p[0] == 'x' && p[1] == 'x') | |
c5aa993b | 3511 | regs[i] = 0; /* 'x' */ |
c906108c SS |
3512 | else |
3513 | regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]); | |
3514 | p += 2; | |
3515 | } | |
3516 | ||
3517 | if (i != register_bytes_found) | |
3518 | { | |
3519 | register_bytes_found = i; | |
2649061d AC |
3520 | if (REGISTER_BYTES_OK_P () |
3521 | && !REGISTER_BYTES_OK (i)) | |
c906108c | 3522 | warning ("Remote reply is too short: %s", buf); |
c906108c | 3523 | } |
c5aa993b | 3524 | |
b323314b | 3525 | supply_them: |
ad10f812 | 3526 | { |
b323314b AC |
3527 | int i; |
3528 | for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++) | |
ad10f812 | 3529 | { |
b323314b AC |
3530 | struct packet_reg *r = &rs->regs[i]; |
3531 | if (r->in_g_packet) | |
3532 | { | |
3533 | supply_register (r->regnum, regs + r->offset); | |
3534 | if (buf[r->offset * 2] == 'x') | |
3535 | set_register_cached (i, -1); | |
3536 | } | |
ad10f812 AC |
3537 | } |
3538 | } | |
c906108c SS |
3539 | } |
3540 | ||
3541 | /* Prepare to store registers. Since we may send them all (using a | |
3542 | 'G' request), we have to read out the ones we don't want to change | |
3543 | first. */ | |
3544 | ||
c5aa993b | 3545 | static void |
fba45db2 | 3546 | remote_prepare_to_store (void) |
c906108c SS |
3547 | { |
3548 | /* Make sure the entire registers array is valid. */ | |
5a2468f5 JM |
3549 | switch (remote_protocol_P.support) |
3550 | { | |
3551 | case PACKET_DISABLE: | |
3552 | case PACKET_SUPPORT_UNKNOWN: | |
ad10f812 AC |
3553 | /* NOTE: This isn't rs->sizeof_g_packet because here, we are |
3554 | forcing the register cache to read its and not the target | |
3555 | registers. */ | |
3556 | read_register_bytes (0, (char *) NULL, REGISTER_BYTES); /* OK use. */ | |
5a2468f5 JM |
3557 | break; |
3558 | case PACKET_ENABLE: | |
3559 | break; | |
3560 | } | |
3561 | } | |
3562 | ||
ad10f812 | 3563 | /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF |
5a2468f5 JM |
3564 | packet was not recognized. */ |
3565 | ||
3566 | static int | |
ad10f812 | 3567 | store_register_using_P (int regnum) |
5a2468f5 | 3568 | { |
d01949b6 | 3569 | struct remote_state *rs = get_remote_state (); |
ad10f812 | 3570 | struct packet_reg *reg = packet_reg_from_regnum (rs, regnum); |
5a2468f5 | 3571 | /* Try storing a single register. */ |
d01949b6 | 3572 | char *buf = alloca (rs->remote_packet_size); |
193cb69f | 3573 | char *regp = alloca (MAX_REGISTER_RAW_SIZE); |
5a2468f5 JM |
3574 | char *p; |
3575 | int i; | |
3576 | ||
ad10f812 | 3577 | sprintf (buf, "P%s=", phex_nz (reg->pnum, 0)); |
5a2468f5 | 3578 | p = buf + strlen (buf); |
ad10f812 AC |
3579 | regcache_collect (reg->regnum, regp); |
3580 | bin2hex (regp, p, REGISTER_RAW_SIZE (reg->regnum)); | |
3581 | remote_send (buf, rs->remote_packet_size); | |
5a2468f5 JM |
3582 | |
3583 | return buf[0] != '\0'; | |
c906108c SS |
3584 | } |
3585 | ||
5a2468f5 | 3586 | |
ad10f812 | 3587 | /* Store register REGNUM, or all registers if REGNUM == -1, from the contents |
7302a204 | 3588 | of the register cache buffer. FIXME: ignores errors. */ |
c906108c SS |
3589 | |
3590 | static void | |
ad10f812 | 3591 | remote_store_registers (int regnum) |
c906108c | 3592 | { |
d01949b6 | 3593 | struct remote_state *rs = get_remote_state (); |
193cb69f AC |
3594 | char *buf; |
3595 | char *regs; | |
c906108c SS |
3596 | int i; |
3597 | char *p; | |
3598 | ||
39f77062 | 3599 | set_thread (PIDGET (inferior_ptid), 1); |
c906108c | 3600 | |
ad10f812 | 3601 | if (regnum >= 0) |
c906108c | 3602 | { |
5a2468f5 | 3603 | switch (remote_protocol_P.support) |
c906108c | 3604 | { |
5a2468f5 JM |
3605 | case PACKET_DISABLE: |
3606 | break; | |
3607 | case PACKET_ENABLE: | |
ad10f812 | 3608 | if (store_register_using_P (regnum)) |
5a2468f5 JM |
3609 | return; |
3610 | else | |
3611 | error ("Protocol error: P packet not recognized by stub"); | |
3612 | case PACKET_SUPPORT_UNKNOWN: | |
ad10f812 | 3613 | if (store_register_using_P (regnum)) |
5a2468f5 JM |
3614 | { |
3615 | /* The stub recognized the 'P' packet. Remember this. */ | |
3616 | remote_protocol_P.support = PACKET_ENABLE; | |
3617 | return; | |
3618 | } | |
3619 | else | |
3620 | { | |
3621 | /* The stub does not support the 'P' packet. Use 'G' | |
3622 | instead, and don't try using 'P' in the future (it | |
3623 | will just waste our time). */ | |
3624 | remote_protocol_P.support = PACKET_DISABLE; | |
3625 | break; | |
3626 | } | |
c906108c | 3627 | } |
c906108c SS |
3628 | } |
3629 | ||
193cb69f AC |
3630 | /* Extract all the registers in the regcache copying them into a |
3631 | local buffer. */ | |
3632 | { | |
b323314b | 3633 | int i; |
ad10f812 AC |
3634 | regs = alloca (rs->sizeof_g_packet); |
3635 | memset (regs, rs->sizeof_g_packet, 0); | |
b323314b | 3636 | for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++) |
193cb69f | 3637 | { |
b323314b AC |
3638 | struct packet_reg *r = &rs->regs[i]; |
3639 | if (r->in_g_packet) | |
3640 | regcache_collect (r->regnum, regs + r->offset); | |
193cb69f AC |
3641 | } |
3642 | } | |
c906108c SS |
3643 | |
3644 | /* Command describes registers byte by byte, | |
3645 | each byte encoded as two hex characters. */ | |
193cb69f AC |
3646 | buf = alloca (rs->remote_packet_size); |
3647 | p = buf; | |
3648 | *p++ = 'G'; | |
c906108c | 3649 | /* remote_prepare_to_store insures that register_bytes_found gets set. */ |
30559e10 | 3650 | bin2hex (regs, p, register_bytes_found); |
d01949b6 | 3651 | remote_send (buf, (rs->remote_packet_size)); |
c906108c | 3652 | } |
c906108c SS |
3653 | \f |
3654 | ||
3655 | /* Return the number of hex digits in num. */ | |
3656 | ||
3657 | static int | |
fba45db2 | 3658 | hexnumlen (ULONGEST num) |
c906108c SS |
3659 | { |
3660 | int i; | |
3661 | ||
3662 | for (i = 0; num != 0; i++) | |
3663 | num >>= 4; | |
3664 | ||
3665 | return max (i, 1); | |
3666 | } | |
3667 | ||
2df3850c | 3668 | /* Set BUF to the minimum number of hex digits representing NUM. */ |
c906108c SS |
3669 | |
3670 | static int | |
fba45db2 | 3671 | hexnumstr (char *buf, ULONGEST num) |
c906108c | 3672 | { |
c906108c | 3673 | int len = hexnumlen (num); |
2df3850c JM |
3674 | return hexnumnstr (buf, num, len); |
3675 | } | |
3676 | ||
c906108c | 3677 | |
2df3850c | 3678 | /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */ |
c906108c | 3679 | |
2df3850c | 3680 | static int |
fba45db2 | 3681 | hexnumnstr (char *buf, ULONGEST num, int width) |
2df3850c JM |
3682 | { |
3683 | int i; | |
3684 | ||
3685 | buf[width] = '\0'; | |
3686 | ||
3687 | for (i = width - 1; i >= 0; i--) | |
c906108c | 3688 | { |
c5aa993b | 3689 | buf[i] = "0123456789abcdef"[(num & 0xf)]; |
c906108c SS |
3690 | num >>= 4; |
3691 | } | |
3692 | ||
2df3850c | 3693 | return width; |
c906108c SS |
3694 | } |
3695 | ||
3696 | /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */ | |
3697 | ||
3698 | static CORE_ADDR | |
fba45db2 | 3699 | remote_address_masked (CORE_ADDR addr) |
c906108c SS |
3700 | { |
3701 | if (remote_address_size > 0 | |
3702 | && remote_address_size < (sizeof (ULONGEST) * 8)) | |
3703 | { | |
3704 | /* Only create a mask when that mask can safely be constructed | |
3705 | in a ULONGEST variable. */ | |
3706 | ULONGEST mask = 1; | |
3707 | mask = (mask << remote_address_size) - 1; | |
3708 | addr &= mask; | |
3709 | } | |
3710 | return addr; | |
3711 | } | |
3712 | ||
3713 | /* Determine whether the remote target supports binary downloading. | |
3714 | This is accomplished by sending a no-op memory write of zero length | |
3715 | to the target at the specified address. It does not suffice to send | |
3716 | the whole packet, since many stubs strip the eighth bit and subsequently | |
7a292a7a SS |
3717 | compute a wrong checksum, which causes real havoc with remote_write_bytes. |
3718 | ||
96baa820 JM |
3719 | NOTE: This can still lose if the serial line is not eight-bit |
3720 | clean. In cases like this, the user should clear "remote | |
3721 | X-packet". */ | |
3722 | ||
c906108c | 3723 | static void |
fba45db2 | 3724 | check_binary_download (CORE_ADDR addr) |
c906108c | 3725 | { |
d01949b6 | 3726 | struct remote_state *rs = get_remote_state (); |
96baa820 | 3727 | switch (remote_protocol_binary_download.support) |
c906108c | 3728 | { |
96baa820 JM |
3729 | case PACKET_DISABLE: |
3730 | break; | |
3731 | case PACKET_ENABLE: | |
3732 | break; | |
3733 | case PACKET_SUPPORT_UNKNOWN: | |
3734 | { | |
d01949b6 | 3735 | char *buf = alloca (rs->remote_packet_size); |
96baa820 JM |
3736 | char *p; |
3737 | ||
3738 | p = buf; | |
3739 | *p++ = 'X'; | |
3740 | p += hexnumstr (p, (ULONGEST) addr); | |
3741 | *p++ = ','; | |
3742 | p += hexnumstr (p, (ULONGEST) 0); | |
3743 | *p++ = ':'; | |
3744 | *p = '\0'; | |
3745 | ||
3746 | putpkt_binary (buf, (int) (p - buf)); | |
d01949b6 | 3747 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c | 3748 | |
96baa820 JM |
3749 | if (buf[0] == '\0') |
3750 | { | |
3751 | if (remote_debug) | |
3752 | fprintf_unfiltered (gdb_stdlog, | |
3753 | "binary downloading NOT suppported by target\n"); | |
3754 | remote_protocol_binary_download.support = PACKET_DISABLE; | |
3755 | } | |
3756 | else | |
3757 | { | |
3758 | if (remote_debug) | |
3759 | fprintf_unfiltered (gdb_stdlog, | |
3760 | "binary downloading suppported by target\n"); | |
3761 | remote_protocol_binary_download.support = PACKET_ENABLE; | |
3762 | } | |
3763 | break; | |
3764 | } | |
c906108c SS |
3765 | } |
3766 | } | |
3767 | ||
3768 | /* Write memory data directly to the remote machine. | |
3769 | This does not inform the data cache; the data cache uses this. | |
3770 | MEMADDR is the address in the remote memory space. | |
3771 | MYADDR is the address of the buffer in our space. | |
3772 | LEN is the number of bytes. | |
3773 | ||
917317f4 JM |
3774 | Returns number of bytes transferred, or 0 (setting errno) for |
3775 | error. Only transfer a single packet. */ | |
c906108c SS |
3776 | |
3777 | static int | |
917317f4 | 3778 | remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len) |
c906108c | 3779 | { |
917317f4 | 3780 | unsigned char *buf; |
c906108c | 3781 | int max_buf_size; /* Max size of packet output buffer */ |
917317f4 JM |
3782 | unsigned char *p; |
3783 | unsigned char *plen; | |
c2d11a7d | 3784 | long sizeof_buf; |
917317f4 JM |
3785 | int plenlen; |
3786 | int todo; | |
3787 | int nr_bytes; | |
c906108c SS |
3788 | |
3789 | /* Verify that the target can support a binary download */ | |
3790 | check_binary_download (memaddr); | |
3791 | ||
917317f4 | 3792 | /* Determine the max packet size. */ |
11cf8741 | 3793 | max_buf_size = get_memory_write_packet_size (); |
c2d11a7d JM |
3794 | sizeof_buf = max_buf_size + 1; /* Space for trailing NUL */ |
3795 | buf = alloca (sizeof_buf); | |
c906108c | 3796 | |
7a292a7a | 3797 | /* Subtract header overhead from max payload size - $M<memaddr>,<len>:#nn */ |
c906108c SS |
3798 | max_buf_size -= 2 + hexnumlen (memaddr + len - 1) + 1 + hexnumlen (len) + 4; |
3799 | ||
917317f4 JM |
3800 | /* construct "M"<memaddr>","<len>":" */ |
3801 | /* sprintf (buf, "M%lx,%x:", (unsigned long) memaddr, todo); */ | |
3802 | p = buf; | |
3803 | ||
3804 | /* Append [XM]. Compute a best guess of the number of bytes | |
3805 | actually transfered. */ | |
3806 | switch (remote_protocol_binary_download.support) | |
c906108c | 3807 | { |
917317f4 JM |
3808 | case PACKET_ENABLE: |
3809 | *p++ = 'X'; | |
3810 | /* Best guess at number of bytes that will fit. */ | |
3811 | todo = min (len, max_buf_size); | |
3812 | break; | |
3813 | case PACKET_DISABLE: | |
3814 | *p++ = 'M'; | |
3815 | /* num bytes that will fit */ | |
3816 | todo = min (len, max_buf_size / 2); | |
3817 | break; | |
3818 | case PACKET_SUPPORT_UNKNOWN: | |
8e65ff28 AC |
3819 | internal_error (__FILE__, __LINE__, |
3820 | "remote_write_bytes: bad internal state"); | |
7f7e9482 | 3821 | default: |
8e65ff28 | 3822 | internal_error (__FILE__, __LINE__, "bad switch"); |
917317f4 JM |
3823 | } |
3824 | ||
3825 | /* Append <memaddr> */ | |
3826 | memaddr = remote_address_masked (memaddr); | |
3827 | p += hexnumstr (p, (ULONGEST) memaddr); | |
3828 | *p++ = ','; | |
3829 | ||
3830 | /* Append <len>. Retain the location/size of <len>. It may | |
3831 | need to be adjusted once the packet body has been created. */ | |
3832 | plen = p; | |
3833 | plenlen = hexnumstr (p, (ULONGEST) todo); | |
3834 | p += plenlen; | |
3835 | *p++ = ':'; | |
3836 | *p = '\0'; | |
3837 | ||
3838 | /* Append the packet body. */ | |
3839 | switch (remote_protocol_binary_download.support) | |
3840 | { | |
3841 | case PACKET_ENABLE: | |
3842 | /* Binary mode. Send target system values byte by byte, in | |
3843 | increasing byte addresses. Only escape certain critical | |
3844 | characters. */ | |
3845 | for (nr_bytes = 0; | |
3846 | (nr_bytes < todo) && (p - buf) < (max_buf_size - 2); | |
3847 | nr_bytes++) | |
c906108c | 3848 | { |
917317f4 JM |
3849 | switch (myaddr[nr_bytes] & 0xff) |
3850 | { | |
3851 | case '$': | |
3852 | case '#': | |
3853 | case 0x7d: | |
3854 | /* These must be escaped */ | |
3855 | *p++ = 0x7d; | |
3856 | *p++ = (myaddr[nr_bytes] & 0xff) ^ 0x20; | |
3857 | break; | |
3858 | default: | |
3859 | *p++ = myaddr[nr_bytes] & 0xff; | |
3860 | break; | |
3861 | } | |
c906108c | 3862 | } |
917317f4 | 3863 | if (nr_bytes < todo) |
c906108c | 3864 | { |
917317f4 JM |
3865 | /* Escape chars have filled up the buffer prematurely, |
3866 | and we have actually sent fewer bytes than planned. | |
3867 | Fix-up the length field of the packet. Use the same | |
3868 | number of characters as before. */ | |
3869 | ||
3870 | plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen); | |
3871 | *plen = ':'; /* overwrite \0 from hexnumnstr() */ | |
c906108c | 3872 | } |
917317f4 JM |
3873 | break; |
3874 | case PACKET_DISABLE: | |
3875 | /* Normal mode: Send target system values byte by byte, in | |
3876 | increasing byte addresses. Each byte is encoded as a two hex | |
3877 | value. */ | |
2644f393 | 3878 | nr_bytes = bin2hex (myaddr, p, todo); |
aa6c0017 | 3879 | p += 2 * nr_bytes; |
917317f4 JM |
3880 | break; |
3881 | case PACKET_SUPPORT_UNKNOWN: | |
8e65ff28 AC |
3882 | internal_error (__FILE__, __LINE__, |
3883 | "remote_write_bytes: bad internal state"); | |
7f7e9482 | 3884 | default: |
8e65ff28 | 3885 | internal_error (__FILE__, __LINE__, "bad switch"); |
c906108c | 3886 | } |
917317f4 JM |
3887 | |
3888 | putpkt_binary (buf, (int) (p - buf)); | |
c2d11a7d | 3889 | getpkt (buf, sizeof_buf, 0); |
917317f4 JM |
3890 | |
3891 | if (buf[0] == 'E') | |
3892 | { | |
3893 | /* There is no correspondance between what the remote protocol | |
3894 | uses for errors and errno codes. We would like a cleaner way | |
3895 | of representing errors (big enough to include errno codes, | |
3896 | bfd_error codes, and others). But for now just return EIO. */ | |
3897 | errno = EIO; | |
3898 | return 0; | |
3899 | } | |
3900 | ||
3901 | /* Return NR_BYTES, not TODO, in case escape chars caused us to send fewer | |
3902 | bytes than we'd planned. */ | |
3903 | return nr_bytes; | |
c906108c SS |
3904 | } |
3905 | ||
3906 | /* Read memory data directly from the remote machine. | |
3907 | This does not use the data cache; the data cache uses this. | |
3908 | MEMADDR is the address in the remote memory space. | |
3909 | MYADDR is the address of the buffer in our space. | |
3910 | LEN is the number of bytes. | |
3911 | ||
3912 | Returns number of bytes transferred, or 0 for error. */ | |
3913 | ||
917317f4 JM |
3914 | /* NOTE: cagney/1999-10-18: This function (and its siblings in other |
3915 | remote targets) shouldn't attempt to read the entire buffer. | |
3916 | Instead it should read a single packet worth of data and then | |
3917 | return the byte size of that packet to the caller. The caller (its | |
3918 | caller and its callers caller ;-) already contains code for | |
3919 | handling partial reads. */ | |
3920 | ||
c906108c | 3921 | static int |
fba45db2 | 3922 | remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len) |
c906108c | 3923 | { |
11cf8741 | 3924 | char *buf; |
c906108c | 3925 | int max_buf_size; /* Max size of packet output buffer */ |
c2d11a7d | 3926 | long sizeof_buf; |
c906108c SS |
3927 | int origlen; |
3928 | ||
11cf8741 JM |
3929 | /* Create a buffer big enough for this packet. */ |
3930 | max_buf_size = get_memory_read_packet_size (); | |
c2d11a7d JM |
3931 | sizeof_buf = max_buf_size + 1; /* Space for trailing NUL */ |
3932 | buf = alloca (sizeof_buf); | |
c906108c SS |
3933 | |
3934 | origlen = len; | |
3935 | while (len > 0) | |
3936 | { | |
c906108c SS |
3937 | char *p; |
3938 | int todo; | |
3939 | int i; | |
3940 | ||
c5aa993b | 3941 | todo = min (len, max_buf_size / 2); /* num bytes that will fit */ |
c906108c SS |
3942 | |
3943 | /* construct "m"<memaddr>","<len>" */ | |
3944 | /* sprintf (buf, "m%lx,%x", (unsigned long) memaddr, todo); */ | |
3945 | memaddr = remote_address_masked (memaddr); | |
3946 | p = buf; | |
3947 | *p++ = 'm'; | |
3948 | p += hexnumstr (p, (ULONGEST) memaddr); | |
3949 | *p++ = ','; | |
3950 | p += hexnumstr (p, (ULONGEST) todo); | |
3951 | *p = '\0'; | |
3952 | ||
3953 | putpkt (buf); | |
c2d11a7d | 3954 | getpkt (buf, sizeof_buf, 0); |
c906108c | 3955 | |
66504d44 MS |
3956 | if (buf[0] == 'E' |
3957 | && isxdigit (buf[1]) && isxdigit (buf[2]) | |
3958 | && buf[3] == '\0') | |
c906108c SS |
3959 | { |
3960 | /* There is no correspondance between what the remote protocol uses | |
3961 | for errors and errno codes. We would like a cleaner way of | |
3962 | representing errors (big enough to include errno codes, bfd_error | |
3963 | codes, and others). But for now just return EIO. */ | |
3964 | errno = EIO; | |
3965 | return 0; | |
3966 | } | |
3967 | ||
c5aa993b JM |
3968 | /* Reply describes memory byte by byte, |
3969 | each byte encoded as two hex characters. */ | |
c906108c SS |
3970 | |
3971 | p = buf; | |
30559e10 | 3972 | if ((i = hex2bin (p, myaddr, todo)) < todo) |
c906108c | 3973 | { |
30559e10 MS |
3974 | /* Reply is short. This means that we were able to read |
3975 | only part of what we wanted to. */ | |
3976 | return i + (origlen - len); | |
c906108c SS |
3977 | } |
3978 | myaddr += todo; | |
3979 | memaddr += todo; | |
3980 | len -= todo; | |
3981 | } | |
3982 | return origlen; | |
3983 | } | |
3984 | \f | |
3985 | /* Read or write LEN bytes from inferior memory at MEMADDR, | |
392a587b JM |
3986 | transferring to or from debugger address BUFFER. Write to inferior if |
3987 | SHOULD_WRITE is nonzero. Returns length of data written or read; 0 | |
c338868a | 3988 | for error. TARGET is unused. */ |
392a587b | 3989 | |
c906108c SS |
3990 | /* ARGSUSED */ |
3991 | static int | |
c338868a | 3992 | remote_xfer_memory (CORE_ADDR mem_addr, char *buffer, int mem_len, |
0a65a603 | 3993 | int should_write, struct mem_attrib *attrib, |
29e57380 | 3994 | struct target_ops *target) |
c906108c | 3995 | { |
392a587b JM |
3996 | CORE_ADDR targ_addr; |
3997 | int targ_len; | |
4930751a C |
3998 | int res; |
3999 | ||
392a587b JM |
4000 | REMOTE_TRANSLATE_XFER_ADDRESS (mem_addr, mem_len, &targ_addr, &targ_len); |
4001 | if (targ_len <= 0) | |
c906108c | 4002 | return 0; |
c906108c | 4003 | |
4930751a C |
4004 | if (should_write) |
4005 | res = remote_write_bytes (targ_addr, buffer, targ_len); | |
4006 | else | |
4007 | res = remote_read_bytes (targ_addr, buffer, targ_len); | |
4008 | ||
4009 | return res; | |
c906108c SS |
4010 | } |
4011 | ||
c5aa993b | 4012 | |
c906108c SS |
4013 | #if 0 |
4014 | /* Enable after 4.12. */ | |
4015 | ||
4016 | void | |
c338868a KB |
4017 | remote_search (int len, char *data, char *mask, CORE_ADDR startaddr, |
4018 | int increment, CORE_ADDR lorange, CORE_ADDR hirange, | |
4019 | CORE_ADDR *addr_found, char *data_found) | |
c906108c SS |
4020 | { |
4021 | if (increment == -4 && len == 4) | |
4022 | { | |
4023 | long mask_long, data_long; | |
4024 | long data_found_long; | |
4025 | CORE_ADDR addr_we_found; | |
d01949b6 | 4026 | char *buf = alloca (rs->remote_packet_size); |
c906108c SS |
4027 | long returned_long[2]; |
4028 | char *p; | |
4029 | ||
4030 | mask_long = extract_unsigned_integer (mask, len); | |
4031 | data_long = extract_unsigned_integer (data, len); | |
4032 | sprintf (buf, "t%x:%x,%x", startaddr, data_long, mask_long); | |
4033 | putpkt (buf); | |
d01949b6 | 4034 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c SS |
4035 | if (buf[0] == '\0') |
4036 | { | |
4037 | /* The stub doesn't support the 't' request. We might want to | |
4038 | remember this fact, but on the other hand the stub could be | |
4039 | switched on us. Maybe we should remember it only until | |
4040 | the next "target remote". */ | |
4041 | generic_search (len, data, mask, startaddr, increment, lorange, | |
4042 | hirange, addr_found, data_found); | |
4043 | return; | |
4044 | } | |
4045 | ||
4046 | if (buf[0] == 'E') | |
4047 | /* There is no correspondance between what the remote protocol uses | |
4048 | for errors and errno codes. We would like a cleaner way of | |
4049 | representing errors (big enough to include errno codes, bfd_error | |
4050 | codes, and others). But for now just use EIO. */ | |
4051 | memory_error (EIO, startaddr); | |
4052 | p = buf; | |
4053 | addr_we_found = 0; | |
4054 | while (*p != '\0' && *p != ',') | |
4055 | addr_we_found = (addr_we_found << 4) + fromhex (*p++); | |
4056 | if (*p == '\0') | |
4057 | error ("Protocol error: short return for search"); | |
4058 | ||
4059 | data_found_long = 0; | |
4060 | while (*p != '\0' && *p != ',') | |
4061 | data_found_long = (data_found_long << 4) + fromhex (*p++); | |
4062 | /* Ignore anything after this comma, for future extensions. */ | |
4063 | ||
4064 | if (addr_we_found < lorange || addr_we_found >= hirange) | |
4065 | { | |
4066 | *addr_found = 0; | |
4067 | return; | |
4068 | } | |
4069 | ||
4070 | *addr_found = addr_we_found; | |
4071 | *data_found = store_unsigned_integer (data_we_found, len); | |
4072 | return; | |
4073 | } | |
4074 | generic_search (len, data, mask, startaddr, increment, lorange, | |
4075 | hirange, addr_found, data_found); | |
4076 | } | |
4077 | #endif /* 0 */ | |
4078 | \f | |
4079 | static void | |
fba45db2 | 4080 | remote_files_info (struct target_ops *ignore) |
c906108c SS |
4081 | { |
4082 | puts_filtered ("Debugging a target over a serial line.\n"); | |
4083 | } | |
4084 | \f | |
4085 | /* Stuff for dealing with the packets which are part of this protocol. | |
4086 | See comment at top of file for details. */ | |
4087 | ||
4088 | /* Read a single character from the remote end, masking it down to 7 bits. */ | |
4089 | ||
4090 | static int | |
fba45db2 | 4091 | readchar (int timeout) |
c906108c SS |
4092 | { |
4093 | int ch; | |
4094 | ||
2cd58942 | 4095 | ch = serial_readchar (remote_desc, timeout); |
c906108c | 4096 | |
2acceee2 JM |
4097 | if (ch >= 0) |
4098 | return (ch & 0x7f); | |
4099 | ||
4100 | switch ((enum serial_rc) ch) | |
c906108c SS |
4101 | { |
4102 | case SERIAL_EOF: | |
2acceee2 | 4103 | target_mourn_inferior (); |
c906108c | 4104 | error ("Remote connection closed"); |
2acceee2 | 4105 | /* no return */ |
c906108c SS |
4106 | case SERIAL_ERROR: |
4107 | perror_with_name ("Remote communication error"); | |
2acceee2 | 4108 | /* no return */ |
c906108c | 4109 | case SERIAL_TIMEOUT: |
2acceee2 | 4110 | break; |
c906108c | 4111 | } |
2acceee2 | 4112 | return ch; |
c906108c SS |
4113 | } |
4114 | ||
4115 | /* Send the command in BUF to the remote machine, and read the reply | |
4116 | into BUF. Report an error if we get an error reply. */ | |
4117 | ||
4118 | static void | |
c2d11a7d JM |
4119 | remote_send (char *buf, |
4120 | long sizeof_buf) | |
c906108c SS |
4121 | { |
4122 | putpkt (buf); | |
c2d11a7d | 4123 | getpkt (buf, sizeof_buf, 0); |
c906108c SS |
4124 | |
4125 | if (buf[0] == 'E') | |
4126 | error ("Remote failure reply: %s", buf); | |
4127 | } | |
4128 | ||
4129 | /* Display a null-terminated packet on stdout, for debugging, using C | |
4130 | string notation. */ | |
4131 | ||
4132 | static void | |
fba45db2 | 4133 | print_packet (char *buf) |
c906108c SS |
4134 | { |
4135 | puts_filtered ("\""); | |
43e526b9 | 4136 | fputstr_filtered (buf, '"', gdb_stdout); |
c906108c SS |
4137 | puts_filtered ("\""); |
4138 | } | |
4139 | ||
4140 | int | |
fba45db2 | 4141 | putpkt (char *buf) |
c906108c SS |
4142 | { |
4143 | return putpkt_binary (buf, strlen (buf)); | |
4144 | } | |
4145 | ||
4146 | /* Send a packet to the remote machine, with error checking. The data | |
d01949b6 | 4147 | of the packet is in BUF. The string in BUF can be at most (rs->remote_packet_size) - 5 |
c906108c SS |
4148 | to account for the $, # and checksum, and for a possible /0 if we are |
4149 | debugging (remote_debug) and want to print the sent packet as a string */ | |
4150 | ||
4151 | static int | |
fba45db2 | 4152 | putpkt_binary (char *buf, int cnt) |
c906108c | 4153 | { |
d01949b6 | 4154 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
4155 | int i; |
4156 | unsigned char csum = 0; | |
11cf8741 | 4157 | char *buf2 = alloca (cnt + 6); |
d01949b6 | 4158 | long sizeof_junkbuf = (rs->remote_packet_size); |
c2d11a7d | 4159 | char *junkbuf = alloca (sizeof_junkbuf); |
085dd6e6 | 4160 | |
c906108c SS |
4161 | int ch; |
4162 | int tcount = 0; | |
4163 | char *p; | |
4164 | ||
4165 | /* Copy the packet into buffer BUF2, encapsulating it | |
4166 | and giving it a checksum. */ | |
4167 | ||
c906108c SS |
4168 | p = buf2; |
4169 | *p++ = '$'; | |
4170 | ||
4171 | for (i = 0; i < cnt; i++) | |
4172 | { | |
4173 | csum += buf[i]; | |
4174 | *p++ = buf[i]; | |
4175 | } | |
4176 | *p++ = '#'; | |
4177 | *p++ = tohex ((csum >> 4) & 0xf); | |
4178 | *p++ = tohex (csum & 0xf); | |
4179 | ||
4180 | /* Send it over and over until we get a positive ack. */ | |
4181 | ||
4182 | while (1) | |
4183 | { | |
4184 | int started_error_output = 0; | |
4185 | ||
4186 | if (remote_debug) | |
4187 | { | |
4188 | *p = '\0'; | |
43e526b9 JM |
4189 | fprintf_unfiltered (gdb_stdlog, "Sending packet: "); |
4190 | fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog); | |
d4f3574e | 4191 | fprintf_unfiltered (gdb_stdlog, "..."); |
0f71a2f6 | 4192 | gdb_flush (gdb_stdlog); |
c906108c | 4193 | } |
2cd58942 | 4194 | if (serial_write (remote_desc, buf2, p - buf2)) |
c906108c SS |
4195 | perror_with_name ("putpkt: write failed"); |
4196 | ||
4197 | /* read until either a timeout occurs (-2) or '+' is read */ | |
4198 | while (1) | |
4199 | { | |
4200 | ch = readchar (remote_timeout); | |
4201 | ||
c5aa993b | 4202 | if (remote_debug) |
c906108c SS |
4203 | { |
4204 | switch (ch) | |
4205 | { | |
4206 | case '+': | |
1216fa2c | 4207 | case '-': |
c906108c SS |
4208 | case SERIAL_TIMEOUT: |
4209 | case '$': | |
4210 | if (started_error_output) | |
4211 | { | |
4212 | putchar_unfiltered ('\n'); | |
4213 | started_error_output = 0; | |
4214 | } | |
4215 | } | |
4216 | } | |
4217 | ||
4218 | switch (ch) | |
4219 | { | |
4220 | case '+': | |
4221 | if (remote_debug) | |
0f71a2f6 | 4222 | fprintf_unfiltered (gdb_stdlog, "Ack\n"); |
c906108c | 4223 | return 1; |
1216fa2c AC |
4224 | case '-': |
4225 | if (remote_debug) | |
4226 | fprintf_unfiltered (gdb_stdlog, "Nak\n"); | |
c906108c | 4227 | case SERIAL_TIMEOUT: |
c5aa993b | 4228 | tcount++; |
c906108c SS |
4229 | if (tcount > 3) |
4230 | return 0; | |
4231 | break; /* Retransmit buffer */ | |
4232 | case '$': | |
4233 | { | |
40e3f985 FN |
4234 | if (remote_debug) |
4235 | fprintf_unfiltered (gdb_stdlog, "Packet instead of Ack, ignoring it\n"); | |
c5aa993b JM |
4236 | /* It's probably an old response, and we're out of sync. |
4237 | Just gobble up the packet and ignore it. */ | |
40e3f985 | 4238 | read_frame (junkbuf, sizeof_junkbuf); |
c5aa993b | 4239 | continue; /* Now, go look for + */ |
c906108c SS |
4240 | } |
4241 | default: | |
4242 | if (remote_debug) | |
4243 | { | |
4244 | if (!started_error_output) | |
4245 | { | |
4246 | started_error_output = 1; | |
0f71a2f6 | 4247 | fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: "); |
c906108c | 4248 | } |
0f71a2f6 | 4249 | fputc_unfiltered (ch & 0177, gdb_stdlog); |
c906108c SS |
4250 | } |
4251 | continue; | |
4252 | } | |
4253 | break; /* Here to retransmit */ | |
4254 | } | |
4255 | ||
4256 | #if 0 | |
4257 | /* This is wrong. If doing a long backtrace, the user should be | |
c5aa993b JM |
4258 | able to get out next time we call QUIT, without anything as |
4259 | violent as interrupt_query. If we want to provide a way out of | |
4260 | here without getting to the next QUIT, it should be based on | |
4261 | hitting ^C twice as in remote_wait. */ | |
c906108c SS |
4262 | if (quit_flag) |
4263 | { | |
4264 | quit_flag = 0; | |
4265 | interrupt_query (); | |
4266 | } | |
4267 | #endif | |
4268 | } | |
4269 | } | |
4270 | ||
0f71a2f6 JM |
4271 | static int remote_cisco_mode; |
4272 | ||
c906108c SS |
4273 | /* Come here after finding the start of the frame. Collect the rest |
4274 | into BUF, verifying the checksum, length, and handling run-length | |
c2d11a7d JM |
4275 | compression. No more than sizeof_buf-1 characters are read so that |
4276 | the buffer can be NUL terminated. | |
c906108c | 4277 | |
c2d11a7d JM |
4278 | Returns -1 on error, number of characters in buffer (ignoring the |
4279 | trailing NULL) on success. (could be extended to return one of the | |
4280 | SERIAL status indications). */ | |
4281 | ||
4282 | static long | |
4283 | read_frame (char *buf, | |
4284 | long sizeof_buf) | |
c906108c SS |
4285 | { |
4286 | unsigned char csum; | |
c2d11a7d | 4287 | long bc; |
c906108c SS |
4288 | int c; |
4289 | ||
4290 | csum = 0; | |
c2d11a7d | 4291 | bc = 0; |
c906108c SS |
4292 | |
4293 | while (1) | |
4294 | { | |
c2d11a7d | 4295 | /* ASSERT (bc < sizeof_buf - 1) - space for trailing NUL */ |
c906108c | 4296 | c = readchar (remote_timeout); |
c906108c SS |
4297 | switch (c) |
4298 | { | |
4299 | case SERIAL_TIMEOUT: | |
4300 | if (remote_debug) | |
0f71a2f6 | 4301 | fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog); |
c2d11a7d | 4302 | return -1; |
c906108c SS |
4303 | case '$': |
4304 | if (remote_debug) | |
0f71a2f6 JM |
4305 | fputs_filtered ("Saw new packet start in middle of old one\n", |
4306 | gdb_stdlog); | |
c2d11a7d | 4307 | return -1; /* Start a new packet, count retries */ |
c906108c SS |
4308 | case '#': |
4309 | { | |
4310 | unsigned char pktcsum; | |
e1b09194 AC |
4311 | int check_0 = 0; |
4312 | int check_1 = 0; | |
c906108c | 4313 | |
c2d11a7d | 4314 | buf[bc] = '\0'; |
c906108c | 4315 | |
e1b09194 AC |
4316 | check_0 = readchar (remote_timeout); |
4317 | if (check_0 >= 0) | |
4318 | check_1 = readchar (remote_timeout); | |
4319 | ||
4320 | if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT) | |
4321 | { | |
4322 | if (remote_debug) | |
4323 | fputs_filtered ("Timeout in checksum, retrying\n", gdb_stdlog); | |
4324 | return -1; | |
4325 | } | |
4326 | else if (check_0 < 0 || check_1 < 0) | |
40e3f985 FN |
4327 | { |
4328 | if (remote_debug) | |
4329 | fputs_filtered ("Communication error in checksum\n", gdb_stdlog); | |
4330 | return -1; | |
4331 | } | |
c906108c | 4332 | |
e1b09194 | 4333 | pktcsum = (fromhex (check_0) << 4) | fromhex (check_1); |
c906108c | 4334 | if (csum == pktcsum) |
c2d11a7d | 4335 | return bc; |
c906108c | 4336 | |
c5aa993b | 4337 | if (remote_debug) |
c906108c | 4338 | { |
0f71a2f6 | 4339 | fprintf_filtered (gdb_stdlog, |
c5aa993b | 4340 | "Bad checksum, sentsum=0x%x, csum=0x%x, buf=", |
0f71a2f6 JM |
4341 | pktcsum, csum); |
4342 | fputs_filtered (buf, gdb_stdlog); | |
4343 | fputs_filtered ("\n", gdb_stdlog); | |
c906108c | 4344 | } |
c2d11a7d JM |
4345 | /* Number of characters in buffer ignoring trailing |
4346 | NUL. */ | |
4347 | return -1; | |
c906108c SS |
4348 | } |
4349 | case '*': /* Run length encoding */ | |
c2c6d25f JM |
4350 | { |
4351 | int repeat; | |
4352 | csum += c; | |
c906108c | 4353 | |
c2c6d25f JM |
4354 | if (remote_cisco_mode == 0) |
4355 | { | |
4356 | c = readchar (remote_timeout); | |
4357 | csum += c; | |
4358 | repeat = c - ' ' + 3; /* Compute repeat count */ | |
4359 | } | |
4360 | else | |
4361 | { | |
4362 | /* Cisco's run-length encoding variant uses two | |
4363 | hex chars to represent the repeat count. */ | |
4364 | ||
4365 | c = readchar (remote_timeout); | |
4366 | csum += c; | |
4367 | repeat = fromhex (c) << 4; | |
4368 | c = readchar (remote_timeout); | |
4369 | csum += c; | |
4370 | repeat += fromhex (c); | |
4371 | } | |
c906108c | 4372 | |
c2d11a7d JM |
4373 | /* The character before ``*'' is repeated. */ |
4374 | ||
c2c6d25f | 4375 | if (repeat > 0 && repeat <= 255 |
c2d11a7d | 4376 | && bc > 0 |
fb6e5c55 | 4377 | && bc + repeat - 1 < sizeof_buf - 1) |
c2c6d25f | 4378 | { |
c2d11a7d JM |
4379 | memset (&buf[bc], buf[bc - 1], repeat); |
4380 | bc += repeat; | |
c2c6d25f JM |
4381 | continue; |
4382 | } | |
4383 | ||
c2d11a7d | 4384 | buf[bc] = '\0'; |
c2c6d25f JM |
4385 | printf_filtered ("Repeat count %d too large for buffer: ", repeat); |
4386 | puts_filtered (buf); | |
4387 | puts_filtered ("\n"); | |
c2d11a7d | 4388 | return -1; |
c2c6d25f | 4389 | } |
c906108c | 4390 | default: |
c2d11a7d | 4391 | if (bc < sizeof_buf - 1) |
c906108c | 4392 | { |
c2d11a7d | 4393 | buf[bc++] = c; |
c906108c SS |
4394 | csum += c; |
4395 | continue; | |
4396 | } | |
4397 | ||
c2d11a7d | 4398 | buf[bc] = '\0'; |
c906108c SS |
4399 | puts_filtered ("Remote packet too long: "); |
4400 | puts_filtered (buf); | |
4401 | puts_filtered ("\n"); | |
4402 | ||
c2d11a7d | 4403 | return -1; |
c906108c SS |
4404 | } |
4405 | } | |
4406 | } | |
4407 | ||
4408 | /* Read a packet from the remote machine, with error checking, and | |
c2d11a7d JM |
4409 | store it in BUF. If FOREVER, wait forever rather than timing out; |
4410 | this is used (in synchronous mode) to wait for a target that is is | |
4411 | executing user code to stop. */ | |
d9fcf2fb JM |
4412 | /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we |
4413 | don't have to change all the calls to getpkt to deal with the | |
4414 | return value, because at the moment I don't know what the right | |
4415 | thing to do it for those. */ | |
c906108c | 4416 | void |
c2d11a7d JM |
4417 | getpkt (char *buf, |
4418 | long sizeof_buf, | |
4419 | int forever) | |
d9fcf2fb JM |
4420 | { |
4421 | int timed_out; | |
4422 | ||
4423 | timed_out = getpkt_sane (buf, sizeof_buf, forever); | |
4424 | } | |
4425 | ||
4426 | ||
4427 | /* Read a packet from the remote machine, with error checking, and | |
4428 | store it in BUF. If FOREVER, wait forever rather than timing out; | |
4429 | this is used (in synchronous mode) to wait for a target that is is | |
4430 | executing user code to stop. If FOREVER == 0, this function is | |
4431 | allowed to time out gracefully and return an indication of this to | |
4432 | the caller. */ | |
3172dc30 | 4433 | static int |
d9fcf2fb JM |
4434 | getpkt_sane (char *buf, |
4435 | long sizeof_buf, | |
4436 | int forever) | |
c906108c SS |
4437 | { |
4438 | int c; | |
4439 | int tries; | |
4440 | int timeout; | |
4441 | int val; | |
4442 | ||
c5aa993b | 4443 | strcpy (buf, "timeout"); |
c906108c SS |
4444 | |
4445 | if (forever) | |
4446 | { | |
c906108c | 4447 | timeout = watchdog > 0 ? watchdog : -1; |
c906108c SS |
4448 | } |
4449 | ||
4450 | else | |
4451 | timeout = remote_timeout; | |
4452 | ||
4453 | #define MAX_TRIES 3 | |
4454 | ||
4455 | for (tries = 1; tries <= MAX_TRIES; tries++) | |
4456 | { | |
4457 | /* This can loop forever if the remote side sends us characters | |
c5aa993b JM |
4458 | continuously, but if it pauses, we'll get a zero from readchar |
4459 | because of timeout. Then we'll count that as a retry. */ | |
c906108c SS |
4460 | |
4461 | /* Note that we will only wait forever prior to the start of a packet. | |
c5aa993b JM |
4462 | After that, we expect characters to arrive at a brisk pace. They |
4463 | should show up within remote_timeout intervals. */ | |
c906108c SS |
4464 | |
4465 | do | |
4466 | { | |
4467 | c = readchar (timeout); | |
4468 | ||
4469 | if (c == SERIAL_TIMEOUT) | |
4470 | { | |
2acceee2 | 4471 | if (forever) /* Watchdog went off? Kill the target. */ |
c906108c | 4472 | { |
2acceee2 | 4473 | QUIT; |
c906108c SS |
4474 | target_mourn_inferior (); |
4475 | error ("Watchdog has expired. Target detached.\n"); | |
4476 | } | |
c906108c | 4477 | if (remote_debug) |
0f71a2f6 | 4478 | fputs_filtered ("Timed out.\n", gdb_stdlog); |
c906108c SS |
4479 | goto retry; |
4480 | } | |
4481 | } | |
4482 | while (c != '$'); | |
4483 | ||
4484 | /* We've found the start of a packet, now collect the data. */ | |
4485 | ||
c2d11a7d | 4486 | val = read_frame (buf, sizeof_buf); |
c906108c | 4487 | |
c2d11a7d | 4488 | if (val >= 0) |
c906108c SS |
4489 | { |
4490 | if (remote_debug) | |
43e526b9 JM |
4491 | { |
4492 | fprintf_unfiltered (gdb_stdlog, "Packet received: "); | |
4493 | fputstr_unfiltered (buf, 0, gdb_stdlog); | |
4494 | fprintf_unfiltered (gdb_stdlog, "\n"); | |
4495 | } | |
2cd58942 | 4496 | serial_write (remote_desc, "+", 1); |
d9fcf2fb | 4497 | return 0; |
c906108c SS |
4498 | } |
4499 | ||
4500 | /* Try the whole thing again. */ | |
4501 | retry: | |
2cd58942 | 4502 | serial_write (remote_desc, "-", 1); |
c906108c SS |
4503 | } |
4504 | ||
4505 | /* We have tried hard enough, and just can't receive the packet. Give up. */ | |
4506 | ||
4507 | printf_unfiltered ("Ignoring packet error, continuing...\n"); | |
2cd58942 | 4508 | serial_write (remote_desc, "+", 1); |
d9fcf2fb | 4509 | return 1; |
c906108c SS |
4510 | } |
4511 | \f | |
4512 | static void | |
fba45db2 | 4513 | remote_kill (void) |
c906108c SS |
4514 | { |
4515 | /* For some mysterious reason, wait_for_inferior calls kill instead of | |
4516 | mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */ | |
4517 | if (kill_kludge) | |
4518 | { | |
4519 | kill_kludge = 0; | |
4520 | target_mourn_inferior (); | |
4521 | return; | |
4522 | } | |
4523 | ||
4524 | /* Use catch_errors so the user can quit from gdb even when we aren't on | |
4525 | speaking terms with the remote system. */ | |
c5aa993b | 4526 | catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR); |
c906108c SS |
4527 | |
4528 | /* Don't wait for it to die. I'm not really sure it matters whether | |
4529 | we do or not. For the existing stubs, kill is a noop. */ | |
4530 | target_mourn_inferior (); | |
4531 | } | |
4532 | ||
43ff13b4 JM |
4533 | /* Async version of remote_kill. */ |
4534 | static void | |
fba45db2 | 4535 | remote_async_kill (void) |
43ff13b4 JM |
4536 | { |
4537 | /* Unregister the file descriptor from the event loop. */ | |
ed9a39eb | 4538 | if (target_is_async_p ()) |
2cd58942 | 4539 | serial_async (remote_desc, NULL, 0); |
43ff13b4 JM |
4540 | |
4541 | /* For some mysterious reason, wait_for_inferior calls kill instead of | |
4542 | mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */ | |
4543 | if (kill_kludge) | |
4544 | { | |
4545 | kill_kludge = 0; | |
4546 | target_mourn_inferior (); | |
4547 | return; | |
4548 | } | |
4549 | ||
4550 | /* Use catch_errors so the user can quit from gdb even when we aren't on | |
4551 | speaking terms with the remote system. */ | |
c5aa993b | 4552 | catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR); |
43ff13b4 JM |
4553 | |
4554 | /* Don't wait for it to die. I'm not really sure it matters whether | |
4555 | we do or not. For the existing stubs, kill is a noop. */ | |
4556 | target_mourn_inferior (); | |
4557 | } | |
4558 | ||
c906108c | 4559 | static void |
fba45db2 | 4560 | remote_mourn (void) |
c906108c SS |
4561 | { |
4562 | remote_mourn_1 (&remote_ops); | |
4563 | } | |
4564 | ||
53a5351d | 4565 | static void |
fba45db2 | 4566 | remote_async_mourn (void) |
53a5351d JM |
4567 | { |
4568 | remote_mourn_1 (&remote_async_ops); | |
4569 | } | |
4570 | ||
c906108c | 4571 | static void |
fba45db2 | 4572 | extended_remote_mourn (void) |
c906108c SS |
4573 | { |
4574 | /* We do _not_ want to mourn the target like this; this will | |
4575 | remove the extended remote target from the target stack, | |
4576 | and the next time the user says "run" it'll fail. | |
4577 | ||
4578 | FIXME: What is the right thing to do here? */ | |
4579 | #if 0 | |
4580 | remote_mourn_1 (&extended_remote_ops); | |
4581 | #endif | |
4582 | } | |
4583 | ||
4584 | /* Worker function for remote_mourn. */ | |
4585 | static void | |
fba45db2 | 4586 | remote_mourn_1 (struct target_ops *target) |
c906108c SS |
4587 | { |
4588 | unpush_target (target); | |
4589 | generic_mourn_inferior (); | |
4590 | } | |
4591 | ||
4592 | /* In the extended protocol we want to be able to do things like | |
4593 | "run" and have them basically work as expected. So we need | |
4594 | a special create_inferior function. | |
4595 | ||
4596 | FIXME: One day add support for changing the exec file | |
4597 | we're debugging, arguments and an environment. */ | |
4598 | ||
4599 | static void | |
fba45db2 | 4600 | extended_remote_create_inferior (char *exec_file, char *args, char **env) |
c906108c SS |
4601 | { |
4602 | /* Rip out the breakpoints; we'll reinsert them after restarting | |
4603 | the remote server. */ | |
4604 | remove_breakpoints (); | |
4605 | ||
4606 | /* Now restart the remote server. */ | |
4607 | extended_remote_restart (); | |
4608 | ||
4609 | /* Now put the breakpoints back in. This way we're safe if the | |
4610 | restart function works via a unix fork on the remote side. */ | |
4611 | insert_breakpoints (); | |
4612 | ||
4613 | /* Clean up from the last time we were running. */ | |
4614 | clear_proceed_status (); | |
4615 | ||
4616 | /* Let the remote process run. */ | |
4617 | proceed (-1, TARGET_SIGNAL_0, 0); | |
4618 | } | |
4619 | ||
43ff13b4 JM |
4620 | /* Async version of extended_remote_create_inferior. */ |
4621 | static void | |
fba45db2 | 4622 | extended_remote_async_create_inferior (char *exec_file, char *args, char **env) |
43ff13b4 JM |
4623 | { |
4624 | /* Rip out the breakpoints; we'll reinsert them after restarting | |
4625 | the remote server. */ | |
4626 | remove_breakpoints (); | |
4627 | ||
4628 | /* If running asynchronously, register the target file descriptor | |
4629 | with the event loop. */ | |
2acceee2 JM |
4630 | if (event_loop_p && target_can_async_p ()) |
4631 | target_async (inferior_event_handler, 0); | |
43ff13b4 JM |
4632 | |
4633 | /* Now restart the remote server. */ | |
4634 | extended_remote_restart (); | |
4635 | ||
4636 | /* Now put the breakpoints back in. This way we're safe if the | |
4637 | restart function works via a unix fork on the remote side. */ | |
4638 | insert_breakpoints (); | |
4639 | ||
4640 | /* Clean up from the last time we were running. */ | |
4641 | clear_proceed_status (); | |
4642 | ||
4643 | /* Let the remote process run. */ | |
4644 | proceed (-1, TARGET_SIGNAL_0, 0); | |
4645 | } | |
c906108c | 4646 | \f |
c5aa993b | 4647 | |
c906108c SS |
4648 | /* On some machines, e.g. 68k, we may use a different breakpoint instruction |
4649 | than other targets; in those use REMOTE_BREAKPOINT instead of just | |
4650 | BREAKPOINT. Also, bi-endian targets may define LITTLE_REMOTE_BREAKPOINT | |
4651 | and BIG_REMOTE_BREAKPOINT. If none of these are defined, we just call | |
4652 | the standard routines that are in mem-break.c. */ | |
4653 | ||
4654 | /* FIXME, these ought to be done in a more dynamic fashion. For instance, | |
4655 | the choice of breakpoint instruction affects target program design and | |
4656 | vice versa, and by making it user-tweakable, the special code here | |
4657 | goes away and we need fewer special GDB configurations. */ | |
4658 | ||
4659 | #if defined (LITTLE_REMOTE_BREAKPOINT) && defined (BIG_REMOTE_BREAKPOINT) && !defined(REMOTE_BREAKPOINT) | |
4660 | #define REMOTE_BREAKPOINT | |
4661 | #endif | |
4662 | ||
4663 | #ifdef REMOTE_BREAKPOINT | |
4664 | ||
4665 | /* If the target isn't bi-endian, just pretend it is. */ | |
4666 | #if !defined (LITTLE_REMOTE_BREAKPOINT) && !defined (BIG_REMOTE_BREAKPOINT) | |
4667 | #define LITTLE_REMOTE_BREAKPOINT REMOTE_BREAKPOINT | |
4668 | #define BIG_REMOTE_BREAKPOINT REMOTE_BREAKPOINT | |
4669 | #endif | |
4670 | ||
4671 | static unsigned char big_break_insn[] = BIG_REMOTE_BREAKPOINT; | |
4672 | static unsigned char little_break_insn[] = LITTLE_REMOTE_BREAKPOINT; | |
4673 | ||
4674 | #endif /* REMOTE_BREAKPOINT */ | |
4675 | ||
4676 | /* Insert a breakpoint on targets that don't have any better breakpoint | |
4677 | support. We read the contents of the target location and stash it, | |
4678 | then overwrite it with a breakpoint instruction. ADDR is the target | |
4679 | location in the target machine. CONTENTS_CACHE is a pointer to | |
4680 | memory allocated for saving the target contents. It is guaranteed | |
4681 | by the caller to be long enough to save sizeof BREAKPOINT bytes (this | |
4682 | is accomplished via BREAKPOINT_MAX). */ | |
4683 | ||
4684 | static int | |
fba45db2 | 4685 | remote_insert_breakpoint (CORE_ADDR addr, char *contents_cache) |
c906108c | 4686 | { |
d01949b6 | 4687 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
4688 | #ifdef REMOTE_BREAKPOINT |
4689 | int val; | |
96baa820 JM |
4690 | #endif |
4691 | int bp_size; | |
4692 | ||
d471ea57 AC |
4693 | /* Try the "Z" s/w breakpoint packet if it is not already disabled. |
4694 | If it succeeds, then set the support to PACKET_ENABLE. If it | |
4695 | fails, and the user has explicitly requested the Z support then | |
4696 | report an error, otherwise, mark it disabled and go on. */ | |
96baa820 | 4697 | |
d471ea57 | 4698 | if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE) |
96baa820 | 4699 | { |
d01949b6 | 4700 | char *buf = alloca (rs->remote_packet_size); |
e514a9d6 | 4701 | char *p = buf; |
96baa820 | 4702 | |
0caabb7e | 4703 | addr = remote_address_masked (addr); |
96baa820 JM |
4704 | *(p++) = 'Z'; |
4705 | *(p++) = '0'; | |
4706 | *(p++) = ','; | |
0caabb7e AC |
4707 | p += hexnumstr (p, (ULONGEST) addr); |
4708 | BREAKPOINT_FROM_PC (&addr, &bp_size); | |
96baa820 JM |
4709 | sprintf (p, ",%d", bp_size); |
4710 | ||
4711 | putpkt (buf); | |
d01949b6 | 4712 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 | 4713 | |
d471ea57 | 4714 | switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_SOFTWARE_BP])) |
96baa820 | 4715 | { |
d471ea57 AC |
4716 | case PACKET_ERROR: |
4717 | return -1; | |
4718 | case PACKET_OK: | |
4719 | return 0; | |
4720 | case PACKET_UNKNOWN: | |
4721 | break; | |
96baa820 JM |
4722 | } |
4723 | } | |
c906108c | 4724 | |
96baa820 | 4725 | #ifdef REMOTE_BREAKPOINT |
c906108c SS |
4726 | val = target_read_memory (addr, contents_cache, sizeof big_break_insn); |
4727 | ||
4728 | if (val == 0) | |
4729 | { | |
d7449b42 | 4730 | if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG) |
c906108c SS |
4731 | val = target_write_memory (addr, (char *) big_break_insn, |
4732 | sizeof big_break_insn); | |
4733 | else | |
4734 | val = target_write_memory (addr, (char *) little_break_insn, | |
4735 | sizeof little_break_insn); | |
4736 | } | |
4737 | ||
4738 | return val; | |
4739 | #else | |
4740 | return memory_insert_breakpoint (addr, contents_cache); | |
4741 | #endif /* REMOTE_BREAKPOINT */ | |
4742 | } | |
4743 | ||
4744 | static int | |
fba45db2 | 4745 | remote_remove_breakpoint (CORE_ADDR addr, char *contents_cache) |
c906108c | 4746 | { |
d01949b6 | 4747 | struct remote_state *rs = get_remote_state (); |
96baa820 JM |
4748 | int bp_size; |
4749 | ||
d471ea57 | 4750 | if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE) |
96baa820 | 4751 | { |
d01949b6 | 4752 | char *buf = alloca (rs->remote_packet_size); |
e514a9d6 | 4753 | char *p = buf; |
96baa820 JM |
4754 | |
4755 | *(p++) = 'z'; | |
4756 | *(p++) = '0'; | |
4757 | *(p++) = ','; | |
4758 | ||
0caabb7e AC |
4759 | addr = remote_address_masked (addr); |
4760 | p += hexnumstr (p, (ULONGEST) addr); | |
4761 | BREAKPOINT_FROM_PC (&addr, &bp_size); | |
96baa820 JM |
4762 | sprintf (p, ",%d", bp_size); |
4763 | ||
4764 | putpkt (buf); | |
d01949b6 | 4765 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 JM |
4766 | |
4767 | return (buf[0] == 'E'); | |
4768 | } | |
4769 | ||
c906108c SS |
4770 | #ifdef REMOTE_BREAKPOINT |
4771 | return target_write_memory (addr, contents_cache, sizeof big_break_insn); | |
4772 | #else | |
4773 | return memory_remove_breakpoint (addr, contents_cache); | |
4774 | #endif /* REMOTE_BREAKPOINT */ | |
4775 | } | |
4776 | ||
d471ea57 AC |
4777 | static int |
4778 | watchpoint_to_Z_packet (int type) | |
4779 | { | |
4780 | switch (type) | |
4781 | { | |
4782 | case hw_write: | |
4783 | return 2; | |
4784 | break; | |
4785 | case hw_read: | |
4786 | return 3; | |
4787 | break; | |
4788 | case hw_access: | |
4789 | return 4; | |
4790 | break; | |
4791 | default: | |
8e65ff28 AC |
4792 | internal_error (__FILE__, __LINE__, |
4793 | "hw_bp_to_z: bad watchpoint type %d", type); | |
d471ea57 AC |
4794 | } |
4795 | } | |
4796 | ||
4797 | /* FIXME: This function should be static and a member of the remote | |
4798 | target vector. */ | |
4799 | ||
96baa820 | 4800 | int |
fba45db2 | 4801 | remote_insert_watchpoint (CORE_ADDR addr, int len, int type) |
96baa820 | 4802 | { |
d01949b6 AC |
4803 | struct remote_state *rs = get_remote_state (); |
4804 | char *buf = alloca (rs->remote_packet_size); | |
e514a9d6 | 4805 | char *p; |
d471ea57 | 4806 | enum Z_packet_type packet = watchpoint_to_Z_packet (type); |
96baa820 | 4807 | |
d471ea57 AC |
4808 | if (remote_protocol_Z[packet].support == PACKET_DISABLE) |
4809 | error ("Can't set hardware watchpoints without the '%s' (%s) packet\n", | |
4810 | remote_protocol_Z[packet].name, | |
4811 | remote_protocol_Z[packet].title); | |
96baa820 | 4812 | |
d471ea57 | 4813 | sprintf (buf, "Z%x,", packet); |
96baa820 JM |
4814 | p = strchr (buf, '\0'); |
4815 | addr = remote_address_masked (addr); | |
4816 | p += hexnumstr (p, (ULONGEST) addr); | |
d4f3574e | 4817 | sprintf (p, ",%x", len); |
96baa820 JM |
4818 | |
4819 | putpkt (buf); | |
d01949b6 | 4820 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 | 4821 | |
d471ea57 AC |
4822 | switch (packet_ok (buf, &remote_protocol_Z[packet])) |
4823 | { | |
4824 | case PACKET_ERROR: | |
4825 | case PACKET_UNKNOWN: | |
4826 | return -1; | |
4827 | case PACKET_OK: | |
4828 | return 0; | |
4829 | } | |
8e65ff28 AC |
4830 | internal_error (__FILE__, __LINE__, |
4831 | "remote_insert_watchpoint: reached end of function"); | |
96baa820 JM |
4832 | } |
4833 | ||
d471ea57 AC |
4834 | /* FIXME: This function should be static and a member of the remote |
4835 | target vector. */ | |
4836 | ||
96baa820 | 4837 | int |
fba45db2 | 4838 | remote_remove_watchpoint (CORE_ADDR addr, int len, int type) |
96baa820 | 4839 | { |
d01949b6 AC |
4840 | struct remote_state *rs = get_remote_state (); |
4841 | char *buf = alloca (rs->remote_packet_size); | |
e514a9d6 | 4842 | char *p; |
d471ea57 AC |
4843 | enum Z_packet_type packet = watchpoint_to_Z_packet (type); |
4844 | ||
4845 | if (remote_protocol_Z[packet].support == PACKET_DISABLE) | |
4846 | error ("Can't clear hardware watchpoints without the '%s' (%s) packet\n", | |
4847 | remote_protocol_Z[packet].name, | |
4848 | remote_protocol_Z[packet].title); | |
96baa820 | 4849 | |
d471ea57 | 4850 | sprintf (buf, "z%x,", packet); |
96baa820 JM |
4851 | p = strchr (buf, '\0'); |
4852 | addr = remote_address_masked (addr); | |
4853 | p += hexnumstr (p, (ULONGEST) addr); | |
d4f3574e | 4854 | sprintf (p, ",%x", len); |
96baa820 | 4855 | putpkt (buf); |
d01949b6 | 4856 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 | 4857 | |
d471ea57 AC |
4858 | switch (packet_ok (buf, &remote_protocol_Z[packet])) |
4859 | { | |
4860 | case PACKET_ERROR: | |
4861 | case PACKET_UNKNOWN: | |
4862 | return -1; | |
4863 | case PACKET_OK: | |
4864 | return 0; | |
4865 | } | |
8e65ff28 AC |
4866 | internal_error (__FILE__, __LINE__, |
4867 | "remote_remove_watchpoint: reached end of function"); | |
96baa820 JM |
4868 | } |
4869 | ||
d471ea57 AC |
4870 | /* FIXME: This function should be static and a member of the remote |
4871 | target vector. */ | |
4872 | ||
96baa820 | 4873 | int |
fba45db2 | 4874 | remote_insert_hw_breakpoint (CORE_ADDR addr, int len) |
96baa820 | 4875 | { |
d01949b6 AC |
4876 | struct remote_state *rs = get_remote_state (); |
4877 | char *buf = alloca (rs->remote_packet_size); | |
e514a9d6 | 4878 | char *p = buf; |
96baa820 | 4879 | |
d471ea57 AC |
4880 | if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE) |
4881 | error ("Can't set hardware breakpoint without the '%s' (%s) packet\n", | |
4882 | remote_protocol_Z[Z_PACKET_HARDWARE_BP].name, | |
4883 | remote_protocol_Z[Z_PACKET_HARDWARE_BP].title); | |
4884 | ||
96baa820 JM |
4885 | *(p++) = 'Z'; |
4886 | *(p++) = '1'; | |
4887 | *(p++) = ','; | |
4888 | ||
4889 | addr = remote_address_masked (addr); | |
4890 | p += hexnumstr (p, (ULONGEST) addr); | |
ad6525fc | 4891 | sprintf (p, ",%x", len); |
96baa820 JM |
4892 | |
4893 | putpkt (buf); | |
d01949b6 | 4894 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 | 4895 | |
d471ea57 AC |
4896 | switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP])) |
4897 | { | |
4898 | case PACKET_ERROR: | |
4899 | case PACKET_UNKNOWN: | |
4900 | return -1; | |
4901 | case PACKET_OK: | |
4902 | return 0; | |
4903 | } | |
8e65ff28 AC |
4904 | internal_error (__FILE__, __LINE__, |
4905 | "remote_remove_watchpoint: reached end of function"); | |
96baa820 JM |
4906 | } |
4907 | ||
d471ea57 AC |
4908 | /* FIXME: This function should be static and a member of the remote |
4909 | target vector. */ | |
4910 | ||
96baa820 | 4911 | int |
fba45db2 | 4912 | remote_remove_hw_breakpoint (CORE_ADDR addr, int len) |
96baa820 | 4913 | { |
d01949b6 AC |
4914 | struct remote_state *rs = get_remote_state (); |
4915 | char *buf = alloca (rs->remote_packet_size); | |
e514a9d6 | 4916 | char *p = buf; |
96baa820 | 4917 | |
d471ea57 AC |
4918 | if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE) |
4919 | error ("Can't clear hardware breakpoint without the '%s' (%s) packet\n", | |
4920 | remote_protocol_Z[Z_PACKET_HARDWARE_BP].name, | |
4921 | remote_protocol_Z[Z_PACKET_HARDWARE_BP].title); | |
4922 | ||
96baa820 JM |
4923 | *(p++) = 'z'; |
4924 | *(p++) = '1'; | |
4925 | *(p++) = ','; | |
4926 | ||
4927 | addr = remote_address_masked (addr); | |
4928 | p += hexnumstr (p, (ULONGEST) addr); | |
ad6525fc | 4929 | sprintf (p, ",%x", len); |
96baa820 JM |
4930 | |
4931 | putpkt(buf); | |
d01949b6 | 4932 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 | 4933 | |
d471ea57 AC |
4934 | switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP])) |
4935 | { | |
4936 | case PACKET_ERROR: | |
4937 | case PACKET_UNKNOWN: | |
4938 | return -1; | |
4939 | case PACKET_OK: | |
4940 | return 0; | |
4941 | } | |
8e65ff28 AC |
4942 | internal_error (__FILE__, __LINE__, |
4943 | "remote_remove_watchpoint: reached end of function"); | |
96baa820 | 4944 | } |
96baa820 | 4945 | |
c906108c SS |
4946 | /* Some targets are only capable of doing downloads, and afterwards |
4947 | they switch to the remote serial protocol. This function provides | |
4948 | a clean way to get from the download target to the remote target. | |
4949 | It's basically just a wrapper so that we don't have to expose any | |
4950 | of the internal workings of remote.c. | |
4951 | ||
4952 | Prior to calling this routine, you should shutdown the current | |
4953 | target code, else you will get the "A program is being debugged | |
4954 | already..." message. Usually a call to pop_target() suffices. */ | |
4955 | ||
4956 | void | |
fba45db2 | 4957 | push_remote_target (char *name, int from_tty) |
c906108c SS |
4958 | { |
4959 | printf_filtered ("Switching to remote protocol\n"); | |
4960 | remote_open (name, from_tty); | |
4961 | } | |
4962 | ||
4963 | /* Other targets want to use the entire remote serial module but with | |
4964 | certain remote_ops overridden. */ | |
4965 | ||
4966 | void | |
fba45db2 KB |
4967 | open_remote_target (char *name, int from_tty, struct target_ops *target, |
4968 | int extended_p) | |
c906108c SS |
4969 | { |
4970 | printf_filtered ("Selecting the %sremote protocol\n", | |
4971 | (extended_p ? "extended-" : "")); | |
4972 | remote_open_1 (name, from_tty, target, extended_p); | |
4973 | } | |
4974 | ||
4975 | /* Table used by the crc32 function to calcuate the checksum. */ | |
4976 | ||
c5aa993b JM |
4977 | static unsigned long crc32_table[256] = |
4978 | {0, 0}; | |
c906108c SS |
4979 | |
4980 | static unsigned long | |
fba45db2 | 4981 | crc32 (unsigned char *buf, int len, unsigned int crc) |
c906108c | 4982 | { |
c5aa993b | 4983 | if (!crc32_table[1]) |
c906108c SS |
4984 | { |
4985 | /* Initialize the CRC table and the decoding table. */ | |
4986 | int i, j; | |
4987 | unsigned int c; | |
4988 | ||
4989 | for (i = 0; i < 256; i++) | |
c5aa993b JM |
4990 | { |
4991 | for (c = i << 24, j = 8; j > 0; --j) | |
4992 | c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1); | |
4993 | crc32_table[i] = c; | |
4994 | } | |
c906108c SS |
4995 | } |
4996 | ||
4997 | while (len--) | |
4998 | { | |
4999 | crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255]; | |
5000 | buf++; | |
5001 | } | |
5002 | return crc; | |
5003 | } | |
5004 | ||
5005 | /* compare-sections command | |
5006 | ||
5007 | With no arguments, compares each loadable section in the exec bfd | |
5008 | with the same memory range on the target, and reports mismatches. | |
5009 | Useful for verifying the image on the target against the exec file. | |
5010 | Depends on the target understanding the new "qCRC:" request. */ | |
5011 | ||
e514a9d6 JM |
5012 | /* FIXME: cagney/1999-10-26: This command should be broken down into a |
5013 | target method (target verify memory) and generic version of the | |
5014 | actual command. This will allow other high-level code (especially | |
5015 | generic_load()) to make use of this target functionality. */ | |
5016 | ||
c906108c | 5017 | static void |
fba45db2 | 5018 | compare_sections_command (char *args, int from_tty) |
c906108c | 5019 | { |
d01949b6 | 5020 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
5021 | asection *s; |
5022 | unsigned long host_crc, target_crc; | |
5023 | extern bfd *exec_bfd; | |
5024 | struct cleanup *old_chain; | |
085dd6e6 JM |
5025 | char *tmp; |
5026 | char *sectdata; | |
ce359b09 | 5027 | const char *sectname; |
d01949b6 | 5028 | char *buf = alloca (rs->remote_packet_size); |
c906108c SS |
5029 | bfd_size_type size; |
5030 | bfd_vma lma; | |
5031 | int matched = 0; | |
5032 | int mismatched = 0; | |
5033 | ||
5034 | if (!exec_bfd) | |
5035 | error ("command cannot be used without an exec file"); | |
5036 | if (!current_target.to_shortname || | |
5037 | strcmp (current_target.to_shortname, "remote") != 0) | |
5038 | error ("command can only be used with remote target"); | |
5039 | ||
c5aa993b | 5040 | for (s = exec_bfd->sections; s; s = s->next) |
c906108c SS |
5041 | { |
5042 | if (!(s->flags & SEC_LOAD)) | |
c5aa993b | 5043 | continue; /* skip non-loadable section */ |
c906108c SS |
5044 | |
5045 | size = bfd_get_section_size_before_reloc (s); | |
5046 | if (size == 0) | |
c5aa993b | 5047 | continue; /* skip zero-length section */ |
c906108c | 5048 | |
ce359b09 | 5049 | sectname = bfd_get_section_name (exec_bfd, s); |
c906108c | 5050 | if (args && strcmp (args, sectname) != 0) |
c5aa993b | 5051 | continue; /* not the section selected by user */ |
c906108c | 5052 | |
c5aa993b | 5053 | matched = 1; /* do this section */ |
c906108c SS |
5054 | lma = s->lma; |
5055 | /* FIXME: assumes lma can fit into long */ | |
5056 | sprintf (buf, "qCRC:%lx,%lx", (long) lma, (long) size); | |
5057 | putpkt (buf); | |
5058 | ||
5059 | /* be clever; compute the host_crc before waiting for target reply */ | |
5060 | sectdata = xmalloc (size); | |
b8c9b27d | 5061 | old_chain = make_cleanup (xfree, sectdata); |
c906108c SS |
5062 | bfd_get_section_contents (exec_bfd, s, sectdata, 0, size); |
5063 | host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff); | |
5064 | ||
d01949b6 | 5065 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c | 5066 | if (buf[0] == 'E') |
823ca731 AC |
5067 | error ("target memory fault, section %s, range 0x%s -- 0x%s", |
5068 | sectname, paddr (lma), paddr (lma + size)); | |
c906108c SS |
5069 | if (buf[0] != 'C') |
5070 | error ("remote target does not support this operation"); | |
5071 | ||
5072 | for (target_crc = 0, tmp = &buf[1]; *tmp; tmp++) | |
5073 | target_crc = target_crc * 16 + fromhex (*tmp); | |
5074 | ||
d4f3574e SS |
5075 | printf_filtered ("Section %s, range 0x%s -- 0x%s: ", |
5076 | sectname, paddr (lma), paddr (lma + size)); | |
c906108c SS |
5077 | if (host_crc == target_crc) |
5078 | printf_filtered ("matched.\n"); | |
5079 | else | |
c5aa993b JM |
5080 | { |
5081 | printf_filtered ("MIS-MATCHED!\n"); | |
5082 | mismatched++; | |
5083 | } | |
c906108c SS |
5084 | |
5085 | do_cleanups (old_chain); | |
5086 | } | |
5087 | if (mismatched > 0) | |
5088 | warning ("One or more sections of the remote executable does not match\n\ | |
5089 | the loaded file\n"); | |
5090 | if (args && !matched) | |
5091 | printf_filtered ("No loaded section named '%s'.\n", args); | |
5092 | } | |
5093 | ||
5094 | static int | |
fba45db2 | 5095 | remote_query (int query_type, char *buf, char *outbuf, int *bufsiz) |
c906108c | 5096 | { |
d01949b6 | 5097 | struct remote_state *rs = get_remote_state (); |
c906108c | 5098 | int i; |
d01949b6 | 5099 | char *buf2 = alloca (rs->remote_packet_size); |
c906108c | 5100 | char *p2 = &buf2[0]; |
c906108c | 5101 | |
c5aa993b | 5102 | if (!bufsiz) |
c906108c SS |
5103 | error ("null pointer to remote bufer size specified"); |
5104 | ||
d01949b6 | 5105 | /* minimum outbuf size is (rs->remote_packet_size) - if bufsiz is not large enough let |
c906108c SS |
5106 | the caller know and return what the minimum size is */ |
5107 | /* Note: a zero bufsiz can be used to query the minimum buffer size */ | |
d01949b6 | 5108 | if (*bufsiz < (rs->remote_packet_size)) |
c906108c | 5109 | { |
d01949b6 | 5110 | *bufsiz = (rs->remote_packet_size); |
c906108c SS |
5111 | return -1; |
5112 | } | |
5113 | ||
5114 | /* except for querying the minimum buffer size, target must be open */ | |
c5aa993b | 5115 | if (!remote_desc) |
c906108c SS |
5116 | error ("remote query is only available after target open"); |
5117 | ||
5118 | /* we only take uppercase letters as query types, at least for now */ | |
c5aa993b | 5119 | if ((query_type < 'A') || (query_type > 'Z')) |
c906108c SS |
5120 | error ("invalid remote query type"); |
5121 | ||
c5aa993b | 5122 | if (!buf) |
c906108c SS |
5123 | error ("null remote query specified"); |
5124 | ||
c5aa993b | 5125 | if (!outbuf) |
c906108c SS |
5126 | error ("remote query requires a buffer to receive data"); |
5127 | ||
5128 | outbuf[0] = '\0'; | |
5129 | ||
5130 | *p2++ = 'q'; | |
5131 | *p2++ = query_type; | |
5132 | ||
5133 | /* we used one buffer char for the remote protocol q command and another | |
5134 | for the query type. As the remote protocol encapsulation uses 4 chars | |
5135 | plus one extra in case we are debugging (remote_debug), | |
5136 | we have PBUFZIZ - 7 left to pack the query string */ | |
5137 | i = 0; | |
d01949b6 | 5138 | while (buf[i] && (i < ((rs->remote_packet_size) - 8))) |
c906108c SS |
5139 | { |
5140 | /* bad caller may have sent forbidden characters */ | |
c5aa993b JM |
5141 | if ((!isprint (buf[i])) || (buf[i] == '$') || (buf[i] == '#')) |
5142 | error ("illegal characters in query string"); | |
c906108c SS |
5143 | |
5144 | *p2++ = buf[i]; | |
5145 | i++; | |
5146 | } | |
5147 | *p2 = buf[i]; | |
5148 | ||
c5aa993b | 5149 | if (buf[i]) |
c906108c SS |
5150 | error ("query larger than available buffer"); |
5151 | ||
5152 | i = putpkt (buf2); | |
c5aa993b JM |
5153 | if (i < 0) |
5154 | return i; | |
c906108c | 5155 | |
c2d11a7d | 5156 | getpkt (outbuf, *bufsiz, 0); |
c906108c SS |
5157 | |
5158 | return 0; | |
5159 | } | |
5160 | ||
96baa820 JM |
5161 | static void |
5162 | remote_rcmd (char *command, | |
d9fcf2fb | 5163 | struct ui_file *outbuf) |
96baa820 | 5164 | { |
d01949b6 | 5165 | struct remote_state *rs = get_remote_state (); |
96baa820 | 5166 | int i; |
d01949b6 | 5167 | char *buf = alloca (rs->remote_packet_size); |
96baa820 JM |
5168 | char *p = buf; |
5169 | ||
5170 | if (!remote_desc) | |
5171 | error ("remote rcmd is only available after target open"); | |
5172 | ||
7be570e7 JM |
5173 | /* Send a NULL command across as an empty command */ |
5174 | if (command == NULL) | |
5175 | command = ""; | |
5176 | ||
96baa820 JM |
5177 | /* The query prefix */ |
5178 | strcpy (buf, "qRcmd,"); | |
5179 | p = strchr (buf, '\0'); | |
5180 | ||
d01949b6 | 5181 | if ((strlen (buf) + strlen (command) * 2 + 8/*misc*/) > (rs->remote_packet_size)) |
96baa820 JM |
5182 | error ("\"monitor\" command ``%s'' is too long\n", command); |
5183 | ||
5184 | /* Encode the actual command */ | |
30559e10 | 5185 | bin2hex (command, p, 0); |
96baa820 JM |
5186 | |
5187 | if (putpkt (buf) < 0) | |
5188 | error ("Communication problem with target\n"); | |
5189 | ||
5190 | /* get/display the response */ | |
5191 | while (1) | |
5192 | { | |
5193 | /* XXX - see also tracepoint.c:remote_get_noisy_reply() */ | |
5194 | buf[0] = '\0'; | |
d01949b6 | 5195 | getpkt (buf, (rs->remote_packet_size), 0); |
96baa820 JM |
5196 | if (buf[0] == '\0') |
5197 | error ("Target does not support this command\n"); | |
5198 | if (buf[0] == 'O' && buf[1] != 'K') | |
5199 | { | |
5200 | remote_console_output (buf + 1); /* 'O' message from stub */ | |
5201 | continue; | |
5202 | } | |
5203 | if (strcmp (buf, "OK") == 0) | |
5204 | break; | |
7be570e7 JM |
5205 | if (strlen (buf) == 3 && buf[0] == 'E' |
5206 | && isdigit (buf[1]) && isdigit (buf[2])) | |
5207 | { | |
5208 | error ("Protocol error with Rcmd"); | |
5209 | } | |
96baa820 JM |
5210 | for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2) |
5211 | { | |
5212 | char c = (fromhex (p[0]) << 4) + fromhex (p[1]); | |
5213 | fputc_unfiltered (c, outbuf); | |
5214 | } | |
5215 | break; | |
5216 | } | |
5217 | } | |
5218 | ||
c906108c | 5219 | static void |
fba45db2 | 5220 | packet_command (char *args, int from_tty) |
c906108c | 5221 | { |
d01949b6 AC |
5222 | struct remote_state *rs = get_remote_state (); |
5223 | char *buf = alloca (rs->remote_packet_size); | |
c906108c | 5224 | |
c5aa993b | 5225 | if (!remote_desc) |
c906108c SS |
5226 | error ("command can only be used with remote target"); |
5227 | ||
c5aa993b | 5228 | if (!args) |
c906108c SS |
5229 | error ("remote-packet command requires packet text as argument"); |
5230 | ||
5231 | puts_filtered ("sending: "); | |
5232 | print_packet (args); | |
5233 | puts_filtered ("\n"); | |
5234 | putpkt (args); | |
5235 | ||
d01949b6 | 5236 | getpkt (buf, (rs->remote_packet_size), 0); |
c906108c SS |
5237 | puts_filtered ("received: "); |
5238 | print_packet (buf); | |
5239 | puts_filtered ("\n"); | |
5240 | } | |
5241 | ||
5242 | #if 0 | |
5243 | /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------------- */ | |
5244 | ||
a14ed312 | 5245 | static void display_thread_info (struct gdb_ext_thread_info *info); |
c906108c | 5246 | |
a14ed312 | 5247 | static void threadset_test_cmd (char *cmd, int tty); |
c906108c | 5248 | |
a14ed312 | 5249 | static void threadalive_test (char *cmd, int tty); |
c906108c | 5250 | |
a14ed312 | 5251 | static void threadlist_test_cmd (char *cmd, int tty); |
c906108c | 5252 | |
a14ed312 | 5253 | int get_and_display_threadinfo (threadref * ref); |
c906108c | 5254 | |
a14ed312 | 5255 | static void threadinfo_test_cmd (char *cmd, int tty); |
c906108c | 5256 | |
a14ed312 | 5257 | static int thread_display_step (threadref * ref, void *context); |
c906108c | 5258 | |
a14ed312 | 5259 | static void threadlist_update_test_cmd (char *cmd, int tty); |
c906108c | 5260 | |
a14ed312 | 5261 | static void init_remote_threadtests (void); |
c906108c | 5262 | |
c5aa993b | 5263 | #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid */ |
c906108c SS |
5264 | |
5265 | static void | |
fba45db2 | 5266 | threadset_test_cmd (char *cmd, int tty) |
c906108c SS |
5267 | { |
5268 | int sample_thread = SAMPLE_THREAD; | |
5269 | ||
5270 | printf_filtered ("Remote threadset test\n"); | |
5271 | set_thread (sample_thread, 1); | |
5272 | } | |
5273 | ||
5274 | ||
5275 | static void | |
fba45db2 | 5276 | threadalive_test (char *cmd, int tty) |
c906108c SS |
5277 | { |
5278 | int sample_thread = SAMPLE_THREAD; | |
5279 | ||
39f77062 | 5280 | if (remote_thread_alive (pid_to_ptid (sample_thread))) |
c906108c SS |
5281 | printf_filtered ("PASS: Thread alive test\n"); |
5282 | else | |
5283 | printf_filtered ("FAIL: Thread alive test\n"); | |
5284 | } | |
5285 | ||
a14ed312 | 5286 | void output_threadid (char *title, threadref * ref); |
c906108c SS |
5287 | |
5288 | void | |
fba45db2 | 5289 | output_threadid (char *title, threadref *ref) |
c906108c SS |
5290 | { |
5291 | char hexid[20]; | |
5292 | ||
5293 | pack_threadid (&hexid[0], ref); /* Convert threead id into hex */ | |
5294 | hexid[16] = 0; | |
5295 | printf_filtered ("%s %s\n", title, (&hexid[0])); | |
5296 | } | |
5297 | ||
5298 | static void | |
fba45db2 | 5299 | threadlist_test_cmd (char *cmd, int tty) |
c906108c SS |
5300 | { |
5301 | int startflag = 1; | |
5302 | threadref nextthread; | |
5303 | int done, result_count; | |
5304 | threadref threadlist[3]; | |
5305 | ||
5306 | printf_filtered ("Remote Threadlist test\n"); | |
5307 | if (!remote_get_threadlist (startflag, &nextthread, 3, &done, | |
5308 | &result_count, &threadlist[0])) | |
5309 | printf_filtered ("FAIL: threadlist test\n"); | |
5310 | else | |
5311 | { | |
5312 | threadref *scan = threadlist; | |
5313 | threadref *limit = scan + result_count; | |
5314 | ||
5315 | while (scan < limit) | |
5316 | output_threadid (" thread ", scan++); | |
5317 | } | |
5318 | } | |
5319 | ||
5320 | void | |
fba45db2 | 5321 | display_thread_info (struct gdb_ext_thread_info *info) |
c906108c SS |
5322 | { |
5323 | output_threadid ("Threadid: ", &info->threadid); | |
5324 | printf_filtered ("Name: %s\n ", info->shortname); | |
5325 | printf_filtered ("State: %s\n", info->display); | |
5326 | printf_filtered ("other: %s\n\n", info->more_display); | |
5327 | } | |
5328 | ||
5329 | int | |
fba45db2 | 5330 | get_and_display_threadinfo (threadref *ref) |
c906108c SS |
5331 | { |
5332 | int result; | |
5333 | int set; | |
5334 | struct gdb_ext_thread_info threadinfo; | |
5335 | ||
5336 | set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME | |
5337 | | TAG_MOREDISPLAY | TAG_DISPLAY; | |
5338 | if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo))) | |
5339 | display_thread_info (&threadinfo); | |
5340 | return result; | |
5341 | } | |
5342 | ||
5343 | static void | |
fba45db2 | 5344 | threadinfo_test_cmd (char *cmd, int tty) |
c906108c SS |
5345 | { |
5346 | int athread = SAMPLE_THREAD; | |
5347 | threadref thread; | |
5348 | int set; | |
5349 | ||
5350 | int_to_threadref (&thread, athread); | |
5351 | printf_filtered ("Remote Threadinfo test\n"); | |
5352 | if (!get_and_display_threadinfo (&thread)) | |
5353 | printf_filtered ("FAIL cannot get thread info\n"); | |
5354 | } | |
5355 | ||
5356 | static int | |
fba45db2 | 5357 | thread_display_step (threadref *ref, void *context) |
c906108c SS |
5358 | { |
5359 | /* output_threadid(" threadstep ",ref); *//* simple test */ | |
5360 | return get_and_display_threadinfo (ref); | |
5361 | } | |
5362 | ||
5363 | static void | |
fba45db2 | 5364 | threadlist_update_test_cmd (char *cmd, int tty) |
c906108c SS |
5365 | { |
5366 | printf_filtered ("Remote Threadlist update test\n"); | |
5367 | remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS); | |
5368 | } | |
5369 | ||
5370 | static void | |
5371 | init_remote_threadtests (void) | |
5372 | { | |
5373 | add_com ("tlist", class_obscure, threadlist_test_cmd, | |
5374 | "Fetch and print the remote list of thread identifiers, one pkt only"); | |
5375 | add_com ("tinfo", class_obscure, threadinfo_test_cmd, | |
5376 | "Fetch and display info about one thread"); | |
5377 | add_com ("tset", class_obscure, threadset_test_cmd, | |
5378 | "Test setting to a different thread"); | |
5379 | add_com ("tupd", class_obscure, threadlist_update_test_cmd, | |
5380 | "Iterate through updating all remote thread info"); | |
5381 | add_com ("talive", class_obscure, threadalive_test, | |
5382 | " Remote thread alive test "); | |
5383 | } | |
5384 | ||
5385 | #endif /* 0 */ | |
5386 | ||
f3fb8c85 MS |
5387 | /* Convert a thread ID to a string. Returns the string in a static |
5388 | buffer. */ | |
5389 | ||
5390 | static char * | |
39f77062 | 5391 | remote_pid_to_str (ptid_t ptid) |
f3fb8c85 MS |
5392 | { |
5393 | static char buf[30]; | |
5394 | ||
39f77062 | 5395 | sprintf (buf, "Thread %d", PIDGET (ptid)); |
f3fb8c85 MS |
5396 | return buf; |
5397 | } | |
5398 | ||
c906108c | 5399 | static void |
fba45db2 | 5400 | init_remote_ops (void) |
c906108c | 5401 | { |
c5aa993b | 5402 | remote_ops.to_shortname = "remote"; |
c906108c | 5403 | remote_ops.to_longname = "Remote serial target in gdb-specific protocol"; |
c5aa993b | 5404 | remote_ops.to_doc = |
c906108c | 5405 | "Use a remote computer via a serial line, using a gdb-specific protocol.\n\ |
0d06e24b JM |
5406 | Specify the serial device it is connected to\n\ |
5407 | (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."; | |
c5aa993b JM |
5408 | remote_ops.to_open = remote_open; |
5409 | remote_ops.to_close = remote_close; | |
c906108c | 5410 | remote_ops.to_detach = remote_detach; |
c5aa993b | 5411 | remote_ops.to_resume = remote_resume; |
c906108c SS |
5412 | remote_ops.to_wait = remote_wait; |
5413 | remote_ops.to_fetch_registers = remote_fetch_registers; | |
5414 | remote_ops.to_store_registers = remote_store_registers; | |
5415 | remote_ops.to_prepare_to_store = remote_prepare_to_store; | |
c5aa993b JM |
5416 | remote_ops.to_xfer_memory = remote_xfer_memory; |
5417 | remote_ops.to_files_info = remote_files_info; | |
c906108c SS |
5418 | remote_ops.to_insert_breakpoint = remote_insert_breakpoint; |
5419 | remote_ops.to_remove_breakpoint = remote_remove_breakpoint; | |
c5aa993b JM |
5420 | remote_ops.to_kill = remote_kill; |
5421 | remote_ops.to_load = generic_load; | |
c906108c SS |
5422 | remote_ops.to_mourn_inferior = remote_mourn; |
5423 | remote_ops.to_thread_alive = remote_thread_alive; | |
0f71a2f6 | 5424 | remote_ops.to_find_new_threads = remote_threads_info; |
0caabb7e | 5425 | remote_ops.to_pid_to_str = remote_pid_to_str; |
cf759d3b | 5426 | remote_ops.to_extra_thread_info = remote_threads_extra_info; |
c906108c SS |
5427 | remote_ops.to_stop = remote_stop; |
5428 | remote_ops.to_query = remote_query; | |
96baa820 | 5429 | remote_ops.to_rcmd = remote_rcmd; |
c906108c | 5430 | remote_ops.to_stratum = process_stratum; |
c5aa993b JM |
5431 | remote_ops.to_has_all_memory = 1; |
5432 | remote_ops.to_has_memory = 1; | |
5433 | remote_ops.to_has_stack = 1; | |
5434 | remote_ops.to_has_registers = 1; | |
5435 | remote_ops.to_has_execution = 1; | |
5436 | remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */ | |
5437 | remote_ops.to_magic = OPS_MAGIC; | |
c906108c SS |
5438 | } |
5439 | ||
5440 | /* Set up the extended remote vector by making a copy of the standard | |
5441 | remote vector and adding to it. */ | |
5442 | ||
5443 | static void | |
fba45db2 | 5444 | init_extended_remote_ops (void) |
c906108c SS |
5445 | { |
5446 | extended_remote_ops = remote_ops; | |
5447 | ||
0f71a2f6 | 5448 | extended_remote_ops.to_shortname = "extended-remote"; |
c5aa993b | 5449 | extended_remote_ops.to_longname = |
c906108c | 5450 | "Extended remote serial target in gdb-specific protocol"; |
c5aa993b | 5451 | extended_remote_ops.to_doc = |
c906108c SS |
5452 | "Use a remote computer via a serial line, using a gdb-specific protocol.\n\ |
5453 | Specify the serial device it is connected to (e.g. /dev/ttya).", | |
c5aa993b | 5454 | extended_remote_ops.to_open = extended_remote_open; |
c906108c SS |
5455 | extended_remote_ops.to_create_inferior = extended_remote_create_inferior; |
5456 | extended_remote_ops.to_mourn_inferior = extended_remote_mourn; | |
0f71a2f6 JM |
5457 | } |
5458 | ||
5459 | /* | |
5460 | * Command: info remote-process | |
5461 | * | |
5462 | * This implements Cisco's version of the "info proc" command. | |
5463 | * | |
5464 | * This query allows the target stub to return an arbitrary string | |
5465 | * (or strings) giving arbitrary information about the target process. | |
5466 | * This is optional; the target stub isn't required to implement it. | |
5467 | * | |
5468 | * Syntax: qfProcessInfo request first string | |
5469 | * qsProcessInfo request subsequent string | |
5470 | * reply: 'O'<hex-encoded-string> | |
5471 | * 'l' last reply (empty) | |
5472 | */ | |
5473 | ||
5474 | static void | |
c2d11a7d | 5475 | remote_info_process (char *args, int from_tty) |
0f71a2f6 | 5476 | { |
d01949b6 AC |
5477 | struct remote_state *rs = get_remote_state (); |
5478 | char *buf = alloca (rs->remote_packet_size); | |
0f71a2f6 JM |
5479 | |
5480 | if (remote_desc == 0) | |
5481 | error ("Command can only be used when connected to the remote target."); | |
5482 | ||
5483 | putpkt ("qfProcessInfo"); | |
d01949b6 | 5484 | getpkt (buf, (rs->remote_packet_size), 0); |
0f71a2f6 | 5485 | if (buf[0] == 0) |
c5aa993b | 5486 | return; /* Silently: target does not support this feature. */ |
0f71a2f6 JM |
5487 | |
5488 | if (buf[0] == 'E') | |
5489 | error ("info proc: target error."); | |
5490 | ||
c5aa993b | 5491 | while (buf[0] == 'O') /* Capitol-O packet */ |
0f71a2f6 JM |
5492 | { |
5493 | remote_console_output (&buf[1]); | |
5494 | putpkt ("qsProcessInfo"); | |
d01949b6 | 5495 | getpkt (buf, (rs->remote_packet_size), 0); |
0f71a2f6 JM |
5496 | } |
5497 | } | |
5498 | ||
5499 | /* | |
5500 | * Target Cisco | |
5501 | */ | |
5502 | ||
5503 | static void | |
c2d11a7d | 5504 | remote_cisco_open (char *name, int from_tty) |
0f71a2f6 | 5505 | { |
36918e70 | 5506 | int ex; |
0f71a2f6 | 5507 | if (name == 0) |
22e04375 AC |
5508 | error ("To open a remote debug connection, you need to specify what \n" |
5509 | "device is attached to the remote system (e.g. host:port)."); | |
0f71a2f6 | 5510 | |
6426a772 JM |
5511 | /* See FIXME above */ |
5512 | wait_forever_enabled_p = 1; | |
5513 | ||
0f71a2f6 JM |
5514 | target_preopen (from_tty); |
5515 | ||
5516 | unpush_target (&remote_cisco_ops); | |
5517 | ||
9db8d71f | 5518 | remote_desc = remote_serial_open (name); |
0f71a2f6 JM |
5519 | if (!remote_desc) |
5520 | perror_with_name (name); | |
5521 | ||
5522 | /* | |
5523 | * If a baud rate was specified on the gdb command line it will | |
5524 | * be greater than the initial value of -1. If it is, use it otherwise | |
5525 | * default to 9600 | |
5526 | */ | |
5527 | ||
5528 | baud_rate = (baud_rate > 0) ? baud_rate : 9600; | |
2cd58942 | 5529 | if (serial_setbaudrate (remote_desc, baud_rate)) |
0f71a2f6 | 5530 | { |
2cd58942 | 5531 | serial_close (remote_desc); |
0f71a2f6 JM |
5532 | perror_with_name (name); |
5533 | } | |
5534 | ||
2cd58942 | 5535 | serial_raw (remote_desc); |
0f71a2f6 JM |
5536 | |
5537 | /* If there is something sitting in the buffer we might take it as a | |
5538 | response to a command, which would be bad. */ | |
2cd58942 | 5539 | serial_flush_input (remote_desc); |
0f71a2f6 JM |
5540 | |
5541 | if (from_tty) | |
5542 | { | |
5543 | puts_filtered ("Remote debugging using "); | |
5544 | puts_filtered (name); | |
5545 | puts_filtered ("\n"); | |
5546 | } | |
5547 | ||
5548 | remote_cisco_mode = 1; | |
5549 | ||
5550 | push_target (&remote_cisco_ops); /* Switch to using cisco target now */ | |
5551 | ||
d471ea57 | 5552 | init_all_packet_configs (); |
0f71a2f6 | 5553 | |
c5aa993b | 5554 | general_thread = -2; |
0f71a2f6 JM |
5555 | continue_thread = -2; |
5556 | ||
9d1f7ab2 MS |
5557 | /* Probe for ability to use "ThreadInfo" query, as required. */ |
5558 | use_threadinfo_query = 1; | |
5559 | use_threadextra_query = 1; | |
5560 | ||
0f71a2f6 JM |
5561 | /* Without this, some commands which require an active target (such |
5562 | as kill) won't work. This variable serves (at least) double duty | |
5563 | as both the pid of the target process (if it has such), and as a | |
5564 | flag indicating that a target is active. These functions should | |
5565 | be split out into seperate variables, especially since GDB will | |
5566 | someday have a notion of debugging several processes. */ | |
39f77062 | 5567 | inferior_ptid = pid_to_ptid (MAGIC_NULL_PID); |
0f71a2f6 | 5568 | |
36918e70 | 5569 | /* Start the remote connection; if error, discard this target. See |
165b8e33 AC |
5570 | the comments in remote_open_1() for further details such as the |
5571 | need to re-throw the exception. */ | |
36918e70 AC |
5572 | ex = catch_exceptions (uiout, |
5573 | remote_start_remote_dummy, NULL, | |
5574 | "Couldn't establish connection to remote" | |
5575 | " target\n", | |
5576 | RETURN_MASK_ALL); | |
5577 | if (ex < 0) | |
0f71a2f6 JM |
5578 | { |
5579 | pop_target (); | |
165b8e33 | 5580 | throw_exception (ex); |
0f71a2f6 JM |
5581 | } |
5582 | } | |
5583 | ||
5584 | static void | |
c2d11a7d | 5585 | remote_cisco_close (int quitting) |
0f71a2f6 JM |
5586 | { |
5587 | remote_cisco_mode = 0; | |
5588 | remote_close (quitting); | |
5589 | } | |
5590 | ||
c5aa993b | 5591 | static void |
8ab86381 | 5592 | remote_cisco_mourn (void) |
0f71a2f6 JM |
5593 | { |
5594 | remote_mourn_1 (&remote_cisco_ops); | |
5595 | } | |
5596 | ||
c5aa993b JM |
5597 | enum |
5598 | { | |
5599 | READ_MORE, | |
5600 | FATAL_ERROR, | |
5601 | ENTER_DEBUG, | |
0f71a2f6 | 5602 | DISCONNECT_TELNET |
c5aa993b JM |
5603 | } |
5604 | minitelnet_return; | |
0f71a2f6 | 5605 | |
1ff9c3d6 AC |
5606 | /* Shared between readsocket() and readtty(). The size is arbitrary, |
5607 | however all targets are known to support a 400 character packet. */ | |
5608 | static char tty_input[400]; | |
0f71a2f6 JM |
5609 | |
5610 | static int escape_count; | |
5611 | static int echo_check; | |
5612 | extern int quit_flag; | |
5613 | ||
5614 | static int | |
c2d11a7d | 5615 | readsocket (void) |
0f71a2f6 JM |
5616 | { |
5617 | int data; | |
5618 | ||
5619 | /* Loop until the socket doesn't have any more data */ | |
5620 | ||
c5aa993b | 5621 | while ((data = readchar (0)) >= 0) |
0f71a2f6 JM |
5622 | { |
5623 | /* Check for the escape sequence */ | |
c5aa993b | 5624 | if (data == '|') |
0f71a2f6 JM |
5625 | { |
5626 | /* If this is the fourth escape, get out */ | |
c5aa993b | 5627 | if (++escape_count == 4) |
0f71a2f6 JM |
5628 | { |
5629 | return ENTER_DEBUG; | |
5630 | } | |
c5aa993b JM |
5631 | else |
5632 | { /* This is a '|', but not the fourth in a row. | |
5633 | Continue without echoing it. If it isn't actually | |
5634 | one of four in a row, it'll be echoed later. */ | |
0f71a2f6 JM |
5635 | continue; |
5636 | } | |
5637 | } | |
c5aa993b JM |
5638 | else |
5639 | /* Not a '|' */ | |
5640 | { | |
0f71a2f6 JM |
5641 | /* Ensure any pending '|'s are flushed. */ |
5642 | ||
c5aa993b JM |
5643 | for (; escape_count > 0; escape_count--) |
5644 | putchar ('|'); | |
0f71a2f6 | 5645 | } |
0f71a2f6 | 5646 | |
c5aa993b JM |
5647 | if (data == '\r') /* If this is a return character, */ |
5648 | continue; /* - just supress it. */ | |
5649 | ||
5650 | if (echo_check != -1) /* Check for echo of user input. */ | |
0f71a2f6 JM |
5651 | { |
5652 | if (tty_input[echo_check] == data) | |
5653 | { | |
1ff9c3d6 | 5654 | gdb_assert (echo_check <= sizeof (tty_input)); |
c5aa993b JM |
5655 | echo_check++; /* Character matched user input: */ |
5656 | continue; /* Continue without echoing it. */ | |
0f71a2f6 | 5657 | } |
c5aa993b JM |
5658 | else if ((data == '\n') && (tty_input[echo_check] == '\r')) |
5659 | { /* End of the line (and of echo checking). */ | |
5660 | echo_check = -1; /* No more echo supression */ | |
5661 | continue; /* Continue without echoing. */ | |
0f71a2f6 JM |
5662 | } |
5663 | else | |
c5aa993b JM |
5664 | { /* Failed check for echo of user input. |
5665 | We now have some suppressed output to flush! */ | |
0f71a2f6 JM |
5666 | int j; |
5667 | ||
c5aa993b | 5668 | for (j = 0; j < echo_check; j++) |
0f71a2f6 JM |
5669 | putchar (tty_input[j]); |
5670 | echo_check = -1; | |
5671 | } | |
5672 | } | |
c5aa993b | 5673 | putchar (data); /* Default case: output the char. */ |
0f71a2f6 JM |
5674 | } |
5675 | ||
c5aa993b JM |
5676 | if (data == SERIAL_TIMEOUT) /* Timeout returned from readchar. */ |
5677 | return READ_MORE; /* Try to read some more */ | |
5678 | else | |
5679 | return FATAL_ERROR; /* Trouble, bail out */ | |
0f71a2f6 JM |
5680 | } |
5681 | ||
5682 | static int | |
c2d11a7d | 5683 | readtty (void) |
0f71a2f6 | 5684 | { |
0f71a2f6 JM |
5685 | int tty_bytecount; |
5686 | ||
5687 | /* First, read a buffer full from the terminal */ | |
5688 | tty_bytecount = read (fileno (stdin), tty_input, sizeof (tty_input) - 1); | |
c5aa993b | 5689 | if (tty_bytecount == -1) |
0f71a2f6 JM |
5690 | { |
5691 | perror ("readtty: read failed"); | |
5692 | return FATAL_ERROR; | |
5693 | } | |
5694 | ||
5695 | /* Remove a quoted newline. */ | |
5696 | if (tty_input[tty_bytecount - 1] == '\n' && | |
5697 | tty_input[tty_bytecount - 2] == '\\') /* line ending in backslash */ | |
5698 | { | |
c5aa993b JM |
5699 | tty_input[--tty_bytecount] = 0; /* remove newline */ |
5700 | tty_input[--tty_bytecount] = 0; /* remove backslash */ | |
0f71a2f6 JM |
5701 | } |
5702 | ||
5703 | /* Turn trailing newlines into returns */ | |
5704 | if (tty_input[tty_bytecount - 1] == '\n') | |
c5aa993b | 5705 | tty_input[tty_bytecount - 1] = '\r'; |
0f71a2f6 JM |
5706 | |
5707 | /* If the line consists of a ~, enter debugging mode. */ | |
5708 | if ((tty_input[0] == '~') && (tty_bytecount == 2)) | |
5709 | return ENTER_DEBUG; | |
5710 | ||
5711 | /* Make this a zero terminated string and write it out */ | |
5712 | tty_input[tty_bytecount] = 0; | |
2cd58942 | 5713 | if (serial_write (remote_desc, tty_input, tty_bytecount)) |
0f71a2f6 JM |
5714 | { |
5715 | perror_with_name ("readtty: write failed"); | |
5716 | return FATAL_ERROR; | |
5717 | } | |
5718 | ||
5719 | return READ_MORE; | |
5720 | } | |
5721 | ||
5722 | static int | |
c2d11a7d | 5723 | minitelnet (void) |
0f71a2f6 JM |
5724 | { |
5725 | fd_set input; /* file descriptors for select */ | |
c5aa993b JM |
5726 | int tablesize; /* max number of FDs for select */ |
5727 | int status; | |
5728 | int quit_count = 0; | |
0f71a2f6 JM |
5729 | |
5730 | extern int escape_count; /* global shared by readsocket */ | |
5731 | extern int echo_check; /* ditto */ | |
5732 | ||
5733 | escape_count = 0; | |
c5aa993b | 5734 | echo_check = -1; |
0f71a2f6 JM |
5735 | |
5736 | tablesize = 8 * sizeof (input); | |
5737 | ||
c5aa993b | 5738 | for (;;) |
0f71a2f6 JM |
5739 | { |
5740 | /* Check for anything from our socket - doesn't block. Note that | |
c5aa993b JM |
5741 | this must be done *before* the select as there may be |
5742 | buffered I/O waiting to be processed. */ | |
0f71a2f6 | 5743 | |
c5aa993b | 5744 | if ((status = readsocket ()) == FATAL_ERROR) |
0f71a2f6 JM |
5745 | { |
5746 | error ("Debugging terminated by communications error"); | |
5747 | } | |
c5aa993b | 5748 | else if (status != READ_MORE) |
0f71a2f6 JM |
5749 | { |
5750 | return (status); | |
5751 | } | |
5752 | ||
c5aa993b | 5753 | fflush (stdout); /* Flush output before blocking */ |
0f71a2f6 JM |
5754 | |
5755 | /* Now block on more socket input or TTY input */ | |
c5aa993b | 5756 | |
0f71a2f6 | 5757 | FD_ZERO (&input); |
c5aa993b | 5758 | FD_SET (fileno (stdin), &input); |
2cd58942 | 5759 | FD_SET (deprecated_serial_fd (remote_desc), &input); |
0f71a2f6 JM |
5760 | |
5761 | status = select (tablesize, &input, 0, 0, 0); | |
c5aa993b | 5762 | if ((status == -1) && (errno != EINTR)) |
0f71a2f6 JM |
5763 | { |
5764 | error ("Communications error on select %d", errno); | |
5765 | } | |
5766 | ||
5767 | /* Handle Control-C typed */ | |
5768 | ||
c5aa993b | 5769 | if (quit_flag) |
0f71a2f6 JM |
5770 | { |
5771 | if ((++quit_count) == 2) | |
5772 | { | |
5773 | if (query ("Interrupt GDB? ")) | |
5774 | { | |
5775 | printf_filtered ("Interrupted by user.\n"); | |
b5a2688f | 5776 | throw_exception (RETURN_QUIT); |
0f71a2f6 JM |
5777 | } |
5778 | quit_count = 0; | |
5779 | } | |
5780 | quit_flag = 0; | |
5781 | ||
5782 | if (remote_break) | |
2cd58942 | 5783 | serial_send_break (remote_desc); |
0f71a2f6 | 5784 | else |
2cd58942 | 5785 | serial_write (remote_desc, "\003", 1); |
0f71a2f6 JM |
5786 | |
5787 | continue; | |
5788 | } | |
5789 | ||
5790 | /* Handle console input */ | |
5791 | ||
c5aa993b | 5792 | if (FD_ISSET (fileno (stdin), &input)) |
0f71a2f6 JM |
5793 | { |
5794 | quit_count = 0; | |
5795 | echo_check = 0; | |
5796 | status = readtty (); | |
5797 | if (status == READ_MORE) | |
5798 | continue; | |
5799 | ||
5800 | return status; /* telnet session ended */ | |
5801 | } | |
5802 | } | |
5803 | } | |
5804 | ||
39f77062 KB |
5805 | static ptid_t |
5806 | remote_cisco_wait (ptid_t ptid, struct target_waitstatus *status) | |
0f71a2f6 | 5807 | { |
c5aa993b | 5808 | if (minitelnet () != ENTER_DEBUG) |
0f71a2f6 JM |
5809 | { |
5810 | error ("Debugging session terminated by protocol error"); | |
5811 | } | |
5812 | putpkt ("?"); | |
39f77062 | 5813 | return remote_wait (ptid, status); |
0f71a2f6 JM |
5814 | } |
5815 | ||
5816 | static void | |
fba45db2 | 5817 | init_remote_cisco_ops (void) |
0f71a2f6 JM |
5818 | { |
5819 | remote_cisco_ops.to_shortname = "cisco"; | |
c5aa993b JM |
5820 | remote_cisco_ops.to_longname = "Remote serial target in cisco-specific protocol"; |
5821 | remote_cisco_ops.to_doc = | |
0f71a2f6 JM |
5822 | "Use a remote machine via TCP, using a cisco-specific protocol.\n\ |
5823 | Specify the serial device it is connected to (e.g. host:2020)."; | |
c5aa993b JM |
5824 | remote_cisco_ops.to_open = remote_cisco_open; |
5825 | remote_cisco_ops.to_close = remote_cisco_close; | |
5826 | remote_cisco_ops.to_detach = remote_detach; | |
5827 | remote_cisco_ops.to_resume = remote_resume; | |
5828 | remote_cisco_ops.to_wait = remote_cisco_wait; | |
5829 | remote_cisco_ops.to_fetch_registers = remote_fetch_registers; | |
5830 | remote_cisco_ops.to_store_registers = remote_store_registers; | |
5831 | remote_cisco_ops.to_prepare_to_store = remote_prepare_to_store; | |
5832 | remote_cisco_ops.to_xfer_memory = remote_xfer_memory; | |
5833 | remote_cisco_ops.to_files_info = remote_files_info; | |
0f71a2f6 JM |
5834 | remote_cisco_ops.to_insert_breakpoint = remote_insert_breakpoint; |
5835 | remote_cisco_ops.to_remove_breakpoint = remote_remove_breakpoint; | |
c5aa993b JM |
5836 | remote_cisco_ops.to_kill = remote_kill; |
5837 | remote_cisco_ops.to_load = generic_load; | |
5838 | remote_cisco_ops.to_mourn_inferior = remote_cisco_mourn; | |
5839 | remote_cisco_ops.to_thread_alive = remote_thread_alive; | |
5840 | remote_cisco_ops.to_find_new_threads = remote_threads_info; | |
cf759d3b ND |
5841 | remote_cisco_ops.to_pid_to_str = remote_pid_to_str; |
5842 | remote_cisco_ops.to_extra_thread_info = remote_threads_extra_info; | |
c5aa993b JM |
5843 | remote_cisco_ops.to_stratum = process_stratum; |
5844 | remote_cisco_ops.to_has_all_memory = 1; | |
5845 | remote_cisco_ops.to_has_memory = 1; | |
5846 | remote_cisco_ops.to_has_stack = 1; | |
5847 | remote_cisco_ops.to_has_registers = 1; | |
5848 | remote_cisco_ops.to_has_execution = 1; | |
5849 | remote_cisco_ops.to_magic = OPS_MAGIC; | |
0f71a2f6 JM |
5850 | } |
5851 | ||
6426a772 JM |
5852 | static int |
5853 | remote_can_async_p (void) | |
5854 | { | |
5855 | /* We're async whenever the serial device is. */ | |
2cd58942 | 5856 | return (current_target.to_async_mask_value) && serial_can_async_p (remote_desc); |
6426a772 JM |
5857 | } |
5858 | ||
5859 | static int | |
5860 | remote_is_async_p (void) | |
5861 | { | |
5862 | /* We're async whenever the serial device is. */ | |
2cd58942 | 5863 | return (current_target.to_async_mask_value) && serial_is_async_p (remote_desc); |
6426a772 JM |
5864 | } |
5865 | ||
2acceee2 JM |
5866 | /* Pass the SERIAL event on and up to the client. One day this code |
5867 | will be able to delay notifying the client of an event until the | |
5868 | point where an entire packet has been received. */ | |
5869 | ||
5870 | static void (*async_client_callback) (enum inferior_event_type event_type, void *context); | |
5871 | static void *async_client_context; | |
5872 | static serial_event_ftype remote_async_serial_handler; | |
5873 | ||
6426a772 | 5874 | static void |
819cc324 | 5875 | remote_async_serial_handler (struct serial *scb, void *context) |
6426a772 | 5876 | { |
2acceee2 JM |
5877 | /* Don't propogate error information up to the client. Instead let |
5878 | the client find out about the error by querying the target. */ | |
5879 | async_client_callback (INF_REG_EVENT, async_client_context); | |
5880 | } | |
5881 | ||
5882 | static void | |
5883 | remote_async (void (*callback) (enum inferior_event_type event_type, void *context), void *context) | |
5884 | { | |
ed9a39eb | 5885 | if (current_target.to_async_mask_value == 0) |
8e65ff28 AC |
5886 | internal_error (__FILE__, __LINE__, |
5887 | "Calling remote_async when async is masked"); | |
ed9a39eb | 5888 | |
2acceee2 JM |
5889 | if (callback != NULL) |
5890 | { | |
2cd58942 | 5891 | serial_async (remote_desc, remote_async_serial_handler, NULL); |
2acceee2 JM |
5892 | async_client_callback = callback; |
5893 | async_client_context = context; | |
5894 | } | |
5895 | else | |
2cd58942 | 5896 | serial_async (remote_desc, NULL, NULL); |
6426a772 JM |
5897 | } |
5898 | ||
43ff13b4 JM |
5899 | /* Target async and target extended-async. |
5900 | ||
5901 | This are temporary targets, until it is all tested. Eventually | |
5902 | async support will be incorporated int the usual 'remote' | |
5903 | target. */ | |
5904 | ||
5905 | static void | |
c2d11a7d | 5906 | init_remote_async_ops (void) |
43ff13b4 JM |
5907 | { |
5908 | remote_async_ops.to_shortname = "async"; | |
c5aa993b JM |
5909 | remote_async_ops.to_longname = "Remote serial target in async version of the gdb-specific protocol"; |
5910 | remote_async_ops.to_doc = | |
43ff13b4 JM |
5911 | "Use a remote computer via a serial line, using a gdb-specific protocol.\n\ |
5912 | Specify the serial device it is connected to (e.g. /dev/ttya)."; | |
c5aa993b JM |
5913 | remote_async_ops.to_open = remote_async_open; |
5914 | remote_async_ops.to_close = remote_close; | |
5915 | remote_async_ops.to_detach = remote_async_detach; | |
5916 | remote_async_ops.to_resume = remote_async_resume; | |
5917 | remote_async_ops.to_wait = remote_async_wait; | |
5918 | remote_async_ops.to_fetch_registers = remote_fetch_registers; | |
5919 | remote_async_ops.to_store_registers = remote_store_registers; | |
5920 | remote_async_ops.to_prepare_to_store = remote_prepare_to_store; | |
5921 | remote_async_ops.to_xfer_memory = remote_xfer_memory; | |
5922 | remote_async_ops.to_files_info = remote_files_info; | |
43ff13b4 JM |
5923 | remote_async_ops.to_insert_breakpoint = remote_insert_breakpoint; |
5924 | remote_async_ops.to_remove_breakpoint = remote_remove_breakpoint; | |
6426a772 JM |
5925 | remote_async_ops.to_terminal_inferior = remote_async_terminal_inferior; |
5926 | remote_async_ops.to_terminal_ours = remote_async_terminal_ours; | |
c5aa993b JM |
5927 | remote_async_ops.to_kill = remote_async_kill; |
5928 | remote_async_ops.to_load = generic_load; | |
53a5351d | 5929 | remote_async_ops.to_mourn_inferior = remote_async_mourn; |
c5aa993b JM |
5930 | remote_async_ops.to_thread_alive = remote_thread_alive; |
5931 | remote_async_ops.to_find_new_threads = remote_threads_info; | |
cf759d3b ND |
5932 | remote_async_ops.to_pid_to_str = remote_pid_to_str; |
5933 | remote_async_ops.to_extra_thread_info = remote_threads_extra_info; | |
43ff13b4 JM |
5934 | remote_async_ops.to_stop = remote_stop; |
5935 | remote_async_ops.to_query = remote_query; | |
96baa820 | 5936 | remote_async_ops.to_rcmd = remote_rcmd; |
c5aa993b JM |
5937 | remote_async_ops.to_stratum = process_stratum; |
5938 | remote_async_ops.to_has_all_memory = 1; | |
5939 | remote_async_ops.to_has_memory = 1; | |
5940 | remote_async_ops.to_has_stack = 1; | |
5941 | remote_async_ops.to_has_registers = 1; | |
5942 | remote_async_ops.to_has_execution = 1; | |
5943 | remote_async_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */ | |
6426a772 JM |
5944 | remote_async_ops.to_can_async_p = remote_can_async_p; |
5945 | remote_async_ops.to_is_async_p = remote_is_async_p; | |
5946 | remote_async_ops.to_async = remote_async; | |
ed9a39eb | 5947 | remote_async_ops.to_async_mask_value = 1; |
c5aa993b | 5948 | remote_async_ops.to_magic = OPS_MAGIC; |
43ff13b4 JM |
5949 | } |
5950 | ||
5951 | /* Set up the async extended remote vector by making a copy of the standard | |
5952 | remote vector and adding to it. */ | |
5953 | ||
5954 | static void | |
c2d11a7d | 5955 | init_extended_async_remote_ops (void) |
43ff13b4 JM |
5956 | { |
5957 | extended_async_remote_ops = remote_async_ops; | |
5958 | ||
5959 | extended_async_remote_ops.to_shortname = "extended-async"; | |
c5aa993b | 5960 | extended_async_remote_ops.to_longname = |
43ff13b4 | 5961 | "Extended remote serial target in async gdb-specific protocol"; |
c5aa993b | 5962 | extended_async_remote_ops.to_doc = |
43ff13b4 JM |
5963 | "Use a remote computer via a serial line, using an async gdb-specific protocol.\n\ |
5964 | Specify the serial device it is connected to (e.g. /dev/ttya).", | |
c5aa993b | 5965 | extended_async_remote_ops.to_open = extended_remote_async_open; |
43ff13b4 JM |
5966 | extended_async_remote_ops.to_create_inferior = extended_remote_async_create_inferior; |
5967 | extended_async_remote_ops.to_mourn_inferior = extended_remote_mourn; | |
5968 | } | |
5969 | ||
5a2468f5 | 5970 | static void |
c2d11a7d | 5971 | set_remote_cmd (char *args, int from_tty) |
5a2468f5 | 5972 | { |
5a2468f5 JM |
5973 | } |
5974 | ||
d471ea57 AC |
5975 | static void |
5976 | show_remote_cmd (char *args, int from_tty) | |
5977 | { | |
e9e68a56 AC |
5978 | /* FIXME: cagney/2002-06-15: This function should iterate over |
5979 | remote_show_cmdlist for a list of sub commands to show. */ | |
5980 | show_remote_protocol_Z_packet_cmd (args, from_tty, NULL); | |
5981 | show_remote_protocol_e_packet_cmd (args, from_tty, NULL); | |
5982 | show_remote_protocol_E_packet_cmd (args, from_tty, NULL); | |
5983 | show_remote_protocol_P_packet_cmd (args, from_tty, NULL); | |
5984 | show_remote_protocol_qSymbol_packet_cmd (args, from_tty, NULL); | |
5985 | show_remote_protocol_binary_download_cmd (args, from_tty, NULL); | |
d471ea57 | 5986 | } |
5a2468f5 | 5987 | |
0f71a2f6 | 5988 | static void |
fba45db2 | 5989 | build_remote_gdbarch_data (void) |
0f71a2f6 | 5990 | { |
d696208f | 5991 | remote_address_size = TARGET_ADDR_BIT; |
0f71a2f6 JM |
5992 | } |
5993 | ||
dc8acb97 MS |
5994 | /* Saved pointer to previous owner of the new_objfile event. */ |
5995 | static void (*remote_new_objfile_chain) (struct objfile *); | |
5996 | ||
5997 | /* Function to be called whenever a new objfile (shlib) is detected. */ | |
5998 | static void | |
5999 | remote_new_objfile (struct objfile *objfile) | |
6000 | { | |
6001 | if (remote_desc != 0) /* Have a remote connection */ | |
6002 | { | |
6003 | remote_check_symbols (objfile); | |
6004 | } | |
6005 | /* Call predecessor on chain, if any. */ | |
6006 | if (remote_new_objfile_chain != 0 && | |
6007 | remote_desc == 0) | |
6008 | remote_new_objfile_chain (objfile); | |
6009 | } | |
6010 | ||
c906108c | 6011 | void |
fba45db2 | 6012 | _initialize_remote (void) |
c906108c | 6013 | { |
5a2468f5 JM |
6014 | static struct cmd_list_element *remote_set_cmdlist; |
6015 | static struct cmd_list_element *remote_show_cmdlist; | |
11cf8741 | 6016 | struct cmd_list_element *tmpcmd; |
5a2468f5 | 6017 | |
0f71a2f6 | 6018 | /* architecture specific data */ |
d01949b6 AC |
6019 | remote_gdbarch_data_handle = register_gdbarch_data (init_remote_state, |
6020 | free_remote_state); | |
6021 | ||
6022 | /* Old tacky stuff. NOTE: This comes after the remote protocol so | |
6023 | that the remote protocol has been initialized. */ | |
11cf8741 JM |
6024 | register_gdbarch_swap (&remote_address_size, |
6025 | sizeof (&remote_address_size), NULL); | |
0f71a2f6 JM |
6026 | register_gdbarch_swap (NULL, 0, build_remote_gdbarch_data); |
6027 | ||
c906108c SS |
6028 | init_remote_ops (); |
6029 | add_target (&remote_ops); | |
6030 | ||
6031 | init_extended_remote_ops (); | |
6032 | add_target (&extended_remote_ops); | |
cce74817 | 6033 | |
43ff13b4 JM |
6034 | init_remote_async_ops (); |
6035 | add_target (&remote_async_ops); | |
6036 | ||
6037 | init_extended_async_remote_ops (); | |
6038 | add_target (&extended_async_remote_ops); | |
6039 | ||
0f71a2f6 JM |
6040 | init_remote_cisco_ops (); |
6041 | add_target (&remote_cisco_ops); | |
6042 | ||
dc8acb97 MS |
6043 | /* Hook into new objfile notification. */ |
6044 | remote_new_objfile_chain = target_new_objfile_hook; | |
6045 | target_new_objfile_hook = remote_new_objfile; | |
6046 | ||
c906108c SS |
6047 | #if 0 |
6048 | init_remote_threadtests (); | |
6049 | #endif | |
6050 | ||
d471ea57 AC |
6051 | /* set/show remote ... */ |
6052 | ||
5a2468f5 JM |
6053 | add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, "\ |
6054 | Remote protocol specific variables\n\ | |
6055 | Configure various remote-protocol specific variables such as\n\ | |
6056 | the packets being used", | |
cff3e48b | 6057 | &remote_set_cmdlist, "set remote ", |
5a2468f5 | 6058 | 0/*allow-unknown*/, &setlist); |
d471ea57 | 6059 | add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, "\ |
5a2468f5 JM |
6060 | Remote protocol specific variables\n\ |
6061 | Configure various remote-protocol specific variables such as\n\ | |
6062 | the packets being used", | |
cff3e48b | 6063 | &remote_show_cmdlist, "show remote ", |
5a2468f5 JM |
6064 | 0/*allow-unknown*/, &showlist); |
6065 | ||
c5aa993b | 6066 | add_cmd ("compare-sections", class_obscure, compare_sections_command, |
c906108c | 6067 | "Compare section data on target to the exec file.\n\ |
c5aa993b | 6068 | Argument is a single section name (default: all loaded sections).", |
c906108c SS |
6069 | &cmdlist); |
6070 | ||
6071 | add_cmd ("packet", class_maintenance, packet_command, | |
6072 | "Send an arbitrary packet to a remote target.\n\ | |
6073 | maintenance packet TEXT\n\ | |
6074 | If GDB is talking to an inferior via the GDB serial protocol, then\n\ | |
6075 | this command sends the string TEXT to the inferior, and displays the\n\ | |
6076 | response packet. GDB supplies the initial `$' character, and the\n\ | |
6077 | terminating `#' character and checksum.", | |
6078 | &maintenancelist); | |
6079 | ||
e707bbc2 AC |
6080 | add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, |
6081 | "Set whether to send break if interrupted.\n", | |
6082 | "Show whether to send break if interrupted.\n", | |
6083 | NULL, NULL, | |
6084 | &setlist, &showlist); | |
c906108c | 6085 | |
11cf8741 JM |
6086 | /* Install commands for configuring memory read/write packets. */ |
6087 | ||
6088 | add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, | |
6089 | "Set the maximum number of bytes per memory write packet (deprecated).\n", | |
6090 | &setlist); | |
4ad5b0f7 | 6091 | add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, |
11cf8741 JM |
6092 | "Show the maximum number of bytes per memory write packet (deprecated).\n", |
6093 | &showlist); | |
6094 | add_cmd ("memory-write-packet-size", no_class, | |
6095 | set_memory_write_packet_size, | |
6096 | "Set the maximum number of bytes per memory-write packet.\n" | |
6097 | "Specify the number of bytes in a packet or 0 (zero) for the\n" | |
6098 | "default packet size. The actual limit is further reduced\n" | |
6099 | "dependent on the target. Specify ``fixed'' to disable the\n" | |
6100 | "further restriction and ``limit'' to enable that restriction\n", | |
6101 | &remote_set_cmdlist); | |
6102 | add_cmd ("memory-read-packet-size", no_class, | |
6103 | set_memory_read_packet_size, | |
6104 | "Set the maximum number of bytes per memory-read packet.\n" | |
6105 | "Specify the number of bytes in a packet or 0 (zero) for the\n" | |
6106 | "default packet size. The actual limit is further reduced\n" | |
6107 | "dependent on the target. Specify ``fixed'' to disable the\n" | |
6108 | "further restriction and ``limit'' to enable that restriction\n", | |
6109 | &remote_set_cmdlist); | |
6110 | add_cmd ("memory-write-packet-size", no_class, | |
6111 | show_memory_write_packet_size, | |
6112 | "Show the maximum number of bytes per memory-write packet.\n", | |
6113 | &remote_show_cmdlist); | |
6114 | add_cmd ("memory-read-packet-size", no_class, | |
6115 | show_memory_read_packet_size, | |
6116 | "Show the maximum number of bytes per memory-read packet.\n", | |
6117 | &remote_show_cmdlist); | |
c906108c | 6118 | |
c5aa993b | 6119 | add_show_from_set |
c906108c | 6120 | (add_set_cmd ("remoteaddresssize", class_obscure, |
c5aa993b | 6121 | var_integer, (char *) &remote_address_size, |
c906108c SS |
6122 | "Set the maximum size of the address (in bits) \ |
6123 | in a memory packet.\n", | |
6124 | &setlist), | |
c5aa993b | 6125 | &showlist); |
c906108c | 6126 | |
96baa820 JM |
6127 | add_packet_config_cmd (&remote_protocol_binary_download, |
6128 | "X", "binary-download", | |
6129 | set_remote_protocol_binary_download_cmd, | |
6130 | show_remote_protocol_binary_download_cmd, | |
d471ea57 AC |
6131 | &remote_set_cmdlist, &remote_show_cmdlist, |
6132 | 1); | |
96baa820 JM |
6133 | #if 0 |
6134 | /* XXXX - should ``set remotebinarydownload'' be retained for | |
6135 | compatibility. */ | |
c5aa993b | 6136 | add_show_from_set |
b83266a0 SS |
6137 | (add_set_cmd ("remotebinarydownload", no_class, |
6138 | var_boolean, (char *) &remote_binary_download, | |
6139 | "Set binary downloads.\n", &setlist), | |
6140 | &showlist); | |
96baa820 | 6141 | #endif |
0f71a2f6 JM |
6142 | |
6143 | add_info ("remote-process", remote_info_process, | |
6144 | "Query the remote system for process info."); | |
6145 | ||
dc8acb97 MS |
6146 | add_packet_config_cmd (&remote_protocol_qSymbol, |
6147 | "qSymbol", "symbol-lookup", | |
6148 | set_remote_protocol_qSymbol_packet_cmd, | |
6149 | show_remote_protocol_qSymbol_packet_cmd, | |
6150 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6151 | 0); | |
6152 | ||
44eaed12 C |
6153 | add_packet_config_cmd (&remote_protocol_e, |
6154 | "e", "step-over-range", | |
6155 | set_remote_protocol_e_packet_cmd, | |
6156 | show_remote_protocol_e_packet_cmd, | |
6157 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6158 | 0); | |
0f017ab9 AC |
6159 | /* Disable by default. The ``e'' packet has nasty interactions with |
6160 | the threading code - it relies on global state. */ | |
7f19b9a2 | 6161 | remote_protocol_e.detect = AUTO_BOOLEAN_FALSE; |
0f017ab9 | 6162 | update_packet_config (&remote_protocol_e); |
44eaed12 C |
6163 | |
6164 | add_packet_config_cmd (&remote_protocol_E, | |
6165 | "E", "step-over-range-w-signal", | |
6166 | set_remote_protocol_E_packet_cmd, | |
6167 | show_remote_protocol_E_packet_cmd, | |
6168 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6169 | 0); | |
0f017ab9 AC |
6170 | /* Disable by default. The ``e'' packet has nasty interactions with |
6171 | the threading code - it relies on global state. */ | |
7f19b9a2 | 6172 | remote_protocol_E.detect = AUTO_BOOLEAN_FALSE; |
0f017ab9 | 6173 | update_packet_config (&remote_protocol_E); |
44eaed12 | 6174 | |
d471ea57 AC |
6175 | add_packet_config_cmd (&remote_protocol_P, |
6176 | "P", "set-register", | |
5a2468f5 JM |
6177 | set_remote_protocol_P_packet_cmd, |
6178 | show_remote_protocol_P_packet_cmd, | |
d471ea57 AC |
6179 | &remote_set_cmdlist, &remote_show_cmdlist, |
6180 | 1); | |
6181 | ||
6182 | add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP], | |
6183 | "Z0", "software-breakpoint", | |
6184 | set_remote_protocol_Z_software_bp_packet_cmd, | |
6185 | show_remote_protocol_Z_software_bp_packet_cmd, | |
6186 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6187 | 0); | |
6188 | ||
6189 | add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP], | |
6190 | "Z1", "hardware-breakpoint", | |
6191 | set_remote_protocol_Z_hardware_bp_packet_cmd, | |
6192 | show_remote_protocol_Z_hardware_bp_packet_cmd, | |
6193 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6194 | 0); | |
6195 | ||
6196 | add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP], | |
6197 | "Z2", "write-watchpoint", | |
6198 | set_remote_protocol_Z_write_wp_packet_cmd, | |
6199 | show_remote_protocol_Z_write_wp_packet_cmd, | |
6200 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6201 | 0); | |
6202 | ||
6203 | add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP], | |
6204 | "Z3", "read-watchpoint", | |
6205 | set_remote_protocol_Z_read_wp_packet_cmd, | |
6206 | show_remote_protocol_Z_read_wp_packet_cmd, | |
6207 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6208 | 0); | |
6209 | ||
6210 | add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP], | |
6211 | "Z4", "access-watchpoint", | |
6212 | set_remote_protocol_Z_access_wp_packet_cmd, | |
6213 | show_remote_protocol_Z_access_wp_packet_cmd, | |
6214 | &remote_set_cmdlist, &remote_show_cmdlist, | |
6215 | 0); | |
6216 | ||
6217 | /* Keep the old ``set remote Z-packet ...'' working. */ | |
e9e68a56 AC |
6218 | add_setshow_auto_boolean_cmd ("Z-packet", class_obscure, |
6219 | &remote_Z_packet_detect, "\ | |
6220 | Set use of remote protocol `Z' packets", | |
6221 | "Show use of remote protocol `Z' packets ", | |
6222 | set_remote_protocol_Z_packet_cmd, | |
6223 | show_remote_protocol_Z_packet_cmd, | |
6224 | &remote_set_cmdlist, &remote_show_cmdlist); | |
c906108c | 6225 | } |