2012-03-05 Tristan Gingold <gingold@adacore.com>
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2012 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* See the GDB User Guide for details of the GDB remote protocol. */
21
22 #include "defs.h"
23 #include "gdb_string.h"
24 #include <ctype.h>
25 #include <fcntl.h>
26 #include "inferior.h"
27 #include "bfd.h"
28 #include "symfile.h"
29 #include "exceptions.h"
30 #include "target.h"
31 /*#include "terminal.h" */
32 #include "gdbcmd.h"
33 #include "objfiles.h"
34 #include "gdb-stabs.h"
35 #include "gdbthread.h"
36 #include "remote.h"
37 #include "regcache.h"
38 #include "value.h"
39 #include "gdb_assert.h"
40 #include "observer.h"
41 #include "solib.h"
42 #include "cli/cli-decode.h"
43 #include "cli/cli-setshow.h"
44 #include "target-descriptions.h"
45
46 #include <ctype.h>
47 #include <sys/time.h>
48
49 #include "event-loop.h"
50 #include "event-top.h"
51 #include "inf-loop.h"
52
53 #include <signal.h>
54 #include "serial.h"
55
56 #include "gdbcore.h" /* for exec_bfd */
57
58 #include "remote-fileio.h"
59 #include "gdb/fileio.h"
60 #include "gdb_stat.h"
61 #include "xml-support.h"
62
63 #include "memory-map.h"
64
65 #include "tracepoint.h"
66 #include "ax.h"
67 #include "ax-gdb.h"
68 #include "agent.h"
69
70 /* Temp hacks for tracepoint encoding migration. */
71 static char *target_buf;
72 static long target_buf_size;
73
74 /* The size to align memory write packets, when practical. The protocol
75 does not guarantee any alignment, and gdb will generate short
76 writes and unaligned writes, but even as a best-effort attempt this
77 can improve bulk transfers. For instance, if a write is misaligned
78 relative to the target's data bus, the stub may need to make an extra
79 round trip fetching data from the target. This doesn't make a
80 huge difference, but it's easy to do, so we try to be helpful.
81
82 The alignment chosen is arbitrary; usually data bus width is
83 important here, not the possibly larger cache line size. */
84 enum { REMOTE_ALIGN_WRITES = 16 };
85
86 /* Prototypes for local functions. */
87 static void cleanup_sigint_signal_handler (void *dummy);
88 static void initialize_sigint_signal_handler (void);
89 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
90 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
91 int forever);
92
93 static void handle_remote_sigint (int);
94 static void handle_remote_sigint_twice (int);
95 static void async_remote_interrupt (gdb_client_data);
96 void async_remote_interrupt_twice (gdb_client_data);
97
98 static void remote_files_info (struct target_ops *ignore);
99
100 static void remote_prepare_to_store (struct regcache *regcache);
101
102 static void remote_open (char *name, int from_tty);
103
104 static void extended_remote_open (char *name, int from_tty);
105
106 static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
107
108 static void remote_close (int quitting);
109
110 static void remote_mourn (struct target_ops *ops);
111
112 static void extended_remote_restart (void);
113
114 static void extended_remote_mourn (struct target_ops *);
115
116 static void remote_mourn_1 (struct target_ops *);
117
118 static void remote_send (char **buf, long *sizeof_buf_p);
119
120 static int readchar (int timeout);
121
122 static void remote_kill (struct target_ops *ops);
123
124 static int tohex (int nib);
125
126 static int remote_can_async_p (void);
127
128 static int remote_is_async_p (void);
129
130 static void remote_async (void (*callback) (enum inferior_event_type event_type,
131 void *context), void *context);
132
133 static void remote_detach (struct target_ops *ops, char *args, int from_tty);
134
135 static void remote_interrupt (int signo);
136
137 static void remote_interrupt_twice (int signo);
138
139 static void interrupt_query (void);
140
141 static void set_general_thread (struct ptid ptid);
142 static void set_continue_thread (struct ptid ptid);
143
144 static void get_offsets (void);
145
146 static void skip_frame (void);
147
148 static long read_frame (char **buf_p, long *sizeof_buf);
149
150 static int hexnumlen (ULONGEST num);
151
152 static void init_remote_ops (void);
153
154 static void init_extended_remote_ops (void);
155
156 static void remote_stop (ptid_t);
157
158 static int ishex (int ch, int *val);
159
160 static int stubhex (int ch);
161
162 static int hexnumstr (char *, ULONGEST);
163
164 static int hexnumnstr (char *, ULONGEST, int);
165
166 static CORE_ADDR remote_address_masked (CORE_ADDR);
167
168 static void print_packet (char *);
169
170 static void compare_sections_command (char *, int);
171
172 static void packet_command (char *, int);
173
174 static int stub_unpack_int (char *buff, int fieldlength);
175
176 static ptid_t remote_current_thread (ptid_t oldptid);
177
178 static void remote_find_new_threads (void);
179
180 static void record_currthread (ptid_t currthread);
181
182 static int fromhex (int a);
183
184 extern int hex2bin (const char *hex, gdb_byte *bin, int count);
185
186 extern int bin2hex (const gdb_byte *bin, char *hex, int count);
187
188 static int putpkt_binary (char *buf, int cnt);
189
190 static void check_binary_download (CORE_ADDR addr);
191
192 struct packet_config;
193
194 static void show_packet_config_cmd (struct packet_config *config);
195
196 static void update_packet_config (struct packet_config *config);
197
198 static void set_remote_protocol_packet_cmd (char *args, int from_tty,
199 struct cmd_list_element *c);
200
201 static void show_remote_protocol_packet_cmd (struct ui_file *file,
202 int from_tty,
203 struct cmd_list_element *c,
204 const char *value);
205
206 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
207 static ptid_t read_ptid (char *buf, char **obuf);
208
209 static void remote_set_permissions (void);
210
211 struct remote_state;
212 static int remote_get_trace_status (struct trace_status *ts);
213
214 static int remote_upload_tracepoints (struct uploaded_tp **utpp);
215
216 static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
217
218 static void remote_query_supported (void);
219
220 static void remote_check_symbols (struct objfile *objfile);
221
222 void _initialize_remote (void);
223
224 struct stop_reply;
225 static struct stop_reply *stop_reply_xmalloc (void);
226 static void stop_reply_xfree (struct stop_reply *);
227 static void do_stop_reply_xfree (void *arg);
228 static void remote_parse_stop_reply (char *buf, struct stop_reply *);
229 static void push_stop_reply (struct stop_reply *);
230 static void remote_get_pending_stop_replies (void);
231 static void discard_pending_stop_replies (int pid);
232 static int peek_stop_reply (ptid_t ptid);
233
234 static void remote_async_inferior_event_handler (gdb_client_data);
235 static void remote_async_get_pending_events_handler (gdb_client_data);
236
237 static void remote_terminal_ours (void);
238
239 static int remote_read_description_p (struct target_ops *target);
240
241 static void remote_console_output (char *msg);
242
243 static int remote_supports_cond_breakpoints (void);
244
245 /* The non-stop remote protocol provisions for one pending stop reply.
246 This is where we keep it until it is acknowledged. */
247
248 static struct stop_reply *pending_stop_reply = NULL;
249
250 /* For "remote". */
251
252 static struct cmd_list_element *remote_cmdlist;
253
254 /* For "set remote" and "show remote". */
255
256 static struct cmd_list_element *remote_set_cmdlist;
257 static struct cmd_list_element *remote_show_cmdlist;
258
259 /* Description of the remote protocol state for the currently
260 connected target. This is per-target state, and independent of the
261 selected architecture. */
262
263 struct remote_state
264 {
265 /* A buffer to use for incoming packets, and its current size. The
266 buffer is grown dynamically for larger incoming packets.
267 Outgoing packets may also be constructed in this buffer.
268 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
269 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
270 packets. */
271 char *buf;
272 long buf_size;
273
274 /* If we negotiated packet size explicitly (and thus can bypass
275 heuristics for the largest packet size that will not overflow
276 a buffer in the stub), this will be set to that packet size.
277 Otherwise zero, meaning to use the guessed size. */
278 long explicit_packet_size;
279
280 /* remote_wait is normally called when the target is running and
281 waits for a stop reply packet. But sometimes we need to call it
282 when the target is already stopped. We can send a "?" packet
283 and have remote_wait read the response. Or, if we already have
284 the response, we can stash it in BUF and tell remote_wait to
285 skip calling getpkt. This flag is set when BUF contains a
286 stop reply packet and the target is not waiting. */
287 int cached_wait_status;
288
289 /* True, if in no ack mode. That is, neither GDB nor the stub will
290 expect acks from each other. The connection is assumed to be
291 reliable. */
292 int noack_mode;
293
294 /* True if we're connected in extended remote mode. */
295 int extended;
296
297 /* True if the stub reported support for multi-process
298 extensions. */
299 int multi_process_aware;
300
301 /* True if we resumed the target and we're waiting for the target to
302 stop. In the mean time, we can't start another command/query.
303 The remote server wouldn't be ready to process it, so we'd
304 timeout waiting for a reply that would never come and eventually
305 we'd close the connection. This can happen in asynchronous mode
306 because we allow GDB commands while the target is running. */
307 int waiting_for_stop_reply;
308
309 /* True if the stub reports support for non-stop mode. */
310 int non_stop_aware;
311
312 /* True if the stub reports support for vCont;t. */
313 int support_vCont_t;
314
315 /* True if the stub reports support for conditional tracepoints. */
316 int cond_tracepoints;
317
318 /* True if the stub reports support for target-side breakpoint
319 conditions. */
320 int cond_breakpoints;
321
322 /* True if the stub reports support for fast tracepoints. */
323 int fast_tracepoints;
324
325 /* True if the stub reports support for static tracepoints. */
326 int static_tracepoints;
327
328 /* True if the stub reports support for installing tracepoint while
329 tracing. */
330 int install_in_trace;
331
332 /* True if the stub can continue running a trace while GDB is
333 disconnected. */
334 int disconnected_tracing;
335
336 /* True if the stub reports support for enabling and disabling
337 tracepoints while a trace experiment is running. */
338 int enable_disable_tracepoints;
339
340 /* True if the stub can collect strings using tracenz bytecode. */
341 int string_tracing;
342
343 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
344 responded to that. */
345 int ctrlc_pending_p;
346 };
347
348 /* Private data that we'll store in (struct thread_info)->private. */
349 struct private_thread_info
350 {
351 char *extra;
352 int core;
353 };
354
355 static void
356 free_private_thread_info (struct private_thread_info *info)
357 {
358 xfree (info->extra);
359 xfree (info);
360 }
361
362 /* Returns true if the multi-process extensions are in effect. */
363 static int
364 remote_multi_process_p (struct remote_state *rs)
365 {
366 return rs->multi_process_aware;
367 }
368
369 /* This data could be associated with a target, but we do not always
370 have access to the current target when we need it, so for now it is
371 static. This will be fine for as long as only one target is in use
372 at a time. */
373 static struct remote_state remote_state;
374
375 static struct remote_state *
376 get_remote_state_raw (void)
377 {
378 return &remote_state;
379 }
380
381 /* Description of the remote protocol for a given architecture. */
382
383 struct packet_reg
384 {
385 long offset; /* Offset into G packet. */
386 long regnum; /* GDB's internal register number. */
387 LONGEST pnum; /* Remote protocol register number. */
388 int in_g_packet; /* Always part of G packet. */
389 /* long size in bytes; == register_size (target_gdbarch, regnum);
390 at present. */
391 /* char *name; == gdbarch_register_name (target_gdbarch, regnum);
392 at present. */
393 };
394
395 struct remote_arch_state
396 {
397 /* Description of the remote protocol registers. */
398 long sizeof_g_packet;
399
400 /* Description of the remote protocol registers indexed by REGNUM
401 (making an array gdbarch_num_regs in size). */
402 struct packet_reg *regs;
403
404 /* This is the size (in chars) of the first response to the ``g''
405 packet. It is used as a heuristic when determining the maximum
406 size of memory-read and memory-write packets. A target will
407 typically only reserve a buffer large enough to hold the ``g''
408 packet. The size does not include packet overhead (headers and
409 trailers). */
410 long actual_register_packet_size;
411
412 /* This is the maximum size (in chars) of a non read/write packet.
413 It is also used as a cap on the size of read/write packets. */
414 long remote_packet_size;
415 };
416
417 long sizeof_pkt = 2000;
418
419 /* Utility: generate error from an incoming stub packet. */
420 static void
421 trace_error (char *buf)
422 {
423 if (*buf++ != 'E')
424 return; /* not an error msg */
425 switch (*buf)
426 {
427 case '1': /* malformed packet error */
428 if (*++buf == '0') /* general case: */
429 error (_("remote.c: error in outgoing packet."));
430 else
431 error (_("remote.c: error in outgoing packet at field #%ld."),
432 strtol (buf, NULL, 16));
433 case '2':
434 error (_("trace API error 0x%s."), ++buf);
435 default:
436 error (_("Target returns error code '%s'."), buf);
437 }
438 }
439
440 /* Utility: wait for reply from stub, while accepting "O" packets. */
441 static char *
442 remote_get_noisy_reply (char **buf_p,
443 long *sizeof_buf)
444 {
445 do /* Loop on reply from remote stub. */
446 {
447 char *buf;
448
449 QUIT; /* Allow user to bail out with ^C. */
450 getpkt (buf_p, sizeof_buf, 0);
451 buf = *buf_p;
452 if (buf[0] == 'E')
453 trace_error (buf);
454 else if (strncmp (buf, "qRelocInsn:", strlen ("qRelocInsn:")) == 0)
455 {
456 ULONGEST ul;
457 CORE_ADDR from, to, org_to;
458 char *p, *pp;
459 int adjusted_size = 0;
460 volatile struct gdb_exception ex;
461
462 p = buf + strlen ("qRelocInsn:");
463 pp = unpack_varlen_hex (p, &ul);
464 if (*pp != ';')
465 error (_("invalid qRelocInsn packet: %s"), buf);
466 from = ul;
467
468 p = pp + 1;
469 unpack_varlen_hex (p, &ul);
470 to = ul;
471
472 org_to = to;
473
474 TRY_CATCH (ex, RETURN_MASK_ALL)
475 {
476 gdbarch_relocate_instruction (target_gdbarch, &to, from);
477 }
478 if (ex.reason >= 0)
479 {
480 adjusted_size = to - org_to;
481
482 sprintf (buf, "qRelocInsn:%x", adjusted_size);
483 putpkt (buf);
484 }
485 else if (ex.reason < 0 && ex.error == MEMORY_ERROR)
486 {
487 /* Propagate memory errors silently back to the target.
488 The stub may have limited the range of addresses we
489 can write to, for example. */
490 putpkt ("E01");
491 }
492 else
493 {
494 /* Something unexpectedly bad happened. Be verbose so
495 we can tell what, and propagate the error back to the
496 stub, so it doesn't get stuck waiting for a
497 response. */
498 exception_fprintf (gdb_stderr, ex,
499 _("warning: relocating instruction: "));
500 putpkt ("E01");
501 }
502 }
503 else if (buf[0] == 'O' && buf[1] != 'K')
504 remote_console_output (buf + 1); /* 'O' message from stub */
505 else
506 return buf; /* Here's the actual reply. */
507 }
508 while (1);
509 }
510
511 /* Handle for retreving the remote protocol data from gdbarch. */
512 static struct gdbarch_data *remote_gdbarch_data_handle;
513
514 static struct remote_arch_state *
515 get_remote_arch_state (void)
516 {
517 return gdbarch_data (target_gdbarch, remote_gdbarch_data_handle);
518 }
519
520 /* Fetch the global remote target state. */
521
522 static struct remote_state *
523 get_remote_state (void)
524 {
525 /* Make sure that the remote architecture state has been
526 initialized, because doing so might reallocate rs->buf. Any
527 function which calls getpkt also needs to be mindful of changes
528 to rs->buf, but this call limits the number of places which run
529 into trouble. */
530 get_remote_arch_state ();
531
532 return get_remote_state_raw ();
533 }
534
535 static int
536 compare_pnums (const void *lhs_, const void *rhs_)
537 {
538 const struct packet_reg * const *lhs = lhs_;
539 const struct packet_reg * const *rhs = rhs_;
540
541 if ((*lhs)->pnum < (*rhs)->pnum)
542 return -1;
543 else if ((*lhs)->pnum == (*rhs)->pnum)
544 return 0;
545 else
546 return 1;
547 }
548
549 static int
550 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
551 {
552 int regnum, num_remote_regs, offset;
553 struct packet_reg **remote_regs;
554
555 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
556 {
557 struct packet_reg *r = &regs[regnum];
558
559 if (register_size (gdbarch, regnum) == 0)
560 /* Do not try to fetch zero-sized (placeholder) registers. */
561 r->pnum = -1;
562 else
563 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
564
565 r->regnum = regnum;
566 }
567
568 /* Define the g/G packet format as the contents of each register
569 with a remote protocol number, in order of ascending protocol
570 number. */
571
572 remote_regs = alloca (gdbarch_num_regs (gdbarch)
573 * sizeof (struct packet_reg *));
574 for (num_remote_regs = 0, regnum = 0;
575 regnum < gdbarch_num_regs (gdbarch);
576 regnum++)
577 if (regs[regnum].pnum != -1)
578 remote_regs[num_remote_regs++] = &regs[regnum];
579
580 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
581 compare_pnums);
582
583 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
584 {
585 remote_regs[regnum]->in_g_packet = 1;
586 remote_regs[regnum]->offset = offset;
587 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
588 }
589
590 return offset;
591 }
592
593 /* Given the architecture described by GDBARCH, return the remote
594 protocol register's number and the register's offset in the g/G
595 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
596 If the target does not have a mapping for REGNUM, return false,
597 otherwise, return true. */
598
599 int
600 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
601 int *pnum, int *poffset)
602 {
603 int sizeof_g_packet;
604 struct packet_reg *regs;
605 struct cleanup *old_chain;
606
607 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
608
609 regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg));
610 old_chain = make_cleanup (xfree, regs);
611
612 sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
613
614 *pnum = regs[regnum].pnum;
615 *poffset = regs[regnum].offset;
616
617 do_cleanups (old_chain);
618
619 return *pnum != -1;
620 }
621
622 static void *
623 init_remote_state (struct gdbarch *gdbarch)
624 {
625 struct remote_state *rs = get_remote_state_raw ();
626 struct remote_arch_state *rsa;
627
628 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
629
630 /* Use the architecture to build a regnum<->pnum table, which will be
631 1:1 unless a feature set specifies otherwise. */
632 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
633 gdbarch_num_regs (gdbarch),
634 struct packet_reg);
635
636 /* Record the maximum possible size of the g packet - it may turn out
637 to be smaller. */
638 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
639
640 /* Default maximum number of characters in a packet body. Many
641 remote stubs have a hardwired buffer size of 400 bytes
642 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
643 as the maximum packet-size to ensure that the packet and an extra
644 NUL character can always fit in the buffer. This stops GDB
645 trashing stubs that try to squeeze an extra NUL into what is
646 already a full buffer (As of 1999-12-04 that was most stubs). */
647 rsa->remote_packet_size = 400 - 1;
648
649 /* This one is filled in when a ``g'' packet is received. */
650 rsa->actual_register_packet_size = 0;
651
652 /* Should rsa->sizeof_g_packet needs more space than the
653 default, adjust the size accordingly. Remember that each byte is
654 encoded as two characters. 32 is the overhead for the packet
655 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
656 (``$NN:G...#NN'') is a better guess, the below has been padded a
657 little. */
658 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
659 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
660
661 /* Make sure that the packet buffer is plenty big enough for
662 this architecture. */
663 if (rs->buf_size < rsa->remote_packet_size)
664 {
665 rs->buf_size = 2 * rsa->remote_packet_size;
666 rs->buf = xrealloc (rs->buf, rs->buf_size);
667 }
668
669 return rsa;
670 }
671
672 /* Return the current allowed size of a remote packet. This is
673 inferred from the current architecture, and should be used to
674 limit the length of outgoing packets. */
675 static long
676 get_remote_packet_size (void)
677 {
678 struct remote_state *rs = get_remote_state ();
679 struct remote_arch_state *rsa = get_remote_arch_state ();
680
681 if (rs->explicit_packet_size)
682 return rs->explicit_packet_size;
683
684 return rsa->remote_packet_size;
685 }
686
687 static struct packet_reg *
688 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
689 {
690 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch))
691 return NULL;
692 else
693 {
694 struct packet_reg *r = &rsa->regs[regnum];
695
696 gdb_assert (r->regnum == regnum);
697 return r;
698 }
699 }
700
701 static struct packet_reg *
702 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
703 {
704 int i;
705
706 for (i = 0; i < gdbarch_num_regs (target_gdbarch); i++)
707 {
708 struct packet_reg *r = &rsa->regs[i];
709
710 if (r->pnum == pnum)
711 return r;
712 }
713 return NULL;
714 }
715
716 /* FIXME: graces/2002-08-08: These variables should eventually be
717 bound to an instance of the target object (as in gdbarch-tdep()),
718 when such a thing exists. */
719
720 /* This is set to the data address of the access causing the target
721 to stop for a watchpoint. */
722 static CORE_ADDR remote_watch_data_address;
723
724 /* This is non-zero if target stopped for a watchpoint. */
725 static int remote_stopped_by_watchpoint_p;
726
727 static struct target_ops remote_ops;
728
729 static struct target_ops extended_remote_ops;
730
731 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
732 ``forever'' still use the normal timeout mechanism. This is
733 currently used by the ASYNC code to guarentee that target reads
734 during the initial connect always time-out. Once getpkt has been
735 modified to return a timeout indication and, in turn
736 remote_wait()/wait_for_inferior() have gained a timeout parameter
737 this can go away. */
738 static int wait_forever_enabled_p = 1;
739
740 /* Allow the user to specify what sequence to send to the remote
741 when he requests a program interruption: Although ^C is usually
742 what remote systems expect (this is the default, here), it is
743 sometimes preferable to send a break. On other systems such
744 as the Linux kernel, a break followed by g, which is Magic SysRq g
745 is required in order to interrupt the execution. */
746 const char interrupt_sequence_control_c[] = "Ctrl-C";
747 const char interrupt_sequence_break[] = "BREAK";
748 const char interrupt_sequence_break_g[] = "BREAK-g";
749 static const char *const interrupt_sequence_modes[] =
750 {
751 interrupt_sequence_control_c,
752 interrupt_sequence_break,
753 interrupt_sequence_break_g,
754 NULL
755 };
756 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
757
758 static void
759 show_interrupt_sequence (struct ui_file *file, int from_tty,
760 struct cmd_list_element *c,
761 const char *value)
762 {
763 if (interrupt_sequence_mode == interrupt_sequence_control_c)
764 fprintf_filtered (file,
765 _("Send the ASCII ETX character (Ctrl-c) "
766 "to the remote target to interrupt the "
767 "execution of the program.\n"));
768 else if (interrupt_sequence_mode == interrupt_sequence_break)
769 fprintf_filtered (file,
770 _("send a break signal to the remote target "
771 "to interrupt the execution of the program.\n"));
772 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
773 fprintf_filtered (file,
774 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
775 "the remote target to interrupt the execution "
776 "of Linux kernel.\n"));
777 else
778 internal_error (__FILE__, __LINE__,
779 _("Invalid value for interrupt_sequence_mode: %s."),
780 interrupt_sequence_mode);
781 }
782
783 /* This boolean variable specifies whether interrupt_sequence is sent
784 to the remote target when gdb connects to it.
785 This is mostly needed when you debug the Linux kernel: The Linux kernel
786 expects BREAK g which is Magic SysRq g for connecting gdb. */
787 static int interrupt_on_connect = 0;
788
789 /* This variable is used to implement the "set/show remotebreak" commands.
790 Since these commands are now deprecated in favor of "set/show remote
791 interrupt-sequence", it no longer has any effect on the code. */
792 static int remote_break;
793
794 static void
795 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
796 {
797 if (remote_break)
798 interrupt_sequence_mode = interrupt_sequence_break;
799 else
800 interrupt_sequence_mode = interrupt_sequence_control_c;
801 }
802
803 static void
804 show_remotebreak (struct ui_file *file, int from_tty,
805 struct cmd_list_element *c,
806 const char *value)
807 {
808 }
809
810 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
811 remote_open knows that we don't have a file open when the program
812 starts. */
813 static struct serial *remote_desc = NULL;
814
815 /* This variable sets the number of bits in an address that are to be
816 sent in a memory ("M" or "m") packet. Normally, after stripping
817 leading zeros, the entire address would be sent. This variable
818 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
819 initial implementation of remote.c restricted the address sent in
820 memory packets to ``host::sizeof long'' bytes - (typically 32
821 bits). Consequently, for 64 bit targets, the upper 32 bits of an
822 address was never sent. Since fixing this bug may cause a break in
823 some remote targets this variable is principly provided to
824 facilitate backward compatibility. */
825
826 static int remote_address_size;
827
828 /* Temporary to track who currently owns the terminal. See
829 remote_terminal_* for more details. */
830
831 static int remote_async_terminal_ours_p;
832
833 /* The executable file to use for "run" on the remote side. */
834
835 static char *remote_exec_file = "";
836
837 \f
838 /* User configurable variables for the number of characters in a
839 memory read/write packet. MIN (rsa->remote_packet_size,
840 rsa->sizeof_g_packet) is the default. Some targets need smaller
841 values (fifo overruns, et.al.) and some users need larger values
842 (speed up transfers). The variables ``preferred_*'' (the user
843 request), ``current_*'' (what was actually set) and ``forced_*''
844 (Positive - a soft limit, negative - a hard limit). */
845
846 struct memory_packet_config
847 {
848 char *name;
849 long size;
850 int fixed_p;
851 };
852
853 /* Compute the current size of a read/write packet. Since this makes
854 use of ``actual_register_packet_size'' the computation is dynamic. */
855
856 static long
857 get_memory_packet_size (struct memory_packet_config *config)
858 {
859 struct remote_state *rs = get_remote_state ();
860 struct remote_arch_state *rsa = get_remote_arch_state ();
861
862 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
863 law?) that some hosts don't cope very well with large alloca()
864 calls. Eventually the alloca() code will be replaced by calls to
865 xmalloc() and make_cleanups() allowing this restriction to either
866 be lifted or removed. */
867 #ifndef MAX_REMOTE_PACKET_SIZE
868 #define MAX_REMOTE_PACKET_SIZE 16384
869 #endif
870 /* NOTE: 20 ensures we can write at least one byte. */
871 #ifndef MIN_REMOTE_PACKET_SIZE
872 #define MIN_REMOTE_PACKET_SIZE 20
873 #endif
874 long what_they_get;
875 if (config->fixed_p)
876 {
877 if (config->size <= 0)
878 what_they_get = MAX_REMOTE_PACKET_SIZE;
879 else
880 what_they_get = config->size;
881 }
882 else
883 {
884 what_they_get = get_remote_packet_size ();
885 /* Limit the packet to the size specified by the user. */
886 if (config->size > 0
887 && what_they_get > config->size)
888 what_they_get = config->size;
889
890 /* Limit it to the size of the targets ``g'' response unless we have
891 permission from the stub to use a larger packet size. */
892 if (rs->explicit_packet_size == 0
893 && rsa->actual_register_packet_size > 0
894 && what_they_get > rsa->actual_register_packet_size)
895 what_they_get = rsa->actual_register_packet_size;
896 }
897 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
898 what_they_get = MAX_REMOTE_PACKET_SIZE;
899 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
900 what_they_get = MIN_REMOTE_PACKET_SIZE;
901
902 /* Make sure there is room in the global buffer for this packet
903 (including its trailing NUL byte). */
904 if (rs->buf_size < what_they_get + 1)
905 {
906 rs->buf_size = 2 * what_they_get;
907 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
908 }
909
910 return what_they_get;
911 }
912
913 /* Update the size of a read/write packet. If they user wants
914 something really big then do a sanity check. */
915
916 static void
917 set_memory_packet_size (char *args, struct memory_packet_config *config)
918 {
919 int fixed_p = config->fixed_p;
920 long size = config->size;
921
922 if (args == NULL)
923 error (_("Argument required (integer, `fixed' or `limited')."));
924 else if (strcmp (args, "hard") == 0
925 || strcmp (args, "fixed") == 0)
926 fixed_p = 1;
927 else if (strcmp (args, "soft") == 0
928 || strcmp (args, "limit") == 0)
929 fixed_p = 0;
930 else
931 {
932 char *end;
933
934 size = strtoul (args, &end, 0);
935 if (args == end)
936 error (_("Invalid %s (bad syntax)."), config->name);
937 #if 0
938 /* Instead of explicitly capping the size of a packet to
939 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
940 instead allowed to set the size to something arbitrarily
941 large. */
942 if (size > MAX_REMOTE_PACKET_SIZE)
943 error (_("Invalid %s (too large)."), config->name);
944 #endif
945 }
946 /* Extra checks? */
947 if (fixed_p && !config->fixed_p)
948 {
949 if (! query (_("The target may not be able to correctly handle a %s\n"
950 "of %ld bytes. Change the packet size? "),
951 config->name, size))
952 error (_("Packet size not changed."));
953 }
954 /* Update the config. */
955 config->fixed_p = fixed_p;
956 config->size = size;
957 }
958
959 static void
960 show_memory_packet_size (struct memory_packet_config *config)
961 {
962 printf_filtered (_("The %s is %ld. "), config->name, config->size);
963 if (config->fixed_p)
964 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
965 get_memory_packet_size (config));
966 else
967 printf_filtered (_("Packets are limited to %ld bytes.\n"),
968 get_memory_packet_size (config));
969 }
970
971 static struct memory_packet_config memory_write_packet_config =
972 {
973 "memory-write-packet-size",
974 };
975
976 static void
977 set_memory_write_packet_size (char *args, int from_tty)
978 {
979 set_memory_packet_size (args, &memory_write_packet_config);
980 }
981
982 static void
983 show_memory_write_packet_size (char *args, int from_tty)
984 {
985 show_memory_packet_size (&memory_write_packet_config);
986 }
987
988 static long
989 get_memory_write_packet_size (void)
990 {
991 return get_memory_packet_size (&memory_write_packet_config);
992 }
993
994 static struct memory_packet_config memory_read_packet_config =
995 {
996 "memory-read-packet-size",
997 };
998
999 static void
1000 set_memory_read_packet_size (char *args, int from_tty)
1001 {
1002 set_memory_packet_size (args, &memory_read_packet_config);
1003 }
1004
1005 static void
1006 show_memory_read_packet_size (char *args, int from_tty)
1007 {
1008 show_memory_packet_size (&memory_read_packet_config);
1009 }
1010
1011 static long
1012 get_memory_read_packet_size (void)
1013 {
1014 long size = get_memory_packet_size (&memory_read_packet_config);
1015
1016 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1017 extra buffer size argument before the memory read size can be
1018 increased beyond this. */
1019 if (size > get_remote_packet_size ())
1020 size = get_remote_packet_size ();
1021 return size;
1022 }
1023
1024 \f
1025 /* Generic configuration support for packets the stub optionally
1026 supports. Allows the user to specify the use of the packet as well
1027 as allowing GDB to auto-detect support in the remote stub. */
1028
1029 enum packet_support
1030 {
1031 PACKET_SUPPORT_UNKNOWN = 0,
1032 PACKET_ENABLE,
1033 PACKET_DISABLE
1034 };
1035
1036 struct packet_config
1037 {
1038 const char *name;
1039 const char *title;
1040 enum auto_boolean detect;
1041 enum packet_support support;
1042 };
1043
1044 /* Analyze a packet's return value and update the packet config
1045 accordingly. */
1046
1047 enum packet_result
1048 {
1049 PACKET_ERROR,
1050 PACKET_OK,
1051 PACKET_UNKNOWN
1052 };
1053
1054 static void
1055 update_packet_config (struct packet_config *config)
1056 {
1057 switch (config->detect)
1058 {
1059 case AUTO_BOOLEAN_TRUE:
1060 config->support = PACKET_ENABLE;
1061 break;
1062 case AUTO_BOOLEAN_FALSE:
1063 config->support = PACKET_DISABLE;
1064 break;
1065 case AUTO_BOOLEAN_AUTO:
1066 config->support = PACKET_SUPPORT_UNKNOWN;
1067 break;
1068 }
1069 }
1070
1071 static void
1072 show_packet_config_cmd (struct packet_config *config)
1073 {
1074 char *support = "internal-error";
1075
1076 switch (config->support)
1077 {
1078 case PACKET_ENABLE:
1079 support = "enabled";
1080 break;
1081 case PACKET_DISABLE:
1082 support = "disabled";
1083 break;
1084 case PACKET_SUPPORT_UNKNOWN:
1085 support = "unknown";
1086 break;
1087 }
1088 switch (config->detect)
1089 {
1090 case AUTO_BOOLEAN_AUTO:
1091 printf_filtered (_("Support for the `%s' packet "
1092 "is auto-detected, currently %s.\n"),
1093 config->name, support);
1094 break;
1095 case AUTO_BOOLEAN_TRUE:
1096 case AUTO_BOOLEAN_FALSE:
1097 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1098 config->name, support);
1099 break;
1100 }
1101 }
1102
1103 static void
1104 add_packet_config_cmd (struct packet_config *config, const char *name,
1105 const char *title, int legacy)
1106 {
1107 char *set_doc;
1108 char *show_doc;
1109 char *cmd_name;
1110
1111 config->name = name;
1112 config->title = title;
1113 config->detect = AUTO_BOOLEAN_AUTO;
1114 config->support = PACKET_SUPPORT_UNKNOWN;
1115 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1116 name, title);
1117 show_doc = xstrprintf ("Show current use of remote "
1118 "protocol `%s' (%s) packet",
1119 name, title);
1120 /* set/show TITLE-packet {auto,on,off} */
1121 cmd_name = xstrprintf ("%s-packet", title);
1122 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1123 &config->detect, set_doc,
1124 show_doc, NULL, /* help_doc */
1125 set_remote_protocol_packet_cmd,
1126 show_remote_protocol_packet_cmd,
1127 &remote_set_cmdlist, &remote_show_cmdlist);
1128 /* The command code copies the documentation strings. */
1129 xfree (set_doc);
1130 xfree (show_doc);
1131 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1132 if (legacy)
1133 {
1134 char *legacy_name;
1135
1136 legacy_name = xstrprintf ("%s-packet", name);
1137 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1138 &remote_set_cmdlist);
1139 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1140 &remote_show_cmdlist);
1141 }
1142 }
1143
1144 static enum packet_result
1145 packet_check_result (const char *buf)
1146 {
1147 if (buf[0] != '\0')
1148 {
1149 /* The stub recognized the packet request. Check that the
1150 operation succeeded. */
1151 if (buf[0] == 'E'
1152 && isxdigit (buf[1]) && isxdigit (buf[2])
1153 && buf[3] == '\0')
1154 /* "Enn" - definitly an error. */
1155 return PACKET_ERROR;
1156
1157 /* Always treat "E." as an error. This will be used for
1158 more verbose error messages, such as E.memtypes. */
1159 if (buf[0] == 'E' && buf[1] == '.')
1160 return PACKET_ERROR;
1161
1162 /* The packet may or may not be OK. Just assume it is. */
1163 return PACKET_OK;
1164 }
1165 else
1166 /* The stub does not support the packet. */
1167 return PACKET_UNKNOWN;
1168 }
1169
1170 static enum packet_result
1171 packet_ok (const char *buf, struct packet_config *config)
1172 {
1173 enum packet_result result;
1174
1175 result = packet_check_result (buf);
1176 switch (result)
1177 {
1178 case PACKET_OK:
1179 case PACKET_ERROR:
1180 /* The stub recognized the packet request. */
1181 switch (config->support)
1182 {
1183 case PACKET_SUPPORT_UNKNOWN:
1184 if (remote_debug)
1185 fprintf_unfiltered (gdb_stdlog,
1186 "Packet %s (%s) is supported\n",
1187 config->name, config->title);
1188 config->support = PACKET_ENABLE;
1189 break;
1190 case PACKET_DISABLE:
1191 internal_error (__FILE__, __LINE__,
1192 _("packet_ok: attempt to use a disabled packet"));
1193 break;
1194 case PACKET_ENABLE:
1195 break;
1196 }
1197 break;
1198 case PACKET_UNKNOWN:
1199 /* The stub does not support the packet. */
1200 switch (config->support)
1201 {
1202 case PACKET_ENABLE:
1203 if (config->detect == AUTO_BOOLEAN_AUTO)
1204 /* If the stub previously indicated that the packet was
1205 supported then there is a protocol error.. */
1206 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1207 config->name, config->title);
1208 else
1209 /* The user set it wrong. */
1210 error (_("Enabled packet %s (%s) not recognized by stub"),
1211 config->name, config->title);
1212 break;
1213 case PACKET_SUPPORT_UNKNOWN:
1214 if (remote_debug)
1215 fprintf_unfiltered (gdb_stdlog,
1216 "Packet %s (%s) is NOT supported\n",
1217 config->name, config->title);
1218 config->support = PACKET_DISABLE;
1219 break;
1220 case PACKET_DISABLE:
1221 break;
1222 }
1223 break;
1224 }
1225
1226 return result;
1227 }
1228
1229 enum {
1230 PACKET_vCont = 0,
1231 PACKET_X,
1232 PACKET_qSymbol,
1233 PACKET_P,
1234 PACKET_p,
1235 PACKET_Z0,
1236 PACKET_Z1,
1237 PACKET_Z2,
1238 PACKET_Z3,
1239 PACKET_Z4,
1240 PACKET_vFile_open,
1241 PACKET_vFile_pread,
1242 PACKET_vFile_pwrite,
1243 PACKET_vFile_close,
1244 PACKET_vFile_unlink,
1245 PACKET_vFile_readlink,
1246 PACKET_qXfer_auxv,
1247 PACKET_qXfer_features,
1248 PACKET_qXfer_libraries,
1249 PACKET_qXfer_libraries_svr4,
1250 PACKET_qXfer_memory_map,
1251 PACKET_qXfer_spu_read,
1252 PACKET_qXfer_spu_write,
1253 PACKET_qXfer_osdata,
1254 PACKET_qXfer_threads,
1255 PACKET_qXfer_statictrace_read,
1256 PACKET_qXfer_traceframe_info,
1257 PACKET_qXfer_uib,
1258 PACKET_qGetTIBAddr,
1259 PACKET_qGetTLSAddr,
1260 PACKET_qSupported,
1261 PACKET_QPassSignals,
1262 PACKET_qSearch_memory,
1263 PACKET_vAttach,
1264 PACKET_vRun,
1265 PACKET_QStartNoAckMode,
1266 PACKET_vKill,
1267 PACKET_qXfer_siginfo_read,
1268 PACKET_qXfer_siginfo_write,
1269 PACKET_qAttached,
1270 PACKET_ConditionalTracepoints,
1271 PACKET_ConditionalBreakpoints,
1272 PACKET_FastTracepoints,
1273 PACKET_StaticTracepoints,
1274 PACKET_InstallInTrace,
1275 PACKET_bc,
1276 PACKET_bs,
1277 PACKET_TracepointSource,
1278 PACKET_QAllow,
1279 PACKET_qXfer_fdpic,
1280 PACKET_QDisableRandomization,
1281 PACKET_QAgent,
1282 PACKET_MAX
1283 };
1284
1285 static struct packet_config remote_protocol_packets[PACKET_MAX];
1286
1287 static void
1288 set_remote_protocol_packet_cmd (char *args, int from_tty,
1289 struct cmd_list_element *c)
1290 {
1291 struct packet_config *packet;
1292
1293 for (packet = remote_protocol_packets;
1294 packet < &remote_protocol_packets[PACKET_MAX];
1295 packet++)
1296 {
1297 if (&packet->detect == c->var)
1298 {
1299 update_packet_config (packet);
1300 return;
1301 }
1302 }
1303 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1304 c->name);
1305 }
1306
1307 static void
1308 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1309 struct cmd_list_element *c,
1310 const char *value)
1311 {
1312 struct packet_config *packet;
1313
1314 for (packet = remote_protocol_packets;
1315 packet < &remote_protocol_packets[PACKET_MAX];
1316 packet++)
1317 {
1318 if (&packet->detect == c->var)
1319 {
1320 show_packet_config_cmd (packet);
1321 return;
1322 }
1323 }
1324 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1325 c->name);
1326 }
1327
1328 /* Should we try one of the 'Z' requests? */
1329
1330 enum Z_packet_type
1331 {
1332 Z_PACKET_SOFTWARE_BP,
1333 Z_PACKET_HARDWARE_BP,
1334 Z_PACKET_WRITE_WP,
1335 Z_PACKET_READ_WP,
1336 Z_PACKET_ACCESS_WP,
1337 NR_Z_PACKET_TYPES
1338 };
1339
1340 /* For compatibility with older distributions. Provide a ``set remote
1341 Z-packet ...'' command that updates all the Z packet types. */
1342
1343 static enum auto_boolean remote_Z_packet_detect;
1344
1345 static void
1346 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1347 struct cmd_list_element *c)
1348 {
1349 int i;
1350
1351 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1352 {
1353 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1354 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
1355 }
1356 }
1357
1358 static void
1359 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1360 struct cmd_list_element *c,
1361 const char *value)
1362 {
1363 int i;
1364
1365 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1366 {
1367 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1368 }
1369 }
1370
1371 /* Should we try the 'ThreadInfo' query packet?
1372
1373 This variable (NOT available to the user: auto-detect only!)
1374 determines whether GDB will use the new, simpler "ThreadInfo"
1375 query or the older, more complex syntax for thread queries.
1376 This is an auto-detect variable (set to true at each connect,
1377 and set to false when the target fails to recognize it). */
1378
1379 static int use_threadinfo_query;
1380 static int use_threadextra_query;
1381
1382 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1383 static struct async_signal_handler *sigint_remote_twice_token;
1384 static struct async_signal_handler *sigint_remote_token;
1385
1386 \f
1387 /* Asynchronous signal handle registered as event loop source for
1388 when we have pending events ready to be passed to the core. */
1389
1390 static struct async_event_handler *remote_async_inferior_event_token;
1391
1392 /* Asynchronous signal handle registered as event loop source for when
1393 the remote sent us a %Stop notification. The registered callback
1394 will do a vStopped sequence to pull the rest of the events out of
1395 the remote side into our event queue. */
1396
1397 static struct async_event_handler *remote_async_get_pending_events_token;
1398 \f
1399
1400 static ptid_t magic_null_ptid;
1401 static ptid_t not_sent_ptid;
1402 static ptid_t any_thread_ptid;
1403
1404 /* These are the threads which we last sent to the remote system. The
1405 TID member will be -1 for all or -2 for not sent yet. */
1406
1407 static ptid_t general_thread;
1408 static ptid_t continue_thread;
1409
1410 /* This the traceframe which we last selected on the remote system.
1411 It will be -1 if no traceframe is selected. */
1412 static int remote_traceframe_number = -1;
1413
1414 /* Find out if the stub attached to PID (and hence GDB should offer to
1415 detach instead of killing it when bailing out). */
1416
1417 static int
1418 remote_query_attached (int pid)
1419 {
1420 struct remote_state *rs = get_remote_state ();
1421
1422 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1423 return 0;
1424
1425 if (remote_multi_process_p (rs))
1426 sprintf (rs->buf, "qAttached:%x", pid);
1427 else
1428 sprintf (rs->buf, "qAttached");
1429
1430 putpkt (rs->buf);
1431 getpkt (&rs->buf, &rs->buf_size, 0);
1432
1433 switch (packet_ok (rs->buf,
1434 &remote_protocol_packets[PACKET_qAttached]))
1435 {
1436 case PACKET_OK:
1437 if (strcmp (rs->buf, "1") == 0)
1438 return 1;
1439 break;
1440 case PACKET_ERROR:
1441 warning (_("Remote failure reply: %s"), rs->buf);
1442 break;
1443 case PACKET_UNKNOWN:
1444 break;
1445 }
1446
1447 return 0;
1448 }
1449
1450 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1451 has been invented by GDB, instead of reported by the target. Since
1452 we can be connected to a remote system before before knowing about
1453 any inferior, mark the target with execution when we find the first
1454 inferior. If ATTACHED is 1, then we had just attached to this
1455 inferior. If it is 0, then we just created this inferior. If it
1456 is -1, then try querying the remote stub to find out if it had
1457 attached to the inferior or not. */
1458
1459 static struct inferior *
1460 remote_add_inferior (int fake_pid_p, int pid, int attached)
1461 {
1462 struct inferior *inf;
1463
1464 /* Check whether this process we're learning about is to be
1465 considered attached, or if is to be considered to have been
1466 spawned by the stub. */
1467 if (attached == -1)
1468 attached = remote_query_attached (pid);
1469
1470 if (gdbarch_has_global_solist (target_gdbarch))
1471 {
1472 /* If the target shares code across all inferiors, then every
1473 attach adds a new inferior. */
1474 inf = add_inferior (pid);
1475
1476 /* ... and every inferior is bound to the same program space.
1477 However, each inferior may still have its own address
1478 space. */
1479 inf->aspace = maybe_new_address_space ();
1480 inf->pspace = current_program_space;
1481 }
1482 else
1483 {
1484 /* In the traditional debugging scenario, there's a 1-1 match
1485 between program/address spaces. We simply bind the inferior
1486 to the program space's address space. */
1487 inf = current_inferior ();
1488 inferior_appeared (inf, pid);
1489 }
1490
1491 inf->attach_flag = attached;
1492 inf->fake_pid_p = fake_pid_p;
1493
1494 return inf;
1495 }
1496
1497 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1498 according to RUNNING. */
1499
1500 static void
1501 remote_add_thread (ptid_t ptid, int running)
1502 {
1503 add_thread (ptid);
1504
1505 set_executing (ptid, running);
1506 set_running (ptid, running);
1507 }
1508
1509 /* Come here when we learn about a thread id from the remote target.
1510 It may be the first time we hear about such thread, so take the
1511 opportunity to add it to GDB's thread list. In case this is the
1512 first time we're noticing its corresponding inferior, add it to
1513 GDB's inferior list as well. */
1514
1515 static void
1516 remote_notice_new_inferior (ptid_t currthread, int running)
1517 {
1518 /* If this is a new thread, add it to GDB's thread list.
1519 If we leave it up to WFI to do this, bad things will happen. */
1520
1521 if (in_thread_list (currthread) && is_exited (currthread))
1522 {
1523 /* We're seeing an event on a thread id we knew had exited.
1524 This has to be a new thread reusing the old id. Add it. */
1525 remote_add_thread (currthread, running);
1526 return;
1527 }
1528
1529 if (!in_thread_list (currthread))
1530 {
1531 struct inferior *inf = NULL;
1532 int pid = ptid_get_pid (currthread);
1533
1534 if (ptid_is_pid (inferior_ptid)
1535 && pid == ptid_get_pid (inferior_ptid))
1536 {
1537 /* inferior_ptid has no thread member yet. This can happen
1538 with the vAttach -> remote_wait,"TAAthread:" path if the
1539 stub doesn't support qC. This is the first stop reported
1540 after an attach, so this is the main thread. Update the
1541 ptid in the thread list. */
1542 if (in_thread_list (pid_to_ptid (pid)))
1543 thread_change_ptid (inferior_ptid, currthread);
1544 else
1545 {
1546 remote_add_thread (currthread, running);
1547 inferior_ptid = currthread;
1548 }
1549 return;
1550 }
1551
1552 if (ptid_equal (magic_null_ptid, inferior_ptid))
1553 {
1554 /* inferior_ptid is not set yet. This can happen with the
1555 vRun -> remote_wait,"TAAthread:" path if the stub
1556 doesn't support qC. This is the first stop reported
1557 after an attach, so this is the main thread. Update the
1558 ptid in the thread list. */
1559 thread_change_ptid (inferior_ptid, currthread);
1560 return;
1561 }
1562
1563 /* When connecting to a target remote, or to a target
1564 extended-remote which already was debugging an inferior, we
1565 may not know about it yet. Add it before adding its child
1566 thread, so notifications are emitted in a sensible order. */
1567 if (!in_inferior_list (ptid_get_pid (currthread)))
1568 {
1569 struct remote_state *rs = get_remote_state ();
1570 int fake_pid_p = !remote_multi_process_p (rs);
1571
1572 inf = remote_add_inferior (fake_pid_p,
1573 ptid_get_pid (currthread), -1);
1574 }
1575
1576 /* This is really a new thread. Add it. */
1577 remote_add_thread (currthread, running);
1578
1579 /* If we found a new inferior, let the common code do whatever
1580 it needs to with it (e.g., read shared libraries, insert
1581 breakpoints). */
1582 if (inf != NULL)
1583 notice_new_inferior (currthread, running, 0);
1584 }
1585 }
1586
1587 /* Return the private thread data, creating it if necessary. */
1588
1589 static struct private_thread_info *
1590 demand_private_info (ptid_t ptid)
1591 {
1592 struct thread_info *info = find_thread_ptid (ptid);
1593
1594 gdb_assert (info);
1595
1596 if (!info->private)
1597 {
1598 info->private = xmalloc (sizeof (*(info->private)));
1599 info->private_dtor = free_private_thread_info;
1600 info->private->core = -1;
1601 info->private->extra = 0;
1602 }
1603
1604 return info->private;
1605 }
1606
1607 /* Call this function as a result of
1608 1) A halt indication (T packet) containing a thread id
1609 2) A direct query of currthread
1610 3) Successful execution of set thread */
1611
1612 static void
1613 record_currthread (ptid_t currthread)
1614 {
1615 general_thread = currthread;
1616 }
1617
1618 static char *last_pass_packet;
1619
1620 /* If 'QPassSignals' is supported, tell the remote stub what signals
1621 it can simply pass through to the inferior without reporting. */
1622
1623 static void
1624 remote_pass_signals (int numsigs, unsigned char *pass_signals)
1625 {
1626 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1627 {
1628 char *pass_packet, *p;
1629 int count = 0, i;
1630
1631 gdb_assert (numsigs < 256);
1632 for (i = 0; i < numsigs; i++)
1633 {
1634 if (pass_signals[i])
1635 count++;
1636 }
1637 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1638 strcpy (pass_packet, "QPassSignals:");
1639 p = pass_packet + strlen (pass_packet);
1640 for (i = 0; i < numsigs; i++)
1641 {
1642 if (pass_signals[i])
1643 {
1644 if (i >= 16)
1645 *p++ = tohex (i >> 4);
1646 *p++ = tohex (i & 15);
1647 if (count)
1648 *p++ = ';';
1649 else
1650 break;
1651 count--;
1652 }
1653 }
1654 *p = 0;
1655 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1656 {
1657 struct remote_state *rs = get_remote_state ();
1658 char *buf = rs->buf;
1659
1660 putpkt (pass_packet);
1661 getpkt (&rs->buf, &rs->buf_size, 0);
1662 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1663 if (last_pass_packet)
1664 xfree (last_pass_packet);
1665 last_pass_packet = pass_packet;
1666 }
1667 else
1668 xfree (pass_packet);
1669 }
1670 }
1671
1672 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1673 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1674 thread. If GEN is set, set the general thread, if not, then set
1675 the step/continue thread. */
1676 static void
1677 set_thread (struct ptid ptid, int gen)
1678 {
1679 struct remote_state *rs = get_remote_state ();
1680 ptid_t state = gen ? general_thread : continue_thread;
1681 char *buf = rs->buf;
1682 char *endbuf = rs->buf + get_remote_packet_size ();
1683
1684 if (ptid_equal (state, ptid))
1685 return;
1686
1687 *buf++ = 'H';
1688 *buf++ = gen ? 'g' : 'c';
1689 if (ptid_equal (ptid, magic_null_ptid))
1690 xsnprintf (buf, endbuf - buf, "0");
1691 else if (ptid_equal (ptid, any_thread_ptid))
1692 xsnprintf (buf, endbuf - buf, "0");
1693 else if (ptid_equal (ptid, minus_one_ptid))
1694 xsnprintf (buf, endbuf - buf, "-1");
1695 else
1696 write_ptid (buf, endbuf, ptid);
1697 putpkt (rs->buf);
1698 getpkt (&rs->buf, &rs->buf_size, 0);
1699 if (gen)
1700 general_thread = ptid;
1701 else
1702 continue_thread = ptid;
1703 }
1704
1705 static void
1706 set_general_thread (struct ptid ptid)
1707 {
1708 set_thread (ptid, 1);
1709 }
1710
1711 static void
1712 set_continue_thread (struct ptid ptid)
1713 {
1714 set_thread (ptid, 0);
1715 }
1716
1717 /* Change the remote current process. Which thread within the process
1718 ends up selected isn't important, as long as it is the same process
1719 as what INFERIOR_PTID points to.
1720
1721 This comes from that fact that there is no explicit notion of
1722 "selected process" in the protocol. The selected process for
1723 general operations is the process the selected general thread
1724 belongs to. */
1725
1726 static void
1727 set_general_process (void)
1728 {
1729 struct remote_state *rs = get_remote_state ();
1730
1731 /* If the remote can't handle multiple processes, don't bother. */
1732 if (!rs->extended || !remote_multi_process_p (rs))
1733 return;
1734
1735 /* We only need to change the remote current thread if it's pointing
1736 at some other process. */
1737 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1738 set_general_thread (inferior_ptid);
1739 }
1740
1741 \f
1742 /* Return nonzero if the thread PTID is still alive on the remote
1743 system. */
1744
1745 static int
1746 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
1747 {
1748 struct remote_state *rs = get_remote_state ();
1749 char *p, *endp;
1750
1751 if (ptid_equal (ptid, magic_null_ptid))
1752 /* The main thread is always alive. */
1753 return 1;
1754
1755 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1756 /* The main thread is always alive. This can happen after a
1757 vAttach, if the remote side doesn't support
1758 multi-threading. */
1759 return 1;
1760
1761 p = rs->buf;
1762 endp = rs->buf + get_remote_packet_size ();
1763
1764 *p++ = 'T';
1765 write_ptid (p, endp, ptid);
1766
1767 putpkt (rs->buf);
1768 getpkt (&rs->buf, &rs->buf_size, 0);
1769 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
1770 }
1771
1772 /* About these extended threadlist and threadinfo packets. They are
1773 variable length packets but, the fields within them are often fixed
1774 length. They are redundent enough to send over UDP as is the
1775 remote protocol in general. There is a matching unit test module
1776 in libstub. */
1777
1778 #define OPAQUETHREADBYTES 8
1779
1780 /* a 64 bit opaque identifier */
1781 typedef unsigned char threadref[OPAQUETHREADBYTES];
1782
1783 /* WARNING: This threadref data structure comes from the remote O.S.,
1784 libstub protocol encoding, and remote.c. It is not particularly
1785 changable. */
1786
1787 /* Right now, the internal structure is int. We want it to be bigger.
1788 Plan to fix this. */
1789
1790 typedef int gdb_threadref; /* Internal GDB thread reference. */
1791
1792 /* gdb_ext_thread_info is an internal GDB data structure which is
1793 equivalent to the reply of the remote threadinfo packet. */
1794
1795 struct gdb_ext_thread_info
1796 {
1797 threadref threadid; /* External form of thread reference. */
1798 int active; /* Has state interesting to GDB?
1799 regs, stack. */
1800 char display[256]; /* Brief state display, name,
1801 blocked/suspended. */
1802 char shortname[32]; /* To be used to name threads. */
1803 char more_display[256]; /* Long info, statistics, queue depth,
1804 whatever. */
1805 };
1806
1807 /* The volume of remote transfers can be limited by submitting
1808 a mask containing bits specifying the desired information.
1809 Use a union of these values as the 'selection' parameter to
1810 get_thread_info. FIXME: Make these TAG names more thread specific. */
1811
1812 #define TAG_THREADID 1
1813 #define TAG_EXISTS 2
1814 #define TAG_DISPLAY 4
1815 #define TAG_THREADNAME 8
1816 #define TAG_MOREDISPLAY 16
1817
1818 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1819
1820 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1821
1822 static char *unpack_nibble (char *buf, int *val);
1823
1824 static char *pack_nibble (char *buf, int nibble);
1825
1826 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1827
1828 static char *unpack_byte (char *buf, int *value);
1829
1830 static char *pack_int (char *buf, int value);
1831
1832 static char *unpack_int (char *buf, int *value);
1833
1834 static char *unpack_string (char *src, char *dest, int length);
1835
1836 static char *pack_threadid (char *pkt, threadref *id);
1837
1838 static char *unpack_threadid (char *inbuf, threadref *id);
1839
1840 void int_to_threadref (threadref *id, int value);
1841
1842 static int threadref_to_int (threadref *ref);
1843
1844 static void copy_threadref (threadref *dest, threadref *src);
1845
1846 static int threadmatch (threadref *dest, threadref *src);
1847
1848 static char *pack_threadinfo_request (char *pkt, int mode,
1849 threadref *id);
1850
1851 static int remote_unpack_thread_info_response (char *pkt,
1852 threadref *expectedref,
1853 struct gdb_ext_thread_info
1854 *info);
1855
1856
1857 static int remote_get_threadinfo (threadref *threadid,
1858 int fieldset, /*TAG mask */
1859 struct gdb_ext_thread_info *info);
1860
1861 static char *pack_threadlist_request (char *pkt, int startflag,
1862 int threadcount,
1863 threadref *nextthread);
1864
1865 static int parse_threadlist_response (char *pkt,
1866 int result_limit,
1867 threadref *original_echo,
1868 threadref *resultlist,
1869 int *doneflag);
1870
1871 static int remote_get_threadlist (int startflag,
1872 threadref *nextthread,
1873 int result_limit,
1874 int *done,
1875 int *result_count,
1876 threadref *threadlist);
1877
1878 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1879
1880 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1881 void *context, int looplimit);
1882
1883 static int remote_newthread_step (threadref *ref, void *context);
1884
1885
1886 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1887 buffer we're allowed to write to. Returns
1888 BUF+CHARACTERS_WRITTEN. */
1889
1890 static char *
1891 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1892 {
1893 int pid, tid;
1894 struct remote_state *rs = get_remote_state ();
1895
1896 if (remote_multi_process_p (rs))
1897 {
1898 pid = ptid_get_pid (ptid);
1899 if (pid < 0)
1900 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1901 else
1902 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1903 }
1904 tid = ptid_get_tid (ptid);
1905 if (tid < 0)
1906 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1907 else
1908 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1909
1910 return buf;
1911 }
1912
1913 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1914 passed the last parsed char. Returns null_ptid on error. */
1915
1916 static ptid_t
1917 read_ptid (char *buf, char **obuf)
1918 {
1919 char *p = buf;
1920 char *pp;
1921 ULONGEST pid = 0, tid = 0;
1922
1923 if (*p == 'p')
1924 {
1925 /* Multi-process ptid. */
1926 pp = unpack_varlen_hex (p + 1, &pid);
1927 if (*pp != '.')
1928 error (_("invalid remote ptid: %s"), p);
1929
1930 p = pp;
1931 pp = unpack_varlen_hex (p + 1, &tid);
1932 if (obuf)
1933 *obuf = pp;
1934 return ptid_build (pid, 0, tid);
1935 }
1936
1937 /* No multi-process. Just a tid. */
1938 pp = unpack_varlen_hex (p, &tid);
1939
1940 /* Since the stub is not sending a process id, then default to
1941 what's in inferior_ptid, unless it's null at this point. If so,
1942 then since there's no way to know the pid of the reported
1943 threads, use the magic number. */
1944 if (ptid_equal (inferior_ptid, null_ptid))
1945 pid = ptid_get_pid (magic_null_ptid);
1946 else
1947 pid = ptid_get_pid (inferior_ptid);
1948
1949 if (obuf)
1950 *obuf = pp;
1951 return ptid_build (pid, 0, tid);
1952 }
1953
1954 /* Encode 64 bits in 16 chars of hex. */
1955
1956 static const char hexchars[] = "0123456789abcdef";
1957
1958 static int
1959 ishex (int ch, int *val)
1960 {
1961 if ((ch >= 'a') && (ch <= 'f'))
1962 {
1963 *val = ch - 'a' + 10;
1964 return 1;
1965 }
1966 if ((ch >= 'A') && (ch <= 'F'))
1967 {
1968 *val = ch - 'A' + 10;
1969 return 1;
1970 }
1971 if ((ch >= '0') && (ch <= '9'))
1972 {
1973 *val = ch - '0';
1974 return 1;
1975 }
1976 return 0;
1977 }
1978
1979 static int
1980 stubhex (int ch)
1981 {
1982 if (ch >= 'a' && ch <= 'f')
1983 return ch - 'a' + 10;
1984 if (ch >= '0' && ch <= '9')
1985 return ch - '0';
1986 if (ch >= 'A' && ch <= 'F')
1987 return ch - 'A' + 10;
1988 return -1;
1989 }
1990
1991 static int
1992 stub_unpack_int (char *buff, int fieldlength)
1993 {
1994 int nibble;
1995 int retval = 0;
1996
1997 while (fieldlength)
1998 {
1999 nibble = stubhex (*buff++);
2000 retval |= nibble;
2001 fieldlength--;
2002 if (fieldlength)
2003 retval = retval << 4;
2004 }
2005 return retval;
2006 }
2007
2008 char *
2009 unpack_varlen_hex (char *buff, /* packet to parse */
2010 ULONGEST *result)
2011 {
2012 int nibble;
2013 ULONGEST retval = 0;
2014
2015 while (ishex (*buff, &nibble))
2016 {
2017 buff++;
2018 retval = retval << 4;
2019 retval |= nibble & 0x0f;
2020 }
2021 *result = retval;
2022 return buff;
2023 }
2024
2025 static char *
2026 unpack_nibble (char *buf, int *val)
2027 {
2028 *val = fromhex (*buf++);
2029 return buf;
2030 }
2031
2032 static char *
2033 pack_nibble (char *buf, int nibble)
2034 {
2035 *buf++ = hexchars[(nibble & 0x0f)];
2036 return buf;
2037 }
2038
2039 static char *
2040 pack_hex_byte (char *pkt, int byte)
2041 {
2042 *pkt++ = hexchars[(byte >> 4) & 0xf];
2043 *pkt++ = hexchars[(byte & 0xf)];
2044 return pkt;
2045 }
2046
2047 static char *
2048 unpack_byte (char *buf, int *value)
2049 {
2050 *value = stub_unpack_int (buf, 2);
2051 return buf + 2;
2052 }
2053
2054 static char *
2055 pack_int (char *buf, int value)
2056 {
2057 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2058 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2059 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2060 buf = pack_hex_byte (buf, (value & 0xff));
2061 return buf;
2062 }
2063
2064 static char *
2065 unpack_int (char *buf, int *value)
2066 {
2067 *value = stub_unpack_int (buf, 8);
2068 return buf + 8;
2069 }
2070
2071 #if 0 /* Currently unused, uncomment when needed. */
2072 static char *pack_string (char *pkt, char *string);
2073
2074 static char *
2075 pack_string (char *pkt, char *string)
2076 {
2077 char ch;
2078 int len;
2079
2080 len = strlen (string);
2081 if (len > 200)
2082 len = 200; /* Bigger than most GDB packets, junk??? */
2083 pkt = pack_hex_byte (pkt, len);
2084 while (len-- > 0)
2085 {
2086 ch = *string++;
2087 if ((ch == '\0') || (ch == '#'))
2088 ch = '*'; /* Protect encapsulation. */
2089 *pkt++ = ch;
2090 }
2091 return pkt;
2092 }
2093 #endif /* 0 (unused) */
2094
2095 static char *
2096 unpack_string (char *src, char *dest, int length)
2097 {
2098 while (length--)
2099 *dest++ = *src++;
2100 *dest = '\0';
2101 return src;
2102 }
2103
2104 static char *
2105 pack_threadid (char *pkt, threadref *id)
2106 {
2107 char *limit;
2108 unsigned char *altid;
2109
2110 altid = (unsigned char *) id;
2111 limit = pkt + BUF_THREAD_ID_SIZE;
2112 while (pkt < limit)
2113 pkt = pack_hex_byte (pkt, *altid++);
2114 return pkt;
2115 }
2116
2117
2118 static char *
2119 unpack_threadid (char *inbuf, threadref *id)
2120 {
2121 char *altref;
2122 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2123 int x, y;
2124
2125 altref = (char *) id;
2126
2127 while (inbuf < limit)
2128 {
2129 x = stubhex (*inbuf++);
2130 y = stubhex (*inbuf++);
2131 *altref++ = (x << 4) | y;
2132 }
2133 return inbuf;
2134 }
2135
2136 /* Externally, threadrefs are 64 bits but internally, they are still
2137 ints. This is due to a mismatch of specifications. We would like
2138 to use 64bit thread references internally. This is an adapter
2139 function. */
2140
2141 void
2142 int_to_threadref (threadref *id, int value)
2143 {
2144 unsigned char *scan;
2145
2146 scan = (unsigned char *) id;
2147 {
2148 int i = 4;
2149 while (i--)
2150 *scan++ = 0;
2151 }
2152 *scan++ = (value >> 24) & 0xff;
2153 *scan++ = (value >> 16) & 0xff;
2154 *scan++ = (value >> 8) & 0xff;
2155 *scan++ = (value & 0xff);
2156 }
2157
2158 static int
2159 threadref_to_int (threadref *ref)
2160 {
2161 int i, value = 0;
2162 unsigned char *scan;
2163
2164 scan = *ref;
2165 scan += 4;
2166 i = 4;
2167 while (i-- > 0)
2168 value = (value << 8) | ((*scan++) & 0xff);
2169 return value;
2170 }
2171
2172 static void
2173 copy_threadref (threadref *dest, threadref *src)
2174 {
2175 int i;
2176 unsigned char *csrc, *cdest;
2177
2178 csrc = (unsigned char *) src;
2179 cdest = (unsigned char *) dest;
2180 i = 8;
2181 while (i--)
2182 *cdest++ = *csrc++;
2183 }
2184
2185 static int
2186 threadmatch (threadref *dest, threadref *src)
2187 {
2188 /* Things are broken right now, so just assume we got a match. */
2189 #if 0
2190 unsigned char *srcp, *destp;
2191 int i, result;
2192 srcp = (char *) src;
2193 destp = (char *) dest;
2194
2195 result = 1;
2196 while (i-- > 0)
2197 result &= (*srcp++ == *destp++) ? 1 : 0;
2198 return result;
2199 #endif
2200 return 1;
2201 }
2202
2203 /*
2204 threadid:1, # always request threadid
2205 context_exists:2,
2206 display:4,
2207 unique_name:8,
2208 more_display:16
2209 */
2210
2211 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2212
2213 static char *
2214 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2215 {
2216 *pkt++ = 'q'; /* Info Query */
2217 *pkt++ = 'P'; /* process or thread info */
2218 pkt = pack_int (pkt, mode); /* mode */
2219 pkt = pack_threadid (pkt, id); /* threadid */
2220 *pkt = '\0'; /* terminate */
2221 return pkt;
2222 }
2223
2224 /* These values tag the fields in a thread info response packet. */
2225 /* Tagging the fields allows us to request specific fields and to
2226 add more fields as time goes by. */
2227
2228 #define TAG_THREADID 1 /* Echo the thread identifier. */
2229 #define TAG_EXISTS 2 /* Is this process defined enough to
2230 fetch registers and its stack? */
2231 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2232 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2233 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2234 the process. */
2235
2236 static int
2237 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2238 struct gdb_ext_thread_info *info)
2239 {
2240 struct remote_state *rs = get_remote_state ();
2241 int mask, length;
2242 int tag;
2243 threadref ref;
2244 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2245 int retval = 1;
2246
2247 /* info->threadid = 0; FIXME: implement zero_threadref. */
2248 info->active = 0;
2249 info->display[0] = '\0';
2250 info->shortname[0] = '\0';
2251 info->more_display[0] = '\0';
2252
2253 /* Assume the characters indicating the packet type have been
2254 stripped. */
2255 pkt = unpack_int (pkt, &mask); /* arg mask */
2256 pkt = unpack_threadid (pkt, &ref);
2257
2258 if (mask == 0)
2259 warning (_("Incomplete response to threadinfo request."));
2260 if (!threadmatch (&ref, expectedref))
2261 { /* This is an answer to a different request. */
2262 warning (_("ERROR RMT Thread info mismatch."));
2263 return 0;
2264 }
2265 copy_threadref (&info->threadid, &ref);
2266
2267 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2268
2269 /* Packets are terminated with nulls. */
2270 while ((pkt < limit) && mask && *pkt)
2271 {
2272 pkt = unpack_int (pkt, &tag); /* tag */
2273 pkt = unpack_byte (pkt, &length); /* length */
2274 if (!(tag & mask)) /* Tags out of synch with mask. */
2275 {
2276 warning (_("ERROR RMT: threadinfo tag mismatch."));
2277 retval = 0;
2278 break;
2279 }
2280 if (tag == TAG_THREADID)
2281 {
2282 if (length != 16)
2283 {
2284 warning (_("ERROR RMT: length of threadid is not 16."));
2285 retval = 0;
2286 break;
2287 }
2288 pkt = unpack_threadid (pkt, &ref);
2289 mask = mask & ~TAG_THREADID;
2290 continue;
2291 }
2292 if (tag == TAG_EXISTS)
2293 {
2294 info->active = stub_unpack_int (pkt, length);
2295 pkt += length;
2296 mask = mask & ~(TAG_EXISTS);
2297 if (length > 8)
2298 {
2299 warning (_("ERROR RMT: 'exists' length too long."));
2300 retval = 0;
2301 break;
2302 }
2303 continue;
2304 }
2305 if (tag == TAG_THREADNAME)
2306 {
2307 pkt = unpack_string (pkt, &info->shortname[0], length);
2308 mask = mask & ~TAG_THREADNAME;
2309 continue;
2310 }
2311 if (tag == TAG_DISPLAY)
2312 {
2313 pkt = unpack_string (pkt, &info->display[0], length);
2314 mask = mask & ~TAG_DISPLAY;
2315 continue;
2316 }
2317 if (tag == TAG_MOREDISPLAY)
2318 {
2319 pkt = unpack_string (pkt, &info->more_display[0], length);
2320 mask = mask & ~TAG_MOREDISPLAY;
2321 continue;
2322 }
2323 warning (_("ERROR RMT: unknown thread info tag."));
2324 break; /* Not a tag we know about. */
2325 }
2326 return retval;
2327 }
2328
2329 static int
2330 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2331 struct gdb_ext_thread_info *info)
2332 {
2333 struct remote_state *rs = get_remote_state ();
2334 int result;
2335
2336 pack_threadinfo_request (rs->buf, fieldset, threadid);
2337 putpkt (rs->buf);
2338 getpkt (&rs->buf, &rs->buf_size, 0);
2339
2340 if (rs->buf[0] == '\0')
2341 return 0;
2342
2343 result = remote_unpack_thread_info_response (rs->buf + 2,
2344 threadid, info);
2345 return result;
2346 }
2347
2348 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2349
2350 static char *
2351 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2352 threadref *nextthread)
2353 {
2354 *pkt++ = 'q'; /* info query packet */
2355 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2356 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2357 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2358 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2359 *pkt = '\0';
2360 return pkt;
2361 }
2362
2363 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2364
2365 static int
2366 parse_threadlist_response (char *pkt, int result_limit,
2367 threadref *original_echo, threadref *resultlist,
2368 int *doneflag)
2369 {
2370 struct remote_state *rs = get_remote_state ();
2371 char *limit;
2372 int count, resultcount, done;
2373
2374 resultcount = 0;
2375 /* Assume the 'q' and 'M chars have been stripped. */
2376 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2377 /* done parse past here */
2378 pkt = unpack_byte (pkt, &count); /* count field */
2379 pkt = unpack_nibble (pkt, &done);
2380 /* The first threadid is the argument threadid. */
2381 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2382 while ((count-- > 0) && (pkt < limit))
2383 {
2384 pkt = unpack_threadid (pkt, resultlist++);
2385 if (resultcount++ >= result_limit)
2386 break;
2387 }
2388 if (doneflag)
2389 *doneflag = done;
2390 return resultcount;
2391 }
2392
2393 static int
2394 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2395 int *done, int *result_count, threadref *threadlist)
2396 {
2397 struct remote_state *rs = get_remote_state ();
2398 static threadref echo_nextthread;
2399 int result = 1;
2400
2401 /* Trancate result limit to be smaller than the packet size. */
2402 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2403 >= get_remote_packet_size ())
2404 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2405
2406 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2407 putpkt (rs->buf);
2408 getpkt (&rs->buf, &rs->buf_size, 0);
2409
2410 if (*rs->buf == '\0')
2411 return 0;
2412 else
2413 *result_count =
2414 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2415 threadlist, done);
2416
2417 if (!threadmatch (&echo_nextthread, nextthread))
2418 {
2419 /* FIXME: This is a good reason to drop the packet. */
2420 /* Possably, there is a duplicate response. */
2421 /* Possabilities :
2422 retransmit immediatly - race conditions
2423 retransmit after timeout - yes
2424 exit
2425 wait for packet, then exit
2426 */
2427 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2428 return 0; /* I choose simply exiting. */
2429 }
2430 if (*result_count <= 0)
2431 {
2432 if (*done != 1)
2433 {
2434 warning (_("RMT ERROR : failed to get remote thread list."));
2435 result = 0;
2436 }
2437 return result; /* break; */
2438 }
2439 if (*result_count > result_limit)
2440 {
2441 *result_count = 0;
2442 warning (_("RMT ERROR: threadlist response longer than requested."));
2443 return 0;
2444 }
2445 return result;
2446 }
2447
2448 /* This is the interface between remote and threads, remotes upper
2449 interface. */
2450
2451 /* remote_find_new_threads retrieves the thread list and for each
2452 thread in the list, looks up the thread in GDB's internal list,
2453 adding the thread if it does not already exist. This involves
2454 getting partial thread lists from the remote target so, polling the
2455 quit_flag is required. */
2456
2457
2458 /* About this many threadisds fit in a packet. */
2459
2460 #define MAXTHREADLISTRESULTS 32
2461
2462 static int
2463 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2464 int looplimit)
2465 {
2466 int done, i, result_count;
2467 int startflag = 1;
2468 int result = 1;
2469 int loopcount = 0;
2470 static threadref nextthread;
2471 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2472
2473 done = 0;
2474 while (!done)
2475 {
2476 if (loopcount++ > looplimit)
2477 {
2478 result = 0;
2479 warning (_("Remote fetch threadlist -infinite loop-."));
2480 break;
2481 }
2482 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2483 &done, &result_count, resultthreadlist))
2484 {
2485 result = 0;
2486 break;
2487 }
2488 /* Clear for later iterations. */
2489 startflag = 0;
2490 /* Setup to resume next batch of thread references, set nextthread. */
2491 if (result_count >= 1)
2492 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2493 i = 0;
2494 while (result_count--)
2495 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2496 break;
2497 }
2498 return result;
2499 }
2500
2501 static int
2502 remote_newthread_step (threadref *ref, void *context)
2503 {
2504 int pid = ptid_get_pid (inferior_ptid);
2505 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
2506
2507 if (!in_thread_list (ptid))
2508 add_thread (ptid);
2509 return 1; /* continue iterator */
2510 }
2511
2512 #define CRAZY_MAX_THREADS 1000
2513
2514 static ptid_t
2515 remote_current_thread (ptid_t oldpid)
2516 {
2517 struct remote_state *rs = get_remote_state ();
2518
2519 putpkt ("qC");
2520 getpkt (&rs->buf, &rs->buf_size, 0);
2521 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2522 return read_ptid (&rs->buf[2], NULL);
2523 else
2524 return oldpid;
2525 }
2526
2527 /* Find new threads for info threads command.
2528 * Original version, using John Metzler's thread protocol.
2529 */
2530
2531 static void
2532 remote_find_new_threads (void)
2533 {
2534 remote_threadlist_iterator (remote_newthread_step, 0,
2535 CRAZY_MAX_THREADS);
2536 }
2537
2538 #if defined(HAVE_LIBEXPAT)
2539
2540 typedef struct thread_item
2541 {
2542 ptid_t ptid;
2543 char *extra;
2544 int core;
2545 } thread_item_t;
2546 DEF_VEC_O(thread_item_t);
2547
2548 struct threads_parsing_context
2549 {
2550 VEC (thread_item_t) *items;
2551 };
2552
2553 static void
2554 start_thread (struct gdb_xml_parser *parser,
2555 const struct gdb_xml_element *element,
2556 void *user_data, VEC(gdb_xml_value_s) *attributes)
2557 {
2558 struct threads_parsing_context *data = user_data;
2559
2560 struct thread_item item;
2561 char *id;
2562 struct gdb_xml_value *attr;
2563
2564 id = xml_find_attribute (attributes, "id")->value;
2565 item.ptid = read_ptid (id, NULL);
2566
2567 attr = xml_find_attribute (attributes, "core");
2568 if (attr != NULL)
2569 item.core = *(ULONGEST *) attr->value;
2570 else
2571 item.core = -1;
2572
2573 item.extra = 0;
2574
2575 VEC_safe_push (thread_item_t, data->items, &item);
2576 }
2577
2578 static void
2579 end_thread (struct gdb_xml_parser *parser,
2580 const struct gdb_xml_element *element,
2581 void *user_data, const char *body_text)
2582 {
2583 struct threads_parsing_context *data = user_data;
2584
2585 if (body_text && *body_text)
2586 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
2587 }
2588
2589 const struct gdb_xml_attribute thread_attributes[] = {
2590 { "id", GDB_XML_AF_NONE, NULL, NULL },
2591 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
2592 { NULL, GDB_XML_AF_NONE, NULL, NULL }
2593 };
2594
2595 const struct gdb_xml_element thread_children[] = {
2596 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2597 };
2598
2599 const struct gdb_xml_element threads_children[] = {
2600 { "thread", thread_attributes, thread_children,
2601 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
2602 start_thread, end_thread },
2603 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2604 };
2605
2606 const struct gdb_xml_element threads_elements[] = {
2607 { "threads", NULL, threads_children,
2608 GDB_XML_EF_NONE, NULL, NULL },
2609 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2610 };
2611
2612 /* Discard the contents of the constructed thread info context. */
2613
2614 static void
2615 clear_threads_parsing_context (void *p)
2616 {
2617 struct threads_parsing_context *context = p;
2618 int i;
2619 struct thread_item *item;
2620
2621 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2622 xfree (item->extra);
2623
2624 VEC_free (thread_item_t, context->items);
2625 }
2626
2627 #endif
2628
2629 /*
2630 * Find all threads for info threads command.
2631 * Uses new thread protocol contributed by Cisco.
2632 * Falls back and attempts to use the older method (above)
2633 * if the target doesn't respond to the new method.
2634 */
2635
2636 static void
2637 remote_threads_info (struct target_ops *ops)
2638 {
2639 struct remote_state *rs = get_remote_state ();
2640 char *bufp;
2641 ptid_t new_thread;
2642
2643 if (remote_desc == 0) /* paranoia */
2644 error (_("Command can only be used when connected to the remote target."));
2645
2646 #if defined(HAVE_LIBEXPAT)
2647 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2648 {
2649 char *xml = target_read_stralloc (&current_target,
2650 TARGET_OBJECT_THREADS, NULL);
2651
2652 struct cleanup *back_to = make_cleanup (xfree, xml);
2653
2654 if (xml && *xml)
2655 {
2656 struct threads_parsing_context context;
2657
2658 context.items = NULL;
2659 make_cleanup (clear_threads_parsing_context, &context);
2660
2661 if (gdb_xml_parse_quick (_("threads"), "threads.dtd",
2662 threads_elements, xml, &context) == 0)
2663 {
2664 int i;
2665 struct thread_item *item;
2666
2667 for (i = 0;
2668 VEC_iterate (thread_item_t, context.items, i, item);
2669 ++i)
2670 {
2671 if (!ptid_equal (item->ptid, null_ptid))
2672 {
2673 struct private_thread_info *info;
2674 /* In non-stop mode, we assume new found threads
2675 are running until proven otherwise with a
2676 stop reply. In all-stop, we can only get
2677 here if all threads are stopped. */
2678 int running = non_stop ? 1 : 0;
2679
2680 remote_notice_new_inferior (item->ptid, running);
2681
2682 info = demand_private_info (item->ptid);
2683 info->core = item->core;
2684 info->extra = item->extra;
2685 item->extra = NULL;
2686 }
2687 }
2688 }
2689 }
2690
2691 do_cleanups (back_to);
2692 return;
2693 }
2694 #endif
2695
2696 if (use_threadinfo_query)
2697 {
2698 putpkt ("qfThreadInfo");
2699 getpkt (&rs->buf, &rs->buf_size, 0);
2700 bufp = rs->buf;
2701 if (bufp[0] != '\0') /* q packet recognized */
2702 {
2703 while (*bufp++ == 'm') /* reply contains one or more TID */
2704 {
2705 do
2706 {
2707 new_thread = read_ptid (bufp, &bufp);
2708 if (!ptid_equal (new_thread, null_ptid))
2709 {
2710 /* In non-stop mode, we assume new found threads
2711 are running until proven otherwise with a
2712 stop reply. In all-stop, we can only get
2713 here if all threads are stopped. */
2714 int running = non_stop ? 1 : 0;
2715
2716 remote_notice_new_inferior (new_thread, running);
2717 }
2718 }
2719 while (*bufp++ == ','); /* comma-separated list */
2720 putpkt ("qsThreadInfo");
2721 getpkt (&rs->buf, &rs->buf_size, 0);
2722 bufp = rs->buf;
2723 }
2724 return; /* done */
2725 }
2726 }
2727
2728 /* Only qfThreadInfo is supported in non-stop mode. */
2729 if (non_stop)
2730 return;
2731
2732 /* Else fall back to old method based on jmetzler protocol. */
2733 use_threadinfo_query = 0;
2734 remote_find_new_threads ();
2735 return;
2736 }
2737
2738 /*
2739 * Collect a descriptive string about the given thread.
2740 * The target may say anything it wants to about the thread
2741 * (typically info about its blocked / runnable state, name, etc.).
2742 * This string will appear in the info threads display.
2743 *
2744 * Optional: targets are not required to implement this function.
2745 */
2746
2747 static char *
2748 remote_threads_extra_info (struct thread_info *tp)
2749 {
2750 struct remote_state *rs = get_remote_state ();
2751 int result;
2752 int set;
2753 threadref id;
2754 struct gdb_ext_thread_info threadinfo;
2755 static char display_buf[100]; /* arbitrary... */
2756 int n = 0; /* position in display_buf */
2757
2758 if (remote_desc == 0) /* paranoia */
2759 internal_error (__FILE__, __LINE__,
2760 _("remote_threads_extra_info"));
2761
2762 if (ptid_equal (tp->ptid, magic_null_ptid)
2763 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2764 /* This is the main thread which was added by GDB. The remote
2765 server doesn't know about it. */
2766 return NULL;
2767
2768 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2769 {
2770 struct thread_info *info = find_thread_ptid (tp->ptid);
2771
2772 if (info && info->private)
2773 return info->private->extra;
2774 else
2775 return NULL;
2776 }
2777
2778 if (use_threadextra_query)
2779 {
2780 char *b = rs->buf;
2781 char *endb = rs->buf + get_remote_packet_size ();
2782
2783 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2784 b += strlen (b);
2785 write_ptid (b, endb, tp->ptid);
2786
2787 putpkt (rs->buf);
2788 getpkt (&rs->buf, &rs->buf_size, 0);
2789 if (rs->buf[0] != 0)
2790 {
2791 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2792 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
2793 display_buf [result] = '\0';
2794 return display_buf;
2795 }
2796 }
2797
2798 /* If the above query fails, fall back to the old method. */
2799 use_threadextra_query = 0;
2800 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2801 | TAG_MOREDISPLAY | TAG_DISPLAY;
2802 int_to_threadref (&id, ptid_get_tid (tp->ptid));
2803 if (remote_get_threadinfo (&id, set, &threadinfo))
2804 if (threadinfo.active)
2805 {
2806 if (*threadinfo.shortname)
2807 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
2808 " Name: %s,", threadinfo.shortname);
2809 if (*threadinfo.display)
2810 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2811 " State: %s,", threadinfo.display);
2812 if (*threadinfo.more_display)
2813 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2814 " Priority: %s", threadinfo.more_display);
2815
2816 if (n > 0)
2817 {
2818 /* For purely cosmetic reasons, clear up trailing commas. */
2819 if (',' == display_buf[n-1])
2820 display_buf[n-1] = ' ';
2821 return display_buf;
2822 }
2823 }
2824 return NULL;
2825 }
2826 \f
2827
2828 static int
2829 remote_static_tracepoint_marker_at (CORE_ADDR addr,
2830 struct static_tracepoint_marker *marker)
2831 {
2832 struct remote_state *rs = get_remote_state ();
2833 char *p = rs->buf;
2834
2835 sprintf (p, "qTSTMat:");
2836 p += strlen (p);
2837 p += hexnumstr (p, addr);
2838 putpkt (rs->buf);
2839 getpkt (&rs->buf, &rs->buf_size, 0);
2840 p = rs->buf;
2841
2842 if (*p == 'E')
2843 error (_("Remote failure reply: %s"), p);
2844
2845 if (*p++ == 'm')
2846 {
2847 parse_static_tracepoint_marker_definition (p, &p, marker);
2848 return 1;
2849 }
2850
2851 return 0;
2852 }
2853
2854 static VEC(static_tracepoint_marker_p) *
2855 remote_static_tracepoint_markers_by_strid (const char *strid)
2856 {
2857 struct remote_state *rs = get_remote_state ();
2858 VEC(static_tracepoint_marker_p) *markers = NULL;
2859 struct static_tracepoint_marker *marker = NULL;
2860 struct cleanup *old_chain;
2861 char *p;
2862
2863 /* Ask for a first packet of static tracepoint marker
2864 definition. */
2865 putpkt ("qTfSTM");
2866 getpkt (&rs->buf, &rs->buf_size, 0);
2867 p = rs->buf;
2868 if (*p == 'E')
2869 error (_("Remote failure reply: %s"), p);
2870
2871 old_chain = make_cleanup (free_current_marker, &marker);
2872
2873 while (*p++ == 'm')
2874 {
2875 if (marker == NULL)
2876 marker = XCNEW (struct static_tracepoint_marker);
2877
2878 do
2879 {
2880 parse_static_tracepoint_marker_definition (p, &p, marker);
2881
2882 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
2883 {
2884 VEC_safe_push (static_tracepoint_marker_p,
2885 markers, marker);
2886 marker = NULL;
2887 }
2888 else
2889 {
2890 release_static_tracepoint_marker (marker);
2891 memset (marker, 0, sizeof (*marker));
2892 }
2893 }
2894 while (*p++ == ','); /* comma-separated list */
2895 /* Ask for another packet of static tracepoint definition. */
2896 putpkt ("qTsSTM");
2897 getpkt (&rs->buf, &rs->buf_size, 0);
2898 p = rs->buf;
2899 }
2900
2901 do_cleanups (old_chain);
2902 return markers;
2903 }
2904
2905 \f
2906 /* Implement the to_get_ada_task_ptid function for the remote targets. */
2907
2908 static ptid_t
2909 remote_get_ada_task_ptid (long lwp, long thread)
2910 {
2911 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
2912 }
2913 \f
2914
2915 /* Restart the remote side; this is an extended protocol operation. */
2916
2917 static void
2918 extended_remote_restart (void)
2919 {
2920 struct remote_state *rs = get_remote_state ();
2921
2922 /* Send the restart command; for reasons I don't understand the
2923 remote side really expects a number after the "R". */
2924 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
2925 putpkt (rs->buf);
2926
2927 remote_fileio_reset ();
2928 }
2929 \f
2930 /* Clean up connection to a remote debugger. */
2931
2932 static void
2933 remote_close (int quitting)
2934 {
2935 if (remote_desc == NULL)
2936 return; /* already closed */
2937
2938 /* Make sure we leave stdin registered in the event loop, and we
2939 don't leave the async SIGINT signal handler installed. */
2940 remote_terminal_ours ();
2941
2942 serial_close (remote_desc);
2943 remote_desc = NULL;
2944
2945 /* We don't have a connection to the remote stub anymore. Get rid
2946 of all the inferiors and their threads we were controlling.
2947 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
2948 will be unable to find the thread corresponding to (pid, 0, 0). */
2949 inferior_ptid = null_ptid;
2950 discard_all_inferiors ();
2951
2952 /* We're no longer interested in any of these events. */
2953 discard_pending_stop_replies (-1);
2954
2955 if (remote_async_inferior_event_token)
2956 delete_async_event_handler (&remote_async_inferior_event_token);
2957 if (remote_async_get_pending_events_token)
2958 delete_async_event_handler (&remote_async_get_pending_events_token);
2959 }
2960
2961 /* Query the remote side for the text, data and bss offsets. */
2962
2963 static void
2964 get_offsets (void)
2965 {
2966 struct remote_state *rs = get_remote_state ();
2967 char *buf;
2968 char *ptr;
2969 int lose, num_segments = 0, do_sections, do_segments;
2970 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
2971 struct section_offsets *offs;
2972 struct symfile_segment_data *data;
2973
2974 if (symfile_objfile == NULL)
2975 return;
2976
2977 putpkt ("qOffsets");
2978 getpkt (&rs->buf, &rs->buf_size, 0);
2979 buf = rs->buf;
2980
2981 if (buf[0] == '\000')
2982 return; /* Return silently. Stub doesn't support
2983 this command. */
2984 if (buf[0] == 'E')
2985 {
2986 warning (_("Remote failure reply: %s"), buf);
2987 return;
2988 }
2989
2990 /* Pick up each field in turn. This used to be done with scanf, but
2991 scanf will make trouble if CORE_ADDR size doesn't match
2992 conversion directives correctly. The following code will work
2993 with any size of CORE_ADDR. */
2994 text_addr = data_addr = bss_addr = 0;
2995 ptr = buf;
2996 lose = 0;
2997
2998 if (strncmp (ptr, "Text=", 5) == 0)
2999 {
3000 ptr += 5;
3001 /* Don't use strtol, could lose on big values. */
3002 while (*ptr && *ptr != ';')
3003 text_addr = (text_addr << 4) + fromhex (*ptr++);
3004
3005 if (strncmp (ptr, ";Data=", 6) == 0)
3006 {
3007 ptr += 6;
3008 while (*ptr && *ptr != ';')
3009 data_addr = (data_addr << 4) + fromhex (*ptr++);
3010 }
3011 else
3012 lose = 1;
3013
3014 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
3015 {
3016 ptr += 5;
3017 while (*ptr && *ptr != ';')
3018 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3019
3020 if (bss_addr != data_addr)
3021 warning (_("Target reported unsupported offsets: %s"), buf);
3022 }
3023 else
3024 lose = 1;
3025 }
3026 else if (strncmp (ptr, "TextSeg=", 8) == 0)
3027 {
3028 ptr += 8;
3029 /* Don't use strtol, could lose on big values. */
3030 while (*ptr && *ptr != ';')
3031 text_addr = (text_addr << 4) + fromhex (*ptr++);
3032 num_segments = 1;
3033
3034 if (strncmp (ptr, ";DataSeg=", 9) == 0)
3035 {
3036 ptr += 9;
3037 while (*ptr && *ptr != ';')
3038 data_addr = (data_addr << 4) + fromhex (*ptr++);
3039 num_segments++;
3040 }
3041 }
3042 else
3043 lose = 1;
3044
3045 if (lose)
3046 error (_("Malformed response to offset query, %s"), buf);
3047 else if (*ptr != '\0')
3048 warning (_("Target reported unsupported offsets: %s"), buf);
3049
3050 offs = ((struct section_offsets *)
3051 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3052 memcpy (offs, symfile_objfile->section_offsets,
3053 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3054
3055 data = get_symfile_segment_data (symfile_objfile->obfd);
3056 do_segments = (data != NULL);
3057 do_sections = num_segments == 0;
3058
3059 if (num_segments > 0)
3060 {
3061 segments[0] = text_addr;
3062 segments[1] = data_addr;
3063 }
3064 /* If we have two segments, we can still try to relocate everything
3065 by assuming that the .text and .data offsets apply to the whole
3066 text and data segments. Convert the offsets given in the packet
3067 to base addresses for symfile_map_offsets_to_segments. */
3068 else if (data && data->num_segments == 2)
3069 {
3070 segments[0] = data->segment_bases[0] + text_addr;
3071 segments[1] = data->segment_bases[1] + data_addr;
3072 num_segments = 2;
3073 }
3074 /* If the object file has only one segment, assume that it is text
3075 rather than data; main programs with no writable data are rare,
3076 but programs with no code are useless. Of course the code might
3077 have ended up in the data segment... to detect that we would need
3078 the permissions here. */
3079 else if (data && data->num_segments == 1)
3080 {
3081 segments[0] = data->segment_bases[0] + text_addr;
3082 num_segments = 1;
3083 }
3084 /* There's no way to relocate by segment. */
3085 else
3086 do_segments = 0;
3087
3088 if (do_segments)
3089 {
3090 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3091 offs, num_segments, segments);
3092
3093 if (ret == 0 && !do_sections)
3094 error (_("Can not handle qOffsets TextSeg "
3095 "response with this symbol file"));
3096
3097 if (ret > 0)
3098 do_sections = 0;
3099 }
3100
3101 if (data)
3102 free_symfile_segment_data (data);
3103
3104 if (do_sections)
3105 {
3106 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3107
3108 /* This is a temporary kludge to force data and bss to use the
3109 same offsets because that's what nlmconv does now. The real
3110 solution requires changes to the stub and remote.c that I
3111 don't have time to do right now. */
3112
3113 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3114 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3115 }
3116
3117 objfile_relocate (symfile_objfile, offs);
3118 }
3119
3120 /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
3121 threads we know are stopped already. This is used during the
3122 initial remote connection in non-stop mode --- threads that are
3123 reported as already being stopped are left stopped. */
3124
3125 static int
3126 set_stop_requested_callback (struct thread_info *thread, void *data)
3127 {
3128 /* If we have a stop reply for this thread, it must be stopped. */
3129 if (peek_stop_reply (thread->ptid))
3130 set_stop_requested (thread->ptid, 1);
3131
3132 return 0;
3133 }
3134
3135 /* Send interrupt_sequence to remote target. */
3136 static void
3137 send_interrupt_sequence (void)
3138 {
3139 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3140 serial_write (remote_desc, "\x03", 1);
3141 else if (interrupt_sequence_mode == interrupt_sequence_break)
3142 serial_send_break (remote_desc);
3143 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3144 {
3145 serial_send_break (remote_desc);
3146 serial_write (remote_desc, "g", 1);
3147 }
3148 else
3149 internal_error (__FILE__, __LINE__,
3150 _("Invalid value for interrupt_sequence_mode: %s."),
3151 interrupt_sequence_mode);
3152 }
3153
3154 /* Query the remote target for which is the current thread/process,
3155 add it to our tables, and update INFERIOR_PTID. The caller is
3156 responsible for setting the state such that the remote end is ready
3157 to return the current thread. */
3158
3159 static void
3160 add_current_inferior_and_thread (void)
3161 {
3162 struct remote_state *rs = get_remote_state ();
3163 int fake_pid_p = 0;
3164 ptid_t ptid;
3165
3166 inferior_ptid = null_ptid;
3167
3168 /* Now, if we have thread information, update inferior_ptid. */
3169 ptid = remote_current_thread (inferior_ptid);
3170 if (!ptid_equal (ptid, null_ptid))
3171 {
3172 if (!remote_multi_process_p (rs))
3173 fake_pid_p = 1;
3174
3175 inferior_ptid = ptid;
3176 }
3177 else
3178 {
3179 /* Without this, some commands which require an active target
3180 (such as kill) won't work. This variable serves (at least)
3181 double duty as both the pid of the target process (if it has
3182 such), and as a flag indicating that a target is active. */
3183 inferior_ptid = magic_null_ptid;
3184 fake_pid_p = 1;
3185 }
3186
3187 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1);
3188
3189 /* Add the main thread. */
3190 add_thread_silent (inferior_ptid);
3191 }
3192
3193 static void
3194 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
3195 {
3196 struct remote_state *rs = get_remote_state ();
3197 struct packet_config *noack_config;
3198 char *wait_status = NULL;
3199
3200 immediate_quit++; /* Allow user to interrupt it. */
3201
3202 if (interrupt_on_connect)
3203 send_interrupt_sequence ();
3204
3205 /* Ack any packet which the remote side has already sent. */
3206 serial_write (remote_desc, "+", 1);
3207
3208 /* The first packet we send to the target is the optional "supported
3209 packets" request. If the target can answer this, it will tell us
3210 which later probes to skip. */
3211 remote_query_supported ();
3212
3213 /* If the stub wants to get a QAllow, compose one and send it. */
3214 if (remote_protocol_packets[PACKET_QAllow].support != PACKET_DISABLE)
3215 remote_set_permissions ();
3216
3217 /* Next, we possibly activate noack mode.
3218
3219 If the QStartNoAckMode packet configuration is set to AUTO,
3220 enable noack mode if the stub reported a wish for it with
3221 qSupported.
3222
3223 If set to TRUE, then enable noack mode even if the stub didn't
3224 report it in qSupported. If the stub doesn't reply OK, the
3225 session ends with an error.
3226
3227 If FALSE, then don't activate noack mode, regardless of what the
3228 stub claimed should be the default with qSupported. */
3229
3230 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
3231
3232 if (noack_config->detect == AUTO_BOOLEAN_TRUE
3233 || (noack_config->detect == AUTO_BOOLEAN_AUTO
3234 && noack_config->support == PACKET_ENABLE))
3235 {
3236 putpkt ("QStartNoAckMode");
3237 getpkt (&rs->buf, &rs->buf_size, 0);
3238 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
3239 rs->noack_mode = 1;
3240 }
3241
3242 if (extended_p)
3243 {
3244 /* Tell the remote that we are using the extended protocol. */
3245 putpkt ("!");
3246 getpkt (&rs->buf, &rs->buf_size, 0);
3247 }
3248
3249 /* Next, if the target can specify a description, read it. We do
3250 this before anything involving memory or registers. */
3251 target_find_description ();
3252
3253 /* Next, now that we know something about the target, update the
3254 address spaces in the program spaces. */
3255 update_address_spaces ();
3256
3257 /* On OSs where the list of libraries is global to all
3258 processes, we fetch them early. */
3259 if (gdbarch_has_global_solist (target_gdbarch))
3260 solib_add (NULL, from_tty, target, auto_solib_add);
3261
3262 if (non_stop)
3263 {
3264 if (!rs->non_stop_aware)
3265 error (_("Non-stop mode requested, but remote "
3266 "does not support non-stop"));
3267
3268 putpkt ("QNonStop:1");
3269 getpkt (&rs->buf, &rs->buf_size, 0);
3270
3271 if (strcmp (rs->buf, "OK") != 0)
3272 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
3273
3274 /* Find about threads and processes the stub is already
3275 controlling. We default to adding them in the running state.
3276 The '?' query below will then tell us about which threads are
3277 stopped. */
3278 remote_threads_info (target);
3279 }
3280 else if (rs->non_stop_aware)
3281 {
3282 /* Don't assume that the stub can operate in all-stop mode.
3283 Request it explicitely. */
3284 putpkt ("QNonStop:0");
3285 getpkt (&rs->buf, &rs->buf_size, 0);
3286
3287 if (strcmp (rs->buf, "OK") != 0)
3288 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
3289 }
3290
3291 /* Check whether the target is running now. */
3292 putpkt ("?");
3293 getpkt (&rs->buf, &rs->buf_size, 0);
3294
3295 if (!non_stop)
3296 {
3297 ptid_t ptid;
3298 int fake_pid_p = 0;
3299 struct inferior *inf;
3300
3301 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
3302 {
3303 if (!extended_p)
3304 error (_("The target is not running (try extended-remote?)"));
3305
3306 /* We're connected, but not running. Drop out before we
3307 call start_remote. */
3308 return;
3309 }
3310 else
3311 {
3312 /* Save the reply for later. */
3313 wait_status = alloca (strlen (rs->buf) + 1);
3314 strcpy (wait_status, rs->buf);
3315 }
3316
3317 /* Let the stub know that we want it to return the thread. */
3318 set_continue_thread (minus_one_ptid);
3319
3320 add_current_inferior_and_thread ();
3321
3322 /* init_wait_for_inferior should be called before get_offsets in order
3323 to manage `inserted' flag in bp loc in a correct state.
3324 breakpoint_init_inferior, called from init_wait_for_inferior, set
3325 `inserted' flag to 0, while before breakpoint_re_set, called from
3326 start_remote, set `inserted' flag to 1. In the initialization of
3327 inferior, breakpoint_init_inferior should be called first, and then
3328 breakpoint_re_set can be called. If this order is broken, state of
3329 `inserted' flag is wrong, and cause some problems on breakpoint
3330 manipulation. */
3331 init_wait_for_inferior ();
3332
3333 get_offsets (); /* Get text, data & bss offsets. */
3334
3335 /* If we could not find a description using qXfer, and we know
3336 how to do it some other way, try again. This is not
3337 supported for non-stop; it could be, but it is tricky if
3338 there are no stopped threads when we connect. */
3339 if (remote_read_description_p (target)
3340 && gdbarch_target_desc (target_gdbarch) == NULL)
3341 {
3342 target_clear_description ();
3343 target_find_description ();
3344 }
3345
3346 /* Use the previously fetched status. */
3347 gdb_assert (wait_status != NULL);
3348 strcpy (rs->buf, wait_status);
3349 rs->cached_wait_status = 1;
3350
3351 immediate_quit--;
3352 start_remote (from_tty); /* Initialize gdb process mechanisms. */
3353 }
3354 else
3355 {
3356 /* Clear WFI global state. Do this before finding about new
3357 threads and inferiors, and setting the current inferior.
3358 Otherwise we would clear the proceed status of the current
3359 inferior when we want its stop_soon state to be preserved
3360 (see notice_new_inferior). */
3361 init_wait_for_inferior ();
3362
3363 /* In non-stop, we will either get an "OK", meaning that there
3364 are no stopped threads at this time; or, a regular stop
3365 reply. In the latter case, there may be more than one thread
3366 stopped --- we pull them all out using the vStopped
3367 mechanism. */
3368 if (strcmp (rs->buf, "OK") != 0)
3369 {
3370 struct stop_reply *stop_reply;
3371 struct cleanup *old_chain;
3372
3373 stop_reply = stop_reply_xmalloc ();
3374 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
3375
3376 remote_parse_stop_reply (rs->buf, stop_reply);
3377 discard_cleanups (old_chain);
3378
3379 /* get_pending_stop_replies acks this one, and gets the rest
3380 out. */
3381 pending_stop_reply = stop_reply;
3382 remote_get_pending_stop_replies ();
3383
3384 /* Make sure that threads that were stopped remain
3385 stopped. */
3386 iterate_over_threads (set_stop_requested_callback, NULL);
3387 }
3388
3389 if (target_can_async_p ())
3390 target_async (inferior_event_handler, 0);
3391
3392 if (thread_count () == 0)
3393 {
3394 if (!extended_p)
3395 error (_("The target is not running (try extended-remote?)"));
3396
3397 /* We're connected, but not running. Drop out before we
3398 call start_remote. */
3399 return;
3400 }
3401
3402 /* Let the stub know that we want it to return the thread. */
3403
3404 /* Force the stub to choose a thread. */
3405 set_general_thread (null_ptid);
3406
3407 /* Query it. */
3408 inferior_ptid = remote_current_thread (minus_one_ptid);
3409 if (ptid_equal (inferior_ptid, minus_one_ptid))
3410 error (_("remote didn't report the current thread in non-stop mode"));
3411
3412 get_offsets (); /* Get text, data & bss offsets. */
3413
3414 /* In non-stop mode, any cached wait status will be stored in
3415 the stop reply queue. */
3416 gdb_assert (wait_status == NULL);
3417
3418 /* Report all signals during attach/startup. */
3419 remote_pass_signals (0, NULL);
3420 }
3421
3422 /* If we connected to a live target, do some additional setup. */
3423 if (target_has_execution)
3424 {
3425 if (exec_bfd) /* No use without an exec file. */
3426 remote_check_symbols (symfile_objfile);
3427 }
3428
3429 /* Possibly the target has been engaged in a trace run started
3430 previously; find out where things are at. */
3431 if (remote_get_trace_status (current_trace_status ()) != -1)
3432 {
3433 struct uploaded_tp *uploaded_tps = NULL;
3434 struct uploaded_tsv *uploaded_tsvs = NULL;
3435
3436 if (current_trace_status ()->running)
3437 printf_filtered (_("Trace is already running on the target.\n"));
3438
3439 /* Get trace state variables first, they may be checked when
3440 parsing uploaded commands. */
3441
3442 remote_upload_trace_state_variables (&uploaded_tsvs);
3443
3444 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3445
3446 remote_upload_tracepoints (&uploaded_tps);
3447
3448 merge_uploaded_tracepoints (&uploaded_tps);
3449 }
3450
3451 /* If breakpoints are global, insert them now. */
3452 if (gdbarch_has_global_breakpoints (target_gdbarch)
3453 && breakpoints_always_inserted_mode ())
3454 insert_breakpoints ();
3455 }
3456
3457 /* Open a connection to a remote debugger.
3458 NAME is the filename used for communication. */
3459
3460 static void
3461 remote_open (char *name, int from_tty)
3462 {
3463 remote_open_1 (name, from_tty, &remote_ops, 0);
3464 }
3465
3466 /* Open a connection to a remote debugger using the extended
3467 remote gdb protocol. NAME is the filename used for communication. */
3468
3469 static void
3470 extended_remote_open (char *name, int from_tty)
3471 {
3472 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
3473 }
3474
3475 /* Generic code for opening a connection to a remote target. */
3476
3477 static void
3478 init_all_packet_configs (void)
3479 {
3480 int i;
3481
3482 for (i = 0; i < PACKET_MAX; i++)
3483 update_packet_config (&remote_protocol_packets[i]);
3484 }
3485
3486 /* Symbol look-up. */
3487
3488 static void
3489 remote_check_symbols (struct objfile *objfile)
3490 {
3491 struct remote_state *rs = get_remote_state ();
3492 char *msg, *reply, *tmp;
3493 struct minimal_symbol *sym;
3494 int end;
3495
3496 /* The remote side has no concept of inferiors that aren't running
3497 yet, it only knows about running processes. If we're connected
3498 but our current inferior is not running, we should not invite the
3499 remote target to request symbol lookups related to its
3500 (unrelated) current process. */
3501 if (!target_has_execution)
3502 return;
3503
3504 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
3505 return;
3506
3507 /* Make sure the remote is pointing at the right process. Note
3508 there's no way to select "no process". */
3509 set_general_process ();
3510
3511 /* Allocate a message buffer. We can't reuse the input buffer in RS,
3512 because we need both at the same time. */
3513 msg = alloca (get_remote_packet_size ());
3514
3515 /* Invite target to request symbol lookups. */
3516
3517 putpkt ("qSymbol::");
3518 getpkt (&rs->buf, &rs->buf_size, 0);
3519 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
3520 reply = rs->buf;
3521
3522 while (strncmp (reply, "qSymbol:", 8) == 0)
3523 {
3524 tmp = &reply[8];
3525 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
3526 msg[end] = '\0';
3527 sym = lookup_minimal_symbol (msg, NULL, NULL);
3528 if (sym == NULL)
3529 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
3530 else
3531 {
3532 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
3533 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
3534
3535 /* If this is a function address, return the start of code
3536 instead of any data function descriptor. */
3537 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
3538 sym_addr,
3539 &current_target);
3540
3541 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
3542 phex_nz (sym_addr, addr_size), &reply[8]);
3543 }
3544
3545 putpkt (msg);
3546 getpkt (&rs->buf, &rs->buf_size, 0);
3547 reply = rs->buf;
3548 }
3549 }
3550
3551 static struct serial *
3552 remote_serial_open (char *name)
3553 {
3554 static int udp_warning = 0;
3555
3556 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
3557 of in ser-tcp.c, because it is the remote protocol assuming that the
3558 serial connection is reliable and not the serial connection promising
3559 to be. */
3560 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
3561 {
3562 warning (_("The remote protocol may be unreliable over UDP.\n"
3563 "Some events may be lost, rendering further debugging "
3564 "impossible."));
3565 udp_warning = 1;
3566 }
3567
3568 return serial_open (name);
3569 }
3570
3571 /* Inform the target of our permission settings. The permission flags
3572 work without this, but if the target knows the settings, it can do
3573 a couple things. First, it can add its own check, to catch cases
3574 that somehow manage to get by the permissions checks in target
3575 methods. Second, if the target is wired to disallow particular
3576 settings (for instance, a system in the field that is not set up to
3577 be able to stop at a breakpoint), it can object to any unavailable
3578 permissions. */
3579
3580 void
3581 remote_set_permissions (void)
3582 {
3583 struct remote_state *rs = get_remote_state ();
3584
3585 sprintf (rs->buf, "QAllow:"
3586 "WriteReg:%x;WriteMem:%x;"
3587 "InsertBreak:%x;InsertTrace:%x;"
3588 "InsertFastTrace:%x;Stop:%x",
3589 may_write_registers, may_write_memory,
3590 may_insert_breakpoints, may_insert_tracepoints,
3591 may_insert_fast_tracepoints, may_stop);
3592 putpkt (rs->buf);
3593 getpkt (&rs->buf, &rs->buf_size, 0);
3594
3595 /* If the target didn't like the packet, warn the user. Do not try
3596 to undo the user's settings, that would just be maddening. */
3597 if (strcmp (rs->buf, "OK") != 0)
3598 warning (_("Remote refused setting permissions with: %s"), rs->buf);
3599 }
3600
3601 /* This type describes each known response to the qSupported
3602 packet. */
3603 struct protocol_feature
3604 {
3605 /* The name of this protocol feature. */
3606 const char *name;
3607
3608 /* The default for this protocol feature. */
3609 enum packet_support default_support;
3610
3611 /* The function to call when this feature is reported, or after
3612 qSupported processing if the feature is not supported.
3613 The first argument points to this structure. The second
3614 argument indicates whether the packet requested support be
3615 enabled, disabled, or probed (or the default, if this function
3616 is being called at the end of processing and this feature was
3617 not reported). The third argument may be NULL; if not NULL, it
3618 is a NUL-terminated string taken from the packet following
3619 this feature's name and an equals sign. */
3620 void (*func) (const struct protocol_feature *, enum packet_support,
3621 const char *);
3622
3623 /* The corresponding packet for this feature. Only used if
3624 FUNC is remote_supported_packet. */
3625 int packet;
3626 };
3627
3628 static void
3629 remote_supported_packet (const struct protocol_feature *feature,
3630 enum packet_support support,
3631 const char *argument)
3632 {
3633 if (argument)
3634 {
3635 warning (_("Remote qSupported response supplied an unexpected value for"
3636 " \"%s\"."), feature->name);
3637 return;
3638 }
3639
3640 if (remote_protocol_packets[feature->packet].support
3641 == PACKET_SUPPORT_UNKNOWN)
3642 remote_protocol_packets[feature->packet].support = support;
3643 }
3644
3645 static void
3646 remote_packet_size (const struct protocol_feature *feature,
3647 enum packet_support support, const char *value)
3648 {
3649 struct remote_state *rs = get_remote_state ();
3650
3651 int packet_size;
3652 char *value_end;
3653
3654 if (support != PACKET_ENABLE)
3655 return;
3656
3657 if (value == NULL || *value == '\0')
3658 {
3659 warning (_("Remote target reported \"%s\" without a size."),
3660 feature->name);
3661 return;
3662 }
3663
3664 errno = 0;
3665 packet_size = strtol (value, &value_end, 16);
3666 if (errno != 0 || *value_end != '\0' || packet_size < 0)
3667 {
3668 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3669 feature->name, value);
3670 return;
3671 }
3672
3673 if (packet_size > MAX_REMOTE_PACKET_SIZE)
3674 {
3675 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3676 packet_size, MAX_REMOTE_PACKET_SIZE);
3677 packet_size = MAX_REMOTE_PACKET_SIZE;
3678 }
3679
3680 /* Record the new maximum packet size. */
3681 rs->explicit_packet_size = packet_size;
3682 }
3683
3684 static void
3685 remote_multi_process_feature (const struct protocol_feature *feature,
3686 enum packet_support support, const char *value)
3687 {
3688 struct remote_state *rs = get_remote_state ();
3689
3690 rs->multi_process_aware = (support == PACKET_ENABLE);
3691 }
3692
3693 static void
3694 remote_non_stop_feature (const struct protocol_feature *feature,
3695 enum packet_support support, const char *value)
3696 {
3697 struct remote_state *rs = get_remote_state ();
3698
3699 rs->non_stop_aware = (support == PACKET_ENABLE);
3700 }
3701
3702 static void
3703 remote_cond_tracepoint_feature (const struct protocol_feature *feature,
3704 enum packet_support support,
3705 const char *value)
3706 {
3707 struct remote_state *rs = get_remote_state ();
3708
3709 rs->cond_tracepoints = (support == PACKET_ENABLE);
3710 }
3711
3712 static void
3713 remote_cond_breakpoint_feature (const struct protocol_feature *feature,
3714 enum packet_support support,
3715 const char *value)
3716 {
3717 struct remote_state *rs = get_remote_state ();
3718
3719 rs->cond_breakpoints = (support == PACKET_ENABLE);
3720 }
3721
3722 static void
3723 remote_fast_tracepoint_feature (const struct protocol_feature *feature,
3724 enum packet_support support,
3725 const char *value)
3726 {
3727 struct remote_state *rs = get_remote_state ();
3728
3729 rs->fast_tracepoints = (support == PACKET_ENABLE);
3730 }
3731
3732 static void
3733 remote_static_tracepoint_feature (const struct protocol_feature *feature,
3734 enum packet_support support,
3735 const char *value)
3736 {
3737 struct remote_state *rs = get_remote_state ();
3738
3739 rs->static_tracepoints = (support == PACKET_ENABLE);
3740 }
3741
3742 static void
3743 remote_install_in_trace_feature (const struct protocol_feature *feature,
3744 enum packet_support support,
3745 const char *value)
3746 {
3747 struct remote_state *rs = get_remote_state ();
3748
3749 rs->install_in_trace = (support == PACKET_ENABLE);
3750 }
3751
3752 static void
3753 remote_disconnected_tracing_feature (const struct protocol_feature *feature,
3754 enum packet_support support,
3755 const char *value)
3756 {
3757 struct remote_state *rs = get_remote_state ();
3758
3759 rs->disconnected_tracing = (support == PACKET_ENABLE);
3760 }
3761
3762 static void
3763 remote_enable_disable_tracepoint_feature (const struct protocol_feature *feature,
3764 enum packet_support support,
3765 const char *value)
3766 {
3767 struct remote_state *rs = get_remote_state ();
3768
3769 rs->enable_disable_tracepoints = (support == PACKET_ENABLE);
3770 }
3771
3772 static void
3773 remote_string_tracing_feature (const struct protocol_feature *feature,
3774 enum packet_support support,
3775 const char *value)
3776 {
3777 struct remote_state *rs = get_remote_state ();
3778
3779 rs->string_tracing = (support == PACKET_ENABLE);
3780 }
3781
3782 static struct protocol_feature remote_protocol_features[] = {
3783 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
3784 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
3785 PACKET_qXfer_auxv },
3786 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3787 PACKET_qXfer_features },
3788 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3789 PACKET_qXfer_libraries },
3790 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
3791 PACKET_qXfer_libraries_svr4 },
3792 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
3793 PACKET_qXfer_memory_map },
3794 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3795 PACKET_qXfer_spu_read },
3796 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3797 PACKET_qXfer_spu_write },
3798 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3799 PACKET_qXfer_osdata },
3800 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
3801 PACKET_qXfer_threads },
3802 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
3803 PACKET_qXfer_traceframe_info },
3804 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3805 PACKET_QPassSignals },
3806 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3807 PACKET_QStartNoAckMode },
3808 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
3809 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
3810 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3811 PACKET_qXfer_siginfo_read },
3812 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
3813 PACKET_qXfer_siginfo_write },
3814 { "ConditionalTracepoints", PACKET_DISABLE, remote_cond_tracepoint_feature,
3815 PACKET_ConditionalTracepoints },
3816 { "ConditionalBreakpoints", PACKET_DISABLE, remote_cond_breakpoint_feature,
3817 PACKET_ConditionalBreakpoints },
3818 { "FastTracepoints", PACKET_DISABLE, remote_fast_tracepoint_feature,
3819 PACKET_FastTracepoints },
3820 { "StaticTracepoints", PACKET_DISABLE, remote_static_tracepoint_feature,
3821 PACKET_StaticTracepoints },
3822 {"InstallInTrace", PACKET_DISABLE, remote_install_in_trace_feature,
3823 PACKET_InstallInTrace},
3824 { "DisconnectedTracing", PACKET_DISABLE, remote_disconnected_tracing_feature,
3825 -1 },
3826 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
3827 PACKET_bc },
3828 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
3829 PACKET_bs },
3830 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
3831 PACKET_TracepointSource },
3832 { "QAllow", PACKET_DISABLE, remote_supported_packet,
3833 PACKET_QAllow },
3834 { "EnableDisableTracepoints", PACKET_DISABLE,
3835 remote_enable_disable_tracepoint_feature, -1 },
3836 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
3837 PACKET_qXfer_fdpic },
3838 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
3839 PACKET_qXfer_uib },
3840 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
3841 PACKET_QDisableRandomization },
3842 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
3843 { "tracenz", PACKET_DISABLE,
3844 remote_string_tracing_feature, -1 },
3845 };
3846
3847 static char *remote_support_xml;
3848
3849 /* Register string appended to "xmlRegisters=" in qSupported query. */
3850
3851 void
3852 register_remote_support_xml (const char *xml)
3853 {
3854 #if defined(HAVE_LIBEXPAT)
3855 if (remote_support_xml == NULL)
3856 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
3857 else
3858 {
3859 char *copy = xstrdup (remote_support_xml + 13);
3860 char *p = strtok (copy, ",");
3861
3862 do
3863 {
3864 if (strcmp (p, xml) == 0)
3865 {
3866 /* already there */
3867 xfree (copy);
3868 return;
3869 }
3870 }
3871 while ((p = strtok (NULL, ",")) != NULL);
3872 xfree (copy);
3873
3874 remote_support_xml = reconcat (remote_support_xml,
3875 remote_support_xml, ",", xml,
3876 (char *) NULL);
3877 }
3878 #endif
3879 }
3880
3881 static char *
3882 remote_query_supported_append (char *msg, const char *append)
3883 {
3884 if (msg)
3885 return reconcat (msg, msg, ";", append, (char *) NULL);
3886 else
3887 return xstrdup (append);
3888 }
3889
3890 static void
3891 remote_query_supported (void)
3892 {
3893 struct remote_state *rs = get_remote_state ();
3894 char *next;
3895 int i;
3896 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
3897
3898 /* The packet support flags are handled differently for this packet
3899 than for most others. We treat an error, a disabled packet, and
3900 an empty response identically: any features which must be reported
3901 to be used will be automatically disabled. An empty buffer
3902 accomplishes this, since that is also the representation for a list
3903 containing no features. */
3904
3905 rs->buf[0] = 0;
3906 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
3907 {
3908 char *q = NULL;
3909 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
3910
3911 q = remote_query_supported_append (q, "multiprocess+");
3912
3913 if (remote_support_xml)
3914 q = remote_query_supported_append (q, remote_support_xml);
3915
3916 q = remote_query_supported_append (q, "qRelocInsn+");
3917
3918 q = reconcat (q, "qSupported:", q, (char *) NULL);
3919 putpkt (q);
3920
3921 do_cleanups (old_chain);
3922
3923 getpkt (&rs->buf, &rs->buf_size, 0);
3924
3925 /* If an error occured, warn, but do not return - just reset the
3926 buffer to empty and go on to disable features. */
3927 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
3928 == PACKET_ERROR)
3929 {
3930 warning (_("Remote failure reply: %s"), rs->buf);
3931 rs->buf[0] = 0;
3932 }
3933 }
3934
3935 memset (seen, 0, sizeof (seen));
3936
3937 next = rs->buf;
3938 while (*next)
3939 {
3940 enum packet_support is_supported;
3941 char *p, *end, *name_end, *value;
3942
3943 /* First separate out this item from the rest of the packet. If
3944 there's another item after this, we overwrite the separator
3945 (terminated strings are much easier to work with). */
3946 p = next;
3947 end = strchr (p, ';');
3948 if (end == NULL)
3949 {
3950 end = p + strlen (p);
3951 next = end;
3952 }
3953 else
3954 {
3955 *end = '\0';
3956 next = end + 1;
3957
3958 if (end == p)
3959 {
3960 warning (_("empty item in \"qSupported\" response"));
3961 continue;
3962 }
3963 }
3964
3965 name_end = strchr (p, '=');
3966 if (name_end)
3967 {
3968 /* This is a name=value entry. */
3969 is_supported = PACKET_ENABLE;
3970 value = name_end + 1;
3971 *name_end = '\0';
3972 }
3973 else
3974 {
3975 value = NULL;
3976 switch (end[-1])
3977 {
3978 case '+':
3979 is_supported = PACKET_ENABLE;
3980 break;
3981
3982 case '-':
3983 is_supported = PACKET_DISABLE;
3984 break;
3985
3986 case '?':
3987 is_supported = PACKET_SUPPORT_UNKNOWN;
3988 break;
3989
3990 default:
3991 warning (_("unrecognized item \"%s\" "
3992 "in \"qSupported\" response"), p);
3993 continue;
3994 }
3995 end[-1] = '\0';
3996 }
3997
3998 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3999 if (strcmp (remote_protocol_features[i].name, p) == 0)
4000 {
4001 const struct protocol_feature *feature;
4002
4003 seen[i] = 1;
4004 feature = &remote_protocol_features[i];
4005 feature->func (feature, is_supported, value);
4006 break;
4007 }
4008 }
4009
4010 /* If we increased the packet size, make sure to increase the global
4011 buffer size also. We delay this until after parsing the entire
4012 qSupported packet, because this is the same buffer we were
4013 parsing. */
4014 if (rs->buf_size < rs->explicit_packet_size)
4015 {
4016 rs->buf_size = rs->explicit_packet_size;
4017 rs->buf = xrealloc (rs->buf, rs->buf_size);
4018 }
4019
4020 /* Handle the defaults for unmentioned features. */
4021 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4022 if (!seen[i])
4023 {
4024 const struct protocol_feature *feature;
4025
4026 feature = &remote_protocol_features[i];
4027 feature->func (feature, feature->default_support, NULL);
4028 }
4029 }
4030
4031
4032 static void
4033 remote_open_1 (char *name, int from_tty,
4034 struct target_ops *target, int extended_p)
4035 {
4036 struct remote_state *rs = get_remote_state ();
4037
4038 if (name == 0)
4039 error (_("To open a remote debug connection, you need to specify what\n"
4040 "serial device is attached to the remote system\n"
4041 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4042
4043 /* See FIXME above. */
4044 if (!target_async_permitted)
4045 wait_forever_enabled_p = 1;
4046
4047 /* If we're connected to a running target, target_preopen will kill it.
4048 But if we're connected to a target system with no running process,
4049 then we will still be connected when it returns. Ask this question
4050 first, before target_preopen has a chance to kill anything. */
4051 if (remote_desc != NULL && !have_inferiors ())
4052 {
4053 if (!from_tty
4054 || query (_("Already connected to a remote target. Disconnect? ")))
4055 pop_target ();
4056 else
4057 error (_("Still connected."));
4058 }
4059
4060 target_preopen (from_tty);
4061
4062 unpush_target (target);
4063
4064 /* This time without a query. If we were connected to an
4065 extended-remote target and target_preopen killed the running
4066 process, we may still be connected. If we are starting "target
4067 remote" now, the extended-remote target will not have been
4068 removed by unpush_target. */
4069 if (remote_desc != NULL && !have_inferiors ())
4070 pop_target ();
4071
4072 /* Make sure we send the passed signals list the next time we resume. */
4073 xfree (last_pass_packet);
4074 last_pass_packet = NULL;
4075
4076 remote_fileio_reset ();
4077 reopen_exec_file ();
4078 reread_symbols ();
4079
4080 remote_desc = remote_serial_open (name);
4081 if (!remote_desc)
4082 perror_with_name (name);
4083
4084 if (baud_rate != -1)
4085 {
4086 if (serial_setbaudrate (remote_desc, baud_rate))
4087 {
4088 /* The requested speed could not be set. Error out to
4089 top level after closing remote_desc. Take care to
4090 set remote_desc to NULL to avoid closing remote_desc
4091 more than once. */
4092 serial_close (remote_desc);
4093 remote_desc = NULL;
4094 perror_with_name (name);
4095 }
4096 }
4097
4098 serial_raw (remote_desc);
4099
4100 /* If there is something sitting in the buffer we might take it as a
4101 response to a command, which would be bad. */
4102 serial_flush_input (remote_desc);
4103
4104 if (from_tty)
4105 {
4106 puts_filtered ("Remote debugging using ");
4107 puts_filtered (name);
4108 puts_filtered ("\n");
4109 }
4110 push_target (target); /* Switch to using remote target now. */
4111
4112 /* Register extra event sources in the event loop. */
4113 remote_async_inferior_event_token
4114 = create_async_event_handler (remote_async_inferior_event_handler,
4115 NULL);
4116 remote_async_get_pending_events_token
4117 = create_async_event_handler (remote_async_get_pending_events_handler,
4118 NULL);
4119
4120 /* Reset the target state; these things will be queried either by
4121 remote_query_supported or as they are needed. */
4122 init_all_packet_configs ();
4123 rs->cached_wait_status = 0;
4124 rs->explicit_packet_size = 0;
4125 rs->noack_mode = 0;
4126 rs->multi_process_aware = 0;
4127 rs->extended = extended_p;
4128 rs->non_stop_aware = 0;
4129 rs->waiting_for_stop_reply = 0;
4130 rs->ctrlc_pending_p = 0;
4131
4132 general_thread = not_sent_ptid;
4133 continue_thread = not_sent_ptid;
4134 remote_traceframe_number = -1;
4135
4136 /* Probe for ability to use "ThreadInfo" query, as required. */
4137 use_threadinfo_query = 1;
4138 use_threadextra_query = 1;
4139
4140 if (target_async_permitted)
4141 {
4142 /* With this target we start out by owning the terminal. */
4143 remote_async_terminal_ours_p = 1;
4144
4145 /* FIXME: cagney/1999-09-23: During the initial connection it is
4146 assumed that the target is already ready and able to respond to
4147 requests. Unfortunately remote_start_remote() eventually calls
4148 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
4149 around this. Eventually a mechanism that allows
4150 wait_for_inferior() to expect/get timeouts will be
4151 implemented. */
4152 wait_forever_enabled_p = 0;
4153 }
4154
4155 /* First delete any symbols previously loaded from shared libraries. */
4156 no_shared_libraries (NULL, 0);
4157
4158 /* Start afresh. */
4159 init_thread_list ();
4160
4161 /* Start the remote connection. If error() or QUIT, discard this
4162 target (we'd otherwise be in an inconsistent state) and then
4163 propogate the error on up the exception chain. This ensures that
4164 the caller doesn't stumble along blindly assuming that the
4165 function succeeded. The CLI doesn't have this problem but other
4166 UI's, such as MI do.
4167
4168 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4169 this function should return an error indication letting the
4170 caller restore the previous state. Unfortunately the command
4171 ``target remote'' is directly wired to this function making that
4172 impossible. On a positive note, the CLI side of this problem has
4173 been fixed - the function set_cmd_context() makes it possible for
4174 all the ``target ....'' commands to share a common callback
4175 function. See cli-dump.c. */
4176 {
4177 volatile struct gdb_exception ex;
4178
4179 TRY_CATCH (ex, RETURN_MASK_ALL)
4180 {
4181 remote_start_remote (from_tty, target, extended_p);
4182 }
4183 if (ex.reason < 0)
4184 {
4185 /* Pop the partially set up target - unless something else did
4186 already before throwing the exception. */
4187 if (remote_desc != NULL)
4188 pop_target ();
4189 if (target_async_permitted)
4190 wait_forever_enabled_p = 1;
4191 throw_exception (ex);
4192 }
4193 }
4194
4195 if (target_async_permitted)
4196 wait_forever_enabled_p = 1;
4197 }
4198
4199 /* This takes a program previously attached to and detaches it. After
4200 this is done, GDB can be used to debug some other program. We
4201 better not have left any breakpoints in the target program or it'll
4202 die when it hits one. */
4203
4204 static void
4205 remote_detach_1 (char *args, int from_tty, int extended)
4206 {
4207 int pid = ptid_get_pid (inferior_ptid);
4208 struct remote_state *rs = get_remote_state ();
4209
4210 if (args)
4211 error (_("Argument given to \"detach\" when remotely debugging."));
4212
4213 if (!target_has_execution)
4214 error (_("No process to detach from."));
4215
4216 if (from_tty)
4217 {
4218 char *exec_file = get_exec_file (0);
4219 if (exec_file == NULL)
4220 exec_file = "";
4221 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
4222 target_pid_to_str (pid_to_ptid (pid)));
4223 gdb_flush (gdb_stdout);
4224 }
4225
4226 /* Tell the remote target to detach. */
4227 if (remote_multi_process_p (rs))
4228 sprintf (rs->buf, "D;%x", pid);
4229 else
4230 strcpy (rs->buf, "D");
4231
4232 putpkt (rs->buf);
4233 getpkt (&rs->buf, &rs->buf_size, 0);
4234
4235 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
4236 ;
4237 else if (rs->buf[0] == '\0')
4238 error (_("Remote doesn't know how to detach"));
4239 else
4240 error (_("Can't detach process."));
4241
4242 if (from_tty && !extended)
4243 puts_filtered (_("Ending remote debugging.\n"));
4244
4245 discard_pending_stop_replies (pid);
4246 target_mourn_inferior ();
4247 }
4248
4249 static void
4250 remote_detach (struct target_ops *ops, char *args, int from_tty)
4251 {
4252 remote_detach_1 (args, from_tty, 0);
4253 }
4254
4255 static void
4256 extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
4257 {
4258 remote_detach_1 (args, from_tty, 1);
4259 }
4260
4261 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
4262
4263 static void
4264 remote_disconnect (struct target_ops *target, char *args, int from_tty)
4265 {
4266 if (args)
4267 error (_("Argument given to \"disconnect\" when remotely debugging."));
4268
4269 /* Make sure we unpush even the extended remote targets; mourn
4270 won't do it. So call remote_mourn_1 directly instead of
4271 target_mourn_inferior. */
4272 remote_mourn_1 (target);
4273
4274 if (from_tty)
4275 puts_filtered ("Ending remote debugging.\n");
4276 }
4277
4278 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
4279 be chatty about it. */
4280
4281 static void
4282 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
4283 {
4284 struct remote_state *rs = get_remote_state ();
4285 int pid;
4286 char *wait_status = NULL;
4287
4288 pid = parse_pid_to_attach (args);
4289
4290 /* Remote PID can be freely equal to getpid, do not check it here the same
4291 way as in other targets. */
4292
4293 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4294 error (_("This target does not support attaching to a process"));
4295
4296 if (from_tty)
4297 {
4298 char *exec_file = get_exec_file (0);
4299
4300 if (exec_file)
4301 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
4302 target_pid_to_str (pid_to_ptid (pid)));
4303 else
4304 printf_unfiltered (_("Attaching to %s\n"),
4305 target_pid_to_str (pid_to_ptid (pid)));
4306
4307 gdb_flush (gdb_stdout);
4308 }
4309
4310 sprintf (rs->buf, "vAttach;%x", pid);
4311 putpkt (rs->buf);
4312 getpkt (&rs->buf, &rs->buf_size, 0);
4313
4314 if (packet_ok (rs->buf,
4315 &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
4316 {
4317 if (!non_stop)
4318 {
4319 /* Save the reply for later. */
4320 wait_status = alloca (strlen (rs->buf) + 1);
4321 strcpy (wait_status, rs->buf);
4322 }
4323 else if (strcmp (rs->buf, "OK") != 0)
4324 error (_("Attaching to %s failed with: %s"),
4325 target_pid_to_str (pid_to_ptid (pid)),
4326 rs->buf);
4327 }
4328 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4329 error (_("This target does not support attaching to a process"));
4330 else
4331 error (_("Attaching to %s failed"),
4332 target_pid_to_str (pid_to_ptid (pid)));
4333
4334 set_current_inferior (remote_add_inferior (0, pid, 1));
4335
4336 inferior_ptid = pid_to_ptid (pid);
4337
4338 if (non_stop)
4339 {
4340 struct thread_info *thread;
4341
4342 /* Get list of threads. */
4343 remote_threads_info (target);
4344
4345 thread = first_thread_of_process (pid);
4346 if (thread)
4347 inferior_ptid = thread->ptid;
4348 else
4349 inferior_ptid = pid_to_ptid (pid);
4350
4351 /* Invalidate our notion of the remote current thread. */
4352 record_currthread (minus_one_ptid);
4353 }
4354 else
4355 {
4356 /* Now, if we have thread information, update inferior_ptid. */
4357 inferior_ptid = remote_current_thread (inferior_ptid);
4358
4359 /* Add the main thread to the thread list. */
4360 add_thread_silent (inferior_ptid);
4361 }
4362
4363 /* Next, if the target can specify a description, read it. We do
4364 this before anything involving memory or registers. */
4365 target_find_description ();
4366
4367 if (!non_stop)
4368 {
4369 /* Use the previously fetched status. */
4370 gdb_assert (wait_status != NULL);
4371
4372 if (target_can_async_p ())
4373 {
4374 struct stop_reply *stop_reply;
4375 struct cleanup *old_chain;
4376
4377 stop_reply = stop_reply_xmalloc ();
4378 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4379 remote_parse_stop_reply (wait_status, stop_reply);
4380 discard_cleanups (old_chain);
4381 push_stop_reply (stop_reply);
4382
4383 target_async (inferior_event_handler, 0);
4384 }
4385 else
4386 {
4387 gdb_assert (wait_status != NULL);
4388 strcpy (rs->buf, wait_status);
4389 rs->cached_wait_status = 1;
4390 }
4391 }
4392 else
4393 gdb_assert (wait_status == NULL);
4394 }
4395
4396 static void
4397 extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
4398 {
4399 extended_remote_attach_1 (ops, args, from_tty);
4400 }
4401
4402 /* Convert hex digit A to a number. */
4403
4404 static int
4405 fromhex (int a)
4406 {
4407 if (a >= '0' && a <= '9')
4408 return a - '0';
4409 else if (a >= 'a' && a <= 'f')
4410 return a - 'a' + 10;
4411 else if (a >= 'A' && a <= 'F')
4412 return a - 'A' + 10;
4413 else
4414 error (_("Reply contains invalid hex digit %d"), a);
4415 }
4416
4417 int
4418 hex2bin (const char *hex, gdb_byte *bin, int count)
4419 {
4420 int i;
4421
4422 for (i = 0; i < count; i++)
4423 {
4424 if (hex[0] == 0 || hex[1] == 0)
4425 {
4426 /* Hex string is short, or of uneven length.
4427 Return the count that has been converted so far. */
4428 return i;
4429 }
4430 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
4431 hex += 2;
4432 }
4433 return i;
4434 }
4435
4436 /* Convert number NIB to a hex digit. */
4437
4438 static int
4439 tohex (int nib)
4440 {
4441 if (nib < 10)
4442 return '0' + nib;
4443 else
4444 return 'a' + nib - 10;
4445 }
4446
4447 int
4448 bin2hex (const gdb_byte *bin, char *hex, int count)
4449 {
4450 int i;
4451
4452 /* May use a length, or a nul-terminated string as input. */
4453 if (count == 0)
4454 count = strlen ((char *) bin);
4455
4456 for (i = 0; i < count; i++)
4457 {
4458 *hex++ = tohex ((*bin >> 4) & 0xf);
4459 *hex++ = tohex (*bin++ & 0xf);
4460 }
4461 *hex = 0;
4462 return i;
4463 }
4464 \f
4465 /* Check for the availability of vCont. This function should also check
4466 the response. */
4467
4468 static void
4469 remote_vcont_probe (struct remote_state *rs)
4470 {
4471 char *buf;
4472
4473 strcpy (rs->buf, "vCont?");
4474 putpkt (rs->buf);
4475 getpkt (&rs->buf, &rs->buf_size, 0);
4476 buf = rs->buf;
4477
4478 /* Make sure that the features we assume are supported. */
4479 if (strncmp (buf, "vCont", 5) == 0)
4480 {
4481 char *p = &buf[5];
4482 int support_s, support_S, support_c, support_C;
4483
4484 support_s = 0;
4485 support_S = 0;
4486 support_c = 0;
4487 support_C = 0;
4488 rs->support_vCont_t = 0;
4489 while (p && *p == ';')
4490 {
4491 p++;
4492 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
4493 support_s = 1;
4494 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
4495 support_S = 1;
4496 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
4497 support_c = 1;
4498 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
4499 support_C = 1;
4500 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
4501 rs->support_vCont_t = 1;
4502
4503 p = strchr (p, ';');
4504 }
4505
4506 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
4507 BUF will make packet_ok disable the packet. */
4508 if (!support_s || !support_S || !support_c || !support_C)
4509 buf[0] = 0;
4510 }
4511
4512 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
4513 }
4514
4515 /* Helper function for building "vCont" resumptions. Write a
4516 resumption to P. ENDP points to one-passed-the-end of the buffer
4517 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
4518 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4519 resumed thread should be single-stepped and/or signalled. If PTID
4520 equals minus_one_ptid, then all threads are resumed; if PTID
4521 represents a process, then all threads of the process are resumed;
4522 the thread to be stepped and/or signalled is given in the global
4523 INFERIOR_PTID. */
4524
4525 static char *
4526 append_resumption (char *p, char *endp,
4527 ptid_t ptid, int step, enum target_signal siggnal)
4528 {
4529 struct remote_state *rs = get_remote_state ();
4530
4531 if (step && siggnal != TARGET_SIGNAL_0)
4532 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
4533 else if (step)
4534 p += xsnprintf (p, endp - p, ";s");
4535 else if (siggnal != TARGET_SIGNAL_0)
4536 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
4537 else
4538 p += xsnprintf (p, endp - p, ";c");
4539
4540 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
4541 {
4542 ptid_t nptid;
4543
4544 /* All (-1) threads of process. */
4545 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4546
4547 p += xsnprintf (p, endp - p, ":");
4548 p = write_ptid (p, endp, nptid);
4549 }
4550 else if (!ptid_equal (ptid, minus_one_ptid))
4551 {
4552 p += xsnprintf (p, endp - p, ":");
4553 p = write_ptid (p, endp, ptid);
4554 }
4555
4556 return p;
4557 }
4558
4559 /* Resume the remote inferior by using a "vCont" packet. The thread
4560 to be resumed is PTID; STEP and SIGGNAL indicate whether the
4561 resumed thread should be single-stepped and/or signalled. If PTID
4562 equals minus_one_ptid, then all threads are resumed; the thread to
4563 be stepped and/or signalled is given in the global INFERIOR_PTID.
4564 This function returns non-zero iff it resumes the inferior.
4565
4566 This function issues a strict subset of all possible vCont commands at the
4567 moment. */
4568
4569 static int
4570 remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
4571 {
4572 struct remote_state *rs = get_remote_state ();
4573 char *p;
4574 char *endp;
4575
4576 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
4577 remote_vcont_probe (rs);
4578
4579 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
4580 return 0;
4581
4582 p = rs->buf;
4583 endp = rs->buf + get_remote_packet_size ();
4584
4585 /* If we could generate a wider range of packets, we'd have to worry
4586 about overflowing BUF. Should there be a generic
4587 "multi-part-packet" packet? */
4588
4589 p += xsnprintf (p, endp - p, "vCont");
4590
4591 if (ptid_equal (ptid, magic_null_ptid))
4592 {
4593 /* MAGIC_NULL_PTID means that we don't have any active threads,
4594 so we don't have any TID numbers the inferior will
4595 understand. Make sure to only send forms that do not specify
4596 a TID. */
4597 append_resumption (p, endp, minus_one_ptid, step, siggnal);
4598 }
4599 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
4600 {
4601 /* Resume all threads (of all processes, or of a single
4602 process), with preference for INFERIOR_PTID. This assumes
4603 inferior_ptid belongs to the set of all threads we are about
4604 to resume. */
4605 if (step || siggnal != TARGET_SIGNAL_0)
4606 {
4607 /* Step inferior_ptid, with or without signal. */
4608 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
4609 }
4610
4611 /* And continue others without a signal. */
4612 append_resumption (p, endp, ptid, /*step=*/ 0, TARGET_SIGNAL_0);
4613 }
4614 else
4615 {
4616 /* Scheduler locking; resume only PTID. */
4617 append_resumption (p, endp, ptid, step, siggnal);
4618 }
4619
4620 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
4621 putpkt (rs->buf);
4622
4623 if (non_stop)
4624 {
4625 /* In non-stop, the stub replies to vCont with "OK". The stop
4626 reply will be reported asynchronously by means of a `%Stop'
4627 notification. */
4628 getpkt (&rs->buf, &rs->buf_size, 0);
4629 if (strcmp (rs->buf, "OK") != 0)
4630 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
4631 }
4632
4633 return 1;
4634 }
4635
4636 /* Tell the remote machine to resume. */
4637
4638 static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
4639
4640 static int last_sent_step;
4641
4642 static void
4643 remote_resume (struct target_ops *ops,
4644 ptid_t ptid, int step, enum target_signal siggnal)
4645 {
4646 struct remote_state *rs = get_remote_state ();
4647 char *buf;
4648
4649 last_sent_signal = siggnal;
4650 last_sent_step = step;
4651
4652 /* The vCont packet doesn't need to specify threads via Hc. */
4653 /* No reverse support (yet) for vCont. */
4654 if (execution_direction != EXEC_REVERSE)
4655 if (remote_vcont_resume (ptid, step, siggnal))
4656 goto done;
4657
4658 /* All other supported resume packets do use Hc, so set the continue
4659 thread. */
4660 if (ptid_equal (ptid, minus_one_ptid))
4661 set_continue_thread (any_thread_ptid);
4662 else
4663 set_continue_thread (ptid);
4664
4665 buf = rs->buf;
4666 if (execution_direction == EXEC_REVERSE)
4667 {
4668 /* We don't pass signals to the target in reverse exec mode. */
4669 if (info_verbose && siggnal != TARGET_SIGNAL_0)
4670 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
4671 siggnal);
4672
4673 if (step
4674 && remote_protocol_packets[PACKET_bs].support == PACKET_DISABLE)
4675 error (_("Remote reverse-step not supported."));
4676 if (!step
4677 && remote_protocol_packets[PACKET_bc].support == PACKET_DISABLE)
4678 error (_("Remote reverse-continue not supported."));
4679
4680 strcpy (buf, step ? "bs" : "bc");
4681 }
4682 else if (siggnal != TARGET_SIGNAL_0)
4683 {
4684 buf[0] = step ? 'S' : 'C';
4685 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
4686 buf[2] = tohex (((int) siggnal) & 0xf);
4687 buf[3] = '\0';
4688 }
4689 else
4690 strcpy (buf, step ? "s" : "c");
4691
4692 putpkt (buf);
4693
4694 done:
4695 /* We are about to start executing the inferior, let's register it
4696 with the event loop. NOTE: this is the one place where all the
4697 execution commands end up. We could alternatively do this in each
4698 of the execution commands in infcmd.c. */
4699 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
4700 into infcmd.c in order to allow inferior function calls to work
4701 NOT asynchronously. */
4702 if (target_can_async_p ())
4703 target_async (inferior_event_handler, 0);
4704
4705 /* We've just told the target to resume. The remote server will
4706 wait for the inferior to stop, and then send a stop reply. In
4707 the mean time, we can't start another command/query ourselves
4708 because the stub wouldn't be ready to process it. This applies
4709 only to the base all-stop protocol, however. In non-stop (which
4710 only supports vCont), the stub replies with an "OK", and is
4711 immediate able to process further serial input. */
4712 if (!non_stop)
4713 rs->waiting_for_stop_reply = 1;
4714 }
4715 \f
4716
4717 /* Set up the signal handler for SIGINT, while the target is
4718 executing, ovewriting the 'regular' SIGINT signal handler. */
4719 static void
4720 initialize_sigint_signal_handler (void)
4721 {
4722 signal (SIGINT, handle_remote_sigint);
4723 }
4724
4725 /* Signal handler for SIGINT, while the target is executing. */
4726 static void
4727 handle_remote_sigint (int sig)
4728 {
4729 signal (sig, handle_remote_sigint_twice);
4730 mark_async_signal_handler_wrapper (sigint_remote_token);
4731 }
4732
4733 /* Signal handler for SIGINT, installed after SIGINT has already been
4734 sent once. It will take effect the second time that the user sends
4735 a ^C. */
4736 static void
4737 handle_remote_sigint_twice (int sig)
4738 {
4739 signal (sig, handle_remote_sigint);
4740 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
4741 }
4742
4743 /* Perform the real interruption of the target execution, in response
4744 to a ^C. */
4745 static void
4746 async_remote_interrupt (gdb_client_data arg)
4747 {
4748 if (remote_debug)
4749 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
4750
4751 target_stop (inferior_ptid);
4752 }
4753
4754 /* Perform interrupt, if the first attempt did not succeed. Just give
4755 up on the target alltogether. */
4756 void
4757 async_remote_interrupt_twice (gdb_client_data arg)
4758 {
4759 if (remote_debug)
4760 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
4761
4762 interrupt_query ();
4763 }
4764
4765 /* Reinstall the usual SIGINT handlers, after the target has
4766 stopped. */
4767 static void
4768 cleanup_sigint_signal_handler (void *dummy)
4769 {
4770 signal (SIGINT, handle_sigint);
4771 }
4772
4773 /* Send ^C to target to halt it. Target will respond, and send us a
4774 packet. */
4775 static void (*ofunc) (int);
4776
4777 /* The command line interface's stop routine. This function is installed
4778 as a signal handler for SIGINT. The first time a user requests a
4779 stop, we call remote_stop to send a break or ^C. If there is no
4780 response from the target (it didn't stop when the user requested it),
4781 we ask the user if he'd like to detach from the target. */
4782 static void
4783 remote_interrupt (int signo)
4784 {
4785 /* If this doesn't work, try more severe steps. */
4786 signal (signo, remote_interrupt_twice);
4787
4788 gdb_call_async_signal_handler (sigint_remote_token, 1);
4789 }
4790
4791 /* The user typed ^C twice. */
4792
4793 static void
4794 remote_interrupt_twice (int signo)
4795 {
4796 signal (signo, ofunc);
4797 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
4798 signal (signo, remote_interrupt);
4799 }
4800
4801 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
4802 thread, all threads of a remote process, or all threads of all
4803 processes. */
4804
4805 static void
4806 remote_stop_ns (ptid_t ptid)
4807 {
4808 struct remote_state *rs = get_remote_state ();
4809 char *p = rs->buf;
4810 char *endp = rs->buf + get_remote_packet_size ();
4811
4812 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
4813 remote_vcont_probe (rs);
4814
4815 if (!rs->support_vCont_t)
4816 error (_("Remote server does not support stopping threads"));
4817
4818 if (ptid_equal (ptid, minus_one_ptid)
4819 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
4820 p += xsnprintf (p, endp - p, "vCont;t");
4821 else
4822 {
4823 ptid_t nptid;
4824
4825 p += xsnprintf (p, endp - p, "vCont;t:");
4826
4827 if (ptid_is_pid (ptid))
4828 /* All (-1) threads of process. */
4829 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4830 else
4831 {
4832 /* Small optimization: if we already have a stop reply for
4833 this thread, no use in telling the stub we want this
4834 stopped. */
4835 if (peek_stop_reply (ptid))
4836 return;
4837
4838 nptid = ptid;
4839 }
4840
4841 write_ptid (p, endp, nptid);
4842 }
4843
4844 /* In non-stop, we get an immediate OK reply. The stop reply will
4845 come in asynchronously by notification. */
4846 putpkt (rs->buf);
4847 getpkt (&rs->buf, &rs->buf_size, 0);
4848 if (strcmp (rs->buf, "OK") != 0)
4849 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
4850 }
4851
4852 /* All-stop version of target_stop. Sends a break or a ^C to stop the
4853 remote target. It is undefined which thread of which process
4854 reports the stop. */
4855
4856 static void
4857 remote_stop_as (ptid_t ptid)
4858 {
4859 struct remote_state *rs = get_remote_state ();
4860
4861 rs->ctrlc_pending_p = 1;
4862
4863 /* If the inferior is stopped already, but the core didn't know
4864 about it yet, just ignore the request. The cached wait status
4865 will be collected in remote_wait. */
4866 if (rs->cached_wait_status)
4867 return;
4868
4869 /* Send interrupt_sequence to remote target. */
4870 send_interrupt_sequence ();
4871 }
4872
4873 /* This is the generic stop called via the target vector. When a target
4874 interrupt is requested, either by the command line or the GUI, we
4875 will eventually end up here. */
4876
4877 static void
4878 remote_stop (ptid_t ptid)
4879 {
4880 if (remote_debug)
4881 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
4882
4883 if (non_stop)
4884 remote_stop_ns (ptid);
4885 else
4886 remote_stop_as (ptid);
4887 }
4888
4889 /* Ask the user what to do when an interrupt is received. */
4890
4891 static void
4892 interrupt_query (void)
4893 {
4894 target_terminal_ours ();
4895
4896 if (target_can_async_p ())
4897 {
4898 signal (SIGINT, handle_sigint);
4899 deprecated_throw_reason (RETURN_QUIT);
4900 }
4901 else
4902 {
4903 if (query (_("Interrupted while waiting for the program.\n\
4904 Give up (and stop debugging it)? ")))
4905 {
4906 pop_target ();
4907 deprecated_throw_reason (RETURN_QUIT);
4908 }
4909 }
4910
4911 target_terminal_inferior ();
4912 }
4913
4914 /* Enable/disable target terminal ownership. Most targets can use
4915 terminal groups to control terminal ownership. Remote targets are
4916 different in that explicit transfer of ownership to/from GDB/target
4917 is required. */
4918
4919 static void
4920 remote_terminal_inferior (void)
4921 {
4922 if (!target_async_permitted)
4923 /* Nothing to do. */
4924 return;
4925
4926 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
4927 idempotent. The event-loop GDB talking to an asynchronous target
4928 with a synchronous command calls this function from both
4929 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
4930 transfer the terminal to the target when it shouldn't this guard
4931 can go away. */
4932 if (!remote_async_terminal_ours_p)
4933 return;
4934 delete_file_handler (input_fd);
4935 remote_async_terminal_ours_p = 0;
4936 initialize_sigint_signal_handler ();
4937 /* NOTE: At this point we could also register our selves as the
4938 recipient of all input. Any characters typed could then be
4939 passed on down to the target. */
4940 }
4941
4942 static void
4943 remote_terminal_ours (void)
4944 {
4945 if (!target_async_permitted)
4946 /* Nothing to do. */
4947 return;
4948
4949 /* See FIXME in remote_terminal_inferior. */
4950 if (remote_async_terminal_ours_p)
4951 return;
4952 cleanup_sigint_signal_handler (NULL);
4953 add_file_handler (input_fd, stdin_event_handler, 0);
4954 remote_async_terminal_ours_p = 1;
4955 }
4956
4957 static void
4958 remote_console_output (char *msg)
4959 {
4960 char *p;
4961
4962 for (p = msg; p[0] && p[1]; p += 2)
4963 {
4964 char tb[2];
4965 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
4966
4967 tb[0] = c;
4968 tb[1] = 0;
4969 fputs_unfiltered (tb, gdb_stdtarg);
4970 }
4971 gdb_flush (gdb_stdtarg);
4972 }
4973
4974 typedef struct cached_reg
4975 {
4976 int num;
4977 gdb_byte data[MAX_REGISTER_SIZE];
4978 } cached_reg_t;
4979
4980 DEF_VEC_O(cached_reg_t);
4981
4982 struct stop_reply
4983 {
4984 struct stop_reply *next;
4985
4986 ptid_t ptid;
4987
4988 struct target_waitstatus ws;
4989
4990 /* Expedited registers. This makes remote debugging a bit more
4991 efficient for those targets that provide critical registers as
4992 part of their normal status mechanism (as another roundtrip to
4993 fetch them is avoided). */
4994 VEC(cached_reg_t) *regcache;
4995
4996 int stopped_by_watchpoint_p;
4997 CORE_ADDR watch_data_address;
4998
4999 int solibs_changed;
5000 int replay_event;
5001
5002 int core;
5003 };
5004
5005 /* The list of already fetched and acknowledged stop events. */
5006 static struct stop_reply *stop_reply_queue;
5007
5008 static struct stop_reply *
5009 stop_reply_xmalloc (void)
5010 {
5011 struct stop_reply *r = XMALLOC (struct stop_reply);
5012
5013 r->next = NULL;
5014 return r;
5015 }
5016
5017 static void
5018 stop_reply_xfree (struct stop_reply *r)
5019 {
5020 if (r != NULL)
5021 {
5022 VEC_free (cached_reg_t, r->regcache);
5023 xfree (r);
5024 }
5025 }
5026
5027 /* Discard all pending stop replies of inferior PID. If PID is -1,
5028 discard everything. */
5029
5030 static void
5031 discard_pending_stop_replies (int pid)
5032 {
5033 struct stop_reply *prev = NULL, *reply, *next;
5034
5035 /* Discard the in-flight notification. */
5036 if (pending_stop_reply != NULL
5037 && (pid == -1
5038 || ptid_get_pid (pending_stop_reply->ptid) == pid))
5039 {
5040 stop_reply_xfree (pending_stop_reply);
5041 pending_stop_reply = NULL;
5042 }
5043
5044 /* Discard the stop replies we have already pulled with
5045 vStopped. */
5046 for (reply = stop_reply_queue; reply; reply = next)
5047 {
5048 next = reply->next;
5049 if (pid == -1
5050 || ptid_get_pid (reply->ptid) == pid)
5051 {
5052 if (reply == stop_reply_queue)
5053 stop_reply_queue = reply->next;
5054 else
5055 prev->next = reply->next;
5056
5057 stop_reply_xfree (reply);
5058 }
5059 else
5060 prev = reply;
5061 }
5062 }
5063
5064 /* Cleanup wrapper. */
5065
5066 static void
5067 do_stop_reply_xfree (void *arg)
5068 {
5069 struct stop_reply *r = arg;
5070
5071 stop_reply_xfree (r);
5072 }
5073
5074 /* Look for a queued stop reply belonging to PTID. If one is found,
5075 remove it from the queue, and return it. Returns NULL if none is
5076 found. If there are still queued events left to process, tell the
5077 event loop to get back to target_wait soon. */
5078
5079 static struct stop_reply *
5080 queued_stop_reply (ptid_t ptid)
5081 {
5082 struct stop_reply *it;
5083 struct stop_reply **it_link;
5084
5085 it = stop_reply_queue;
5086 it_link = &stop_reply_queue;
5087 while (it)
5088 {
5089 if (ptid_match (it->ptid, ptid))
5090 {
5091 *it_link = it->next;
5092 it->next = NULL;
5093 break;
5094 }
5095
5096 it_link = &it->next;
5097 it = *it_link;
5098 }
5099
5100 if (stop_reply_queue)
5101 /* There's still at least an event left. */
5102 mark_async_event_handler (remote_async_inferior_event_token);
5103
5104 return it;
5105 }
5106
5107 /* Push a fully parsed stop reply in the stop reply queue. Since we
5108 know that we now have at least one queued event left to pass to the
5109 core side, tell the event loop to get back to target_wait soon. */
5110
5111 static void
5112 push_stop_reply (struct stop_reply *new_event)
5113 {
5114 struct stop_reply *event;
5115
5116 if (stop_reply_queue)
5117 {
5118 for (event = stop_reply_queue;
5119 event && event->next;
5120 event = event->next)
5121 ;
5122
5123 event->next = new_event;
5124 }
5125 else
5126 stop_reply_queue = new_event;
5127
5128 mark_async_event_handler (remote_async_inferior_event_token);
5129 }
5130
5131 /* Returns true if we have a stop reply for PTID. */
5132
5133 static int
5134 peek_stop_reply (ptid_t ptid)
5135 {
5136 struct stop_reply *it;
5137
5138 for (it = stop_reply_queue; it; it = it->next)
5139 if (ptid_equal (ptid, it->ptid))
5140 {
5141 if (it->ws.kind == TARGET_WAITKIND_STOPPED)
5142 return 1;
5143 }
5144
5145 return 0;
5146 }
5147
5148 /* Parse the stop reply in BUF. Either the function succeeds, and the
5149 result is stored in EVENT, or throws an error. */
5150
5151 static void
5152 remote_parse_stop_reply (char *buf, struct stop_reply *event)
5153 {
5154 struct remote_arch_state *rsa = get_remote_arch_state ();
5155 ULONGEST addr;
5156 char *p;
5157
5158 event->ptid = null_ptid;
5159 event->ws.kind = TARGET_WAITKIND_IGNORE;
5160 event->ws.value.integer = 0;
5161 event->solibs_changed = 0;
5162 event->replay_event = 0;
5163 event->stopped_by_watchpoint_p = 0;
5164 event->regcache = NULL;
5165 event->core = -1;
5166
5167 switch (buf[0])
5168 {
5169 case 'T': /* Status with PC, SP, FP, ... */
5170 /* Expedited reply, containing Signal, {regno, reg} repeat. */
5171 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
5172 ss = signal number
5173 n... = register number
5174 r... = register contents
5175 */
5176
5177 p = &buf[3]; /* after Txx */
5178 while (*p)
5179 {
5180 char *p1;
5181 char *p_temp;
5182 int fieldsize;
5183 LONGEST pnum = 0;
5184
5185 /* If the packet contains a register number, save it in
5186 pnum and set p1 to point to the character following it.
5187 Otherwise p1 points to p. */
5188
5189 /* If this packet is an awatch packet, don't parse the 'a'
5190 as a register number. */
5191
5192 if (strncmp (p, "awatch", strlen("awatch")) != 0
5193 && strncmp (p, "core", strlen ("core") != 0))
5194 {
5195 /* Read the ``P'' register number. */
5196 pnum = strtol (p, &p_temp, 16);
5197 p1 = p_temp;
5198 }
5199 else
5200 p1 = p;
5201
5202 if (p1 == p) /* No register number present here. */
5203 {
5204 p1 = strchr (p, ':');
5205 if (p1 == NULL)
5206 error (_("Malformed packet(a) (missing colon): %s\n\
5207 Packet: '%s'\n"),
5208 p, buf);
5209 if (strncmp (p, "thread", p1 - p) == 0)
5210 event->ptid = read_ptid (++p1, &p);
5211 else if ((strncmp (p, "watch", p1 - p) == 0)
5212 || (strncmp (p, "rwatch", p1 - p) == 0)
5213 || (strncmp (p, "awatch", p1 - p) == 0))
5214 {
5215 event->stopped_by_watchpoint_p = 1;
5216 p = unpack_varlen_hex (++p1, &addr);
5217 event->watch_data_address = (CORE_ADDR) addr;
5218 }
5219 else if (strncmp (p, "library", p1 - p) == 0)
5220 {
5221 p1++;
5222 p_temp = p1;
5223 while (*p_temp && *p_temp != ';')
5224 p_temp++;
5225
5226 event->solibs_changed = 1;
5227 p = p_temp;
5228 }
5229 else if (strncmp (p, "replaylog", p1 - p) == 0)
5230 {
5231 /* NO_HISTORY event.
5232 p1 will indicate "begin" or "end", but
5233 it makes no difference for now, so ignore it. */
5234 event->replay_event = 1;
5235 p_temp = strchr (p1 + 1, ';');
5236 if (p_temp)
5237 p = p_temp;
5238 }
5239 else if (strncmp (p, "core", p1 - p) == 0)
5240 {
5241 ULONGEST c;
5242
5243 p = unpack_varlen_hex (++p1, &c);
5244 event->core = c;
5245 }
5246 else
5247 {
5248 /* Silently skip unknown optional info. */
5249 p_temp = strchr (p1 + 1, ';');
5250 if (p_temp)
5251 p = p_temp;
5252 }
5253 }
5254 else
5255 {
5256 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
5257 cached_reg_t cached_reg;
5258
5259 p = p1;
5260
5261 if (*p != ':')
5262 error (_("Malformed packet(b) (missing colon): %s\n\
5263 Packet: '%s'\n"),
5264 p, buf);
5265 ++p;
5266
5267 if (reg == NULL)
5268 error (_("Remote sent bad register number %s: %s\n\
5269 Packet: '%s'\n"),
5270 hex_string (pnum), p, buf);
5271
5272 cached_reg.num = reg->regnum;
5273
5274 fieldsize = hex2bin (p, cached_reg.data,
5275 register_size (target_gdbarch,
5276 reg->regnum));
5277 p += 2 * fieldsize;
5278 if (fieldsize < register_size (target_gdbarch,
5279 reg->regnum))
5280 warning (_("Remote reply is too short: %s"), buf);
5281
5282 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
5283 }
5284
5285 if (*p != ';')
5286 error (_("Remote register badly formatted: %s\nhere: %s"),
5287 buf, p);
5288 ++p;
5289 }
5290 /* fall through */
5291 case 'S': /* Old style status, just signal only. */
5292 if (event->solibs_changed)
5293 event->ws.kind = TARGET_WAITKIND_LOADED;
5294 else if (event->replay_event)
5295 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
5296 else
5297 {
5298 event->ws.kind = TARGET_WAITKIND_STOPPED;
5299 event->ws.value.sig = (enum target_signal)
5300 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
5301 }
5302 break;
5303 case 'W': /* Target exited. */
5304 case 'X':
5305 {
5306 char *p;
5307 int pid;
5308 ULONGEST value;
5309
5310 /* GDB used to accept only 2 hex chars here. Stubs should
5311 only send more if they detect GDB supports multi-process
5312 support. */
5313 p = unpack_varlen_hex (&buf[1], &value);
5314
5315 if (buf[0] == 'W')
5316 {
5317 /* The remote process exited. */
5318 event->ws.kind = TARGET_WAITKIND_EXITED;
5319 event->ws.value.integer = value;
5320 }
5321 else
5322 {
5323 /* The remote process exited with a signal. */
5324 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
5325 event->ws.value.sig = (enum target_signal) value;
5326 }
5327
5328 /* If no process is specified, assume inferior_ptid. */
5329 pid = ptid_get_pid (inferior_ptid);
5330 if (*p == '\0')
5331 ;
5332 else if (*p == ';')
5333 {
5334 p++;
5335
5336 if (p == '\0')
5337 ;
5338 else if (strncmp (p,
5339 "process:", sizeof ("process:") - 1) == 0)
5340 {
5341 ULONGEST upid;
5342
5343 p += sizeof ("process:") - 1;
5344 unpack_varlen_hex (p, &upid);
5345 pid = upid;
5346 }
5347 else
5348 error (_("unknown stop reply packet: %s"), buf);
5349 }
5350 else
5351 error (_("unknown stop reply packet: %s"), buf);
5352 event->ptid = pid_to_ptid (pid);
5353 }
5354 break;
5355 }
5356
5357 if (non_stop && ptid_equal (event->ptid, null_ptid))
5358 error (_("No process or thread specified in stop reply: %s"), buf);
5359 }
5360
5361 /* When the stub wants to tell GDB about a new stop reply, it sends a
5362 stop notification (%Stop). Those can come it at any time, hence,
5363 we have to make sure that any pending putpkt/getpkt sequence we're
5364 making is finished, before querying the stub for more events with
5365 vStopped. E.g., if we started a vStopped sequence immediatelly
5366 upon receiving the %Stop notification, something like this could
5367 happen:
5368
5369 1.1) --> Hg 1
5370 1.2) <-- OK
5371 1.3) --> g
5372 1.4) <-- %Stop
5373 1.5) --> vStopped
5374 1.6) <-- (registers reply to step #1.3)
5375
5376 Obviously, the reply in step #1.6 would be unexpected to a vStopped
5377 query.
5378
5379 To solve this, whenever we parse a %Stop notification sucessfully,
5380 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
5381 doing whatever we were doing:
5382
5383 2.1) --> Hg 1
5384 2.2) <-- OK
5385 2.3) --> g
5386 2.4) <-- %Stop
5387 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
5388 2.5) <-- (registers reply to step #2.3)
5389
5390 Eventualy after step #2.5, we return to the event loop, which
5391 notices there's an event on the
5392 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
5393 associated callback --- the function below. At this point, we're
5394 always safe to start a vStopped sequence. :
5395
5396 2.6) --> vStopped
5397 2.7) <-- T05 thread:2
5398 2.8) --> vStopped
5399 2.9) --> OK
5400 */
5401
5402 static void
5403 remote_get_pending_stop_replies (void)
5404 {
5405 struct remote_state *rs = get_remote_state ();
5406
5407 if (pending_stop_reply)
5408 {
5409 /* acknowledge */
5410 putpkt ("vStopped");
5411
5412 /* Now we can rely on it. */
5413 push_stop_reply (pending_stop_reply);
5414 pending_stop_reply = NULL;
5415
5416 while (1)
5417 {
5418 getpkt (&rs->buf, &rs->buf_size, 0);
5419 if (strcmp (rs->buf, "OK") == 0)
5420 break;
5421 else
5422 {
5423 struct cleanup *old_chain;
5424 struct stop_reply *stop_reply = stop_reply_xmalloc ();
5425
5426 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
5427 remote_parse_stop_reply (rs->buf, stop_reply);
5428
5429 /* acknowledge */
5430 putpkt ("vStopped");
5431
5432 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
5433 {
5434 /* Now we can rely on it. */
5435 discard_cleanups (old_chain);
5436 push_stop_reply (stop_reply);
5437 }
5438 else
5439 /* We got an unknown stop reply. */
5440 do_cleanups (old_chain);
5441 }
5442 }
5443 }
5444 }
5445
5446
5447 /* Called when it is decided that STOP_REPLY holds the info of the
5448 event that is to be returned to the core. This function always
5449 destroys STOP_REPLY. */
5450
5451 static ptid_t
5452 process_stop_reply (struct stop_reply *stop_reply,
5453 struct target_waitstatus *status)
5454 {
5455 ptid_t ptid;
5456
5457 *status = stop_reply->ws;
5458 ptid = stop_reply->ptid;
5459
5460 /* If no thread/process was reported by the stub, assume the current
5461 inferior. */
5462 if (ptid_equal (ptid, null_ptid))
5463 ptid = inferior_ptid;
5464
5465 if (status->kind != TARGET_WAITKIND_EXITED
5466 && status->kind != TARGET_WAITKIND_SIGNALLED)
5467 {
5468 /* Expedited registers. */
5469 if (stop_reply->regcache)
5470 {
5471 struct regcache *regcache
5472 = get_thread_arch_regcache (ptid, target_gdbarch);
5473 cached_reg_t *reg;
5474 int ix;
5475
5476 for (ix = 0;
5477 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
5478 ix++)
5479 regcache_raw_supply (regcache, reg->num, reg->data);
5480 VEC_free (cached_reg_t, stop_reply->regcache);
5481 }
5482
5483 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
5484 remote_watch_data_address = stop_reply->watch_data_address;
5485
5486 remote_notice_new_inferior (ptid, 0);
5487 demand_private_info (ptid)->core = stop_reply->core;
5488 }
5489
5490 stop_reply_xfree (stop_reply);
5491 return ptid;
5492 }
5493
5494 /* The non-stop mode version of target_wait. */
5495
5496 static ptid_t
5497 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
5498 {
5499 struct remote_state *rs = get_remote_state ();
5500 struct stop_reply *stop_reply;
5501 int ret;
5502
5503 /* If in non-stop mode, get out of getpkt even if a
5504 notification is received. */
5505
5506 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5507 0 /* forever */);
5508 while (1)
5509 {
5510 if (ret != -1)
5511 switch (rs->buf[0])
5512 {
5513 case 'E': /* Error of some sort. */
5514 /* We're out of sync with the target now. Did it continue
5515 or not? We can't tell which thread it was in non-stop,
5516 so just ignore this. */
5517 warning (_("Remote failure reply: %s"), rs->buf);
5518 break;
5519 case 'O': /* Console output. */
5520 remote_console_output (rs->buf + 1);
5521 break;
5522 default:
5523 warning (_("Invalid remote reply: %s"), rs->buf);
5524 break;
5525 }
5526
5527 /* Acknowledge a pending stop reply that may have arrived in the
5528 mean time. */
5529 if (pending_stop_reply != NULL)
5530 remote_get_pending_stop_replies ();
5531
5532 /* If indeed we noticed a stop reply, we're done. */
5533 stop_reply = queued_stop_reply (ptid);
5534 if (stop_reply != NULL)
5535 return process_stop_reply (stop_reply, status);
5536
5537 /* Still no event. If we're just polling for an event, then
5538 return to the event loop. */
5539 if (options & TARGET_WNOHANG)
5540 {
5541 status->kind = TARGET_WAITKIND_IGNORE;
5542 return minus_one_ptid;
5543 }
5544
5545 /* Otherwise do a blocking wait. */
5546 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5547 1 /* forever */);
5548 }
5549 }
5550
5551 /* Wait until the remote machine stops, then return, storing status in
5552 STATUS just as `wait' would. */
5553
5554 static ptid_t
5555 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
5556 {
5557 struct remote_state *rs = get_remote_state ();
5558 ptid_t event_ptid = null_ptid;
5559 char *buf;
5560 struct stop_reply *stop_reply;
5561
5562 again:
5563
5564 status->kind = TARGET_WAITKIND_IGNORE;
5565 status->value.integer = 0;
5566
5567 stop_reply = queued_stop_reply (ptid);
5568 if (stop_reply != NULL)
5569 return process_stop_reply (stop_reply, status);
5570
5571 if (rs->cached_wait_status)
5572 /* Use the cached wait status, but only once. */
5573 rs->cached_wait_status = 0;
5574 else
5575 {
5576 int ret;
5577
5578 if (!target_is_async_p ())
5579 {
5580 ofunc = signal (SIGINT, remote_interrupt);
5581 /* If the user hit C-c before this packet, or between packets,
5582 pretend that it was hit right here. */
5583 if (quit_flag)
5584 {
5585 quit_flag = 0;
5586 remote_interrupt (SIGINT);
5587 }
5588 }
5589
5590 /* FIXME: cagney/1999-09-27: If we're in async mode we should
5591 _never_ wait for ever -> test on target_is_async_p().
5592 However, before we do that we need to ensure that the caller
5593 knows how to take the target into/out of async mode. */
5594 ret = getpkt_sane (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
5595 if (!target_is_async_p ())
5596 signal (SIGINT, ofunc);
5597 }
5598
5599 buf = rs->buf;
5600
5601 remote_stopped_by_watchpoint_p = 0;
5602
5603 /* We got something. */
5604 rs->waiting_for_stop_reply = 0;
5605
5606 /* Assume that the target has acknowledged Ctrl-C unless we receive
5607 an 'F' or 'O' packet. */
5608 if (buf[0] != 'F' && buf[0] != 'O')
5609 rs->ctrlc_pending_p = 0;
5610
5611 switch (buf[0])
5612 {
5613 case 'E': /* Error of some sort. */
5614 /* We're out of sync with the target now. Did it continue or
5615 not? Not is more likely, so report a stop. */
5616 warning (_("Remote failure reply: %s"), buf);
5617 status->kind = TARGET_WAITKIND_STOPPED;
5618 status->value.sig = TARGET_SIGNAL_0;
5619 break;
5620 case 'F': /* File-I/O request. */
5621 remote_fileio_request (buf, rs->ctrlc_pending_p);
5622 rs->ctrlc_pending_p = 0;
5623 break;
5624 case 'T': case 'S': case 'X': case 'W':
5625 {
5626 struct stop_reply *stop_reply;
5627 struct cleanup *old_chain;
5628
5629 stop_reply = stop_reply_xmalloc ();
5630 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
5631 remote_parse_stop_reply (buf, stop_reply);
5632 discard_cleanups (old_chain);
5633 event_ptid = process_stop_reply (stop_reply, status);
5634 break;
5635 }
5636 case 'O': /* Console output. */
5637 remote_console_output (buf + 1);
5638
5639 /* The target didn't really stop; keep waiting. */
5640 rs->waiting_for_stop_reply = 1;
5641
5642 break;
5643 case '\0':
5644 if (last_sent_signal != TARGET_SIGNAL_0)
5645 {
5646 /* Zero length reply means that we tried 'S' or 'C' and the
5647 remote system doesn't support it. */
5648 target_terminal_ours_for_output ();
5649 printf_filtered
5650 ("Can't send signals to this remote system. %s not sent.\n",
5651 target_signal_to_name (last_sent_signal));
5652 last_sent_signal = TARGET_SIGNAL_0;
5653 target_terminal_inferior ();
5654
5655 strcpy ((char *) buf, last_sent_step ? "s" : "c");
5656 putpkt ((char *) buf);
5657
5658 /* We just told the target to resume, so a stop reply is in
5659 order. */
5660 rs->waiting_for_stop_reply = 1;
5661 break;
5662 }
5663 /* else fallthrough */
5664 default:
5665 warning (_("Invalid remote reply: %s"), buf);
5666 /* Keep waiting. */
5667 rs->waiting_for_stop_reply = 1;
5668 break;
5669 }
5670
5671 if (status->kind == TARGET_WAITKIND_IGNORE)
5672 {
5673 /* Nothing interesting happened. If we're doing a non-blocking
5674 poll, we're done. Otherwise, go back to waiting. */
5675 if (options & TARGET_WNOHANG)
5676 return minus_one_ptid;
5677 else
5678 goto again;
5679 }
5680 else if (status->kind != TARGET_WAITKIND_EXITED
5681 && status->kind != TARGET_WAITKIND_SIGNALLED)
5682 {
5683 if (!ptid_equal (event_ptid, null_ptid))
5684 record_currthread (event_ptid);
5685 else
5686 event_ptid = inferior_ptid;
5687 }
5688 else
5689 /* A process exit. Invalidate our notion of current thread. */
5690 record_currthread (minus_one_ptid);
5691
5692 return event_ptid;
5693 }
5694
5695 /* Wait until the remote machine stops, then return, storing status in
5696 STATUS just as `wait' would. */
5697
5698 static ptid_t
5699 remote_wait (struct target_ops *ops,
5700 ptid_t ptid, struct target_waitstatus *status, int options)
5701 {
5702 ptid_t event_ptid;
5703
5704 if (non_stop)
5705 event_ptid = remote_wait_ns (ptid, status, options);
5706 else
5707 event_ptid = remote_wait_as (ptid, status, options);
5708
5709 if (target_can_async_p ())
5710 {
5711 /* If there are are events left in the queue tell the event loop
5712 to return here. */
5713 if (stop_reply_queue)
5714 mark_async_event_handler (remote_async_inferior_event_token);
5715 }
5716
5717 return event_ptid;
5718 }
5719
5720 /* Fetch a single register using a 'p' packet. */
5721
5722 static int
5723 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
5724 {
5725 struct remote_state *rs = get_remote_state ();
5726 char *buf, *p;
5727 char regp[MAX_REGISTER_SIZE];
5728 int i;
5729
5730 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
5731 return 0;
5732
5733 if (reg->pnum == -1)
5734 return 0;
5735
5736 p = rs->buf;
5737 *p++ = 'p';
5738 p += hexnumstr (p, reg->pnum);
5739 *p++ = '\0';
5740 putpkt (rs->buf);
5741 getpkt (&rs->buf, &rs->buf_size, 0);
5742
5743 buf = rs->buf;
5744
5745 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
5746 {
5747 case PACKET_OK:
5748 break;
5749 case PACKET_UNKNOWN:
5750 return 0;
5751 case PACKET_ERROR:
5752 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
5753 gdbarch_register_name (get_regcache_arch (regcache),
5754 reg->regnum),
5755 buf);
5756 }
5757
5758 /* If this register is unfetchable, tell the regcache. */
5759 if (buf[0] == 'x')
5760 {
5761 regcache_raw_supply (regcache, reg->regnum, NULL);
5762 return 1;
5763 }
5764
5765 /* Otherwise, parse and supply the value. */
5766 p = buf;
5767 i = 0;
5768 while (p[0] != 0)
5769 {
5770 if (p[1] == 0)
5771 error (_("fetch_register_using_p: early buf termination"));
5772
5773 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
5774 p += 2;
5775 }
5776 regcache_raw_supply (regcache, reg->regnum, regp);
5777 return 1;
5778 }
5779
5780 /* Fetch the registers included in the target's 'g' packet. */
5781
5782 static int
5783 send_g_packet (void)
5784 {
5785 struct remote_state *rs = get_remote_state ();
5786 int buf_len;
5787
5788 sprintf (rs->buf, "g");
5789 remote_send (&rs->buf, &rs->buf_size);
5790
5791 /* We can get out of synch in various cases. If the first character
5792 in the buffer is not a hex character, assume that has happened
5793 and try to fetch another packet to read. */
5794 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
5795 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
5796 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
5797 && rs->buf[0] != 'x') /* New: unavailable register value. */
5798 {
5799 if (remote_debug)
5800 fprintf_unfiltered (gdb_stdlog,
5801 "Bad register packet; fetching a new packet\n");
5802 getpkt (&rs->buf, &rs->buf_size, 0);
5803 }
5804
5805 buf_len = strlen (rs->buf);
5806
5807 /* Sanity check the received packet. */
5808 if (buf_len % 2 != 0)
5809 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
5810
5811 return buf_len / 2;
5812 }
5813
5814 static void
5815 process_g_packet (struct regcache *regcache)
5816 {
5817 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5818 struct remote_state *rs = get_remote_state ();
5819 struct remote_arch_state *rsa = get_remote_arch_state ();
5820 int i, buf_len;
5821 char *p;
5822 char *regs;
5823
5824 buf_len = strlen (rs->buf);
5825
5826 /* Further sanity checks, with knowledge of the architecture. */
5827 if (buf_len > 2 * rsa->sizeof_g_packet)
5828 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
5829
5830 /* Save the size of the packet sent to us by the target. It is used
5831 as a heuristic when determining the max size of packets that the
5832 target can safely receive. */
5833 if (rsa->actual_register_packet_size == 0)
5834 rsa->actual_register_packet_size = buf_len;
5835
5836 /* If this is smaller than we guessed the 'g' packet would be,
5837 update our records. A 'g' reply that doesn't include a register's
5838 value implies either that the register is not available, or that
5839 the 'p' packet must be used. */
5840 if (buf_len < 2 * rsa->sizeof_g_packet)
5841 {
5842 rsa->sizeof_g_packet = buf_len / 2;
5843
5844 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
5845 {
5846 if (rsa->regs[i].pnum == -1)
5847 continue;
5848
5849 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
5850 rsa->regs[i].in_g_packet = 0;
5851 else
5852 rsa->regs[i].in_g_packet = 1;
5853 }
5854 }
5855
5856 regs = alloca (rsa->sizeof_g_packet);
5857
5858 /* Unimplemented registers read as all bits zero. */
5859 memset (regs, 0, rsa->sizeof_g_packet);
5860
5861 /* Reply describes registers byte by byte, each byte encoded as two
5862 hex characters. Suck them all up, then supply them to the
5863 register cacheing/storage mechanism. */
5864
5865 p = rs->buf;
5866 for (i = 0; i < rsa->sizeof_g_packet; i++)
5867 {
5868 if (p[0] == 0 || p[1] == 0)
5869 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
5870 internal_error (__FILE__, __LINE__,
5871 _("unexpected end of 'g' packet reply"));
5872
5873 if (p[0] == 'x' && p[1] == 'x')
5874 regs[i] = 0; /* 'x' */
5875 else
5876 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
5877 p += 2;
5878 }
5879
5880 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
5881 {
5882 struct packet_reg *r = &rsa->regs[i];
5883
5884 if (r->in_g_packet)
5885 {
5886 if (r->offset * 2 >= strlen (rs->buf))
5887 /* This shouldn't happen - we adjusted in_g_packet above. */
5888 internal_error (__FILE__, __LINE__,
5889 _("unexpected end of 'g' packet reply"));
5890 else if (rs->buf[r->offset * 2] == 'x')
5891 {
5892 gdb_assert (r->offset * 2 < strlen (rs->buf));
5893 /* The register isn't available, mark it as such (at
5894 the same time setting the value to zero). */
5895 regcache_raw_supply (regcache, r->regnum, NULL);
5896 }
5897 else
5898 regcache_raw_supply (regcache, r->regnum,
5899 regs + r->offset);
5900 }
5901 }
5902 }
5903
5904 static void
5905 fetch_registers_using_g (struct regcache *regcache)
5906 {
5907 send_g_packet ();
5908 process_g_packet (regcache);
5909 }
5910
5911 /* Make the remote selected traceframe match GDB's selected
5912 traceframe. */
5913
5914 static void
5915 set_remote_traceframe (void)
5916 {
5917 int newnum;
5918
5919 if (remote_traceframe_number == get_traceframe_number ())
5920 return;
5921
5922 /* Avoid recursion, remote_trace_find calls us again. */
5923 remote_traceframe_number = get_traceframe_number ();
5924
5925 newnum = target_trace_find (tfind_number,
5926 get_traceframe_number (), 0, 0, NULL);
5927
5928 /* Should not happen. If it does, all bets are off. */
5929 if (newnum != get_traceframe_number ())
5930 warning (_("could not set remote traceframe"));
5931 }
5932
5933 static void
5934 remote_fetch_registers (struct target_ops *ops,
5935 struct regcache *regcache, int regnum)
5936 {
5937 struct remote_arch_state *rsa = get_remote_arch_state ();
5938 int i;
5939
5940 set_remote_traceframe ();
5941 set_general_thread (inferior_ptid);
5942
5943 if (regnum >= 0)
5944 {
5945 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5946
5947 gdb_assert (reg != NULL);
5948
5949 /* If this register might be in the 'g' packet, try that first -
5950 we are likely to read more than one register. If this is the
5951 first 'g' packet, we might be overly optimistic about its
5952 contents, so fall back to 'p'. */
5953 if (reg->in_g_packet)
5954 {
5955 fetch_registers_using_g (regcache);
5956 if (reg->in_g_packet)
5957 return;
5958 }
5959
5960 if (fetch_register_using_p (regcache, reg))
5961 return;
5962
5963 /* This register is not available. */
5964 regcache_raw_supply (regcache, reg->regnum, NULL);
5965
5966 return;
5967 }
5968
5969 fetch_registers_using_g (regcache);
5970
5971 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5972 if (!rsa->regs[i].in_g_packet)
5973 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
5974 {
5975 /* This register is not available. */
5976 regcache_raw_supply (regcache, i, NULL);
5977 }
5978 }
5979
5980 /* Prepare to store registers. Since we may send them all (using a
5981 'G' request), we have to read out the ones we don't want to change
5982 first. */
5983
5984 static void
5985 remote_prepare_to_store (struct regcache *regcache)
5986 {
5987 struct remote_arch_state *rsa = get_remote_arch_state ();
5988 int i;
5989 gdb_byte buf[MAX_REGISTER_SIZE];
5990
5991 /* Make sure the entire registers array is valid. */
5992 switch (remote_protocol_packets[PACKET_P].support)
5993 {
5994 case PACKET_DISABLE:
5995 case PACKET_SUPPORT_UNKNOWN:
5996 /* Make sure all the necessary registers are cached. */
5997 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
5998 if (rsa->regs[i].in_g_packet)
5999 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
6000 break;
6001 case PACKET_ENABLE:
6002 break;
6003 }
6004 }
6005
6006 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
6007 packet was not recognized. */
6008
6009 static int
6010 store_register_using_P (const struct regcache *regcache,
6011 struct packet_reg *reg)
6012 {
6013 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6014 struct remote_state *rs = get_remote_state ();
6015 /* Try storing a single register. */
6016 char *buf = rs->buf;
6017 gdb_byte regp[MAX_REGISTER_SIZE];
6018 char *p;
6019
6020 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
6021 return 0;
6022
6023 if (reg->pnum == -1)
6024 return 0;
6025
6026 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
6027 p = buf + strlen (buf);
6028 regcache_raw_collect (regcache, reg->regnum, regp);
6029 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
6030 putpkt (rs->buf);
6031 getpkt (&rs->buf, &rs->buf_size, 0);
6032
6033 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
6034 {
6035 case PACKET_OK:
6036 return 1;
6037 case PACKET_ERROR:
6038 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
6039 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
6040 case PACKET_UNKNOWN:
6041 return 0;
6042 default:
6043 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
6044 }
6045 }
6046
6047 /* Store register REGNUM, or all registers if REGNUM == -1, from the
6048 contents of the register cache buffer. FIXME: ignores errors. */
6049
6050 static void
6051 store_registers_using_G (const struct regcache *regcache)
6052 {
6053 struct remote_state *rs = get_remote_state ();
6054 struct remote_arch_state *rsa = get_remote_arch_state ();
6055 gdb_byte *regs;
6056 char *p;
6057
6058 /* Extract all the registers in the regcache copying them into a
6059 local buffer. */
6060 {
6061 int i;
6062
6063 regs = alloca (rsa->sizeof_g_packet);
6064 memset (regs, 0, rsa->sizeof_g_packet);
6065 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6066 {
6067 struct packet_reg *r = &rsa->regs[i];
6068
6069 if (r->in_g_packet)
6070 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
6071 }
6072 }
6073
6074 /* Command describes registers byte by byte,
6075 each byte encoded as two hex characters. */
6076 p = rs->buf;
6077 *p++ = 'G';
6078 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
6079 updated. */
6080 bin2hex (regs, p, rsa->sizeof_g_packet);
6081 putpkt (rs->buf);
6082 getpkt (&rs->buf, &rs->buf_size, 0);
6083 if (packet_check_result (rs->buf) == PACKET_ERROR)
6084 error (_("Could not write registers; remote failure reply '%s'"),
6085 rs->buf);
6086 }
6087
6088 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
6089 of the register cache buffer. FIXME: ignores errors. */
6090
6091 static void
6092 remote_store_registers (struct target_ops *ops,
6093 struct regcache *regcache, int regnum)
6094 {
6095 struct remote_arch_state *rsa = get_remote_arch_state ();
6096 int i;
6097
6098 set_remote_traceframe ();
6099 set_general_thread (inferior_ptid);
6100
6101 if (regnum >= 0)
6102 {
6103 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6104
6105 gdb_assert (reg != NULL);
6106
6107 /* Always prefer to store registers using the 'P' packet if
6108 possible; we often change only a small number of registers.
6109 Sometimes we change a larger number; we'd need help from a
6110 higher layer to know to use 'G'. */
6111 if (store_register_using_P (regcache, reg))
6112 return;
6113
6114 /* For now, don't complain if we have no way to write the
6115 register. GDB loses track of unavailable registers too
6116 easily. Some day, this may be an error. We don't have
6117 any way to read the register, either... */
6118 if (!reg->in_g_packet)
6119 return;
6120
6121 store_registers_using_G (regcache);
6122 return;
6123 }
6124
6125 store_registers_using_G (regcache);
6126
6127 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6128 if (!rsa->regs[i].in_g_packet)
6129 if (!store_register_using_P (regcache, &rsa->regs[i]))
6130 /* See above for why we do not issue an error here. */
6131 continue;
6132 }
6133 \f
6134
6135 /* Return the number of hex digits in num. */
6136
6137 static int
6138 hexnumlen (ULONGEST num)
6139 {
6140 int i;
6141
6142 for (i = 0; num != 0; i++)
6143 num >>= 4;
6144
6145 return max (i, 1);
6146 }
6147
6148 /* Set BUF to the minimum number of hex digits representing NUM. */
6149
6150 static int
6151 hexnumstr (char *buf, ULONGEST num)
6152 {
6153 int len = hexnumlen (num);
6154
6155 return hexnumnstr (buf, num, len);
6156 }
6157
6158
6159 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
6160
6161 static int
6162 hexnumnstr (char *buf, ULONGEST num, int width)
6163 {
6164 int i;
6165
6166 buf[width] = '\0';
6167
6168 for (i = width - 1; i >= 0; i--)
6169 {
6170 buf[i] = "0123456789abcdef"[(num & 0xf)];
6171 num >>= 4;
6172 }
6173
6174 return width;
6175 }
6176
6177 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
6178
6179 static CORE_ADDR
6180 remote_address_masked (CORE_ADDR addr)
6181 {
6182 int address_size = remote_address_size;
6183
6184 /* If "remoteaddresssize" was not set, default to target address size. */
6185 if (!address_size)
6186 address_size = gdbarch_addr_bit (target_gdbarch);
6187
6188 if (address_size > 0
6189 && address_size < (sizeof (ULONGEST) * 8))
6190 {
6191 /* Only create a mask when that mask can safely be constructed
6192 in a ULONGEST variable. */
6193 ULONGEST mask = 1;
6194
6195 mask = (mask << address_size) - 1;
6196 addr &= mask;
6197 }
6198 return addr;
6199 }
6200
6201 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
6202 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
6203 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
6204 (which may be more than *OUT_LEN due to escape characters). The
6205 total number of bytes in the output buffer will be at most
6206 OUT_MAXLEN. */
6207
6208 static int
6209 remote_escape_output (const gdb_byte *buffer, int len,
6210 gdb_byte *out_buf, int *out_len,
6211 int out_maxlen)
6212 {
6213 int input_index, output_index;
6214
6215 output_index = 0;
6216 for (input_index = 0; input_index < len; input_index++)
6217 {
6218 gdb_byte b = buffer[input_index];
6219
6220 if (b == '$' || b == '#' || b == '}')
6221 {
6222 /* These must be escaped. */
6223 if (output_index + 2 > out_maxlen)
6224 break;
6225 out_buf[output_index++] = '}';
6226 out_buf[output_index++] = b ^ 0x20;
6227 }
6228 else
6229 {
6230 if (output_index + 1 > out_maxlen)
6231 break;
6232 out_buf[output_index++] = b;
6233 }
6234 }
6235
6236 *out_len = input_index;
6237 return output_index;
6238 }
6239
6240 /* Convert BUFFER, escaped data LEN bytes long, into binary data
6241 in OUT_BUF. Return the number of bytes written to OUT_BUF.
6242 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
6243
6244 This function reverses remote_escape_output. It allows more
6245 escaped characters than that function does, in particular because
6246 '*' must be escaped to avoid the run-length encoding processing
6247 in reading packets. */
6248
6249 static int
6250 remote_unescape_input (const gdb_byte *buffer, int len,
6251 gdb_byte *out_buf, int out_maxlen)
6252 {
6253 int input_index, output_index;
6254 int escaped;
6255
6256 output_index = 0;
6257 escaped = 0;
6258 for (input_index = 0; input_index < len; input_index++)
6259 {
6260 gdb_byte b = buffer[input_index];
6261
6262 if (output_index + 1 > out_maxlen)
6263 {
6264 warning (_("Received too much data from remote target;"
6265 " ignoring overflow."));
6266 return output_index;
6267 }
6268
6269 if (escaped)
6270 {
6271 out_buf[output_index++] = b ^ 0x20;
6272 escaped = 0;
6273 }
6274 else if (b == '}')
6275 escaped = 1;
6276 else
6277 out_buf[output_index++] = b;
6278 }
6279
6280 if (escaped)
6281 error (_("Unmatched escape character in target response."));
6282
6283 return output_index;
6284 }
6285
6286 /* Determine whether the remote target supports binary downloading.
6287 This is accomplished by sending a no-op memory write of zero length
6288 to the target at the specified address. It does not suffice to send
6289 the whole packet, since many stubs strip the eighth bit and
6290 subsequently compute a wrong checksum, which causes real havoc with
6291 remote_write_bytes.
6292
6293 NOTE: This can still lose if the serial line is not eight-bit
6294 clean. In cases like this, the user should clear "remote
6295 X-packet". */
6296
6297 static void
6298 check_binary_download (CORE_ADDR addr)
6299 {
6300 struct remote_state *rs = get_remote_state ();
6301
6302 switch (remote_protocol_packets[PACKET_X].support)
6303 {
6304 case PACKET_DISABLE:
6305 break;
6306 case PACKET_ENABLE:
6307 break;
6308 case PACKET_SUPPORT_UNKNOWN:
6309 {
6310 char *p;
6311
6312 p = rs->buf;
6313 *p++ = 'X';
6314 p += hexnumstr (p, (ULONGEST) addr);
6315 *p++ = ',';
6316 p += hexnumstr (p, (ULONGEST) 0);
6317 *p++ = ':';
6318 *p = '\0';
6319
6320 putpkt_binary (rs->buf, (int) (p - rs->buf));
6321 getpkt (&rs->buf, &rs->buf_size, 0);
6322
6323 if (rs->buf[0] == '\0')
6324 {
6325 if (remote_debug)
6326 fprintf_unfiltered (gdb_stdlog,
6327 "binary downloading NOT "
6328 "supported by target\n");
6329 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
6330 }
6331 else
6332 {
6333 if (remote_debug)
6334 fprintf_unfiltered (gdb_stdlog,
6335 "binary downloading supported by target\n");
6336 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
6337 }
6338 break;
6339 }
6340 }
6341 }
6342
6343 /* Write memory data directly to the remote machine.
6344 This does not inform the data cache; the data cache uses this.
6345 HEADER is the starting part of the packet.
6346 MEMADDR is the address in the remote memory space.
6347 MYADDR is the address of the buffer in our space.
6348 LEN is the number of bytes.
6349 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
6350 should send data as binary ('X'), or hex-encoded ('M').
6351
6352 The function creates packet of the form
6353 <HEADER><ADDRESS>,<LENGTH>:<DATA>
6354
6355 where encoding of <DATA> is termined by PACKET_FORMAT.
6356
6357 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
6358 are omitted.
6359
6360 Returns the number of bytes transferred, or 0 (setting errno) for
6361 error. Only transfer a single packet. */
6362
6363 static int
6364 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
6365 const gdb_byte *myaddr, int len,
6366 char packet_format, int use_length)
6367 {
6368 struct remote_state *rs = get_remote_state ();
6369 char *p;
6370 char *plen = NULL;
6371 int plenlen = 0;
6372 int todo;
6373 int nr_bytes;
6374 int payload_size;
6375 int payload_length;
6376 int header_length;
6377
6378 if (packet_format != 'X' && packet_format != 'M')
6379 internal_error (__FILE__, __LINE__,
6380 _("remote_write_bytes_aux: bad packet format"));
6381
6382 if (len <= 0)
6383 return 0;
6384
6385 payload_size = get_memory_write_packet_size ();
6386
6387 /* The packet buffer will be large enough for the payload;
6388 get_memory_packet_size ensures this. */
6389 rs->buf[0] = '\0';
6390
6391 /* Compute the size of the actual payload by subtracting out the
6392 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
6393
6394 payload_size -= strlen ("$,:#NN");
6395 if (!use_length)
6396 /* The comma won't be used. */
6397 payload_size += 1;
6398 header_length = strlen (header);
6399 payload_size -= header_length;
6400 payload_size -= hexnumlen (memaddr);
6401
6402 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
6403
6404 strcat (rs->buf, header);
6405 p = rs->buf + strlen (header);
6406
6407 /* Compute a best guess of the number of bytes actually transfered. */
6408 if (packet_format == 'X')
6409 {
6410 /* Best guess at number of bytes that will fit. */
6411 todo = min (len, payload_size);
6412 if (use_length)
6413 payload_size -= hexnumlen (todo);
6414 todo = min (todo, payload_size);
6415 }
6416 else
6417 {
6418 /* Num bytes that will fit. */
6419 todo = min (len, payload_size / 2);
6420 if (use_length)
6421 payload_size -= hexnumlen (todo);
6422 todo = min (todo, payload_size / 2);
6423 }
6424
6425 if (todo <= 0)
6426 internal_error (__FILE__, __LINE__,
6427 _("minimum packet size too small to write data"));
6428
6429 /* If we already need another packet, then try to align the end
6430 of this packet to a useful boundary. */
6431 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
6432 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
6433
6434 /* Append "<memaddr>". */
6435 memaddr = remote_address_masked (memaddr);
6436 p += hexnumstr (p, (ULONGEST) memaddr);
6437
6438 if (use_length)
6439 {
6440 /* Append ",". */
6441 *p++ = ',';
6442
6443 /* Append <len>. Retain the location/size of <len>. It may need to
6444 be adjusted once the packet body has been created. */
6445 plen = p;
6446 plenlen = hexnumstr (p, (ULONGEST) todo);
6447 p += plenlen;
6448 }
6449
6450 /* Append ":". */
6451 *p++ = ':';
6452 *p = '\0';
6453
6454 /* Append the packet body. */
6455 if (packet_format == 'X')
6456 {
6457 /* Binary mode. Send target system values byte by byte, in
6458 increasing byte addresses. Only escape certain critical
6459 characters. */
6460 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
6461 payload_size);
6462
6463 /* If not all TODO bytes fit, then we'll need another packet. Make
6464 a second try to keep the end of the packet aligned. Don't do
6465 this if the packet is tiny. */
6466 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6467 {
6468 int new_nr_bytes;
6469
6470 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
6471 - memaddr);
6472 if (new_nr_bytes != nr_bytes)
6473 payload_length = remote_escape_output (myaddr, new_nr_bytes,
6474 p, &nr_bytes,
6475 payload_size);
6476 }
6477
6478 p += payload_length;
6479 if (use_length && nr_bytes < todo)
6480 {
6481 /* Escape chars have filled up the buffer prematurely,
6482 and we have actually sent fewer bytes than planned.
6483 Fix-up the length field of the packet. Use the same
6484 number of characters as before. */
6485 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
6486 *plen = ':'; /* overwrite \0 from hexnumnstr() */
6487 }
6488 }
6489 else
6490 {
6491 /* Normal mode: Send target system values byte by byte, in
6492 increasing byte addresses. Each byte is encoded as a two hex
6493 value. */
6494 nr_bytes = bin2hex (myaddr, p, todo);
6495 p += 2 * nr_bytes;
6496 }
6497
6498 putpkt_binary (rs->buf, (int) (p - rs->buf));
6499 getpkt (&rs->buf, &rs->buf_size, 0);
6500
6501 if (rs->buf[0] == 'E')
6502 {
6503 /* There is no correspondance between what the remote protocol
6504 uses for errors and errno codes. We would like a cleaner way
6505 of representing errors (big enough to include errno codes,
6506 bfd_error codes, and others). But for now just return EIO. */
6507 errno = EIO;
6508 return 0;
6509 }
6510
6511 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
6512 fewer bytes than we'd planned. */
6513 return nr_bytes;
6514 }
6515
6516 /* Write memory data directly to the remote machine.
6517 This does not inform the data cache; the data cache uses this.
6518 MEMADDR is the address in the remote memory space.
6519 MYADDR is the address of the buffer in our space.
6520 LEN is the number of bytes.
6521
6522 Returns number of bytes transferred, or 0 (setting errno) for
6523 error. Only transfer a single packet. */
6524
6525 static int
6526 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
6527 {
6528 char *packet_format = 0;
6529
6530 /* Check whether the target supports binary download. */
6531 check_binary_download (memaddr);
6532
6533 switch (remote_protocol_packets[PACKET_X].support)
6534 {
6535 case PACKET_ENABLE:
6536 packet_format = "X";
6537 break;
6538 case PACKET_DISABLE:
6539 packet_format = "M";
6540 break;
6541 case PACKET_SUPPORT_UNKNOWN:
6542 internal_error (__FILE__, __LINE__,
6543 _("remote_write_bytes: bad internal state"));
6544 default:
6545 internal_error (__FILE__, __LINE__, _("bad switch"));
6546 }
6547
6548 return remote_write_bytes_aux (packet_format,
6549 memaddr, myaddr, len, packet_format[0], 1);
6550 }
6551
6552 /* Read memory data directly from the remote machine.
6553 This does not use the data cache; the data cache uses this.
6554 MEMADDR is the address in the remote memory space.
6555 MYADDR is the address of the buffer in our space.
6556 LEN is the number of bytes.
6557
6558 Returns number of bytes transferred, or 0 for error. */
6559
6560 static int
6561 remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
6562 {
6563 struct remote_state *rs = get_remote_state ();
6564 int max_buf_size; /* Max size of packet output buffer. */
6565 char *p;
6566 int todo;
6567 int i;
6568
6569 if (len <= 0)
6570 return 0;
6571
6572 max_buf_size = get_memory_read_packet_size ();
6573 /* The packet buffer will be large enough for the payload;
6574 get_memory_packet_size ensures this. */
6575
6576 /* Number if bytes that will fit. */
6577 todo = min (len, max_buf_size / 2);
6578
6579 /* Construct "m"<memaddr>","<len>". */
6580 memaddr = remote_address_masked (memaddr);
6581 p = rs->buf;
6582 *p++ = 'm';
6583 p += hexnumstr (p, (ULONGEST) memaddr);
6584 *p++ = ',';
6585 p += hexnumstr (p, (ULONGEST) todo);
6586 *p = '\0';
6587 putpkt (rs->buf);
6588 getpkt (&rs->buf, &rs->buf_size, 0);
6589 if (rs->buf[0] == 'E'
6590 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
6591 && rs->buf[3] == '\0')
6592 {
6593 /* There is no correspondance between what the remote protocol
6594 uses for errors and errno codes. We would like a cleaner way
6595 of representing errors (big enough to include errno codes,
6596 bfd_error codes, and others). But for now just return
6597 EIO. */
6598 errno = EIO;
6599 return 0;
6600 }
6601 /* Reply describes memory byte by byte, each byte encoded as two hex
6602 characters. */
6603 p = rs->buf;
6604 i = hex2bin (p, myaddr, todo);
6605 /* Return what we have. Let higher layers handle partial reads. */
6606 return i;
6607 }
6608 \f
6609
6610 /* Remote notification handler. */
6611
6612 static void
6613 handle_notification (char *buf, size_t length)
6614 {
6615 if (strncmp (buf, "Stop:", 5) == 0)
6616 {
6617 if (pending_stop_reply)
6618 {
6619 /* We've already parsed the in-flight stop-reply, but the
6620 stub for some reason thought we didn't, possibly due to
6621 timeout on its side. Just ignore it. */
6622 if (remote_debug)
6623 fprintf_unfiltered (gdb_stdlog, "ignoring resent notification\n");
6624 }
6625 else
6626 {
6627 struct cleanup *old_chain;
6628 struct stop_reply *reply = stop_reply_xmalloc ();
6629
6630 old_chain = make_cleanup (do_stop_reply_xfree, reply);
6631
6632 remote_parse_stop_reply (buf + 5, reply);
6633
6634 discard_cleanups (old_chain);
6635
6636 /* Be careful to only set it after parsing, since an error
6637 may be thrown then. */
6638 pending_stop_reply = reply;
6639
6640 /* Notify the event loop there's a stop reply to acknowledge
6641 and that there may be more events to fetch. */
6642 mark_async_event_handler (remote_async_get_pending_events_token);
6643
6644 if (remote_debug)
6645 fprintf_unfiltered (gdb_stdlog, "stop notification captured\n");
6646 }
6647 }
6648 else
6649 /* We ignore notifications we don't recognize, for compatibility
6650 with newer stubs. */
6651 ;
6652 }
6653
6654 \f
6655 /* Read or write LEN bytes from inferior memory at MEMADDR,
6656 transferring to or from debugger address BUFFER. Write to inferior
6657 if SHOULD_WRITE is nonzero. Returns length of data written or
6658 read; 0 for error. TARGET is unused. */
6659
6660 static int
6661 remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
6662 int should_write, struct mem_attrib *attrib,
6663 struct target_ops *target)
6664 {
6665 int res;
6666
6667 set_remote_traceframe ();
6668 set_general_thread (inferior_ptid);
6669
6670 if (should_write)
6671 res = remote_write_bytes (mem_addr, buffer, mem_len);
6672 else
6673 res = remote_read_bytes (mem_addr, buffer, mem_len);
6674
6675 return res;
6676 }
6677
6678 /* Sends a packet with content determined by the printf format string
6679 FORMAT and the remaining arguments, then gets the reply. Returns
6680 whether the packet was a success, a failure, or unknown. */
6681
6682 static enum packet_result
6683 remote_send_printf (const char *format, ...)
6684 {
6685 struct remote_state *rs = get_remote_state ();
6686 int max_size = get_remote_packet_size ();
6687 va_list ap;
6688
6689 va_start (ap, format);
6690
6691 rs->buf[0] = '\0';
6692 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
6693 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
6694
6695 if (putpkt (rs->buf) < 0)
6696 error (_("Communication problem with target."));
6697
6698 rs->buf[0] = '\0';
6699 getpkt (&rs->buf, &rs->buf_size, 0);
6700
6701 return packet_check_result (rs->buf);
6702 }
6703
6704 static void
6705 restore_remote_timeout (void *p)
6706 {
6707 int value = *(int *)p;
6708
6709 remote_timeout = value;
6710 }
6711
6712 /* Flash writing can take quite some time. We'll set
6713 effectively infinite timeout for flash operations.
6714 In future, we'll need to decide on a better approach. */
6715 static const int remote_flash_timeout = 1000;
6716
6717 static void
6718 remote_flash_erase (struct target_ops *ops,
6719 ULONGEST address, LONGEST length)
6720 {
6721 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
6722 int saved_remote_timeout = remote_timeout;
6723 enum packet_result ret;
6724 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
6725 &saved_remote_timeout);
6726
6727 remote_timeout = remote_flash_timeout;
6728
6729 ret = remote_send_printf ("vFlashErase:%s,%s",
6730 phex (address, addr_size),
6731 phex (length, 4));
6732 switch (ret)
6733 {
6734 case PACKET_UNKNOWN:
6735 error (_("Remote target does not support flash erase"));
6736 case PACKET_ERROR:
6737 error (_("Error erasing flash with vFlashErase packet"));
6738 default:
6739 break;
6740 }
6741
6742 do_cleanups (back_to);
6743 }
6744
6745 static LONGEST
6746 remote_flash_write (struct target_ops *ops,
6747 ULONGEST address, LONGEST length,
6748 const gdb_byte *data)
6749 {
6750 int saved_remote_timeout = remote_timeout;
6751 int ret;
6752 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
6753 &saved_remote_timeout);
6754
6755 remote_timeout = remote_flash_timeout;
6756 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
6757 do_cleanups (back_to);
6758
6759 return ret;
6760 }
6761
6762 static void
6763 remote_flash_done (struct target_ops *ops)
6764 {
6765 int saved_remote_timeout = remote_timeout;
6766 int ret;
6767 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
6768 &saved_remote_timeout);
6769
6770 remote_timeout = remote_flash_timeout;
6771 ret = remote_send_printf ("vFlashDone");
6772 do_cleanups (back_to);
6773
6774 switch (ret)
6775 {
6776 case PACKET_UNKNOWN:
6777 error (_("Remote target does not support vFlashDone"));
6778 case PACKET_ERROR:
6779 error (_("Error finishing flash operation"));
6780 default:
6781 break;
6782 }
6783 }
6784
6785 static void
6786 remote_files_info (struct target_ops *ignore)
6787 {
6788 puts_filtered ("Debugging a target over a serial line.\n");
6789 }
6790 \f
6791 /* Stuff for dealing with the packets which are part of this protocol.
6792 See comment at top of file for details. */
6793
6794 /* Read a single character from the remote end. */
6795
6796 static int
6797 readchar (int timeout)
6798 {
6799 int ch;
6800
6801 ch = serial_readchar (remote_desc, timeout);
6802
6803 if (ch >= 0)
6804 return ch;
6805
6806 switch ((enum serial_rc) ch)
6807 {
6808 case SERIAL_EOF:
6809 pop_target ();
6810 error (_("Remote connection closed"));
6811 /* no return */
6812 case SERIAL_ERROR:
6813 pop_target ();
6814 perror_with_name (_("Remote communication error. "
6815 "Target disconnected."));
6816 /* no return */
6817 case SERIAL_TIMEOUT:
6818 break;
6819 }
6820 return ch;
6821 }
6822
6823 /* Send the command in *BUF to the remote machine, and read the reply
6824 into *BUF. Report an error if we get an error reply. Resize
6825 *BUF using xrealloc if necessary to hold the result, and update
6826 *SIZEOF_BUF. */
6827
6828 static void
6829 remote_send (char **buf,
6830 long *sizeof_buf)
6831 {
6832 putpkt (*buf);
6833 getpkt (buf, sizeof_buf, 0);
6834
6835 if ((*buf)[0] == 'E')
6836 error (_("Remote failure reply: %s"), *buf);
6837 }
6838
6839 /* Return a pointer to an xmalloc'ed string representing an escaped
6840 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
6841 etc. The caller is responsible for releasing the returned
6842 memory. */
6843
6844 static char *
6845 escape_buffer (const char *buf, int n)
6846 {
6847 struct cleanup *old_chain;
6848 struct ui_file *stb;
6849 char *str;
6850
6851 stb = mem_fileopen ();
6852 old_chain = make_cleanup_ui_file_delete (stb);
6853
6854 fputstrn_unfiltered (buf, n, 0, stb);
6855 str = ui_file_xstrdup (stb, NULL);
6856 do_cleanups (old_chain);
6857 return str;
6858 }
6859
6860 /* Display a null-terminated packet on stdout, for debugging, using C
6861 string notation. */
6862
6863 static void
6864 print_packet (char *buf)
6865 {
6866 puts_filtered ("\"");
6867 fputstr_filtered (buf, '"', gdb_stdout);
6868 puts_filtered ("\"");
6869 }
6870
6871 int
6872 putpkt (char *buf)
6873 {
6874 return putpkt_binary (buf, strlen (buf));
6875 }
6876
6877 /* Send a packet to the remote machine, with error checking. The data
6878 of the packet is in BUF. The string in BUF can be at most
6879 get_remote_packet_size () - 5 to account for the $, # and checksum,
6880 and for a possible /0 if we are debugging (remote_debug) and want
6881 to print the sent packet as a string. */
6882
6883 static int
6884 putpkt_binary (char *buf, int cnt)
6885 {
6886 struct remote_state *rs = get_remote_state ();
6887 int i;
6888 unsigned char csum = 0;
6889 char *buf2 = alloca (cnt + 6);
6890
6891 int ch;
6892 int tcount = 0;
6893 char *p;
6894
6895 /* Catch cases like trying to read memory or listing threads while
6896 we're waiting for a stop reply. The remote server wouldn't be
6897 ready to handle this request, so we'd hang and timeout. We don't
6898 have to worry about this in synchronous mode, because in that
6899 case it's not possible to issue a command while the target is
6900 running. This is not a problem in non-stop mode, because in that
6901 case, the stub is always ready to process serial input. */
6902 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
6903 error (_("Cannot execute this command while the target is running."));
6904
6905 /* We're sending out a new packet. Make sure we don't look at a
6906 stale cached response. */
6907 rs->cached_wait_status = 0;
6908
6909 /* Copy the packet into buffer BUF2, encapsulating it
6910 and giving it a checksum. */
6911
6912 p = buf2;
6913 *p++ = '$';
6914
6915 for (i = 0; i < cnt; i++)
6916 {
6917 csum += buf[i];
6918 *p++ = buf[i];
6919 }
6920 *p++ = '#';
6921 *p++ = tohex ((csum >> 4) & 0xf);
6922 *p++ = tohex (csum & 0xf);
6923
6924 /* Send it over and over until we get a positive ack. */
6925
6926 while (1)
6927 {
6928 int started_error_output = 0;
6929
6930 if (remote_debug)
6931 {
6932 struct cleanup *old_chain;
6933 char *str;
6934
6935 *p = '\0';
6936 str = escape_buffer (buf2, p - buf2);
6937 old_chain = make_cleanup (xfree, str);
6938 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
6939 gdb_flush (gdb_stdlog);
6940 do_cleanups (old_chain);
6941 }
6942 if (serial_write (remote_desc, buf2, p - buf2))
6943 perror_with_name (_("putpkt: write failed"));
6944
6945 /* If this is a no acks version of the remote protocol, send the
6946 packet and move on. */
6947 if (rs->noack_mode)
6948 break;
6949
6950 /* Read until either a timeout occurs (-2) or '+' is read.
6951 Handle any notification that arrives in the mean time. */
6952 while (1)
6953 {
6954 ch = readchar (remote_timeout);
6955
6956 if (remote_debug)
6957 {
6958 switch (ch)
6959 {
6960 case '+':
6961 case '-':
6962 case SERIAL_TIMEOUT:
6963 case '$':
6964 case '%':
6965 if (started_error_output)
6966 {
6967 putchar_unfiltered ('\n');
6968 started_error_output = 0;
6969 }
6970 }
6971 }
6972
6973 switch (ch)
6974 {
6975 case '+':
6976 if (remote_debug)
6977 fprintf_unfiltered (gdb_stdlog, "Ack\n");
6978 return 1;
6979 case '-':
6980 if (remote_debug)
6981 fprintf_unfiltered (gdb_stdlog, "Nak\n");
6982 /* FALLTHROUGH */
6983 case SERIAL_TIMEOUT:
6984 tcount++;
6985 if (tcount > 3)
6986 return 0;
6987 break; /* Retransmit buffer. */
6988 case '$':
6989 {
6990 if (remote_debug)
6991 fprintf_unfiltered (gdb_stdlog,
6992 "Packet instead of Ack, ignoring it\n");
6993 /* It's probably an old response sent because an ACK
6994 was lost. Gobble up the packet and ack it so it
6995 doesn't get retransmitted when we resend this
6996 packet. */
6997 skip_frame ();
6998 serial_write (remote_desc, "+", 1);
6999 continue; /* Now, go look for +. */
7000 }
7001
7002 case '%':
7003 {
7004 int val;
7005
7006 /* If we got a notification, handle it, and go back to looking
7007 for an ack. */
7008 /* We've found the start of a notification. Now
7009 collect the data. */
7010 val = read_frame (&rs->buf, &rs->buf_size);
7011 if (val >= 0)
7012 {
7013 if (remote_debug)
7014 {
7015 struct cleanup *old_chain;
7016 char *str;
7017
7018 str = escape_buffer (rs->buf, val);
7019 old_chain = make_cleanup (xfree, str);
7020 fprintf_unfiltered (gdb_stdlog,
7021 " Notification received: %s\n",
7022 str);
7023 do_cleanups (old_chain);
7024 }
7025 handle_notification (rs->buf, val);
7026 /* We're in sync now, rewait for the ack. */
7027 tcount = 0;
7028 }
7029 else
7030 {
7031 if (remote_debug)
7032 {
7033 if (!started_error_output)
7034 {
7035 started_error_output = 1;
7036 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7037 }
7038 fputc_unfiltered (ch & 0177, gdb_stdlog);
7039 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
7040 }
7041 }
7042 continue;
7043 }
7044 /* fall-through */
7045 default:
7046 if (remote_debug)
7047 {
7048 if (!started_error_output)
7049 {
7050 started_error_output = 1;
7051 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7052 }
7053 fputc_unfiltered (ch & 0177, gdb_stdlog);
7054 }
7055 continue;
7056 }
7057 break; /* Here to retransmit. */
7058 }
7059
7060 #if 0
7061 /* This is wrong. If doing a long backtrace, the user should be
7062 able to get out next time we call QUIT, without anything as
7063 violent as interrupt_query. If we want to provide a way out of
7064 here without getting to the next QUIT, it should be based on
7065 hitting ^C twice as in remote_wait. */
7066 if (quit_flag)
7067 {
7068 quit_flag = 0;
7069 interrupt_query ();
7070 }
7071 #endif
7072 }
7073 return 0;
7074 }
7075
7076 /* Come here after finding the start of a frame when we expected an
7077 ack. Do our best to discard the rest of this packet. */
7078
7079 static void
7080 skip_frame (void)
7081 {
7082 int c;
7083
7084 while (1)
7085 {
7086 c = readchar (remote_timeout);
7087 switch (c)
7088 {
7089 case SERIAL_TIMEOUT:
7090 /* Nothing we can do. */
7091 return;
7092 case '#':
7093 /* Discard the two bytes of checksum and stop. */
7094 c = readchar (remote_timeout);
7095 if (c >= 0)
7096 c = readchar (remote_timeout);
7097
7098 return;
7099 case '*': /* Run length encoding. */
7100 /* Discard the repeat count. */
7101 c = readchar (remote_timeout);
7102 if (c < 0)
7103 return;
7104 break;
7105 default:
7106 /* A regular character. */
7107 break;
7108 }
7109 }
7110 }
7111
7112 /* Come here after finding the start of the frame. Collect the rest
7113 into *BUF, verifying the checksum, length, and handling run-length
7114 compression. NUL terminate the buffer. If there is not enough room,
7115 expand *BUF using xrealloc.
7116
7117 Returns -1 on error, number of characters in buffer (ignoring the
7118 trailing NULL) on success. (could be extended to return one of the
7119 SERIAL status indications). */
7120
7121 static long
7122 read_frame (char **buf_p,
7123 long *sizeof_buf)
7124 {
7125 unsigned char csum;
7126 long bc;
7127 int c;
7128 char *buf = *buf_p;
7129 struct remote_state *rs = get_remote_state ();
7130
7131 csum = 0;
7132 bc = 0;
7133
7134 while (1)
7135 {
7136 c = readchar (remote_timeout);
7137 switch (c)
7138 {
7139 case SERIAL_TIMEOUT:
7140 if (remote_debug)
7141 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
7142 return -1;
7143 case '$':
7144 if (remote_debug)
7145 fputs_filtered ("Saw new packet start in middle of old one\n",
7146 gdb_stdlog);
7147 return -1; /* Start a new packet, count retries. */
7148 case '#':
7149 {
7150 unsigned char pktcsum;
7151 int check_0 = 0;
7152 int check_1 = 0;
7153
7154 buf[bc] = '\0';
7155
7156 check_0 = readchar (remote_timeout);
7157 if (check_0 >= 0)
7158 check_1 = readchar (remote_timeout);
7159
7160 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
7161 {
7162 if (remote_debug)
7163 fputs_filtered ("Timeout in checksum, retrying\n",
7164 gdb_stdlog);
7165 return -1;
7166 }
7167 else if (check_0 < 0 || check_1 < 0)
7168 {
7169 if (remote_debug)
7170 fputs_filtered ("Communication error in checksum\n",
7171 gdb_stdlog);
7172 return -1;
7173 }
7174
7175 /* Don't recompute the checksum; with no ack packets we
7176 don't have any way to indicate a packet retransmission
7177 is necessary. */
7178 if (rs->noack_mode)
7179 return bc;
7180
7181 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
7182 if (csum == pktcsum)
7183 return bc;
7184
7185 if (remote_debug)
7186 {
7187 struct cleanup *old_chain;
7188 char *str;
7189
7190 str = escape_buffer (buf, bc);
7191 old_chain = make_cleanup (xfree, str);
7192 fprintf_unfiltered (gdb_stdlog,
7193 "Bad checksum, sentsum=0x%x, "
7194 "csum=0x%x, buf=%s\n",
7195 pktcsum, csum, str);
7196 do_cleanups (old_chain);
7197 }
7198 /* Number of characters in buffer ignoring trailing
7199 NULL. */
7200 return -1;
7201 }
7202 case '*': /* Run length encoding. */
7203 {
7204 int repeat;
7205
7206 csum += c;
7207 c = readchar (remote_timeout);
7208 csum += c;
7209 repeat = c - ' ' + 3; /* Compute repeat count. */
7210
7211 /* The character before ``*'' is repeated. */
7212
7213 if (repeat > 0 && repeat <= 255 && bc > 0)
7214 {
7215 if (bc + repeat - 1 >= *sizeof_buf - 1)
7216 {
7217 /* Make some more room in the buffer. */
7218 *sizeof_buf += repeat;
7219 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7220 buf = *buf_p;
7221 }
7222
7223 memset (&buf[bc], buf[bc - 1], repeat);
7224 bc += repeat;
7225 continue;
7226 }
7227
7228 buf[bc] = '\0';
7229 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
7230 return -1;
7231 }
7232 default:
7233 if (bc >= *sizeof_buf - 1)
7234 {
7235 /* Make some more room in the buffer. */
7236 *sizeof_buf *= 2;
7237 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7238 buf = *buf_p;
7239 }
7240
7241 buf[bc++] = c;
7242 csum += c;
7243 continue;
7244 }
7245 }
7246 }
7247
7248 /* Read a packet from the remote machine, with error checking, and
7249 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7250 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7251 rather than timing out; this is used (in synchronous mode) to wait
7252 for a target that is is executing user code to stop. */
7253 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
7254 don't have to change all the calls to getpkt to deal with the
7255 return value, because at the moment I don't know what the right
7256 thing to do it for those. */
7257 void
7258 getpkt (char **buf,
7259 long *sizeof_buf,
7260 int forever)
7261 {
7262 int timed_out;
7263
7264 timed_out = getpkt_sane (buf, sizeof_buf, forever);
7265 }
7266
7267
7268 /* Read a packet from the remote machine, with error checking, and
7269 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7270 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7271 rather than timing out; this is used (in synchronous mode) to wait
7272 for a target that is is executing user code to stop. If FOREVER ==
7273 0, this function is allowed to time out gracefully and return an
7274 indication of this to the caller. Otherwise return the number of
7275 bytes read. If EXPECTING_NOTIF, consider receiving a notification
7276 enough reason to return to the caller. */
7277
7278 static int
7279 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
7280 int expecting_notif)
7281 {
7282 struct remote_state *rs = get_remote_state ();
7283 int c;
7284 int tries;
7285 int timeout;
7286 int val = -1;
7287
7288 /* We're reading a new response. Make sure we don't look at a
7289 previously cached response. */
7290 rs->cached_wait_status = 0;
7291
7292 strcpy (*buf, "timeout");
7293
7294 if (forever)
7295 timeout = watchdog > 0 ? watchdog : -1;
7296 else if (expecting_notif)
7297 timeout = 0; /* There should already be a char in the buffer. If
7298 not, bail out. */
7299 else
7300 timeout = remote_timeout;
7301
7302 #define MAX_TRIES 3
7303
7304 /* Process any number of notifications, and then return when
7305 we get a packet. */
7306 for (;;)
7307 {
7308 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
7309 times. */
7310 for (tries = 1; tries <= MAX_TRIES; tries++)
7311 {
7312 /* This can loop forever if the remote side sends us
7313 characters continuously, but if it pauses, we'll get
7314 SERIAL_TIMEOUT from readchar because of timeout. Then
7315 we'll count that as a retry.
7316
7317 Note that even when forever is set, we will only wait
7318 forever prior to the start of a packet. After that, we
7319 expect characters to arrive at a brisk pace. They should
7320 show up within remote_timeout intervals. */
7321 do
7322 c = readchar (timeout);
7323 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
7324
7325 if (c == SERIAL_TIMEOUT)
7326 {
7327 if (expecting_notif)
7328 return -1; /* Don't complain, it's normal to not get
7329 anything in this case. */
7330
7331 if (forever) /* Watchdog went off? Kill the target. */
7332 {
7333 QUIT;
7334 pop_target ();
7335 error (_("Watchdog timeout has expired. Target detached."));
7336 }
7337 if (remote_debug)
7338 fputs_filtered ("Timed out.\n", gdb_stdlog);
7339 }
7340 else
7341 {
7342 /* We've found the start of a packet or notification.
7343 Now collect the data. */
7344 val = read_frame (buf, sizeof_buf);
7345 if (val >= 0)
7346 break;
7347 }
7348
7349 serial_write (remote_desc, "-", 1);
7350 }
7351
7352 if (tries > MAX_TRIES)
7353 {
7354 /* We have tried hard enough, and just can't receive the
7355 packet/notification. Give up. */
7356 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
7357
7358 /* Skip the ack char if we're in no-ack mode. */
7359 if (!rs->noack_mode)
7360 serial_write (remote_desc, "+", 1);
7361 return -1;
7362 }
7363
7364 /* If we got an ordinary packet, return that to our caller. */
7365 if (c == '$')
7366 {
7367 if (remote_debug)
7368 {
7369 struct cleanup *old_chain;
7370 char *str;
7371
7372 str = escape_buffer (*buf, val);
7373 old_chain = make_cleanup (xfree, str);
7374 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
7375 do_cleanups (old_chain);
7376 }
7377
7378 /* Skip the ack char if we're in no-ack mode. */
7379 if (!rs->noack_mode)
7380 serial_write (remote_desc, "+", 1);
7381 return val;
7382 }
7383
7384 /* If we got a notification, handle it, and go back to looking
7385 for a packet. */
7386 else
7387 {
7388 gdb_assert (c == '%');
7389
7390 if (remote_debug)
7391 {
7392 struct cleanup *old_chain;
7393 char *str;
7394
7395 str = escape_buffer (*buf, val);
7396 old_chain = make_cleanup (xfree, str);
7397 fprintf_unfiltered (gdb_stdlog,
7398 " Notification received: %s\n",
7399 str);
7400 do_cleanups (old_chain);
7401 }
7402
7403 handle_notification (*buf, val);
7404
7405 /* Notifications require no acknowledgement. */
7406
7407 if (expecting_notif)
7408 return -1;
7409 }
7410 }
7411 }
7412
7413 static int
7414 getpkt_sane (char **buf, long *sizeof_buf, int forever)
7415 {
7416 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0);
7417 }
7418
7419 static int
7420 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever)
7421 {
7422 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1);
7423 }
7424
7425 \f
7426 /* A helper function that just calls putpkt; for type correctness. */
7427
7428 static int
7429 putpkt_for_catch_errors (void *arg)
7430 {
7431 return putpkt (arg);
7432 }
7433
7434 static void
7435 remote_kill (struct target_ops *ops)
7436 {
7437 /* Use catch_errors so the user can quit from gdb even when we
7438 aren't on speaking terms with the remote system. */
7439 catch_errors (putpkt_for_catch_errors, "k", "", RETURN_MASK_ERROR);
7440
7441 /* Don't wait for it to die. I'm not really sure it matters whether
7442 we do or not. For the existing stubs, kill is a noop. */
7443 target_mourn_inferior ();
7444 }
7445
7446 static int
7447 remote_vkill (int pid, struct remote_state *rs)
7448 {
7449 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7450 return -1;
7451
7452 /* Tell the remote target to detach. */
7453 sprintf (rs->buf, "vKill;%x", pid);
7454 putpkt (rs->buf);
7455 getpkt (&rs->buf, &rs->buf_size, 0);
7456
7457 if (packet_ok (rs->buf,
7458 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
7459 return 0;
7460 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7461 return -1;
7462 else
7463 return 1;
7464 }
7465
7466 static void
7467 extended_remote_kill (struct target_ops *ops)
7468 {
7469 int res;
7470 int pid = ptid_get_pid (inferior_ptid);
7471 struct remote_state *rs = get_remote_state ();
7472
7473 res = remote_vkill (pid, rs);
7474 if (res == -1 && !(rs->extended && remote_multi_process_p (rs)))
7475 {
7476 /* Don't try 'k' on a multi-process aware stub -- it has no way
7477 to specify the pid. */
7478
7479 putpkt ("k");
7480 #if 0
7481 getpkt (&rs->buf, &rs->buf_size, 0);
7482 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
7483 res = 1;
7484 #else
7485 /* Don't wait for it to die. I'm not really sure it matters whether
7486 we do or not. For the existing stubs, kill is a noop. */
7487 res = 0;
7488 #endif
7489 }
7490
7491 if (res != 0)
7492 error (_("Can't kill process"));
7493
7494 target_mourn_inferior ();
7495 }
7496
7497 static void
7498 remote_mourn (struct target_ops *ops)
7499 {
7500 remote_mourn_1 (ops);
7501 }
7502
7503 /* Worker function for remote_mourn. */
7504 static void
7505 remote_mourn_1 (struct target_ops *target)
7506 {
7507 unpush_target (target);
7508
7509 /* remote_close takes care of doing most of the clean up. */
7510 generic_mourn_inferior ();
7511 }
7512
7513 static void
7514 extended_remote_mourn_1 (struct target_ops *target)
7515 {
7516 struct remote_state *rs = get_remote_state ();
7517
7518 /* In case we got here due to an error, but we're going to stay
7519 connected. */
7520 rs->waiting_for_stop_reply = 0;
7521
7522 /* We're no longer interested in these events. */
7523 discard_pending_stop_replies (ptid_get_pid (inferior_ptid));
7524
7525 /* If the current general thread belonged to the process we just
7526 detached from or has exited, the remote side current general
7527 thread becomes undefined. Considering a case like this:
7528
7529 - We just got here due to a detach.
7530 - The process that we're detaching from happens to immediately
7531 report a global breakpoint being hit in non-stop mode, in the
7532 same thread we had selected before.
7533 - GDB attaches to this process again.
7534 - This event happens to be the next event we handle.
7535
7536 GDB would consider that the current general thread didn't need to
7537 be set on the stub side (with Hg), since for all it knew,
7538 GENERAL_THREAD hadn't changed.
7539
7540 Notice that although in all-stop mode, the remote server always
7541 sets the current thread to the thread reporting the stop event,
7542 that doesn't happen in non-stop mode; in non-stop, the stub *must
7543 not* change the current thread when reporting a breakpoint hit,
7544 due to the decoupling of event reporting and event handling.
7545
7546 To keep things simple, we always invalidate our notion of the
7547 current thread. */
7548 record_currthread (minus_one_ptid);
7549
7550 /* Unlike "target remote", we do not want to unpush the target; then
7551 the next time the user says "run", we won't be connected. */
7552
7553 /* Call common code to mark the inferior as not running. */
7554 generic_mourn_inferior ();
7555
7556 if (!have_inferiors ())
7557 {
7558 if (!remote_multi_process_p (rs))
7559 {
7560 /* Check whether the target is running now - some remote stubs
7561 automatically restart after kill. */
7562 putpkt ("?");
7563 getpkt (&rs->buf, &rs->buf_size, 0);
7564
7565 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
7566 {
7567 /* Assume that the target has been restarted. Set
7568 inferior_ptid so that bits of core GDB realizes
7569 there's something here, e.g., so that the user can
7570 say "kill" again. */
7571 inferior_ptid = magic_null_ptid;
7572 }
7573 }
7574 }
7575 }
7576
7577 static void
7578 extended_remote_mourn (struct target_ops *ops)
7579 {
7580 extended_remote_mourn_1 (ops);
7581 }
7582
7583 static int
7584 extended_remote_supports_disable_randomization (void)
7585 {
7586 return (remote_protocol_packets[PACKET_QDisableRandomization].support
7587 == PACKET_ENABLE);
7588 }
7589
7590 static void
7591 extended_remote_disable_randomization (int val)
7592 {
7593 struct remote_state *rs = get_remote_state ();
7594 char *reply;
7595
7596 sprintf (rs->buf, "QDisableRandomization:%x", val);
7597 putpkt (rs->buf);
7598 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
7599 if (*reply == '\0')
7600 error (_("Target does not support QDisableRandomization."));
7601 if (strcmp (reply, "OK") != 0)
7602 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
7603 }
7604
7605 static int
7606 extended_remote_run (char *args)
7607 {
7608 struct remote_state *rs = get_remote_state ();
7609 int len;
7610
7611 /* If the user has disabled vRun support, or we have detected that
7612 support is not available, do not try it. */
7613 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
7614 return -1;
7615
7616 strcpy (rs->buf, "vRun;");
7617 len = strlen (rs->buf);
7618
7619 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
7620 error (_("Remote file name too long for run packet"));
7621 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
7622
7623 gdb_assert (args != NULL);
7624 if (*args)
7625 {
7626 struct cleanup *back_to;
7627 int i;
7628 char **argv;
7629
7630 argv = gdb_buildargv (args);
7631 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
7632 for (i = 0; argv[i] != NULL; i++)
7633 {
7634 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
7635 error (_("Argument list too long for run packet"));
7636 rs->buf[len++] = ';';
7637 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
7638 }
7639 do_cleanups (back_to);
7640 }
7641
7642 rs->buf[len++] = '\0';
7643
7644 putpkt (rs->buf);
7645 getpkt (&rs->buf, &rs->buf_size, 0);
7646
7647 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
7648 {
7649 /* We have a wait response; we don't need it, though. All is well. */
7650 return 0;
7651 }
7652 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
7653 /* It wasn't disabled before, but it is now. */
7654 return -1;
7655 else
7656 {
7657 if (remote_exec_file[0] == '\0')
7658 error (_("Running the default executable on the remote target failed; "
7659 "try \"set remote exec-file\"?"));
7660 else
7661 error (_("Running \"%s\" on the remote target failed"),
7662 remote_exec_file);
7663 }
7664 }
7665
7666 /* In the extended protocol we want to be able to do things like
7667 "run" and have them basically work as expected. So we need
7668 a special create_inferior function. We support changing the
7669 executable file and the command line arguments, but not the
7670 environment. */
7671
7672 static void
7673 extended_remote_create_inferior_1 (char *exec_file, char *args,
7674 char **env, int from_tty)
7675 {
7676 /* If running asynchronously, register the target file descriptor
7677 with the event loop. */
7678 if (target_can_async_p ())
7679 target_async (inferior_event_handler, 0);
7680
7681 /* Disable address space randomization if requested (and supported). */
7682 if (extended_remote_supports_disable_randomization ())
7683 extended_remote_disable_randomization (disable_randomization);
7684
7685 /* Now restart the remote server. */
7686 if (extended_remote_run (args) == -1)
7687 {
7688 /* vRun was not supported. Fail if we need it to do what the
7689 user requested. */
7690 if (remote_exec_file[0])
7691 error (_("Remote target does not support \"set remote exec-file\""));
7692 if (args[0])
7693 error (_("Remote target does not support \"set args\" or run <ARGS>"));
7694
7695 /* Fall back to "R". */
7696 extended_remote_restart ();
7697 }
7698
7699 if (!have_inferiors ())
7700 {
7701 /* Clean up from the last time we ran, before we mark the target
7702 running again. This will mark breakpoints uninserted, and
7703 get_offsets may insert breakpoints. */
7704 init_thread_list ();
7705 init_wait_for_inferior ();
7706 }
7707
7708 add_current_inferior_and_thread ();
7709
7710 /* Get updated offsets, if the stub uses qOffsets. */
7711 get_offsets ();
7712 }
7713
7714 static void
7715 extended_remote_create_inferior (struct target_ops *ops,
7716 char *exec_file, char *args,
7717 char **env, int from_tty)
7718 {
7719 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
7720 }
7721 \f
7722
7723 /* Given a location's target info BP_TGT and the packet buffer BUF, output
7724 the list of conditions (in agent expression bytecode format), if any, the
7725 target needs to evaluate. The output is placed into the packet buffer
7726 BUF. */
7727
7728 static int
7729 remote_add_target_side_condition (struct gdbarch *gdbarch,
7730 struct bp_target_info *bp_tgt, char *buf)
7731 {
7732 struct agent_expr *aexpr = NULL;
7733 int i, ix;
7734 char *pkt;
7735 char *buf_start = buf;
7736
7737 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
7738 return 0;
7739
7740 buf += strlen (buf);
7741 sprintf (buf, "%s", ";");
7742 buf++;
7743
7744 /* Send conditions to the target and free the vector. */
7745 for (ix = 0;
7746 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
7747 ix++)
7748 {
7749 sprintf (buf, "X%x,", aexpr->len);
7750 buf += strlen (buf);
7751 for (i = 0; i < aexpr->len; ++i)
7752 buf = pack_hex_byte (buf, aexpr->buf[i]);
7753 *buf = '\0';
7754 }
7755
7756 VEC_free (agent_expr_p, bp_tgt->conditions);
7757 return 0;
7758 }
7759
7760 /* Insert a breakpoint. On targets that have software breakpoint
7761 support, we ask the remote target to do the work; on targets
7762 which don't, we insert a traditional memory breakpoint. */
7763
7764 static int
7765 remote_insert_breakpoint (struct gdbarch *gdbarch,
7766 struct bp_target_info *bp_tgt)
7767 {
7768 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
7769 If it succeeds, then set the support to PACKET_ENABLE. If it
7770 fails, and the user has explicitly requested the Z support then
7771 report an error, otherwise, mark it disabled and go on. */
7772
7773 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
7774 {
7775 CORE_ADDR addr = bp_tgt->placed_address;
7776 struct remote_state *rs;
7777 char *p;
7778 int bpsize;
7779 struct condition_list *cond = NULL;
7780
7781 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
7782
7783 rs = get_remote_state ();
7784 p = rs->buf;
7785
7786 *(p++) = 'Z';
7787 *(p++) = '0';
7788 *(p++) = ',';
7789 addr = (ULONGEST) remote_address_masked (addr);
7790 p += hexnumstr (p, addr);
7791 sprintf (p, ",%d", bpsize);
7792
7793 if (remote_supports_cond_breakpoints ())
7794 remote_add_target_side_condition (gdbarch, bp_tgt, p);
7795
7796 putpkt (rs->buf);
7797 getpkt (&rs->buf, &rs->buf_size, 0);
7798
7799 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
7800 {
7801 case PACKET_ERROR:
7802 return -1;
7803 case PACKET_OK:
7804 bp_tgt->placed_address = addr;
7805 bp_tgt->placed_size = bpsize;
7806 return 0;
7807 case PACKET_UNKNOWN:
7808 break;
7809 }
7810 }
7811
7812 return memory_insert_breakpoint (gdbarch, bp_tgt);
7813 }
7814
7815 static int
7816 remote_remove_breakpoint (struct gdbarch *gdbarch,
7817 struct bp_target_info *bp_tgt)
7818 {
7819 CORE_ADDR addr = bp_tgt->placed_address;
7820 struct remote_state *rs = get_remote_state ();
7821
7822 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
7823 {
7824 char *p = rs->buf;
7825
7826 *(p++) = 'z';
7827 *(p++) = '0';
7828 *(p++) = ',';
7829
7830 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
7831 p += hexnumstr (p, addr);
7832 sprintf (p, ",%d", bp_tgt->placed_size);
7833
7834 putpkt (rs->buf);
7835 getpkt (&rs->buf, &rs->buf_size, 0);
7836
7837 return (rs->buf[0] == 'E');
7838 }
7839
7840 return memory_remove_breakpoint (gdbarch, bp_tgt);
7841 }
7842
7843 static int
7844 watchpoint_to_Z_packet (int type)
7845 {
7846 switch (type)
7847 {
7848 case hw_write:
7849 return Z_PACKET_WRITE_WP;
7850 break;
7851 case hw_read:
7852 return Z_PACKET_READ_WP;
7853 break;
7854 case hw_access:
7855 return Z_PACKET_ACCESS_WP;
7856 break;
7857 default:
7858 internal_error (__FILE__, __LINE__,
7859 _("hw_bp_to_z: bad watchpoint type %d"), type);
7860 }
7861 }
7862
7863 static int
7864 remote_insert_watchpoint (CORE_ADDR addr, int len, int type,
7865 struct expression *cond)
7866 {
7867 struct remote_state *rs = get_remote_state ();
7868 char *p;
7869 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
7870
7871 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
7872 return 1;
7873
7874 sprintf (rs->buf, "Z%x,", packet);
7875 p = strchr (rs->buf, '\0');
7876 addr = remote_address_masked (addr);
7877 p += hexnumstr (p, (ULONGEST) addr);
7878 sprintf (p, ",%x", len);
7879
7880 putpkt (rs->buf);
7881 getpkt (&rs->buf, &rs->buf_size, 0);
7882
7883 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
7884 {
7885 case PACKET_ERROR:
7886 return -1;
7887 case PACKET_UNKNOWN:
7888 return 1;
7889 case PACKET_OK:
7890 return 0;
7891 }
7892 internal_error (__FILE__, __LINE__,
7893 _("remote_insert_watchpoint: reached end of function"));
7894 }
7895
7896 static int
7897 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
7898 CORE_ADDR start, int length)
7899 {
7900 CORE_ADDR diff = remote_address_masked (addr - start);
7901
7902 return diff < length;
7903 }
7904
7905
7906 static int
7907 remote_remove_watchpoint (CORE_ADDR addr, int len, int type,
7908 struct expression *cond)
7909 {
7910 struct remote_state *rs = get_remote_state ();
7911 char *p;
7912 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
7913
7914 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
7915 return -1;
7916
7917 sprintf (rs->buf, "z%x,", packet);
7918 p = strchr (rs->buf, '\0');
7919 addr = remote_address_masked (addr);
7920 p += hexnumstr (p, (ULONGEST) addr);
7921 sprintf (p, ",%x", len);
7922 putpkt (rs->buf);
7923 getpkt (&rs->buf, &rs->buf_size, 0);
7924
7925 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
7926 {
7927 case PACKET_ERROR:
7928 case PACKET_UNKNOWN:
7929 return -1;
7930 case PACKET_OK:
7931 return 0;
7932 }
7933 internal_error (__FILE__, __LINE__,
7934 _("remote_remove_watchpoint: reached end of function"));
7935 }
7936
7937
7938 int remote_hw_watchpoint_limit = -1;
7939 int remote_hw_watchpoint_length_limit = -1;
7940 int remote_hw_breakpoint_limit = -1;
7941
7942 static int
7943 remote_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
7944 {
7945 if (remote_hw_watchpoint_length_limit == 0)
7946 return 0;
7947 else if (remote_hw_watchpoint_length_limit < 0)
7948 return 1;
7949 else if (len <= remote_hw_watchpoint_length_limit)
7950 return 1;
7951 else
7952 return 0;
7953 }
7954
7955 static int
7956 remote_check_watch_resources (int type, int cnt, int ot)
7957 {
7958 if (type == bp_hardware_breakpoint)
7959 {
7960 if (remote_hw_breakpoint_limit == 0)
7961 return 0;
7962 else if (remote_hw_breakpoint_limit < 0)
7963 return 1;
7964 else if (cnt <= remote_hw_breakpoint_limit)
7965 return 1;
7966 }
7967 else
7968 {
7969 if (remote_hw_watchpoint_limit == 0)
7970 return 0;
7971 else if (remote_hw_watchpoint_limit < 0)
7972 return 1;
7973 else if (ot)
7974 return -1;
7975 else if (cnt <= remote_hw_watchpoint_limit)
7976 return 1;
7977 }
7978 return -1;
7979 }
7980
7981 static int
7982 remote_stopped_by_watchpoint (void)
7983 {
7984 return remote_stopped_by_watchpoint_p;
7985 }
7986
7987 static int
7988 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
7989 {
7990 int rc = 0;
7991
7992 if (remote_stopped_by_watchpoint ())
7993 {
7994 *addr_p = remote_watch_data_address;
7995 rc = 1;
7996 }
7997
7998 return rc;
7999 }
8000
8001
8002 static int
8003 remote_insert_hw_breakpoint (struct gdbarch *gdbarch,
8004 struct bp_target_info *bp_tgt)
8005 {
8006 CORE_ADDR addr;
8007 struct remote_state *rs;
8008 char *p;
8009
8010 /* The length field should be set to the size of a breakpoint
8011 instruction, even though we aren't inserting one ourselves. */
8012
8013 gdbarch_remote_breakpoint_from_pc
8014 (gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
8015
8016 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
8017 return -1;
8018
8019 rs = get_remote_state ();
8020 p = rs->buf;
8021
8022 *(p++) = 'Z';
8023 *(p++) = '1';
8024 *(p++) = ',';
8025
8026 addr = remote_address_masked (bp_tgt->placed_address);
8027 p += hexnumstr (p, (ULONGEST) addr);
8028 sprintf (p, ",%x", bp_tgt->placed_size);
8029
8030 if (remote_supports_cond_breakpoints ())
8031 remote_add_target_side_condition (gdbarch, bp_tgt, p);
8032
8033 putpkt (rs->buf);
8034 getpkt (&rs->buf, &rs->buf_size, 0);
8035
8036 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
8037 {
8038 case PACKET_ERROR:
8039 case PACKET_UNKNOWN:
8040 return -1;
8041 case PACKET_OK:
8042 return 0;
8043 }
8044 internal_error (__FILE__, __LINE__,
8045 _("remote_insert_hw_breakpoint: reached end of function"));
8046 }
8047
8048
8049 static int
8050 remote_remove_hw_breakpoint (struct gdbarch *gdbarch,
8051 struct bp_target_info *bp_tgt)
8052 {
8053 CORE_ADDR addr;
8054 struct remote_state *rs = get_remote_state ();
8055 char *p = rs->buf;
8056
8057 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
8058 return -1;
8059
8060 *(p++) = 'z';
8061 *(p++) = '1';
8062 *(p++) = ',';
8063
8064 addr = remote_address_masked (bp_tgt->placed_address);
8065 p += hexnumstr (p, (ULONGEST) addr);
8066 sprintf (p, ",%x", bp_tgt->placed_size);
8067
8068 putpkt (rs->buf);
8069 getpkt (&rs->buf, &rs->buf_size, 0);
8070
8071 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
8072 {
8073 case PACKET_ERROR:
8074 case PACKET_UNKNOWN:
8075 return -1;
8076 case PACKET_OK:
8077 return 0;
8078 }
8079 internal_error (__FILE__, __LINE__,
8080 _("remote_remove_hw_breakpoint: reached end of function"));
8081 }
8082
8083 /* Table used by the crc32 function to calcuate the checksum. */
8084
8085 static unsigned long crc32_table[256] =
8086 {0, 0};
8087
8088 static unsigned long
8089 crc32 (const unsigned char *buf, int len, unsigned int crc)
8090 {
8091 if (!crc32_table[1])
8092 {
8093 /* Initialize the CRC table and the decoding table. */
8094 int i, j;
8095 unsigned int c;
8096
8097 for (i = 0; i < 256; i++)
8098 {
8099 for (c = i << 24, j = 8; j > 0; --j)
8100 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
8101 crc32_table[i] = c;
8102 }
8103 }
8104
8105 while (len--)
8106 {
8107 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
8108 buf++;
8109 }
8110 return crc;
8111 }
8112
8113 /* Verify memory using the "qCRC:" request. */
8114
8115 static int
8116 remote_verify_memory (struct target_ops *ops,
8117 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
8118 {
8119 struct remote_state *rs = get_remote_state ();
8120 unsigned long host_crc, target_crc;
8121 char *tmp;
8122
8123 /* FIXME: assumes lma can fit into long. */
8124 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
8125 (long) lma, (long) size);
8126 putpkt (rs->buf);
8127
8128 /* Be clever; compute the host_crc before waiting for target
8129 reply. */
8130 host_crc = crc32 (data, size, 0xffffffff);
8131
8132 getpkt (&rs->buf, &rs->buf_size, 0);
8133 if (rs->buf[0] == 'E')
8134 return -1;
8135
8136 if (rs->buf[0] != 'C')
8137 error (_("remote target does not support this operation"));
8138
8139 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
8140 target_crc = target_crc * 16 + fromhex (*tmp);
8141
8142 return (host_crc == target_crc);
8143 }
8144
8145 /* compare-sections command
8146
8147 With no arguments, compares each loadable section in the exec bfd
8148 with the same memory range on the target, and reports mismatches.
8149 Useful for verifying the image on the target against the exec file. */
8150
8151 static void
8152 compare_sections_command (char *args, int from_tty)
8153 {
8154 asection *s;
8155 struct cleanup *old_chain;
8156 char *sectdata;
8157 const char *sectname;
8158 bfd_size_type size;
8159 bfd_vma lma;
8160 int matched = 0;
8161 int mismatched = 0;
8162 int res;
8163
8164 if (!exec_bfd)
8165 error (_("command cannot be used without an exec file"));
8166
8167 for (s = exec_bfd->sections; s; s = s->next)
8168 {
8169 if (!(s->flags & SEC_LOAD))
8170 continue; /* Skip non-loadable section. */
8171
8172 size = bfd_get_section_size (s);
8173 if (size == 0)
8174 continue; /* Skip zero-length section. */
8175
8176 sectname = bfd_get_section_name (exec_bfd, s);
8177 if (args && strcmp (args, sectname) != 0)
8178 continue; /* Not the section selected by user. */
8179
8180 matched = 1; /* Do this section. */
8181 lma = s->lma;
8182
8183 sectdata = xmalloc (size);
8184 old_chain = make_cleanup (xfree, sectdata);
8185 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
8186
8187 res = target_verify_memory (sectdata, lma, size);
8188
8189 if (res == -1)
8190 error (_("target memory fault, section %s, range %s -- %s"), sectname,
8191 paddress (target_gdbarch, lma),
8192 paddress (target_gdbarch, lma + size));
8193
8194 printf_filtered ("Section %s, range %s -- %s: ", sectname,
8195 paddress (target_gdbarch, lma),
8196 paddress (target_gdbarch, lma + size));
8197 if (res)
8198 printf_filtered ("matched.\n");
8199 else
8200 {
8201 printf_filtered ("MIS-MATCHED!\n");
8202 mismatched++;
8203 }
8204
8205 do_cleanups (old_chain);
8206 }
8207 if (mismatched > 0)
8208 warning (_("One or more sections of the remote executable does not match\n\
8209 the loaded file\n"));
8210 if (args && !matched)
8211 printf_filtered (_("No loaded section named '%s'.\n"), args);
8212 }
8213
8214 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
8215 into remote target. The number of bytes written to the remote
8216 target is returned, or -1 for error. */
8217
8218 static LONGEST
8219 remote_write_qxfer (struct target_ops *ops, const char *object_name,
8220 const char *annex, const gdb_byte *writebuf,
8221 ULONGEST offset, LONGEST len,
8222 struct packet_config *packet)
8223 {
8224 int i, buf_len;
8225 ULONGEST n;
8226 struct remote_state *rs = get_remote_state ();
8227 int max_size = get_memory_write_packet_size ();
8228
8229 if (packet->support == PACKET_DISABLE)
8230 return -1;
8231
8232 /* Insert header. */
8233 i = snprintf (rs->buf, max_size,
8234 "qXfer:%s:write:%s:%s:",
8235 object_name, annex ? annex : "",
8236 phex_nz (offset, sizeof offset));
8237 max_size -= (i + 1);
8238
8239 /* Escape as much data as fits into rs->buf. */
8240 buf_len = remote_escape_output
8241 (writebuf, len, (rs->buf + i), &max_size, max_size);
8242
8243 if (putpkt_binary (rs->buf, i + buf_len) < 0
8244 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8245 || packet_ok (rs->buf, packet) != PACKET_OK)
8246 return -1;
8247
8248 unpack_varlen_hex (rs->buf, &n);
8249 return n;
8250 }
8251
8252 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
8253 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
8254 number of bytes read is returned, or 0 for EOF, or -1 for error.
8255 The number of bytes read may be less than LEN without indicating an
8256 EOF. PACKET is checked and updated to indicate whether the remote
8257 target supports this object. */
8258
8259 static LONGEST
8260 remote_read_qxfer (struct target_ops *ops, const char *object_name,
8261 const char *annex,
8262 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
8263 struct packet_config *packet)
8264 {
8265 static char *finished_object;
8266 static char *finished_annex;
8267 static ULONGEST finished_offset;
8268
8269 struct remote_state *rs = get_remote_state ();
8270 LONGEST i, n, packet_len;
8271
8272 if (packet->support == PACKET_DISABLE)
8273 return -1;
8274
8275 /* Check whether we've cached an end-of-object packet that matches
8276 this request. */
8277 if (finished_object)
8278 {
8279 if (strcmp (object_name, finished_object) == 0
8280 && strcmp (annex ? annex : "", finished_annex) == 0
8281 && offset == finished_offset)
8282 return 0;
8283
8284 /* Otherwise, we're now reading something different. Discard
8285 the cache. */
8286 xfree (finished_object);
8287 xfree (finished_annex);
8288 finished_object = NULL;
8289 finished_annex = NULL;
8290 }
8291
8292 /* Request only enough to fit in a single packet. The actual data
8293 may not, since we don't know how much of it will need to be escaped;
8294 the target is free to respond with slightly less data. We subtract
8295 five to account for the response type and the protocol frame. */
8296 n = min (get_remote_packet_size () - 5, len);
8297 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
8298 object_name, annex ? annex : "",
8299 phex_nz (offset, sizeof offset),
8300 phex_nz (n, sizeof n));
8301 i = putpkt (rs->buf);
8302 if (i < 0)
8303 return -1;
8304
8305 rs->buf[0] = '\0';
8306 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8307 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
8308 return -1;
8309
8310 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8311 error (_("Unknown remote qXfer reply: %s"), rs->buf);
8312
8313 /* 'm' means there is (or at least might be) more data after this
8314 batch. That does not make sense unless there's at least one byte
8315 of data in this reply. */
8316 if (rs->buf[0] == 'm' && packet_len == 1)
8317 error (_("Remote qXfer reply contained no data."));
8318
8319 /* Got some data. */
8320 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
8321
8322 /* 'l' is an EOF marker, possibly including a final block of data,
8323 or possibly empty. If we have the final block of a non-empty
8324 object, record this fact to bypass a subsequent partial read. */
8325 if (rs->buf[0] == 'l' && offset + i > 0)
8326 {
8327 finished_object = xstrdup (object_name);
8328 finished_annex = xstrdup (annex ? annex : "");
8329 finished_offset = offset + i;
8330 }
8331
8332 return i;
8333 }
8334
8335 static LONGEST
8336 remote_xfer_partial (struct target_ops *ops, enum target_object object,
8337 const char *annex, gdb_byte *readbuf,
8338 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
8339 {
8340 struct remote_state *rs;
8341 int i;
8342 char *p2;
8343 char query_type;
8344
8345 set_remote_traceframe ();
8346 set_general_thread (inferior_ptid);
8347
8348 rs = get_remote_state ();
8349
8350 /* Handle memory using the standard memory routines. */
8351 if (object == TARGET_OBJECT_MEMORY)
8352 {
8353 int xfered;
8354
8355 errno = 0;
8356
8357 /* If the remote target is connected but not running, we should
8358 pass this request down to a lower stratum (e.g. the executable
8359 file). */
8360 if (!target_has_execution)
8361 return 0;
8362
8363 if (writebuf != NULL)
8364 xfered = remote_write_bytes (offset, writebuf, len);
8365 else
8366 xfered = remote_read_bytes (offset, readbuf, len);
8367
8368 if (xfered > 0)
8369 return xfered;
8370 else if (xfered == 0 && errno == 0)
8371 return 0;
8372 else
8373 return -1;
8374 }
8375
8376 /* Handle SPU memory using qxfer packets. */
8377 if (object == TARGET_OBJECT_SPU)
8378 {
8379 if (readbuf)
8380 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
8381 &remote_protocol_packets
8382 [PACKET_qXfer_spu_read]);
8383 else
8384 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
8385 &remote_protocol_packets
8386 [PACKET_qXfer_spu_write]);
8387 }
8388
8389 /* Handle extra signal info using qxfer packets. */
8390 if (object == TARGET_OBJECT_SIGNAL_INFO)
8391 {
8392 if (readbuf)
8393 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
8394 &remote_protocol_packets
8395 [PACKET_qXfer_siginfo_read]);
8396 else
8397 return remote_write_qxfer (ops, "siginfo", annex,
8398 writebuf, offset, len,
8399 &remote_protocol_packets
8400 [PACKET_qXfer_siginfo_write]);
8401 }
8402
8403 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
8404 {
8405 if (readbuf)
8406 return remote_read_qxfer (ops, "statictrace", annex,
8407 readbuf, offset, len,
8408 &remote_protocol_packets
8409 [PACKET_qXfer_statictrace_read]);
8410 else
8411 return -1;
8412 }
8413
8414 /* Only handle flash writes. */
8415 if (writebuf != NULL)
8416 {
8417 LONGEST xfered;
8418
8419 switch (object)
8420 {
8421 case TARGET_OBJECT_FLASH:
8422 xfered = remote_flash_write (ops, offset, len, writebuf);
8423
8424 if (xfered > 0)
8425 return xfered;
8426 else if (xfered == 0 && errno == 0)
8427 return 0;
8428 else
8429 return -1;
8430
8431 default:
8432 return -1;
8433 }
8434 }
8435
8436 /* Map pre-existing objects onto letters. DO NOT do this for new
8437 objects!!! Instead specify new query packets. */
8438 switch (object)
8439 {
8440 case TARGET_OBJECT_AVR:
8441 query_type = 'R';
8442 break;
8443
8444 case TARGET_OBJECT_AUXV:
8445 gdb_assert (annex == NULL);
8446 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
8447 &remote_protocol_packets[PACKET_qXfer_auxv]);
8448
8449 case TARGET_OBJECT_AVAILABLE_FEATURES:
8450 return remote_read_qxfer
8451 (ops, "features", annex, readbuf, offset, len,
8452 &remote_protocol_packets[PACKET_qXfer_features]);
8453
8454 case TARGET_OBJECT_LIBRARIES:
8455 return remote_read_qxfer
8456 (ops, "libraries", annex, readbuf, offset, len,
8457 &remote_protocol_packets[PACKET_qXfer_libraries]);
8458
8459 case TARGET_OBJECT_LIBRARIES_SVR4:
8460 return remote_read_qxfer
8461 (ops, "libraries-svr4", annex, readbuf, offset, len,
8462 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
8463
8464 case TARGET_OBJECT_MEMORY_MAP:
8465 gdb_assert (annex == NULL);
8466 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
8467 &remote_protocol_packets[PACKET_qXfer_memory_map]);
8468
8469 case TARGET_OBJECT_OSDATA:
8470 /* Should only get here if we're connected. */
8471 gdb_assert (remote_desc);
8472 return remote_read_qxfer
8473 (ops, "osdata", annex, readbuf, offset, len,
8474 &remote_protocol_packets[PACKET_qXfer_osdata]);
8475
8476 case TARGET_OBJECT_THREADS:
8477 gdb_assert (annex == NULL);
8478 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
8479 &remote_protocol_packets[PACKET_qXfer_threads]);
8480
8481 case TARGET_OBJECT_TRACEFRAME_INFO:
8482 gdb_assert (annex == NULL);
8483 return remote_read_qxfer
8484 (ops, "traceframe-info", annex, readbuf, offset, len,
8485 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
8486
8487 case TARGET_OBJECT_FDPIC:
8488 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
8489 &remote_protocol_packets[PACKET_qXfer_fdpic]);
8490
8491 case TARGET_OBJECT_OPENVMS_UIB:
8492 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
8493 &remote_protocol_packets[PACKET_qXfer_uib]);
8494
8495 default:
8496 return -1;
8497 }
8498
8499 /* Note: a zero OFFSET and LEN can be used to query the minimum
8500 buffer size. */
8501 if (offset == 0 && len == 0)
8502 return (get_remote_packet_size ());
8503 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
8504 large enough let the caller deal with it. */
8505 if (len < get_remote_packet_size ())
8506 return -1;
8507 len = get_remote_packet_size ();
8508
8509 /* Except for querying the minimum buffer size, target must be open. */
8510 if (!remote_desc)
8511 error (_("remote query is only available after target open"));
8512
8513 gdb_assert (annex != NULL);
8514 gdb_assert (readbuf != NULL);
8515
8516 p2 = rs->buf;
8517 *p2++ = 'q';
8518 *p2++ = query_type;
8519
8520 /* We used one buffer char for the remote protocol q command and
8521 another for the query type. As the remote protocol encapsulation
8522 uses 4 chars plus one extra in case we are debugging
8523 (remote_debug), we have PBUFZIZ - 7 left to pack the query
8524 string. */
8525 i = 0;
8526 while (annex[i] && (i < (get_remote_packet_size () - 8)))
8527 {
8528 /* Bad caller may have sent forbidden characters. */
8529 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
8530 *p2++ = annex[i];
8531 i++;
8532 }
8533 *p2 = '\0';
8534 gdb_assert (annex[i] == '\0');
8535
8536 i = putpkt (rs->buf);
8537 if (i < 0)
8538 return i;
8539
8540 getpkt (&rs->buf, &rs->buf_size, 0);
8541 strcpy ((char *) readbuf, rs->buf);
8542
8543 return strlen ((char *) readbuf);
8544 }
8545
8546 static int
8547 remote_search_memory (struct target_ops* ops,
8548 CORE_ADDR start_addr, ULONGEST search_space_len,
8549 const gdb_byte *pattern, ULONGEST pattern_len,
8550 CORE_ADDR *found_addrp)
8551 {
8552 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
8553 struct remote_state *rs = get_remote_state ();
8554 int max_size = get_memory_write_packet_size ();
8555 struct packet_config *packet =
8556 &remote_protocol_packets[PACKET_qSearch_memory];
8557 /* Number of packet bytes used to encode the pattern;
8558 this could be more than PATTERN_LEN due to escape characters. */
8559 int escaped_pattern_len;
8560 /* Amount of pattern that was encodable in the packet. */
8561 int used_pattern_len;
8562 int i;
8563 int found;
8564 ULONGEST found_addr;
8565
8566 /* Don't go to the target if we don't have to.
8567 This is done before checking packet->support to avoid the possibility that
8568 a success for this edge case means the facility works in general. */
8569 if (pattern_len > search_space_len)
8570 return 0;
8571 if (pattern_len == 0)
8572 {
8573 *found_addrp = start_addr;
8574 return 1;
8575 }
8576
8577 /* If we already know the packet isn't supported, fall back to the simple
8578 way of searching memory. */
8579
8580 if (packet->support == PACKET_DISABLE)
8581 {
8582 /* Target doesn't provided special support, fall back and use the
8583 standard support (copy memory and do the search here). */
8584 return simple_search_memory (ops, start_addr, search_space_len,
8585 pattern, pattern_len, found_addrp);
8586 }
8587
8588 /* Insert header. */
8589 i = snprintf (rs->buf, max_size,
8590 "qSearch:memory:%s;%s;",
8591 phex_nz (start_addr, addr_size),
8592 phex_nz (search_space_len, sizeof (search_space_len)));
8593 max_size -= (i + 1);
8594
8595 /* Escape as much data as fits into rs->buf. */
8596 escaped_pattern_len =
8597 remote_escape_output (pattern, pattern_len, (rs->buf + i),
8598 &used_pattern_len, max_size);
8599
8600 /* Bail if the pattern is too large. */
8601 if (used_pattern_len != pattern_len)
8602 error (_("Pattern is too large to transmit to remote target."));
8603
8604 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
8605 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8606 || packet_ok (rs->buf, packet) != PACKET_OK)
8607 {
8608 /* The request may not have worked because the command is not
8609 supported. If so, fall back to the simple way. */
8610 if (packet->support == PACKET_DISABLE)
8611 {
8612 return simple_search_memory (ops, start_addr, search_space_len,
8613 pattern, pattern_len, found_addrp);
8614 }
8615 return -1;
8616 }
8617
8618 if (rs->buf[0] == '0')
8619 found = 0;
8620 else if (rs->buf[0] == '1')
8621 {
8622 found = 1;
8623 if (rs->buf[1] != ',')
8624 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
8625 unpack_varlen_hex (rs->buf + 2, &found_addr);
8626 *found_addrp = found_addr;
8627 }
8628 else
8629 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
8630
8631 return found;
8632 }
8633
8634 static void
8635 remote_rcmd (char *command,
8636 struct ui_file *outbuf)
8637 {
8638 struct remote_state *rs = get_remote_state ();
8639 char *p = rs->buf;
8640
8641 if (!remote_desc)
8642 error (_("remote rcmd is only available after target open"));
8643
8644 /* Send a NULL command across as an empty command. */
8645 if (command == NULL)
8646 command = "";
8647
8648 /* The query prefix. */
8649 strcpy (rs->buf, "qRcmd,");
8650 p = strchr (rs->buf, '\0');
8651
8652 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
8653 > get_remote_packet_size ())
8654 error (_("\"monitor\" command ``%s'' is too long."), command);
8655
8656 /* Encode the actual command. */
8657 bin2hex ((gdb_byte *) command, p, 0);
8658
8659 if (putpkt (rs->buf) < 0)
8660 error (_("Communication problem with target."));
8661
8662 /* get/display the response */
8663 while (1)
8664 {
8665 char *buf;
8666
8667 /* XXX - see also remote_get_noisy_reply(). */
8668 QUIT; /* Allow user to bail out with ^C. */
8669 rs->buf[0] = '\0';
8670 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
8671 {
8672 /* Timeout. Continue to (try to) read responses.
8673 This is better than stopping with an error, assuming the stub
8674 is still executing the (long) monitor command.
8675 If needed, the user can interrupt gdb using C-c, obtaining
8676 an effect similar to stop on timeout. */
8677 continue;
8678 }
8679 buf = rs->buf;
8680 if (buf[0] == '\0')
8681 error (_("Target does not support this command."));
8682 if (buf[0] == 'O' && buf[1] != 'K')
8683 {
8684 remote_console_output (buf + 1); /* 'O' message from stub. */
8685 continue;
8686 }
8687 if (strcmp (buf, "OK") == 0)
8688 break;
8689 if (strlen (buf) == 3 && buf[0] == 'E'
8690 && isdigit (buf[1]) && isdigit (buf[2]))
8691 {
8692 error (_("Protocol error with Rcmd"));
8693 }
8694 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
8695 {
8696 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
8697
8698 fputc_unfiltered (c, outbuf);
8699 }
8700 break;
8701 }
8702 }
8703
8704 static VEC(mem_region_s) *
8705 remote_memory_map (struct target_ops *ops)
8706 {
8707 VEC(mem_region_s) *result = NULL;
8708 char *text = target_read_stralloc (&current_target,
8709 TARGET_OBJECT_MEMORY_MAP, NULL);
8710
8711 if (text)
8712 {
8713 struct cleanup *back_to = make_cleanup (xfree, text);
8714
8715 result = parse_memory_map (text);
8716 do_cleanups (back_to);
8717 }
8718
8719 return result;
8720 }
8721
8722 static void
8723 packet_command (char *args, int from_tty)
8724 {
8725 struct remote_state *rs = get_remote_state ();
8726
8727 if (!remote_desc)
8728 error (_("command can only be used with remote target"));
8729
8730 if (!args)
8731 error (_("remote-packet command requires packet text as argument"));
8732
8733 puts_filtered ("sending: ");
8734 print_packet (args);
8735 puts_filtered ("\n");
8736 putpkt (args);
8737
8738 getpkt (&rs->buf, &rs->buf_size, 0);
8739 puts_filtered ("received: ");
8740 print_packet (rs->buf);
8741 puts_filtered ("\n");
8742 }
8743
8744 #if 0
8745 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
8746
8747 static void display_thread_info (struct gdb_ext_thread_info *info);
8748
8749 static void threadset_test_cmd (char *cmd, int tty);
8750
8751 static void threadalive_test (char *cmd, int tty);
8752
8753 static void threadlist_test_cmd (char *cmd, int tty);
8754
8755 int get_and_display_threadinfo (threadref *ref);
8756
8757 static void threadinfo_test_cmd (char *cmd, int tty);
8758
8759 static int thread_display_step (threadref *ref, void *context);
8760
8761 static void threadlist_update_test_cmd (char *cmd, int tty);
8762
8763 static void init_remote_threadtests (void);
8764
8765 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
8766
8767 static void
8768 threadset_test_cmd (char *cmd, int tty)
8769 {
8770 int sample_thread = SAMPLE_THREAD;
8771
8772 printf_filtered (_("Remote threadset test\n"));
8773 set_general_thread (sample_thread);
8774 }
8775
8776
8777 static void
8778 threadalive_test (char *cmd, int tty)
8779 {
8780 int sample_thread = SAMPLE_THREAD;
8781 int pid = ptid_get_pid (inferior_ptid);
8782 ptid_t ptid = ptid_build (pid, 0, sample_thread);
8783
8784 if (remote_thread_alive (ptid))
8785 printf_filtered ("PASS: Thread alive test\n");
8786 else
8787 printf_filtered ("FAIL: Thread alive test\n");
8788 }
8789
8790 void output_threadid (char *title, threadref *ref);
8791
8792 void
8793 output_threadid (char *title, threadref *ref)
8794 {
8795 char hexid[20];
8796
8797 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
8798 hexid[16] = 0;
8799 printf_filtered ("%s %s\n", title, (&hexid[0]));
8800 }
8801
8802 static void
8803 threadlist_test_cmd (char *cmd, int tty)
8804 {
8805 int startflag = 1;
8806 threadref nextthread;
8807 int done, result_count;
8808 threadref threadlist[3];
8809
8810 printf_filtered ("Remote Threadlist test\n");
8811 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
8812 &result_count, &threadlist[0]))
8813 printf_filtered ("FAIL: threadlist test\n");
8814 else
8815 {
8816 threadref *scan = threadlist;
8817 threadref *limit = scan + result_count;
8818
8819 while (scan < limit)
8820 output_threadid (" thread ", scan++);
8821 }
8822 }
8823
8824 void
8825 display_thread_info (struct gdb_ext_thread_info *info)
8826 {
8827 output_threadid ("Threadid: ", &info->threadid);
8828 printf_filtered ("Name: %s\n ", info->shortname);
8829 printf_filtered ("State: %s\n", info->display);
8830 printf_filtered ("other: %s\n\n", info->more_display);
8831 }
8832
8833 int
8834 get_and_display_threadinfo (threadref *ref)
8835 {
8836 int result;
8837 int set;
8838 struct gdb_ext_thread_info threadinfo;
8839
8840 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
8841 | TAG_MOREDISPLAY | TAG_DISPLAY;
8842 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
8843 display_thread_info (&threadinfo);
8844 return result;
8845 }
8846
8847 static void
8848 threadinfo_test_cmd (char *cmd, int tty)
8849 {
8850 int athread = SAMPLE_THREAD;
8851 threadref thread;
8852 int set;
8853
8854 int_to_threadref (&thread, athread);
8855 printf_filtered ("Remote Threadinfo test\n");
8856 if (!get_and_display_threadinfo (&thread))
8857 printf_filtered ("FAIL cannot get thread info\n");
8858 }
8859
8860 static int
8861 thread_display_step (threadref *ref, void *context)
8862 {
8863 /* output_threadid(" threadstep ",ref); *//* simple test */
8864 return get_and_display_threadinfo (ref);
8865 }
8866
8867 static void
8868 threadlist_update_test_cmd (char *cmd, int tty)
8869 {
8870 printf_filtered ("Remote Threadlist update test\n");
8871 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
8872 }
8873
8874 static void
8875 init_remote_threadtests (void)
8876 {
8877 add_com ("tlist", class_obscure, threadlist_test_cmd,
8878 _("Fetch and print the remote list of "
8879 "thread identifiers, one pkt only"));
8880 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
8881 _("Fetch and display info about one thread"));
8882 add_com ("tset", class_obscure, threadset_test_cmd,
8883 _("Test setting to a different thread"));
8884 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
8885 _("Iterate through updating all remote thread info"));
8886 add_com ("talive", class_obscure, threadalive_test,
8887 _(" Remote thread alive test "));
8888 }
8889
8890 #endif /* 0 */
8891
8892 /* Convert a thread ID to a string. Returns the string in a static
8893 buffer. */
8894
8895 static char *
8896 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
8897 {
8898 static char buf[64];
8899 struct remote_state *rs = get_remote_state ();
8900
8901 if (ptid_equal (ptid, null_ptid))
8902 return normal_pid_to_str (ptid);
8903 else if (ptid_is_pid (ptid))
8904 {
8905 /* Printing an inferior target id. */
8906
8907 /* When multi-process extensions are off, there's no way in the
8908 remote protocol to know the remote process id, if there's any
8909 at all. There's one exception --- when we're connected with
8910 target extended-remote, and we manually attached to a process
8911 with "attach PID". We don't record anywhere a flag that
8912 allows us to distinguish that case from the case of
8913 connecting with extended-remote and the stub already being
8914 attached to a process, and reporting yes to qAttached, hence
8915 no smart special casing here. */
8916 if (!remote_multi_process_p (rs))
8917 {
8918 xsnprintf (buf, sizeof buf, "Remote target");
8919 return buf;
8920 }
8921
8922 return normal_pid_to_str (ptid);
8923 }
8924 else
8925 {
8926 if (ptid_equal (magic_null_ptid, ptid))
8927 xsnprintf (buf, sizeof buf, "Thread <main>");
8928 else if (rs->extended && remote_multi_process_p (rs))
8929 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
8930 ptid_get_pid (ptid), ptid_get_tid (ptid));
8931 else
8932 xsnprintf (buf, sizeof buf, "Thread %ld",
8933 ptid_get_tid (ptid));
8934 return buf;
8935 }
8936 }
8937
8938 /* Get the address of the thread local variable in OBJFILE which is
8939 stored at OFFSET within the thread local storage for thread PTID. */
8940
8941 static CORE_ADDR
8942 remote_get_thread_local_address (struct target_ops *ops,
8943 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
8944 {
8945 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
8946 {
8947 struct remote_state *rs = get_remote_state ();
8948 char *p = rs->buf;
8949 char *endp = rs->buf + get_remote_packet_size ();
8950 enum packet_result result;
8951
8952 strcpy (p, "qGetTLSAddr:");
8953 p += strlen (p);
8954 p = write_ptid (p, endp, ptid);
8955 *p++ = ',';
8956 p += hexnumstr (p, offset);
8957 *p++ = ',';
8958 p += hexnumstr (p, lm);
8959 *p++ = '\0';
8960
8961 putpkt (rs->buf);
8962 getpkt (&rs->buf, &rs->buf_size, 0);
8963 result = packet_ok (rs->buf,
8964 &remote_protocol_packets[PACKET_qGetTLSAddr]);
8965 if (result == PACKET_OK)
8966 {
8967 ULONGEST result;
8968
8969 unpack_varlen_hex (rs->buf, &result);
8970 return result;
8971 }
8972 else if (result == PACKET_UNKNOWN)
8973 throw_error (TLS_GENERIC_ERROR,
8974 _("Remote target doesn't support qGetTLSAddr packet"));
8975 else
8976 throw_error (TLS_GENERIC_ERROR,
8977 _("Remote target failed to process qGetTLSAddr request"));
8978 }
8979 else
8980 throw_error (TLS_GENERIC_ERROR,
8981 _("TLS not supported or disabled on this target"));
8982 /* Not reached. */
8983 return 0;
8984 }
8985
8986 /* Provide thread local base, i.e. Thread Information Block address.
8987 Returns 1 if ptid is found and thread_local_base is non zero. */
8988
8989 static int
8990 remote_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
8991 {
8992 if (remote_protocol_packets[PACKET_qGetTIBAddr].support != PACKET_DISABLE)
8993 {
8994 struct remote_state *rs = get_remote_state ();
8995 char *p = rs->buf;
8996 char *endp = rs->buf + get_remote_packet_size ();
8997 enum packet_result result;
8998
8999 strcpy (p, "qGetTIBAddr:");
9000 p += strlen (p);
9001 p = write_ptid (p, endp, ptid);
9002 *p++ = '\0';
9003
9004 putpkt (rs->buf);
9005 getpkt (&rs->buf, &rs->buf_size, 0);
9006 result = packet_ok (rs->buf,
9007 &remote_protocol_packets[PACKET_qGetTIBAddr]);
9008 if (result == PACKET_OK)
9009 {
9010 ULONGEST result;
9011
9012 unpack_varlen_hex (rs->buf, &result);
9013 if (addr)
9014 *addr = (CORE_ADDR) result;
9015 return 1;
9016 }
9017 else if (result == PACKET_UNKNOWN)
9018 error (_("Remote target doesn't support qGetTIBAddr packet"));
9019 else
9020 error (_("Remote target failed to process qGetTIBAddr request"));
9021 }
9022 else
9023 error (_("qGetTIBAddr not supported or disabled on this target"));
9024 /* Not reached. */
9025 return 0;
9026 }
9027
9028 /* Support for inferring a target description based on the current
9029 architecture and the size of a 'g' packet. While the 'g' packet
9030 can have any size (since optional registers can be left off the
9031 end), some sizes are easily recognizable given knowledge of the
9032 approximate architecture. */
9033
9034 struct remote_g_packet_guess
9035 {
9036 int bytes;
9037 const struct target_desc *tdesc;
9038 };
9039 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
9040 DEF_VEC_O(remote_g_packet_guess_s);
9041
9042 struct remote_g_packet_data
9043 {
9044 VEC(remote_g_packet_guess_s) *guesses;
9045 };
9046
9047 static struct gdbarch_data *remote_g_packet_data_handle;
9048
9049 static void *
9050 remote_g_packet_data_init (struct obstack *obstack)
9051 {
9052 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
9053 }
9054
9055 void
9056 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
9057 const struct target_desc *tdesc)
9058 {
9059 struct remote_g_packet_data *data
9060 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
9061 struct remote_g_packet_guess new_guess, *guess;
9062 int ix;
9063
9064 gdb_assert (tdesc != NULL);
9065
9066 for (ix = 0;
9067 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9068 ix++)
9069 if (guess->bytes == bytes)
9070 internal_error (__FILE__, __LINE__,
9071 _("Duplicate g packet description added for size %d"),
9072 bytes);
9073
9074 new_guess.bytes = bytes;
9075 new_guess.tdesc = tdesc;
9076 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
9077 }
9078
9079 /* Return 1 if remote_read_description would do anything on this target
9080 and architecture, 0 otherwise. */
9081
9082 static int
9083 remote_read_description_p (struct target_ops *target)
9084 {
9085 struct remote_g_packet_data *data
9086 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
9087
9088 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9089 return 1;
9090
9091 return 0;
9092 }
9093
9094 static const struct target_desc *
9095 remote_read_description (struct target_ops *target)
9096 {
9097 struct remote_g_packet_data *data
9098 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
9099
9100 /* Do not try this during initial connection, when we do not know
9101 whether there is a running but stopped thread. */
9102 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
9103 return NULL;
9104
9105 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9106 {
9107 struct remote_g_packet_guess *guess;
9108 int ix;
9109 int bytes = send_g_packet ();
9110
9111 for (ix = 0;
9112 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9113 ix++)
9114 if (guess->bytes == bytes)
9115 return guess->tdesc;
9116
9117 /* We discard the g packet. A minor optimization would be to
9118 hold on to it, and fill the register cache once we have selected
9119 an architecture, but it's too tricky to do safely. */
9120 }
9121
9122 return NULL;
9123 }
9124
9125 /* Remote file transfer support. This is host-initiated I/O, not
9126 target-initiated; for target-initiated, see remote-fileio.c. */
9127
9128 /* If *LEFT is at least the length of STRING, copy STRING to
9129 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9130 decrease *LEFT. Otherwise raise an error. */
9131
9132 static void
9133 remote_buffer_add_string (char **buffer, int *left, char *string)
9134 {
9135 int len = strlen (string);
9136
9137 if (len > *left)
9138 error (_("Packet too long for target."));
9139
9140 memcpy (*buffer, string, len);
9141 *buffer += len;
9142 *left -= len;
9143
9144 /* NUL-terminate the buffer as a convenience, if there is
9145 room. */
9146 if (*left)
9147 **buffer = '\0';
9148 }
9149
9150 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
9151 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9152 decrease *LEFT. Otherwise raise an error. */
9153
9154 static void
9155 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
9156 int len)
9157 {
9158 if (2 * len > *left)
9159 error (_("Packet too long for target."));
9160
9161 bin2hex (bytes, *buffer, len);
9162 *buffer += 2 * len;
9163 *left -= 2 * len;
9164
9165 /* NUL-terminate the buffer as a convenience, if there is
9166 room. */
9167 if (*left)
9168 **buffer = '\0';
9169 }
9170
9171 /* If *LEFT is large enough, convert VALUE to hex and add it to
9172 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9173 decrease *LEFT. Otherwise raise an error. */
9174
9175 static void
9176 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
9177 {
9178 int len = hexnumlen (value);
9179
9180 if (len > *left)
9181 error (_("Packet too long for target."));
9182
9183 hexnumstr (*buffer, value);
9184 *buffer += len;
9185 *left -= len;
9186
9187 /* NUL-terminate the buffer as a convenience, if there is
9188 room. */
9189 if (*left)
9190 **buffer = '\0';
9191 }
9192
9193 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
9194 value, *REMOTE_ERRNO to the remote error number or zero if none
9195 was included, and *ATTACHMENT to point to the start of the annex
9196 if any. The length of the packet isn't needed here; there may
9197 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
9198
9199 Return 0 if the packet could be parsed, -1 if it could not. If
9200 -1 is returned, the other variables may not be initialized. */
9201
9202 static int
9203 remote_hostio_parse_result (char *buffer, int *retcode,
9204 int *remote_errno, char **attachment)
9205 {
9206 char *p, *p2;
9207
9208 *remote_errno = 0;
9209 *attachment = NULL;
9210
9211 if (buffer[0] != 'F')
9212 return -1;
9213
9214 errno = 0;
9215 *retcode = strtol (&buffer[1], &p, 16);
9216 if (errno != 0 || p == &buffer[1])
9217 return -1;
9218
9219 /* Check for ",errno". */
9220 if (*p == ',')
9221 {
9222 errno = 0;
9223 *remote_errno = strtol (p + 1, &p2, 16);
9224 if (errno != 0 || p + 1 == p2)
9225 return -1;
9226 p = p2;
9227 }
9228
9229 /* Check for ";attachment". If there is no attachment, the
9230 packet should end here. */
9231 if (*p == ';')
9232 {
9233 *attachment = p + 1;
9234 return 0;
9235 }
9236 else if (*p == '\0')
9237 return 0;
9238 else
9239 return -1;
9240 }
9241
9242 /* Send a prepared I/O packet to the target and read its response.
9243 The prepared packet is in the global RS->BUF before this function
9244 is called, and the answer is there when we return.
9245
9246 COMMAND_BYTES is the length of the request to send, which may include
9247 binary data. WHICH_PACKET is the packet configuration to check
9248 before attempting a packet. If an error occurs, *REMOTE_ERRNO
9249 is set to the error number and -1 is returned. Otherwise the value
9250 returned by the function is returned.
9251
9252 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
9253 attachment is expected; an error will be reported if there's a
9254 mismatch. If one is found, *ATTACHMENT will be set to point into
9255 the packet buffer and *ATTACHMENT_LEN will be set to the
9256 attachment's length. */
9257
9258 static int
9259 remote_hostio_send_command (int command_bytes, int which_packet,
9260 int *remote_errno, char **attachment,
9261 int *attachment_len)
9262 {
9263 struct remote_state *rs = get_remote_state ();
9264 int ret, bytes_read;
9265 char *attachment_tmp;
9266
9267 if (!remote_desc
9268 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
9269 {
9270 *remote_errno = FILEIO_ENOSYS;
9271 return -1;
9272 }
9273
9274 putpkt_binary (rs->buf, command_bytes);
9275 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9276
9277 /* If it timed out, something is wrong. Don't try to parse the
9278 buffer. */
9279 if (bytes_read < 0)
9280 {
9281 *remote_errno = FILEIO_EINVAL;
9282 return -1;
9283 }
9284
9285 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
9286 {
9287 case PACKET_ERROR:
9288 *remote_errno = FILEIO_EINVAL;
9289 return -1;
9290 case PACKET_UNKNOWN:
9291 *remote_errno = FILEIO_ENOSYS;
9292 return -1;
9293 case PACKET_OK:
9294 break;
9295 }
9296
9297 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
9298 &attachment_tmp))
9299 {
9300 *remote_errno = FILEIO_EINVAL;
9301 return -1;
9302 }
9303
9304 /* Make sure we saw an attachment if and only if we expected one. */
9305 if ((attachment_tmp == NULL && attachment != NULL)
9306 || (attachment_tmp != NULL && attachment == NULL))
9307 {
9308 *remote_errno = FILEIO_EINVAL;
9309 return -1;
9310 }
9311
9312 /* If an attachment was found, it must point into the packet buffer;
9313 work out how many bytes there were. */
9314 if (attachment_tmp != NULL)
9315 {
9316 *attachment = attachment_tmp;
9317 *attachment_len = bytes_read - (*attachment - rs->buf);
9318 }
9319
9320 return ret;
9321 }
9322
9323 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
9324 remote file descriptor, or -1 if an error occurs (and set
9325 *REMOTE_ERRNO). */
9326
9327 static int
9328 remote_hostio_open (const char *filename, int flags, int mode,
9329 int *remote_errno)
9330 {
9331 struct remote_state *rs = get_remote_state ();
9332 char *p = rs->buf;
9333 int left = get_remote_packet_size () - 1;
9334
9335 remote_buffer_add_string (&p, &left, "vFile:open:");
9336
9337 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9338 strlen (filename));
9339 remote_buffer_add_string (&p, &left, ",");
9340
9341 remote_buffer_add_int (&p, &left, flags);
9342 remote_buffer_add_string (&p, &left, ",");
9343
9344 remote_buffer_add_int (&p, &left, mode);
9345
9346 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
9347 remote_errno, NULL, NULL);
9348 }
9349
9350 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
9351 Return the number of bytes written, or -1 if an error occurs (and
9352 set *REMOTE_ERRNO). */
9353
9354 static int
9355 remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
9356 ULONGEST offset, int *remote_errno)
9357 {
9358 struct remote_state *rs = get_remote_state ();
9359 char *p = rs->buf;
9360 int left = get_remote_packet_size ();
9361 int out_len;
9362
9363 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
9364
9365 remote_buffer_add_int (&p, &left, fd);
9366 remote_buffer_add_string (&p, &left, ",");
9367
9368 remote_buffer_add_int (&p, &left, offset);
9369 remote_buffer_add_string (&p, &left, ",");
9370
9371 p += remote_escape_output (write_buf, len, p, &out_len,
9372 get_remote_packet_size () - (p - rs->buf));
9373
9374 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
9375 remote_errno, NULL, NULL);
9376 }
9377
9378 /* Read up to LEN bytes FD on the remote target into READ_BUF
9379 Return the number of bytes read, or -1 if an error occurs (and
9380 set *REMOTE_ERRNO). */
9381
9382 static int
9383 remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
9384 ULONGEST offset, int *remote_errno)
9385 {
9386 struct remote_state *rs = get_remote_state ();
9387 char *p = rs->buf;
9388 char *attachment;
9389 int left = get_remote_packet_size ();
9390 int ret, attachment_len;
9391 int read_len;
9392
9393 remote_buffer_add_string (&p, &left, "vFile:pread:");
9394
9395 remote_buffer_add_int (&p, &left, fd);
9396 remote_buffer_add_string (&p, &left, ",");
9397
9398 remote_buffer_add_int (&p, &left, len);
9399 remote_buffer_add_string (&p, &left, ",");
9400
9401 remote_buffer_add_int (&p, &left, offset);
9402
9403 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
9404 remote_errno, &attachment,
9405 &attachment_len);
9406
9407 if (ret < 0)
9408 return ret;
9409
9410 read_len = remote_unescape_input (attachment, attachment_len,
9411 read_buf, len);
9412 if (read_len != ret)
9413 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
9414
9415 return ret;
9416 }
9417
9418 /* Close FD on the remote target. Return 0, or -1 if an error occurs
9419 (and set *REMOTE_ERRNO). */
9420
9421 static int
9422 remote_hostio_close (int fd, int *remote_errno)
9423 {
9424 struct remote_state *rs = get_remote_state ();
9425 char *p = rs->buf;
9426 int left = get_remote_packet_size () - 1;
9427
9428 remote_buffer_add_string (&p, &left, "vFile:close:");
9429
9430 remote_buffer_add_int (&p, &left, fd);
9431
9432 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
9433 remote_errno, NULL, NULL);
9434 }
9435
9436 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
9437 occurs (and set *REMOTE_ERRNO). */
9438
9439 static int
9440 remote_hostio_unlink (const char *filename, int *remote_errno)
9441 {
9442 struct remote_state *rs = get_remote_state ();
9443 char *p = rs->buf;
9444 int left = get_remote_packet_size () - 1;
9445
9446 remote_buffer_add_string (&p, &left, "vFile:unlink:");
9447
9448 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9449 strlen (filename));
9450
9451 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
9452 remote_errno, NULL, NULL);
9453 }
9454
9455 /* Read value of symbolic link FILENAME on the remote target. Return
9456 a null-terminated string allocated via xmalloc, or NULL if an error
9457 occurs (and set *REMOTE_ERRNO). */
9458
9459 static char *
9460 remote_hostio_readlink (const char *filename, int *remote_errno)
9461 {
9462 struct remote_state *rs = get_remote_state ();
9463 char *p = rs->buf;
9464 char *attachment;
9465 int left = get_remote_packet_size ();
9466 int len, attachment_len;
9467 int read_len;
9468 char *ret;
9469
9470 remote_buffer_add_string (&p, &left, "vFile:readlink:");
9471
9472 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9473 strlen (filename));
9474
9475 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
9476 remote_errno, &attachment,
9477 &attachment_len);
9478
9479 if (len < 0)
9480 return NULL;
9481
9482 ret = xmalloc (len + 1);
9483
9484 read_len = remote_unescape_input (attachment, attachment_len,
9485 ret, len);
9486 if (read_len != len)
9487 error (_("Readlink returned %d, but %d bytes."), len, read_len);
9488
9489 ret[len] = '\0';
9490 return ret;
9491 }
9492
9493 static int
9494 remote_fileio_errno_to_host (int errnum)
9495 {
9496 switch (errnum)
9497 {
9498 case FILEIO_EPERM:
9499 return EPERM;
9500 case FILEIO_ENOENT:
9501 return ENOENT;
9502 case FILEIO_EINTR:
9503 return EINTR;
9504 case FILEIO_EIO:
9505 return EIO;
9506 case FILEIO_EBADF:
9507 return EBADF;
9508 case FILEIO_EACCES:
9509 return EACCES;
9510 case FILEIO_EFAULT:
9511 return EFAULT;
9512 case FILEIO_EBUSY:
9513 return EBUSY;
9514 case FILEIO_EEXIST:
9515 return EEXIST;
9516 case FILEIO_ENODEV:
9517 return ENODEV;
9518 case FILEIO_ENOTDIR:
9519 return ENOTDIR;
9520 case FILEIO_EISDIR:
9521 return EISDIR;
9522 case FILEIO_EINVAL:
9523 return EINVAL;
9524 case FILEIO_ENFILE:
9525 return ENFILE;
9526 case FILEIO_EMFILE:
9527 return EMFILE;
9528 case FILEIO_EFBIG:
9529 return EFBIG;
9530 case FILEIO_ENOSPC:
9531 return ENOSPC;
9532 case FILEIO_ESPIPE:
9533 return ESPIPE;
9534 case FILEIO_EROFS:
9535 return EROFS;
9536 case FILEIO_ENOSYS:
9537 return ENOSYS;
9538 case FILEIO_ENAMETOOLONG:
9539 return ENAMETOOLONG;
9540 }
9541 return -1;
9542 }
9543
9544 static char *
9545 remote_hostio_error (int errnum)
9546 {
9547 int host_error = remote_fileio_errno_to_host (errnum);
9548
9549 if (host_error == -1)
9550 error (_("Unknown remote I/O error %d"), errnum);
9551 else
9552 error (_("Remote I/O error: %s"), safe_strerror (host_error));
9553 }
9554
9555 static void
9556 remote_hostio_close_cleanup (void *opaque)
9557 {
9558 int fd = *(int *) opaque;
9559 int remote_errno;
9560
9561 remote_hostio_close (fd, &remote_errno);
9562 }
9563
9564
9565 static void *
9566 remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
9567 {
9568 const char *filename = bfd_get_filename (abfd);
9569 int fd, remote_errno;
9570 int *stream;
9571
9572 gdb_assert (remote_filename_p (filename));
9573
9574 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
9575 if (fd == -1)
9576 {
9577 errno = remote_fileio_errno_to_host (remote_errno);
9578 bfd_set_error (bfd_error_system_call);
9579 return NULL;
9580 }
9581
9582 stream = xmalloc (sizeof (int));
9583 *stream = fd;
9584 return stream;
9585 }
9586
9587 static int
9588 remote_bfd_iovec_close (struct bfd *abfd, void *stream)
9589 {
9590 int fd = *(int *)stream;
9591 int remote_errno;
9592
9593 xfree (stream);
9594
9595 /* Ignore errors on close; these may happen if the remote
9596 connection was already torn down. */
9597 remote_hostio_close (fd, &remote_errno);
9598
9599 return 1;
9600 }
9601
9602 static file_ptr
9603 remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
9604 file_ptr nbytes, file_ptr offset)
9605 {
9606 int fd = *(int *)stream;
9607 int remote_errno;
9608 file_ptr pos, bytes;
9609
9610 pos = 0;
9611 while (nbytes > pos)
9612 {
9613 bytes = remote_hostio_pread (fd, (char *)buf + pos, nbytes - pos,
9614 offset + pos, &remote_errno);
9615 if (bytes == 0)
9616 /* Success, but no bytes, means end-of-file. */
9617 break;
9618 if (bytes == -1)
9619 {
9620 errno = remote_fileio_errno_to_host (remote_errno);
9621 bfd_set_error (bfd_error_system_call);
9622 return -1;
9623 }
9624
9625 pos += bytes;
9626 }
9627
9628 return pos;
9629 }
9630
9631 static int
9632 remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
9633 {
9634 /* FIXME: We should probably implement remote_hostio_stat. */
9635 sb->st_size = INT_MAX;
9636 return 0;
9637 }
9638
9639 int
9640 remote_filename_p (const char *filename)
9641 {
9642 return strncmp (filename, "remote:", 7) == 0;
9643 }
9644
9645 bfd *
9646 remote_bfd_open (const char *remote_file, const char *target)
9647 {
9648 return bfd_openr_iovec (remote_file, target,
9649 remote_bfd_iovec_open, NULL,
9650 remote_bfd_iovec_pread,
9651 remote_bfd_iovec_close,
9652 remote_bfd_iovec_stat);
9653 }
9654
9655 void
9656 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
9657 {
9658 struct cleanup *back_to, *close_cleanup;
9659 int retcode, fd, remote_errno, bytes, io_size;
9660 FILE *file;
9661 gdb_byte *buffer;
9662 int bytes_in_buffer;
9663 int saw_eof;
9664 ULONGEST offset;
9665
9666 if (!remote_desc)
9667 error (_("command can only be used with remote target"));
9668
9669 file = fopen (local_file, "rb");
9670 if (file == NULL)
9671 perror_with_name (local_file);
9672 back_to = make_cleanup_fclose (file);
9673
9674 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
9675 | FILEIO_O_TRUNC),
9676 0700, &remote_errno);
9677 if (fd == -1)
9678 remote_hostio_error (remote_errno);
9679
9680 /* Send up to this many bytes at once. They won't all fit in the
9681 remote packet limit, so we'll transfer slightly fewer. */
9682 io_size = get_remote_packet_size ();
9683 buffer = xmalloc (io_size);
9684 make_cleanup (xfree, buffer);
9685
9686 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
9687
9688 bytes_in_buffer = 0;
9689 saw_eof = 0;
9690 offset = 0;
9691 while (bytes_in_buffer || !saw_eof)
9692 {
9693 if (!saw_eof)
9694 {
9695 bytes = fread (buffer + bytes_in_buffer, 1,
9696 io_size - bytes_in_buffer,
9697 file);
9698 if (bytes == 0)
9699 {
9700 if (ferror (file))
9701 error (_("Error reading %s."), local_file);
9702 else
9703 {
9704 /* EOF. Unless there is something still in the
9705 buffer from the last iteration, we are done. */
9706 saw_eof = 1;
9707 if (bytes_in_buffer == 0)
9708 break;
9709 }
9710 }
9711 }
9712 else
9713 bytes = 0;
9714
9715 bytes += bytes_in_buffer;
9716 bytes_in_buffer = 0;
9717
9718 retcode = remote_hostio_pwrite (fd, buffer, bytes,
9719 offset, &remote_errno);
9720
9721 if (retcode < 0)
9722 remote_hostio_error (remote_errno);
9723 else if (retcode == 0)
9724 error (_("Remote write of %d bytes returned 0!"), bytes);
9725 else if (retcode < bytes)
9726 {
9727 /* Short write. Save the rest of the read data for the next
9728 write. */
9729 bytes_in_buffer = bytes - retcode;
9730 memmove (buffer, buffer + retcode, bytes_in_buffer);
9731 }
9732
9733 offset += retcode;
9734 }
9735
9736 discard_cleanups (close_cleanup);
9737 if (remote_hostio_close (fd, &remote_errno))
9738 remote_hostio_error (remote_errno);
9739
9740 if (from_tty)
9741 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
9742 do_cleanups (back_to);
9743 }
9744
9745 void
9746 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
9747 {
9748 struct cleanup *back_to, *close_cleanup;
9749 int fd, remote_errno, bytes, io_size;
9750 FILE *file;
9751 gdb_byte *buffer;
9752 ULONGEST offset;
9753
9754 if (!remote_desc)
9755 error (_("command can only be used with remote target"));
9756
9757 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
9758 if (fd == -1)
9759 remote_hostio_error (remote_errno);
9760
9761 file = fopen (local_file, "wb");
9762 if (file == NULL)
9763 perror_with_name (local_file);
9764 back_to = make_cleanup_fclose (file);
9765
9766 /* Send up to this many bytes at once. They won't all fit in the
9767 remote packet limit, so we'll transfer slightly fewer. */
9768 io_size = get_remote_packet_size ();
9769 buffer = xmalloc (io_size);
9770 make_cleanup (xfree, buffer);
9771
9772 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
9773
9774 offset = 0;
9775 while (1)
9776 {
9777 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
9778 if (bytes == 0)
9779 /* Success, but no bytes, means end-of-file. */
9780 break;
9781 if (bytes == -1)
9782 remote_hostio_error (remote_errno);
9783
9784 offset += bytes;
9785
9786 bytes = fwrite (buffer, 1, bytes, file);
9787 if (bytes == 0)
9788 perror_with_name (local_file);
9789 }
9790
9791 discard_cleanups (close_cleanup);
9792 if (remote_hostio_close (fd, &remote_errno))
9793 remote_hostio_error (remote_errno);
9794
9795 if (from_tty)
9796 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
9797 do_cleanups (back_to);
9798 }
9799
9800 void
9801 remote_file_delete (const char *remote_file, int from_tty)
9802 {
9803 int retcode, remote_errno;
9804
9805 if (!remote_desc)
9806 error (_("command can only be used with remote target"));
9807
9808 retcode = remote_hostio_unlink (remote_file, &remote_errno);
9809 if (retcode == -1)
9810 remote_hostio_error (remote_errno);
9811
9812 if (from_tty)
9813 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
9814 }
9815
9816 static void
9817 remote_put_command (char *args, int from_tty)
9818 {
9819 struct cleanup *back_to;
9820 char **argv;
9821
9822 if (args == NULL)
9823 error_no_arg (_("file to put"));
9824
9825 argv = gdb_buildargv (args);
9826 back_to = make_cleanup_freeargv (argv);
9827 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
9828 error (_("Invalid parameters to remote put"));
9829
9830 remote_file_put (argv[0], argv[1], from_tty);
9831
9832 do_cleanups (back_to);
9833 }
9834
9835 static void
9836 remote_get_command (char *args, int from_tty)
9837 {
9838 struct cleanup *back_to;
9839 char **argv;
9840
9841 if (args == NULL)
9842 error_no_arg (_("file to get"));
9843
9844 argv = gdb_buildargv (args);
9845 back_to = make_cleanup_freeargv (argv);
9846 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
9847 error (_("Invalid parameters to remote get"));
9848
9849 remote_file_get (argv[0], argv[1], from_tty);
9850
9851 do_cleanups (back_to);
9852 }
9853
9854 static void
9855 remote_delete_command (char *args, int from_tty)
9856 {
9857 struct cleanup *back_to;
9858 char **argv;
9859
9860 if (args == NULL)
9861 error_no_arg (_("file to delete"));
9862
9863 argv = gdb_buildargv (args);
9864 back_to = make_cleanup_freeargv (argv);
9865 if (argv[0] == NULL || argv[1] != NULL)
9866 error (_("Invalid parameters to remote delete"));
9867
9868 remote_file_delete (argv[0], from_tty);
9869
9870 do_cleanups (back_to);
9871 }
9872
9873 static void
9874 remote_command (char *args, int from_tty)
9875 {
9876 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
9877 }
9878
9879 static int
9880 remote_can_execute_reverse (void)
9881 {
9882 if (remote_protocol_packets[PACKET_bs].support == PACKET_ENABLE
9883 || remote_protocol_packets[PACKET_bc].support == PACKET_ENABLE)
9884 return 1;
9885 else
9886 return 0;
9887 }
9888
9889 static int
9890 remote_supports_non_stop (void)
9891 {
9892 return 1;
9893 }
9894
9895 static int
9896 remote_supports_disable_randomization (void)
9897 {
9898 /* Only supported in extended mode. */
9899 return 0;
9900 }
9901
9902 static int
9903 remote_supports_multi_process (void)
9904 {
9905 struct remote_state *rs = get_remote_state ();
9906
9907 /* Only extended-remote handles being attached to multiple
9908 processes, even though plain remote can use the multi-process
9909 thread id extensions, so that GDB knows the target process's
9910 PID. */
9911 return rs->extended && remote_multi_process_p (rs);
9912 }
9913
9914 static int
9915 remote_supports_cond_tracepoints (void)
9916 {
9917 struct remote_state *rs = get_remote_state ();
9918
9919 return rs->cond_tracepoints;
9920 }
9921
9922 static int
9923 remote_supports_cond_breakpoints (void)
9924 {
9925 struct remote_state *rs = get_remote_state ();
9926
9927 return rs->cond_breakpoints;
9928 }
9929
9930 static int
9931 remote_supports_fast_tracepoints (void)
9932 {
9933 struct remote_state *rs = get_remote_state ();
9934
9935 return rs->fast_tracepoints;
9936 }
9937
9938 static int
9939 remote_supports_static_tracepoints (void)
9940 {
9941 struct remote_state *rs = get_remote_state ();
9942
9943 return rs->static_tracepoints;
9944 }
9945
9946 static int
9947 remote_supports_install_in_trace (void)
9948 {
9949 struct remote_state *rs = get_remote_state ();
9950
9951 return rs->install_in_trace;
9952 }
9953
9954 static int
9955 remote_supports_enable_disable_tracepoint (void)
9956 {
9957 struct remote_state *rs = get_remote_state ();
9958
9959 return rs->enable_disable_tracepoints;
9960 }
9961
9962 static int
9963 remote_supports_string_tracing (void)
9964 {
9965 struct remote_state *rs = get_remote_state ();
9966
9967 return rs->string_tracing;
9968 }
9969
9970 static void
9971 remote_trace_init (void)
9972 {
9973 putpkt ("QTinit");
9974 remote_get_noisy_reply (&target_buf, &target_buf_size);
9975 if (strcmp (target_buf, "OK") != 0)
9976 error (_("Target does not support this command."));
9977 }
9978
9979 static void free_actions_list (char **actions_list);
9980 static void free_actions_list_cleanup_wrapper (void *);
9981 static void
9982 free_actions_list_cleanup_wrapper (void *al)
9983 {
9984 free_actions_list (al);
9985 }
9986
9987 static void
9988 free_actions_list (char **actions_list)
9989 {
9990 int ndx;
9991
9992 if (actions_list == 0)
9993 return;
9994
9995 for (ndx = 0; actions_list[ndx]; ndx++)
9996 xfree (actions_list[ndx]);
9997
9998 xfree (actions_list);
9999 }
10000
10001 /* Recursive routine to walk through command list including loops, and
10002 download packets for each command. */
10003
10004 static void
10005 remote_download_command_source (int num, ULONGEST addr,
10006 struct command_line *cmds)
10007 {
10008 struct remote_state *rs = get_remote_state ();
10009 struct command_line *cmd;
10010
10011 for (cmd = cmds; cmd; cmd = cmd->next)
10012 {
10013 QUIT; /* Allow user to bail out with ^C. */
10014 strcpy (rs->buf, "QTDPsrc:");
10015 encode_source_string (num, addr, "cmd", cmd->line,
10016 rs->buf + strlen (rs->buf),
10017 rs->buf_size - strlen (rs->buf));
10018 putpkt (rs->buf);
10019 remote_get_noisy_reply (&target_buf, &target_buf_size);
10020 if (strcmp (target_buf, "OK"))
10021 warning (_("Target does not support source download."));
10022
10023 if (cmd->control_type == while_control
10024 || cmd->control_type == while_stepping_control)
10025 {
10026 remote_download_command_source (num, addr, *cmd->body_list);
10027
10028 QUIT; /* Allow user to bail out with ^C. */
10029 strcpy (rs->buf, "QTDPsrc:");
10030 encode_source_string (num, addr, "cmd", "end",
10031 rs->buf + strlen (rs->buf),
10032 rs->buf_size - strlen (rs->buf));
10033 putpkt (rs->buf);
10034 remote_get_noisy_reply (&target_buf, &target_buf_size);
10035 if (strcmp (target_buf, "OK"))
10036 warning (_("Target does not support source download."));
10037 }
10038 }
10039 }
10040
10041 static void
10042 remote_download_tracepoint (struct bp_location *loc)
10043 {
10044
10045 CORE_ADDR tpaddr;
10046 char addrbuf[40];
10047 char buf[2048];
10048 char **tdp_actions;
10049 char **stepping_actions;
10050 int ndx;
10051 struct cleanup *old_chain = NULL;
10052 struct agent_expr *aexpr;
10053 struct cleanup *aexpr_chain = NULL;
10054 char *pkt;
10055 struct breakpoint *b = loc->owner;
10056 struct tracepoint *t = (struct tracepoint *) b;
10057
10058 encode_actions (loc->owner, loc, &tdp_actions, &stepping_actions);
10059 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
10060 tdp_actions);
10061 (void) make_cleanup (free_actions_list_cleanup_wrapper,
10062 stepping_actions);
10063
10064 tpaddr = loc->address;
10065 sprintf_vma (addrbuf, tpaddr);
10066 sprintf (buf, "QTDP:%x:%s:%c:%lx:%x", b->number,
10067 addrbuf, /* address */
10068 (b->enable_state == bp_enabled ? 'E' : 'D'),
10069 t->step_count, t->pass_count);
10070 /* Fast tracepoints are mostly handled by the target, but we can
10071 tell the target how big of an instruction block should be moved
10072 around. */
10073 if (b->type == bp_fast_tracepoint)
10074 {
10075 /* Only test for support at download time; we may not know
10076 target capabilities at definition time. */
10077 if (remote_supports_fast_tracepoints ())
10078 {
10079 int isize;
10080
10081 if (gdbarch_fast_tracepoint_valid_at (target_gdbarch,
10082 tpaddr, &isize, NULL))
10083 sprintf (buf + strlen (buf), ":F%x", isize);
10084 else
10085 /* If it passed validation at definition but fails now,
10086 something is very wrong. */
10087 internal_error (__FILE__, __LINE__,
10088 _("Fast tracepoint not "
10089 "valid during download"));
10090 }
10091 else
10092 /* Fast tracepoints are functionally identical to regular
10093 tracepoints, so don't take lack of support as a reason to
10094 give up on the trace run. */
10095 warning (_("Target does not support fast tracepoints, "
10096 "downloading %d as regular tracepoint"), b->number);
10097 }
10098 else if (b->type == bp_static_tracepoint)
10099 {
10100 /* Only test for support at download time; we may not know
10101 target capabilities at definition time. */
10102 if (remote_supports_static_tracepoints ())
10103 {
10104 struct static_tracepoint_marker marker;
10105
10106 if (target_static_tracepoint_marker_at (tpaddr, &marker))
10107 strcat (buf, ":S");
10108 else
10109 error (_("Static tracepoint not valid during download"));
10110 }
10111 else
10112 /* Fast tracepoints are functionally identical to regular
10113 tracepoints, so don't take lack of support as a reason
10114 to give up on the trace run. */
10115 error (_("Target does not support static tracepoints"));
10116 }
10117 /* If the tracepoint has a conditional, make it into an agent
10118 expression and append to the definition. */
10119 if (loc->cond)
10120 {
10121 /* Only test support at download time, we may not know target
10122 capabilities at definition time. */
10123 if (remote_supports_cond_tracepoints ())
10124 {
10125 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
10126 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
10127 sprintf (buf + strlen (buf), ":X%x,", aexpr->len);
10128 pkt = buf + strlen (buf);
10129 for (ndx = 0; ndx < aexpr->len; ++ndx)
10130 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
10131 *pkt = '\0';
10132 do_cleanups (aexpr_chain);
10133 }
10134 else
10135 warning (_("Target does not support conditional tracepoints, "
10136 "ignoring tp %d cond"), b->number);
10137 }
10138
10139 if (b->commands || *default_collect)
10140 strcat (buf, "-");
10141 putpkt (buf);
10142 remote_get_noisy_reply (&target_buf, &target_buf_size);
10143 if (strcmp (target_buf, "OK"))
10144 error (_("Target does not support tracepoints."));
10145
10146 /* do_single_steps (t); */
10147 if (tdp_actions)
10148 {
10149 for (ndx = 0; tdp_actions[ndx]; ndx++)
10150 {
10151 QUIT; /* Allow user to bail out with ^C. */
10152 sprintf (buf, "QTDP:-%x:%s:%s%c",
10153 b->number, addrbuf, /* address */
10154 tdp_actions[ndx],
10155 ((tdp_actions[ndx + 1] || stepping_actions)
10156 ? '-' : 0));
10157 putpkt (buf);
10158 remote_get_noisy_reply (&target_buf,
10159 &target_buf_size);
10160 if (strcmp (target_buf, "OK"))
10161 error (_("Error on target while setting tracepoints."));
10162 }
10163 }
10164 if (stepping_actions)
10165 {
10166 for (ndx = 0; stepping_actions[ndx]; ndx++)
10167 {
10168 QUIT; /* Allow user to bail out with ^C. */
10169 sprintf (buf, "QTDP:-%x:%s:%s%s%s",
10170 b->number, addrbuf, /* address */
10171 ((ndx == 0) ? "S" : ""),
10172 stepping_actions[ndx],
10173 (stepping_actions[ndx + 1] ? "-" : ""));
10174 putpkt (buf);
10175 remote_get_noisy_reply (&target_buf,
10176 &target_buf_size);
10177 if (strcmp (target_buf, "OK"))
10178 error (_("Error on target while setting tracepoints."));
10179 }
10180 }
10181
10182 if (remote_protocol_packets[PACKET_TracepointSource].support
10183 == PACKET_ENABLE)
10184 {
10185 if (b->addr_string)
10186 {
10187 strcpy (buf, "QTDPsrc:");
10188 encode_source_string (b->number, loc->address,
10189 "at", b->addr_string, buf + strlen (buf),
10190 2048 - strlen (buf));
10191
10192 putpkt (buf);
10193 remote_get_noisy_reply (&target_buf, &target_buf_size);
10194 if (strcmp (target_buf, "OK"))
10195 warning (_("Target does not support source download."));
10196 }
10197 if (b->cond_string)
10198 {
10199 strcpy (buf, "QTDPsrc:");
10200 encode_source_string (b->number, loc->address,
10201 "cond", b->cond_string, buf + strlen (buf),
10202 2048 - strlen (buf));
10203 putpkt (buf);
10204 remote_get_noisy_reply (&target_buf, &target_buf_size);
10205 if (strcmp (target_buf, "OK"))
10206 warning (_("Target does not support source download."));
10207 }
10208 remote_download_command_source (b->number, loc->address,
10209 breakpoint_commands (b));
10210 }
10211
10212 do_cleanups (old_chain);
10213 }
10214
10215 static int
10216 remote_can_download_tracepoint (void)
10217 {
10218 struct trace_status *ts = current_trace_status ();
10219 int status = remote_get_trace_status (ts);
10220
10221 if (status == -1 || !ts->running_known || !ts->running)
10222 return 0;
10223
10224 /* If we are in a tracing experiment, but remote stub doesn't support
10225 installing tracepoint in trace, we have to return. */
10226 if (!remote_supports_install_in_trace ())
10227 return 0;
10228
10229 return 1;
10230 }
10231
10232
10233 static void
10234 remote_download_trace_state_variable (struct trace_state_variable *tsv)
10235 {
10236 struct remote_state *rs = get_remote_state ();
10237 char *p;
10238
10239 sprintf (rs->buf, "QTDV:%x:%s:%x:",
10240 tsv->number, phex ((ULONGEST) tsv->initial_value, 8), tsv->builtin);
10241 p = rs->buf + strlen (rs->buf);
10242 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
10243 error (_("Trace state variable name too long for tsv definition packet"));
10244 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, 0);
10245 *p++ = '\0';
10246 putpkt (rs->buf);
10247 remote_get_noisy_reply (&target_buf, &target_buf_size);
10248 if (*target_buf == '\0')
10249 error (_("Target does not support this command."));
10250 if (strcmp (target_buf, "OK") != 0)
10251 error (_("Error on target while downloading trace state variable."));
10252 }
10253
10254 static void
10255 remote_enable_tracepoint (struct bp_location *location)
10256 {
10257 struct remote_state *rs = get_remote_state ();
10258 char addr_buf[40];
10259
10260 sprintf_vma (addr_buf, location->address);
10261 sprintf (rs->buf, "QTEnable:%x:%s", location->owner->number, addr_buf);
10262 putpkt (rs->buf);
10263 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10264 if (*rs->buf == '\0')
10265 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
10266 if (strcmp (rs->buf, "OK") != 0)
10267 error (_("Error on target while enabling tracepoint."));
10268 }
10269
10270 static void
10271 remote_disable_tracepoint (struct bp_location *location)
10272 {
10273 struct remote_state *rs = get_remote_state ();
10274 char addr_buf[40];
10275
10276 sprintf_vma (addr_buf, location->address);
10277 sprintf (rs->buf, "QTDisable:%x:%s", location->owner->number, addr_buf);
10278 putpkt (rs->buf);
10279 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10280 if (*rs->buf == '\0')
10281 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
10282 if (strcmp (rs->buf, "OK") != 0)
10283 error (_("Error on target while disabling tracepoint."));
10284 }
10285
10286 static void
10287 remote_trace_set_readonly_regions (void)
10288 {
10289 asection *s;
10290 bfd_size_type size;
10291 bfd_vma vma;
10292 int anysecs = 0;
10293 int offset = 0;
10294
10295 if (!exec_bfd)
10296 return; /* No information to give. */
10297
10298 strcpy (target_buf, "QTro");
10299 for (s = exec_bfd->sections; s; s = s->next)
10300 {
10301 char tmp1[40], tmp2[40];
10302 int sec_length;
10303
10304 if ((s->flags & SEC_LOAD) == 0 ||
10305 /* (s->flags & SEC_CODE) == 0 || */
10306 (s->flags & SEC_READONLY) == 0)
10307 continue;
10308
10309 anysecs = 1;
10310 vma = bfd_get_section_vma (,s);
10311 size = bfd_get_section_size (s);
10312 sprintf_vma (tmp1, vma);
10313 sprintf_vma (tmp2, vma + size);
10314 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
10315 if (offset + sec_length + 1 > target_buf_size)
10316 {
10317 if (remote_protocol_packets[PACKET_qXfer_traceframe_info].support
10318 != PACKET_ENABLE)
10319 warning (_("\
10320 Too many sections for read-only sections definition packet."));
10321 break;
10322 }
10323 sprintf (target_buf + offset, ":%s,%s", tmp1, tmp2);
10324 offset += sec_length;
10325 }
10326 if (anysecs)
10327 {
10328 putpkt (target_buf);
10329 getpkt (&target_buf, &target_buf_size, 0);
10330 }
10331 }
10332
10333 static void
10334 remote_trace_start (void)
10335 {
10336 putpkt ("QTStart");
10337 remote_get_noisy_reply (&target_buf, &target_buf_size);
10338 if (*target_buf == '\0')
10339 error (_("Target does not support this command."));
10340 if (strcmp (target_buf, "OK") != 0)
10341 error (_("Bogus reply from target: %s"), target_buf);
10342 }
10343
10344 static int
10345 remote_get_trace_status (struct trace_status *ts)
10346 {
10347 /* Initialize it just to avoid a GCC false warning. */
10348 char *p = NULL;
10349 /* FIXME we need to get register block size some other way. */
10350 extern int trace_regblock_size;
10351 volatile struct gdb_exception ex;
10352
10353 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
10354
10355 putpkt ("qTStatus");
10356
10357 TRY_CATCH (ex, RETURN_MASK_ERROR)
10358 {
10359 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
10360 }
10361 if (ex.reason < 0)
10362 {
10363 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
10364 return -1;
10365 }
10366
10367 /* If the remote target doesn't do tracing, flag it. */
10368 if (*p == '\0')
10369 return -1;
10370
10371 /* We're working with a live target. */
10372 ts->from_file = 0;
10373
10374 /* Set some defaults. */
10375 ts->running_known = 0;
10376 ts->stop_reason = trace_stop_reason_unknown;
10377 ts->traceframe_count = -1;
10378 ts->buffer_free = 0;
10379
10380 if (*p++ != 'T')
10381 error (_("Bogus trace status reply from target: %s"), target_buf);
10382
10383 parse_trace_status (p, ts);
10384
10385 return ts->running;
10386 }
10387
10388 static void
10389 remote_get_tracepoint_status (struct breakpoint *bp,
10390 struct uploaded_tp *utp)
10391 {
10392 struct remote_state *rs = get_remote_state ();
10393 char *reply;
10394 struct bp_location *loc;
10395 struct tracepoint *tp = (struct tracepoint *) bp;
10396
10397 if (tp)
10398 {
10399 tp->base.hit_count = 0;
10400 tp->traceframe_usage = 0;
10401 for (loc = tp->base.loc; loc; loc = loc->next)
10402 {
10403 /* If the tracepoint was never downloaded, don't go asking for
10404 any status. */
10405 if (tp->number_on_target == 0)
10406 continue;
10407 sprintf (rs->buf, "qTP:%x:%s", tp->number_on_target,
10408 phex_nz (loc->address, 0));
10409 putpkt (rs->buf);
10410 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10411 if (reply && *reply)
10412 {
10413 if (*reply == 'V')
10414 parse_tracepoint_status (reply + 1, bp, utp);
10415 }
10416 }
10417 }
10418 else if (utp)
10419 {
10420 utp->hit_count = 0;
10421 utp->traceframe_usage = 0;
10422 sprintf (rs->buf, "qTP:%x:%s", utp->number, phex_nz (utp->addr, 0));
10423 putpkt (rs->buf);
10424 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10425 if (reply && *reply)
10426 {
10427 if (*reply == 'V')
10428 parse_tracepoint_status (reply + 1, bp, utp);
10429 }
10430 }
10431 }
10432
10433 static void
10434 remote_trace_stop (void)
10435 {
10436 putpkt ("QTStop");
10437 remote_get_noisy_reply (&target_buf, &target_buf_size);
10438 if (*target_buf == '\0')
10439 error (_("Target does not support this command."));
10440 if (strcmp (target_buf, "OK") != 0)
10441 error (_("Bogus reply from target: %s"), target_buf);
10442 }
10443
10444 static int
10445 remote_trace_find (enum trace_find_type type, int num,
10446 ULONGEST addr1, ULONGEST addr2,
10447 int *tpp)
10448 {
10449 struct remote_state *rs = get_remote_state ();
10450 char *p, *reply;
10451 int target_frameno = -1, target_tracept = -1;
10452
10453 /* Lookups other than by absolute frame number depend on the current
10454 trace selected, so make sure it is correct on the remote end
10455 first. */
10456 if (type != tfind_number)
10457 set_remote_traceframe ();
10458
10459 p = rs->buf;
10460 strcpy (p, "QTFrame:");
10461 p = strchr (p, '\0');
10462 switch (type)
10463 {
10464 case tfind_number:
10465 sprintf (p, "%x", num);
10466 break;
10467 case tfind_pc:
10468 sprintf (p, "pc:%s", phex_nz (addr1, 0));
10469 break;
10470 case tfind_tp:
10471 sprintf (p, "tdp:%x", num);
10472 break;
10473 case tfind_range:
10474 sprintf (p, "range:%s:%s", phex_nz (addr1, 0), phex_nz (addr2, 0));
10475 break;
10476 case tfind_outside:
10477 sprintf (p, "outside:%s:%s", phex_nz (addr1, 0), phex_nz (addr2, 0));
10478 break;
10479 default:
10480 error (_("Unknown trace find type %d"), type);
10481 }
10482
10483 putpkt (rs->buf);
10484 reply = remote_get_noisy_reply (&(rs->buf), &sizeof_pkt);
10485 if (*reply == '\0')
10486 error (_("Target does not support this command."));
10487
10488 while (reply && *reply)
10489 switch (*reply)
10490 {
10491 case 'F':
10492 p = ++reply;
10493 target_frameno = (int) strtol (p, &reply, 16);
10494 if (reply == p)
10495 error (_("Unable to parse trace frame number"));
10496 /* Don't update our remote traceframe number cache on failure
10497 to select a remote traceframe. */
10498 if (target_frameno == -1)
10499 return -1;
10500 break;
10501 case 'T':
10502 p = ++reply;
10503 target_tracept = (int) strtol (p, &reply, 16);
10504 if (reply == p)
10505 error (_("Unable to parse tracepoint number"));
10506 break;
10507 case 'O': /* "OK"? */
10508 if (reply[1] == 'K' && reply[2] == '\0')
10509 reply += 2;
10510 else
10511 error (_("Bogus reply from target: %s"), reply);
10512 break;
10513 default:
10514 error (_("Bogus reply from target: %s"), reply);
10515 }
10516 if (tpp)
10517 *tpp = target_tracept;
10518
10519 remote_traceframe_number = target_frameno;
10520 return target_frameno;
10521 }
10522
10523 static int
10524 remote_get_trace_state_variable_value (int tsvnum, LONGEST *val)
10525 {
10526 struct remote_state *rs = get_remote_state ();
10527 char *reply;
10528 ULONGEST uval;
10529
10530 set_remote_traceframe ();
10531
10532 sprintf (rs->buf, "qTV:%x", tsvnum);
10533 putpkt (rs->buf);
10534 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10535 if (reply && *reply)
10536 {
10537 if (*reply == 'V')
10538 {
10539 unpack_varlen_hex (reply + 1, &uval);
10540 *val = (LONGEST) uval;
10541 return 1;
10542 }
10543 }
10544 return 0;
10545 }
10546
10547 static int
10548 remote_save_trace_data (const char *filename)
10549 {
10550 struct remote_state *rs = get_remote_state ();
10551 char *p, *reply;
10552
10553 p = rs->buf;
10554 strcpy (p, "QTSave:");
10555 p += strlen (p);
10556 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
10557 error (_("Remote file name too long for trace save packet"));
10558 p += 2 * bin2hex ((gdb_byte *) filename, p, 0);
10559 *p++ = '\0';
10560 putpkt (rs->buf);
10561 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10562 if (*reply == '\0')
10563 error (_("Target does not support this command."));
10564 if (strcmp (reply, "OK") != 0)
10565 error (_("Bogus reply from target: %s"), reply);
10566 return 0;
10567 }
10568
10569 /* This is basically a memory transfer, but needs to be its own packet
10570 because we don't know how the target actually organizes its trace
10571 memory, plus we want to be able to ask for as much as possible, but
10572 not be unhappy if we don't get as much as we ask for. */
10573
10574 static LONGEST
10575 remote_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
10576 {
10577 struct remote_state *rs = get_remote_state ();
10578 char *reply;
10579 char *p;
10580 int rslt;
10581
10582 p = rs->buf;
10583 strcpy (p, "qTBuffer:");
10584 p += strlen (p);
10585 p += hexnumstr (p, offset);
10586 *p++ = ',';
10587 p += hexnumstr (p, len);
10588 *p++ = '\0';
10589
10590 putpkt (rs->buf);
10591 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10592 if (reply && *reply)
10593 {
10594 /* 'l' by itself means we're at the end of the buffer and
10595 there is nothing more to get. */
10596 if (*reply == 'l')
10597 return 0;
10598
10599 /* Convert the reply into binary. Limit the number of bytes to
10600 convert according to our passed-in buffer size, rather than
10601 what was returned in the packet; if the target is
10602 unexpectedly generous and gives us a bigger reply than we
10603 asked for, we don't want to crash. */
10604 rslt = hex2bin (target_buf, buf, len);
10605 return rslt;
10606 }
10607
10608 /* Something went wrong, flag as an error. */
10609 return -1;
10610 }
10611
10612 static void
10613 remote_set_disconnected_tracing (int val)
10614 {
10615 struct remote_state *rs = get_remote_state ();
10616
10617 if (rs->disconnected_tracing)
10618 {
10619 char *reply;
10620
10621 sprintf (rs->buf, "QTDisconnected:%x", val);
10622 putpkt (rs->buf);
10623 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10624 if (*reply == '\0')
10625 error (_("Target does not support this command."));
10626 if (strcmp (reply, "OK") != 0)
10627 error (_("Bogus reply from target: %s"), reply);
10628 }
10629 else if (val)
10630 warning (_("Target does not support disconnected tracing."));
10631 }
10632
10633 static int
10634 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
10635 {
10636 struct thread_info *info = find_thread_ptid (ptid);
10637
10638 if (info && info->private)
10639 return info->private->core;
10640 return -1;
10641 }
10642
10643 static void
10644 remote_set_circular_trace_buffer (int val)
10645 {
10646 struct remote_state *rs = get_remote_state ();
10647 char *reply;
10648
10649 sprintf (rs->buf, "QTBuffer:circular:%x", val);
10650 putpkt (rs->buf);
10651 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10652 if (*reply == '\0')
10653 error (_("Target does not support this command."));
10654 if (strcmp (reply, "OK") != 0)
10655 error (_("Bogus reply from target: %s"), reply);
10656 }
10657
10658 static struct traceframe_info *
10659 remote_traceframe_info (void)
10660 {
10661 char *text;
10662
10663 text = target_read_stralloc (&current_target,
10664 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
10665 if (text != NULL)
10666 {
10667 struct traceframe_info *info;
10668 struct cleanup *back_to = make_cleanup (xfree, text);
10669
10670 info = parse_traceframe_info (text);
10671 do_cleanups (back_to);
10672 return info;
10673 }
10674
10675 return NULL;
10676 }
10677
10678 /* Handle the qTMinFTPILen packet. Returns the minimum length of
10679 instruction on which a fast tracepoint may be placed. Returns -1
10680 if the packet is not supported, and 0 if the minimum instruction
10681 length is unknown. */
10682
10683 static int
10684 remote_get_min_fast_tracepoint_insn_len (void)
10685 {
10686 struct remote_state *rs = get_remote_state ();
10687 char *reply;
10688
10689 /* If we're not debugging a process yet, the IPA can't be
10690 loaded. */
10691 if (!target_has_execution)
10692 return 0;
10693
10694 /* Make sure the remote is pointing at the right process. */
10695 set_general_process ();
10696
10697 sprintf (rs->buf, "qTMinFTPILen");
10698 putpkt (rs->buf);
10699 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10700 if (*reply == '\0')
10701 return -1;
10702 else
10703 {
10704 ULONGEST min_insn_len;
10705
10706 unpack_varlen_hex (reply, &min_insn_len);
10707
10708 return (int) min_insn_len;
10709 }
10710 }
10711
10712 static int
10713 remote_set_trace_notes (char *user, char *notes, char *stop_notes)
10714 {
10715 struct remote_state *rs = get_remote_state ();
10716 char *reply;
10717 char *buf = rs->buf;
10718 char *endbuf = rs->buf + get_remote_packet_size ();
10719 int nbytes;
10720
10721 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
10722 if (user)
10723 {
10724 buf += xsnprintf (buf, endbuf - buf, "user:");
10725 nbytes = bin2hex (user, buf, 0);
10726 buf += 2 * nbytes;
10727 *buf++ = ';';
10728 }
10729 if (notes)
10730 {
10731 buf += xsnprintf (buf, endbuf - buf, "notes:");
10732 nbytes = bin2hex (notes, buf, 0);
10733 buf += 2 * nbytes;
10734 *buf++ = ';';
10735 }
10736 if (stop_notes)
10737 {
10738 buf += xsnprintf (buf, endbuf - buf, "tstop:");
10739 nbytes = bin2hex (stop_notes, buf, 0);
10740 buf += 2 * nbytes;
10741 *buf++ = ';';
10742 }
10743 /* Ensure the buffer is terminated. */
10744 *buf = '\0';
10745
10746 putpkt (rs->buf);
10747 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10748 if (*reply == '\0')
10749 return 0;
10750
10751 if (strcmp (reply, "OK") != 0)
10752 error (_("Bogus reply from target: %s"), reply);
10753
10754 return 1;
10755 }
10756
10757 static int
10758 remote_use_agent (int use)
10759 {
10760 if (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE)
10761 {
10762 struct remote_state *rs = get_remote_state ();
10763
10764 /* If the stub supports QAgent. */
10765 sprintf (rs->buf, "QAgent:%d", use);
10766 putpkt (rs->buf);
10767 getpkt (&rs->buf, &rs->buf_size, 0);
10768
10769 if (strcmp (rs->buf, "OK") == 0)
10770 {
10771 use_agent = use;
10772 return 1;
10773 }
10774 }
10775
10776 return 0;
10777 }
10778
10779 static int
10780 remote_can_use_agent (void)
10781 {
10782 return (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE);
10783 }
10784
10785 static void
10786 init_remote_ops (void)
10787 {
10788 remote_ops.to_shortname = "remote";
10789 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
10790 remote_ops.to_doc =
10791 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
10792 Specify the serial device it is connected to\n\
10793 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
10794 remote_ops.to_open = remote_open;
10795 remote_ops.to_close = remote_close;
10796 remote_ops.to_detach = remote_detach;
10797 remote_ops.to_disconnect = remote_disconnect;
10798 remote_ops.to_resume = remote_resume;
10799 remote_ops.to_wait = remote_wait;
10800 remote_ops.to_fetch_registers = remote_fetch_registers;
10801 remote_ops.to_store_registers = remote_store_registers;
10802 remote_ops.to_prepare_to_store = remote_prepare_to_store;
10803 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
10804 remote_ops.to_files_info = remote_files_info;
10805 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
10806 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
10807 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
10808 remote_ops.to_stopped_data_address = remote_stopped_data_address;
10809 remote_ops.to_watchpoint_addr_within_range =
10810 remote_watchpoint_addr_within_range;
10811 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
10812 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
10813 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
10814 remote_ops.to_region_ok_for_hw_watchpoint
10815 = remote_region_ok_for_hw_watchpoint;
10816 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
10817 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
10818 remote_ops.to_kill = remote_kill;
10819 remote_ops.to_load = generic_load;
10820 remote_ops.to_mourn_inferior = remote_mourn;
10821 remote_ops.to_pass_signals = remote_pass_signals;
10822 remote_ops.to_thread_alive = remote_thread_alive;
10823 remote_ops.to_find_new_threads = remote_threads_info;
10824 remote_ops.to_pid_to_str = remote_pid_to_str;
10825 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10826 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
10827 remote_ops.to_stop = remote_stop;
10828 remote_ops.to_xfer_partial = remote_xfer_partial;
10829 remote_ops.to_rcmd = remote_rcmd;
10830 remote_ops.to_log_command = serial_log_command;
10831 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
10832 remote_ops.to_stratum = process_stratum;
10833 remote_ops.to_has_all_memory = default_child_has_all_memory;
10834 remote_ops.to_has_memory = default_child_has_memory;
10835 remote_ops.to_has_stack = default_child_has_stack;
10836 remote_ops.to_has_registers = default_child_has_registers;
10837 remote_ops.to_has_execution = default_child_has_execution;
10838 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
10839 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
10840 remote_ops.to_magic = OPS_MAGIC;
10841 remote_ops.to_memory_map = remote_memory_map;
10842 remote_ops.to_flash_erase = remote_flash_erase;
10843 remote_ops.to_flash_done = remote_flash_done;
10844 remote_ops.to_read_description = remote_read_description;
10845 remote_ops.to_search_memory = remote_search_memory;
10846 remote_ops.to_can_async_p = remote_can_async_p;
10847 remote_ops.to_is_async_p = remote_is_async_p;
10848 remote_ops.to_async = remote_async;
10849 remote_ops.to_terminal_inferior = remote_terminal_inferior;
10850 remote_ops.to_terminal_ours = remote_terminal_ours;
10851 remote_ops.to_supports_non_stop = remote_supports_non_stop;
10852 remote_ops.to_supports_multi_process = remote_supports_multi_process;
10853 remote_ops.to_supports_disable_randomization
10854 = remote_supports_disable_randomization;
10855 remote_ops.to_fileio_open = remote_hostio_open;
10856 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
10857 remote_ops.to_fileio_pread = remote_hostio_pread;
10858 remote_ops.to_fileio_close = remote_hostio_close;
10859 remote_ops.to_fileio_unlink = remote_hostio_unlink;
10860 remote_ops.to_fileio_readlink = remote_hostio_readlink;
10861 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
10862 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
10863 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
10864 remote_ops.to_trace_init = remote_trace_init;
10865 remote_ops.to_download_tracepoint = remote_download_tracepoint;
10866 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
10867 remote_ops.to_download_trace_state_variable
10868 = remote_download_trace_state_variable;
10869 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
10870 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
10871 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
10872 remote_ops.to_trace_start = remote_trace_start;
10873 remote_ops.to_get_trace_status = remote_get_trace_status;
10874 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
10875 remote_ops.to_trace_stop = remote_trace_stop;
10876 remote_ops.to_trace_find = remote_trace_find;
10877 remote_ops.to_get_trace_state_variable_value
10878 = remote_get_trace_state_variable_value;
10879 remote_ops.to_save_trace_data = remote_save_trace_data;
10880 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
10881 remote_ops.to_upload_trace_state_variables
10882 = remote_upload_trace_state_variables;
10883 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
10884 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
10885 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
10886 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
10887 remote_ops.to_set_trace_notes = remote_set_trace_notes;
10888 remote_ops.to_core_of_thread = remote_core_of_thread;
10889 remote_ops.to_verify_memory = remote_verify_memory;
10890 remote_ops.to_get_tib_address = remote_get_tib_address;
10891 remote_ops.to_set_permissions = remote_set_permissions;
10892 remote_ops.to_static_tracepoint_marker_at
10893 = remote_static_tracepoint_marker_at;
10894 remote_ops.to_static_tracepoint_markers_by_strid
10895 = remote_static_tracepoint_markers_by_strid;
10896 remote_ops.to_traceframe_info = remote_traceframe_info;
10897 remote_ops.to_use_agent = remote_use_agent;
10898 remote_ops.to_can_use_agent = remote_can_use_agent;
10899 }
10900
10901 /* Set up the extended remote vector by making a copy of the standard
10902 remote vector and adding to it. */
10903
10904 static void
10905 init_extended_remote_ops (void)
10906 {
10907 extended_remote_ops = remote_ops;
10908
10909 extended_remote_ops.to_shortname = "extended-remote";
10910 extended_remote_ops.to_longname =
10911 "Extended remote serial target in gdb-specific protocol";
10912 extended_remote_ops.to_doc =
10913 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
10914 Specify the serial device it is connected to (e.g. /dev/ttya).";
10915 extended_remote_ops.to_open = extended_remote_open;
10916 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
10917 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
10918 extended_remote_ops.to_detach = extended_remote_detach;
10919 extended_remote_ops.to_attach = extended_remote_attach;
10920 extended_remote_ops.to_kill = extended_remote_kill;
10921 extended_remote_ops.to_supports_disable_randomization
10922 = extended_remote_supports_disable_randomization;
10923 }
10924
10925 static int
10926 remote_can_async_p (void)
10927 {
10928 if (!target_async_permitted)
10929 /* We only enable async when the user specifically asks for it. */
10930 return 0;
10931
10932 /* We're async whenever the serial device is. */
10933 return serial_can_async_p (remote_desc);
10934 }
10935
10936 static int
10937 remote_is_async_p (void)
10938 {
10939 if (!target_async_permitted)
10940 /* We only enable async when the user specifically asks for it. */
10941 return 0;
10942
10943 /* We're async whenever the serial device is. */
10944 return serial_is_async_p (remote_desc);
10945 }
10946
10947 /* Pass the SERIAL event on and up to the client. One day this code
10948 will be able to delay notifying the client of an event until the
10949 point where an entire packet has been received. */
10950
10951 static void (*async_client_callback) (enum inferior_event_type event_type,
10952 void *context);
10953 static void *async_client_context;
10954 static serial_event_ftype remote_async_serial_handler;
10955
10956 static void
10957 remote_async_serial_handler (struct serial *scb, void *context)
10958 {
10959 /* Don't propogate error information up to the client. Instead let
10960 the client find out about the error by querying the target. */
10961 async_client_callback (INF_REG_EVENT, async_client_context);
10962 }
10963
10964 static void
10965 remote_async_inferior_event_handler (gdb_client_data data)
10966 {
10967 inferior_event_handler (INF_REG_EVENT, NULL);
10968 }
10969
10970 static void
10971 remote_async_get_pending_events_handler (gdb_client_data data)
10972 {
10973 remote_get_pending_stop_replies ();
10974 }
10975
10976 static void
10977 remote_async (void (*callback) (enum inferior_event_type event_type,
10978 void *context), void *context)
10979 {
10980 if (callback != NULL)
10981 {
10982 serial_async (remote_desc, remote_async_serial_handler, NULL);
10983 async_client_callback = callback;
10984 async_client_context = context;
10985 }
10986 else
10987 serial_async (remote_desc, NULL, NULL);
10988 }
10989
10990 static void
10991 set_remote_cmd (char *args, int from_tty)
10992 {
10993 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
10994 }
10995
10996 static void
10997 show_remote_cmd (char *args, int from_tty)
10998 {
10999 /* We can't just use cmd_show_list here, because we want to skip
11000 the redundant "show remote Z-packet" and the legacy aliases. */
11001 struct cleanup *showlist_chain;
11002 struct cmd_list_element *list = remote_show_cmdlist;
11003 struct ui_out *uiout = current_uiout;
11004
11005 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
11006 for (; list != NULL; list = list->next)
11007 if (strcmp (list->name, "Z-packet") == 0)
11008 continue;
11009 else if (list->type == not_set_cmd)
11010 /* Alias commands are exactly like the original, except they
11011 don't have the normal type. */
11012 continue;
11013 else
11014 {
11015 struct cleanup *option_chain
11016 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
11017
11018 ui_out_field_string (uiout, "name", list->name);
11019 ui_out_text (uiout, ": ");
11020 if (list->type == show_cmd)
11021 do_setshow_command ((char *) NULL, from_tty, list);
11022 else
11023 cmd_func (list, NULL, from_tty);
11024 /* Close the tuple. */
11025 do_cleanups (option_chain);
11026 }
11027
11028 /* Close the tuple. */
11029 do_cleanups (showlist_chain);
11030 }
11031
11032
11033 /* Function to be called whenever a new objfile (shlib) is detected. */
11034 static void
11035 remote_new_objfile (struct objfile *objfile)
11036 {
11037 if (remote_desc != 0) /* Have a remote connection. */
11038 remote_check_symbols (objfile);
11039 }
11040
11041 /* Pull all the tracepoints defined on the target and create local
11042 data structures representing them. We don't want to create real
11043 tracepoints yet, we don't want to mess up the user's existing
11044 collection. */
11045
11046 static int
11047 remote_upload_tracepoints (struct uploaded_tp **utpp)
11048 {
11049 struct remote_state *rs = get_remote_state ();
11050 char *p;
11051
11052 /* Ask for a first packet of tracepoint definition. */
11053 putpkt ("qTfP");
11054 getpkt (&rs->buf, &rs->buf_size, 0);
11055 p = rs->buf;
11056 while (*p && *p != 'l')
11057 {
11058 parse_tracepoint_definition (p, utpp);
11059 /* Ask for another packet of tracepoint definition. */
11060 putpkt ("qTsP");
11061 getpkt (&rs->buf, &rs->buf_size, 0);
11062 p = rs->buf;
11063 }
11064 return 0;
11065 }
11066
11067 static int
11068 remote_upload_trace_state_variables (struct uploaded_tsv **utsvp)
11069 {
11070 struct remote_state *rs = get_remote_state ();
11071 char *p;
11072
11073 /* Ask for a first packet of variable definition. */
11074 putpkt ("qTfV");
11075 getpkt (&rs->buf, &rs->buf_size, 0);
11076 p = rs->buf;
11077 while (*p && *p != 'l')
11078 {
11079 parse_tsv_definition (p, utsvp);
11080 /* Ask for another packet of variable definition. */
11081 putpkt ("qTsV");
11082 getpkt (&rs->buf, &rs->buf_size, 0);
11083 p = rs->buf;
11084 }
11085 return 0;
11086 }
11087
11088 void
11089 _initialize_remote (void)
11090 {
11091 struct remote_state *rs;
11092 struct cmd_list_element *cmd;
11093 char *cmd_name;
11094
11095 /* architecture specific data */
11096 remote_gdbarch_data_handle =
11097 gdbarch_data_register_post_init (init_remote_state);
11098 remote_g_packet_data_handle =
11099 gdbarch_data_register_pre_init (remote_g_packet_data_init);
11100
11101 /* Initialize the per-target state. At the moment there is only one
11102 of these, not one per target. Only one target is active at a
11103 time. The default buffer size is unimportant; it will be expanded
11104 whenever a larger buffer is needed. */
11105 rs = get_remote_state_raw ();
11106 rs->buf_size = 400;
11107 rs->buf = xmalloc (rs->buf_size);
11108
11109 init_remote_ops ();
11110 add_target (&remote_ops);
11111
11112 init_extended_remote_ops ();
11113 add_target (&extended_remote_ops);
11114
11115 /* Hook into new objfile notification. */
11116 observer_attach_new_objfile (remote_new_objfile);
11117
11118 /* Set up signal handlers. */
11119 sigint_remote_token =
11120 create_async_signal_handler (async_remote_interrupt, NULL);
11121 sigint_remote_twice_token =
11122 create_async_signal_handler (async_remote_interrupt_twice, NULL);
11123
11124 #if 0
11125 init_remote_threadtests ();
11126 #endif
11127
11128 /* set/show remote ... */
11129
11130 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
11131 Remote protocol specific variables\n\
11132 Configure various remote-protocol specific variables such as\n\
11133 the packets being used"),
11134 &remote_set_cmdlist, "set remote ",
11135 0 /* allow-unknown */, &setlist);
11136 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
11137 Remote protocol specific variables\n\
11138 Configure various remote-protocol specific variables such as\n\
11139 the packets being used"),
11140 &remote_show_cmdlist, "show remote ",
11141 0 /* allow-unknown */, &showlist);
11142
11143 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
11144 Compare section data on target to the exec file.\n\
11145 Argument is a single section name (default: all loaded sections)."),
11146 &cmdlist);
11147
11148 add_cmd ("packet", class_maintenance, packet_command, _("\
11149 Send an arbitrary packet to a remote target.\n\
11150 maintenance packet TEXT\n\
11151 If GDB is talking to an inferior via the GDB serial protocol, then\n\
11152 this command sends the string TEXT to the inferior, and displays the\n\
11153 response packet. GDB supplies the initial `$' character, and the\n\
11154 terminating `#' character and checksum."),
11155 &maintenancelist);
11156
11157 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
11158 Set whether to send break if interrupted."), _("\
11159 Show whether to send break if interrupted."), _("\
11160 If set, a break, instead of a cntrl-c, is sent to the remote target."),
11161 set_remotebreak, show_remotebreak,
11162 &setlist, &showlist);
11163 cmd_name = "remotebreak";
11164 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
11165 deprecate_cmd (cmd, "set remote interrupt-sequence");
11166 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
11167 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
11168 deprecate_cmd (cmd, "show remote interrupt-sequence");
11169
11170 add_setshow_enum_cmd ("interrupt-sequence", class_support,
11171 interrupt_sequence_modes, &interrupt_sequence_mode,
11172 _("\
11173 Set interrupt sequence to remote target."), _("\
11174 Show interrupt sequence to remote target."), _("\
11175 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
11176 NULL, show_interrupt_sequence,
11177 &remote_set_cmdlist,
11178 &remote_show_cmdlist);
11179
11180 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
11181 &interrupt_on_connect, _("\
11182 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11183 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11184 If set, interrupt sequence is sent to remote target."),
11185 NULL, NULL,
11186 &remote_set_cmdlist, &remote_show_cmdlist);
11187
11188 /* Install commands for configuring memory read/write packets. */
11189
11190 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
11191 Set the maximum number of bytes per memory write packet (deprecated)."),
11192 &setlist);
11193 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
11194 Show the maximum number of bytes per memory write packet (deprecated)."),
11195 &showlist);
11196 add_cmd ("memory-write-packet-size", no_class,
11197 set_memory_write_packet_size, _("\
11198 Set the maximum number of bytes per memory-write packet.\n\
11199 Specify the number of bytes in a packet or 0 (zero) for the\n\
11200 default packet size. The actual limit is further reduced\n\
11201 dependent on the target. Specify ``fixed'' to disable the\n\
11202 further restriction and ``limit'' to enable that restriction."),
11203 &remote_set_cmdlist);
11204 add_cmd ("memory-read-packet-size", no_class,
11205 set_memory_read_packet_size, _("\
11206 Set the maximum number of bytes per memory-read packet.\n\
11207 Specify the number of bytes in a packet or 0 (zero) for the\n\
11208 default packet size. The actual limit is further reduced\n\
11209 dependent on the target. Specify ``fixed'' to disable the\n\
11210 further restriction and ``limit'' to enable that restriction."),
11211 &remote_set_cmdlist);
11212 add_cmd ("memory-write-packet-size", no_class,
11213 show_memory_write_packet_size,
11214 _("Show the maximum number of bytes per memory-write packet."),
11215 &remote_show_cmdlist);
11216 add_cmd ("memory-read-packet-size", no_class,
11217 show_memory_read_packet_size,
11218 _("Show the maximum number of bytes per memory-read packet."),
11219 &remote_show_cmdlist);
11220
11221 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
11222 &remote_hw_watchpoint_limit, _("\
11223 Set the maximum number of target hardware watchpoints."), _("\
11224 Show the maximum number of target hardware watchpoints."), _("\
11225 Specify a negative limit for unlimited."),
11226 NULL, NULL, /* FIXME: i18n: The maximum
11227 number of target hardware
11228 watchpoints is %s. */
11229 &remote_set_cmdlist, &remote_show_cmdlist);
11230 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
11231 &remote_hw_watchpoint_length_limit, _("\
11232 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
11233 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
11234 Specify a negative limit for unlimited."),
11235 NULL, NULL, /* FIXME: i18n: The maximum
11236 length (in bytes) of a target
11237 hardware watchpoint is %s. */
11238 &remote_set_cmdlist, &remote_show_cmdlist);
11239 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
11240 &remote_hw_breakpoint_limit, _("\
11241 Set the maximum number of target hardware breakpoints."), _("\
11242 Show the maximum number of target hardware breakpoints."), _("\
11243 Specify a negative limit for unlimited."),
11244 NULL, NULL, /* FIXME: i18n: The maximum
11245 number of target hardware
11246 breakpoints is %s. */
11247 &remote_set_cmdlist, &remote_show_cmdlist);
11248
11249 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
11250 &remote_address_size, _("\
11251 Set the maximum size of the address (in bits) in a memory packet."), _("\
11252 Show the maximum size of the address (in bits) in a memory packet."), NULL,
11253 NULL,
11254 NULL, /* FIXME: i18n: */
11255 &setlist, &showlist);
11256
11257 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
11258 "X", "binary-download", 1);
11259
11260 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
11261 "vCont", "verbose-resume", 0);
11262
11263 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
11264 "QPassSignals", "pass-signals", 0);
11265
11266 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
11267 "qSymbol", "symbol-lookup", 0);
11268
11269 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
11270 "P", "set-register", 1);
11271
11272 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
11273 "p", "fetch-register", 1);
11274
11275 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
11276 "Z0", "software-breakpoint", 0);
11277
11278 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
11279 "Z1", "hardware-breakpoint", 0);
11280
11281 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
11282 "Z2", "write-watchpoint", 0);
11283
11284 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
11285 "Z3", "read-watchpoint", 0);
11286
11287 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
11288 "Z4", "access-watchpoint", 0);
11289
11290 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
11291 "qXfer:auxv:read", "read-aux-vector", 0);
11292
11293 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
11294 "qXfer:features:read", "target-features", 0);
11295
11296 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
11297 "qXfer:libraries:read", "library-info", 0);
11298
11299 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
11300 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
11301
11302 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
11303 "qXfer:memory-map:read", "memory-map", 0);
11304
11305 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
11306 "qXfer:spu:read", "read-spu-object", 0);
11307
11308 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
11309 "qXfer:spu:write", "write-spu-object", 0);
11310
11311 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
11312 "qXfer:osdata:read", "osdata", 0);
11313
11314 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
11315 "qXfer:threads:read", "threads", 0);
11316
11317 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
11318 "qXfer:siginfo:read", "read-siginfo-object", 0);
11319
11320 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
11321 "qXfer:siginfo:write", "write-siginfo-object", 0);
11322
11323 add_packet_config_cmd
11324 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
11325 "qXfer:trace-frame-info:read", "traceframe-info", 0);
11326
11327 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
11328 "qXfer:uib:read", "unwind-info-block", 0);
11329
11330 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
11331 "qGetTLSAddr", "get-thread-local-storage-address",
11332 0);
11333
11334 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
11335 "qGetTIBAddr", "get-thread-information-block-address",
11336 0);
11337
11338 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
11339 "bc", "reverse-continue", 0);
11340
11341 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
11342 "bs", "reverse-step", 0);
11343
11344 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
11345 "qSupported", "supported-packets", 0);
11346
11347 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
11348 "qSearch:memory", "search-memory", 0);
11349
11350 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
11351 "vFile:open", "hostio-open", 0);
11352
11353 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
11354 "vFile:pread", "hostio-pread", 0);
11355
11356 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
11357 "vFile:pwrite", "hostio-pwrite", 0);
11358
11359 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
11360 "vFile:close", "hostio-close", 0);
11361
11362 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
11363 "vFile:unlink", "hostio-unlink", 0);
11364
11365 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
11366 "vFile:readlink", "hostio-readlink", 0);
11367
11368 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
11369 "vAttach", "attach", 0);
11370
11371 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
11372 "vRun", "run", 0);
11373
11374 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
11375 "QStartNoAckMode", "noack", 0);
11376
11377 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
11378 "vKill", "kill", 0);
11379
11380 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
11381 "qAttached", "query-attached", 0);
11382
11383 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
11384 "ConditionalTracepoints",
11385 "conditional-tracepoints", 0);
11386
11387 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
11388 "ConditionalBreakpoints",
11389 "conditional-breakpoints", 0);
11390
11391 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
11392 "FastTracepoints", "fast-tracepoints", 0);
11393
11394 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
11395 "TracepointSource", "TracepointSource", 0);
11396
11397 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
11398 "QAllow", "allow", 0);
11399
11400 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
11401 "StaticTracepoints", "static-tracepoints", 0);
11402
11403 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
11404 "InstallInTrace", "install-in-trace", 0);
11405
11406 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
11407 "qXfer:statictrace:read", "read-sdata-object", 0);
11408
11409 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
11410 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
11411
11412 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
11413 "QDisableRandomization", "disable-randomization", 0);
11414
11415 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
11416 "QAgent", "agent", 0);
11417
11418 /* Keep the old ``set remote Z-packet ...'' working. Each individual
11419 Z sub-packet has its own set and show commands, but users may
11420 have sets to this variable in their .gdbinit files (or in their
11421 documentation). */
11422 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
11423 &remote_Z_packet_detect, _("\
11424 Set use of remote protocol `Z' packets"), _("\
11425 Show use of remote protocol `Z' packets "), _("\
11426 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
11427 packets."),
11428 set_remote_protocol_Z_packet_cmd,
11429 show_remote_protocol_Z_packet_cmd,
11430 /* FIXME: i18n: Use of remote protocol
11431 `Z' packets is %s. */
11432 &remote_set_cmdlist, &remote_show_cmdlist);
11433
11434 add_prefix_cmd ("remote", class_files, remote_command, _("\
11435 Manipulate files on the remote system\n\
11436 Transfer files to and from the remote target system."),
11437 &remote_cmdlist, "remote ",
11438 0 /* allow-unknown */, &cmdlist);
11439
11440 add_cmd ("put", class_files, remote_put_command,
11441 _("Copy a local file to the remote system."),
11442 &remote_cmdlist);
11443
11444 add_cmd ("get", class_files, remote_get_command,
11445 _("Copy a remote file to the local system."),
11446 &remote_cmdlist);
11447
11448 add_cmd ("delete", class_files, remote_delete_command,
11449 _("Delete a remote file."),
11450 &remote_cmdlist);
11451
11452 remote_exec_file = xstrdup ("");
11453 add_setshow_string_noescape_cmd ("exec-file", class_files,
11454 &remote_exec_file, _("\
11455 Set the remote pathname for \"run\""), _("\
11456 Show the remote pathname for \"run\""), NULL, NULL, NULL,
11457 &remote_set_cmdlist, &remote_show_cmdlist);
11458
11459 /* Eventually initialize fileio. See fileio.c */
11460 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
11461
11462 /* Take advantage of the fact that the LWP field is not used, to tag
11463 special ptids with it set to != 0. */
11464 magic_null_ptid = ptid_build (42000, 1, -1);
11465 not_sent_ptid = ptid_build (42000, 1, -2);
11466 any_thread_ptid = ptid_build (42000, 1, 0);
11467
11468 target_buf_size = 2048;
11469 target_buf = xmalloc (target_buf_size);
11470 }
11471
This page took 0.252843 seconds and 5 git commands to generate.