* breakpoint.c (insert_breakpoints, breakpoint_init_inferior)
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
6aba47ca 3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
0fb0cc75 4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
29182b13 5 Free Software Foundation, Inc.
c906108c 6
c5aa993b
JM
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 21
23860348 22/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 23
c906108c
SS
24#include "defs.h"
25#include "gdb_string.h"
26#include <ctype.h>
27#include <fcntl.h>
c906108c
SS
28#include "inferior.h"
29#include "bfd.h"
30#include "symfile.h"
60250e8b 31#include "exceptions.h"
c906108c 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"
6867ae3e 42#include "observer.h"
a77053c2 43#include "solib.h"
37a105a1
DJ
44#include "cli/cli-decode.h"
45#include "cli/cli-setshow.h"
424163ea 46#include "target-descriptions.h"
c906108c 47
7a292a7a 48#include <ctype.h>
9846de1b 49#include <sys/time.h>
c906108c 50
43ff13b4 51#include "event-loop.h"
c2c6d25f 52#include "event-top.h"
2acceee2 53#include "inf-loop.h"
43ff13b4 54
c906108c
SS
55#include <signal.h>
56#include "serial.h"
57
6240bebf
MS
58#include "gdbcore.h" /* for exec_bfd */
59
449092f6 60#include "remote-fileio.h"
a6b151f1 61#include "gdb/fileio.h"
3e88cf8d 62#include "gdb_stat.h"
449092f6 63
fd79ecee
DJ
64#include "memory-map.h"
65
6765f3e5
DJ
66/* The size to align memory write packets, when practical. The protocol
67 does not guarantee any alignment, and gdb will generate short
68 writes and unaligned writes, but even as a best-effort attempt this
69 can improve bulk transfers. For instance, if a write is misaligned
70 relative to the target's data bus, the stub may need to make an extra
71 round trip fetching data from the target. This doesn't make a
72 huge difference, but it's easy to do, so we try to be helpful.
73
74 The alignment chosen is arbitrary; usually data bus width is
75 important here, not the possibly larger cache line size. */
76enum { REMOTE_ALIGN_WRITES = 16 };
77
23860348 78/* Prototypes for local functions. */
6426a772
JM
79static void cleanup_sigint_signal_handler (void *dummy);
80static void initialize_sigint_signal_handler (void);
6d820c5c 81static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed
PA
82static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
83 int forever);
6426a772 84
a14ed312
KB
85static void handle_remote_sigint (int);
86static void handle_remote_sigint_twice (int);
87static void async_remote_interrupt (gdb_client_data);
88void async_remote_interrupt_twice (gdb_client_data);
43ff13b4 89
a14ed312 90static void remote_files_info (struct target_ops *ignore);
c906108c 91
316f2060 92static void remote_prepare_to_store (struct regcache *regcache);
c906108c 93
a14ed312 94static void remote_open (char *name, int from_tty);
c906108c 95
a14ed312 96static void extended_remote_open (char *name, int from_tty);
c906108c 97
75c99385 98static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
c906108c 99
a14ed312 100static void remote_close (int quitting);
c906108c 101
136d6dae 102static void remote_mourn (struct target_ops *ops);
c906108c 103
a14ed312 104static void extended_remote_restart (void);
c906108c 105
136d6dae 106static void extended_remote_mourn (struct target_ops *);
c906108c 107
a14ed312 108static void remote_mourn_1 (struct target_ops *);
c906108c 109
6d820c5c 110static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 111
a14ed312 112static int readchar (int timeout);
c906108c 113
7d85a9c0 114static void remote_kill (struct target_ops *ops);
c906108c 115
a14ed312 116static int tohex (int nib);
c906108c 117
75c99385
PA
118static int remote_can_async_p (void);
119
120static int remote_is_async_p (void);
121
122static void remote_async (void (*callback) (enum inferior_event_type event_type,
123 void *context), void *context);
124
125static int remote_async_mask (int new_mask);
126
136d6dae 127static void remote_detach (struct target_ops *ops, char *args, int from_tty);
c906108c 128
a14ed312 129static void remote_interrupt (int signo);
c906108c 130
a14ed312 131static void remote_interrupt_twice (int signo);
7a292a7a 132
a14ed312 133static void interrupt_query (void);
c906108c 134
79d7f229
PA
135static void set_general_thread (struct ptid ptid);
136static void set_continue_thread (struct ptid ptid);
c906108c 137
a14ed312 138static void get_offsets (void);
c906108c 139
6d820c5c
DJ
140static void skip_frame (void);
141
142static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 143
a14ed312 144static int hexnumlen (ULONGEST num);
c906108c 145
a14ed312 146static void init_remote_ops (void);
c906108c 147
a14ed312 148static void init_extended_remote_ops (void);
c906108c 149
94cc34af 150static void remote_stop (ptid_t);
c906108c 151
a14ed312 152static int ishex (int ch, int *val);
c906108c 153
a14ed312 154static int stubhex (int ch);
c906108c 155
a14ed312 156static int hexnumstr (char *, ULONGEST);
c906108c 157
a14ed312 158static int hexnumnstr (char *, ULONGEST, int);
2df3850c 159
a14ed312 160static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 161
a14ed312 162static void print_packet (char *);
c906108c 163
a14ed312 164static unsigned long crc32 (unsigned char *, int, unsigned int);
c906108c 165
a14ed312 166static void compare_sections_command (char *, int);
c906108c 167
a14ed312 168static void packet_command (char *, int);
c906108c 169
a14ed312 170static int stub_unpack_int (char *buff, int fieldlength);
c906108c 171
39f77062 172static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 173
a14ed312 174static void remote_find_new_threads (void);
c906108c 175
79d7f229 176static void record_currthread (ptid_t currthread);
c906108c 177
30559e10 178static int fromhex (int a);
c906108c 179
cfd77fa1 180static int hex2bin (const char *hex, gdb_byte *bin, int count);
c906108c 181
cfd77fa1 182static int bin2hex (const gdb_byte *bin, char *hex, int count);
234fa6d1 183
a14ed312 184static int putpkt_binary (char *buf, int cnt);
c906108c 185
a14ed312 186static void check_binary_download (CORE_ADDR addr);
c906108c 187
5a2468f5 188struct packet_config;
5a2468f5 189
a14ed312 190static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 191
d471ea57 192static void update_packet_config (struct packet_config *config);
5a2468f5 193
bb572ddd
DJ
194static void set_remote_protocol_packet_cmd (char *args, int from_tty,
195 struct cmd_list_element *c);
196
197static void show_remote_protocol_packet_cmd (struct ui_file *file,
198 int from_tty,
199 struct cmd_list_element *c,
200 const char *value);
201
82f73884
PA
202static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
203static ptid_t read_ptid (char *buf, char **obuf);
204
c8d104ad
PA
205static void remote_query_supported (void);
206
207static void remote_check_symbols (struct objfile *objfile);
208
a14ed312 209void _initialize_remote (void);
c906108c 210
74531fed
PA
211struct stop_reply;
212static struct stop_reply *stop_reply_xmalloc (void);
213static void stop_reply_xfree (struct stop_reply *);
214static void do_stop_reply_xfree (void *arg);
215static void remote_parse_stop_reply (char *buf, struct stop_reply *);
216static void push_stop_reply (struct stop_reply *);
217static void remote_get_pending_stop_replies (void);
218static void discard_pending_stop_replies (int pid);
219static int peek_stop_reply (ptid_t ptid);
220
221static void remote_async_inferior_event_handler (gdb_client_data);
222static void remote_async_get_pending_events_handler (gdb_client_data);
223
d3fd5342
PA
224static void remote_terminal_ours (void);
225
d962ef82
DJ
226static int remote_read_description_p (struct target_ops *target);
227
74531fed
PA
228/* The non-stop remote protocol provisions for one pending stop reply.
229 This is where we keep it until it is acknowledged. */
230
231static struct stop_reply *pending_stop_reply = NULL;
232
a6b151f1
DJ
233/* For "remote". */
234
235static struct cmd_list_element *remote_cmdlist;
236
bb572ddd
DJ
237/* For "set remote" and "show remote". */
238
239static struct cmd_list_element *remote_set_cmdlist;
240static struct cmd_list_element *remote_show_cmdlist;
241
ea9c271d
DJ
242/* Description of the remote protocol state for the currently
243 connected target. This is per-target state, and independent of the
244 selected architecture. */
245
246struct remote_state
247{
248 /* A buffer to use for incoming packets, and its current size. The
249 buffer is grown dynamically for larger incoming packets.
250 Outgoing packets may also be constructed in this buffer.
251 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
252 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
253 packets. */
254 char *buf;
255 long buf_size;
be2a5f71
DJ
256
257 /* If we negotiated packet size explicitly (and thus can bypass
258 heuristics for the largest packet size that will not overflow
259 a buffer in the stub), this will be set to that packet size.
260 Otherwise zero, meaning to use the guessed size. */
261 long explicit_packet_size;
2d717e4f
DJ
262
263 /* remote_wait is normally called when the target is running and
264 waits for a stop reply packet. But sometimes we need to call it
265 when the target is already stopped. We can send a "?" packet
266 and have remote_wait read the response. Or, if we already have
267 the response, we can stash it in BUF and tell remote_wait to
268 skip calling getpkt. This flag is set when BUF contains a
269 stop reply packet and the target is not waiting. */
270 int cached_wait_status;
a6f3e723
SL
271
272 /* True, if in no ack mode. That is, neither GDB nor the stub will
273 expect acks from each other. The connection is assumed to be
274 reliable. */
275 int noack_mode;
82f73884
PA
276
277 /* True if we're connected in extended remote mode. */
278 int extended;
279
280 /* True if the stub reported support for multi-process
281 extensions. */
282 int multi_process_aware;
e24a49d8
PA
283
284 /* True if we resumed the target and we're waiting for the target to
285 stop. In the mean time, we can't start another command/query.
286 The remote server wouldn't be ready to process it, so we'd
287 timeout waiting for a reply that would never come and eventually
288 we'd close the connection. This can happen in asynchronous mode
289 because we allow GDB commands while the target is running. */
290 int waiting_for_stop_reply;
74531fed
PA
291
292 /* True if the stub reports support for non-stop mode. */
293 int non_stop_aware;
294
295 /* True if the stub reports support for vCont;t. */
296 int support_vCont_t;
ea9c271d
DJ
297};
298
82f73884
PA
299/* Returns true if the multi-process extensions are in effect. */
300static int
301remote_multi_process_p (struct remote_state *rs)
302{
303 return rs->extended && rs->multi_process_aware;
304}
305
ea9c271d
DJ
306/* This data could be associated with a target, but we do not always
307 have access to the current target when we need it, so for now it is
308 static. This will be fine for as long as only one target is in use
309 at a time. */
310static struct remote_state remote_state;
311
312static struct remote_state *
0b83947e 313get_remote_state_raw (void)
ea9c271d
DJ
314{
315 return &remote_state;
316}
317
318/* Description of the remote protocol for a given architecture. */
d01949b6 319
ad10f812
AC
320struct packet_reg
321{
322 long offset; /* Offset into G packet. */
323 long regnum; /* GDB's internal register number. */
324 LONGEST pnum; /* Remote protocol register number. */
b323314b 325 int in_g_packet; /* Always part of G packet. */
1cf3db46 326 /* long size in bytes; == register_size (target_gdbarch, regnum);
23860348 327 at present. */
1cf3db46 328 /* char *name; == gdbarch_register_name (target_gdbarch, regnum);
c9f4d572 329 at present. */
ad10f812
AC
330};
331
ea9c271d 332struct remote_arch_state
d01949b6 333{
ad10f812
AC
334 /* Description of the remote protocol registers. */
335 long sizeof_g_packet;
b323314b
AC
336
337 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 338 (making an array gdbarch_num_regs in size). */
b323314b 339 struct packet_reg *regs;
ad10f812 340
d01949b6
AC
341 /* This is the size (in chars) of the first response to the ``g''
342 packet. It is used as a heuristic when determining the maximum
343 size of memory-read and memory-write packets. A target will
344 typically only reserve a buffer large enough to hold the ``g''
345 packet. The size does not include packet overhead (headers and
23860348 346 trailers). */
d01949b6
AC
347 long actual_register_packet_size;
348
349 /* This is the maximum size (in chars) of a non read/write packet.
23860348 350 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
351 long remote_packet_size;
352};
353
3c3bea1c 354
d01949b6
AC
355/* Handle for retreving the remote protocol data from gdbarch. */
356static struct gdbarch_data *remote_gdbarch_data_handle;
357
ea9c271d
DJ
358static struct remote_arch_state *
359get_remote_arch_state (void)
d01949b6 360{
1cf3db46 361 return gdbarch_data (target_gdbarch, remote_gdbarch_data_handle);
d01949b6
AC
362}
363
0b83947e
DJ
364/* Fetch the global remote target state. */
365
366static struct remote_state *
367get_remote_state (void)
368{
369 /* Make sure that the remote architecture state has been
370 initialized, because doing so might reallocate rs->buf. Any
371 function which calls getpkt also needs to be mindful of changes
372 to rs->buf, but this call limits the number of places which run
373 into trouble. */
374 get_remote_arch_state ();
375
376 return get_remote_state_raw ();
377}
378
74ca34ce
DJ
379static int
380compare_pnums (const void *lhs_, const void *rhs_)
381{
382 const struct packet_reg * const *lhs = lhs_;
383 const struct packet_reg * const *rhs = rhs_;
384
385 if ((*lhs)->pnum < (*rhs)->pnum)
386 return -1;
387 else if ((*lhs)->pnum == (*rhs)->pnum)
388 return 0;
389 else
390 return 1;
391}
392
d01949b6
AC
393static void *
394init_remote_state (struct gdbarch *gdbarch)
395{
74ca34ce 396 int regnum, num_remote_regs, offset;
0b83947e 397 struct remote_state *rs = get_remote_state_raw ();
ea9c271d 398 struct remote_arch_state *rsa;
74ca34ce 399 struct packet_reg **remote_regs;
ea9c271d
DJ
400
401 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
d01949b6 402
123dc839
DJ
403 /* Use the architecture to build a regnum<->pnum table, which will be
404 1:1 unless a feature set specifies otherwise. */
f57d151a 405 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
4a22f64d 406 gdbarch_num_regs (gdbarch),
f57d151a 407 struct packet_reg);
4a22f64d 408 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 409 {
ea9c271d 410 struct packet_reg *r = &rsa->regs[regnum];
baef701f 411
4a22f64d 412 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
413 /* Do not try to fetch zero-sized (placeholder) registers. */
414 r->pnum = -1;
415 else
416 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
417
b323314b 418 r->regnum = regnum;
74ca34ce
DJ
419 }
420
421 /* Define the g/G packet format as the contents of each register
422 with a remote protocol number, in order of ascending protocol
423 number. */
424
4a22f64d
UW
425 remote_regs = alloca (gdbarch_num_regs (gdbarch)
426 * sizeof (struct packet_reg *));
f57d151a 427 for (num_remote_regs = 0, regnum = 0;
4a22f64d 428 regnum < gdbarch_num_regs (gdbarch);
f57d151a 429 regnum++)
74ca34ce
DJ
430 if (rsa->regs[regnum].pnum != -1)
431 remote_regs[num_remote_regs++] = &rsa->regs[regnum];
7d58c67d 432
74ca34ce
DJ
433 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
434 compare_pnums);
435
436 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
437 {
438 remote_regs[regnum]->in_g_packet = 1;
439 remote_regs[regnum]->offset = offset;
4a22f64d 440 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
441 }
442
74ca34ce
DJ
443 /* Record the maximum possible size of the g packet - it may turn out
444 to be smaller. */
445 rsa->sizeof_g_packet = offset;
446
d01949b6
AC
447 /* Default maximum number of characters in a packet body. Many
448 remote stubs have a hardwired buffer size of 400 bytes
449 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
450 as the maximum packet-size to ensure that the packet and an extra
451 NUL character can always fit in the buffer. This stops GDB
452 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
453 already a full buffer (As of 1999-12-04 that was most stubs). */
454 rsa->remote_packet_size = 400 - 1;
d01949b6 455
ea9c271d
DJ
456 /* This one is filled in when a ``g'' packet is received. */
457 rsa->actual_register_packet_size = 0;
458
459 /* Should rsa->sizeof_g_packet needs more space than the
ad10f812
AC
460 default, adjust the size accordingly. Remember that each byte is
461 encoded as two characters. 32 is the overhead for the packet
462 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 463 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 464 little. */
ea9c271d
DJ
465 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
466 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 467
ea9c271d
DJ
468 /* Make sure that the packet buffer is plenty big enough for
469 this architecture. */
470 if (rs->buf_size < rsa->remote_packet_size)
471 {
472 rs->buf_size = 2 * rsa->remote_packet_size;
7fca722e 473 rs->buf = xrealloc (rs->buf, rs->buf_size);
ea9c271d 474 }
6d820c5c 475
ea9c271d
DJ
476 return rsa;
477}
478
479/* Return the current allowed size of a remote packet. This is
480 inferred from the current architecture, and should be used to
481 limit the length of outgoing packets. */
482static long
483get_remote_packet_size (void)
484{
be2a5f71 485 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
486 struct remote_arch_state *rsa = get_remote_arch_state ();
487
be2a5f71
DJ
488 if (rs->explicit_packet_size)
489 return rs->explicit_packet_size;
490
ea9c271d 491 return rsa->remote_packet_size;
d01949b6
AC
492}
493
ad10f812 494static struct packet_reg *
ea9c271d 495packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
ad10f812 496{
1cf3db46 497 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch))
b323314b
AC
498 return NULL;
499 else
ad10f812 500 {
ea9c271d 501 struct packet_reg *r = &rsa->regs[regnum];
b323314b
AC
502 gdb_assert (r->regnum == regnum);
503 return r;
ad10f812 504 }
ad10f812
AC
505}
506
507static struct packet_reg *
ea9c271d 508packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
ad10f812 509{
b323314b 510 int i;
1cf3db46 511 for (i = 0; i < gdbarch_num_regs (target_gdbarch); i++)
ad10f812 512 {
ea9c271d 513 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
514 if (r->pnum == pnum)
515 return r;
ad10f812
AC
516 }
517 return NULL;
d01949b6
AC
518}
519
3c3bea1c
GS
520/* FIXME: graces/2002-08-08: These variables should eventually be
521 bound to an instance of the target object (as in gdbarch-tdep()),
522 when such a thing exists. */
523
524/* This is set to the data address of the access causing the target
525 to stop for a watchpoint. */
526static CORE_ADDR remote_watch_data_address;
527
94e08568 528/* This is non-zero if target stopped for a watchpoint. */
3c3bea1c
GS
529static int remote_stopped_by_watchpoint_p;
530
c906108c
SS
531static struct target_ops remote_ops;
532
533static struct target_ops extended_remote_ops;
534
b84876c2
PA
535static int remote_async_mask_value = 1;
536
6426a772
JM
537/* FIXME: cagney/1999-09-23: Even though getpkt was called with
538 ``forever'' still use the normal timeout mechanism. This is
539 currently used by the ASYNC code to guarentee that target reads
540 during the initial connect always time-out. Once getpkt has been
541 modified to return a timeout indication and, in turn
542 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 543 this can go away. */
6426a772
JM
544static int wait_forever_enabled_p = 1;
545
546
c906108c
SS
547/* This variable chooses whether to send a ^C or a break when the user
548 requests program interruption. Although ^C is usually what remote
549 systems expect, and that is the default here, sometimes a break is
550 preferable instead. */
551
552static int remote_break;
553
c906108c
SS
554/* Descriptor for I/O to remote machine. Initialize it to NULL so that
555 remote_open knows that we don't have a file open when the program
556 starts. */
819cc324 557static struct serial *remote_desc = NULL;
c906108c 558
c906108c
SS
559/* This variable sets the number of bits in an address that are to be
560 sent in a memory ("M" or "m") packet. Normally, after stripping
561 leading zeros, the entire address would be sent. This variable
562 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
563 initial implementation of remote.c restricted the address sent in
564 memory packets to ``host::sizeof long'' bytes - (typically 32
565 bits). Consequently, for 64 bit targets, the upper 32 bits of an
566 address was never sent. Since fixing this bug may cause a break in
567 some remote targets this variable is principly provided to
23860348 568 facilitate backward compatibility. */
c906108c
SS
569
570static int remote_address_size;
571
75c99385
PA
572/* Temporary to track who currently owns the terminal. See
573 remote_terminal_* for more details. */
6426a772
JM
574
575static int remote_async_terminal_ours_p;
576
2d717e4f
DJ
577/* The executable file to use for "run" on the remote side. */
578
579static char *remote_exec_file = "";
580
11cf8741 581\f
11cf8741 582/* User configurable variables for the number of characters in a
ea9c271d
DJ
583 memory read/write packet. MIN (rsa->remote_packet_size,
584 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 585 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
586 (speed up transfers). The variables ``preferred_*'' (the user
587 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 588 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
589
590struct memory_packet_config
591{
592 char *name;
593 long size;
594 int fixed_p;
595};
596
597/* Compute the current size of a read/write packet. Since this makes
598 use of ``actual_register_packet_size'' the computation is dynamic. */
599
600static long
601get_memory_packet_size (struct memory_packet_config *config)
602{
d01949b6 603 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
604 struct remote_arch_state *rsa = get_remote_arch_state ();
605
11cf8741
JM
606 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
607 law?) that some hosts don't cope very well with large alloca()
608 calls. Eventually the alloca() code will be replaced by calls to
609 xmalloc() and make_cleanups() allowing this restriction to either
23860348 610 be lifted or removed. */
11cf8741
JM
611#ifndef MAX_REMOTE_PACKET_SIZE
612#define MAX_REMOTE_PACKET_SIZE 16384
613#endif
3de11b2e 614 /* NOTE: 20 ensures we can write at least one byte. */
11cf8741 615#ifndef MIN_REMOTE_PACKET_SIZE
3de11b2e 616#define MIN_REMOTE_PACKET_SIZE 20
11cf8741
JM
617#endif
618 long what_they_get;
619 if (config->fixed_p)
620 {
621 if (config->size <= 0)
622 what_they_get = MAX_REMOTE_PACKET_SIZE;
623 else
624 what_they_get = config->size;
625 }
626 else
627 {
ea9c271d 628 what_they_get = get_remote_packet_size ();
23860348 629 /* Limit the packet to the size specified by the user. */
11cf8741
JM
630 if (config->size > 0
631 && what_they_get > config->size)
632 what_they_get = config->size;
be2a5f71
DJ
633
634 /* Limit it to the size of the targets ``g'' response unless we have
635 permission from the stub to use a larger packet size. */
636 if (rs->explicit_packet_size == 0
637 && rsa->actual_register_packet_size > 0
638 && what_they_get > rsa->actual_register_packet_size)
639 what_they_get = rsa->actual_register_packet_size;
11cf8741
JM
640 }
641 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
642 what_they_get = MAX_REMOTE_PACKET_SIZE;
643 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
644 what_they_get = MIN_REMOTE_PACKET_SIZE;
6d820c5c
DJ
645
646 /* Make sure there is room in the global buffer for this packet
647 (including its trailing NUL byte). */
648 if (rs->buf_size < what_they_get + 1)
649 {
650 rs->buf_size = 2 * what_they_get;
651 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
652 }
653
11cf8741
JM
654 return what_they_get;
655}
656
657/* Update the size of a read/write packet. If they user wants
23860348 658 something really big then do a sanity check. */
11cf8741
JM
659
660static void
661set_memory_packet_size (char *args, struct memory_packet_config *config)
662{
663 int fixed_p = config->fixed_p;
664 long size = config->size;
665 if (args == NULL)
8a3fe4f8 666 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
667 else if (strcmp (args, "hard") == 0
668 || strcmp (args, "fixed") == 0)
669 fixed_p = 1;
670 else if (strcmp (args, "soft") == 0
671 || strcmp (args, "limit") == 0)
672 fixed_p = 0;
673 else
674 {
675 char *end;
676 size = strtoul (args, &end, 0);
677 if (args == end)
8a3fe4f8 678 error (_("Invalid %s (bad syntax)."), config->name);
11cf8741
JM
679#if 0
680 /* Instead of explicitly capping the size of a packet to
681 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
682 instead allowed to set the size to something arbitrarily
23860348 683 large. */
11cf8741 684 if (size > MAX_REMOTE_PACKET_SIZE)
8a3fe4f8 685 error (_("Invalid %s (too large)."), config->name);
11cf8741
JM
686#endif
687 }
23860348 688 /* Extra checks? */
11cf8741
JM
689 if (fixed_p && !config->fixed_p)
690 {
e2e0b3e5
AC
691 if (! query (_("The target may not be able to correctly handle a %s\n"
692 "of %ld bytes. Change the packet size? "),
11cf8741 693 config->name, size))
8a3fe4f8 694 error (_("Packet size not changed."));
11cf8741 695 }
23860348 696 /* Update the config. */
11cf8741
JM
697 config->fixed_p = fixed_p;
698 config->size = size;
699}
700
701static void
702show_memory_packet_size (struct memory_packet_config *config)
703{
a3f17187 704 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 705 if (config->fixed_p)
a3f17187 706 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
707 get_memory_packet_size (config));
708 else
a3f17187 709 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
710 get_memory_packet_size (config));
711}
712
713static struct memory_packet_config memory_write_packet_config =
714{
715 "memory-write-packet-size",
716};
717
718static void
719set_memory_write_packet_size (char *args, int from_tty)
720{
721 set_memory_packet_size (args, &memory_write_packet_config);
722}
723
724static void
725show_memory_write_packet_size (char *args, int from_tty)
726{
727 show_memory_packet_size (&memory_write_packet_config);
728}
729
730static long
731get_memory_write_packet_size (void)
732{
733 return get_memory_packet_size (&memory_write_packet_config);
734}
735
736static struct memory_packet_config memory_read_packet_config =
737{
738 "memory-read-packet-size",
739};
740
741static void
742set_memory_read_packet_size (char *args, int from_tty)
743{
744 set_memory_packet_size (args, &memory_read_packet_config);
745}
746
747static void
748show_memory_read_packet_size (char *args, int from_tty)
749{
750 show_memory_packet_size (&memory_read_packet_config);
751}
752
753static long
754get_memory_read_packet_size (void)
755{
756 long size = get_memory_packet_size (&memory_read_packet_config);
757 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
758 extra buffer size argument before the memory read size can be
ea9c271d
DJ
759 increased beyond this. */
760 if (size > get_remote_packet_size ())
761 size = get_remote_packet_size ();
11cf8741
JM
762 return size;
763}
764
11cf8741 765\f
5a2468f5
JM
766/* Generic configuration support for packets the stub optionally
767 supports. Allows the user to specify the use of the packet as well
23860348 768 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
769
770enum packet_support
771 {
772 PACKET_SUPPORT_UNKNOWN = 0,
773 PACKET_ENABLE,
774 PACKET_DISABLE
775 };
776
5a2468f5
JM
777struct packet_config
778 {
bb572ddd
DJ
779 const char *name;
780 const char *title;
7f19b9a2 781 enum auto_boolean detect;
5a2468f5
JM
782 enum packet_support support;
783 };
784
d471ea57 785/* Analyze a packet's return value and update the packet config
23860348 786 accordingly. */
d471ea57
AC
787
788enum packet_result
789{
790 PACKET_ERROR,
791 PACKET_OK,
792 PACKET_UNKNOWN
793};
794
5a2468f5 795static void
d471ea57 796update_packet_config (struct packet_config *config)
5a2468f5 797{
d471ea57
AC
798 switch (config->detect)
799 {
7f19b9a2 800 case AUTO_BOOLEAN_TRUE:
d471ea57
AC
801 config->support = PACKET_ENABLE;
802 break;
7f19b9a2 803 case AUTO_BOOLEAN_FALSE:
d471ea57
AC
804 config->support = PACKET_DISABLE;
805 break;
7f19b9a2 806 case AUTO_BOOLEAN_AUTO:
d471ea57
AC
807 config->support = PACKET_SUPPORT_UNKNOWN;
808 break;
809 }
5a2468f5
JM
810}
811
812static void
fba45db2 813show_packet_config_cmd (struct packet_config *config)
5a2468f5
JM
814{
815 char *support = "internal-error";
816 switch (config->support)
817 {
818 case PACKET_ENABLE:
819 support = "enabled";
820 break;
821 case PACKET_DISABLE:
822 support = "disabled";
823 break;
824 case PACKET_SUPPORT_UNKNOWN:
825 support = "unknown";
826 break;
827 }
828 switch (config->detect)
829 {
7f19b9a2 830 case AUTO_BOOLEAN_AUTO:
37a105a1
DJ
831 printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
832 config->name, support);
5a2468f5 833 break;
7f19b9a2
AC
834 case AUTO_BOOLEAN_TRUE:
835 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
836 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
837 config->name, support);
8e248173 838 break;
5a2468f5
JM
839 }
840}
841
842static void
bb572ddd
DJ
843add_packet_config_cmd (struct packet_config *config, const char *name,
844 const char *title, int legacy)
d471ea57 845{
5a2468f5
JM
846 char *set_doc;
847 char *show_doc;
d471ea57 848 char *cmd_name;
3ed07be4 849
5a2468f5
JM
850 config->name = name;
851 config->title = title;
7f19b9a2 852 config->detect = AUTO_BOOLEAN_AUTO;
8e248173 853 config->support = PACKET_SUPPORT_UNKNOWN;
b435e160
AC
854 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
855 name, title);
856 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
857 name, title);
d471ea57 858 /* set/show TITLE-packet {auto,on,off} */
b435e160 859 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 860 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
2c5b56ce 861 &config->detect, set_doc, show_doc, NULL, /* help_doc */
bb572ddd
DJ
862 set_remote_protocol_packet_cmd,
863 show_remote_protocol_packet_cmd,
864 &remote_set_cmdlist, &remote_show_cmdlist);
23860348 865 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
866 if (legacy)
867 {
868 char *legacy_name;
b435e160 869 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 870 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 871 &remote_set_cmdlist);
d471ea57 872 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 873 &remote_show_cmdlist);
d471ea57 874 }
5a2468f5
JM
875}
876
d471ea57 877static enum packet_result
a76d924d 878packet_check_result (const char *buf)
5a2468f5 879{
d471ea57 880 if (buf[0] != '\0')
5a2468f5 881 {
d471ea57 882 /* The stub recognized the packet request. Check that the
23860348 883 operation succeeded. */
a76d924d
DJ
884 if (buf[0] == 'E'
885 && isxdigit (buf[1]) && isxdigit (buf[2])
886 && buf[3] == '\0')
887 /* "Enn" - definitly an error. */
888 return PACKET_ERROR;
889
890 /* Always treat "E." as an error. This will be used for
891 more verbose error messages, such as E.memtypes. */
892 if (buf[0] == 'E' && buf[1] == '.')
893 return PACKET_ERROR;
894
895 /* The packet may or may not be OK. Just assume it is. */
896 return PACKET_OK;
897 }
898 else
899 /* The stub does not support the packet. */
900 return PACKET_UNKNOWN;
901}
902
903static enum packet_result
904packet_ok (const char *buf, struct packet_config *config)
905{
906 enum packet_result result;
907
908 result = packet_check_result (buf);
909 switch (result)
910 {
911 case PACKET_OK:
912 case PACKET_ERROR:
913 /* The stub recognized the packet request. */
d471ea57
AC
914 switch (config->support)
915 {
916 case PACKET_SUPPORT_UNKNOWN:
917 if (remote_debug)
918 fprintf_unfiltered (gdb_stdlog,
919 "Packet %s (%s) is supported\n",
920 config->name, config->title);
921 config->support = PACKET_ENABLE;
922 break;
923 case PACKET_DISABLE:
8e65ff28 924 internal_error (__FILE__, __LINE__,
e2e0b3e5 925 _("packet_ok: attempt to use a disabled packet"));
d471ea57
AC
926 break;
927 case PACKET_ENABLE:
928 break;
929 }
a76d924d
DJ
930 break;
931 case PACKET_UNKNOWN:
23860348 932 /* The stub does not support the packet. */
d471ea57
AC
933 switch (config->support)
934 {
935 case PACKET_ENABLE:
7f19b9a2 936 if (config->detect == AUTO_BOOLEAN_AUTO)
d471ea57 937 /* If the stub previously indicated that the packet was
23860348 938 supported then there is a protocol error.. */
8a3fe4f8 939 error (_("Protocol error: %s (%s) conflicting enabled responses."),
d471ea57
AC
940 config->name, config->title);
941 else
23860348 942 /* The user set it wrong. */
8a3fe4f8 943 error (_("Enabled packet %s (%s) not recognized by stub"),
d471ea57
AC
944 config->name, config->title);
945 break;
946 case PACKET_SUPPORT_UNKNOWN:
947 if (remote_debug)
948 fprintf_unfiltered (gdb_stdlog,
949 "Packet %s (%s) is NOT supported\n",
950 config->name, config->title);
951 config->support = PACKET_DISABLE;
952 break;
953 case PACKET_DISABLE:
954 break;
955 }
a76d924d 956 break;
5a2468f5 957 }
a76d924d
DJ
958
959 return result;
5a2468f5
JM
960}
961
444abaca
DJ
962enum {
963 PACKET_vCont = 0,
964 PACKET_X,
965 PACKET_qSymbol,
966 PACKET_P,
967 PACKET_p,
968 PACKET_Z0,
969 PACKET_Z1,
970 PACKET_Z2,
971 PACKET_Z3,
972 PACKET_Z4,
a6b151f1
DJ
973 PACKET_vFile_open,
974 PACKET_vFile_pread,
975 PACKET_vFile_pwrite,
976 PACKET_vFile_close,
977 PACKET_vFile_unlink,
0876f84a 978 PACKET_qXfer_auxv,
23181151 979 PACKET_qXfer_features,
cfa9d6d9 980 PACKET_qXfer_libraries,
fd79ecee 981 PACKET_qXfer_memory_map,
0e7f50da
UW
982 PACKET_qXfer_spu_read,
983 PACKET_qXfer_spu_write,
07e059b5 984 PACKET_qXfer_osdata,
444abaca 985 PACKET_qGetTLSAddr,
be2a5f71 986 PACKET_qSupported,
89be2091 987 PACKET_QPassSignals,
08388c79 988 PACKET_qSearch_memory,
2d717e4f
DJ
989 PACKET_vAttach,
990 PACKET_vRun,
a6f3e723 991 PACKET_QStartNoAckMode,
82f73884 992 PACKET_vKill,
4aa995e1
PA
993 PACKET_qXfer_siginfo_read,
994 PACKET_qXfer_siginfo_write,
0b16c5cf 995 PACKET_qAttached,
444abaca
DJ
996 PACKET_MAX
997};
506fb367 998
444abaca 999static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97
MS
1000
1001static void
444abaca
DJ
1002set_remote_protocol_packet_cmd (char *args, int from_tty,
1003 struct cmd_list_element *c)
dc8acb97 1004{
444abaca 1005 struct packet_config *packet;
dc8acb97 1006
444abaca
DJ
1007 for (packet = remote_protocol_packets;
1008 packet < &remote_protocol_packets[PACKET_MAX];
1009 packet++)
1010 {
1011 if (&packet->detect == c->var)
1012 {
1013 update_packet_config (packet);
1014 return;
1015 }
1016 }
1017 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1018 c->name);
dc8acb97
MS
1019}
1020
5a2468f5 1021static void
444abaca
DJ
1022show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1023 struct cmd_list_element *c,
1024 const char *value)
5a2468f5 1025{
444abaca 1026 struct packet_config *packet;
5a2468f5 1027
444abaca
DJ
1028 for (packet = remote_protocol_packets;
1029 packet < &remote_protocol_packets[PACKET_MAX];
1030 packet++)
1031 {
1032 if (&packet->detect == c->var)
1033 {
1034 show_packet_config_cmd (packet);
1035 return;
1036 }
1037 }
1038 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1039 c->name);
5a2468f5
JM
1040}
1041
d471ea57
AC
1042/* Should we try one of the 'Z' requests? */
1043
1044enum Z_packet_type
1045{
1046 Z_PACKET_SOFTWARE_BP,
1047 Z_PACKET_HARDWARE_BP,
1048 Z_PACKET_WRITE_WP,
1049 Z_PACKET_READ_WP,
1050 Z_PACKET_ACCESS_WP,
1051 NR_Z_PACKET_TYPES
1052};
96baa820 1053
d471ea57 1054/* For compatibility with older distributions. Provide a ``set remote
23860348 1055 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1056
7f19b9a2 1057static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1058
1059static void
fba45db2
KB
1060set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1061 struct cmd_list_element *c)
96baa820 1062{
d471ea57
AC
1063 int i;
1064 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1065 {
444abaca
DJ
1066 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1067 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1068 }
96baa820
JM
1069}
1070
1071static void
08546159
AC
1072show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1073 struct cmd_list_element *c,
1074 const char *value)
96baa820 1075{
d471ea57
AC
1076 int i;
1077 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1078 {
444abaca 1079 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1080 }
96baa820
JM
1081}
1082
9d1f7ab2
MS
1083/* Should we try the 'ThreadInfo' query packet?
1084
1085 This variable (NOT available to the user: auto-detect only!)
1086 determines whether GDB will use the new, simpler "ThreadInfo"
1087 query or the older, more complex syntax for thread queries.
802188a7 1088 This is an auto-detect variable (set to true at each connect,
9d1f7ab2
MS
1089 and set to false when the target fails to recognize it). */
1090
1091static int use_threadinfo_query;
1092static int use_threadextra_query;
1093
23860348 1094/* Tokens for use by the asynchronous signal handlers for SIGINT. */
d5d6fca5
DJ
1095static struct async_signal_handler *sigint_remote_twice_token;
1096static struct async_signal_handler *sigint_remote_token;
43ff13b4 1097
74531fed
PA
1098\f
1099/* Asynchronous signal handle registered as event loop source for
1100 when we have pending events ready to be passed to the core. */
1101
1102static struct async_event_handler *remote_async_inferior_event_token;
1103
1104/* Asynchronous signal handle registered as event loop source for when
1105 the remote sent us a %Stop notification. The registered callback
1106 will do a vStopped sequence to pull the rest of the events out of
1107 the remote side into our event queue. */
1108
1109static struct async_event_handler *remote_async_get_pending_events_token;
c906108c
SS
1110\f
1111
79d7f229
PA
1112static ptid_t magic_null_ptid;
1113static ptid_t not_sent_ptid;
1114static ptid_t any_thread_ptid;
1115
1116/* These are the threads which we last sent to the remote system. The
1117 TID member will be -1 for all or -2 for not sent yet. */
1118
1119static ptid_t general_thread;
1120static ptid_t continue_thread;
c5aa993b 1121
0b16c5cf
PA
1122/* Find out if the stub attached to PID (and hence GDB should offer to
1123 detach instead of killing it when bailing out). */
1124
1125static int
1126remote_query_attached (int pid)
1127{
1128 struct remote_state *rs = get_remote_state ();
1129
1130 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1131 return 0;
1132
1133 if (remote_multi_process_p (rs))
1134 sprintf (rs->buf, "qAttached:%x", pid);
1135 else
1136 sprintf (rs->buf, "qAttached");
1137
1138 putpkt (rs->buf);
1139 getpkt (&rs->buf, &rs->buf_size, 0);
1140
1141 switch (packet_ok (rs->buf,
1554e9be 1142 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1143 {
1144 case PACKET_OK:
1145 if (strcmp (rs->buf, "1") == 0)
1146 return 1;
1147 break;
1148 case PACKET_ERROR:
1149 warning (_("Remote failure reply: %s"), rs->buf);
1150 break;
1151 case PACKET_UNKNOWN:
1152 break;
1153 }
1154
1155 return 0;
1156}
1157
1941c569
PA
1158/* Add PID to GDB's inferior table. Since we can be connected to a
1159 remote system before before knowing about any inferior, mark the
0b16c5cf
PA
1160 target with execution when we find the first inferior. If ATTACHED
1161 is 1, then we had just attached to this inferior. If it is 0, then
1162 we just created this inferior. If it is -1, then try querying the
1163 remote stub to find out if it had attached to the inferior or
1164 not. */
1941c569
PA
1165
1166static struct inferior *
0b16c5cf 1167remote_add_inferior (int pid, int attached)
1941c569
PA
1168{
1169 struct remote_state *rs = get_remote_state ();
1170 struct inferior *inf;
1171
0b16c5cf
PA
1172 /* Check whether this process we're learning about is to be
1173 considered attached, or if is to be considered to have been
1174 spawned by the stub. */
1175 if (attached == -1)
1176 attached = remote_query_attached (pid);
1177
1941c569
PA
1178 inf = add_inferior (pid);
1179
0b16c5cf
PA
1180 inf->attach_flag = attached;
1181
1941c569
PA
1182 /* This may be the first inferior we hear about. */
1183 if (!target_has_execution)
1184 {
1185 if (rs->extended)
1186 target_mark_running (&extended_remote_ops);
1187 else
1188 target_mark_running (&remote_ops);
1189 }
1190
1191 return inf;
1192}
1193
1194/* Add thread PTID to GDB's thread list. Tag it as executing/running
1195 according to RUNNING. */
1196
c906108c 1197static void
1941c569 1198remote_add_thread (ptid_t ptid, int running)
c906108c 1199{
1941c569
PA
1200 add_thread (ptid);
1201
1202 set_executing (ptid, running);
1203 set_running (ptid, running);
1204}
1205
1206/* Come here when we learn about a thread id from the remote target.
1207 It may be the first time we hear about such thread, so take the
1208 opportunity to add it to GDB's thread list. In case this is the
1209 first time we're noticing its corresponding inferior, add it to
1210 GDB's inferior list as well. */
1211
1212static void
1213remote_notice_new_inferior (ptid_t currthread, int running)
1214{
1215 struct remote_state *rs = get_remote_state ();
1216
c906108c
SS
1217 /* If this is a new thread, add it to GDB's thread list.
1218 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1219
1220 if (in_thread_list (currthread) && is_exited (currthread))
1221 {
1222 /* We're seeing an event on a thread id we knew had exited.
1223 This has to be a new thread reusing the old id. Add it. */
1941c569 1224 remote_add_thread (currthread, running);
82f73884
PA
1225 return;
1226 }
1227
79d7f229 1228 if (!in_thread_list (currthread))
c0a2216e 1229 {
1941c569 1230 struct inferior *inf = NULL;
bad34192 1231 int pid = ptid_get_pid (currthread);
1941c569 1232
bad34192
PA
1233 if (ptid_is_pid (inferior_ptid)
1234 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1235 {
1236 /* inferior_ptid has no thread member yet. This can happen
1237 with the vAttach -> remote_wait,"TAAthread:" path if the
1238 stub doesn't support qC. This is the first stop reported
1239 after an attach, so this is the main thread. Update the
1240 ptid in the thread list. */
bad34192
PA
1241 if (in_thread_list (pid_to_ptid (pid)))
1242 thread_change_ptid (inferior_ptid, currthread);
1243 else
1244 {
1245 remote_add_thread (currthread, running);
1246 inferior_ptid = currthread;
1247 }
82f73884 1248 return;
c0a2216e 1249 }
82f73884
PA
1250
1251 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1252 {
1253 /* inferior_ptid is not set yet. This can happen with the
1254 vRun -> remote_wait,"TAAthread:" path if the stub
1255 doesn't support qC. This is the first stop reported
1256 after an attach, so this is the main thread. Update the
1257 ptid in the thread list. */
82f73884
PA
1258 thread_change_ptid (inferior_ptid, currthread);
1259 return;
c0a2216e 1260 }
82f73884 1261
29c87f7f
PA
1262 /* When connecting to a target remote, or to a target
1263 extended-remote which already was debugging an inferior, we
1264 may not know about it yet. Add it before adding its child
1265 thread, so notifications are emitted in a sensible order. */
1266 if (!in_inferior_list (ptid_get_pid (currthread)))
0b16c5cf 1267 inf = remote_add_inferior (ptid_get_pid (currthread), -1);
29c87f7f 1268
82f73884 1269 /* This is really a new thread. Add it. */
1941c569
PA
1270 remote_add_thread (currthread, running);
1271
1272 /* If we found a new inferior, let the common code do whatever
1273 it needs to with it (e.g., read shared libraries, insert
1274 breakpoints). */
1275 if (inf != NULL)
1276 notice_new_inferior (currthread, running, 0);
c0a2216e 1277 }
c906108c
SS
1278}
1279
74531fed
PA
1280/* Call this function as a result of
1281 1) A halt indication (T packet) containing a thread id
1282 2) A direct query of currthread
1283 3) Successful execution of set thread
1284 */
1285
1286static void
1287record_currthread (ptid_t currthread)
1288{
1289 general_thread = currthread;
1290
1291 if (ptid_equal (currthread, minus_one_ptid))
1292 /* We're just invalidating the local thread mirror. */
1293 return;
1294
1941c569 1295 remote_notice_new_inferior (currthread, 0);
74531fed
PA
1296}
1297
89be2091
DJ
1298static char *last_pass_packet;
1299
1300/* If 'QPassSignals' is supported, tell the remote stub what signals
1301 it can simply pass through to the inferior without reporting. */
1302
1303static void
1304remote_pass_signals (void)
1305{
1306 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1307 {
1308 char *pass_packet, *p;
1309 int numsigs = (int) TARGET_SIGNAL_LAST;
1310 int count = 0, i;
1311
1312 gdb_assert (numsigs < 256);
1313 for (i = 0; i < numsigs; i++)
1314 {
1315 if (signal_stop_state (i) == 0
1316 && signal_print_state (i) == 0
1317 && signal_pass_state (i) == 1)
1318 count++;
1319 }
1320 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1321 strcpy (pass_packet, "QPassSignals:");
1322 p = pass_packet + strlen (pass_packet);
1323 for (i = 0; i < numsigs; i++)
1324 {
1325 if (signal_stop_state (i) == 0
1326 && signal_print_state (i) == 0
1327 && signal_pass_state (i) == 1)
1328 {
1329 if (i >= 16)
1330 *p++ = tohex (i >> 4);
1331 *p++ = tohex (i & 15);
1332 if (count)
1333 *p++ = ';';
1334 else
1335 break;
1336 count--;
1337 }
1338 }
1339 *p = 0;
1340 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1341 {
1342 struct remote_state *rs = get_remote_state ();
1343 char *buf = rs->buf;
1344
1345 putpkt (pass_packet);
1346 getpkt (&rs->buf, &rs->buf_size, 0);
1347 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1348 if (last_pass_packet)
1349 xfree (last_pass_packet);
1350 last_pass_packet = pass_packet;
1351 }
1352 else
1353 xfree (pass_packet);
1354 }
1355}
1356
79d7f229
PA
1357/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1358 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1359 thread. If GEN is set, set the general thread, if not, then set
1360 the step/continue thread. */
c906108c 1361static void
79d7f229 1362set_thread (struct ptid ptid, int gen)
c906108c 1363{
d01949b6 1364 struct remote_state *rs = get_remote_state ();
79d7f229 1365 ptid_t state = gen ? general_thread : continue_thread;
6d820c5c 1366 char *buf = rs->buf;
79d7f229 1367 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 1368
79d7f229 1369 if (ptid_equal (state, ptid))
c906108c
SS
1370 return;
1371
79d7f229
PA
1372 *buf++ = 'H';
1373 *buf++ = gen ? 'g' : 'c';
1374 if (ptid_equal (ptid, magic_null_ptid))
1375 xsnprintf (buf, endbuf - buf, "0");
1376 else if (ptid_equal (ptid, any_thread_ptid))
1377 xsnprintf (buf, endbuf - buf, "0");
1378 else if (ptid_equal (ptid, minus_one_ptid))
1379 xsnprintf (buf, endbuf - buf, "-1");
1380 else
82f73884 1381 write_ptid (buf, endbuf, ptid);
79d7f229 1382 putpkt (rs->buf);
6d820c5c 1383 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 1384 if (gen)
79d7f229 1385 general_thread = ptid;
c906108c 1386 else
79d7f229 1387 continue_thread = ptid;
c906108c 1388}
79d7f229
PA
1389
1390static void
1391set_general_thread (struct ptid ptid)
1392{
1393 set_thread (ptid, 1);
1394}
1395
1396static void
1397set_continue_thread (struct ptid ptid)
1398{
1399 set_thread (ptid, 0);
1400}
1401
3c9c4b83
PA
1402/* Change the remote current process. Which thread within the process
1403 ends up selected isn't important, as long as it is the same process
1404 as what INFERIOR_PTID points to.
1405
1406 This comes from that fact that there is no explicit notion of
1407 "selected process" in the protocol. The selected process for
1408 general operations is the process the selected general thread
1409 belongs to. */
1410
1411static void
1412set_general_process (void)
1413{
1414 struct remote_state *rs = get_remote_state ();
1415
1416 /* If the remote can't handle multiple processes, don't bother. */
1417 if (!remote_multi_process_p (rs))
1418 return;
1419
1420 /* We only need to change the remote current thread if it's pointing
1421 at some other process. */
1422 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1423 set_general_thread (inferior_ptid);
1424}
1425
c906108c 1426\f
79d7f229
PA
1427/* Return nonzero if the thread PTID is still alive on the remote
1428 system. */
c906108c
SS
1429
1430static int
28439f5e 1431remote_thread_alive (struct target_ops *ops, ptid_t ptid)
c906108c 1432{
6d820c5c 1433 struct remote_state *rs = get_remote_state ();
79d7f229 1434 int tid = ptid_get_tid (ptid);
82f73884 1435 char *p, *endp;
c906108c 1436
c0a2216e
PA
1437 if (ptid_equal (ptid, magic_null_ptid))
1438 /* The main thread is always alive. */
1439 return 1;
1440
1441 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1442 /* The main thread is always alive. This can happen after a
1443 vAttach, if the remote side doesn't support
1444 multi-threading. */
1445 return 1;
1446
82f73884
PA
1447 p = rs->buf;
1448 endp = rs->buf + get_remote_packet_size ();
1449
1450 *p++ = 'T';
1451 write_ptid (p, endp, ptid);
1452
2e9f7625 1453 putpkt (rs->buf);
6d820c5c 1454 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1455 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
1456}
1457
1458/* About these extended threadlist and threadinfo packets. They are
1459 variable length packets but, the fields within them are often fixed
1460 length. They are redundent enough to send over UDP as is the
1461 remote protocol in general. There is a matching unit test module
1462 in libstub. */
1463
cce74817
JM
1464#define OPAQUETHREADBYTES 8
1465
1466/* a 64 bit opaque identifier */
1467typedef unsigned char threadref[OPAQUETHREADBYTES];
1468
23860348
MS
1469/* WARNING: This threadref data structure comes from the remote O.S.,
1470 libstub protocol encoding, and remote.c. it is not particularly
1471 changable. */
cce74817
JM
1472
1473/* Right now, the internal structure is int. We want it to be bigger.
1474 Plan to fix this.
c5aa993b 1475 */
cce74817 1476
23860348 1477typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 1478
9d1f7ab2 1479/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 1480 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
1481
1482struct gdb_ext_thread_info
c5aa993b 1483 {
23860348 1484 threadref threadid; /* External form of thread reference. */
2bc416ba 1485 int active; /* Has state interesting to GDB?
23860348 1486 regs, stack. */
2bc416ba 1487 char display[256]; /* Brief state display, name,
cedea757 1488 blocked/suspended. */
23860348 1489 char shortname[32]; /* To be used to name threads. */
2bc416ba 1490 char more_display[256]; /* Long info, statistics, queue depth,
23860348 1491 whatever. */
c5aa993b 1492 };
cce74817
JM
1493
1494/* The volume of remote transfers can be limited by submitting
1495 a mask containing bits specifying the desired information.
1496 Use a union of these values as the 'selection' parameter to
1497 get_thread_info. FIXME: Make these TAG names more thread specific.
c5aa993b 1498 */
cce74817
JM
1499
1500#define TAG_THREADID 1
1501#define TAG_EXISTS 2
1502#define TAG_DISPLAY 4
1503#define TAG_THREADNAME 8
c5aa993b 1504#define TAG_MOREDISPLAY 16
cce74817 1505
23860348 1506#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 1507
b2dd6311 1508char *unpack_varlen_hex (char *buff, ULONGEST *result);
cce74817 1509
a14ed312 1510static char *unpack_nibble (char *buf, int *val);
cce74817 1511
a14ed312 1512static char *pack_nibble (char *buf, int nibble);
cce74817 1513
23860348 1514static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
cce74817 1515
a14ed312 1516static char *unpack_byte (char *buf, int *value);
cce74817 1517
a14ed312 1518static char *pack_int (char *buf, int value);
cce74817 1519
a14ed312 1520static char *unpack_int (char *buf, int *value);
cce74817 1521
a14ed312 1522static char *unpack_string (char *src, char *dest, int length);
cce74817 1523
23860348 1524static char *pack_threadid (char *pkt, threadref *id);
cce74817 1525
23860348 1526static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 1527
23860348 1528void int_to_threadref (threadref *id, int value);
cce74817 1529
23860348 1530static int threadref_to_int (threadref *ref);
cce74817 1531
23860348 1532static void copy_threadref (threadref *dest, threadref *src);
cce74817 1533
23860348 1534static int threadmatch (threadref *dest, threadref *src);
cce74817 1535
2bc416ba 1536static char *pack_threadinfo_request (char *pkt, int mode,
23860348 1537 threadref *id);
cce74817 1538
a14ed312 1539static int remote_unpack_thread_info_response (char *pkt,
23860348 1540 threadref *expectedref,
a14ed312
KB
1541 struct gdb_ext_thread_info
1542 *info);
cce74817
JM
1543
1544
2bc416ba 1545static int remote_get_threadinfo (threadref *threadid,
23860348 1546 int fieldset, /*TAG mask */
a14ed312 1547 struct gdb_ext_thread_info *info);
cce74817 1548
a14ed312
KB
1549static char *pack_threadlist_request (char *pkt, int startflag,
1550 int threadcount,
23860348 1551 threadref *nextthread);
cce74817 1552
a14ed312
KB
1553static int parse_threadlist_response (char *pkt,
1554 int result_limit,
23860348 1555 threadref *original_echo,
2bc416ba 1556 threadref *resultlist,
23860348 1557 int *doneflag);
cce74817 1558
a14ed312 1559static int remote_get_threadlist (int startflag,
23860348 1560 threadref *nextthread,
a14ed312
KB
1561 int result_limit,
1562 int *done,
2bc416ba 1563 int *result_count,
23860348 1564 threadref *threadlist);
cce74817 1565
23860348 1566typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 1567
a14ed312
KB
1568static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1569 void *context, int looplimit);
cce74817 1570
23860348 1571static int remote_newthread_step (threadref *ref, void *context);
cce74817 1572
82f73884
PA
1573
1574/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1575 buffer we're allowed to write to. Returns
1576 BUF+CHARACTERS_WRITTEN. */
1577
1578static char *
1579write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1580{
1581 int pid, tid;
1582 struct remote_state *rs = get_remote_state ();
1583
1584 if (remote_multi_process_p (rs))
1585 {
1586 pid = ptid_get_pid (ptid);
1587 if (pid < 0)
1588 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1589 else
1590 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1591 }
1592 tid = ptid_get_tid (ptid);
1593 if (tid < 0)
1594 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1595 else
1596 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1597
1598 return buf;
1599}
1600
1601/* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1602 passed the last parsed char. Returns null_ptid on error. */
1603
1604static ptid_t
1605read_ptid (char *buf, char **obuf)
1606{
1607 char *p = buf;
1608 char *pp;
1609 ULONGEST pid = 0, tid = 0;
1610 ptid_t ptid;
1611
1612 if (*p == 'p')
1613 {
1614 /* Multi-process ptid. */
1615 pp = unpack_varlen_hex (p + 1, &pid);
1616 if (*pp != '.')
1617 error (_("invalid remote ptid: %s\n"), p);
1618
1619 p = pp;
1620 pp = unpack_varlen_hex (p + 1, &tid);
1621 if (obuf)
1622 *obuf = pp;
1623 return ptid_build (pid, 0, tid);
1624 }
1625
1626 /* No multi-process. Just a tid. */
1627 pp = unpack_varlen_hex (p, &tid);
1628
1629 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
1630 what's in inferior_ptid, unless it's null at this point. If so,
1631 then since there's no way to know the pid of the reported
1632 threads, use the magic number. */
1633 if (ptid_equal (inferior_ptid, null_ptid))
1634 pid = ptid_get_pid (magic_null_ptid);
1635 else
1636 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
1637
1638 if (obuf)
1639 *obuf = pp;
1640 return ptid_build (pid, 0, tid);
1641}
1642
23860348 1643/* Encode 64 bits in 16 chars of hex. */
c906108c
SS
1644
1645static const char hexchars[] = "0123456789abcdef";
1646
1647static int
fba45db2 1648ishex (int ch, int *val)
c906108c
SS
1649{
1650 if ((ch >= 'a') && (ch <= 'f'))
1651 {
1652 *val = ch - 'a' + 10;
1653 return 1;
1654 }
1655 if ((ch >= 'A') && (ch <= 'F'))
1656 {
1657 *val = ch - 'A' + 10;
1658 return 1;
1659 }
1660 if ((ch >= '0') && (ch <= '9'))
1661 {
1662 *val = ch - '0';
1663 return 1;
1664 }
1665 return 0;
1666}
1667
1668static int
fba45db2 1669stubhex (int ch)
c906108c
SS
1670{
1671 if (ch >= 'a' && ch <= 'f')
1672 return ch - 'a' + 10;
1673 if (ch >= '0' && ch <= '9')
1674 return ch - '0';
1675 if (ch >= 'A' && ch <= 'F')
1676 return ch - 'A' + 10;
1677 return -1;
1678}
1679
1680static int
fba45db2 1681stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
1682{
1683 int nibble;
1684 int retval = 0;
1685
1686 while (fieldlength)
1687 {
1688 nibble = stubhex (*buff++);
1689 retval |= nibble;
1690 fieldlength--;
1691 if (fieldlength)
1692 retval = retval << 4;
1693 }
1694 return retval;
1695}
1696
1697char *
fba45db2 1698unpack_varlen_hex (char *buff, /* packet to parse */
b2dd6311 1699 ULONGEST *result)
c906108c
SS
1700{
1701 int nibble;
d49c44d5 1702 ULONGEST retval = 0;
c906108c
SS
1703
1704 while (ishex (*buff, &nibble))
1705 {
1706 buff++;
1707 retval = retval << 4;
1708 retval |= nibble & 0x0f;
1709 }
1710 *result = retval;
1711 return buff;
1712}
1713
1714static char *
fba45db2 1715unpack_nibble (char *buf, int *val)
c906108c 1716{
b7589f7d 1717 *val = fromhex (*buf++);
c906108c
SS
1718 return buf;
1719}
1720
1721static char *
fba45db2 1722pack_nibble (char *buf, int nibble)
c906108c
SS
1723{
1724 *buf++ = hexchars[(nibble & 0x0f)];
1725 return buf;
1726}
1727
1728static char *
fba45db2 1729pack_hex_byte (char *pkt, int byte)
c906108c
SS
1730{
1731 *pkt++ = hexchars[(byte >> 4) & 0xf];
1732 *pkt++ = hexchars[(byte & 0xf)];
1733 return pkt;
1734}
1735
1736static char *
fba45db2 1737unpack_byte (char *buf, int *value)
c906108c
SS
1738{
1739 *value = stub_unpack_int (buf, 2);
1740 return buf + 2;
1741}
1742
1743static char *
fba45db2 1744pack_int (char *buf, int value)
c906108c
SS
1745{
1746 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1747 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1748 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1749 buf = pack_hex_byte (buf, (value & 0xff));
1750 return buf;
1751}
1752
1753static char *
fba45db2 1754unpack_int (char *buf, int *value)
c906108c
SS
1755{
1756 *value = stub_unpack_int (buf, 8);
1757 return buf + 8;
1758}
1759
23860348 1760#if 0 /* Currently unused, uncomment when needed. */
a14ed312 1761static char *pack_string (char *pkt, char *string);
c906108c
SS
1762
1763static char *
fba45db2 1764pack_string (char *pkt, char *string)
c906108c
SS
1765{
1766 char ch;
1767 int len;
1768
1769 len = strlen (string);
1770 if (len > 200)
23860348 1771 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
1772 pkt = pack_hex_byte (pkt, len);
1773 while (len-- > 0)
1774 {
1775 ch = *string++;
1776 if ((ch == '\0') || (ch == '#'))
23860348 1777 ch = '*'; /* Protect encapsulation. */
c906108c
SS
1778 *pkt++ = ch;
1779 }
1780 return pkt;
1781}
1782#endif /* 0 (unused) */
1783
1784static char *
fba45db2 1785unpack_string (char *src, char *dest, int length)
c906108c
SS
1786{
1787 while (length--)
1788 *dest++ = *src++;
1789 *dest = '\0';
1790 return src;
1791}
1792
1793static char *
fba45db2 1794pack_threadid (char *pkt, threadref *id)
c906108c
SS
1795{
1796 char *limit;
1797 unsigned char *altid;
1798
1799 altid = (unsigned char *) id;
1800 limit = pkt + BUF_THREAD_ID_SIZE;
1801 while (pkt < limit)
1802 pkt = pack_hex_byte (pkt, *altid++);
1803 return pkt;
1804}
1805
1806
1807static char *
fba45db2 1808unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
1809{
1810 char *altref;
1811 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1812 int x, y;
1813
1814 altref = (char *) id;
1815
1816 while (inbuf < limit)
1817 {
1818 x = stubhex (*inbuf++);
1819 y = stubhex (*inbuf++);
1820 *altref++ = (x << 4) | y;
1821 }
1822 return inbuf;
1823}
1824
1825/* Externally, threadrefs are 64 bits but internally, they are still
1826 ints. This is due to a mismatch of specifications. We would like
1827 to use 64bit thread references internally. This is an adapter
1828 function. */
1829
1830void
fba45db2 1831int_to_threadref (threadref *id, int value)
c906108c
SS
1832{
1833 unsigned char *scan;
1834
1835 scan = (unsigned char *) id;
1836 {
1837 int i = 4;
1838 while (i--)
1839 *scan++ = 0;
1840 }
1841 *scan++ = (value >> 24) & 0xff;
1842 *scan++ = (value >> 16) & 0xff;
1843 *scan++ = (value >> 8) & 0xff;
1844 *scan++ = (value & 0xff);
1845}
1846
1847static int
fba45db2 1848threadref_to_int (threadref *ref)
c906108c
SS
1849{
1850 int i, value = 0;
1851 unsigned char *scan;
1852
cfd77fa1 1853 scan = *ref;
c906108c
SS
1854 scan += 4;
1855 i = 4;
1856 while (i-- > 0)
1857 value = (value << 8) | ((*scan++) & 0xff);
1858 return value;
1859}
1860
1861static void
fba45db2 1862copy_threadref (threadref *dest, threadref *src)
c906108c
SS
1863{
1864 int i;
1865 unsigned char *csrc, *cdest;
1866
1867 csrc = (unsigned char *) src;
1868 cdest = (unsigned char *) dest;
1869 i = 8;
1870 while (i--)
1871 *cdest++ = *csrc++;
1872}
1873
1874static int
fba45db2 1875threadmatch (threadref *dest, threadref *src)
c906108c 1876{
23860348 1877 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
1878#if 0
1879 unsigned char *srcp, *destp;
1880 int i, result;
1881 srcp = (char *) src;
1882 destp = (char *) dest;
1883
1884 result = 1;
1885 while (i-- > 0)
1886 result &= (*srcp++ == *destp++) ? 1 : 0;
1887 return result;
1888#endif
1889 return 1;
1890}
1891
1892/*
c5aa993b
JM
1893 threadid:1, # always request threadid
1894 context_exists:2,
1895 display:4,
1896 unique_name:8,
1897 more_display:16
1898 */
c906108c
SS
1899
1900/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1901
1902static char *
fba45db2 1903pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 1904{
23860348
MS
1905 *pkt++ = 'q'; /* Info Query */
1906 *pkt++ = 'P'; /* process or thread info */
1907 pkt = pack_int (pkt, mode); /* mode */
c906108c 1908 pkt = pack_threadid (pkt, id); /* threadid */
23860348 1909 *pkt = '\0'; /* terminate */
c906108c
SS
1910 return pkt;
1911}
1912
23860348 1913/* These values tag the fields in a thread info response packet. */
c906108c 1914/* Tagging the fields allows us to request specific fields and to
23860348 1915 add more fields as time goes by. */
c906108c 1916
23860348 1917#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 1918#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 1919 fetch registers and its stack? */
c5aa993b 1920#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 1921#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 1922#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 1923 the process. */
c906108c
SS
1924
1925static int
fba45db2
KB
1926remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1927 struct gdb_ext_thread_info *info)
c906108c 1928{
d01949b6 1929 struct remote_state *rs = get_remote_state ();
c906108c 1930 int mask, length;
cfd77fa1 1931 int tag;
c906108c 1932 threadref ref;
6d820c5c 1933 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
1934 int retval = 1;
1935
23860348 1936 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
1937 info->active = 0;
1938 info->display[0] = '\0';
1939 info->shortname[0] = '\0';
1940 info->more_display[0] = '\0';
1941
23860348
MS
1942 /* Assume the characters indicating the packet type have been
1943 stripped. */
c906108c
SS
1944 pkt = unpack_int (pkt, &mask); /* arg mask */
1945 pkt = unpack_threadid (pkt, &ref);
1946
1947 if (mask == 0)
8a3fe4f8 1948 warning (_("Incomplete response to threadinfo request."));
c906108c 1949 if (!threadmatch (&ref, expectedref))
23860348 1950 { /* This is an answer to a different request. */
8a3fe4f8 1951 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
1952 return 0;
1953 }
1954 copy_threadref (&info->threadid, &ref);
1955
23860348 1956 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 1957
23860348
MS
1958 /* Packets are terminated with nulls. */
1959 while ((pkt < limit) && mask && *pkt)
c906108c
SS
1960 {
1961 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
1962 pkt = unpack_byte (pkt, &length); /* length */
1963 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 1964 {
8a3fe4f8 1965 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
1966 retval = 0;
1967 break;
1968 }
1969 if (tag == TAG_THREADID)
1970 {
1971 if (length != 16)
1972 {
8a3fe4f8 1973 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
1974 retval = 0;
1975 break;
1976 }
1977 pkt = unpack_threadid (pkt, &ref);
1978 mask = mask & ~TAG_THREADID;
1979 continue;
1980 }
1981 if (tag == TAG_EXISTS)
1982 {
1983 info->active = stub_unpack_int (pkt, length);
1984 pkt += length;
1985 mask = mask & ~(TAG_EXISTS);
1986 if (length > 8)
1987 {
8a3fe4f8 1988 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
1989 retval = 0;
1990 break;
1991 }
1992 continue;
1993 }
1994 if (tag == TAG_THREADNAME)
1995 {
1996 pkt = unpack_string (pkt, &info->shortname[0], length);
1997 mask = mask & ~TAG_THREADNAME;
1998 continue;
1999 }
2000 if (tag == TAG_DISPLAY)
2001 {
2002 pkt = unpack_string (pkt, &info->display[0], length);
2003 mask = mask & ~TAG_DISPLAY;
2004 continue;
2005 }
2006 if (tag == TAG_MOREDISPLAY)
2007 {
2008 pkt = unpack_string (pkt, &info->more_display[0], length);
2009 mask = mask & ~TAG_MOREDISPLAY;
2010 continue;
2011 }
8a3fe4f8 2012 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2013 break; /* Not a tag we know about. */
c906108c
SS
2014 }
2015 return retval;
2016}
2017
2018static int
fba45db2
KB
2019remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2020 struct gdb_ext_thread_info *info)
c906108c 2021{
d01949b6 2022 struct remote_state *rs = get_remote_state ();
c906108c 2023 int result;
c906108c 2024
2e9f7625
DJ
2025 pack_threadinfo_request (rs->buf, fieldset, threadid);
2026 putpkt (rs->buf);
6d820c5c 2027 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2028
2029 if (rs->buf[0] == '\0')
2030 return 0;
2031
2e9f7625 2032 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2033 threadid, info);
c906108c
SS
2034 return result;
2035}
2036
c906108c
SS
2037/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2038
2039static char *
fba45db2
KB
2040pack_threadlist_request (char *pkt, int startflag, int threadcount,
2041 threadref *nextthread)
c906108c
SS
2042{
2043 *pkt++ = 'q'; /* info query packet */
2044 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2045 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2046 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2047 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2048 *pkt = '\0';
2049 return pkt;
2050}
2051
2052/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2053
2054static int
fba45db2
KB
2055parse_threadlist_response (char *pkt, int result_limit,
2056 threadref *original_echo, threadref *resultlist,
2057 int *doneflag)
c906108c 2058{
d01949b6 2059 struct remote_state *rs = get_remote_state ();
c906108c
SS
2060 char *limit;
2061 int count, resultcount, done;
2062
2063 resultcount = 0;
2064 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2065 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2066 /* done parse past here */
c906108c
SS
2067 pkt = unpack_byte (pkt, &count); /* count field */
2068 pkt = unpack_nibble (pkt, &done);
2069 /* The first threadid is the argument threadid. */
2070 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2071 while ((count-- > 0) && (pkt < limit))
2072 {
2073 pkt = unpack_threadid (pkt, resultlist++);
2074 if (resultcount++ >= result_limit)
2075 break;
2076 }
2077 if (doneflag)
2078 *doneflag = done;
2079 return resultcount;
2080}
2081
2082static int
fba45db2
KB
2083remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2084 int *done, int *result_count, threadref *threadlist)
c906108c 2085{
d01949b6 2086 struct remote_state *rs = get_remote_state ();
c906108c 2087 static threadref echo_nextthread;
c906108c
SS
2088 int result = 1;
2089
23860348 2090 /* Trancate result limit to be smaller than the packet size. */
ea9c271d
DJ
2091 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= get_remote_packet_size ())
2092 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2093
6d820c5c
DJ
2094 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2095 putpkt (rs->buf);
2096 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2097
d8f2712d
VP
2098 if (*rs->buf == '\0')
2099 *result_count = 0;
2100 else
2101 *result_count =
2102 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2103 threadlist, done);
c906108c
SS
2104
2105 if (!threadmatch (&echo_nextthread, nextthread))
2106 {
23860348
MS
2107 /* FIXME: This is a good reason to drop the packet. */
2108 /* Possably, there is a duplicate response. */
c906108c
SS
2109 /* Possabilities :
2110 retransmit immediatly - race conditions
2111 retransmit after timeout - yes
2112 exit
2113 wait for packet, then exit
2114 */
8a3fe4f8 2115 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2116 return 0; /* I choose simply exiting. */
c906108c
SS
2117 }
2118 if (*result_count <= 0)
2119 {
2120 if (*done != 1)
2121 {
8a3fe4f8 2122 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2123 result = 0;
2124 }
2125 return result; /* break; */
2126 }
2127 if (*result_count > result_limit)
2128 {
2129 *result_count = 0;
8a3fe4f8 2130 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2131 return 0;
2132 }
2133 return result;
2134}
2135
23860348
MS
2136/* This is the interface between remote and threads, remotes upper
2137 interface. */
c906108c
SS
2138
2139/* remote_find_new_threads retrieves the thread list and for each
2140 thread in the list, looks up the thread in GDB's internal list,
79d7f229 2141 adding the thread if it does not already exist. This involves
c906108c
SS
2142 getting partial thread lists from the remote target so, polling the
2143 quit_flag is required. */
2144
2145
23860348 2146/* About this many threadisds fit in a packet. */
c906108c
SS
2147
2148#define MAXTHREADLISTRESULTS 32
2149
2150static int
fba45db2
KB
2151remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2152 int looplimit)
c906108c
SS
2153{
2154 int done, i, result_count;
2155 int startflag = 1;
2156 int result = 1;
2157 int loopcount = 0;
2158 static threadref nextthread;
2159 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2160
2161 done = 0;
2162 while (!done)
2163 {
2164 if (loopcount++ > looplimit)
2165 {
2166 result = 0;
8a3fe4f8 2167 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2168 break;
2169 }
2170 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2171 &done, &result_count, resultthreadlist))
2172 {
2173 result = 0;
2174 break;
2175 }
23860348 2176 /* Clear for later iterations. */
c906108c
SS
2177 startflag = 0;
2178 /* Setup to resume next batch of thread references, set nextthread. */
2179 if (result_count >= 1)
2180 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2181 i = 0;
2182 while (result_count--)
2183 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2184 break;
2185 }
2186 return result;
2187}
2188
2189static int
fba45db2 2190remote_newthread_step (threadref *ref, void *context)
c906108c 2191{
79d7f229
PA
2192 int pid = ptid_get_pid (inferior_ptid);
2193 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
39f77062
KB
2194
2195 if (!in_thread_list (ptid))
2196 add_thread (ptid);
c906108c
SS
2197 return 1; /* continue iterator */
2198}
2199
2200#define CRAZY_MAX_THREADS 1000
2201
39f77062
KB
2202static ptid_t
2203remote_current_thread (ptid_t oldpid)
c906108c 2204{
d01949b6 2205 struct remote_state *rs = get_remote_state ();
79d7f229
PA
2206 char *p = rs->buf;
2207 int tid;
2208 int pid;
c906108c
SS
2209
2210 putpkt ("qC");
6d820c5c 2211 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2212 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
82f73884 2213 return read_ptid (&rs->buf[2], NULL);
c906108c
SS
2214 else
2215 return oldpid;
2216}
2217
802188a7
RM
2218/* Find new threads for info threads command.
2219 * Original version, using John Metzler's thread protocol.
9d1f7ab2 2220 */
cce74817
JM
2221
2222static void
fba45db2 2223remote_find_new_threads (void)
c906108c 2224{
c5aa993b
JM
2225 remote_threadlist_iterator (remote_newthread_step, 0,
2226 CRAZY_MAX_THREADS);
c906108c
SS
2227}
2228
9d1f7ab2
MS
2229/*
2230 * Find all threads for info threads command.
2231 * Uses new thread protocol contributed by Cisco.
2232 * Falls back and attempts to use the older method (above)
2233 * if the target doesn't respond to the new method.
2234 */
2235
0f71a2f6 2236static void
28439f5e 2237remote_threads_info (struct target_ops *ops)
0f71a2f6 2238{
d01949b6 2239 struct remote_state *rs = get_remote_state ();
085dd6e6 2240 char *bufp;
79d7f229 2241 ptid_t new_thread;
0f71a2f6
JM
2242
2243 if (remote_desc == 0) /* paranoia */
8a3fe4f8 2244 error (_("Command can only be used when connected to the remote target."));
0f71a2f6 2245
9d1f7ab2
MS
2246 if (use_threadinfo_query)
2247 {
2248 putpkt ("qfThreadInfo");
6d820c5c 2249 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2250 bufp = rs->buf;
9d1f7ab2 2251 if (bufp[0] != '\0') /* q packet recognized */
802188a7 2252 {
9d1f7ab2
MS
2253 while (*bufp++ == 'm') /* reply contains one or more TID */
2254 {
2255 do
2256 {
82f73884 2257 new_thread = read_ptid (bufp, &bufp);
1941c569 2258 if (!ptid_equal (new_thread, null_ptid))
82f73884 2259 {
74531fed 2260 /* In non-stop mode, we assume new found threads
1941c569 2261 are running until proven otherwise with a
74531fed
PA
2262 stop reply. In all-stop, we can only get
2263 here if all threads are stopped. */
1941c569
PA
2264 int running = non_stop ? 1 : 0;
2265
2266 remote_notice_new_inferior (new_thread, running);
82f73884 2267 }
9d1f7ab2
MS
2268 }
2269 while (*bufp++ == ','); /* comma-separated list */
2270 putpkt ("qsThreadInfo");
6d820c5c 2271 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2272 bufp = rs->buf;
9d1f7ab2
MS
2273 }
2274 return; /* done */
2275 }
2276 }
2277
74531fed
PA
2278 /* Only qfThreadInfo is supported in non-stop mode. */
2279 if (non_stop)
2280 return;
2281
23860348 2282 /* Else fall back to old method based on jmetzler protocol. */
9d1f7ab2
MS
2283 use_threadinfo_query = 0;
2284 remote_find_new_threads ();
2285 return;
2286}
2287
802188a7 2288/*
9d1f7ab2
MS
2289 * Collect a descriptive string about the given thread.
2290 * The target may say anything it wants to about the thread
2291 * (typically info about its blocked / runnable state, name, etc.).
2292 * This string will appear in the info threads display.
802188a7 2293 *
9d1f7ab2
MS
2294 * Optional: targets are not required to implement this function.
2295 */
2296
2297static char *
2298remote_threads_extra_info (struct thread_info *tp)
2299{
d01949b6 2300 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
2301 int result;
2302 int set;
2303 threadref id;
2304 struct gdb_ext_thread_info threadinfo;
23860348 2305 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
2306 int n = 0; /* position in display_buf */
2307
2308 if (remote_desc == 0) /* paranoia */
8e65ff28 2309 internal_error (__FILE__, __LINE__,
e2e0b3e5 2310 _("remote_threads_extra_info"));
9d1f7ab2 2311
60e569b9
PA
2312 if (ptid_equal (tp->ptid, magic_null_ptid)
2313 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2314 /* This is the main thread which was added by GDB. The remote
2315 server doesn't know about it. */
2316 return NULL;
2317
9d1f7ab2
MS
2318 if (use_threadextra_query)
2319 {
82f73884
PA
2320 char *b = rs->buf;
2321 char *endb = rs->buf + get_remote_packet_size ();
2322
2323 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2324 b += strlen (b);
2325 write_ptid (b, endb, tp->ptid);
2326
2e9f7625 2327 putpkt (rs->buf);
6d820c5c 2328 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2329 if (rs->buf[0] != 0)
9d1f7ab2 2330 {
2e9f7625
DJ
2331 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2332 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 2333 display_buf [result] = '\0';
9d1f7ab2
MS
2334 return display_buf;
2335 }
0f71a2f6 2336 }
9d1f7ab2
MS
2337
2338 /* If the above query fails, fall back to the old method. */
2339 use_threadextra_query = 0;
2340 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2341 | TAG_MOREDISPLAY | TAG_DISPLAY;
79d7f229 2342 int_to_threadref (&id, ptid_get_tid (tp->ptid));
9d1f7ab2
MS
2343 if (remote_get_threadinfo (&id, set, &threadinfo))
2344 if (threadinfo.active)
0f71a2f6 2345 {
9d1f7ab2 2346 if (*threadinfo.shortname)
2bc416ba 2347 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 2348 " Name: %s,", threadinfo.shortname);
9d1f7ab2 2349 if (*threadinfo.display)
2bc416ba 2350 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2351 " State: %s,", threadinfo.display);
9d1f7ab2 2352 if (*threadinfo.more_display)
2bc416ba 2353 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2354 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
2355
2356 if (n > 0)
c5aa993b 2357 {
23860348 2358 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
2359 if (',' == display_buf[n-1])
2360 display_buf[n-1] = ' ';
2361 return display_buf;
c5aa993b 2362 }
0f71a2f6 2363 }
9d1f7ab2 2364 return NULL;
0f71a2f6 2365}
c906108c 2366\f
c5aa993b 2367
24b06219 2368/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
2369
2370static void
fba45db2 2371extended_remote_restart (void)
c906108c 2372{
d01949b6 2373 struct remote_state *rs = get_remote_state ();
c906108c
SS
2374
2375 /* Send the restart command; for reasons I don't understand the
2376 remote side really expects a number after the "R". */
ea9c271d 2377 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 2378 putpkt (rs->buf);
c906108c 2379
ad9a8f3f 2380 remote_fileio_reset ();
c906108c
SS
2381}
2382\f
2383/* Clean up connection to a remote debugger. */
2384
c906108c 2385static void
fba45db2 2386remote_close (int quitting)
c906108c 2387{
d3fd5342
PA
2388 if (remote_desc == NULL)
2389 return; /* already closed */
2390
2391 /* Make sure we leave stdin registered in the event loop, and we
2392 don't leave the async SIGINT signal handler installed. */
2393 remote_terminal_ours ();
ce5ce7ed 2394
d3fd5342
PA
2395 serial_close (remote_desc);
2396 remote_desc = NULL;
ce5ce7ed
PA
2397
2398 /* We don't have a connection to the remote stub anymore. Get rid
2399 of all the inferiors and their threads we were controlling. */
2400 discard_all_inferiors ();
2401
74531fed
PA
2402 /* We're no longer interested in any of these events. */
2403 discard_pending_stop_replies (-1);
2404
2405 if (remote_async_inferior_event_token)
2406 delete_async_event_handler (&remote_async_inferior_event_token);
2407 if (remote_async_get_pending_events_token)
2408 delete_async_event_handler (&remote_async_get_pending_events_token);
c906108c
SS
2409}
2410
23860348 2411/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
2412
2413static void
fba45db2 2414get_offsets (void)
c906108c 2415{
d01949b6 2416 struct remote_state *rs = get_remote_state ();
2e9f7625 2417 char *buf;
085dd6e6 2418 char *ptr;
31d99776
DJ
2419 int lose, num_segments = 0, do_sections, do_segments;
2420 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 2421 struct section_offsets *offs;
31d99776
DJ
2422 struct symfile_segment_data *data;
2423
2424 if (symfile_objfile == NULL)
2425 return;
c906108c
SS
2426
2427 putpkt ("qOffsets");
6d820c5c 2428 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2429 buf = rs->buf;
c906108c
SS
2430
2431 if (buf[0] == '\000')
2432 return; /* Return silently. Stub doesn't support
23860348 2433 this command. */
c906108c
SS
2434 if (buf[0] == 'E')
2435 {
8a3fe4f8 2436 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
2437 return;
2438 }
2439
2440 /* Pick up each field in turn. This used to be done with scanf, but
2441 scanf will make trouble if CORE_ADDR size doesn't match
2442 conversion directives correctly. The following code will work
2443 with any size of CORE_ADDR. */
2444 text_addr = data_addr = bss_addr = 0;
2445 ptr = buf;
2446 lose = 0;
2447
2448 if (strncmp (ptr, "Text=", 5) == 0)
2449 {
2450 ptr += 5;
2451 /* Don't use strtol, could lose on big values. */
2452 while (*ptr && *ptr != ';')
2453 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 2454
31d99776
DJ
2455 if (strncmp (ptr, ";Data=", 6) == 0)
2456 {
2457 ptr += 6;
2458 while (*ptr && *ptr != ';')
2459 data_addr = (data_addr << 4) + fromhex (*ptr++);
2460 }
2461 else
2462 lose = 1;
2463
2464 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2465 {
2466 ptr += 5;
2467 while (*ptr && *ptr != ';')
2468 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 2469
31d99776
DJ
2470 if (bss_addr != data_addr)
2471 warning (_("Target reported unsupported offsets: %s"), buf);
2472 }
2473 else
2474 lose = 1;
2475 }
2476 else if (strncmp (ptr, "TextSeg=", 8) == 0)
c906108c 2477 {
31d99776
DJ
2478 ptr += 8;
2479 /* Don't use strtol, could lose on big values. */
c906108c 2480 while (*ptr && *ptr != ';')
31d99776
DJ
2481 text_addr = (text_addr << 4) + fromhex (*ptr++);
2482 num_segments = 1;
2483
2484 if (strncmp (ptr, ";DataSeg=", 9) == 0)
2485 {
2486 ptr += 9;
2487 while (*ptr && *ptr != ';')
2488 data_addr = (data_addr << 4) + fromhex (*ptr++);
2489 num_segments++;
2490 }
c906108c
SS
2491 }
2492 else
2493 lose = 1;
2494
2495 if (lose)
8a3fe4f8 2496 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
2497 else if (*ptr != '\0')
2498 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 2499
802188a7 2500 offs = ((struct section_offsets *)
a39a16c4 2501 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 2502 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 2503 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 2504
31d99776
DJ
2505 data = get_symfile_segment_data (symfile_objfile->obfd);
2506 do_segments = (data != NULL);
2507 do_sections = num_segments == 0;
c906108c 2508
28c32713 2509 if (num_segments > 0)
31d99776 2510 {
31d99776
DJ
2511 segments[0] = text_addr;
2512 segments[1] = data_addr;
2513 }
28c32713
JB
2514 /* If we have two segments, we can still try to relocate everything
2515 by assuming that the .text and .data offsets apply to the whole
2516 text and data segments. Convert the offsets given in the packet
2517 to base addresses for symfile_map_offsets_to_segments. */
2518 else if (data && data->num_segments == 2)
2519 {
2520 segments[0] = data->segment_bases[0] + text_addr;
2521 segments[1] = data->segment_bases[1] + data_addr;
2522 num_segments = 2;
2523 }
8d385431
DJ
2524 /* If the object file has only one segment, assume that it is text
2525 rather than data; main programs with no writable data are rare,
2526 but programs with no code are useless. Of course the code might
2527 have ended up in the data segment... to detect that we would need
2528 the permissions here. */
2529 else if (data && data->num_segments == 1)
2530 {
2531 segments[0] = data->segment_bases[0] + text_addr;
2532 num_segments = 1;
2533 }
28c32713
JB
2534 /* There's no way to relocate by segment. */
2535 else
2536 do_segments = 0;
31d99776
DJ
2537
2538 if (do_segments)
2539 {
2540 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
2541 offs, num_segments, segments);
2542
2543 if (ret == 0 && !do_sections)
2544 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2545
2546 if (ret > 0)
2547 do_sections = 0;
2548 }
c906108c 2549
9ef895d6
DJ
2550 if (data)
2551 free_symfile_segment_data (data);
31d99776
DJ
2552
2553 if (do_sections)
2554 {
2555 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2556
2557 /* This is a temporary kludge to force data and bss to use the same offsets
2558 because that's what nlmconv does now. The real solution requires changes
2559 to the stub and remote.c that I don't have time to do right now. */
2560
2561 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2562 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2563 }
c906108c
SS
2564
2565 objfile_relocate (symfile_objfile, offs);
2566}
2567
74531fed
PA
2568/* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
2569 threads we know are stopped already. This is used during the
2570 initial remote connection in non-stop mode --- threads that are
2571 reported as already being stopped are left stopped. */
2572
2573static int
2574set_stop_requested_callback (struct thread_info *thread, void *data)
2575{
2576 /* If we have a stop reply for this thread, it must be stopped. */
2577 if (peek_stop_reply (thread->ptid))
2578 set_stop_requested (thread->ptid, 1);
2579
2580 return 0;
2581}
2582
8621d6a9 2583/* Stub for catch_exception. */
0f71a2f6 2584
2d717e4f
DJ
2585struct start_remote_args
2586{
2587 int from_tty;
2588
2589 /* The current target. */
2590 struct target_ops *target;
2591
2592 /* Non-zero if this is an extended-remote target. */
2593 int extended_p;
2594};
2595
9cbc821d 2596static void
2d717e4f 2597remote_start_remote (struct ui_out *uiout, void *opaque)
c906108c 2598{
2d717e4f 2599 struct start_remote_args *args = opaque;
c8d104ad
PA
2600 struct remote_state *rs = get_remote_state ();
2601 struct packet_config *noack_config;
2d717e4f 2602 char *wait_status = NULL;
8621d6a9 2603
23860348 2604 immediate_quit++; /* Allow user to interrupt it. */
c906108c 2605
c8d104ad
PA
2606 /* Ack any packet which the remote side has already sent. */
2607 serial_write (remote_desc, "+", 1);
2608
2609 /* The first packet we send to the target is the optional "supported
2610 packets" request. If the target can answer this, it will tell us
2611 which later probes to skip. */
2612 remote_query_supported ();
2613
2614 /* Next, we possibly activate noack mode.
2615
2616 If the QStartNoAckMode packet configuration is set to AUTO,
2617 enable noack mode if the stub reported a wish for it with
2618 qSupported.
2619
2620 If set to TRUE, then enable noack mode even if the stub didn't
2621 report it in qSupported. If the stub doesn't reply OK, the
2622 session ends with an error.
2623
2624 If FALSE, then don't activate noack mode, regardless of what the
2625 stub claimed should be the default with qSupported. */
2626
2627 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
2628
2629 if (noack_config->detect == AUTO_BOOLEAN_TRUE
2630 || (noack_config->detect == AUTO_BOOLEAN_AUTO
2631 && noack_config->support == PACKET_ENABLE))
2632 {
2633 putpkt ("QStartNoAckMode");
2634 getpkt (&rs->buf, &rs->buf_size, 0);
2635 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
2636 rs->noack_mode = 1;
2637 }
2638
5fe04517
PA
2639 if (args->extended_p)
2640 {
2641 /* Tell the remote that we are using the extended protocol. */
2642 putpkt ("!");
2643 getpkt (&rs->buf, &rs->buf_size, 0);
2644 }
2645
d962ef82
DJ
2646 /* Next, if the target can specify a description, read it. We do
2647 this before anything involving memory or registers. */
2648 target_find_description ();
2649
50c71eaf
PA
2650 /* On OSs where the list of libraries is global to all
2651 processes, we fetch them early. */
2652 if (gdbarch_has_global_solist (target_gdbarch))
2653 solib_add (NULL, args->from_tty, args->target, auto_solib_add);
2654
74531fed
PA
2655 if (non_stop)
2656 {
2657 if (!rs->non_stop_aware)
2658 error (_("Non-stop mode requested, but remote does not support non-stop"));
2659
2660 putpkt ("QNonStop:1");
2661 getpkt (&rs->buf, &rs->buf_size, 0);
2662
2663 if (strcmp (rs->buf, "OK") != 0)
2664 error ("Remote refused setting non-stop mode with: %s", rs->buf);
2665
2666 /* Find about threads and processes the stub is already
2667 controlling. We default to adding them in the running state.
2668 The '?' query below will then tell us about which threads are
2669 stopped. */
28439f5e 2670 remote_threads_info (args->target);
74531fed
PA
2671 }
2672 else if (rs->non_stop_aware)
2673 {
2674 /* Don't assume that the stub can operate in all-stop mode.
2675 Request it explicitely. */
2676 putpkt ("QNonStop:0");
2677 getpkt (&rs->buf, &rs->buf_size, 0);
2678
2679 if (strcmp (rs->buf, "OK") != 0)
2680 error ("Remote refused setting all-stop mode with: %s", rs->buf);
2681 }
2682
2d717e4f
DJ
2683 /* Check whether the target is running now. */
2684 putpkt ("?");
2685 getpkt (&rs->buf, &rs->buf_size, 0);
2686
74531fed 2687 if (!non_stop)
2d717e4f 2688 {
74531fed 2689 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 2690 {
74531fed
PA
2691 if (args->extended_p)
2692 {
2693 /* We're connected, but not running. Drop out before we
2694 call start_remote. */
2695 target_mark_exited (args->target);
2696 return;
2697 }
2698 else
2699 error (_("The target is not running (try extended-remote?)"));
2d717e4f
DJ
2700 }
2701 else
74531fed 2702 {
74531fed
PA
2703 /* Save the reply for later. */
2704 wait_status = alloca (strlen (rs->buf) + 1);
2705 strcpy (wait_status, rs->buf);
2706 }
2707
2708 /* Let the stub know that we want it to return the thread. */
2709 set_continue_thread (minus_one_ptid);
2710
2711 /* Without this, some commands which require an active target
2712 (such as kill) won't work. This variable serves (at least)
2713 double duty as both the pid of the target process (if it has
2714 such), and as a flag indicating that a target is active.
2715 These functions should be split out into seperate variables,
2716 especially since GDB will someday have a notion of debugging
2717 several processes. */
2718 inferior_ptid = magic_null_ptid;
2719
2720 /* Now, if we have thread information, update inferior_ptid. */
2721 inferior_ptid = remote_current_thread (inferior_ptid);
2722
0b16c5cf 2723 remote_add_inferior (ptid_get_pid (inferior_ptid), -1);
74531fed
PA
2724
2725 /* Always add the main thread. */
2726 add_thread_silent (inferior_ptid);
2727
2728 get_offsets (); /* Get text, data & bss offsets. */
2729
d962ef82
DJ
2730 /* If we could not find a description using qXfer, and we know
2731 how to do it some other way, try again. This is not
2732 supported for non-stop; it could be, but it is tricky if
2733 there are no stopped threads when we connect. */
2734 if (remote_read_description_p (args->target)
2735 && gdbarch_target_desc (target_gdbarch) == NULL)
2736 {
2737 target_clear_description ();
2738 target_find_description ();
2739 }
2740
74531fed
PA
2741 /* Use the previously fetched status. */
2742 gdb_assert (wait_status != NULL);
2743 strcpy (rs->buf, wait_status);
2744 rs->cached_wait_status = 1;
2745
2746 immediate_quit--;
2747 start_remote (args->from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
2748 }
2749 else
2750 {
68c97600
PA
2751 /* Clear WFI global state. Do this before finding about new
2752 threads and inferiors, and setting the current inferior.
2753 Otherwise we would clear the proceed status of the current
2754 inferior when we want its stop_soon state to be preserved
2755 (see notice_new_inferior). */
2756 init_wait_for_inferior ();
2757
74531fed
PA
2758 /* In non-stop, we will either get an "OK", meaning that there
2759 are no stopped threads at this time; or, a regular stop
2760 reply. In the latter case, there may be more than one thread
2761 stopped --- we pull them all out using the vStopped
2762 mechanism. */
2763 if (strcmp (rs->buf, "OK") != 0)
2764 {
2765 struct stop_reply *stop_reply;
2766 struct cleanup *old_chain;
2d717e4f 2767
74531fed
PA
2768 stop_reply = stop_reply_xmalloc ();
2769 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
2d717e4f 2770
74531fed
PA
2771 remote_parse_stop_reply (rs->buf, stop_reply);
2772 discard_cleanups (old_chain);
c0a2216e 2773
74531fed
PA
2774 /* get_pending_stop_replies acks this one, and gets the rest
2775 out. */
2776 pending_stop_reply = stop_reply;
2777 remote_get_pending_stop_replies ();
c906108c 2778
74531fed
PA
2779 /* Make sure that threads that were stopped remain
2780 stopped. */
2781 iterate_over_threads (set_stop_requested_callback, NULL);
2782 }
2d717e4f 2783
74531fed
PA
2784 if (target_can_async_p ())
2785 target_async (inferior_event_handler, 0);
c906108c 2786
74531fed
PA
2787 if (thread_count () == 0)
2788 {
2789 if (args->extended_p)
2790 {
2791 /* We're connected, but not running. Drop out before we
2792 call start_remote. */
2793 target_mark_exited (args->target);
2794 return;
2795 }
2796 else
2797 error (_("The target is not running (try extended-remote?)"));
2798 }
82f73884 2799
74531fed
PA
2800 if (args->extended_p)
2801 target_mark_running (args->target);
2802
2803 /* Let the stub know that we want it to return the thread. */
c0a2216e 2804
74531fed
PA
2805 /* Force the stub to choose a thread. */
2806 set_general_thread (null_ptid);
c906108c 2807
74531fed
PA
2808 /* Query it. */
2809 inferior_ptid = remote_current_thread (minus_one_ptid);
2810 if (ptid_equal (inferior_ptid, minus_one_ptid))
2811 error (_("remote didn't report the current thread in non-stop mode"));
c906108c 2812
74531fed
PA
2813 get_offsets (); /* Get text, data & bss offsets. */
2814
2815 /* In non-stop mode, any cached wait status will be stored in
2816 the stop reply queue. */
2817 gdb_assert (wait_status == NULL);
2818 }
c8d104ad 2819
c8d104ad
PA
2820 /* If we connected to a live target, do some additional setup. */
2821 if (target_has_execution)
2822 {
2823 if (exec_bfd) /* No use without an exec file. */
2824 remote_check_symbols (symfile_objfile);
2825 }
50c71eaf 2826
2567c7d9
PA
2827 /* If breakpoints are global, insert them now. */
2828 if (gdbarch_has_global_breakpoints (target_gdbarch)
50c71eaf
PA
2829 && breakpoints_always_inserted_mode ())
2830 insert_breakpoints ();
c906108c
SS
2831}
2832
2833/* Open a connection to a remote debugger.
2834 NAME is the filename used for communication. */
2835
2836static void
fba45db2 2837remote_open (char *name, int from_tty)
c906108c 2838{
75c99385 2839 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
2840}
2841
c906108c
SS
2842/* Open a connection to a remote debugger using the extended
2843 remote gdb protocol. NAME is the filename used for communication. */
2844
2845static void
fba45db2 2846extended_remote_open (char *name, int from_tty)
c906108c 2847{
75c99385 2848 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
2849}
2850
c906108c
SS
2851/* Generic code for opening a connection to a remote target. */
2852
d471ea57
AC
2853static void
2854init_all_packet_configs (void)
2855{
2856 int i;
444abaca
DJ
2857 for (i = 0; i < PACKET_MAX; i++)
2858 update_packet_config (&remote_protocol_packets[i]);
d471ea57
AC
2859}
2860
23860348 2861/* Symbol look-up. */
dc8acb97
MS
2862
2863static void
2864remote_check_symbols (struct objfile *objfile)
2865{
d01949b6 2866 struct remote_state *rs = get_remote_state ();
dc8acb97
MS
2867 char *msg, *reply, *tmp;
2868 struct minimal_symbol *sym;
2869 int end;
2870
444abaca 2871 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
dc8acb97
MS
2872 return;
2873
3c9c4b83
PA
2874 /* Make sure the remote is pointing at the right process. */
2875 set_general_process ();
2876
6d820c5c
DJ
2877 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2878 because we need both at the same time. */
ea9c271d 2879 msg = alloca (get_remote_packet_size ());
6d820c5c 2880
23860348 2881 /* Invite target to request symbol lookups. */
dc8acb97
MS
2882
2883 putpkt ("qSymbol::");
6d820c5c
DJ
2884 getpkt (&rs->buf, &rs->buf_size, 0);
2885 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2e9f7625 2886 reply = rs->buf;
dc8acb97
MS
2887
2888 while (strncmp (reply, "qSymbol:", 8) == 0)
2889 {
2890 tmp = &reply[8];
cfd77fa1 2891 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
2892 msg[end] = '\0';
2893 sym = lookup_minimal_symbol (msg, NULL, NULL);
2894 if (sym == NULL)
ea9c271d 2895 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 2896 else
2bbe3cc1
DJ
2897 {
2898 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
2899
2900 /* If this is a function address, return the start of code
2901 instead of any data function descriptor. */
1cf3db46 2902 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
2bbe3cc1
DJ
2903 sym_addr,
2904 &current_target);
2905
2906 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
2907 paddr_nz (sym_addr), &reply[8]);
2908 }
2909
dc8acb97 2910 putpkt (msg);
6d820c5c 2911 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2912 reply = rs->buf;
dc8acb97
MS
2913 }
2914}
2915
9db8d71f
DJ
2916static struct serial *
2917remote_serial_open (char *name)
2918{
2919 static int udp_warning = 0;
2920
2921 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2922 of in ser-tcp.c, because it is the remote protocol assuming that the
2923 serial connection is reliable and not the serial connection promising
2924 to be. */
2925 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2926 {
8a3fe4f8
AC
2927 warning (_("\
2928The remote protocol may be unreliable over UDP.\n\
2929Some events may be lost, rendering further debugging impossible."));
9db8d71f
DJ
2930 udp_warning = 1;
2931 }
2932
2933 return serial_open (name);
2934}
2935
be2a5f71
DJ
2936/* This type describes each known response to the qSupported
2937 packet. */
2938struct protocol_feature
2939{
2940 /* The name of this protocol feature. */
2941 const char *name;
2942
2943 /* The default for this protocol feature. */
2944 enum packet_support default_support;
2945
2946 /* The function to call when this feature is reported, or after
2947 qSupported processing if the feature is not supported.
2948 The first argument points to this structure. The second
2949 argument indicates whether the packet requested support be
2950 enabled, disabled, or probed (or the default, if this function
2951 is being called at the end of processing and this feature was
2952 not reported). The third argument may be NULL; if not NULL, it
2953 is a NUL-terminated string taken from the packet following
2954 this feature's name and an equals sign. */
2955 void (*func) (const struct protocol_feature *, enum packet_support,
2956 const char *);
2957
2958 /* The corresponding packet for this feature. Only used if
2959 FUNC is remote_supported_packet. */
2960 int packet;
2961};
2962
be2a5f71
DJ
2963static void
2964remote_supported_packet (const struct protocol_feature *feature,
2965 enum packet_support support,
2966 const char *argument)
2967{
2968 if (argument)
2969 {
2970 warning (_("Remote qSupported response supplied an unexpected value for"
2971 " \"%s\"."), feature->name);
2972 return;
2973 }
2974
2975 if (remote_protocol_packets[feature->packet].support
2976 == PACKET_SUPPORT_UNKNOWN)
2977 remote_protocol_packets[feature->packet].support = support;
2978}
be2a5f71
DJ
2979
2980static void
2981remote_packet_size (const struct protocol_feature *feature,
2982 enum packet_support support, const char *value)
2983{
2984 struct remote_state *rs = get_remote_state ();
2985
2986 int packet_size;
2987 char *value_end;
2988
2989 if (support != PACKET_ENABLE)
2990 return;
2991
2992 if (value == NULL || *value == '\0')
2993 {
2994 warning (_("Remote target reported \"%s\" without a size."),
2995 feature->name);
2996 return;
2997 }
2998
2999 errno = 0;
3000 packet_size = strtol (value, &value_end, 16);
3001 if (errno != 0 || *value_end != '\0' || packet_size < 0)
3002 {
3003 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3004 feature->name, value);
3005 return;
3006 }
3007
3008 if (packet_size > MAX_REMOTE_PACKET_SIZE)
3009 {
3010 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3011 packet_size, MAX_REMOTE_PACKET_SIZE);
3012 packet_size = MAX_REMOTE_PACKET_SIZE;
3013 }
3014
3015 /* Record the new maximum packet size. */
3016 rs->explicit_packet_size = packet_size;
3017}
3018
82f73884
PA
3019static void
3020remote_multi_process_feature (const struct protocol_feature *feature,
3021 enum packet_support support, const char *value)
3022{
3023 struct remote_state *rs = get_remote_state ();
3024 rs->multi_process_aware = (support == PACKET_ENABLE);
3025}
3026
74531fed
PA
3027static void
3028remote_non_stop_feature (const struct protocol_feature *feature,
3029 enum packet_support support, const char *value)
3030{
3031 struct remote_state *rs = get_remote_state ();
3032 rs->non_stop_aware = (support == PACKET_ENABLE);
3033}
3034
be2a5f71 3035static struct protocol_feature remote_protocol_features[] = {
0876f84a 3036 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 3037 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 3038 PACKET_qXfer_auxv },
23181151
DJ
3039 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3040 PACKET_qXfer_features },
cfa9d6d9
DJ
3041 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3042 PACKET_qXfer_libraries },
fd79ecee 3043 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 3044 PACKET_qXfer_memory_map },
4de6483e
UW
3045 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3046 PACKET_qXfer_spu_read },
3047 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3048 PACKET_qXfer_spu_write },
07e059b5
VP
3049 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3050 PACKET_qXfer_osdata },
89be2091
DJ
3051 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3052 PACKET_QPassSignals },
a6f3e723
SL
3053 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3054 PACKET_QStartNoAckMode },
82f73884 3055 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
74531fed 3056 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
4aa995e1
PA
3057 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3058 PACKET_qXfer_siginfo_read },
3059 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
3060 PACKET_qXfer_siginfo_write },
be2a5f71
DJ
3061};
3062
3063static void
3064remote_query_supported (void)
3065{
3066 struct remote_state *rs = get_remote_state ();
3067 char *next;
3068 int i;
3069 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
3070
3071 /* The packet support flags are handled differently for this packet
3072 than for most others. We treat an error, a disabled packet, and
3073 an empty response identically: any features which must be reported
3074 to be used will be automatically disabled. An empty buffer
3075 accomplishes this, since that is also the representation for a list
3076 containing no features. */
3077
3078 rs->buf[0] = 0;
3079 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
3080 {
82f73884
PA
3081 if (rs->extended)
3082 putpkt ("qSupported:multiprocess+");
3083 else
3084 putpkt ("qSupported");
3085
be2a5f71
DJ
3086 getpkt (&rs->buf, &rs->buf_size, 0);
3087
3088 /* If an error occured, warn, but do not return - just reset the
3089 buffer to empty and go on to disable features. */
3090 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
3091 == PACKET_ERROR)
3092 {
3093 warning (_("Remote failure reply: %s"), rs->buf);
3094 rs->buf[0] = 0;
3095 }
3096 }
3097
3098 memset (seen, 0, sizeof (seen));
3099
3100 next = rs->buf;
3101 while (*next)
3102 {
3103 enum packet_support is_supported;
3104 char *p, *end, *name_end, *value;
3105
3106 /* First separate out this item from the rest of the packet. If
3107 there's another item after this, we overwrite the separator
3108 (terminated strings are much easier to work with). */
3109 p = next;
3110 end = strchr (p, ';');
3111 if (end == NULL)
3112 {
3113 end = p + strlen (p);
3114 next = end;
3115 }
3116 else
3117 {
89be2091
DJ
3118 *end = '\0';
3119 next = end + 1;
3120
be2a5f71
DJ
3121 if (end == p)
3122 {
3123 warning (_("empty item in \"qSupported\" response"));
3124 continue;
3125 }
be2a5f71
DJ
3126 }
3127
3128 name_end = strchr (p, '=');
3129 if (name_end)
3130 {
3131 /* This is a name=value entry. */
3132 is_supported = PACKET_ENABLE;
3133 value = name_end + 1;
3134 *name_end = '\0';
3135 }
3136 else
3137 {
3138 value = NULL;
3139 switch (end[-1])
3140 {
3141 case '+':
3142 is_supported = PACKET_ENABLE;
3143 break;
3144
3145 case '-':
3146 is_supported = PACKET_DISABLE;
3147 break;
3148
3149 case '?':
3150 is_supported = PACKET_SUPPORT_UNKNOWN;
3151 break;
3152
3153 default:
3154 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
3155 continue;
3156 }
3157 end[-1] = '\0';
3158 }
3159
3160 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3161 if (strcmp (remote_protocol_features[i].name, p) == 0)
3162 {
3163 const struct protocol_feature *feature;
3164
3165 seen[i] = 1;
3166 feature = &remote_protocol_features[i];
3167 feature->func (feature, is_supported, value);
3168 break;
3169 }
3170 }
3171
3172 /* If we increased the packet size, make sure to increase the global
3173 buffer size also. We delay this until after parsing the entire
3174 qSupported packet, because this is the same buffer we were
3175 parsing. */
3176 if (rs->buf_size < rs->explicit_packet_size)
3177 {
3178 rs->buf_size = rs->explicit_packet_size;
3179 rs->buf = xrealloc (rs->buf, rs->buf_size);
3180 }
3181
3182 /* Handle the defaults for unmentioned features. */
3183 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3184 if (!seen[i])
3185 {
3186 const struct protocol_feature *feature;
3187
3188 feature = &remote_protocol_features[i];
3189 feature->func (feature, feature->default_support, NULL);
3190 }
3191}
3192
3193
c906108c 3194static void
75c99385 3195remote_open_1 (char *name, int from_tty, struct target_ops *target, int extended_p)
c906108c 3196{
d01949b6 3197 struct remote_state *rs = get_remote_state ();
a6f3e723 3198
c906108c 3199 if (name == 0)
8a3fe4f8 3200 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 3201 "serial device is attached to the remote system\n"
8a3fe4f8 3202 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 3203
23860348 3204 /* See FIXME above. */
c6ebd6cf 3205 if (!target_async_permitted)
92d1e331 3206 wait_forever_enabled_p = 1;
6426a772 3207
2d717e4f
DJ
3208 /* If we're connected to a running target, target_preopen will kill it.
3209 But if we're connected to a target system with no running process,
3210 then we will still be connected when it returns. Ask this question
3211 first, before target_preopen has a chance to kill anything. */
3212 if (remote_desc != NULL && !target_has_execution)
3213 {
3214 if (!from_tty
3215 || query (_("Already connected to a remote target. Disconnect? ")))
3216 pop_target ();
3217 else
3218 error (_("Still connected."));
3219 }
3220
c906108c
SS
3221 target_preopen (from_tty);
3222
3223 unpush_target (target);
3224
2d717e4f
DJ
3225 /* This time without a query. If we were connected to an
3226 extended-remote target and target_preopen killed the running
3227 process, we may still be connected. If we are starting "target
3228 remote" now, the extended-remote target will not have been
3229 removed by unpush_target. */
3230 if (remote_desc != NULL && !target_has_execution)
3231 pop_target ();
3232
89be2091
DJ
3233 /* Make sure we send the passed signals list the next time we resume. */
3234 xfree (last_pass_packet);
3235 last_pass_packet = NULL;
3236
ad9a8f3f 3237 remote_fileio_reset ();
1dd41f16
NS
3238 reopen_exec_file ();
3239 reread_symbols ();
3240
9db8d71f 3241 remote_desc = remote_serial_open (name);
c906108c
SS
3242 if (!remote_desc)
3243 perror_with_name (name);
3244
3245 if (baud_rate != -1)
3246 {
2cd58942 3247 if (serial_setbaudrate (remote_desc, baud_rate))
c906108c 3248 {
9b74d5d3
KB
3249 /* The requested speed could not be set. Error out to
3250 top level after closing remote_desc. Take care to
3251 set remote_desc to NULL to avoid closing remote_desc
3252 more than once. */
2cd58942 3253 serial_close (remote_desc);
9b74d5d3 3254 remote_desc = NULL;
c906108c
SS
3255 perror_with_name (name);
3256 }
3257 }
3258
2cd58942 3259 serial_raw (remote_desc);
c906108c
SS
3260
3261 /* If there is something sitting in the buffer we might take it as a
3262 response to a command, which would be bad. */
2cd58942 3263 serial_flush_input (remote_desc);
c906108c
SS
3264
3265 if (from_tty)
3266 {
3267 puts_filtered ("Remote debugging using ");
3268 puts_filtered (name);
3269 puts_filtered ("\n");
3270 }
23860348 3271 push_target (target); /* Switch to using remote target now. */
c906108c 3272
d962ef82
DJ
3273 /* Assume that the target is not running, until we learn otherwise. */
3274 if (extended_p)
3275 target_mark_exited (target);
2d717e4f 3276
74531fed
PA
3277 /* Register extra event sources in the event loop. */
3278 remote_async_inferior_event_token
3279 = create_async_event_handler (remote_async_inferior_event_handler,
3280 NULL);
3281 remote_async_get_pending_events_token
3282 = create_async_event_handler (remote_async_get_pending_events_handler,
3283 NULL);
3284
be2a5f71
DJ
3285 /* Reset the target state; these things will be queried either by
3286 remote_query_supported or as they are needed. */
d471ea57 3287 init_all_packet_configs ();
74531fed 3288 rs->cached_wait_status = 0;
be2a5f71 3289 rs->explicit_packet_size = 0;
a6f3e723 3290 rs->noack_mode = 0;
82f73884
PA
3291 rs->multi_process_aware = 0;
3292 rs->extended = extended_p;
74531fed 3293 rs->non_stop_aware = 0;
e24a49d8 3294 rs->waiting_for_stop_reply = 0;
802188a7 3295
79d7f229
PA
3296 general_thread = not_sent_ptid;
3297 continue_thread = not_sent_ptid;
c906108c 3298
9d1f7ab2
MS
3299 /* Probe for ability to use "ThreadInfo" query, as required. */
3300 use_threadinfo_query = 1;
3301 use_threadextra_query = 1;
3302
c6ebd6cf 3303 if (target_async_permitted)
92d1e331 3304 {
23860348 3305 /* With this target we start out by owning the terminal. */
92d1e331
DJ
3306 remote_async_terminal_ours_p = 1;
3307
3308 /* FIXME: cagney/1999-09-23: During the initial connection it is
3309 assumed that the target is already ready and able to respond to
3310 requests. Unfortunately remote_start_remote() eventually calls
3311 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
3312 around this. Eventually a mechanism that allows
3313 wait_for_inferior() to expect/get timeouts will be
23860348 3314 implemented. */
92d1e331
DJ
3315 wait_forever_enabled_p = 0;
3316 }
3317
23860348 3318 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 3319 no_shared_libraries (NULL, 0);
f78f6cf1 3320
74531fed
PA
3321 /* Start afresh. */
3322 init_thread_list ();
3323
36918e70 3324 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
3325 target (we'd otherwise be in an inconsistent state) and then
3326 propogate the error on up the exception chain. This ensures that
3327 the caller doesn't stumble along blindly assuming that the
3328 function succeeded. The CLI doesn't have this problem but other
3329 UI's, such as MI do.
36918e70
AC
3330
3331 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
3332 this function should return an error indication letting the
ce2826aa 3333 caller restore the previous state. Unfortunately the command
36918e70
AC
3334 ``target remote'' is directly wired to this function making that
3335 impossible. On a positive note, the CLI side of this problem has
3336 been fixed - the function set_cmd_context() makes it possible for
3337 all the ``target ....'' commands to share a common callback
3338 function. See cli-dump.c. */
109c3e39 3339 {
2d717e4f
DJ
3340 struct gdb_exception ex;
3341 struct start_remote_args args;
3342
3343 args.from_tty = from_tty;
3344 args.target = target;
3345 args.extended_p = extended_p;
3346
3347 ex = catch_exception (uiout, remote_start_remote, &args, RETURN_MASK_ALL);
109c3e39
AC
3348 if (ex.reason < 0)
3349 {
c8d104ad
PA
3350 /* Pop the partially set up target - unless something else did
3351 already before throwing the exception. */
3352 if (remote_desc != NULL)
3353 pop_target ();
c6ebd6cf 3354 if (target_async_permitted)
109c3e39
AC
3355 wait_forever_enabled_p = 1;
3356 throw_exception (ex);
3357 }
3358 }
c906108c 3359
c6ebd6cf 3360 if (target_async_permitted)
92d1e331 3361 wait_forever_enabled_p = 1;
43ff13b4
JM
3362}
3363
c906108c
SS
3364/* This takes a program previously attached to and detaches it. After
3365 this is done, GDB can be used to debug some other program. We
3366 better not have left any breakpoints in the target program or it'll
3367 die when it hits one. */
3368
3369static void
2d717e4f 3370remote_detach_1 (char *args, int from_tty, int extended)
c906108c 3371{
82f73884 3372 int pid = ptid_get_pid (inferior_ptid);
d01949b6 3373 struct remote_state *rs = get_remote_state ();
c906108c
SS
3374
3375 if (args)
8a3fe4f8 3376 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 3377
2d717e4f
DJ
3378 if (!target_has_execution)
3379 error (_("No process to detach from."));
3380
c906108c 3381 /* Tell the remote target to detach. */
82f73884
PA
3382 if (remote_multi_process_p (rs))
3383 sprintf (rs->buf, "D;%x", pid);
3384 else
3385 strcpy (rs->buf, "D");
3386
4ddda9b5
PA
3387 putpkt (rs->buf);
3388 getpkt (&rs->buf, &rs->buf_size, 0);
3389
82f73884
PA
3390 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
3391 ;
3392 else if (rs->buf[0] == '\0')
3393 error (_("Remote doesn't know how to detach"));
3394 else
4ddda9b5 3395 error (_("Can't detach process."));
c906108c 3396
c906108c 3397 if (from_tty)
2d717e4f 3398 {
82f73884
PA
3399 if (remote_multi_process_p (rs))
3400 printf_filtered (_("Detached from remote %s.\n"),
3401 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 3402 else
82f73884
PA
3403 {
3404 if (extended)
3405 puts_filtered (_("Detached from remote process.\n"));
3406 else
3407 puts_filtered (_("Ending remote debugging.\n"));
3408 }
2d717e4f 3409 }
82f73884 3410
74531fed 3411 discard_pending_stop_replies (pid);
82f73884 3412 target_mourn_inferior ();
2d717e4f
DJ
3413}
3414
3415static void
136d6dae 3416remote_detach (struct target_ops *ops, char *args, int from_tty)
2d717e4f
DJ
3417{
3418 remote_detach_1 (args, from_tty, 0);
3419}
3420
3421static void
136d6dae 3422extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
2d717e4f
DJ
3423{
3424 remote_detach_1 (args, from_tty, 1);
c906108c
SS
3425}
3426
6ad8ae5c
DJ
3427/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
3428
43ff13b4 3429static void
597320e7 3430remote_disconnect (struct target_ops *target, char *args, int from_tty)
43ff13b4 3431{
43ff13b4 3432 if (args)
2d717e4f 3433 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 3434
2d717e4f
DJ
3435 /* Make sure we unpush even the extended remote targets; mourn
3436 won't do it. So call remote_mourn_1 directly instead of
3437 target_mourn_inferior. */
3438 remote_mourn_1 (target);
3439
43ff13b4
JM
3440 if (from_tty)
3441 puts_filtered ("Ending remote debugging.\n");
3442}
3443
2d717e4f
DJ
3444/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
3445 be chatty about it. */
3446
3447static void
3448extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
3449{
3450 struct remote_state *rs = get_remote_state ();
be86555c 3451 int pid;
2d717e4f 3452 char *dummy;
96ef3384 3453 char *wait_status = NULL;
2d717e4f
DJ
3454
3455 if (!args)
3456 error_no_arg (_("process-id to attach"));
3457
3458 dummy = args;
3459 pid = strtol (args, &dummy, 0);
3460 /* Some targets don't set errno on errors, grrr! */
3461 if (pid == 0 && args == dummy)
3462 error (_("Illegal process-id: %s."), args);
3463
3464 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3465 error (_("This target does not support attaching to a process"));
3466
3467 sprintf (rs->buf, "vAttach;%x", pid);
3468 putpkt (rs->buf);
3469 getpkt (&rs->buf, &rs->buf_size, 0);
3470
3471 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
3472 {
3473 if (from_tty)
3474 printf_unfiltered (_("Attached to %s\n"),
3475 target_pid_to_str (pid_to_ptid (pid)));
3476
74531fed
PA
3477 if (!non_stop)
3478 {
3479 /* Save the reply for later. */
3480 wait_status = alloca (strlen (rs->buf) + 1);
3481 strcpy (wait_status, rs->buf);
3482 }
3483 else if (strcmp (rs->buf, "OK") != 0)
3484 error (_("Attaching to %s failed with: %s"),
3485 target_pid_to_str (pid_to_ptid (pid)),
3486 rs->buf);
2d717e4f
DJ
3487 }
3488 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3489 error (_("This target does not support attaching to a process"));
3490 else
3491 error (_("Attaching to %s failed"),
3492 target_pid_to_str (pid_to_ptid (pid)));
3493
bad34192
PA
3494 remote_add_inferior (pid, 1);
3495
2d717e4f 3496 inferior_ptid = pid_to_ptid (pid);
79d7f229 3497
bad34192
PA
3498 if (non_stop)
3499 {
3500 struct thread_info *thread;
79d7f229 3501
bad34192
PA
3502 /* Get list of threads. */
3503 remote_threads_info (target);
82f73884 3504
bad34192
PA
3505 thread = first_thread_of_process (pid);
3506 if (thread)
3507 inferior_ptid = thread->ptid;
3508 else
3509 inferior_ptid = pid_to_ptid (pid);
3510
3511 /* Invalidate our notion of the remote current thread. */
3512 record_currthread (minus_one_ptid);
3513 }
74531fed 3514 else
bad34192
PA
3515 {
3516 /* Now, if we have thread information, update inferior_ptid. */
3517 inferior_ptid = remote_current_thread (inferior_ptid);
3518
3519 /* Add the main thread to the thread list. */
3520 add_thread_silent (inferior_ptid);
3521 }
c0a2216e 3522
96ef3384
UW
3523 /* Next, if the target can specify a description, read it. We do
3524 this before anything involving memory or registers. */
3525 target_find_description ();
3526
74531fed
PA
3527 if (!non_stop)
3528 {
3529 /* Use the previously fetched status. */
3530 gdb_assert (wait_status != NULL);
3531
3532 if (target_can_async_p ())
3533 {
3534 struct stop_reply *stop_reply;
3535 struct cleanup *old_chain;
3536
3537 stop_reply = stop_reply_xmalloc ();
3538 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
3539 remote_parse_stop_reply (wait_status, stop_reply);
3540 discard_cleanups (old_chain);
3541 push_stop_reply (stop_reply);
3542
3543 target_async (inferior_event_handler, 0);
3544 }
3545 else
3546 {
3547 gdb_assert (wait_status != NULL);
3548 strcpy (rs->buf, wait_status);
3549 rs->cached_wait_status = 1;
3550 }
3551 }
3552 else
3553 gdb_assert (wait_status == NULL);
2d717e4f
DJ
3554}
3555
3556static void
136d6dae 3557extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
2d717e4f 3558{
136d6dae 3559 extended_remote_attach_1 (ops, args, from_tty);
2d717e4f
DJ
3560}
3561
c906108c
SS
3562/* Convert hex digit A to a number. */
3563
30559e10 3564static int
fba45db2 3565fromhex (int a)
c906108c
SS
3566{
3567 if (a >= '0' && a <= '9')
3568 return a - '0';
3569 else if (a >= 'a' && a <= 'f')
3570 return a - 'a' + 10;
3571 else if (a >= 'A' && a <= 'F')
3572 return a - 'A' + 10;
c5aa993b 3573 else
8a3fe4f8 3574 error (_("Reply contains invalid hex digit %d"), a);
c906108c
SS
3575}
3576
30559e10 3577static int
cfd77fa1 3578hex2bin (const char *hex, gdb_byte *bin, int count)
30559e10
MS
3579{
3580 int i;
3581
30559e10
MS
3582 for (i = 0; i < count; i++)
3583 {
3584 if (hex[0] == 0 || hex[1] == 0)
3585 {
3586 /* Hex string is short, or of uneven length.
23860348 3587 Return the count that has been converted so far. */
30559e10
MS
3588 return i;
3589 }
3590 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
3591 hex += 2;
3592 }
3593 return i;
3594}
3595
c906108c
SS
3596/* Convert number NIB to a hex digit. */
3597
3598static int
fba45db2 3599tohex (int nib)
c906108c
SS
3600{
3601 if (nib < 10)
c5aa993b 3602 return '0' + nib;
c906108c 3603 else
c5aa993b 3604 return 'a' + nib - 10;
c906108c 3605}
30559e10
MS
3606
3607static int
cfd77fa1 3608bin2hex (const gdb_byte *bin, char *hex, int count)
30559e10
MS
3609{
3610 int i;
23860348 3611 /* May use a length, or a nul-terminated string as input. */
30559e10 3612 if (count == 0)
cfd77fa1 3613 count = strlen ((char *) bin);
30559e10
MS
3614
3615 for (i = 0; i < count; i++)
3616 {
3617 *hex++ = tohex ((*bin >> 4) & 0xf);
3618 *hex++ = tohex (*bin++ & 0xf);
3619 }
3620 *hex = 0;
3621 return i;
3622}
c906108c 3623\f
506fb367
DJ
3624/* Check for the availability of vCont. This function should also check
3625 the response. */
c906108c
SS
3626
3627static void
6d820c5c 3628remote_vcont_probe (struct remote_state *rs)
c906108c 3629{
2e9f7625 3630 char *buf;
6d820c5c 3631
2e9f7625
DJ
3632 strcpy (rs->buf, "vCont?");
3633 putpkt (rs->buf);
6d820c5c 3634 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3635 buf = rs->buf;
c906108c 3636
506fb367
DJ
3637 /* Make sure that the features we assume are supported. */
3638 if (strncmp (buf, "vCont", 5) == 0)
3639 {
3640 char *p = &buf[5];
3641 int support_s, support_S, support_c, support_C;
3642
3643 support_s = 0;
3644 support_S = 0;
3645 support_c = 0;
3646 support_C = 0;
74531fed 3647 rs->support_vCont_t = 0;
506fb367
DJ
3648 while (p && *p == ';')
3649 {
3650 p++;
3651 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
3652 support_s = 1;
3653 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
3654 support_S = 1;
3655 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
3656 support_c = 1;
3657 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
3658 support_C = 1;
74531fed
PA
3659 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
3660 rs->support_vCont_t = 1;
506fb367
DJ
3661
3662 p = strchr (p, ';');
3663 }
c906108c 3664
506fb367
DJ
3665 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3666 BUF will make packet_ok disable the packet. */
3667 if (!support_s || !support_S || !support_c || !support_C)
3668 buf[0] = 0;
3669 }
c906108c 3670
444abaca 3671 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 3672}
c906108c 3673
0d8f58ca
PA
3674/* Helper function for building "vCont" resumptions. Write a
3675 resumption to P. ENDP points to one-passed-the-end of the buffer
3676 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
3677 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
3678 resumed thread should be single-stepped and/or signalled. If PTID
3679 equals minus_one_ptid, then all threads are resumed; if PTID
3680 represents a process, then all threads of the process are resumed;
3681 the thread to be stepped and/or signalled is given in the global
3682 INFERIOR_PTID. */
3683
3684static char *
3685append_resumption (char *p, char *endp,
3686 ptid_t ptid, int step, enum target_signal siggnal)
3687{
3688 struct remote_state *rs = get_remote_state ();
3689
3690 if (step && siggnal != TARGET_SIGNAL_0)
3691 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
3692 else if (step)
3693 p += xsnprintf (p, endp - p, ";s");
3694 else if (siggnal != TARGET_SIGNAL_0)
3695 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
3696 else
3697 p += xsnprintf (p, endp - p, ";c");
3698
3699 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
3700 {
3701 ptid_t nptid;
3702
3703 /* All (-1) threads of process. */
3704 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3705
3706 p += xsnprintf (p, endp - p, ":");
3707 p = write_ptid (p, endp, nptid);
3708 }
3709 else if (!ptid_equal (ptid, minus_one_ptid))
3710 {
3711 p += xsnprintf (p, endp - p, ":");
3712 p = write_ptid (p, endp, ptid);
3713 }
3714
3715 return p;
3716}
3717
506fb367
DJ
3718/* Resume the remote inferior by using a "vCont" packet. The thread
3719 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
3720 resumed thread should be single-stepped and/or signalled. If PTID
3721 equals minus_one_ptid, then all threads are resumed; the thread to
3722 be stepped and/or signalled is given in the global INFERIOR_PTID.
3723 This function returns non-zero iff it resumes the inferior.
44eaed12 3724
506fb367
DJ
3725 This function issues a strict subset of all possible vCont commands at the
3726 moment. */
44eaed12 3727
506fb367
DJ
3728static int
3729remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
3730{
3731 struct remote_state *rs = get_remote_state ();
82f73884
PA
3732 char *p;
3733 char *endp;
44eaed12 3734
444abaca 3735 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
6d820c5c 3736 remote_vcont_probe (rs);
44eaed12 3737
444abaca 3738 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
6d820c5c 3739 return 0;
44eaed12 3740
82f73884
PA
3741 p = rs->buf;
3742 endp = rs->buf + get_remote_packet_size ();
3743
506fb367
DJ
3744 /* If we could generate a wider range of packets, we'd have to worry
3745 about overflowing BUF. Should there be a generic
3746 "multi-part-packet" packet? */
3747
0d8f58ca
PA
3748 p += xsnprintf (p, endp - p, "vCont");
3749
79d7f229 3750 if (ptid_equal (ptid, magic_null_ptid))
c906108c 3751 {
79d7f229
PA
3752 /* MAGIC_NULL_PTID means that we don't have any active threads,
3753 so we don't have any TID numbers the inferior will
3754 understand. Make sure to only send forms that do not specify
3755 a TID. */
0d8f58ca 3756 p = append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 3757 }
0d8f58ca 3758 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 3759 {
0d8f58ca
PA
3760 /* Resume all threads (of all processes, or of a single
3761 process), with preference for INFERIOR_PTID. This assumes
3762 inferior_ptid belongs to the set of all threads we are about
3763 to resume. */
3764 if (step || siggnal != TARGET_SIGNAL_0)
82f73884 3765 {
0d8f58ca
PA
3766 /* Step inferior_ptid, with or without signal. */
3767 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 3768 }
0d8f58ca
PA
3769
3770 /* And continue others without a signal. */
3771 p = append_resumption (p, endp, ptid, /*step=*/ 0, TARGET_SIGNAL_0);
c906108c
SS
3772 }
3773 else
506fb367
DJ
3774 {
3775 /* Scheduler locking; resume only PTID. */
0d8f58ca 3776 p = append_resumption (p, endp, ptid, step, siggnal);
506fb367 3777 }
c906108c 3778
82f73884
PA
3779 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
3780 putpkt (rs->buf);
506fb367 3781
74531fed
PA
3782 if (non_stop)
3783 {
3784 /* In non-stop, the stub replies to vCont with "OK". The stop
3785 reply will be reported asynchronously by means of a `%Stop'
3786 notification. */
3787 getpkt (&rs->buf, &rs->buf_size, 0);
3788 if (strcmp (rs->buf, "OK") != 0)
3789 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
3790 }
3791
506fb367 3792 return 1;
c906108c 3793}
43ff13b4 3794
506fb367
DJ
3795/* Tell the remote machine to resume. */
3796
3797static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
3798
3799static int last_sent_step;
3800
43ff13b4 3801static void
28439f5e
PA
3802remote_resume (struct target_ops *ops,
3803 ptid_t ptid, int step, enum target_signal siggnal)
43ff13b4 3804{
d01949b6 3805 struct remote_state *rs = get_remote_state ();
2e9f7625 3806 char *buf;
43ff13b4 3807
43ff13b4
JM
3808 last_sent_signal = siggnal;
3809 last_sent_step = step;
3810
89be2091
DJ
3811 /* Update the inferior on signals to silently pass, if they've changed. */
3812 remote_pass_signals ();
3813
506fb367
DJ
3814 /* The vCont packet doesn't need to specify threads via Hc. */
3815 if (remote_vcont_resume (ptid, step, siggnal))
75c99385 3816 goto done;
506fb367 3817
79d7f229
PA
3818 /* All other supported resume packets do use Hc, so set the continue
3819 thread. */
3820 if (ptid_equal (ptid, minus_one_ptid))
3821 set_continue_thread (any_thread_ptid);
506fb367 3822 else
79d7f229 3823 set_continue_thread (ptid);
506fb367 3824
2e9f7625 3825 buf = rs->buf;
b2175913
MS
3826 if (execution_direction == EXEC_REVERSE)
3827 {
3828 /* We don't pass signals to the target in reverse exec mode. */
3829 if (info_verbose && siggnal != TARGET_SIGNAL_0)
3830 warning (" - Can't pass signal %d to target in reverse: ignored.\n",
3831 siggnal);
3832 strcpy (buf, step ? "bs" : "bc");
3833 }
3834 else if (siggnal != TARGET_SIGNAL_0)
43ff13b4
JM
3835 {
3836 buf[0] = step ? 'S' : 'C';
c5aa993b 3837 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
506fb367 3838 buf[2] = tohex (((int) siggnal) & 0xf);
43ff13b4
JM
3839 buf[3] = '\0';
3840 }
3841 else
c5aa993b 3842 strcpy (buf, step ? "s" : "c");
506fb367 3843
44eaed12 3844 putpkt (buf);
43ff13b4 3845
75c99385 3846 done:
2acceee2
JM
3847 /* We are about to start executing the inferior, let's register it
3848 with the event loop. NOTE: this is the one place where all the
3849 execution commands end up. We could alternatively do this in each
23860348 3850 of the execution commands in infcmd.c. */
2acceee2
JM
3851 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3852 into infcmd.c in order to allow inferior function calls to work
23860348 3853 NOT asynchronously. */
362646f5 3854 if (target_can_async_p ())
2acceee2 3855 target_async (inferior_event_handler, 0);
e24a49d8
PA
3856
3857 /* We've just told the target to resume. The remote server will
3858 wait for the inferior to stop, and then send a stop reply. In
3859 the mean time, we can't start another command/query ourselves
74531fed
PA
3860 because the stub wouldn't be ready to process it. This applies
3861 only to the base all-stop protocol, however. In non-stop (which
3862 only supports vCont), the stub replies with an "OK", and is
3863 immediate able to process further serial input. */
3864 if (!non_stop)
3865 rs->waiting_for_stop_reply = 1;
43ff13b4 3866}
c906108c 3867\f
43ff13b4
JM
3868
3869/* Set up the signal handler for SIGINT, while the target is
23860348 3870 executing, ovewriting the 'regular' SIGINT signal handler. */
43ff13b4 3871static void
fba45db2 3872initialize_sigint_signal_handler (void)
43ff13b4 3873{
43ff13b4
JM
3874 signal (SIGINT, handle_remote_sigint);
3875}
3876
23860348 3877/* Signal handler for SIGINT, while the target is executing. */
43ff13b4 3878static void
fba45db2 3879handle_remote_sigint (int sig)
43ff13b4
JM
3880{
3881 signal (sig, handle_remote_sigint_twice);
43ff13b4
JM
3882 mark_async_signal_handler_wrapper (sigint_remote_token);
3883}
3884
3885/* Signal handler for SIGINT, installed after SIGINT has already been
3886 sent once. It will take effect the second time that the user sends
23860348 3887 a ^C. */
43ff13b4 3888static void
fba45db2 3889handle_remote_sigint_twice (int sig)
43ff13b4 3890{
b803fb0f 3891 signal (sig, handle_remote_sigint);
43ff13b4
JM
3892 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
3893}
3894
6426a772 3895/* Perform the real interruption of the target execution, in response
23860348 3896 to a ^C. */
c5aa993b 3897static void
fba45db2 3898async_remote_interrupt (gdb_client_data arg)
43ff13b4
JM
3899{
3900 if (remote_debug)
3901 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
3902
94cc34af 3903 target_stop (inferior_ptid);
43ff13b4
JM
3904}
3905
3906/* Perform interrupt, if the first attempt did not succeed. Just give
23860348 3907 up on the target alltogether. */
2df3850c 3908void
fba45db2 3909async_remote_interrupt_twice (gdb_client_data arg)
43ff13b4 3910{
2df3850c
JM
3911 if (remote_debug)
3912 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
b803fb0f
DJ
3913
3914 interrupt_query ();
43ff13b4
JM
3915}
3916
3917/* Reinstall the usual SIGINT handlers, after the target has
23860348 3918 stopped. */
6426a772
JM
3919static void
3920cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
3921{
3922 signal (SIGINT, handle_sigint);
43ff13b4
JM
3923}
3924
c906108c
SS
3925/* Send ^C to target to halt it. Target will respond, and send us a
3926 packet. */
507f3c78 3927static void (*ofunc) (int);
c906108c 3928
7a292a7a
SS
3929/* The command line interface's stop routine. This function is installed
3930 as a signal handler for SIGINT. The first time a user requests a
3931 stop, we call remote_stop to send a break or ^C. If there is no
3932 response from the target (it didn't stop when the user requested it),
23860348 3933 we ask the user if he'd like to detach from the target. */
c906108c 3934static void
fba45db2 3935remote_interrupt (int signo)
c906108c 3936{
23860348 3937 /* If this doesn't work, try more severe steps. */
7a292a7a
SS
3938 signal (signo, remote_interrupt_twice);
3939
b803fb0f 3940 gdb_call_async_signal_handler (sigint_remote_token, 1);
7a292a7a
SS
3941}
3942
3943/* The user typed ^C twice. */
3944
3945static void
fba45db2 3946remote_interrupt_twice (int signo)
7a292a7a
SS
3947{
3948 signal (signo, ofunc);
b803fb0f 3949 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
c906108c
SS
3950 signal (signo, remote_interrupt);
3951}
7a292a7a 3952
74531fed
PA
3953/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
3954 thread, all threads of a remote process, or all threads of all
3955 processes. */
3956
3957static void
3958remote_stop_ns (ptid_t ptid)
3959{
3960 struct remote_state *rs = get_remote_state ();
3961 char *p = rs->buf;
3962 char *endp = rs->buf + get_remote_packet_size ();
3963 struct stop_reply *reply, *next;
3964
3965 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
3966 remote_vcont_probe (rs);
3967
3968 if (!rs->support_vCont_t)
3969 error (_("Remote server does not support stopping threads"));
3970
f91d3df5
PA
3971 if (ptid_equal (ptid, minus_one_ptid)
3972 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
3973 p += xsnprintf (p, endp - p, "vCont;t");
3974 else
3975 {
3976 ptid_t nptid;
3977
74531fed
PA
3978 p += xsnprintf (p, endp - p, "vCont;t:");
3979
3980 if (ptid_is_pid (ptid))
3981 /* All (-1) threads of process. */
3982 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3983 else
3984 {
3985 /* Small optimization: if we already have a stop reply for
3986 this thread, no use in telling the stub we want this
3987 stopped. */
3988 if (peek_stop_reply (ptid))
3989 return;
3990
3991 nptid = ptid;
3992 }
3993
3994 p = write_ptid (p, endp, nptid);
3995 }
3996
3997 /* In non-stop, we get an immediate OK reply. The stop reply will
3998 come in asynchronously by notification. */
3999 putpkt (rs->buf);
4000 getpkt (&rs->buf, &rs->buf_size, 0);
4001 if (strcmp (rs->buf, "OK") != 0)
4002 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
4003}
4004
4005/* All-stop version of target_stop. Sends a break or a ^C to stop the
4006 remote target. It is undefined which thread of which process
4007 reports the stop. */
4008
4009static void
4010remote_stop_as (ptid_t ptid)
4011{
4012 struct remote_state *rs = get_remote_state ();
4013
4014 /* If the inferior is stopped already, but the core didn't know
4015 about it yet, just ignore the request. The cached wait status
4016 will be collected in remote_wait. */
4017 if (rs->cached_wait_status)
4018 return;
4019
4020 /* Send a break or a ^C, depending on user preference. */
4021
4022 if (remote_break)
4023 serial_send_break (remote_desc);
4024 else
4025 serial_write (remote_desc, "\003", 1);
4026}
4027
7a292a7a
SS
4028/* This is the generic stop called via the target vector. When a target
4029 interrupt is requested, either by the command line or the GUI, we
23860348 4030 will eventually end up here. */
74531fed 4031
c906108c 4032static void
94cc34af 4033remote_stop (ptid_t ptid)
c906108c 4034{
7a292a7a 4035 if (remote_debug)
0f71a2f6 4036 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 4037
74531fed
PA
4038 if (non_stop)
4039 remote_stop_ns (ptid);
c906108c 4040 else
74531fed 4041 remote_stop_as (ptid);
c906108c
SS
4042}
4043
4044/* Ask the user what to do when an interrupt is received. */
4045
4046static void
fba45db2 4047interrupt_query (void)
c906108c
SS
4048{
4049 target_terminal_ours ();
4050
74531fed 4051 if (target_can_async_p ())
c906108c 4052 {
74531fed 4053 signal (SIGINT, handle_sigint);
315a522e 4054 deprecated_throw_reason (RETURN_QUIT);
c906108c 4055 }
74531fed
PA
4056 else
4057 {
9e2f0ad4
HZ
4058 if (query (_("Interrupted while waiting for the program.\n\
4059Give up (and stop debugging it)? ")))
74531fed
PA
4060 {
4061 pop_target ();
4062 deprecated_throw_reason (RETURN_QUIT);
4063 }
4064 }
c906108c
SS
4065
4066 target_terminal_inferior ();
4067}
4068
6426a772
JM
4069/* Enable/disable target terminal ownership. Most targets can use
4070 terminal groups to control terminal ownership. Remote targets are
4071 different in that explicit transfer of ownership to/from GDB/target
23860348 4072 is required. */
6426a772
JM
4073
4074static void
75c99385 4075remote_terminal_inferior (void)
6426a772 4076{
c6ebd6cf 4077 if (!target_async_permitted)
75c99385
PA
4078 /* Nothing to do. */
4079 return;
4080
6426a772
JM
4081 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
4082 sync_execution here. This function should only be called when
4083 GDB is resuming the inferior in the forground. A background
4084 resume (``run&'') should leave GDB in control of the terminal and
23860348 4085 consequently should not call this code. */
6426a772
JM
4086 if (!sync_execution)
4087 return;
4088 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
4089 calls target_terminal_*() idenpotent. The event-loop GDB talking
4090 to an asynchronous target with a synchronous command calls this
4091 function from both event-top.c and infrun.c/infcmd.c. Once GDB
4092 stops trying to transfer the terminal to the target when it
4093 shouldn't this guard can go away. */
4094 if (!remote_async_terminal_ours_p)
4095 return;
4096 delete_file_handler (input_fd);
4097 remote_async_terminal_ours_p = 0;
4098 initialize_sigint_signal_handler ();
4099 /* NOTE: At this point we could also register our selves as the
4100 recipient of all input. Any characters typed could then be
23860348 4101 passed on down to the target. */
6426a772
JM
4102}
4103
4104static void
75c99385 4105remote_terminal_ours (void)
6426a772 4106{
c6ebd6cf 4107 if (!target_async_permitted)
75c99385
PA
4108 /* Nothing to do. */
4109 return;
4110
4111 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
4112 if (!sync_execution)
4113 return;
75c99385 4114 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
4115 if (remote_async_terminal_ours_p)
4116 return;
4117 cleanup_sigint_signal_handler (NULL);
4118 add_file_handler (input_fd, stdin_event_handler, 0);
4119 remote_async_terminal_ours_p = 1;
4120}
4121
c906108c 4122void
917317f4 4123remote_console_output (char *msg)
c906108c
SS
4124{
4125 char *p;
4126
c5aa993b 4127 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
4128 {
4129 char tb[2];
4130 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
4131 tb[0] = c;
4132 tb[1] = 0;
43ff13b4 4133 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 4134 }
74531fed
PA
4135 gdb_flush (gdb_stdtarg);
4136 }
4137
4138typedef struct cached_reg
4139{
4140 int num;
4141 gdb_byte data[MAX_REGISTER_SIZE];
4142} cached_reg_t;
4143
4144DEF_VEC_O(cached_reg_t);
4145
4146struct stop_reply
4147{
4148 struct stop_reply *next;
4149
4150 ptid_t ptid;
4151
4152 struct target_waitstatus ws;
4153
4154 VEC(cached_reg_t) *regcache;
4155
4156 int stopped_by_watchpoint_p;
4157 CORE_ADDR watch_data_address;
4158
4159 int solibs_changed;
4160 int replay_event;
4161};
4162
4163/* The list of already fetched and acknowledged stop events. */
4164static struct stop_reply *stop_reply_queue;
4165
4166static struct stop_reply *
4167stop_reply_xmalloc (void)
4168{
4169 struct stop_reply *r = XMALLOC (struct stop_reply);
4170 r->next = NULL;
4171 return r;
4172}
4173
4174static void
4175stop_reply_xfree (struct stop_reply *r)
4176{
4177 if (r != NULL)
4178 {
4179 VEC_free (cached_reg_t, r->regcache);
4180 xfree (r);
4181 }
c906108c
SS
4182}
4183
74531fed
PA
4184/* Discard all pending stop replies of inferior PID. If PID is -1,
4185 discard everything. */
c906108c 4186
74531fed
PA
4187static void
4188discard_pending_stop_replies (int pid)
c906108c 4189{
74531fed 4190 struct stop_reply *prev = NULL, *reply, *next;
c906108c 4191
74531fed
PA
4192 /* Discard the in-flight notification. */
4193 if (pending_stop_reply != NULL
4194 && (pid == -1
4195 || ptid_get_pid (pending_stop_reply->ptid) == pid))
4196 {
4197 stop_reply_xfree (pending_stop_reply);
4198 pending_stop_reply = NULL;
4199 }
c906108c 4200
74531fed
PA
4201 /* Discard the stop replies we have already pulled with
4202 vStopped. */
4203 for (reply = stop_reply_queue; reply; reply = next)
43ff13b4 4204 {
74531fed
PA
4205 next = reply->next;
4206 if (pid == -1
4207 || ptid_get_pid (reply->ptid) == pid)
9fa2223d 4208 {
74531fed
PA
4209 if (reply == stop_reply_queue)
4210 stop_reply_queue = reply->next;
4211 else
4212 prev->next = reply->next;
4213
4214 stop_reply_xfree (reply);
9fa2223d 4215 }
74531fed
PA
4216 else
4217 prev = reply;
c8e38a49 4218 }
74531fed 4219}
43ff13b4 4220
74531fed 4221/* Cleanup wrapper. */
2e9f7625 4222
74531fed
PA
4223static void
4224do_stop_reply_xfree (void *arg)
4225{
4226 struct stop_reply *r = arg;
4227 stop_reply_xfree (r);
4228}
75c99385 4229
74531fed
PA
4230/* Look for a queued stop reply belonging to PTID. If one is found,
4231 remove it from the queue, and return it. Returns NULL if none is
4232 found. If there are still queued events left to process, tell the
4233 event loop to get back to target_wait soon. */
e24a49d8 4234
74531fed
PA
4235static struct stop_reply *
4236queued_stop_reply (ptid_t ptid)
4237{
4238 struct stop_reply *it, *prev;
4239 struct stop_reply head;
4240
4241 head.next = stop_reply_queue;
4242 prev = &head;
4243
4244 it = head.next;
4245
4246 if (!ptid_equal (ptid, minus_one_ptid))
4247 for (; it; prev = it, it = it->next)
4248 if (ptid_equal (ptid, it->ptid))
4249 break;
4250
4251 if (it)
c8e38a49 4252 {
74531fed
PA
4253 prev->next = it->next;
4254 it->next = NULL;
4255 }
e24a49d8 4256
74531fed
PA
4257 stop_reply_queue = head.next;
4258
4259 if (stop_reply_queue)
4260 /* There's still at least an event left. */
4261 mark_async_event_handler (remote_async_inferior_event_token);
4262
4263 return it;
4264}
4265
4266/* Push a fully parsed stop reply in the stop reply queue. Since we
4267 know that we now have at least one queued event left to pass to the
4268 core side, tell the event loop to get back to target_wait soon. */
4269
4270static void
4271push_stop_reply (struct stop_reply *new_event)
4272{
4273 struct stop_reply *event;
4274
4275 if (stop_reply_queue)
4276 {
4277 for (event = stop_reply_queue;
4278 event && event->next;
4279 event = event->next)
4280 ;
4281
4282 event->next = new_event;
4283 }
4284 else
4285 stop_reply_queue = new_event;
4286
4287 mark_async_event_handler (remote_async_inferior_event_token);
4288}
4289
4290/* Returns true if we have a stop reply for PTID. */
4291
4292static int
4293peek_stop_reply (ptid_t ptid)
4294{
4295 struct stop_reply *it;
4296
4297 for (it = stop_reply_queue; it; it = it->next)
4298 if (ptid_equal (ptid, it->ptid))
4299 {
4300 if (it->ws.kind == TARGET_WAITKIND_STOPPED)
4301 return 1;
4302 }
4303
4304 return 0;
4305}
4306
4307/* Parse the stop reply in BUF. Either the function succeeds, and the
4308 result is stored in EVENT, or throws an error. */
4309
4310static void
4311remote_parse_stop_reply (char *buf, struct stop_reply *event)
4312{
4313 struct remote_arch_state *rsa = get_remote_arch_state ();
4314 ULONGEST addr;
4315 char *p;
4316
4317 event->ptid = null_ptid;
4318 event->ws.kind = TARGET_WAITKIND_IGNORE;
4319 event->ws.value.integer = 0;
4320 event->solibs_changed = 0;
4321 event->replay_event = 0;
4322 event->stopped_by_watchpoint_p = 0;
4323 event->regcache = NULL;
4324
4325 switch (buf[0])
4326 {
4327 case 'T': /* Status with PC, SP, FP, ... */
c8e38a49
PA
4328 {
4329 gdb_byte regs[MAX_REGISTER_SIZE];
43ff13b4 4330
c8e38a49
PA
4331 /* Expedited reply, containing Signal, {regno, reg} repeat. */
4332 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
74531fed
PA
4333 ss = signal number
4334 n... = register number
4335 r... = register contents
c8e38a49 4336 */
43ff13b4 4337
74531fed 4338 p = &buf[3]; /* after Txx */
c8e38a49
PA
4339 while (*p)
4340 {
4341 char *p1;
4342 char *p_temp;
4343 int fieldsize;
4344 LONGEST pnum = 0;
43ff13b4 4345
c8e38a49
PA
4346 /* If the packet contains a register number, save it in
4347 pnum and set p1 to point to the character following it.
4348 Otherwise p1 points to p. */
3c3bea1c 4349
74531fed
PA
4350 /* If this packet is an awatch packet, don't parse the 'a'
4351 as a register number. */
c8e38a49
PA
4352
4353 if (strncmp (p, "awatch", strlen("awatch")) != 0)
4354 {
4355 /* Read the ``P'' register number. */
4356 pnum = strtol (p, &p_temp, 16);
4357 p1 = p_temp;
4358 }
4359 else
4360 p1 = p;
802188a7 4361
c8e38a49
PA
4362 if (p1 == p) /* No register number present here. */
4363 {
4364 p1 = strchr (p, ':');
4365 if (p1 == NULL)
4366 error (_("Malformed packet(a) (missing colon): %s\n\
4367Packet: '%s'\n"),
4368 p, buf);
4369 if (strncmp (p, "thread", p1 - p) == 0)
74531fed 4370 event->ptid = read_ptid (++p1, &p);
c8e38a49
PA
4371 else if ((strncmp (p, "watch", p1 - p) == 0)
4372 || (strncmp (p, "rwatch", p1 - p) == 0)
4373 || (strncmp (p, "awatch", p1 - p) == 0))
3c3bea1c 4374 {
74531fed 4375 event->stopped_by_watchpoint_p = 1;
c8e38a49 4376 p = unpack_varlen_hex (++p1, &addr);
74531fed 4377 event->watch_data_address = (CORE_ADDR) addr;
3c3bea1c 4378 }
c8e38a49 4379 else if (strncmp (p, "library", p1 - p) == 0)
43ff13b4 4380 {
c8e38a49
PA
4381 p1++;
4382 p_temp = p1;
4383 while (*p_temp && *p_temp != ';')
4384 p_temp++;
4385
74531fed 4386 event->solibs_changed = 1;
c8e38a49 4387 p = p_temp;
43ff13b4 4388 }
b2175913
MS
4389 else if (strncmp (p, "replaylog", p1 - p) == 0)
4390 {
4391 /* NO_HISTORY event.
4392 p1 will indicate "begin" or "end", but
4393 it makes no difference for now, so ignore it. */
74531fed 4394 event->replay_event = 1;
b2175913
MS
4395 p_temp = strchr (p1 + 1, ';');
4396 if (p_temp)
4397 p = p_temp;
4398 }
43ff13b4
JM
4399 else
4400 {
c8e38a49
PA
4401 /* Silently skip unknown optional info. */
4402 p_temp = strchr (p1 + 1, ';');
4403 if (p_temp)
4404 p = p_temp;
4405 }
4406 }
4407 else
4408 {
4409 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
74531fed
PA
4410 cached_reg_t cached_reg;
4411
c8e38a49 4412 p = p1;
75c99385 4413
c8e38a49
PA
4414 if (*p != ':')
4415 error (_("Malformed packet(b) (missing colon): %s\n\
8a3fe4f8 4416Packet: '%s'\n"),
c8e38a49
PA
4417 p, buf);
4418 ++p;
43ff13b4 4419
c8e38a49
PA
4420 if (reg == NULL)
4421 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 4422Packet: '%s'\n"),
c8e38a49
PA
4423 phex_nz (pnum, 0), p, buf);
4424
4100683b
JK
4425 cached_reg.num = reg->regnum;
4426
74531fed 4427 fieldsize = hex2bin (p, cached_reg.data,
c8e38a49
PA
4428 register_size (target_gdbarch,
4429 reg->regnum));
4430 p += 2 * fieldsize;
4431 if (fieldsize < register_size (target_gdbarch,
4432 reg->regnum))
4433 warning (_("Remote reply is too short: %s"), buf);
74531fed
PA
4434
4435 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
43ff13b4 4436 }
c8e38a49
PA
4437
4438 if (*p != ';')
4439 error (_("Remote register badly formatted: %s\nhere: %s"),
4440 buf, p);
4441 ++p;
43ff13b4 4442 }
c8e38a49
PA
4443 }
4444 /* fall through */
4445 case 'S': /* Old style status, just signal only. */
74531fed
PA
4446 if (event->solibs_changed)
4447 event->ws.kind = TARGET_WAITKIND_LOADED;
4448 else if (event->replay_event)
4449 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
c8e38a49
PA
4450 else
4451 {
74531fed
PA
4452 event->ws.kind = TARGET_WAITKIND_STOPPED;
4453 event->ws.value.sig = (enum target_signal)
c8e38a49
PA
4454 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
4455 }
4456 break;
4457 case 'W': /* Target exited. */
4458 case 'X':
4459 {
4460 char *p;
4461 int pid;
4462 ULONGEST value;
82f73884 4463
c8e38a49
PA
4464 /* GDB used to accept only 2 hex chars here. Stubs should
4465 only send more if they detect GDB supports multi-process
4466 support. */
4467 p = unpack_varlen_hex (&buf[1], &value);
82f73884 4468
c8e38a49
PA
4469 if (buf[0] == 'W')
4470 {
4471 /* The remote process exited. */
74531fed
PA
4472 event->ws.kind = TARGET_WAITKIND_EXITED;
4473 event->ws.value.integer = value;
c8e38a49
PA
4474 }
4475 else
4476 {
4477 /* The remote process exited with a signal. */
74531fed
PA
4478 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
4479 event->ws.value.sig = (enum target_signal) value;
c8e38a49 4480 }
82f73884 4481
c8e38a49
PA
4482 /* If no process is specified, assume inferior_ptid. */
4483 pid = ptid_get_pid (inferior_ptid);
4484 if (*p == '\0')
4485 ;
4486 else if (*p == ';')
4487 {
4488 p++;
4489
4490 if (p == '\0')
82f73884 4491 ;
c8e38a49
PA
4492 else if (strncmp (p,
4493 "process:", sizeof ("process:") - 1) == 0)
82f73884 4494 {
c8e38a49
PA
4495 ULONGEST upid;
4496 p += sizeof ("process:") - 1;
4497 unpack_varlen_hex (p, &upid);
4498 pid = upid;
82f73884
PA
4499 }
4500 else
4501 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 4502 }
c8e38a49
PA
4503 else
4504 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
4505 event->ptid = pid_to_ptid (pid);
4506 }
4507 break;
4508 }
4509
4510 if (non_stop && ptid_equal (event->ptid, null_ptid))
4511 error (_("No process or thread specified in stop reply: %s"), buf);
4512}
4513
4514/* When the stub wants to tell GDB about a new stop reply, it sends a
4515 stop notification (%Stop). Those can come it at any time, hence,
4516 we have to make sure that any pending putpkt/getpkt sequence we're
4517 making is finished, before querying the stub for more events with
4518 vStopped. E.g., if we started a vStopped sequence immediatelly
4519 upon receiving the %Stop notification, something like this could
4520 happen:
4521
4522 1.1) --> Hg 1
4523 1.2) <-- OK
4524 1.3) --> g
4525 1.4) <-- %Stop
4526 1.5) --> vStopped
4527 1.6) <-- (registers reply to step #1.3)
4528
4529 Obviously, the reply in step #1.6 would be unexpected to a vStopped
4530 query.
4531
4532 To solve this, whenever we parse a %Stop notification sucessfully,
4533 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
4534 doing whatever we were doing:
4535
4536 2.1) --> Hg 1
4537 2.2) <-- OK
4538 2.3) --> g
4539 2.4) <-- %Stop
4540 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
4541 2.5) <-- (registers reply to step #2.3)
4542
4543 Eventualy after step #2.5, we return to the event loop, which
4544 notices there's an event on the
4545 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
4546 associated callback --- the function below. At this point, we're
4547 always safe to start a vStopped sequence. :
4548
4549 2.6) --> vStopped
4550 2.7) <-- T05 thread:2
4551 2.8) --> vStopped
4552 2.9) --> OK
4553*/
4554
4555static void
4556remote_get_pending_stop_replies (void)
4557{
4558 struct remote_state *rs = get_remote_state ();
4559 int ret;
4560
4561 if (pending_stop_reply)
4562 {
4563 /* acknowledge */
4564 putpkt ("vStopped");
4565
4566 /* Now we can rely on it. */
4567 push_stop_reply (pending_stop_reply);
4568 pending_stop_reply = NULL;
4569
4570 while (1)
4571 {
4572 getpkt (&rs->buf, &rs->buf_size, 0);
4573 if (strcmp (rs->buf, "OK") == 0)
4574 break;
4575 else
4576 {
4577 struct cleanup *old_chain;
4578 struct stop_reply *stop_reply = stop_reply_xmalloc ();
4579
4580 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4581 remote_parse_stop_reply (rs->buf, stop_reply);
4582
4583 /* acknowledge */
4584 putpkt ("vStopped");
4585
4586 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
4587 {
4588 /* Now we can rely on it. */
4589 discard_cleanups (old_chain);
4590 push_stop_reply (stop_reply);
4591 }
4592 else
4593 /* We got an unknown stop reply. */
4594 do_cleanups (old_chain);
4595 }
4596 }
4597 }
4598}
4599
4600
4601/* Called when it is decided that STOP_REPLY holds the info of the
4602 event that is to be returned to the core. This function always
4603 destroys STOP_REPLY. */
4604
4605static ptid_t
4606process_stop_reply (struct stop_reply *stop_reply,
4607 struct target_waitstatus *status)
4608{
4609 ptid_t ptid;
4610
4611 *status = stop_reply->ws;
4612 ptid = stop_reply->ptid;
4613
4614 /* If no thread/process was reported by the stub, assume the current
4615 inferior. */
4616 if (ptid_equal (ptid, null_ptid))
4617 ptid = inferior_ptid;
4618
5f3563ea
PA
4619 if (status->kind != TARGET_WAITKIND_EXITED
4620 && status->kind != TARGET_WAITKIND_SIGNALLED)
74531fed 4621 {
5f3563ea
PA
4622 /* Expedited registers. */
4623 if (stop_reply->regcache)
4624 {
4625 cached_reg_t *reg;
4626 int ix;
4627
4628 for (ix = 0;
4629 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
4630 ix++)
4631 regcache_raw_supply (get_thread_regcache (ptid),
4632 reg->num, reg->data);
4633 VEC_free (cached_reg_t, stop_reply->regcache);
4634 }
74531fed 4635
5f3563ea
PA
4636 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
4637 remote_watch_data_address = stop_reply->watch_data_address;
1941c569
PA
4638
4639 remote_notice_new_inferior (ptid, 0);
74531fed
PA
4640 }
4641
74531fed
PA
4642 stop_reply_xfree (stop_reply);
4643 return ptid;
4644}
4645
4646/* The non-stop mode version of target_wait. */
4647
4648static ptid_t
4649remote_wait_ns (ptid_t ptid, struct target_waitstatus *status)
4650{
4651 struct remote_state *rs = get_remote_state ();
4652 struct remote_arch_state *rsa = get_remote_arch_state ();
4653 ptid_t event_ptid = null_ptid;
4654 struct stop_reply *stop_reply;
4655 int ret;
4656
4657 /* If in non-stop mode, get out of getpkt even if a
4658 notification is received. */
4659
4660 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4661 0 /* forever */);
4662 while (1)
4663 {
4664 if (ret != -1)
4665 switch (rs->buf[0])
4666 {
4667 case 'E': /* Error of some sort. */
4668 /* We're out of sync with the target now. Did it continue
4669 or not? We can't tell which thread it was in non-stop,
4670 so just ignore this. */
4671 warning (_("Remote failure reply: %s"), rs->buf);
4672 break;
4673 case 'O': /* Console output. */
4674 remote_console_output (rs->buf + 1);
4675 break;
4676 default:
4677 warning (_("Invalid remote reply: %s"), rs->buf);
4678 break;
4679 }
4680
4681 /* Acknowledge a pending stop reply that may have arrived in the
4682 mean time. */
4683 if (pending_stop_reply != NULL)
4684 remote_get_pending_stop_replies ();
4685
4686 /* If indeed we noticed a stop reply, we're done. */
4687 stop_reply = queued_stop_reply (ptid);
4688 if (stop_reply != NULL)
4689 return process_stop_reply (stop_reply, status);
4690
4691 /* Still no event. If we're in asynchronous mode, then just
4692 return to the event loop. */
4693 if (remote_is_async_p ())
4694 {
4695 status->kind = TARGET_WAITKIND_IGNORE;
4696 return minus_one_ptid;
4697 }
4698
4699 /* Otherwise, asynchronous mode is masked, so do a blocking
4700 wait. */
4701 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4702 1 /* forever */);
4703 }
4704}
4705
4706/* Wait until the remote machine stops, then return, storing status in
4707 STATUS just as `wait' would. */
4708
4709static ptid_t
4710remote_wait_as (ptid_t ptid, struct target_waitstatus *status)
4711{
4712 struct remote_state *rs = get_remote_state ();
4713 struct remote_arch_state *rsa = get_remote_arch_state ();
4714 ptid_t event_ptid = null_ptid;
4715 ULONGEST addr;
4716 int solibs_changed = 0;
4717 char *buf, *p;
4718 struct stop_reply *stop_reply;
4719
4720 status->kind = TARGET_WAITKIND_IGNORE;
4721 status->value.integer = 0;
4722
4723 stop_reply = queued_stop_reply (ptid);
4724 if (stop_reply != NULL)
4725 return process_stop_reply (stop_reply, status);
4726
4727 if (rs->cached_wait_status)
4728 /* Use the cached wait status, but only once. */
4729 rs->cached_wait_status = 0;
4730 else
4731 {
4732 int ret;
4733
4734 if (!target_is_async_p ())
4735 {
4736 ofunc = signal (SIGINT, remote_interrupt);
4737 /* If the user hit C-c before this packet, or between packets,
4738 pretend that it was hit right here. */
4739 if (quit_flag)
4740 {
4741 quit_flag = 0;
4742 remote_interrupt (SIGINT);
4743 }
4744 }
4745
4746 /* FIXME: cagney/1999-09-27: If we're in async mode we should
4747 _never_ wait for ever -> test on target_is_async_p().
4748 However, before we do that we need to ensure that the caller
4749 knows how to take the target into/out of async mode. */
4750 ret = getpkt_sane (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
4751 if (!target_is_async_p ())
4752 signal (SIGINT, ofunc);
4753 }
4754
4755 buf = rs->buf;
4756
4757 remote_stopped_by_watchpoint_p = 0;
4758
4759 /* We got something. */
4760 rs->waiting_for_stop_reply = 0;
4761
4762 switch (buf[0])
4763 {
4764 case 'E': /* Error of some sort. */
4765 /* We're out of sync with the target now. Did it continue or
4766 not? Not is more likely, so report a stop. */
4767 warning (_("Remote failure reply: %s"), buf);
4768 status->kind = TARGET_WAITKIND_STOPPED;
4769 status->value.sig = TARGET_SIGNAL_0;
4770 break;
4771 case 'F': /* File-I/O request. */
4772 remote_fileio_request (buf);
4773 break;
4774 case 'T': case 'S': case 'X': case 'W':
4775 {
4776 struct stop_reply *stop_reply;
4777 struct cleanup *old_chain;
4778
4779 stop_reply = stop_reply_xmalloc ();
4780 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4781 remote_parse_stop_reply (buf, stop_reply);
4782 discard_cleanups (old_chain);
4783 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
4784 break;
4785 }
4786 case 'O': /* Console output. */
4787 remote_console_output (buf + 1);
e24a49d8 4788
c8e38a49
PA
4789 /* The target didn't really stop; keep waiting. */
4790 rs->waiting_for_stop_reply = 1;
e24a49d8 4791
c8e38a49
PA
4792 break;
4793 case '\0':
4794 if (last_sent_signal != TARGET_SIGNAL_0)
4795 {
4796 /* Zero length reply means that we tried 'S' or 'C' and the
4797 remote system doesn't support it. */
4798 target_terminal_ours_for_output ();
4799 printf_filtered
4800 ("Can't send signals to this remote system. %s not sent.\n",
4801 target_signal_to_name (last_sent_signal));
4802 last_sent_signal = TARGET_SIGNAL_0;
4803 target_terminal_inferior ();
4804
4805 strcpy ((char *) buf, last_sent_step ? "s" : "c");
4806 putpkt ((char *) buf);
4807
4808 /* We just told the target to resume, so a stop reply is in
4809 order. */
e24a49d8 4810 rs->waiting_for_stop_reply = 1;
c8e38a49 4811 break;
43ff13b4 4812 }
c8e38a49
PA
4813 /* else fallthrough */
4814 default:
4815 warning (_("Invalid remote reply: %s"), buf);
4816 /* Keep waiting. */
4817 rs->waiting_for_stop_reply = 1;
4818 break;
43ff13b4 4819 }
c8e38a49 4820
c8e38a49 4821 if (status->kind == TARGET_WAITKIND_IGNORE)
74531fed 4822 /* Nothing interesting happened. */
c8e38a49 4823 return minus_one_ptid;
74531fed
PA
4824 else if (status->kind != TARGET_WAITKIND_EXITED
4825 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
4826 {
4827 if (!ptid_equal (event_ptid, null_ptid))
4828 record_currthread (event_ptid);
4829 else
4830 event_ptid = inferior_ptid;
43ff13b4 4831 }
74531fed
PA
4832 else
4833 /* A process exit. Invalidate our notion of current thread. */
4834 record_currthread (minus_one_ptid);
79d7f229 4835
82f73884 4836 return event_ptid;
43ff13b4
JM
4837}
4838
74531fed
PA
4839/* Wait until the remote machine stops, then return, storing status in
4840 STATUS just as `wait' would. */
4841
c8e38a49 4842static ptid_t
117de6a9
PA
4843remote_wait (struct target_ops *ops,
4844 ptid_t ptid, struct target_waitstatus *status)
c8e38a49
PA
4845{
4846 ptid_t event_ptid;
4847
74531fed
PA
4848 if (non_stop)
4849 event_ptid = remote_wait_ns (ptid, status);
4850 else
4851 {
4852 /* In synchronous mode, keep waiting until the target stops. In
4853 asynchronous mode, always return to the event loop. */
4854
4855 do
4856 {
4857 event_ptid = remote_wait_as (ptid, status);
4858 }
4859 while (status->kind == TARGET_WAITKIND_IGNORE
4860 && !target_can_async_p ());
4861 }
c8e38a49 4862
74531fed 4863 if (target_can_async_p ())
c8e38a49 4864 {
74531fed
PA
4865 /* If there are are events left in the queue tell the event loop
4866 to return here. */
4867 if (stop_reply_queue)
4868 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 4869 }
c8e38a49
PA
4870
4871 return event_ptid;
4872}
4873
74ca34ce 4874/* Fetch a single register using a 'p' packet. */
c906108c 4875
b96ec7ac 4876static int
56be3814 4877fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac
AC
4878{
4879 struct remote_state *rs = get_remote_state ();
2e9f7625 4880 char *buf, *p;
b96ec7ac
AC
4881 char regp[MAX_REGISTER_SIZE];
4882 int i;
4883
74ca34ce
DJ
4884 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
4885 return 0;
4886
4887 if (reg->pnum == -1)
4888 return 0;
4889
2e9f7625 4890 p = rs->buf;
fcad0fa4 4891 *p++ = 'p';
74ca34ce 4892 p += hexnumstr (p, reg->pnum);
fcad0fa4 4893 *p++ = '\0';
6d820c5c 4894 remote_send (&rs->buf, &rs->buf_size);
3f9a994c 4895
2e9f7625
DJ
4896 buf = rs->buf;
4897
74ca34ce
DJ
4898 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
4899 {
4900 case PACKET_OK:
4901 break;
4902 case PACKET_UNKNOWN:
4903 return 0;
4904 case PACKET_ERROR:
4905 error (_("Could not fetch register \"%s\""),
4a22f64d 4906 gdbarch_register_name (get_regcache_arch (regcache), reg->regnum));
74ca34ce 4907 }
3f9a994c
JB
4908
4909 /* If this register is unfetchable, tell the regcache. */
4910 if (buf[0] == 'x')
8480adf2 4911 {
56be3814 4912 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 4913 return 1;
b96ec7ac 4914 }
b96ec7ac 4915
3f9a994c
JB
4916 /* Otherwise, parse and supply the value. */
4917 p = buf;
4918 i = 0;
4919 while (p[0] != 0)
4920 {
4921 if (p[1] == 0)
74ca34ce 4922 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
4923
4924 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
4925 p += 2;
4926 }
56be3814 4927 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 4928 return 1;
b96ec7ac
AC
4929}
4930
74ca34ce
DJ
4931/* Fetch the registers included in the target's 'g' packet. */
4932
29709017
DJ
4933static int
4934send_g_packet (void)
c906108c 4935{
d01949b6 4936 struct remote_state *rs = get_remote_state ();
74ca34ce 4937 int i, buf_len;
c906108c 4938 char *p;
74ca34ce 4939 char *regs;
c906108c 4940
74ca34ce
DJ
4941 sprintf (rs->buf, "g");
4942 remote_send (&rs->buf, &rs->buf_size);
c906108c 4943
29709017
DJ
4944 /* We can get out of synch in various cases. If the first character
4945 in the buffer is not a hex character, assume that has happened
4946 and try to fetch another packet to read. */
4947 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
4948 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
4949 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
4950 && rs->buf[0] != 'x') /* New: unavailable register value. */
4951 {
4952 if (remote_debug)
4953 fprintf_unfiltered (gdb_stdlog,
4954 "Bad register packet; fetching a new packet\n");
4955 getpkt (&rs->buf, &rs->buf_size, 0);
4956 }
4957
74ca34ce
DJ
4958 buf_len = strlen (rs->buf);
4959
4960 /* Sanity check the received packet. */
4961 if (buf_len % 2 != 0)
4962 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
4963
4964 return buf_len / 2;
4965}
4966
4967static void
56be3814 4968process_g_packet (struct regcache *regcache)
29709017 4969{
4a22f64d 4970 struct gdbarch *gdbarch = get_regcache_arch (regcache);
29709017
DJ
4971 struct remote_state *rs = get_remote_state ();
4972 struct remote_arch_state *rsa = get_remote_arch_state ();
4973 int i, buf_len;
4974 char *p;
4975 char *regs;
4976
4977 buf_len = strlen (rs->buf);
4978
4979 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce
DJ
4980 if (buf_len > 2 * rsa->sizeof_g_packet)
4981 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
4982
4983 /* Save the size of the packet sent to us by the target. It is used
4984 as a heuristic when determining the max size of packets that the
4985 target can safely receive. */
4986 if (rsa->actual_register_packet_size == 0)
4987 rsa->actual_register_packet_size = buf_len;
4988
4989 /* If this is smaller than we guessed the 'g' packet would be,
4990 update our records. A 'g' reply that doesn't include a register's
4991 value implies either that the register is not available, or that
4992 the 'p' packet must be used. */
4993 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 4994 {
74ca34ce
DJ
4995 rsa->sizeof_g_packet = buf_len / 2;
4996
4a22f64d 4997 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 4998 {
74ca34ce
DJ
4999 if (rsa->regs[i].pnum == -1)
5000 continue;
5001
5002 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
5003 rsa->regs[i].in_g_packet = 0;
b96ec7ac 5004 else
74ca34ce 5005 rsa->regs[i].in_g_packet = 1;
b96ec7ac 5006 }
74ca34ce 5007 }
b323314b 5008
74ca34ce 5009 regs = alloca (rsa->sizeof_g_packet);
c906108c
SS
5010
5011 /* Unimplemented registers read as all bits zero. */
ea9c271d 5012 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 5013
c906108c
SS
5014 /* Reply describes registers byte by byte, each byte encoded as two
5015 hex characters. Suck them all up, then supply them to the
5016 register cacheing/storage mechanism. */
5017
74ca34ce 5018 p = rs->buf;
ea9c271d 5019 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 5020 {
74ca34ce
DJ
5021 if (p[0] == 0 || p[1] == 0)
5022 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
5023 internal_error (__FILE__, __LINE__,
5024 "unexpected end of 'g' packet reply");
5025
c906108c 5026 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 5027 regs[i] = 0; /* 'x' */
c906108c
SS
5028 else
5029 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
5030 p += 2;
5031 }
5032
ad10f812 5033 {
b323314b 5034 int i;
4a22f64d 5035 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 5036 {
ea9c271d 5037 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
5038 if (r->in_g_packet)
5039 {
74ca34ce
DJ
5040 if (r->offset * 2 >= strlen (rs->buf))
5041 /* This shouldn't happen - we adjusted in_g_packet above. */
5042 internal_error (__FILE__, __LINE__,
5043 "unexpected end of 'g' packet reply");
5044 else if (rs->buf[r->offset * 2] == 'x')
8ccc1287 5045 {
74ca34ce 5046 gdb_assert (r->offset * 2 < strlen (rs->buf));
8ccc1287
AC
5047 /* The register isn't available, mark it as such (at
5048 the same time setting the value to zero). */
56be3814 5049 regcache_raw_supply (regcache, r->regnum, NULL);
8ccc1287
AC
5050 }
5051 else
56be3814 5052 regcache_raw_supply (regcache, r->regnum,
8ccc1287 5053 regs + r->offset);
b323314b 5054 }
ad10f812
AC
5055 }
5056 }
c906108c
SS
5057}
5058
29709017 5059static void
56be3814 5060fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
5061{
5062 send_g_packet ();
56be3814 5063 process_g_packet (regcache);
29709017
DJ
5064}
5065
74ca34ce 5066static void
28439f5e
PA
5067remote_fetch_registers (struct target_ops *ops,
5068 struct regcache *regcache, int regnum)
74ca34ce
DJ
5069{
5070 struct remote_state *rs = get_remote_state ();
5071 struct remote_arch_state *rsa = get_remote_arch_state ();
5072 int i;
5073
79d7f229 5074 set_general_thread (inferior_ptid);
74ca34ce
DJ
5075
5076 if (regnum >= 0)
5077 {
5078 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5079 gdb_assert (reg != NULL);
5080
5081 /* If this register might be in the 'g' packet, try that first -
5082 we are likely to read more than one register. If this is the
5083 first 'g' packet, we might be overly optimistic about its
5084 contents, so fall back to 'p'. */
5085 if (reg->in_g_packet)
5086 {
56be3814 5087 fetch_registers_using_g (regcache);
74ca34ce
DJ
5088 if (reg->in_g_packet)
5089 return;
5090 }
5091
56be3814 5092 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
5093 return;
5094
5095 /* This register is not available. */
56be3814 5096 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
5097
5098 return;
5099 }
5100
56be3814 5101 fetch_registers_using_g (regcache);
74ca34ce 5102
4a22f64d 5103 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 5104 if (!rsa->regs[i].in_g_packet)
56be3814 5105 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
5106 {
5107 /* This register is not available. */
56be3814 5108 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
5109 }
5110}
5111
c906108c
SS
5112/* Prepare to store registers. Since we may send them all (using a
5113 'G' request), we have to read out the ones we don't want to change
5114 first. */
5115
c5aa993b 5116static void
316f2060 5117remote_prepare_to_store (struct regcache *regcache)
c906108c 5118{
ea9c271d 5119 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 5120 int i;
cfd77fa1 5121 gdb_byte buf[MAX_REGISTER_SIZE];
cf0e1e0d 5122
c906108c 5123 /* Make sure the entire registers array is valid. */
444abaca 5124 switch (remote_protocol_packets[PACKET_P].support)
5a2468f5
JM
5125 {
5126 case PACKET_DISABLE:
5127 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 5128 /* Make sure all the necessary registers are cached. */
4a22f64d 5129 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ea9c271d 5130 if (rsa->regs[i].in_g_packet)
316f2060 5131 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5a2468f5
JM
5132 break;
5133 case PACKET_ENABLE:
5134 break;
5135 }
5136}
5137
ad10f812 5138/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 5139 packet was not recognized. */
5a2468f5
JM
5140
5141static int
56be3814 5142store_register_using_P (const struct regcache *regcache, struct packet_reg *reg)
5a2468f5 5143{
4a22f64d 5144 struct gdbarch *gdbarch = get_regcache_arch (regcache);
d01949b6 5145 struct remote_state *rs = get_remote_state ();
ea9c271d 5146 struct remote_arch_state *rsa = get_remote_arch_state ();
5a2468f5 5147 /* Try storing a single register. */
6d820c5c 5148 char *buf = rs->buf;
cfd77fa1 5149 gdb_byte regp[MAX_REGISTER_SIZE];
5a2468f5 5150 char *p;
5a2468f5 5151
74ca34ce
DJ
5152 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
5153 return 0;
5154
5155 if (reg->pnum == -1)
5156 return 0;
5157
ea9c271d 5158 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 5159 p = buf + strlen (buf);
56be3814 5160 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 5161 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
6d820c5c 5162 remote_send (&rs->buf, &rs->buf_size);
5a2468f5 5163
74ca34ce
DJ
5164 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
5165 {
5166 case PACKET_OK:
5167 return 1;
5168 case PACKET_ERROR:
5169 error (_("Could not write register \"%s\""),
4a22f64d 5170 gdbarch_register_name (gdbarch, reg->regnum));
74ca34ce
DJ
5171 case PACKET_UNKNOWN:
5172 return 0;
5173 default:
5174 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
5175 }
c906108c
SS
5176}
5177
23860348
MS
5178/* Store register REGNUM, or all registers if REGNUM == -1, from the
5179 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
5180
5181static void
56be3814 5182store_registers_using_G (const struct regcache *regcache)
c906108c 5183{
d01949b6 5184 struct remote_state *rs = get_remote_state ();
ea9c271d 5185 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 5186 gdb_byte *regs;
c906108c
SS
5187 char *p;
5188
193cb69f
AC
5189 /* Extract all the registers in the regcache copying them into a
5190 local buffer. */
5191 {
b323314b 5192 int i;
ea9c271d
DJ
5193 regs = alloca (rsa->sizeof_g_packet);
5194 memset (regs, 0, rsa->sizeof_g_packet);
4a22f64d 5195 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
193cb69f 5196 {
ea9c271d 5197 struct packet_reg *r = &rsa->regs[i];
b323314b 5198 if (r->in_g_packet)
56be3814 5199 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
5200 }
5201 }
c906108c
SS
5202
5203 /* Command describes registers byte by byte,
5204 each byte encoded as two hex characters. */
6d820c5c 5205 p = rs->buf;
193cb69f 5206 *p++ = 'G';
74ca34ce
DJ
5207 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
5208 updated. */
5209 bin2hex (regs, p, rsa->sizeof_g_packet);
6d820c5c 5210 remote_send (&rs->buf, &rs->buf_size);
c906108c 5211}
74ca34ce
DJ
5212
5213/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
5214 of the register cache buffer. FIXME: ignores errors. */
5215
5216static void
28439f5e
PA
5217remote_store_registers (struct target_ops *ops,
5218 struct regcache *regcache, int regnum)
74ca34ce
DJ
5219{
5220 struct remote_state *rs = get_remote_state ();
5221 struct remote_arch_state *rsa = get_remote_arch_state ();
5222 int i;
5223
79d7f229 5224 set_general_thread (inferior_ptid);
74ca34ce
DJ
5225
5226 if (regnum >= 0)
5227 {
5228 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5229 gdb_assert (reg != NULL);
5230
5231 /* Always prefer to store registers using the 'P' packet if
5232 possible; we often change only a small number of registers.
5233 Sometimes we change a larger number; we'd need help from a
5234 higher layer to know to use 'G'. */
56be3814 5235 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
5236 return;
5237
5238 /* For now, don't complain if we have no way to write the
5239 register. GDB loses track of unavailable registers too
5240 easily. Some day, this may be an error. We don't have
5241 any way to read the register, either... */
5242 if (!reg->in_g_packet)
5243 return;
5244
56be3814 5245 store_registers_using_G (regcache);
74ca34ce
DJ
5246 return;
5247 }
5248
56be3814 5249 store_registers_using_G (regcache);
74ca34ce 5250
4a22f64d 5251 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 5252 if (!rsa->regs[i].in_g_packet)
56be3814 5253 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
5254 /* See above for why we do not issue an error here. */
5255 continue;
5256}
c906108c
SS
5257\f
5258
5259/* Return the number of hex digits in num. */
5260
5261static int
fba45db2 5262hexnumlen (ULONGEST num)
c906108c
SS
5263{
5264 int i;
5265
5266 for (i = 0; num != 0; i++)
5267 num >>= 4;
5268
5269 return max (i, 1);
5270}
5271
2df3850c 5272/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
5273
5274static int
fba45db2 5275hexnumstr (char *buf, ULONGEST num)
c906108c 5276{
c906108c 5277 int len = hexnumlen (num);
2df3850c
JM
5278 return hexnumnstr (buf, num, len);
5279}
5280
c906108c 5281
2df3850c 5282/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 5283
2df3850c 5284static int
fba45db2 5285hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
5286{
5287 int i;
5288
5289 buf[width] = '\0';
5290
5291 for (i = width - 1; i >= 0; i--)
c906108c 5292 {
c5aa993b 5293 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
5294 num >>= 4;
5295 }
5296
2df3850c 5297 return width;
c906108c
SS
5298}
5299
23860348 5300/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
5301
5302static CORE_ADDR
fba45db2 5303remote_address_masked (CORE_ADDR addr)
c906108c 5304{
911c95a5
UW
5305 int address_size = remote_address_size;
5306 /* If "remoteaddresssize" was not set, default to target address size. */
5307 if (!address_size)
1cf3db46 5308 address_size = gdbarch_addr_bit (target_gdbarch);
911c95a5
UW
5309
5310 if (address_size > 0
5311 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
5312 {
5313 /* Only create a mask when that mask can safely be constructed
23860348 5314 in a ULONGEST variable. */
c906108c 5315 ULONGEST mask = 1;
911c95a5 5316 mask = (mask << address_size) - 1;
c906108c
SS
5317 addr &= mask;
5318 }
5319 return addr;
5320}
5321
a31ea83d
DJ
5322/* Convert BUFFER, binary data at least LEN bytes long, into escaped
5323 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
5324 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
5325 (which may be more than *OUT_LEN due to escape characters). The
5326 total number of bytes in the output buffer will be at most
5327 OUT_MAXLEN. */
5328
5329static int
5330remote_escape_output (const gdb_byte *buffer, int len,
5331 gdb_byte *out_buf, int *out_len,
5332 int out_maxlen)
5333{
5334 int input_index, output_index;
5335
5336 output_index = 0;
5337 for (input_index = 0; input_index < len; input_index++)
5338 {
5339 gdb_byte b = buffer[input_index];
5340
5341 if (b == '$' || b == '#' || b == '}')
5342 {
5343 /* These must be escaped. */
5344 if (output_index + 2 > out_maxlen)
5345 break;
5346 out_buf[output_index++] = '}';
5347 out_buf[output_index++] = b ^ 0x20;
5348 }
5349 else
5350 {
5351 if (output_index + 1 > out_maxlen)
5352 break;
5353 out_buf[output_index++] = b;
5354 }
5355 }
5356
5357 *out_len = input_index;
5358 return output_index;
5359}
5360
0876f84a
DJ
5361/* Convert BUFFER, escaped data LEN bytes long, into binary data
5362 in OUT_BUF. Return the number of bytes written to OUT_BUF.
5363 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
5364
5365 This function reverses remote_escape_output. It allows more
5366 escaped characters than that function does, in particular because
5367 '*' must be escaped to avoid the run-length encoding processing
5368 in reading packets. */
5369
5370static int
5371remote_unescape_input (const gdb_byte *buffer, int len,
5372 gdb_byte *out_buf, int out_maxlen)
5373{
5374 int input_index, output_index;
5375 int escaped;
5376
5377 output_index = 0;
5378 escaped = 0;
5379 for (input_index = 0; input_index < len; input_index++)
5380 {
5381 gdb_byte b = buffer[input_index];
5382
5383 if (output_index + 1 > out_maxlen)
5384 {
5385 warning (_("Received too much data from remote target;"
5386 " ignoring overflow."));
5387 return output_index;
5388 }
5389
5390 if (escaped)
5391 {
5392 out_buf[output_index++] = b ^ 0x20;
5393 escaped = 0;
5394 }
5395 else if (b == '}')
5396 escaped = 1;
5397 else
5398 out_buf[output_index++] = b;
5399 }
5400
5401 if (escaped)
5402 error (_("Unmatched escape character in target response."));
5403
5404 return output_index;
5405}
5406
c906108c
SS
5407/* Determine whether the remote target supports binary downloading.
5408 This is accomplished by sending a no-op memory write of zero length
5409 to the target at the specified address. It does not suffice to send
23860348
MS
5410 the whole packet, since many stubs strip the eighth bit and
5411 subsequently compute a wrong checksum, which causes real havoc with
5412 remote_write_bytes.
7a292a7a 5413
96baa820
JM
5414 NOTE: This can still lose if the serial line is not eight-bit
5415 clean. In cases like this, the user should clear "remote
23860348 5416 X-packet". */
96baa820 5417
c906108c 5418static void
fba45db2 5419check_binary_download (CORE_ADDR addr)
c906108c 5420{
d01949b6 5421 struct remote_state *rs = get_remote_state ();
24b06219 5422
444abaca 5423 switch (remote_protocol_packets[PACKET_X].support)
c906108c 5424 {
96baa820
JM
5425 case PACKET_DISABLE:
5426 break;
5427 case PACKET_ENABLE:
5428 break;
5429 case PACKET_SUPPORT_UNKNOWN:
5430 {
96baa820 5431 char *p;
802188a7 5432
2e9f7625 5433 p = rs->buf;
96baa820
JM
5434 *p++ = 'X';
5435 p += hexnumstr (p, (ULONGEST) addr);
5436 *p++ = ',';
5437 p += hexnumstr (p, (ULONGEST) 0);
5438 *p++ = ':';
5439 *p = '\0';
802188a7 5440
2e9f7625 5441 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 5442 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 5443
2e9f7625 5444 if (rs->buf[0] == '\0')
96baa820
JM
5445 {
5446 if (remote_debug)
5447 fprintf_unfiltered (gdb_stdlog,
5448 "binary downloading NOT suppported by target\n");
444abaca 5449 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
5450 }
5451 else
5452 {
5453 if (remote_debug)
5454 fprintf_unfiltered (gdb_stdlog,
5455 "binary downloading suppported by target\n");
444abaca 5456 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
5457 }
5458 break;
5459 }
c906108c
SS
5460 }
5461}
5462
5463/* Write memory data directly to the remote machine.
5464 This does not inform the data cache; the data cache uses this.
a76d924d 5465 HEADER is the starting part of the packet.
c906108c
SS
5466 MEMADDR is the address in the remote memory space.
5467 MYADDR is the address of the buffer in our space.
5468 LEN is the number of bytes.
a76d924d
DJ
5469 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
5470 should send data as binary ('X'), or hex-encoded ('M').
5471
5472 The function creates packet of the form
5473 <HEADER><ADDRESS>,<LENGTH>:<DATA>
5474
5475 where encoding of <DATA> is termined by PACKET_FORMAT.
5476
5477 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
5478 are omitted.
5479
5480 Returns the number of bytes transferred, or 0 (setting errno) for
23860348 5481 error. Only transfer a single packet. */
c906108c 5482
a76d924d
DJ
5483static int
5484remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
5485 const gdb_byte *myaddr, int len,
5486 char packet_format, int use_length)
c906108c 5487{
6d820c5c 5488 struct remote_state *rs = get_remote_state ();
cfd77fa1 5489 char *p;
a76d924d
DJ
5490 char *plen = NULL;
5491 int plenlen = 0;
917317f4
JM
5492 int todo;
5493 int nr_bytes;
a257b5bb 5494 int payload_size;
6765f3e5 5495 int payload_length;
a76d924d
DJ
5496 int header_length;
5497
5498 if (packet_format != 'X' && packet_format != 'M')
5499 internal_error (__FILE__, __LINE__,
5500 "remote_write_bytes_aux: bad packet format");
c906108c 5501
b2182ed2
DJ
5502 if (len <= 0)
5503 return 0;
5504
3de11b2e 5505 payload_size = get_memory_write_packet_size ();
2bc416ba 5506
6d820c5c
DJ
5507 /* The packet buffer will be large enough for the payload;
5508 get_memory_packet_size ensures this. */
a76d924d 5509 rs->buf[0] = '\0';
c906108c 5510
a257b5bb 5511 /* Compute the size of the actual payload by subtracting out the
3de11b2e
NS
5512 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
5513 */
a76d924d
DJ
5514 payload_size -= strlen ("$,:#NN");
5515 if (!use_length)
5516 /* The comma won't be used. */
5517 payload_size += 1;
5518 header_length = strlen (header);
5519 payload_size -= header_length;
3de11b2e 5520 payload_size -= hexnumlen (memaddr);
c906108c 5521
a76d924d 5522 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 5523
a76d924d
DJ
5524 strcat (rs->buf, header);
5525 p = rs->buf + strlen (header);
5526
5527 /* Compute a best guess of the number of bytes actually transfered. */
5528 if (packet_format == 'X')
c906108c 5529 {
23860348 5530 /* Best guess at number of bytes that will fit. */
a257b5bb 5531 todo = min (len, payload_size);
a76d924d
DJ
5532 if (use_length)
5533 payload_size -= hexnumlen (todo);
3de11b2e 5534 todo = min (todo, payload_size);
a76d924d
DJ
5535 }
5536 else
5537 {
23860348 5538 /* Num bytes that will fit. */
a257b5bb 5539 todo = min (len, payload_size / 2);
a76d924d
DJ
5540 if (use_length)
5541 payload_size -= hexnumlen (todo);
3de11b2e 5542 todo = min (todo, payload_size / 2);
917317f4 5543 }
a76d924d 5544
3de11b2e
NS
5545 if (todo <= 0)
5546 internal_error (__FILE__, __LINE__,
5547 _("minumum packet size too small to write data"));
802188a7 5548
6765f3e5
DJ
5549 /* If we already need another packet, then try to align the end
5550 of this packet to a useful boundary. */
5551 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
5552 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
5553
a257b5bb 5554 /* Append "<memaddr>". */
917317f4
JM
5555 memaddr = remote_address_masked (memaddr);
5556 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 5557
a76d924d
DJ
5558 if (use_length)
5559 {
5560 /* Append ",". */
5561 *p++ = ',';
802188a7 5562
a76d924d
DJ
5563 /* Append <len>. Retain the location/size of <len>. It may need to
5564 be adjusted once the packet body has been created. */
5565 plen = p;
5566 plenlen = hexnumstr (p, (ULONGEST) todo);
5567 p += plenlen;
5568 }
a257b5bb
AC
5569
5570 /* Append ":". */
917317f4
JM
5571 *p++ = ':';
5572 *p = '\0';
802188a7 5573
a257b5bb 5574 /* Append the packet body. */
a76d924d 5575 if (packet_format == 'X')
917317f4 5576 {
917317f4
JM
5577 /* Binary mode. Send target system values byte by byte, in
5578 increasing byte addresses. Only escape certain critical
5579 characters. */
6765f3e5
DJ
5580 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
5581 payload_size);
5582
5583 /* If not all TODO bytes fit, then we'll need another packet. Make
9b7194bc
DJ
5584 a second try to keep the end of the packet aligned. Don't do
5585 this if the packet is tiny. */
5586 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6765f3e5
DJ
5587 {
5588 int new_nr_bytes;
5589
5590 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
5591 - memaddr);
5592 if (new_nr_bytes != nr_bytes)
5593 payload_length = remote_escape_output (myaddr, new_nr_bytes,
5594 p, &nr_bytes,
5595 payload_size);
5596 }
5597
5598 p += payload_length;
a76d924d 5599 if (use_length && nr_bytes < todo)
c906108c 5600 {
802188a7 5601 /* Escape chars have filled up the buffer prematurely,
917317f4
JM
5602 and we have actually sent fewer bytes than planned.
5603 Fix-up the length field of the packet. Use the same
5604 number of characters as before. */
917317f4
JM
5605 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
5606 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 5607 }
a76d924d
DJ
5608 }
5609 else
5610 {
917317f4
JM
5611 /* Normal mode: Send target system values byte by byte, in
5612 increasing byte addresses. Each byte is encoded as a two hex
5613 value. */
2644f393 5614 nr_bytes = bin2hex (myaddr, p, todo);
aa6c0017 5615 p += 2 * nr_bytes;
c906108c 5616 }
802188a7 5617
2e9f7625 5618 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 5619 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 5620
2e9f7625 5621 if (rs->buf[0] == 'E')
917317f4
JM
5622 {
5623 /* There is no correspondance between what the remote protocol
5624 uses for errors and errno codes. We would like a cleaner way
5625 of representing errors (big enough to include errno codes,
5626 bfd_error codes, and others). But for now just return EIO. */
5627 errno = EIO;
5628 return 0;
5629 }
802188a7 5630
23860348
MS
5631 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
5632 fewer bytes than we'd planned. */
917317f4 5633 return nr_bytes;
c906108c
SS
5634}
5635
a76d924d
DJ
5636/* Write memory data directly to the remote machine.
5637 This does not inform the data cache; the data cache uses this.
5638 MEMADDR is the address in the remote memory space.
5639 MYADDR is the address of the buffer in our space.
5640 LEN is the number of bytes.
5641
5642 Returns number of bytes transferred, or 0 (setting errno) for
5643 error. Only transfer a single packet. */
5644
5645int
5646remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
5647{
5648 char *packet_format = 0;
5649
5650 /* Check whether the target supports binary download. */
5651 check_binary_download (memaddr);
5652
5653 switch (remote_protocol_packets[PACKET_X].support)
5654 {
5655 case PACKET_ENABLE:
5656 packet_format = "X";
5657 break;
5658 case PACKET_DISABLE:
5659 packet_format = "M";
5660 break;
5661 case PACKET_SUPPORT_UNKNOWN:
5662 internal_error (__FILE__, __LINE__,
5663 _("remote_write_bytes: bad internal state"));
5664 default:
5665 internal_error (__FILE__, __LINE__, _("bad switch"));
5666 }
5667
5668 return remote_write_bytes_aux (packet_format,
5669 memaddr, myaddr, len, packet_format[0], 1);
5670}
5671
c906108c
SS
5672/* Read memory data directly from the remote machine.
5673 This does not use the data cache; the data cache uses this.
5674 MEMADDR is the address in the remote memory space.
5675 MYADDR is the address of the buffer in our space.
5676 LEN is the number of bytes.
5677
5678 Returns number of bytes transferred, or 0 for error. */
5679
917317f4
JM
5680/* NOTE: cagney/1999-10-18: This function (and its siblings in other
5681 remote targets) shouldn't attempt to read the entire buffer.
5682 Instead it should read a single packet worth of data and then
5683 return the byte size of that packet to the caller. The caller (its
5684 caller and its callers caller ;-) already contains code for
23860348 5685 handling partial reads. */
917317f4 5686
449092f6 5687int
cfd77fa1 5688remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 5689{
6d820c5c 5690 struct remote_state *rs = get_remote_state ();
23860348 5691 int max_buf_size; /* Max size of packet output buffer. */
c906108c
SS
5692 int origlen;
5693
b2182ed2
DJ
5694 if (len <= 0)
5695 return 0;
5696
11cf8741 5697 max_buf_size = get_memory_read_packet_size ();
6d820c5c
DJ
5698 /* The packet buffer will be large enough for the payload;
5699 get_memory_packet_size ensures this. */
c906108c
SS
5700
5701 origlen = len;
5702 while (len > 0)
5703 {
c906108c
SS
5704 char *p;
5705 int todo;
5706 int i;
5707
c5aa993b 5708 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
c906108c
SS
5709
5710 /* construct "m"<memaddr>","<len>" */
2e9f7625 5711 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
c906108c 5712 memaddr = remote_address_masked (memaddr);
2e9f7625 5713 p = rs->buf;
c906108c
SS
5714 *p++ = 'm';
5715 p += hexnumstr (p, (ULONGEST) memaddr);
5716 *p++ = ',';
5717 p += hexnumstr (p, (ULONGEST) todo);
5718 *p = '\0';
5719
2e9f7625 5720 putpkt (rs->buf);
6d820c5c 5721 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 5722
2e9f7625
DJ
5723 if (rs->buf[0] == 'E'
5724 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
5725 && rs->buf[3] == '\0')
c906108c 5726 {
23860348
MS
5727 /* There is no correspondance between what the remote
5728 protocol uses for errors and errno codes. We would like
5729 a cleaner way of representing errors (big enough to
5730 include errno codes, bfd_error codes, and others). But
5731 for now just return EIO. */
c906108c
SS
5732 errno = EIO;
5733 return 0;
5734 }
5735
c5aa993b
JM
5736 /* Reply describes memory byte by byte,
5737 each byte encoded as two hex characters. */
c906108c 5738
2e9f7625 5739 p = rs->buf;
30559e10 5740 if ((i = hex2bin (p, myaddr, todo)) < todo)
c906108c 5741 {
30559e10 5742 /* Reply is short. This means that we were able to read
23860348 5743 only part of what we wanted to. */
30559e10 5744 return i + (origlen - len);
c906108c
SS
5745 }
5746 myaddr += todo;
5747 memaddr += todo;
5748 len -= todo;
5749 }
5750 return origlen;
5751}
74531fed
PA
5752\f
5753
5754/* Remote notification handler. */
5755
5756static void
5757handle_notification (char *buf, size_t length)
5758{
5759 if (strncmp (buf, "Stop:", 5) == 0)
5760 {
5761 if (pending_stop_reply)
5762 /* We've already parsed the in-flight stop-reply, but the stub
5763 for some reason thought we didn't, possibly due to timeout
5764 on its side. Just ignore it. */
5765 ;
5766 else
5767 {
5768 struct cleanup *old_chain;
5769 struct stop_reply *reply = stop_reply_xmalloc ();
5770 old_chain = make_cleanup (do_stop_reply_xfree, reply);
5771
5772 remote_parse_stop_reply (buf + 5, reply);
5773
5774 discard_cleanups (old_chain);
5775
5776 /* Be careful to only set it after parsing, since an error
5777 may be thrown then. */
5778 pending_stop_reply = reply;
5779
5780 /* Notify the event loop there's a stop reply to acknowledge
5781 and that there may be more events to fetch. */
5782 mark_async_event_handler (remote_async_get_pending_events_token);
5783 }
5784 }
5785 else
5786 /* We ignore notifications we don't recognize, for compatibility
5787 with newer stubs. */
5788 ;
5789}
5790
c906108c
SS
5791\f
5792/* Read or write LEN bytes from inferior memory at MEMADDR,
23860348
MS
5793 transferring to or from debugger address BUFFER. Write to inferior
5794 if SHOULD_WRITE is nonzero. Returns length of data written or
5795 read; 0 for error. TARGET is unused. */
392a587b 5796
c906108c 5797static int
961cb7b5 5798remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
0a65a603 5799 int should_write, struct mem_attrib *attrib,
29e57380 5800 struct target_ops *target)
c906108c 5801{
4930751a
C
5802 int res;
5803
82f73884
PA
5804 set_general_thread (inferior_ptid);
5805
4930751a 5806 if (should_write)
b2182ed2 5807 res = remote_write_bytes (mem_addr, buffer, mem_len);
4930751a 5808 else
b2182ed2 5809 res = remote_read_bytes (mem_addr, buffer, mem_len);
4930751a
C
5810
5811 return res;
c906108c
SS
5812}
5813
a76d924d
DJ
5814/* Sends a packet with content determined by the printf format string
5815 FORMAT and the remaining arguments, then gets the reply. Returns
5816 whether the packet was a success, a failure, or unknown. */
5817
2c0b251b 5818static enum packet_result
a76d924d
DJ
5819remote_send_printf (const char *format, ...)
5820{
5821 struct remote_state *rs = get_remote_state ();
5822 int max_size = get_remote_packet_size ();
5823
5824 va_list ap;
5825 va_start (ap, format);
5826
5827 rs->buf[0] = '\0';
5828 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
5829 internal_error (__FILE__, __LINE__, "Too long remote packet.");
5830
5831 if (putpkt (rs->buf) < 0)
5832 error (_("Communication problem with target."));
5833
5834 rs->buf[0] = '\0';
5835 getpkt (&rs->buf, &rs->buf_size, 0);
5836
5837 return packet_check_result (rs->buf);
5838}
5839
5840static void
5841restore_remote_timeout (void *p)
5842{
5843 int value = *(int *)p;
5844 remote_timeout = value;
5845}
5846
5847/* Flash writing can take quite some time. We'll set
5848 effectively infinite timeout for flash operations.
5849 In future, we'll need to decide on a better approach. */
5850static const int remote_flash_timeout = 1000;
5851
5852static void
5853remote_flash_erase (struct target_ops *ops,
5854 ULONGEST address, LONGEST length)
5855{
5856 int saved_remote_timeout = remote_timeout;
5857 enum packet_result ret;
5858
5859 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5860 &saved_remote_timeout);
5861 remote_timeout = remote_flash_timeout;
5862
5863 ret = remote_send_printf ("vFlashErase:%s,%s",
5864 paddr (address),
5865 phex (length, 4));
5866 switch (ret)
5867 {
5868 case PACKET_UNKNOWN:
5869 error (_("Remote target does not support flash erase"));
5870 case PACKET_ERROR:
5871 error (_("Error erasing flash with vFlashErase packet"));
5872 default:
5873 break;
5874 }
5875
5876 do_cleanups (back_to);
5877}
5878
5879static LONGEST
5880remote_flash_write (struct target_ops *ops,
5881 ULONGEST address, LONGEST length,
5882 const gdb_byte *data)
5883{
5884 int saved_remote_timeout = remote_timeout;
5885 int ret;
5886 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5887 &saved_remote_timeout);
5888
5889 remote_timeout = remote_flash_timeout;
5890 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
5891 do_cleanups (back_to);
5892
5893 return ret;
5894}
5895
5896static void
5897remote_flash_done (struct target_ops *ops)
5898{
5899 int saved_remote_timeout = remote_timeout;
5900 int ret;
5901 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5902 &saved_remote_timeout);
5903
5904 remote_timeout = remote_flash_timeout;
5905 ret = remote_send_printf ("vFlashDone");
5906 do_cleanups (back_to);
5907
5908 switch (ret)
5909 {
5910 case PACKET_UNKNOWN:
5911 error (_("Remote target does not support vFlashDone"));
5912 case PACKET_ERROR:
5913 error (_("Error finishing flash operation"));
5914 default:
5915 break;
5916 }
5917}
5918
c906108c 5919static void
fba45db2 5920remote_files_info (struct target_ops *ignore)
c906108c
SS
5921{
5922 puts_filtered ("Debugging a target over a serial line.\n");
5923}
5924\f
5925/* Stuff for dealing with the packets which are part of this protocol.
5926 See comment at top of file for details. */
5927
0876f84a 5928/* Read a single character from the remote end. */
c906108c
SS
5929
5930static int
fba45db2 5931readchar (int timeout)
c906108c
SS
5932{
5933 int ch;
5934
2cd58942 5935 ch = serial_readchar (remote_desc, timeout);
c906108c 5936
2acceee2 5937 if (ch >= 0)
0876f84a 5938 return ch;
2acceee2
JM
5939
5940 switch ((enum serial_rc) ch)
c906108c
SS
5941 {
5942 case SERIAL_EOF:
ce5ce7ed 5943 pop_target ();
8a3fe4f8 5944 error (_("Remote connection closed"));
2acceee2 5945 /* no return */
c906108c 5946 case SERIAL_ERROR:
e2e0b3e5 5947 perror_with_name (_("Remote communication error"));
2acceee2 5948 /* no return */
c906108c 5949 case SERIAL_TIMEOUT:
2acceee2 5950 break;
c906108c 5951 }
2acceee2 5952 return ch;
c906108c
SS
5953}
5954
6d820c5c
DJ
5955/* Send the command in *BUF to the remote machine, and read the reply
5956 into *BUF. Report an error if we get an error reply. Resize
5957 *BUF using xrealloc if necessary to hold the result, and update
5958 *SIZEOF_BUF. */
c906108c
SS
5959
5960static void
6d820c5c
DJ
5961remote_send (char **buf,
5962 long *sizeof_buf)
c906108c 5963{
6d820c5c 5964 putpkt (*buf);
c2d11a7d 5965 getpkt (buf, sizeof_buf, 0);
c906108c 5966
6d820c5c
DJ
5967 if ((*buf)[0] == 'E')
5968 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
5969}
5970
6e5abd65
PA
5971/* Return a pointer to an xmalloc'ed string representing an escaped
5972 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
5973 etc. The caller is responsible for releasing the returned
5974 memory. */
5975
5976static char *
5977escape_buffer (const char *buf, int n)
5978{
5979 struct cleanup *old_chain;
5980 struct ui_file *stb;
5981 char *str;
5982 long length;
5983
5984 stb = mem_fileopen ();
5985 old_chain = make_cleanup_ui_file_delete (stb);
5986
5987 fputstrn_unfiltered (buf, n, 0, stb);
5988 str = ui_file_xstrdup (stb, &length);
5989 do_cleanups (old_chain);
5990 return str;
5991}
5992
c906108c
SS
5993/* Display a null-terminated packet on stdout, for debugging, using C
5994 string notation. */
5995
5996static void
fba45db2 5997print_packet (char *buf)
c906108c
SS
5998{
5999 puts_filtered ("\"");
43e526b9 6000 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
6001 puts_filtered ("\"");
6002}
6003
6004int
fba45db2 6005putpkt (char *buf)
c906108c
SS
6006{
6007 return putpkt_binary (buf, strlen (buf));
6008}
6009
6010/* Send a packet to the remote machine, with error checking. The data
23860348 6011 of the packet is in BUF. The string in BUF can be at most
ea9c271d 6012 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
6013 and for a possible /0 if we are debugging (remote_debug) and want
6014 to print the sent packet as a string. */
c906108c
SS
6015
6016static int
fba45db2 6017putpkt_binary (char *buf, int cnt)
c906108c 6018{
2d717e4f 6019 struct remote_state *rs = get_remote_state ();
c906108c
SS
6020 int i;
6021 unsigned char csum = 0;
11cf8741 6022 char *buf2 = alloca (cnt + 6);
085dd6e6 6023
c906108c
SS
6024 int ch;
6025 int tcount = 0;
6026 char *p;
6027
e24a49d8
PA
6028 /* Catch cases like trying to read memory or listing threads while
6029 we're waiting for a stop reply. The remote server wouldn't be
6030 ready to handle this request, so we'd hang and timeout. We don't
6031 have to worry about this in synchronous mode, because in that
6032 case it's not possible to issue a command while the target is
74531fed
PA
6033 running. This is not a problem in non-stop mode, because in that
6034 case, the stub is always ready to process serial input. */
6035 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
e24a49d8
PA
6036 error (_("Cannot execute this command while the target is running."));
6037
2d717e4f
DJ
6038 /* We're sending out a new packet. Make sure we don't look at a
6039 stale cached response. */
6040 rs->cached_wait_status = 0;
6041
c906108c
SS
6042 /* Copy the packet into buffer BUF2, encapsulating it
6043 and giving it a checksum. */
6044
c906108c
SS
6045 p = buf2;
6046 *p++ = '$';
6047
6048 for (i = 0; i < cnt; i++)
6049 {
6050 csum += buf[i];
6051 *p++ = buf[i];
6052 }
6053 *p++ = '#';
6054 *p++ = tohex ((csum >> 4) & 0xf);
6055 *p++ = tohex (csum & 0xf);
6056
6057 /* Send it over and over until we get a positive ack. */
6058
6059 while (1)
6060 {
6061 int started_error_output = 0;
6062
6063 if (remote_debug)
6064 {
6e5abd65
PA
6065 struct cleanup *old_chain;
6066 char *str;
6067
c906108c 6068 *p = '\0';
6e5abd65
PA
6069 str = escape_buffer (buf2, p - buf2);
6070 old_chain = make_cleanup (xfree, str);
6071 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
0f71a2f6 6072 gdb_flush (gdb_stdlog);
6e5abd65 6073 do_cleanups (old_chain);
c906108c 6074 }
2cd58942 6075 if (serial_write (remote_desc, buf2, p - buf2))
e2e0b3e5 6076 perror_with_name (_("putpkt: write failed"));
c906108c 6077
a6f3e723
SL
6078 /* If this is a no acks version of the remote protocol, send the
6079 packet and move on. */
6080 if (rs->noack_mode)
6081 break;
6082
74531fed
PA
6083 /* Read until either a timeout occurs (-2) or '+' is read.
6084 Handle any notification that arrives in the mean time. */
c906108c
SS
6085 while (1)
6086 {
6087 ch = readchar (remote_timeout);
6088
c5aa993b 6089 if (remote_debug)
c906108c
SS
6090 {
6091 switch (ch)
6092 {
6093 case '+':
1216fa2c 6094 case '-':
c906108c
SS
6095 case SERIAL_TIMEOUT:
6096 case '$':
74531fed 6097 case '%':
c906108c
SS
6098 if (started_error_output)
6099 {
6100 putchar_unfiltered ('\n');
6101 started_error_output = 0;
6102 }
6103 }
6104 }
6105
6106 switch (ch)
6107 {
6108 case '+':
6109 if (remote_debug)
0f71a2f6 6110 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 6111 return 1;
1216fa2c
AC
6112 case '-':
6113 if (remote_debug)
6114 fprintf_unfiltered (gdb_stdlog, "Nak\n");
c906108c 6115 case SERIAL_TIMEOUT:
c5aa993b 6116 tcount++;
c906108c
SS
6117 if (tcount > 3)
6118 return 0;
23860348 6119 break; /* Retransmit buffer. */
c906108c
SS
6120 case '$':
6121 {
40e3f985 6122 if (remote_debug)
2bc416ba 6123 fprintf_unfiltered (gdb_stdlog,
23860348 6124 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
6125 /* It's probably an old response sent because an ACK
6126 was lost. Gobble up the packet and ack it so it
6127 doesn't get retransmitted when we resend this
6128 packet. */
6d820c5c 6129 skip_frame ();
d6f7abdf 6130 serial_write (remote_desc, "+", 1);
23860348 6131 continue; /* Now, go look for +. */
c906108c 6132 }
74531fed
PA
6133
6134 case '%':
6135 {
6136 int val;
6137
6138 /* If we got a notification, handle it, and go back to looking
6139 for an ack. */
6140 /* We've found the start of a notification. Now
6141 collect the data. */
6142 val = read_frame (&rs->buf, &rs->buf_size);
6143 if (val >= 0)
6144 {
6145 if (remote_debug)
6146 {
6e5abd65
PA
6147 struct cleanup *old_chain;
6148 char *str;
6149
6150 str = escape_buffer (rs->buf, val);
6151 old_chain = make_cleanup (xfree, str);
6152 fprintf_unfiltered (gdb_stdlog,
6153 " Notification received: %s\n",
6154 str);
6155 do_cleanups (old_chain);
74531fed
PA
6156 }
6157 handle_notification (rs->buf, val);
6158 /* We're in sync now, rewait for the ack. */
6159 tcount = 0;
6160 }
6161 else
6162 {
6163 if (remote_debug)
6164 {
6165 if (!started_error_output)
6166 {
6167 started_error_output = 1;
6168 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6169 }
6170 fputc_unfiltered (ch & 0177, gdb_stdlog);
6171 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
6172 }
6173 }
6174 continue;
6175 }
6176 /* fall-through */
c906108c
SS
6177 default:
6178 if (remote_debug)
6179 {
6180 if (!started_error_output)
6181 {
6182 started_error_output = 1;
0f71a2f6 6183 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 6184 }
0f71a2f6 6185 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
6186 }
6187 continue;
6188 }
23860348 6189 break; /* Here to retransmit. */
c906108c
SS
6190 }
6191
6192#if 0
6193 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
6194 able to get out next time we call QUIT, without anything as
6195 violent as interrupt_query. If we want to provide a way out of
6196 here without getting to the next QUIT, it should be based on
6197 hitting ^C twice as in remote_wait. */
c906108c
SS
6198 if (quit_flag)
6199 {
6200 quit_flag = 0;
6201 interrupt_query ();
6202 }
6203#endif
6204 }
a6f3e723 6205 return 0;
c906108c
SS
6206}
6207
6d820c5c
DJ
6208/* Come here after finding the start of a frame when we expected an
6209 ack. Do our best to discard the rest of this packet. */
6210
6211static void
6212skip_frame (void)
6213{
6214 int c;
6215
6216 while (1)
6217 {
6218 c = readchar (remote_timeout);
6219 switch (c)
6220 {
6221 case SERIAL_TIMEOUT:
6222 /* Nothing we can do. */
6223 return;
6224 case '#':
6225 /* Discard the two bytes of checksum and stop. */
6226 c = readchar (remote_timeout);
6227 if (c >= 0)
6228 c = readchar (remote_timeout);
6229
6230 return;
6231 case '*': /* Run length encoding. */
6232 /* Discard the repeat count. */
6233 c = readchar (remote_timeout);
6234 if (c < 0)
6235 return;
6236 break;
6237 default:
6238 /* A regular character. */
6239 break;
6240 }
6241 }
6242}
6243
c906108c 6244/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
6245 into *BUF, verifying the checksum, length, and handling run-length
6246 compression. NUL terminate the buffer. If there is not enough room,
6247 expand *BUF using xrealloc.
c906108c 6248
c2d11a7d
JM
6249 Returns -1 on error, number of characters in buffer (ignoring the
6250 trailing NULL) on success. (could be extended to return one of the
23860348 6251 SERIAL status indications). */
c2d11a7d
JM
6252
6253static long
6d820c5c
DJ
6254read_frame (char **buf_p,
6255 long *sizeof_buf)
c906108c
SS
6256{
6257 unsigned char csum;
c2d11a7d 6258 long bc;
c906108c 6259 int c;
6d820c5c 6260 char *buf = *buf_p;
a6f3e723 6261 struct remote_state *rs = get_remote_state ();
c906108c
SS
6262
6263 csum = 0;
c2d11a7d 6264 bc = 0;
c906108c
SS
6265
6266 while (1)
6267 {
6268 c = readchar (remote_timeout);
c906108c
SS
6269 switch (c)
6270 {
6271 case SERIAL_TIMEOUT:
6272 if (remote_debug)
0f71a2f6 6273 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 6274 return -1;
c906108c
SS
6275 case '$':
6276 if (remote_debug)
0f71a2f6
JM
6277 fputs_filtered ("Saw new packet start in middle of old one\n",
6278 gdb_stdlog);
23860348 6279 return -1; /* Start a new packet, count retries. */
c906108c
SS
6280 case '#':
6281 {
6282 unsigned char pktcsum;
e1b09194
AC
6283 int check_0 = 0;
6284 int check_1 = 0;
c906108c 6285
c2d11a7d 6286 buf[bc] = '\0';
c906108c 6287
e1b09194
AC
6288 check_0 = readchar (remote_timeout);
6289 if (check_0 >= 0)
6290 check_1 = readchar (remote_timeout);
802188a7 6291
e1b09194
AC
6292 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
6293 {
6294 if (remote_debug)
2bc416ba 6295 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 6296 gdb_stdlog);
e1b09194
AC
6297 return -1;
6298 }
6299 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
6300 {
6301 if (remote_debug)
2bc416ba 6302 fputs_filtered ("Communication error in checksum\n",
23860348 6303 gdb_stdlog);
40e3f985
FN
6304 return -1;
6305 }
c906108c 6306
a6f3e723
SL
6307 /* Don't recompute the checksum; with no ack packets we
6308 don't have any way to indicate a packet retransmission
6309 is necessary. */
6310 if (rs->noack_mode)
6311 return bc;
6312
e1b09194 6313 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 6314 if (csum == pktcsum)
c2d11a7d 6315 return bc;
c906108c 6316
c5aa993b 6317 if (remote_debug)
c906108c 6318 {
6e5abd65
PA
6319 struct cleanup *old_chain;
6320 char *str;
6321
6322 str = escape_buffer (buf, bc);
6323 old_chain = make_cleanup (xfree, str);
6324 fprintf_unfiltered (gdb_stdlog,
6325 "\
6326Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s\n",
6327 pktcsum, csum, str);
6328 do_cleanups (old_chain);
c906108c 6329 }
c2d11a7d 6330 /* Number of characters in buffer ignoring trailing
23860348 6331 NULL. */
c2d11a7d 6332 return -1;
c906108c 6333 }
23860348 6334 case '*': /* Run length encoding. */
c2c6d25f
JM
6335 {
6336 int repeat;
6337 csum += c;
c906108c 6338
b4501125
AC
6339 c = readchar (remote_timeout);
6340 csum += c;
23860348 6341 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 6342
23860348 6343 /* The character before ``*'' is repeated. */
c2d11a7d 6344
6d820c5c 6345 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 6346 {
6d820c5c
DJ
6347 if (bc + repeat - 1 >= *sizeof_buf - 1)
6348 {
6349 /* Make some more room in the buffer. */
6350 *sizeof_buf += repeat;
6351 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6352 buf = *buf_p;
6353 }
6354
c2d11a7d
JM
6355 memset (&buf[bc], buf[bc - 1], repeat);
6356 bc += repeat;
c2c6d25f
JM
6357 continue;
6358 }
6359
c2d11a7d 6360 buf[bc] = '\0';
6d820c5c 6361 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 6362 return -1;
c2c6d25f 6363 }
c906108c 6364 default:
6d820c5c 6365 if (bc >= *sizeof_buf - 1)
c906108c 6366 {
6d820c5c
DJ
6367 /* Make some more room in the buffer. */
6368 *sizeof_buf *= 2;
6369 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6370 buf = *buf_p;
c906108c
SS
6371 }
6372
6d820c5c
DJ
6373 buf[bc++] = c;
6374 csum += c;
6375 continue;
c906108c
SS
6376 }
6377 }
6378}
6379
6380/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
6381 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6382 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6383 rather than timing out; this is used (in synchronous mode) to wait
6384 for a target that is is executing user code to stop. */
d9fcf2fb
JM
6385/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
6386 don't have to change all the calls to getpkt to deal with the
6387 return value, because at the moment I don't know what the right
23860348 6388 thing to do it for those. */
c906108c 6389void
6d820c5c
DJ
6390getpkt (char **buf,
6391 long *sizeof_buf,
c2d11a7d 6392 int forever)
d9fcf2fb
JM
6393{
6394 int timed_out;
6395
6396 timed_out = getpkt_sane (buf, sizeof_buf, forever);
6397}
6398
6399
6400/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
6401 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6402 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6403 rather than timing out; this is used (in synchronous mode) to wait
6404 for a target that is is executing user code to stop. If FOREVER ==
6405 0, this function is allowed to time out gracefully and return an
74531fed
PA
6406 indication of this to the caller. Otherwise return the number of
6407 bytes read. If EXPECTING_NOTIF, consider receiving a notification
6408 enough reason to return to the caller. */
6409
3172dc30 6410static int
74531fed
PA
6411getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
6412 int expecting_notif)
c906108c 6413{
2d717e4f 6414 struct remote_state *rs = get_remote_state ();
c906108c
SS
6415 int c;
6416 int tries;
6417 int timeout;
6418 int val;
6419
2d717e4f
DJ
6420 /* We're reading a new response. Make sure we don't look at a
6421 previously cached response. */
6422 rs->cached_wait_status = 0;
6423
6d820c5c 6424 strcpy (*buf, "timeout");
c906108c
SS
6425
6426 if (forever)
74531fed
PA
6427 timeout = watchdog > 0 ? watchdog : -1;
6428 else if (expecting_notif)
6429 timeout = 0; /* There should already be a char in the buffer. If
6430 not, bail out. */
c906108c
SS
6431 else
6432 timeout = remote_timeout;
6433
6434#define MAX_TRIES 3
6435
74531fed
PA
6436 /* Process any number of notifications, and then return when
6437 we get a packet. */
6438 for (;;)
c906108c 6439 {
74531fed
PA
6440 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
6441 times. */
6442 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 6443 {
74531fed
PA
6444 /* This can loop forever if the remote side sends us
6445 characters continuously, but if it pauses, we'll get
6446 SERIAL_TIMEOUT from readchar because of timeout. Then
6447 we'll count that as a retry.
6448
6449 Note that even when forever is set, we will only wait
6450 forever prior to the start of a packet. After that, we
6451 expect characters to arrive at a brisk pace. They should
6452 show up within remote_timeout intervals. */
6453 do
6454 c = readchar (timeout);
6455 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
6456
6457 if (c == SERIAL_TIMEOUT)
6458 {
74531fed
PA
6459 if (expecting_notif)
6460 return -1; /* Don't complain, it's normal to not get
6461 anything in this case. */
6462
23860348 6463 if (forever) /* Watchdog went off? Kill the target. */
c906108c 6464 {
2acceee2 6465 QUIT;
ce5ce7ed 6466 pop_target ();
489eaeba 6467 error (_("Watchdog timeout has expired. Target detached."));
c906108c 6468 }
c906108c 6469 if (remote_debug)
0f71a2f6 6470 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 6471 }
74531fed
PA
6472 else
6473 {
6474 /* We've found the start of a packet or notification.
6475 Now collect the data. */
6476 val = read_frame (buf, sizeof_buf);
6477 if (val >= 0)
6478 break;
6479 }
6480
6481 serial_write (remote_desc, "-", 1);
c906108c 6482 }
c906108c 6483
74531fed
PA
6484 if (tries > MAX_TRIES)
6485 {
6486 /* We have tried hard enough, and just can't receive the
6487 packet/notification. Give up. */
6488 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 6489
74531fed
PA
6490 /* Skip the ack char if we're in no-ack mode. */
6491 if (!rs->noack_mode)
6492 serial_write (remote_desc, "+", 1);
6493 return -1;
6494 }
c906108c 6495
74531fed
PA
6496 /* If we got an ordinary packet, return that to our caller. */
6497 if (c == '$')
c906108c
SS
6498 {
6499 if (remote_debug)
43e526b9 6500 {
6e5abd65
PA
6501 struct cleanup *old_chain;
6502 char *str;
6503
6504 str = escape_buffer (*buf, val);
6505 old_chain = make_cleanup (xfree, str);
6506 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
6507 do_cleanups (old_chain);
43e526b9 6508 }
a6f3e723
SL
6509
6510 /* Skip the ack char if we're in no-ack mode. */
6511 if (!rs->noack_mode)
6512 serial_write (remote_desc, "+", 1);
0876f84a 6513 return val;
c906108c
SS
6514 }
6515
74531fed
PA
6516 /* If we got a notification, handle it, and go back to looking
6517 for a packet. */
6518 else
6519 {
6520 gdb_assert (c == '%');
6521
6522 if (remote_debug)
6523 {
6e5abd65
PA
6524 struct cleanup *old_chain;
6525 char *str;
6526
6527 str = escape_buffer (*buf, val);
6528 old_chain = make_cleanup (xfree, str);
6529 fprintf_unfiltered (gdb_stdlog,
6530 " Notification received: %s\n",
6531 str);
6532 do_cleanups (old_chain);
74531fed 6533 }
c906108c 6534
74531fed 6535 handle_notification (*buf, val);
c906108c 6536
74531fed 6537 /* Notifications require no acknowledgement. */
a6f3e723 6538
74531fed
PA
6539 if (expecting_notif)
6540 return -1;
6541 }
6542 }
6543}
6544
6545static int
6546getpkt_sane (char **buf, long *sizeof_buf, int forever)
6547{
6548 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0);
6549}
6550
6551static int
6552getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever)
6553{
6554 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1);
c906108c 6555}
74531fed 6556
c906108c
SS
6557\f
6558static void
7d85a9c0 6559remote_kill (struct target_ops *ops)
43ff13b4 6560{
23860348
MS
6561 /* Use catch_errors so the user can quit from gdb even when we
6562 aren't on speaking terms with the remote system. */
c5aa993b 6563 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
43ff13b4
JM
6564
6565 /* Don't wait for it to die. I'm not really sure it matters whether
6566 we do or not. For the existing stubs, kill is a noop. */
6567 target_mourn_inferior ();
6568}
6569
82f73884
PA
6570static int
6571remote_vkill (int pid, struct remote_state *rs)
6572{
6573 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6574 return -1;
6575
6576 /* Tell the remote target to detach. */
6577 sprintf (rs->buf, "vKill;%x", pid);
6578 putpkt (rs->buf);
6579 getpkt (&rs->buf, &rs->buf_size, 0);
6580
6581 if (packet_ok (rs->buf,
6582 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
6583 return 0;
6584 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6585 return -1;
6586 else
6587 return 1;
6588}
6589
6590static void
7d85a9c0 6591extended_remote_kill (struct target_ops *ops)
82f73884
PA
6592{
6593 int res;
6594 int pid = ptid_get_pid (inferior_ptid);
6595 struct remote_state *rs = get_remote_state ();
6596
6597 res = remote_vkill (pid, rs);
6598 if (res == -1 && !remote_multi_process_p (rs))
6599 {
6600 /* Don't try 'k' on a multi-process aware stub -- it has no way
6601 to specify the pid. */
6602
6603 putpkt ("k");
6604#if 0
6605 getpkt (&rs->buf, &rs->buf_size, 0);
6606 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
6607 res = 1;
6608#else
6609 /* Don't wait for it to die. I'm not really sure it matters whether
6610 we do or not. For the existing stubs, kill is a noop. */
6611 res = 0;
6612#endif
6613 }
6614
6615 if (res != 0)
6616 error (_("Can't kill process"));
6617
82f73884
PA
6618 target_mourn_inferior ();
6619}
6620
c906108c 6621static void
136d6dae 6622remote_mourn (struct target_ops *ops)
c906108c 6623{
136d6dae 6624 remote_mourn_1 (ops);
c906108c
SS
6625}
6626
c906108c
SS
6627/* Worker function for remote_mourn. */
6628static void
fba45db2 6629remote_mourn_1 (struct target_ops *target)
c906108c
SS
6630{
6631 unpush_target (target);
ce5ce7ed 6632
8a2492ee
PA
6633 /* remote_close takes care of doing most of the clean up. */
6634 generic_mourn_inferior ();
c906108c
SS
6635}
6636
2d717e4f
DJ
6637static void
6638extended_remote_mourn_1 (struct target_ops *target)
6639{
6640 struct remote_state *rs = get_remote_state ();
c906108c 6641
e24a49d8
PA
6642 /* In case we got here due to an error, but we're going to stay
6643 connected. */
6644 rs->waiting_for_stop_reply = 0;
6645
74531fed
PA
6646 /* We're no longer interested in these events. */
6647 discard_pending_stop_replies (ptid_get_pid (inferior_ptid));
6648
dc1981d7
PA
6649 /* If the current general thread belonged to the process we just
6650 detached from or has exited, the remote side current general
6651 thread becomes undefined. Considering a case like this:
6652
6653 - We just got here due to a detach.
6654 - The process that we're detaching from happens to immediately
6655 report a global breakpoint being hit in non-stop mode, in the
6656 same thread we had selected before.
6657 - GDB attaches to this process again.
6658 - This event happens to be the next event we handle.
6659
6660 GDB would consider that the current general thread didn't need to
6661 be set on the stub side (with Hg), since for all it knew,
6662 GENERAL_THREAD hadn't changed.
6663
6664 Notice that although in all-stop mode, the remote server always
6665 sets the current thread to the thread reporting the stop event,
6666 that doesn't happen in non-stop mode; in non-stop, the stub *must
6667 not* change the current thread when reporting a breakpoint hit,
6668 due to the decoupling of event reporting and event handling.
6669
6670 To keep things simple, we always invalidate our notion of the
6671 current thread. */
6672 record_currthread (minus_one_ptid);
6673
2d717e4f
DJ
6674 /* Unlike "target remote", we do not want to unpush the target; then
6675 the next time the user says "run", we won't be connected. */
6676
48aa3c27
PA
6677 /* Call common code to mark the inferior as not running. */
6678 generic_mourn_inferior ();
6679
d729566a 6680 if (!have_inferiors ())
2d717e4f 6681 {
82f73884
PA
6682 if (!remote_multi_process_p (rs))
6683 {
6684 /* Check whether the target is running now - some remote stubs
6685 automatically restart after kill. */
6686 putpkt ("?");
6687 getpkt (&rs->buf, &rs->buf_size, 0);
6688
6689 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
6690 {
6691 /* Assume that the target has been restarted. Set inferior_ptid
6692 so that bits of core GDB realizes there's something here, e.g.,
6693 so that the user can say "kill" again. */
6694 inferior_ptid = magic_null_ptid;
6695 }
6696 else
6697 {
6698 /* Mark this (still pushed) target as not executable until we
6699 restart it. */
6700 target_mark_exited (target);
6701 }
6702 }
6703 else
6704 /* Always remove execution if this was the last process. */
6705 target_mark_exited (target);
2d717e4f
DJ
6706 }
6707}
c906108c
SS
6708
6709static void
136d6dae 6710extended_remote_mourn (struct target_ops *ops)
c906108c 6711{
136d6dae 6712 extended_remote_mourn_1 (ops);
2d717e4f 6713}
c906108c 6714
2d717e4f
DJ
6715static int
6716extended_remote_run (char *args)
6717{
6718 struct remote_state *rs = get_remote_state ();
6719 char *p;
6720 int len;
c906108c 6721
2d717e4f
DJ
6722 /* If the user has disabled vRun support, or we have detected that
6723 support is not available, do not try it. */
6724 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6725 return -1;
424163ea 6726
2d717e4f
DJ
6727 strcpy (rs->buf, "vRun;");
6728 len = strlen (rs->buf);
c906108c 6729
2d717e4f
DJ
6730 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
6731 error (_("Remote file name too long for run packet"));
6732 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
6733
d1a41061 6734 gdb_assert (args != NULL);
2d717e4f
DJ
6735 if (*args)
6736 {
6737 struct cleanup *back_to;
6738 int i;
6739 char **argv;
6740
d1a41061 6741 argv = gdb_buildargv (args);
2d717e4f
DJ
6742 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
6743 for (i = 0; argv[i] != NULL; i++)
6744 {
6745 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
6746 error (_("Argument list too long for run packet"));
6747 rs->buf[len++] = ';';
6748 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
6749 }
6750 do_cleanups (back_to);
6751 }
6752
6753 rs->buf[len++] = '\0';
6754
6755 putpkt (rs->buf);
6756 getpkt (&rs->buf, &rs->buf_size, 0);
6757
6758 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
6759 {
6760 /* We have a wait response; we don't need it, though. All is well. */
6761 return 0;
6762 }
6763 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6764 /* It wasn't disabled before, but it is now. */
6765 return -1;
6766 else
6767 {
6768 if (remote_exec_file[0] == '\0')
6769 error (_("Running the default executable on the remote target failed; "
6770 "try \"set remote exec-file\"?"));
6771 else
6772 error (_("Running \"%s\" on the remote target failed"),
6773 remote_exec_file);
6774 }
c906108c
SS
6775}
6776
2d717e4f
DJ
6777/* In the extended protocol we want to be able to do things like
6778 "run" and have them basically work as expected. So we need
6779 a special create_inferior function. We support changing the
6780 executable file and the command line arguments, but not the
6781 environment. */
6782
43ff13b4 6783static void
2d717e4f 6784extended_remote_create_inferior_1 (char *exec_file, char *args,
75c99385 6785 char **env, int from_tty)
43ff13b4 6786{
43ff13b4 6787 /* If running asynchronously, register the target file descriptor
23860348 6788 with the event loop. */
75c99385 6789 if (target_can_async_p ())
2acceee2 6790 target_async (inferior_event_handler, 0);
43ff13b4
JM
6791
6792 /* Now restart the remote server. */
2d717e4f
DJ
6793 if (extended_remote_run (args) == -1)
6794 {
6795 /* vRun was not supported. Fail if we need it to do what the
6796 user requested. */
6797 if (remote_exec_file[0])
6798 error (_("Remote target does not support \"set remote exec-file\""));
6799 if (args[0])
6800 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 6801
2d717e4f
DJ
6802 /* Fall back to "R". */
6803 extended_remote_restart ();
6804 }
424163ea 6805
45280a52
DJ
6806 /* Clean up from the last time we ran, before we mark the target
6807 running again. This will mark breakpoints uninserted, and
6808 get_offsets may insert breakpoints. */
6809 init_thread_list ();
6810 init_wait_for_inferior ();
6811
2d717e4f 6812 /* Now mark the inferior as running before we do anything else. */
79d7f229 6813 inferior_ptid = magic_null_ptid;
c0a2216e 6814
74531fed
PA
6815 /* Now, if we have thread information, update inferior_ptid. */
6816 inferior_ptid = remote_current_thread (inferior_ptid);
6817
0b16c5cf 6818 remote_add_inferior (ptid_get_pid (inferior_ptid), 0);
c0a2216e
PA
6819 add_thread_silent (inferior_ptid);
6820
2d717e4f
DJ
6821 /* Get updated offsets, if the stub uses qOffsets. */
6822 get_offsets ();
2d717e4f
DJ
6823}
6824
6825static void
136d6dae
VP
6826extended_remote_create_inferior (struct target_ops *ops,
6827 char *exec_file, char *args,
2d717e4f
DJ
6828 char **env, int from_tty)
6829{
75c99385 6830 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
43ff13b4 6831}
c906108c 6832\f
c5aa993b 6833
8181d85f
DJ
6834/* Insert a breakpoint. On targets that have software breakpoint
6835 support, we ask the remote target to do the work; on targets
6836 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
6837
6838static int
8181d85f 6839remote_insert_breakpoint (struct bp_target_info *bp_tgt)
c906108c 6840{
d471ea57
AC
6841 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
6842 If it succeeds, then set the support to PACKET_ENABLE. If it
6843 fails, and the user has explicitly requested the Z support then
23860348 6844 report an error, otherwise, mark it disabled and go on. */
802188a7 6845
444abaca 6846 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 6847 {
7c0f6dcc 6848 CORE_ADDR addr = bp_tgt->placed_address;
4fff2411
JZ
6849 struct remote_state *rs;
6850 char *p;
7c0f6dcc 6851 int bpsize;
4fff2411 6852
1cf3db46 6853 gdbarch_breakpoint_from_pc (target_gdbarch, &addr, &bpsize);
4fff2411
JZ
6854
6855 rs = get_remote_state ();
6856 p = rs->buf;
802188a7 6857
96baa820
JM
6858 *(p++) = 'Z';
6859 *(p++) = '0';
6860 *(p++) = ',';
7c0f6dcc 6861 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 6862 p += hexnumstr (p, addr);
7c0f6dcc 6863 sprintf (p, ",%d", bpsize);
802188a7 6864
6d820c5c
DJ
6865 putpkt (rs->buf);
6866 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6867
6d820c5c 6868 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 6869 {
d471ea57
AC
6870 case PACKET_ERROR:
6871 return -1;
6872 case PACKET_OK:
7c0f6dcc
JL
6873 bp_tgt->placed_address = addr;
6874 bp_tgt->placed_size = bpsize;
d471ea57
AC
6875 return 0;
6876 case PACKET_UNKNOWN:
6877 break;
96baa820
JM
6878 }
6879 }
c906108c 6880
8181d85f 6881 return memory_insert_breakpoint (bp_tgt);
c906108c
SS
6882}
6883
6884static int
8181d85f 6885remote_remove_breakpoint (struct bp_target_info *bp_tgt)
c906108c 6886{
8181d85f 6887 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 6888 struct remote_state *rs = get_remote_state ();
96baa820
JM
6889 int bp_size;
6890
444abaca 6891 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 6892 {
6d820c5c 6893 char *p = rs->buf;
802188a7 6894
96baa820
JM
6895 *(p++) = 'z';
6896 *(p++) = '0';
6897 *(p++) = ',';
6898
8181d85f
DJ
6899 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
6900 p += hexnumstr (p, addr);
6901 sprintf (p, ",%d", bp_tgt->placed_size);
802188a7 6902
6d820c5c
DJ
6903 putpkt (rs->buf);
6904 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6905
6d820c5c 6906 return (rs->buf[0] == 'E');
96baa820
JM
6907 }
6908
8181d85f 6909 return memory_remove_breakpoint (bp_tgt);
c906108c
SS
6910}
6911
d471ea57
AC
6912static int
6913watchpoint_to_Z_packet (int type)
6914{
6915 switch (type)
6916 {
6917 case hw_write:
bb858e6a 6918 return Z_PACKET_WRITE_WP;
d471ea57
AC
6919 break;
6920 case hw_read:
bb858e6a 6921 return Z_PACKET_READ_WP;
d471ea57
AC
6922 break;
6923 case hw_access:
bb858e6a 6924 return Z_PACKET_ACCESS_WP;
d471ea57
AC
6925 break;
6926 default:
8e65ff28 6927 internal_error (__FILE__, __LINE__,
e2e0b3e5 6928 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
6929 }
6930}
6931
3c3bea1c 6932static int
fba45db2 6933remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 6934{
d01949b6 6935 struct remote_state *rs = get_remote_state ();
e514a9d6 6936 char *p;
d471ea57 6937 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 6938
444abaca 6939 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 6940 return -1;
802188a7 6941
6d820c5c
DJ
6942 sprintf (rs->buf, "Z%x,", packet);
6943 p = strchr (rs->buf, '\0');
96baa820
JM
6944 addr = remote_address_masked (addr);
6945 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 6946 sprintf (p, ",%x", len);
802188a7 6947
6d820c5c
DJ
6948 putpkt (rs->buf);
6949 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6950
6d820c5c 6951 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
6952 {
6953 case PACKET_ERROR:
6954 case PACKET_UNKNOWN:
6955 return -1;
6956 case PACKET_OK:
6957 return 0;
6958 }
8e65ff28 6959 internal_error (__FILE__, __LINE__,
e2e0b3e5 6960 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
6961}
6962
d471ea57 6963
3c3bea1c 6964static int
fba45db2 6965remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 6966{
d01949b6 6967 struct remote_state *rs = get_remote_state ();
e514a9d6 6968 char *p;
d471ea57
AC
6969 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
6970
444abaca 6971 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 6972 return -1;
802188a7 6973
6d820c5c
DJ
6974 sprintf (rs->buf, "z%x,", packet);
6975 p = strchr (rs->buf, '\0');
96baa820
JM
6976 addr = remote_address_masked (addr);
6977 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 6978 sprintf (p, ",%x", len);
6d820c5c
DJ
6979 putpkt (rs->buf);
6980 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6981
6d820c5c 6982 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
6983 {
6984 case PACKET_ERROR:
6985 case PACKET_UNKNOWN:
6986 return -1;
6987 case PACKET_OK:
6988 return 0;
6989 }
8e65ff28 6990 internal_error (__FILE__, __LINE__,
e2e0b3e5 6991 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
6992}
6993
3c3bea1c 6994
501eef12
AC
6995int remote_hw_watchpoint_limit = -1;
6996int remote_hw_breakpoint_limit = -1;
d471ea57 6997
b9362cc7 6998static int
3c3bea1c 6999remote_check_watch_resources (int type, int cnt, int ot)
96baa820 7000{
3c3bea1c
GS
7001 if (type == bp_hardware_breakpoint)
7002 {
7003 if (remote_hw_breakpoint_limit == 0)
7004 return 0;
501eef12
AC
7005 else if (remote_hw_breakpoint_limit < 0)
7006 return 1;
3c3bea1c
GS
7007 else if (cnt <= remote_hw_breakpoint_limit)
7008 return 1;
7009 }
7010 else
7011 {
7012 if (remote_hw_watchpoint_limit == 0)
7013 return 0;
501eef12
AC
7014 else if (remote_hw_watchpoint_limit < 0)
7015 return 1;
3c3bea1c
GS
7016 else if (ot)
7017 return -1;
7018 else if (cnt <= remote_hw_watchpoint_limit)
7019 return 1;
7020 }
7021 return -1;
7022}
7023
b9362cc7 7024static int
3c3bea1c
GS
7025remote_stopped_by_watchpoint (void)
7026{
82f73884 7027 return remote_stopped_by_watchpoint_p;
3c3bea1c
GS
7028}
7029
4aa7a7f5
JJ
7030static int
7031remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 7032{
4aa7a7f5 7033 int rc = 0;
d983da9c 7034 if (remote_stopped_by_watchpoint ())
4aa7a7f5
JJ
7035 {
7036 *addr_p = remote_watch_data_address;
7037 rc = 1;
7038 }
7039
7040 return rc;
3c3bea1c
GS
7041}
7042
7043
7044static int
8181d85f 7045remote_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
3c3bea1c 7046{
8181d85f 7047 CORE_ADDR addr;
4fff2411
JZ
7048 struct remote_state *rs;
7049 char *p;
802188a7 7050
c8189ed1 7051 /* The length field should be set to the size of a breakpoint
8181d85f 7052 instruction, even though we aren't inserting one ourselves. */
c8189ed1 7053
3b3b875c 7054 gdbarch_breakpoint_from_pc
1cf3db46 7055 (target_gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
3c3bea1c 7056
444abaca 7057 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 7058 return -1;
2bc416ba 7059
4fff2411
JZ
7060 rs = get_remote_state ();
7061 p = rs->buf;
7062
96baa820
JM
7063 *(p++) = 'Z';
7064 *(p++) = '1';
7065 *(p++) = ',';
802188a7 7066
8181d85f 7067 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 7068 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 7069 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 7070
6d820c5c
DJ
7071 putpkt (rs->buf);
7072 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 7073
6d820c5c 7074 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
7075 {
7076 case PACKET_ERROR:
7077 case PACKET_UNKNOWN:
7078 return -1;
7079 case PACKET_OK:
7080 return 0;
7081 }
8e65ff28 7082 internal_error (__FILE__, __LINE__,
e2e0b3e5 7083 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
7084}
7085
d471ea57 7086
802188a7 7087static int
8181d85f 7088remote_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
96baa820 7089{
8181d85f 7090 CORE_ADDR addr;
d01949b6 7091 struct remote_state *rs = get_remote_state ();
6d820c5c 7092 char *p = rs->buf;
c8189ed1 7093
444abaca 7094 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 7095 return -1;
802188a7 7096
96baa820
JM
7097 *(p++) = 'z';
7098 *(p++) = '1';
7099 *(p++) = ',';
802188a7 7100
8181d85f 7101 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 7102 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 7103 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 7104
6d820c5c
DJ
7105 putpkt (rs->buf);
7106 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 7107
6d820c5c 7108 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
7109 {
7110 case PACKET_ERROR:
7111 case PACKET_UNKNOWN:
7112 return -1;
7113 case PACKET_OK:
7114 return 0;
7115 }
8e65ff28 7116 internal_error (__FILE__, __LINE__,
e2e0b3e5 7117 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 7118}
96baa820 7119
23860348 7120/* Table used by the crc32 function to calcuate the checksum. */
c906108c 7121
c5aa993b
JM
7122static unsigned long crc32_table[256] =
7123{0, 0};
c906108c
SS
7124
7125static unsigned long
fba45db2 7126crc32 (unsigned char *buf, int len, unsigned int crc)
c906108c 7127{
c5aa993b 7128 if (!crc32_table[1])
c906108c 7129 {
23860348 7130 /* Initialize the CRC table and the decoding table. */
c906108c
SS
7131 int i, j;
7132 unsigned int c;
7133
7134 for (i = 0; i < 256; i++)
c5aa993b
JM
7135 {
7136 for (c = i << 24, j = 8; j > 0; --j)
7137 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
7138 crc32_table[i] = c;
7139 }
c906108c
SS
7140 }
7141
7142 while (len--)
7143 {
7144 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
7145 buf++;
7146 }
7147 return crc;
7148}
7149
7150/* compare-sections command
7151
7152 With no arguments, compares each loadable section in the exec bfd
7153 with the same memory range on the target, and reports mismatches.
7154 Useful for verifying the image on the target against the exec file.
7155 Depends on the target understanding the new "qCRC:" request. */
7156
e514a9d6
JM
7157/* FIXME: cagney/1999-10-26: This command should be broken down into a
7158 target method (target verify memory) and generic version of the
7159 actual command. This will allow other high-level code (especially
23860348 7160 generic_load()) to make use of this target functionality. */
e514a9d6 7161
c906108c 7162static void
fba45db2 7163compare_sections_command (char *args, int from_tty)
c906108c 7164{
d01949b6 7165 struct remote_state *rs = get_remote_state ();
c906108c
SS
7166 asection *s;
7167 unsigned long host_crc, target_crc;
7168 extern bfd *exec_bfd;
7169 struct cleanup *old_chain;
085dd6e6
JM
7170 char *tmp;
7171 char *sectdata;
ce359b09 7172 const char *sectname;
c906108c
SS
7173 bfd_size_type size;
7174 bfd_vma lma;
7175 int matched = 0;
7176 int mismatched = 0;
7177
7178 if (!exec_bfd)
8a3fe4f8 7179 error (_("command cannot be used without an exec file"));
c906108c
SS
7180 if (!current_target.to_shortname ||
7181 strcmp (current_target.to_shortname, "remote") != 0)
8a3fe4f8 7182 error (_("command can only be used with remote target"));
c906108c 7183
c5aa993b 7184 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
7185 {
7186 if (!(s->flags & SEC_LOAD))
c5aa993b 7187 continue; /* skip non-loadable section */
c906108c 7188
2c500098 7189 size = bfd_get_section_size (s);
c906108c 7190 if (size == 0)
c5aa993b 7191 continue; /* skip zero-length section */
c906108c 7192
ce359b09 7193 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 7194 if (args && strcmp (args, sectname) != 0)
c5aa993b 7195 continue; /* not the section selected by user */
c906108c 7196
c5aa993b 7197 matched = 1; /* do this section */
c906108c 7198 lma = s->lma;
23860348 7199 /* FIXME: assumes lma can fit into long. */
ea9c271d 7200 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
ecbc58df 7201 (long) lma, (long) size);
6d820c5c 7202 putpkt (rs->buf);
c906108c 7203
23860348
MS
7204 /* Be clever; compute the host_crc before waiting for target
7205 reply. */
c906108c 7206 sectdata = xmalloc (size);
b8c9b27d 7207 old_chain = make_cleanup (xfree, sectdata);
c906108c
SS
7208 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
7209 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
7210
6d820c5c
DJ
7211 getpkt (&rs->buf, &rs->buf_size, 0);
7212 if (rs->buf[0] == 'E')
8a3fe4f8 7213 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
823ca731 7214 sectname, paddr (lma), paddr (lma + size));
6d820c5c 7215 if (rs->buf[0] != 'C')
8a3fe4f8 7216 error (_("remote target does not support this operation"));
c906108c 7217
6d820c5c 7218 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
c906108c
SS
7219 target_crc = target_crc * 16 + fromhex (*tmp);
7220
d4f3574e
SS
7221 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
7222 sectname, paddr (lma), paddr (lma + size));
c906108c
SS
7223 if (host_crc == target_crc)
7224 printf_filtered ("matched.\n");
7225 else
c5aa993b
JM
7226 {
7227 printf_filtered ("MIS-MATCHED!\n");
7228 mismatched++;
7229 }
c906108c
SS
7230
7231 do_cleanups (old_chain);
7232 }
7233 if (mismatched > 0)
8a3fe4f8
AC
7234 warning (_("One or more sections of the remote executable does not match\n\
7235the loaded file\n"));
c906108c 7236 if (args && !matched)
a3f17187 7237 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
7238}
7239
0e7f50da
UW
7240/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
7241 into remote target. The number of bytes written to the remote
7242 target is returned, or -1 for error. */
7243
7244static LONGEST
7245remote_write_qxfer (struct target_ops *ops, const char *object_name,
7246 const char *annex, const gdb_byte *writebuf,
7247 ULONGEST offset, LONGEST len,
7248 struct packet_config *packet)
7249{
7250 int i, buf_len;
7251 ULONGEST n;
7252 gdb_byte *wbuf;
7253 struct remote_state *rs = get_remote_state ();
7254 int max_size = get_memory_write_packet_size ();
7255
7256 if (packet->support == PACKET_DISABLE)
7257 return -1;
7258
7259 /* Insert header. */
7260 i = snprintf (rs->buf, max_size,
7261 "qXfer:%s:write:%s:%s:",
7262 object_name, annex ? annex : "",
7263 phex_nz (offset, sizeof offset));
7264 max_size -= (i + 1);
7265
7266 /* Escape as much data as fits into rs->buf. */
7267 buf_len = remote_escape_output
7268 (writebuf, len, (rs->buf + i), &max_size, max_size);
7269
7270 if (putpkt_binary (rs->buf, i + buf_len) < 0
7271 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7272 || packet_ok (rs->buf, packet) != PACKET_OK)
7273 return -1;
7274
7275 unpack_varlen_hex (rs->buf, &n);
7276 return n;
7277}
7278
0876f84a
DJ
7279/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
7280 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
7281 number of bytes read is returned, or 0 for EOF, or -1 for error.
7282 The number of bytes read may be less than LEN without indicating an
7283 EOF. PACKET is checked and updated to indicate whether the remote
7284 target supports this object. */
7285
7286static LONGEST
7287remote_read_qxfer (struct target_ops *ops, const char *object_name,
7288 const char *annex,
7289 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
7290 struct packet_config *packet)
7291{
7292 static char *finished_object;
7293 static char *finished_annex;
7294 static ULONGEST finished_offset;
7295
7296 struct remote_state *rs = get_remote_state ();
7297 unsigned int total = 0;
7298 LONGEST i, n, packet_len;
7299
7300 if (packet->support == PACKET_DISABLE)
7301 return -1;
7302
7303 /* Check whether we've cached an end-of-object packet that matches
7304 this request. */
7305 if (finished_object)
7306 {
7307 if (strcmp (object_name, finished_object) == 0
7308 && strcmp (annex ? annex : "", finished_annex) == 0
7309 && offset == finished_offset)
7310 return 0;
7311
7312 /* Otherwise, we're now reading something different. Discard
7313 the cache. */
7314 xfree (finished_object);
7315 xfree (finished_annex);
7316 finished_object = NULL;
7317 finished_annex = NULL;
7318 }
7319
7320 /* Request only enough to fit in a single packet. The actual data
7321 may not, since we don't know how much of it will need to be escaped;
7322 the target is free to respond with slightly less data. We subtract
7323 five to account for the response type and the protocol frame. */
7324 n = min (get_remote_packet_size () - 5, len);
7325 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
7326 object_name, annex ? annex : "",
7327 phex_nz (offset, sizeof offset),
7328 phex_nz (n, sizeof n));
7329 i = putpkt (rs->buf);
7330 if (i < 0)
7331 return -1;
7332
7333 rs->buf[0] = '\0';
7334 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
7335 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
7336 return -1;
7337
7338 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
7339 error (_("Unknown remote qXfer reply: %s"), rs->buf);
7340
7341 /* 'm' means there is (or at least might be) more data after this
7342 batch. That does not make sense unless there's at least one byte
7343 of data in this reply. */
7344 if (rs->buf[0] == 'm' && packet_len == 1)
7345 error (_("Remote qXfer reply contained no data."));
7346
7347 /* Got some data. */
7348 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
7349
7350 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
7351 or possibly empty. If we have the final block of a non-empty
7352 object, record this fact to bypass a subsequent partial read. */
7353 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a
DJ
7354 {
7355 finished_object = xstrdup (object_name);
7356 finished_annex = xstrdup (annex ? annex : "");
7357 finished_offset = offset + i;
7358 }
7359
7360 return i;
7361}
7362
1e3ff5ad 7363static LONGEST
4b8a223f 7364remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5
MK
7365 const char *annex, gdb_byte *readbuf,
7366 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
c906108c 7367{
82f73884 7368 struct remote_state *rs;
c906108c 7369 int i;
6d820c5c 7370 char *p2;
1e3ff5ad 7371 char query_type;
c906108c 7372
82f73884
PA
7373 set_general_thread (inferior_ptid);
7374
7375 rs = get_remote_state ();
7376
b2182ed2 7377 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
7378 if (object == TARGET_OBJECT_MEMORY)
7379 {
7380 int xfered;
7381 errno = 0;
7382
2d717e4f
DJ
7383 /* If the remote target is connected but not running, we should
7384 pass this request down to a lower stratum (e.g. the executable
7385 file). */
7386 if (!target_has_execution)
7387 return 0;
7388
21e3b9b9 7389 if (writebuf != NULL)
b2182ed2 7390 xfered = remote_write_bytes (offset, writebuf, len);
21e3b9b9 7391 else
b2182ed2 7392 xfered = remote_read_bytes (offset, readbuf, len);
21e3b9b9
DJ
7393
7394 if (xfered > 0)
7395 return xfered;
7396 else if (xfered == 0 && errno == 0)
7397 return 0;
7398 else
7399 return -1;
7400 }
7401
0e7f50da
UW
7402 /* Handle SPU memory using qxfer packets. */
7403 if (object == TARGET_OBJECT_SPU)
7404 {
7405 if (readbuf)
7406 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
7407 &remote_protocol_packets
7408 [PACKET_qXfer_spu_read]);
7409 else
7410 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
7411 &remote_protocol_packets
7412 [PACKET_qXfer_spu_write]);
7413 }
7414
4aa995e1
PA
7415 /* Handle extra signal info using qxfer packets. */
7416 if (object == TARGET_OBJECT_SIGNAL_INFO)
7417 {
7418 if (readbuf)
7419 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
7420 &remote_protocol_packets
7421 [PACKET_qXfer_siginfo_read]);
7422 else
7423 return remote_write_qxfer (ops, "siginfo", annex, writebuf, offset, len,
7424 &remote_protocol_packets
7425 [PACKET_qXfer_siginfo_write]);
7426 }
7427
a76d924d
DJ
7428 /* Only handle flash writes. */
7429 if (writebuf != NULL)
7430 {
7431 LONGEST xfered;
7432
7433 switch (object)
7434 {
7435 case TARGET_OBJECT_FLASH:
7436 xfered = remote_flash_write (ops, offset, len, writebuf);
7437
7438 if (xfered > 0)
7439 return xfered;
7440 else if (xfered == 0 && errno == 0)
7441 return 0;
7442 else
7443 return -1;
7444
7445 default:
7446 return -1;
7447 }
7448 }
4b8a223f 7449
1e3ff5ad
AC
7450 /* Map pre-existing objects onto letters. DO NOT do this for new
7451 objects!!! Instead specify new query packets. */
7452 switch (object)
c906108c 7453 {
1e3ff5ad
AC
7454 case TARGET_OBJECT_AVR:
7455 query_type = 'R';
7456 break;
802188a7
RM
7457
7458 case TARGET_OBJECT_AUXV:
0876f84a
DJ
7459 gdb_assert (annex == NULL);
7460 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
7461 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 7462
23181151
DJ
7463 case TARGET_OBJECT_AVAILABLE_FEATURES:
7464 return remote_read_qxfer
7465 (ops, "features", annex, readbuf, offset, len,
7466 &remote_protocol_packets[PACKET_qXfer_features]);
7467
cfa9d6d9
DJ
7468 case TARGET_OBJECT_LIBRARIES:
7469 return remote_read_qxfer
7470 (ops, "libraries", annex, readbuf, offset, len,
7471 &remote_protocol_packets[PACKET_qXfer_libraries]);
7472
fd79ecee
DJ
7473 case TARGET_OBJECT_MEMORY_MAP:
7474 gdb_assert (annex == NULL);
7475 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
7476 &remote_protocol_packets[PACKET_qXfer_memory_map]);
7477
07e059b5
VP
7478 case TARGET_OBJECT_OSDATA:
7479 /* Should only get here if we're connected. */
7480 gdb_assert (remote_desc);
7481 return remote_read_qxfer
7482 (ops, "osdata", annex, readbuf, offset, len,
7483 &remote_protocol_packets[PACKET_qXfer_osdata]);
7484
1e3ff5ad 7485 default:
c906108c
SS
7486 return -1;
7487 }
7488
4b8a223f 7489 /* Note: a zero OFFSET and LEN can be used to query the minimum
1e3ff5ad 7490 buffer size. */
4b8a223f 7491 if (offset == 0 && len == 0)
ea9c271d
DJ
7492 return (get_remote_packet_size ());
7493 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 7494 large enough let the caller deal with it. */
ea9c271d 7495 if (len < get_remote_packet_size ())
1e3ff5ad 7496 return -1;
ea9c271d 7497 len = get_remote_packet_size ();
1e3ff5ad 7498
23860348 7499 /* Except for querying the minimum buffer size, target must be open. */
c5aa993b 7500 if (!remote_desc)
8a3fe4f8 7501 error (_("remote query is only available after target open"));
c906108c 7502
1e3ff5ad 7503 gdb_assert (annex != NULL);
4b8a223f 7504 gdb_assert (readbuf != NULL);
c906108c 7505
6d820c5c 7506 p2 = rs->buf;
c906108c
SS
7507 *p2++ = 'q';
7508 *p2++ = query_type;
7509
23860348
MS
7510 /* We used one buffer char for the remote protocol q command and
7511 another for the query type. As the remote protocol encapsulation
7512 uses 4 chars plus one extra in case we are debugging
7513 (remote_debug), we have PBUFZIZ - 7 left to pack the query
7514 string. */
c906108c 7515 i = 0;
ea9c271d 7516 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 7517 {
1e3ff5ad
AC
7518 /* Bad caller may have sent forbidden characters. */
7519 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
7520 *p2++ = annex[i];
c906108c
SS
7521 i++;
7522 }
1e3ff5ad
AC
7523 *p2 = '\0';
7524 gdb_assert (annex[i] == '\0');
c906108c 7525
6d820c5c 7526 i = putpkt (rs->buf);
c5aa993b
JM
7527 if (i < 0)
7528 return i;
c906108c 7529
6d820c5c
DJ
7530 getpkt (&rs->buf, &rs->buf_size, 0);
7531 strcpy ((char *) readbuf, rs->buf);
c906108c 7532
cfd77fa1 7533 return strlen ((char *) readbuf);
c906108c
SS
7534}
7535
08388c79
DE
7536static int
7537remote_search_memory (struct target_ops* ops,
7538 CORE_ADDR start_addr, ULONGEST search_space_len,
7539 const gdb_byte *pattern, ULONGEST pattern_len,
7540 CORE_ADDR *found_addrp)
7541{
7542 struct remote_state *rs = get_remote_state ();
7543 int max_size = get_memory_write_packet_size ();
7544 struct packet_config *packet =
7545 &remote_protocol_packets[PACKET_qSearch_memory];
7546 /* number of packet bytes used to encode the pattern,
7547 this could be more than PATTERN_LEN due to escape characters */
7548 int escaped_pattern_len;
7549 /* amount of pattern that was encodable in the packet */
7550 int used_pattern_len;
7551 int i;
7552 int found;
7553 ULONGEST found_addr;
7554
7555 /* Don't go to the target if we don't have to.
7556 This is done before checking packet->support to avoid the possibility that
7557 a success for this edge case means the facility works in general. */
7558 if (pattern_len > search_space_len)
7559 return 0;
7560 if (pattern_len == 0)
7561 {
7562 *found_addrp = start_addr;
7563 return 1;
7564 }
7565
7566 /* If we already know the packet isn't supported, fall back to the simple
7567 way of searching memory. */
7568
7569 if (packet->support == PACKET_DISABLE)
7570 {
7571 /* Target doesn't provided special support, fall back and use the
7572 standard support (copy memory and do the search here). */
7573 return simple_search_memory (ops, start_addr, search_space_len,
7574 pattern, pattern_len, found_addrp);
7575 }
7576
7577 /* Insert header. */
7578 i = snprintf (rs->buf, max_size,
7579 "qSearch:memory:%s;%s;",
7580 paddr_nz (start_addr),
7581 phex_nz (search_space_len, sizeof (search_space_len)));
7582 max_size -= (i + 1);
7583
7584 /* Escape as much data as fits into rs->buf. */
7585 escaped_pattern_len =
7586 remote_escape_output (pattern, pattern_len, (rs->buf + i),
7587 &used_pattern_len, max_size);
7588
7589 /* Bail if the pattern is too large. */
7590 if (used_pattern_len != pattern_len)
10e0fa18 7591 error ("Pattern is too large to transmit to remote target.");
08388c79
DE
7592
7593 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
7594 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7595 || packet_ok (rs->buf, packet) != PACKET_OK)
7596 {
7597 /* The request may not have worked because the command is not
7598 supported. If so, fall back to the simple way. */
7599 if (packet->support == PACKET_DISABLE)
7600 {
7601 return simple_search_memory (ops, start_addr, search_space_len,
7602 pattern, pattern_len, found_addrp);
7603 }
7604 return -1;
7605 }
7606
7607 if (rs->buf[0] == '0')
7608 found = 0;
7609 else if (rs->buf[0] == '1')
7610 {
7611 found = 1;
7612 if (rs->buf[1] != ',')
10e0fa18 7613 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
7614 unpack_varlen_hex (rs->buf + 2, &found_addr);
7615 *found_addrp = found_addr;
7616 }
7617 else
10e0fa18 7618 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
7619
7620 return found;
7621}
7622
96baa820
JM
7623static void
7624remote_rcmd (char *command,
d9fcf2fb 7625 struct ui_file *outbuf)
96baa820 7626{
d01949b6 7627 struct remote_state *rs = get_remote_state ();
2e9f7625 7628 char *p = rs->buf;
96baa820
JM
7629
7630 if (!remote_desc)
8a3fe4f8 7631 error (_("remote rcmd is only available after target open"));
96baa820 7632
23860348 7633 /* Send a NULL command across as an empty command. */
7be570e7
JM
7634 if (command == NULL)
7635 command = "";
7636
23860348 7637 /* The query prefix. */
2e9f7625
DJ
7638 strcpy (rs->buf, "qRcmd,");
7639 p = strchr (rs->buf, '\0');
96baa820 7640
2e9f7625 7641 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
8a3fe4f8 7642 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 7643
23860348 7644 /* Encode the actual command. */
cfd77fa1 7645 bin2hex ((gdb_byte *) command, p, 0);
96baa820 7646
6d820c5c 7647 if (putpkt (rs->buf) < 0)
8a3fe4f8 7648 error (_("Communication problem with target."));
96baa820
JM
7649
7650 /* get/display the response */
7651 while (1)
7652 {
2e9f7625
DJ
7653 char *buf;
7654
23860348 7655 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
2e9f7625 7656 rs->buf[0] = '\0';
6d820c5c 7657 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 7658 buf = rs->buf;
96baa820 7659 if (buf[0] == '\0')
8a3fe4f8 7660 error (_("Target does not support this command."));
96baa820
JM
7661 if (buf[0] == 'O' && buf[1] != 'K')
7662 {
23860348 7663 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
7664 continue;
7665 }
7666 if (strcmp (buf, "OK") == 0)
7667 break;
7be570e7
JM
7668 if (strlen (buf) == 3 && buf[0] == 'E'
7669 && isdigit (buf[1]) && isdigit (buf[2]))
7670 {
8a3fe4f8 7671 error (_("Protocol error with Rcmd"));
7be570e7 7672 }
96baa820
JM
7673 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
7674 {
7675 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
7676 fputc_unfiltered (c, outbuf);
7677 }
7678 break;
7679 }
7680}
7681
fd79ecee
DJ
7682static VEC(mem_region_s) *
7683remote_memory_map (struct target_ops *ops)
7684{
7685 VEC(mem_region_s) *result = NULL;
7686 char *text = target_read_stralloc (&current_target,
7687 TARGET_OBJECT_MEMORY_MAP, NULL);
7688
7689 if (text)
7690 {
7691 struct cleanup *back_to = make_cleanup (xfree, text);
7692 result = parse_memory_map (text);
7693 do_cleanups (back_to);
7694 }
7695
7696 return result;
7697}
7698
c906108c 7699static void
fba45db2 7700packet_command (char *args, int from_tty)
c906108c 7701{
d01949b6 7702 struct remote_state *rs = get_remote_state ();
c906108c 7703
c5aa993b 7704 if (!remote_desc)
8a3fe4f8 7705 error (_("command can only be used with remote target"));
c906108c 7706
c5aa993b 7707 if (!args)
8a3fe4f8 7708 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
7709
7710 puts_filtered ("sending: ");
7711 print_packet (args);
7712 puts_filtered ("\n");
7713 putpkt (args);
7714
6d820c5c 7715 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 7716 puts_filtered ("received: ");
6d820c5c 7717 print_packet (rs->buf);
c906108c
SS
7718 puts_filtered ("\n");
7719}
7720
7721#if 0
23860348 7722/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 7723
a14ed312 7724static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 7725
a14ed312 7726static void threadset_test_cmd (char *cmd, int tty);
c906108c 7727
a14ed312 7728static void threadalive_test (char *cmd, int tty);
c906108c 7729
a14ed312 7730static void threadlist_test_cmd (char *cmd, int tty);
c906108c 7731
23860348 7732int get_and_display_threadinfo (threadref *ref);
c906108c 7733
a14ed312 7734static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 7735
23860348 7736static int thread_display_step (threadref *ref, void *context);
c906108c 7737
a14ed312 7738static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 7739
a14ed312 7740static void init_remote_threadtests (void);
c906108c 7741
23860348 7742#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
7743
7744static void
fba45db2 7745threadset_test_cmd (char *cmd, int tty)
c906108c
SS
7746{
7747 int sample_thread = SAMPLE_THREAD;
7748
a3f17187 7749 printf_filtered (_("Remote threadset test\n"));
79d7f229 7750 set_general_thread (sample_thread);
c906108c
SS
7751}
7752
7753
7754static void
fba45db2 7755threadalive_test (char *cmd, int tty)
c906108c
SS
7756{
7757 int sample_thread = SAMPLE_THREAD;
79d7f229
PA
7758 int pid = ptid_get_pid (inferior_ptid);
7759 ptid_t ptid = ptid_build (pid, 0, sample_thread);
c906108c 7760
79d7f229 7761 if (remote_thread_alive (ptid))
c906108c
SS
7762 printf_filtered ("PASS: Thread alive test\n");
7763 else
7764 printf_filtered ("FAIL: Thread alive test\n");
7765}
7766
23860348 7767void output_threadid (char *title, threadref *ref);
c906108c
SS
7768
7769void
fba45db2 7770output_threadid (char *title, threadref *ref)
c906108c
SS
7771{
7772 char hexid[20];
7773
23860348 7774 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
7775 hexid[16] = 0;
7776 printf_filtered ("%s %s\n", title, (&hexid[0]));
7777}
7778
7779static void
fba45db2 7780threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
7781{
7782 int startflag = 1;
7783 threadref nextthread;
7784 int done, result_count;
7785 threadref threadlist[3];
7786
7787 printf_filtered ("Remote Threadlist test\n");
7788 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
7789 &result_count, &threadlist[0]))
7790 printf_filtered ("FAIL: threadlist test\n");
7791 else
7792 {
7793 threadref *scan = threadlist;
7794 threadref *limit = scan + result_count;
7795
7796 while (scan < limit)
7797 output_threadid (" thread ", scan++);
7798 }
7799}
7800
7801void
fba45db2 7802display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
7803{
7804 output_threadid ("Threadid: ", &info->threadid);
7805 printf_filtered ("Name: %s\n ", info->shortname);
7806 printf_filtered ("State: %s\n", info->display);
7807 printf_filtered ("other: %s\n\n", info->more_display);
7808}
7809
7810int
fba45db2 7811get_and_display_threadinfo (threadref *ref)
c906108c
SS
7812{
7813 int result;
7814 int set;
7815 struct gdb_ext_thread_info threadinfo;
7816
7817 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
7818 | TAG_MOREDISPLAY | TAG_DISPLAY;
7819 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
7820 display_thread_info (&threadinfo);
7821 return result;
7822}
7823
7824static void
fba45db2 7825threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
7826{
7827 int athread = SAMPLE_THREAD;
7828 threadref thread;
7829 int set;
7830
7831 int_to_threadref (&thread, athread);
7832 printf_filtered ("Remote Threadinfo test\n");
7833 if (!get_and_display_threadinfo (&thread))
7834 printf_filtered ("FAIL cannot get thread info\n");
7835}
7836
7837static int
fba45db2 7838thread_display_step (threadref *ref, void *context)
c906108c
SS
7839{
7840 /* output_threadid(" threadstep ",ref); *//* simple test */
7841 return get_and_display_threadinfo (ref);
7842}
7843
7844static void
fba45db2 7845threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
7846{
7847 printf_filtered ("Remote Threadlist update test\n");
7848 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
7849}
7850
7851static void
7852init_remote_threadtests (void)
7853{
1bedd215
AC
7854 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
7855Fetch and print the remote list of thread identifiers, one pkt only"));
c906108c 7856 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 7857 _("Fetch and display info about one thread"));
c906108c 7858 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 7859 _("Test setting to a different thread"));
c906108c 7860 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 7861 _("Iterate through updating all remote thread info"));
c906108c 7862 add_com ("talive", class_obscure, threadalive_test,
1bedd215 7863 _(" Remote thread alive test "));
c906108c
SS
7864}
7865
7866#endif /* 0 */
7867
f3fb8c85
MS
7868/* Convert a thread ID to a string. Returns the string in a static
7869 buffer. */
7870
7871static char *
117de6a9 7872remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 7873{
79d7f229 7874 static char buf[64];
82f73884 7875 struct remote_state *rs = get_remote_state ();
f3fb8c85 7876
79d7f229
PA
7877 if (ptid_equal (magic_null_ptid, ptid))
7878 {
7879 xsnprintf (buf, sizeof buf, "Thread <main>");
7880 return buf;
7881 }
82f73884
PA
7882 else if (remote_multi_process_p (rs)
7883 && ptid_get_tid (ptid) != 0 && ptid_get_pid (ptid) != 0)
7884 {
7885 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
7886 ptid_get_pid (ptid), ptid_get_tid (ptid));
7887 return buf;
7888 }
79d7f229
PA
7889 else if (ptid_get_tid (ptid) != 0)
7890 {
7891 xsnprintf (buf, sizeof buf, "Thread %ld",
7892 ptid_get_tid (ptid));
7893 return buf;
7894 }
7895
7896 return normal_pid_to_str (ptid);
f3fb8c85
MS
7897}
7898
38691318
KB
7899/* Get the address of the thread local variable in OBJFILE which is
7900 stored at OFFSET within the thread local storage for thread PTID. */
7901
7902static CORE_ADDR
117de6a9
PA
7903remote_get_thread_local_address (struct target_ops *ops,
7904 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 7905{
444abaca 7906 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
38691318
KB
7907 {
7908 struct remote_state *rs = get_remote_state ();
6d820c5c 7909 char *p = rs->buf;
82f73884 7910 char *endp = rs->buf + get_remote_packet_size ();
571dd617 7911 enum packet_result result;
38691318
KB
7912
7913 strcpy (p, "qGetTLSAddr:");
7914 p += strlen (p);
82f73884 7915 p = write_ptid (p, endp, ptid);
38691318
KB
7916 *p++ = ',';
7917 p += hexnumstr (p, offset);
7918 *p++ = ',';
7919 p += hexnumstr (p, lm);
7920 *p++ = '\0';
7921
6d820c5c
DJ
7922 putpkt (rs->buf);
7923 getpkt (&rs->buf, &rs->buf_size, 0);
7924 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 7925 if (result == PACKET_OK)
38691318
KB
7926 {
7927 ULONGEST result;
7928
6d820c5c 7929 unpack_varlen_hex (rs->buf, &result);
38691318
KB
7930 return result;
7931 }
571dd617 7932 else if (result == PACKET_UNKNOWN)
109c3e39
AC
7933 throw_error (TLS_GENERIC_ERROR,
7934 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 7935 else
109c3e39
AC
7936 throw_error (TLS_GENERIC_ERROR,
7937 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
7938 }
7939 else
109c3e39
AC
7940 throw_error (TLS_GENERIC_ERROR,
7941 _("TLS not supported or disabled on this target"));
38691318
KB
7942 /* Not reached. */
7943 return 0;
7944}
7945
29709017
DJ
7946/* Support for inferring a target description based on the current
7947 architecture and the size of a 'g' packet. While the 'g' packet
7948 can have any size (since optional registers can be left off the
7949 end), some sizes are easily recognizable given knowledge of the
7950 approximate architecture. */
7951
7952struct remote_g_packet_guess
7953{
7954 int bytes;
7955 const struct target_desc *tdesc;
7956};
7957typedef struct remote_g_packet_guess remote_g_packet_guess_s;
7958DEF_VEC_O(remote_g_packet_guess_s);
7959
7960struct remote_g_packet_data
7961{
7962 VEC(remote_g_packet_guess_s) *guesses;
7963};
7964
7965static struct gdbarch_data *remote_g_packet_data_handle;
7966
7967static void *
7968remote_g_packet_data_init (struct obstack *obstack)
7969{
7970 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
7971}
7972
7973void
7974register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
7975 const struct target_desc *tdesc)
7976{
7977 struct remote_g_packet_data *data
7978 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
7979 struct remote_g_packet_guess new_guess, *guess;
7980 int ix;
7981
7982 gdb_assert (tdesc != NULL);
7983
7984 for (ix = 0;
7985 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
7986 ix++)
7987 if (guess->bytes == bytes)
7988 internal_error (__FILE__, __LINE__,
7989 "Duplicate g packet description added for size %d",
7990 bytes);
7991
7992 new_guess.bytes = bytes;
7993 new_guess.tdesc = tdesc;
7994 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
7995}
7996
d962ef82
DJ
7997/* Return 1 if remote_read_description would do anything on this target
7998 and architecture, 0 otherwise. */
7999
8000static int
8001remote_read_description_p (struct target_ops *target)
8002{
8003 struct remote_g_packet_data *data
8004 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
8005
8006 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
8007 return 1;
8008
8009 return 0;
8010}
8011
29709017
DJ
8012static const struct target_desc *
8013remote_read_description (struct target_ops *target)
8014{
8015 struct remote_g_packet_data *data
1cf3db46 8016 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
29709017 8017
d962ef82
DJ
8018 /* Do not try this during initial connection, when we do not know
8019 whether there is a running but stopped thread. */
8020 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
8021 return NULL;
8022
29709017
DJ
8023 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
8024 {
8025 struct remote_g_packet_guess *guess;
8026 int ix;
8027 int bytes = send_g_packet ();
8028
8029 for (ix = 0;
8030 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
8031 ix++)
8032 if (guess->bytes == bytes)
8033 return guess->tdesc;
8034
8035 /* We discard the g packet. A minor optimization would be to
8036 hold on to it, and fill the register cache once we have selected
8037 an architecture, but it's too tricky to do safely. */
8038 }
8039
8040 return NULL;
8041}
8042
a6b151f1
DJ
8043/* Remote file transfer support. This is host-initiated I/O, not
8044 target-initiated; for target-initiated, see remote-fileio.c. */
8045
8046/* If *LEFT is at least the length of STRING, copy STRING to
8047 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8048 decrease *LEFT. Otherwise raise an error. */
8049
8050static void
8051remote_buffer_add_string (char **buffer, int *left, char *string)
8052{
8053 int len = strlen (string);
8054
8055 if (len > *left)
8056 error (_("Packet too long for target."));
8057
8058 memcpy (*buffer, string, len);
8059 *buffer += len;
8060 *left -= len;
8061
8062 /* NUL-terminate the buffer as a convenience, if there is
8063 room. */
8064 if (*left)
8065 **buffer = '\0';
8066}
8067
8068/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
8069 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8070 decrease *LEFT. Otherwise raise an error. */
8071
8072static void
8073remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
8074 int len)
8075{
8076 if (2 * len > *left)
8077 error (_("Packet too long for target."));
8078
8079 bin2hex (bytes, *buffer, len);
8080 *buffer += 2 * len;
8081 *left -= 2 * len;
8082
8083 /* NUL-terminate the buffer as a convenience, if there is
8084 room. */
8085 if (*left)
8086 **buffer = '\0';
8087}
8088
8089/* If *LEFT is large enough, convert VALUE to hex and add it to
8090 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8091 decrease *LEFT. Otherwise raise an error. */
8092
8093static void
8094remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
8095{
8096 int len = hexnumlen (value);
8097
8098 if (len > *left)
8099 error (_("Packet too long for target."));
8100
8101 hexnumstr (*buffer, value);
8102 *buffer += len;
8103 *left -= len;
8104
8105 /* NUL-terminate the buffer as a convenience, if there is
8106 room. */
8107 if (*left)
8108 **buffer = '\0';
8109}
8110
8111/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
8112 value, *REMOTE_ERRNO to the remote error number or zero if none
8113 was included, and *ATTACHMENT to point to the start of the annex
8114 if any. The length of the packet isn't needed here; there may
8115 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
8116
8117 Return 0 if the packet could be parsed, -1 if it could not. If
8118 -1 is returned, the other variables may not be initialized. */
8119
8120static int
8121remote_hostio_parse_result (char *buffer, int *retcode,
8122 int *remote_errno, char **attachment)
8123{
8124 char *p, *p2;
8125
8126 *remote_errno = 0;
8127 *attachment = NULL;
8128
8129 if (buffer[0] != 'F')
8130 return -1;
8131
8132 errno = 0;
8133 *retcode = strtol (&buffer[1], &p, 16);
8134 if (errno != 0 || p == &buffer[1])
8135 return -1;
8136
8137 /* Check for ",errno". */
8138 if (*p == ',')
8139 {
8140 errno = 0;
8141 *remote_errno = strtol (p + 1, &p2, 16);
8142 if (errno != 0 || p + 1 == p2)
8143 return -1;
8144 p = p2;
8145 }
8146
8147 /* Check for ";attachment". If there is no attachment, the
8148 packet should end here. */
8149 if (*p == ';')
8150 {
8151 *attachment = p + 1;
8152 return 0;
8153 }
8154 else if (*p == '\0')
8155 return 0;
8156 else
8157 return -1;
8158}
8159
8160/* Send a prepared I/O packet to the target and read its response.
8161 The prepared packet is in the global RS->BUF before this function
8162 is called, and the answer is there when we return.
8163
8164 COMMAND_BYTES is the length of the request to send, which may include
8165 binary data. WHICH_PACKET is the packet configuration to check
8166 before attempting a packet. If an error occurs, *REMOTE_ERRNO
8167 is set to the error number and -1 is returned. Otherwise the value
8168 returned by the function is returned.
8169
8170 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
8171 attachment is expected; an error will be reported if there's a
8172 mismatch. If one is found, *ATTACHMENT will be set to point into
8173 the packet buffer and *ATTACHMENT_LEN will be set to the
8174 attachment's length. */
8175
8176static int
8177remote_hostio_send_command (int command_bytes, int which_packet,
8178 int *remote_errno, char **attachment,
8179 int *attachment_len)
8180{
8181 struct remote_state *rs = get_remote_state ();
8182 int ret, bytes_read;
8183 char *attachment_tmp;
8184
f1838a98
UW
8185 if (!remote_desc
8186 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
a6b151f1
DJ
8187 {
8188 *remote_errno = FILEIO_ENOSYS;
8189 return -1;
8190 }
8191
8192 putpkt_binary (rs->buf, command_bytes);
8193 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8194
8195 /* If it timed out, something is wrong. Don't try to parse the
8196 buffer. */
8197 if (bytes_read < 0)
8198 {
8199 *remote_errno = FILEIO_EINVAL;
8200 return -1;
8201 }
8202
8203 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
8204 {
8205 case PACKET_ERROR:
8206 *remote_errno = FILEIO_EINVAL;
8207 return -1;
8208 case PACKET_UNKNOWN:
8209 *remote_errno = FILEIO_ENOSYS;
8210 return -1;
8211 case PACKET_OK:
8212 break;
8213 }
8214
8215 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
8216 &attachment_tmp))
8217 {
8218 *remote_errno = FILEIO_EINVAL;
8219 return -1;
8220 }
8221
8222 /* Make sure we saw an attachment if and only if we expected one. */
8223 if ((attachment_tmp == NULL && attachment != NULL)
8224 || (attachment_tmp != NULL && attachment == NULL))
8225 {
8226 *remote_errno = FILEIO_EINVAL;
8227 return -1;
8228 }
8229
8230 /* If an attachment was found, it must point into the packet buffer;
8231 work out how many bytes there were. */
8232 if (attachment_tmp != NULL)
8233 {
8234 *attachment = attachment_tmp;
8235 *attachment_len = bytes_read - (*attachment - rs->buf);
8236 }
8237
8238 return ret;
8239}
8240
8241/* Open FILENAME on the remote target, using FLAGS and MODE. Return a
8242 remote file descriptor, or -1 if an error occurs (and set
8243 *REMOTE_ERRNO). */
8244
8245static int
8246remote_hostio_open (const char *filename, int flags, int mode,
8247 int *remote_errno)
8248{
8249 struct remote_state *rs = get_remote_state ();
8250 char *p = rs->buf;
8251 int left = get_remote_packet_size () - 1;
8252
8253 remote_buffer_add_string (&p, &left, "vFile:open:");
8254
8255 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8256 strlen (filename));
8257 remote_buffer_add_string (&p, &left, ",");
8258
8259 remote_buffer_add_int (&p, &left, flags);
8260 remote_buffer_add_string (&p, &left, ",");
8261
8262 remote_buffer_add_int (&p, &left, mode);
8263
8264 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
8265 remote_errno, NULL, NULL);
8266}
8267
8268/* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
8269 Return the number of bytes written, or -1 if an error occurs (and
8270 set *REMOTE_ERRNO). */
8271
8272static int
8273remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
8274 ULONGEST offset, int *remote_errno)
8275{
8276 struct remote_state *rs = get_remote_state ();
8277 char *p = rs->buf;
8278 int left = get_remote_packet_size ();
8279 int out_len;
8280
8281 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
8282
8283 remote_buffer_add_int (&p, &left, fd);
8284 remote_buffer_add_string (&p, &left, ",");
8285
8286 remote_buffer_add_int (&p, &left, offset);
8287 remote_buffer_add_string (&p, &left, ",");
8288
8289 p += remote_escape_output (write_buf, len, p, &out_len,
8290 get_remote_packet_size () - (p - rs->buf));
8291
8292 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
8293 remote_errno, NULL, NULL);
8294}
8295
8296/* Read up to LEN bytes FD on the remote target into READ_BUF
8297 Return the number of bytes read, or -1 if an error occurs (and
8298 set *REMOTE_ERRNO). */
8299
8300static int
8301remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
8302 ULONGEST offset, int *remote_errno)
8303{
8304 struct remote_state *rs = get_remote_state ();
8305 char *p = rs->buf;
8306 char *attachment;
8307 int left = get_remote_packet_size ();
8308 int ret, attachment_len;
8309 int read_len;
8310
8311 remote_buffer_add_string (&p, &left, "vFile:pread:");
8312
8313 remote_buffer_add_int (&p, &left, fd);
8314 remote_buffer_add_string (&p, &left, ",");
8315
8316 remote_buffer_add_int (&p, &left, len);
8317 remote_buffer_add_string (&p, &left, ",");
8318
8319 remote_buffer_add_int (&p, &left, offset);
8320
8321 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
8322 remote_errno, &attachment,
8323 &attachment_len);
8324
8325 if (ret < 0)
8326 return ret;
8327
8328 read_len = remote_unescape_input (attachment, attachment_len,
8329 read_buf, len);
8330 if (read_len != ret)
8331 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
8332
8333 return ret;
8334}
8335
8336/* Close FD on the remote target. Return 0, or -1 if an error occurs
8337 (and set *REMOTE_ERRNO). */
8338
8339static int
8340remote_hostio_close (int fd, int *remote_errno)
8341{
8342 struct remote_state *rs = get_remote_state ();
8343 char *p = rs->buf;
8344 int left = get_remote_packet_size () - 1;
8345
8346 remote_buffer_add_string (&p, &left, "vFile:close:");
8347
8348 remote_buffer_add_int (&p, &left, fd);
8349
8350 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
8351 remote_errno, NULL, NULL);
8352}
8353
8354/* Unlink FILENAME on the remote target. Return 0, or -1 if an error
8355 occurs (and set *REMOTE_ERRNO). */
8356
8357static int
8358remote_hostio_unlink (const char *filename, int *remote_errno)
8359{
8360 struct remote_state *rs = get_remote_state ();
8361 char *p = rs->buf;
8362 int left = get_remote_packet_size () - 1;
8363
8364 remote_buffer_add_string (&p, &left, "vFile:unlink:");
8365
8366 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8367 strlen (filename));
8368
8369 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
8370 remote_errno, NULL, NULL);
8371}
8372
8373static int
8374remote_fileio_errno_to_host (int errnum)
8375{
8376 switch (errnum)
8377 {
8378 case FILEIO_EPERM:
8379 return EPERM;
8380 case FILEIO_ENOENT:
8381 return ENOENT;
8382 case FILEIO_EINTR:
8383 return EINTR;
8384 case FILEIO_EIO:
8385 return EIO;
8386 case FILEIO_EBADF:
8387 return EBADF;
8388 case FILEIO_EACCES:
8389 return EACCES;
8390 case FILEIO_EFAULT:
8391 return EFAULT;
8392 case FILEIO_EBUSY:
8393 return EBUSY;
8394 case FILEIO_EEXIST:
8395 return EEXIST;
8396 case FILEIO_ENODEV:
8397 return ENODEV;
8398 case FILEIO_ENOTDIR:
8399 return ENOTDIR;
8400 case FILEIO_EISDIR:
8401 return EISDIR;
8402 case FILEIO_EINVAL:
8403 return EINVAL;
8404 case FILEIO_ENFILE:
8405 return ENFILE;
8406 case FILEIO_EMFILE:
8407 return EMFILE;
8408 case FILEIO_EFBIG:
8409 return EFBIG;
8410 case FILEIO_ENOSPC:
8411 return ENOSPC;
8412 case FILEIO_ESPIPE:
8413 return ESPIPE;
8414 case FILEIO_EROFS:
8415 return EROFS;
8416 case FILEIO_ENOSYS:
8417 return ENOSYS;
8418 case FILEIO_ENAMETOOLONG:
8419 return ENAMETOOLONG;
8420 }
8421 return -1;
8422}
8423
8424static char *
8425remote_hostio_error (int errnum)
8426{
8427 int host_error = remote_fileio_errno_to_host (errnum);
8428
8429 if (host_error == -1)
8430 error (_("Unknown remote I/O error %d"), errnum);
8431 else
8432 error (_("Remote I/O error: %s"), safe_strerror (host_error));
8433}
8434
a6b151f1
DJ
8435static void
8436remote_hostio_close_cleanup (void *opaque)
8437{
8438 int fd = *(int *) opaque;
8439 int remote_errno;
8440
8441 remote_hostio_close (fd, &remote_errno);
8442}
8443
f1838a98
UW
8444
8445static void *
8446remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
8447{
8448 const char *filename = bfd_get_filename (abfd);
8449 int fd, remote_errno;
8450 int *stream;
8451
8452 gdb_assert (remote_filename_p (filename));
8453
8454 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
8455 if (fd == -1)
8456 {
8457 errno = remote_fileio_errno_to_host (remote_errno);
8458 bfd_set_error (bfd_error_system_call);
8459 return NULL;
8460 }
8461
8462 stream = xmalloc (sizeof (int));
8463 *stream = fd;
8464 return stream;
8465}
8466
8467static int
8468remote_bfd_iovec_close (struct bfd *abfd, void *stream)
8469{
8470 int fd = *(int *)stream;
8471 int remote_errno;
8472
8473 xfree (stream);
8474
8475 /* Ignore errors on close; these may happen if the remote
8476 connection was already torn down. */
8477 remote_hostio_close (fd, &remote_errno);
8478
8479 return 1;
8480}
8481
8482static file_ptr
8483remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
8484 file_ptr nbytes, file_ptr offset)
8485{
8486 int fd = *(int *)stream;
8487 int remote_errno;
8488 file_ptr pos, bytes;
8489
8490 pos = 0;
8491 while (nbytes > pos)
8492 {
8493 bytes = remote_hostio_pread (fd, (char *)buf + pos, nbytes - pos,
8494 offset + pos, &remote_errno);
8495 if (bytes == 0)
8496 /* Success, but no bytes, means end-of-file. */
8497 break;
8498 if (bytes == -1)
8499 {
8500 errno = remote_fileio_errno_to_host (remote_errno);
8501 bfd_set_error (bfd_error_system_call);
8502 return -1;
8503 }
8504
8505 pos += bytes;
8506 }
8507
8508 return pos;
8509}
8510
8511static int
8512remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
8513{
8514 /* FIXME: We should probably implement remote_hostio_stat. */
8515 sb->st_size = INT_MAX;
8516 return 0;
8517}
8518
8519int
8520remote_filename_p (const char *filename)
8521{
8522 return strncmp (filename, "remote:", 7) == 0;
8523}
8524
8525bfd *
8526remote_bfd_open (const char *remote_file, const char *target)
8527{
8528 return bfd_openr_iovec (remote_file, target,
8529 remote_bfd_iovec_open, NULL,
8530 remote_bfd_iovec_pread,
8531 remote_bfd_iovec_close,
8532 remote_bfd_iovec_stat);
8533}
8534
a6b151f1
DJ
8535void
8536remote_file_put (const char *local_file, const char *remote_file, int from_tty)
8537{
8538 struct cleanup *back_to, *close_cleanup;
8539 int retcode, fd, remote_errno, bytes, io_size;
8540 FILE *file;
8541 gdb_byte *buffer;
8542 int bytes_in_buffer;
8543 int saw_eof;
8544 ULONGEST offset;
8545
8546 if (!remote_desc)
8547 error (_("command can only be used with remote target"));
8548
8549 file = fopen (local_file, "rb");
8550 if (file == NULL)
8551 perror_with_name (local_file);
7c8a8b04 8552 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
8553
8554 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
8555 | FILEIO_O_TRUNC),
8556 0700, &remote_errno);
8557 if (fd == -1)
8558 remote_hostio_error (remote_errno);
8559
8560 /* Send up to this many bytes at once. They won't all fit in the
8561 remote packet limit, so we'll transfer slightly fewer. */
8562 io_size = get_remote_packet_size ();
8563 buffer = xmalloc (io_size);
8564 make_cleanup (xfree, buffer);
8565
8566 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8567
8568 bytes_in_buffer = 0;
8569 saw_eof = 0;
8570 offset = 0;
8571 while (bytes_in_buffer || !saw_eof)
8572 {
8573 if (!saw_eof)
8574 {
8575 bytes = fread (buffer + bytes_in_buffer, 1, io_size - bytes_in_buffer,
8576 file);
8577 if (bytes == 0)
8578 {
8579 if (ferror (file))
8580 error (_("Error reading %s."), local_file);
8581 else
8582 {
8583 /* EOF. Unless there is something still in the
8584 buffer from the last iteration, we are done. */
8585 saw_eof = 1;
8586 if (bytes_in_buffer == 0)
8587 break;
8588 }
8589 }
8590 }
8591 else
8592 bytes = 0;
8593
8594 bytes += bytes_in_buffer;
8595 bytes_in_buffer = 0;
8596
8597 retcode = remote_hostio_pwrite (fd, buffer, bytes, offset, &remote_errno);
8598
8599 if (retcode < 0)
8600 remote_hostio_error (remote_errno);
8601 else if (retcode == 0)
8602 error (_("Remote write of %d bytes returned 0!"), bytes);
8603 else if (retcode < bytes)
8604 {
8605 /* Short write. Save the rest of the read data for the next
8606 write. */
8607 bytes_in_buffer = bytes - retcode;
8608 memmove (buffer, buffer + retcode, bytes_in_buffer);
8609 }
8610
8611 offset += retcode;
8612 }
8613
8614 discard_cleanups (close_cleanup);
8615 if (remote_hostio_close (fd, &remote_errno))
8616 remote_hostio_error (remote_errno);
8617
8618 if (from_tty)
8619 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
8620 do_cleanups (back_to);
8621}
8622
8623void
8624remote_file_get (const char *remote_file, const char *local_file, int from_tty)
8625{
8626 struct cleanup *back_to, *close_cleanup;
8627 int retcode, fd, remote_errno, bytes, io_size;
8628 FILE *file;
8629 gdb_byte *buffer;
8630 ULONGEST offset;
8631
8632 if (!remote_desc)
8633 error (_("command can only be used with remote target"));
8634
8635 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
8636 if (fd == -1)
8637 remote_hostio_error (remote_errno);
8638
8639 file = fopen (local_file, "wb");
8640 if (file == NULL)
8641 perror_with_name (local_file);
7c8a8b04 8642 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
8643
8644 /* Send up to this many bytes at once. They won't all fit in the
8645 remote packet limit, so we'll transfer slightly fewer. */
8646 io_size = get_remote_packet_size ();
8647 buffer = xmalloc (io_size);
8648 make_cleanup (xfree, buffer);
8649
8650 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8651
8652 offset = 0;
8653 while (1)
8654 {
8655 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
8656 if (bytes == 0)
8657 /* Success, but no bytes, means end-of-file. */
8658 break;
8659 if (bytes == -1)
8660 remote_hostio_error (remote_errno);
8661
8662 offset += bytes;
8663
8664 bytes = fwrite (buffer, 1, bytes, file);
8665 if (bytes == 0)
8666 perror_with_name (local_file);
8667 }
8668
8669 discard_cleanups (close_cleanup);
8670 if (remote_hostio_close (fd, &remote_errno))
8671 remote_hostio_error (remote_errno);
8672
8673 if (from_tty)
8674 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
8675 do_cleanups (back_to);
8676}
8677
8678void
8679remote_file_delete (const char *remote_file, int from_tty)
8680{
8681 int retcode, remote_errno;
8682
8683 if (!remote_desc)
8684 error (_("command can only be used with remote target"));
8685
8686 retcode = remote_hostio_unlink (remote_file, &remote_errno);
8687 if (retcode == -1)
8688 remote_hostio_error (remote_errno);
8689
8690 if (from_tty)
8691 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
8692}
8693
8694static void
8695remote_put_command (char *args, int from_tty)
8696{
8697 struct cleanup *back_to;
8698 char **argv;
8699
d1a41061
PP
8700 if (args == NULL)
8701 error_no_arg (_("file to put"));
8702
8703 argv = gdb_buildargv (args);
a6b151f1
DJ
8704 back_to = make_cleanup_freeargv (argv);
8705 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8706 error (_("Invalid parameters to remote put"));
8707
8708 remote_file_put (argv[0], argv[1], from_tty);
8709
8710 do_cleanups (back_to);
8711}
8712
8713static void
8714remote_get_command (char *args, int from_tty)
8715{
8716 struct cleanup *back_to;
8717 char **argv;
8718
d1a41061
PP
8719 if (args == NULL)
8720 error_no_arg (_("file to get"));
8721
8722 argv = gdb_buildargv (args);
a6b151f1
DJ
8723 back_to = make_cleanup_freeargv (argv);
8724 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8725 error (_("Invalid parameters to remote get"));
8726
8727 remote_file_get (argv[0], argv[1], from_tty);
8728
8729 do_cleanups (back_to);
8730}
8731
8732static void
8733remote_delete_command (char *args, int from_tty)
8734{
8735 struct cleanup *back_to;
8736 char **argv;
8737
d1a41061
PP
8738 if (args == NULL)
8739 error_no_arg (_("file to delete"));
8740
8741 argv = gdb_buildargv (args);
a6b151f1
DJ
8742 back_to = make_cleanup_freeargv (argv);
8743 if (argv[0] == NULL || argv[1] != NULL)
8744 error (_("Invalid parameters to remote delete"));
8745
8746 remote_file_delete (argv[0], from_tty);
8747
8748 do_cleanups (back_to);
8749}
8750
8751static void
8752remote_command (char *args, int from_tty)
8753{
8754 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
8755}
8756
b2175913
MS
8757static int remote_target_can_reverse = 1;
8758
8759static int
8760remote_can_execute_reverse (void)
8761{
8762 return remote_target_can_reverse;
8763}
8764
74531fed
PA
8765static int
8766remote_supports_non_stop (void)
8767{
8768 return 1;
8769}
8770
8a305172
PA
8771static int
8772remote_supports_multi_process (void)
8773{
8774 struct remote_state *rs = get_remote_state ();
8775 return remote_multi_process_p (rs);
8776}
8777
c906108c 8778static void
fba45db2 8779init_remote_ops (void)
c906108c 8780{
c5aa993b 8781 remote_ops.to_shortname = "remote";
c906108c 8782 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 8783 remote_ops.to_doc =
c906108c 8784 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
8785Specify the serial device it is connected to\n\
8786(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
8787 remote_ops.to_open = remote_open;
8788 remote_ops.to_close = remote_close;
c906108c 8789 remote_ops.to_detach = remote_detach;
6ad8ae5c 8790 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 8791 remote_ops.to_resume = remote_resume;
c906108c
SS
8792 remote_ops.to_wait = remote_wait;
8793 remote_ops.to_fetch_registers = remote_fetch_registers;
8794 remote_ops.to_store_registers = remote_store_registers;
8795 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c8e73a31 8796 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
c5aa993b 8797 remote_ops.to_files_info = remote_files_info;
c906108c
SS
8798 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
8799 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
3c3bea1c
GS
8800 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
8801 remote_ops.to_stopped_data_address = remote_stopped_data_address;
8802 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
8803 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
8804 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
8805 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
8806 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b
JM
8807 remote_ops.to_kill = remote_kill;
8808 remote_ops.to_load = generic_load;
c906108c
SS
8809 remote_ops.to_mourn_inferior = remote_mourn;
8810 remote_ops.to_thread_alive = remote_thread_alive;
0f71a2f6 8811 remote_ops.to_find_new_threads = remote_threads_info;
0caabb7e 8812 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 8813 remote_ops.to_extra_thread_info = remote_threads_extra_info;
c906108c 8814 remote_ops.to_stop = remote_stop;
4b8a223f 8815 remote_ops.to_xfer_partial = remote_xfer_partial;
96baa820 8816 remote_ops.to_rcmd = remote_rcmd;
49d03eab 8817 remote_ops.to_log_command = serial_log_command;
38691318 8818 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 8819 remote_ops.to_stratum = process_stratum;
c5aa993b
JM
8820 remote_ops.to_has_all_memory = 1;
8821 remote_ops.to_has_memory = 1;
8822 remote_ops.to_has_stack = 1;
8823 remote_ops.to_has_registers = 1;
8824 remote_ops.to_has_execution = 1;
8825 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 8826 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 8827 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 8828 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
8829 remote_ops.to_flash_erase = remote_flash_erase;
8830 remote_ops.to_flash_done = remote_flash_done;
29709017 8831 remote_ops.to_read_description = remote_read_description;
08388c79 8832 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
8833 remote_ops.to_can_async_p = remote_can_async_p;
8834 remote_ops.to_is_async_p = remote_is_async_p;
8835 remote_ops.to_async = remote_async;
8836 remote_ops.to_async_mask = remote_async_mask;
8837 remote_ops.to_terminal_inferior = remote_terminal_inferior;
8838 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 8839 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 8840 remote_ops.to_supports_multi_process = remote_supports_multi_process;
c906108c
SS
8841}
8842
8843/* Set up the extended remote vector by making a copy of the standard
8844 remote vector and adding to it. */
8845
8846static void
fba45db2 8847init_extended_remote_ops (void)
c906108c
SS
8848{
8849 extended_remote_ops = remote_ops;
8850
0f71a2f6 8851 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 8852 extended_remote_ops.to_longname =
c906108c 8853 "Extended remote serial target in gdb-specific protocol";
c5aa993b 8854 extended_remote_ops.to_doc =
c906108c 8855 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
8856Specify the serial device it is connected to (e.g. /dev/ttya).";
8857 extended_remote_ops.to_open = extended_remote_open;
c906108c
SS
8858 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
8859 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
2d717e4f
DJ
8860 extended_remote_ops.to_detach = extended_remote_detach;
8861 extended_remote_ops.to_attach = extended_remote_attach;
82f73884 8862 extended_remote_ops.to_kill = extended_remote_kill;
0f71a2f6
JM
8863}
8864
6426a772
JM
8865static int
8866remote_can_async_p (void)
8867{
c6ebd6cf 8868 if (!target_async_permitted)
75c99385
PA
8869 /* We only enable async when the user specifically asks for it. */
8870 return 0;
8871
23860348 8872 /* We're async whenever the serial device is. */
b84876c2 8873 return remote_async_mask_value && serial_can_async_p (remote_desc);
6426a772
JM
8874}
8875
8876static int
8877remote_is_async_p (void)
8878{
c6ebd6cf 8879 if (!target_async_permitted)
75c99385
PA
8880 /* We only enable async when the user specifically asks for it. */
8881 return 0;
8882
23860348 8883 /* We're async whenever the serial device is. */
b84876c2 8884 return remote_async_mask_value && serial_is_async_p (remote_desc);
6426a772
JM
8885}
8886
2acceee2
JM
8887/* Pass the SERIAL event on and up to the client. One day this code
8888 will be able to delay notifying the client of an event until the
23860348 8889 point where an entire packet has been received. */
2acceee2 8890
2bc416ba 8891static void (*async_client_callback) (enum inferior_event_type event_type,
23860348 8892 void *context);
2acceee2
JM
8893static void *async_client_context;
8894static serial_event_ftype remote_async_serial_handler;
8895
6426a772 8896static void
819cc324 8897remote_async_serial_handler (struct serial *scb, void *context)
6426a772 8898{
2acceee2
JM
8899 /* Don't propogate error information up to the client. Instead let
8900 the client find out about the error by querying the target. */
8901 async_client_callback (INF_REG_EVENT, async_client_context);
8902}
8903
74531fed
PA
8904static void
8905remote_async_inferior_event_handler (gdb_client_data data)
8906{
8907 inferior_event_handler (INF_REG_EVENT, NULL);
8908}
8909
8910static void
8911remote_async_get_pending_events_handler (gdb_client_data data)
8912{
8913 remote_get_pending_stop_replies ();
8914}
8915
2acceee2 8916static void
2bc416ba 8917remote_async (void (*callback) (enum inferior_event_type event_type,
23860348 8918 void *context), void *context)
2acceee2 8919{
b84876c2 8920 if (remote_async_mask_value == 0)
8e65ff28 8921 internal_error (__FILE__, __LINE__,
e2e0b3e5 8922 _("Calling remote_async when async is masked"));
ed9a39eb 8923
2acceee2
JM
8924 if (callback != NULL)
8925 {
2cd58942 8926 serial_async (remote_desc, remote_async_serial_handler, NULL);
2acceee2
JM
8927 async_client_callback = callback;
8928 async_client_context = context;
8929 }
8930 else
2cd58942 8931 serial_async (remote_desc, NULL, NULL);
6426a772
JM
8932}
8933
b84876c2
PA
8934static int
8935remote_async_mask (int new_mask)
8936{
8937 int curr_mask = remote_async_mask_value;
8938 remote_async_mask_value = new_mask;
8939 return curr_mask;
8940}
8941
5a2468f5 8942static void
c2d11a7d 8943set_remote_cmd (char *args, int from_tty)
5a2468f5 8944{
427c3a89 8945 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
5a2468f5
JM
8946}
8947
d471ea57
AC
8948static void
8949show_remote_cmd (char *args, int from_tty)
8950{
37a105a1 8951 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 8952 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1
DJ
8953 struct cleanup *showlist_chain;
8954 struct cmd_list_element *list = remote_show_cmdlist;
8955
8956 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
8957 for (; list != NULL; list = list->next)
8958 if (strcmp (list->name, "Z-packet") == 0)
8959 continue;
427c3a89
DJ
8960 else if (list->type == not_set_cmd)
8961 /* Alias commands are exactly like the original, except they
8962 don't have the normal type. */
8963 continue;
8964 else
37a105a1
DJ
8965 {
8966 struct cleanup *option_chain
8967 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
8968 ui_out_field_string (uiout, "name", list->name);
8969 ui_out_text (uiout, ": ");
427c3a89
DJ
8970 if (list->type == show_cmd)
8971 do_setshow_command ((char *) NULL, from_tty, list);
8972 else
8973 cmd_func (list, NULL, from_tty);
37a105a1
DJ
8974 /* Close the tuple. */
8975 do_cleanups (option_chain);
8976 }
427c3a89
DJ
8977
8978 /* Close the tuple. */
8979 do_cleanups (showlist_chain);
d471ea57 8980}
5a2468f5 8981
0f71a2f6 8982
23860348 8983/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
8984static void
8985remote_new_objfile (struct objfile *objfile)
8986{
23860348 8987 if (remote_desc != 0) /* Have a remote connection. */
06d3b283 8988 remote_check_symbols (objfile);
dc8acb97
MS
8989}
8990
c906108c 8991void
fba45db2 8992_initialize_remote (void)
c906108c 8993{
ea9c271d
DJ
8994 struct remote_state *rs;
8995
0f71a2f6 8996 /* architecture specific data */
2bc416ba 8997 remote_gdbarch_data_handle =
23860348 8998 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
8999 remote_g_packet_data_handle =
9000 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 9001
ea9c271d
DJ
9002 /* Initialize the per-target state. At the moment there is only one
9003 of these, not one per target. Only one target is active at a
9004 time. The default buffer size is unimportant; it will be expanded
9005 whenever a larger buffer is needed. */
0b83947e 9006 rs = get_remote_state_raw ();
ea9c271d
DJ
9007 rs->buf_size = 400;
9008 rs->buf = xmalloc (rs->buf_size);
9009
c906108c
SS
9010 init_remote_ops ();
9011 add_target (&remote_ops);
9012
9013 init_extended_remote_ops ();
9014 add_target (&extended_remote_ops);
cce74817 9015
dc8acb97 9016 /* Hook into new objfile notification. */
06d3b283 9017 observer_attach_new_objfile (remote_new_objfile);
dc8acb97 9018
b803fb0f
DJ
9019 /* Set up signal handlers. */
9020 sigint_remote_token =
9021 create_async_signal_handler (async_remote_interrupt, NULL);
9022 sigint_remote_twice_token =
9023 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
9024
c906108c
SS
9025#if 0
9026 init_remote_threadtests ();
9027#endif
9028
23860348 9029 /* set/show remote ... */
d471ea57 9030
1bedd215 9031 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
9032Remote protocol specific variables\n\
9033Configure various remote-protocol specific variables such as\n\
1bedd215 9034the packets being used"),
cff3e48b 9035 &remote_set_cmdlist, "set remote ",
23860348 9036 0 /* allow-unknown */, &setlist);
1bedd215 9037 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
9038Remote protocol specific variables\n\
9039Configure various remote-protocol specific variables such as\n\
1bedd215 9040the packets being used"),
cff3e48b 9041 &remote_show_cmdlist, "show remote ",
23860348 9042 0 /* allow-unknown */, &showlist);
5a2468f5 9043
1a966eab
AC
9044 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
9045Compare section data on target to the exec file.\n\
9046Argument is a single section name (default: all loaded sections)."),
c906108c
SS
9047 &cmdlist);
9048
1a966eab
AC
9049 add_cmd ("packet", class_maintenance, packet_command, _("\
9050Send an arbitrary packet to a remote target.\n\
c906108c
SS
9051 maintenance packet TEXT\n\
9052If GDB is talking to an inferior via the GDB serial protocol, then\n\
9053this command sends the string TEXT to the inferior, and displays the\n\
9054response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 9055terminating `#' character and checksum."),
c906108c
SS
9056 &maintenancelist);
9057
7915a72c
AC
9058 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
9059Set whether to send break if interrupted."), _("\
9060Show whether to send break if interrupted."), _("\
9061If set, a break, instead of a cntrl-c, is sent to the remote target."),
2c5b56ce 9062 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
e707bbc2 9063 &setlist, &showlist);
c906108c 9064
23860348 9065 /* Install commands for configuring memory read/write packets. */
11cf8741 9066
1a966eab
AC
9067 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
9068Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 9069 &setlist);
1a966eab
AC
9070 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
9071Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
9072 &showlist);
9073 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
9074 set_memory_write_packet_size, _("\
9075Set the maximum number of bytes per memory-write packet.\n\
9076Specify the number of bytes in a packet or 0 (zero) for the\n\
9077default packet size. The actual limit is further reduced\n\
9078dependent on the target. Specify ``fixed'' to disable the\n\
9079further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
9080 &remote_set_cmdlist);
9081 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
9082 set_memory_read_packet_size, _("\
9083Set the maximum number of bytes per memory-read packet.\n\
9084Specify the number of bytes in a packet or 0 (zero) for the\n\
9085default packet size. The actual limit is further reduced\n\
9086dependent on the target. Specify ``fixed'' to disable the\n\
9087further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
9088 &remote_set_cmdlist);
9089 add_cmd ("memory-write-packet-size", no_class,
9090 show_memory_write_packet_size,
1a966eab 9091 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
9092 &remote_show_cmdlist);
9093 add_cmd ("memory-read-packet-size", no_class,
9094 show_memory_read_packet_size,
1a966eab 9095 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 9096 &remote_show_cmdlist);
c906108c 9097
b3f42336 9098 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
9099 &remote_hw_watchpoint_limit, _("\
9100Set the maximum number of target hardware watchpoints."), _("\
9101Show the maximum number of target hardware watchpoints."), _("\
9102Specify a negative limit for unlimited."),
2c5b56ce 9103 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
b3f42336
AC
9104 &remote_set_cmdlist, &remote_show_cmdlist);
9105 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
9106 &remote_hw_breakpoint_limit, _("\
9107Set the maximum number of target hardware breakpoints."), _("\
9108Show the maximum number of target hardware breakpoints."), _("\
9109Specify a negative limit for unlimited."),
2c5b56ce 9110 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
b3f42336 9111 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 9112
4d28ad1e
AC
9113 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
9114 &remote_address_size, _("\
9115Set the maximum size of the address (in bits) in a memory packet."), _("\
9116Show the maximum size of the address (in bits) in a memory packet."), NULL,
9117 NULL,
9118 NULL, /* FIXME: i18n: */
9119 &setlist, &showlist);
c906108c 9120
444abaca 9121 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 9122 "X", "binary-download", 1);
0f71a2f6 9123
444abaca 9124 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 9125 "vCont", "verbose-resume", 0);
506fb367 9126
89be2091
DJ
9127 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
9128 "QPassSignals", "pass-signals", 0);
9129
444abaca 9130 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 9131 "qSymbol", "symbol-lookup", 0);
dc8acb97 9132
444abaca 9133 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 9134 "P", "set-register", 1);
d471ea57 9135
444abaca 9136 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 9137 "p", "fetch-register", 1);
b96ec7ac 9138
444abaca 9139 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 9140 "Z0", "software-breakpoint", 0);
d471ea57 9141
444abaca 9142 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 9143 "Z1", "hardware-breakpoint", 0);
d471ea57 9144
444abaca 9145 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 9146 "Z2", "write-watchpoint", 0);
d471ea57 9147
444abaca 9148 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 9149 "Z3", "read-watchpoint", 0);
d471ea57 9150
444abaca 9151 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 9152 "Z4", "access-watchpoint", 0);
d471ea57 9153
0876f84a
DJ
9154 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
9155 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 9156
23181151
DJ
9157 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
9158 "qXfer:features:read", "target-features", 0);
9159
cfa9d6d9
DJ
9160 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
9161 "qXfer:libraries:read", "library-info", 0);
9162
fd79ecee
DJ
9163 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
9164 "qXfer:memory-map:read", "memory-map", 0);
9165
0e7f50da
UW
9166 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
9167 "qXfer:spu:read", "read-spu-object", 0);
9168
9169 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
9170 "qXfer:spu:write", "write-spu-object", 0);
9171
07e059b5
VP
9172 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
9173 "qXfer:osdata:read", "osdata", 0);
9174
4aa995e1
PA
9175 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
9176 "qXfer:siginfo:read", "read-siginfo-object", 0);
9177
9178 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
9179 "qXfer:siginfo:write", "write-siginfo-object", 0);
9180
444abaca 9181 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 9182 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
9183 0);
9184
be2a5f71
DJ
9185 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
9186 "qSupported", "supported-packets", 0);
9187
08388c79
DE
9188 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
9189 "qSearch:memory", "search-memory", 0);
9190
a6b151f1
DJ
9191 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
9192 "vFile:open", "hostio-open", 0);
9193
9194 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
9195 "vFile:pread", "hostio-pread", 0);
9196
9197 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
9198 "vFile:pwrite", "hostio-pwrite", 0);
9199
9200 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
9201 "vFile:close", "hostio-close", 0);
9202
9203 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
9204 "vFile:unlink", "hostio-unlink", 0);
9205
2d717e4f
DJ
9206 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
9207 "vAttach", "attach", 0);
9208
9209 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
9210 "vRun", "run", 0);
9211
a6f3e723
SL
9212 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
9213 "QStartNoAckMode", "noack", 0);
9214
82f73884
PA
9215 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
9216 "vKill", "kill", 0);
9217
0b16c5cf
PA
9218 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
9219 "qAttached", "query-attached", 0);
9220
37a105a1
DJ
9221 /* Keep the old ``set remote Z-packet ...'' working. Each individual
9222 Z sub-packet has its own set and show commands, but users may
9223 have sets to this variable in their .gdbinit files (or in their
9224 documentation). */
e9e68a56 9225 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
9226 &remote_Z_packet_detect, _("\
9227Set use of remote protocol `Z' packets"), _("\
9228Show use of remote protocol `Z' packets "), _("\
3b64bf98 9229When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 9230packets."),
e9e68a56 9231 set_remote_protocol_Z_packet_cmd,
2c5b56ce 9232 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
e9e68a56 9233 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 9234
a6b151f1
DJ
9235 add_prefix_cmd ("remote", class_files, remote_command, _("\
9236Manipulate files on the remote system\n\
9237Transfer files to and from the remote target system."),
9238 &remote_cmdlist, "remote ",
9239 0 /* allow-unknown */, &cmdlist);
9240
9241 add_cmd ("put", class_files, remote_put_command,
9242 _("Copy a local file to the remote system."),
9243 &remote_cmdlist);
9244
9245 add_cmd ("get", class_files, remote_get_command,
9246 _("Copy a remote file to the local system."),
9247 &remote_cmdlist);
9248
9249 add_cmd ("delete", class_files, remote_delete_command,
9250 _("Delete a remote file."),
9251 &remote_cmdlist);
9252
2d717e4f
DJ
9253 remote_exec_file = xstrdup ("");
9254 add_setshow_string_noescape_cmd ("exec-file", class_files,
9255 &remote_exec_file, _("\
9256Set the remote pathname for \"run\""), _("\
9257Show the remote pathname for \"run\""), NULL, NULL, NULL,
9258 &remote_set_cmdlist, &remote_show_cmdlist);
9259
449092f6
CV
9260 /* Eventually initialize fileio. See fileio.c */
9261 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229
PA
9262
9263 /* Take advantage of the fact that the LWP field is not used, to tag
9264 special ptids with it set to != 0. */
82f73884
PA
9265 magic_null_ptid = ptid_build (42000, 1, -1);
9266 not_sent_ptid = ptid_build (42000, 1, -2);
9267 any_thread_ptid = ptid_build (42000, 1, 0);
c906108c 9268}
This page took 1.632079 seconds and 4 git commands to generate.