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