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