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