Extend "set cwd" to work on gdbserver
[deliverable/binutils-gdb.git] / gdb / gdbserver / server.c
1 /* Main code for remote server for GDB.
2 Copyright (C) 1989-2017 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include "server.h"
20 #include "gdbthread.h"
21 #include "agent.h"
22 #include "notif.h"
23 #include "tdesc.h"
24 #include "rsp-low.h"
25 #include "signals-state-save-restore.h"
26 #include <ctype.h>
27 #include <unistd.h>
28 #if HAVE_SIGNAL_H
29 #include <signal.h>
30 #endif
31 #include "gdb_vecs.h"
32 #include "gdb_wait.h"
33 #include "btrace-common.h"
34 #include "filestuff.h"
35 #include "tracepoint.h"
36 #include "dll.h"
37 #include "hostio.h"
38 #include <vector>
39 #include "common-inferior.h"
40 #include "job-control.h"
41 #include "environ.h"
42
43 #include "common/selftest.h"
44
45 #define require_running_or_return(BUF) \
46 if (!target_running ()) \
47 { \
48 write_enn (BUF); \
49 return; \
50 }
51
52 #define require_running_or_break(BUF) \
53 if (!target_running ()) \
54 { \
55 write_enn (BUF); \
56 break; \
57 }
58
59 /* The environment to pass to the inferior when creating it. */
60
61 static gdb_environ our_environ;
62
63 /* Start the inferior using a shell. */
64
65 /* We always try to start the inferior using a shell. */
66
67 int startup_with_shell = 1;
68
69 /* The thread set with an `Hc' packet. `Hc' is deprecated in favor of
70 `vCont'. Note the multi-process extensions made `vCont' a
71 requirement, so `Hc pPID.TID' is pretty much undefined. So
72 CONT_THREAD can be null_ptid for no `Hc' thread, minus_one_ptid for
73 resuming all threads of the process (again, `Hc' isn't used for
74 multi-process), or a specific thread ptid_t. */
75 ptid_t cont_thread;
76
77 /* The thread set with an `Hg' packet. */
78 ptid_t general_thread;
79
80 int server_waiting;
81
82 static int extended_protocol;
83 static int response_needed;
84 static int exit_requested;
85
86 /* --once: Exit after the first connection has closed. */
87 int run_once;
88
89 int multi_process;
90 int report_fork_events;
91 int report_vfork_events;
92 int report_exec_events;
93 int report_thread_events;
94
95 /* Whether to report TARGET_WAITKING_NO_RESUMED events. */
96 static int report_no_resumed;
97
98 int non_stop;
99 int swbreak_feature;
100 int hwbreak_feature;
101
102 /* True if the "vContSupported" feature is active. In that case, GDB
103 wants us to report whether single step is supported in the reply to
104 "vCont?" packet. */
105 static int vCont_supported;
106
107 /* Whether we should attempt to disable the operating system's address
108 space randomization feature before starting an inferior. */
109 int disable_randomization = 1;
110
111 static char *program_name = NULL;
112 static std::vector<char *> program_args;
113 static std::string wrapper_argv;
114
115 int pass_signals[GDB_SIGNAL_LAST];
116 int program_signals[GDB_SIGNAL_LAST];
117 int program_signals_p;
118
119 /* The PID of the originally created or attached inferior. Used to
120 send signals to the process when GDB sends us an asynchronous interrupt
121 (user hitting Control-C in the client), and to wait for the child to exit
122 when no longer debugging it. */
123
124 unsigned long signal_pid;
125
126 /* Set if you want to disable optional thread related packets support
127 in gdbserver, for the sake of testing GDB against stubs that don't
128 support them. */
129 int disable_packet_vCont;
130 int disable_packet_Tthread;
131 int disable_packet_qC;
132 int disable_packet_qfThreadInfo;
133
134 /* Last status reported to GDB. */
135 struct target_waitstatus last_status;
136 ptid_t last_ptid;
137
138 char *own_buf;
139 static unsigned char *mem_buf;
140
141 /* A sub-class of 'struct notif_event' for stop, holding information
142 relative to a single stop reply. We keep a queue of these to
143 push to GDB in non-stop mode. */
144
145 struct vstop_notif
146 {
147 struct notif_event base;
148
149 /* Thread or process that got the event. */
150 ptid_t ptid;
151
152 /* Event info. */
153 struct target_waitstatus status;
154 };
155
156 /* The current btrace configuration. This is gdbserver's mirror of GDB's
157 btrace configuration. */
158 static struct btrace_config current_btrace_conf;
159
160 DEFINE_QUEUE_P (notif_event_p);
161
162 /* Put a stop reply to the stop reply queue. */
163
164 static void
165 queue_stop_reply (ptid_t ptid, struct target_waitstatus *status)
166 {
167 struct vstop_notif *new_notif = XNEW (struct vstop_notif);
168
169 new_notif->ptid = ptid;
170 new_notif->status = *status;
171
172 notif_event_enque (&notif_stop, (struct notif_event *) new_notif);
173 }
174
175 static int
176 remove_all_on_match_ptid (QUEUE (notif_event_p) *q,
177 QUEUE_ITER (notif_event_p) *iter,
178 struct notif_event *event,
179 void *data)
180 {
181 ptid_t filter_ptid = *(ptid_t *) data;
182 struct vstop_notif *vstop_event = (struct vstop_notif *) event;
183
184 if (ptid_match (vstop_event->ptid, filter_ptid))
185 {
186 if (q->free_func != NULL)
187 q->free_func (event);
188
189 QUEUE_remove_elem (notif_event_p, q, iter);
190 }
191
192 return 1;
193 }
194
195 /* See server.h. */
196
197 void
198 discard_queued_stop_replies (ptid_t ptid)
199 {
200 QUEUE_iterate (notif_event_p, notif_stop.queue,
201 remove_all_on_match_ptid, &ptid);
202 }
203
204 static void
205 vstop_notif_reply (struct notif_event *event, char *own_buf)
206 {
207 struct vstop_notif *vstop = (struct vstop_notif *) event;
208
209 prepare_resume_reply (own_buf, vstop->ptid, &vstop->status);
210 }
211
212 /* QUEUE_iterate callback helper for in_queued_stop_replies. */
213
214 static int
215 in_queued_stop_replies_ptid (QUEUE (notif_event_p) *q,
216 QUEUE_ITER (notif_event_p) *iter,
217 struct notif_event *event,
218 void *data)
219 {
220 ptid_t filter_ptid = *(ptid_t *) data;
221 struct vstop_notif *vstop_event = (struct vstop_notif *) event;
222
223 if (ptid_match (vstop_event->ptid, filter_ptid))
224 return 0;
225
226 /* Don't resume fork children that GDB does not know about yet. */
227 if ((vstop_event->status.kind == TARGET_WAITKIND_FORKED
228 || vstop_event->status.kind == TARGET_WAITKIND_VFORKED)
229 && ptid_match (vstop_event->status.value.related_pid, filter_ptid))
230 return 0;
231
232 return 1;
233 }
234
235 /* See server.h. */
236
237 int
238 in_queued_stop_replies (ptid_t ptid)
239 {
240 return !QUEUE_iterate (notif_event_p, notif_stop.queue,
241 in_queued_stop_replies_ptid, &ptid);
242 }
243
244 struct notif_server notif_stop =
245 {
246 "vStopped", "Stop", NULL, vstop_notif_reply,
247 };
248
249 static int
250 target_running (void)
251 {
252 return get_first_thread () != NULL;
253 }
254
255 /* See common/common-inferior.h. */
256
257 const char *
258 get_exec_wrapper ()
259 {
260 return !wrapper_argv.empty () ? wrapper_argv.c_str () : NULL;
261 }
262
263 /* See common/common-inferior.h. */
264
265 char *
266 get_exec_file (int err)
267 {
268 if (err && program_name == NULL)
269 error (_("No executable file specified."));
270
271 return program_name;
272 }
273
274 /* See server.h. */
275
276 gdb_environ *
277 get_environ ()
278 {
279 return &our_environ;
280 }
281
282 static int
283 attach_inferior (int pid)
284 {
285 /* myattach should return -1 if attaching is unsupported,
286 0 if it succeeded, and call error() otherwise. */
287
288 if (myattach (pid) != 0)
289 return -1;
290
291 fprintf (stderr, "Attached; pid = %d\n", pid);
292 fflush (stderr);
293
294 /* FIXME - It may be that we should get the SIGNAL_PID from the
295 attach function, so that it can be the main thread instead of
296 whichever we were told to attach to. */
297 signal_pid = pid;
298
299 if (!non_stop)
300 {
301 last_ptid = mywait (pid_to_ptid (pid), &last_status, 0, 0);
302
303 /* GDB knows to ignore the first SIGSTOP after attaching to a running
304 process using the "attach" command, but this is different; it's
305 just using "target remote". Pretend it's just starting up. */
306 if (last_status.kind == TARGET_WAITKIND_STOPPED
307 && last_status.value.sig == GDB_SIGNAL_STOP)
308 last_status.value.sig = GDB_SIGNAL_TRAP;
309
310 current_thread->last_resume_kind = resume_stop;
311 current_thread->last_status = last_status;
312 }
313
314 return 0;
315 }
316
317 extern int remote_debug;
318
319 /* Decode a qXfer read request. Return 0 if everything looks OK,
320 or -1 otherwise. */
321
322 static int
323 decode_xfer_read (char *buf, CORE_ADDR *ofs, unsigned int *len)
324 {
325 /* After the read marker and annex, qXfer looks like a
326 traditional 'm' packet. */
327 decode_m_packet (buf, ofs, len);
328
329 return 0;
330 }
331
332 static int
333 decode_xfer (char *buf, char **object, char **rw, char **annex, char **offset)
334 {
335 /* Extract and NUL-terminate the object. */
336 *object = buf;
337 while (*buf && *buf != ':')
338 buf++;
339 if (*buf == '\0')
340 return -1;
341 *buf++ = 0;
342
343 /* Extract and NUL-terminate the read/write action. */
344 *rw = buf;
345 while (*buf && *buf != ':')
346 buf++;
347 if (*buf == '\0')
348 return -1;
349 *buf++ = 0;
350
351 /* Extract and NUL-terminate the annex. */
352 *annex = buf;
353 while (*buf && *buf != ':')
354 buf++;
355 if (*buf == '\0')
356 return -1;
357 *buf++ = 0;
358
359 *offset = buf;
360 return 0;
361 }
362
363 /* Write the response to a successful qXfer read. Returns the
364 length of the (binary) data stored in BUF, corresponding
365 to as much of DATA/LEN as we could fit. IS_MORE controls
366 the first character of the response. */
367 static int
368 write_qxfer_response (char *buf, const gdb_byte *data, int len, int is_more)
369 {
370 int out_len;
371
372 if (is_more)
373 buf[0] = 'm';
374 else
375 buf[0] = 'l';
376
377 return remote_escape_output (data, len, 1, (unsigned char *) buf + 1,
378 &out_len, PBUFSIZ - 2) + 1;
379 }
380
381 /* Handle btrace enabling in BTS format. */
382
383 static const char *
384 handle_btrace_enable_bts (struct thread_info *thread)
385 {
386 if (thread->btrace != NULL)
387 return "E.Btrace already enabled.";
388
389 current_btrace_conf.format = BTRACE_FORMAT_BTS;
390 thread->btrace = target_enable_btrace (thread->entry.id,
391 &current_btrace_conf);
392 if (thread->btrace == NULL)
393 return "E.Could not enable btrace.";
394
395 return NULL;
396 }
397
398 /* Handle btrace enabling in Intel Processor Trace format. */
399
400 static const char *
401 handle_btrace_enable_pt (struct thread_info *thread)
402 {
403 if (thread->btrace != NULL)
404 return "E.Btrace already enabled.";
405
406 current_btrace_conf.format = BTRACE_FORMAT_PT;
407 thread->btrace = target_enable_btrace (thread->entry.id,
408 &current_btrace_conf);
409 if (thread->btrace == NULL)
410 return "E.Could not enable btrace.";
411
412 return NULL;
413 }
414
415 /* Handle btrace disabling. */
416
417 static const char *
418 handle_btrace_disable (struct thread_info *thread)
419 {
420
421 if (thread->btrace == NULL)
422 return "E.Branch tracing not enabled.";
423
424 if (target_disable_btrace (thread->btrace) != 0)
425 return "E.Could not disable branch tracing.";
426
427 thread->btrace = NULL;
428 return NULL;
429 }
430
431 /* Handle the "Qbtrace" packet. */
432
433 static int
434 handle_btrace_general_set (char *own_buf)
435 {
436 struct thread_info *thread;
437 const char *err;
438 char *op;
439
440 if (!startswith (own_buf, "Qbtrace:"))
441 return 0;
442
443 op = own_buf + strlen ("Qbtrace:");
444
445 if (ptid_equal (general_thread, null_ptid)
446 || ptid_equal (general_thread, minus_one_ptid))
447 {
448 strcpy (own_buf, "E.Must select a single thread.");
449 return -1;
450 }
451
452 thread = find_thread_ptid (general_thread);
453 if (thread == NULL)
454 {
455 strcpy (own_buf, "E.No such thread.");
456 return -1;
457 }
458
459 err = NULL;
460
461 if (strcmp (op, "bts") == 0)
462 err = handle_btrace_enable_bts (thread);
463 else if (strcmp (op, "pt") == 0)
464 err = handle_btrace_enable_pt (thread);
465 else if (strcmp (op, "off") == 0)
466 err = handle_btrace_disable (thread);
467 else
468 err = "E.Bad Qbtrace operation. Use bts, pt, or off.";
469
470 if (err != 0)
471 strcpy (own_buf, err);
472 else
473 write_ok (own_buf);
474
475 return 1;
476 }
477
478 /* Handle the "Qbtrace-conf" packet. */
479
480 static int
481 handle_btrace_conf_general_set (char *own_buf)
482 {
483 struct thread_info *thread;
484 char *op;
485
486 if (!startswith (own_buf, "Qbtrace-conf:"))
487 return 0;
488
489 op = own_buf + strlen ("Qbtrace-conf:");
490
491 if (ptid_equal (general_thread, null_ptid)
492 || ptid_equal (general_thread, minus_one_ptid))
493 {
494 strcpy (own_buf, "E.Must select a single thread.");
495 return -1;
496 }
497
498 thread = find_thread_ptid (general_thread);
499 if (thread == NULL)
500 {
501 strcpy (own_buf, "E.No such thread.");
502 return -1;
503 }
504
505 if (startswith (op, "bts:size="))
506 {
507 unsigned long size;
508 char *endp = NULL;
509
510 errno = 0;
511 size = strtoul (op + strlen ("bts:size="), &endp, 16);
512 if (endp == NULL || *endp != 0 || errno != 0 || size > UINT_MAX)
513 {
514 strcpy (own_buf, "E.Bad size value.");
515 return -1;
516 }
517
518 current_btrace_conf.bts.size = (unsigned int) size;
519 }
520 else if (strncmp (op, "pt:size=", strlen ("pt:size=")) == 0)
521 {
522 unsigned long size;
523 char *endp = NULL;
524
525 errno = 0;
526 size = strtoul (op + strlen ("pt:size="), &endp, 16);
527 if (endp == NULL || *endp != 0 || errno != 0 || size > UINT_MAX)
528 {
529 strcpy (own_buf, "E.Bad size value.");
530 return -1;
531 }
532
533 current_btrace_conf.pt.size = (unsigned int) size;
534 }
535 else
536 {
537 strcpy (own_buf, "E.Bad Qbtrace configuration option.");
538 return -1;
539 }
540
541 write_ok (own_buf);
542 return 1;
543 }
544
545 /* Handle all of the extended 'Q' packets. */
546
547 static void
548 handle_general_set (char *own_buf)
549 {
550 if (startswith (own_buf, "QPassSignals:"))
551 {
552 int numsigs = (int) GDB_SIGNAL_LAST, i;
553 const char *p = own_buf + strlen ("QPassSignals:");
554 CORE_ADDR cursig;
555
556 p = decode_address_to_semicolon (&cursig, p);
557 for (i = 0; i < numsigs; i++)
558 {
559 if (i == cursig)
560 {
561 pass_signals[i] = 1;
562 if (*p == '\0')
563 /* Keep looping, to clear the remaining signals. */
564 cursig = -1;
565 else
566 p = decode_address_to_semicolon (&cursig, p);
567 }
568 else
569 pass_signals[i] = 0;
570 }
571 strcpy (own_buf, "OK");
572 return;
573 }
574
575 if (startswith (own_buf, "QProgramSignals:"))
576 {
577 int numsigs = (int) GDB_SIGNAL_LAST, i;
578 const char *p = own_buf + strlen ("QProgramSignals:");
579 CORE_ADDR cursig;
580
581 program_signals_p = 1;
582
583 p = decode_address_to_semicolon (&cursig, p);
584 for (i = 0; i < numsigs; i++)
585 {
586 if (i == cursig)
587 {
588 program_signals[i] = 1;
589 if (*p == '\0')
590 /* Keep looping, to clear the remaining signals. */
591 cursig = -1;
592 else
593 p = decode_address_to_semicolon (&cursig, p);
594 }
595 else
596 program_signals[i] = 0;
597 }
598 strcpy (own_buf, "OK");
599 return;
600 }
601
602 if (startswith (own_buf, "QCatchSyscalls:"))
603 {
604 const char *p = own_buf + sizeof ("QCatchSyscalls:") - 1;
605 int enabled = -1;
606 CORE_ADDR sysno;
607 struct process_info *process;
608
609 if (!target_running () || !target_supports_catch_syscall ())
610 {
611 write_enn (own_buf);
612 return;
613 }
614
615 if (strcmp (p, "0") == 0)
616 enabled = 0;
617 else if (p[0] == '1' && (p[1] == ';' || p[1] == '\0'))
618 enabled = 1;
619 else
620 {
621 fprintf (stderr, "Unknown catch-syscalls mode requested: %s\n",
622 own_buf);
623 write_enn (own_buf);
624 return;
625 }
626
627 process = current_process ();
628 VEC_truncate (int, process->syscalls_to_catch, 0);
629
630 if (enabled)
631 {
632 p += 1;
633 if (*p == ';')
634 {
635 p += 1;
636 while (*p != '\0')
637 {
638 p = decode_address_to_semicolon (&sysno, p);
639 VEC_safe_push (int, process->syscalls_to_catch, (int) sysno);
640 }
641 }
642 else
643 VEC_safe_push (int, process->syscalls_to_catch, ANY_SYSCALL);
644 }
645
646 write_ok (own_buf);
647 return;
648 }
649
650 if (strcmp (own_buf, "QEnvironmentReset") == 0)
651 {
652 our_environ = gdb_environ::from_host_environ ();
653
654 write_ok (own_buf);
655 return;
656 }
657
658 if (startswith (own_buf, "QEnvironmentHexEncoded:"))
659 {
660 const char *p = own_buf + sizeof ("QEnvironmentHexEncoded:") - 1;
661 /* The final form of the environment variable. FINAL_VAR will
662 hold the 'VAR=VALUE' format. */
663 std::string final_var = hex2str (p);
664 std::string var_name, var_value;
665
666 if (remote_debug)
667 {
668 debug_printf (_("[QEnvironmentHexEncoded received '%s']\n"), p);
669 debug_printf (_("[Environment variable to be set: '%s']\n"),
670 final_var.c_str ());
671 debug_flush ();
672 }
673
674 size_t pos = final_var.find ('=');
675 if (pos == std::string::npos)
676 {
677 warning (_("Unexpected format for environment variable: '%s'"),
678 final_var.c_str ());
679 write_enn (own_buf);
680 return;
681 }
682
683 var_name = final_var.substr (0, pos);
684 var_value = final_var.substr (pos + 1, std::string::npos);
685
686 our_environ.set (var_name.c_str (), var_value.c_str ());
687
688 write_ok (own_buf);
689 return;
690 }
691
692 if (startswith (own_buf, "QEnvironmentUnset:"))
693 {
694 const char *p = own_buf + sizeof ("QEnvironmentUnset:") - 1;
695 std::string varname = hex2str (p);
696
697 if (remote_debug)
698 {
699 debug_printf (_("[QEnvironmentUnset received '%s']\n"), p);
700 debug_printf (_("[Environment variable to be unset: '%s']\n"),
701 varname.c_str ());
702 debug_flush ();
703 }
704
705 our_environ.unset (varname.c_str ());
706
707 write_ok (own_buf);
708 return;
709 }
710
711 if (strcmp (own_buf, "QStartNoAckMode") == 0)
712 {
713 if (remote_debug)
714 {
715 debug_printf ("[noack mode enabled]\n");
716 debug_flush ();
717 }
718
719 noack_mode = 1;
720 write_ok (own_buf);
721 return;
722 }
723
724 if (startswith (own_buf, "QNonStop:"))
725 {
726 char *mode = own_buf + 9;
727 int req = -1;
728 const char *req_str;
729
730 if (strcmp (mode, "0") == 0)
731 req = 0;
732 else if (strcmp (mode, "1") == 0)
733 req = 1;
734 else
735 {
736 /* We don't know what this mode is, so complain to
737 GDB. */
738 fprintf (stderr, "Unknown non-stop mode requested: %s\n",
739 own_buf);
740 write_enn (own_buf);
741 return;
742 }
743
744 req_str = req ? "non-stop" : "all-stop";
745 if (start_non_stop (req) != 0)
746 {
747 fprintf (stderr, "Setting %s mode failed\n", req_str);
748 write_enn (own_buf);
749 return;
750 }
751
752 non_stop = req;
753
754 if (remote_debug)
755 debug_printf ("[%s mode enabled]\n", req_str);
756
757 write_ok (own_buf);
758 return;
759 }
760
761 if (startswith (own_buf, "QDisableRandomization:"))
762 {
763 char *packet = own_buf + strlen ("QDisableRandomization:");
764 ULONGEST setting;
765
766 unpack_varlen_hex (packet, &setting);
767 disable_randomization = setting;
768
769 if (remote_debug)
770 {
771 debug_printf (disable_randomization
772 ? "[address space randomization disabled]\n"
773 : "[address space randomization enabled]\n");
774 }
775
776 write_ok (own_buf);
777 return;
778 }
779
780 if (target_supports_tracepoints ()
781 && handle_tracepoint_general_set (own_buf))
782 return;
783
784 if (startswith (own_buf, "QAgent:"))
785 {
786 char *mode = own_buf + strlen ("QAgent:");
787 int req = 0;
788
789 if (strcmp (mode, "0") == 0)
790 req = 0;
791 else if (strcmp (mode, "1") == 0)
792 req = 1;
793 else
794 {
795 /* We don't know what this value is, so complain to GDB. */
796 sprintf (own_buf, "E.Unknown QAgent value");
797 return;
798 }
799
800 /* Update the flag. */
801 use_agent = req;
802 if (remote_debug)
803 debug_printf ("[%s agent]\n", req ? "Enable" : "Disable");
804 write_ok (own_buf);
805 return;
806 }
807
808 if (handle_btrace_general_set (own_buf))
809 return;
810
811 if (handle_btrace_conf_general_set (own_buf))
812 return;
813
814 if (startswith (own_buf, "QThreadEvents:"))
815 {
816 char *mode = own_buf + strlen ("QThreadEvents:");
817 enum tribool req = TRIBOOL_UNKNOWN;
818
819 if (strcmp (mode, "0") == 0)
820 req = TRIBOOL_FALSE;
821 else if (strcmp (mode, "1") == 0)
822 req = TRIBOOL_TRUE;
823 else
824 {
825 char *mode_copy = xstrdup (mode);
826
827 /* We don't know what this mode is, so complain to GDB. */
828 sprintf (own_buf, "E.Unknown thread-events mode requested: %s\n",
829 mode_copy);
830 xfree (mode_copy);
831 return;
832 }
833
834 report_thread_events = (req == TRIBOOL_TRUE);
835
836 if (remote_debug)
837 {
838 const char *req_str = report_thread_events ? "enabled" : "disabled";
839
840 debug_printf ("[thread events are now %s]\n", req_str);
841 }
842
843 write_ok (own_buf);
844 return;
845 }
846
847 if (startswith (own_buf, "QStartupWithShell:"))
848 {
849 const char *value = own_buf + strlen ("QStartupWithShell:");
850
851 if (strcmp (value, "1") == 0)
852 startup_with_shell = true;
853 else if (strcmp (value, "0") == 0)
854 startup_with_shell = false;
855 else
856 {
857 /* Unknown value. */
858 fprintf (stderr, "Unknown value to startup-with-shell: %s\n",
859 own_buf);
860 write_enn (own_buf);
861 return;
862 }
863
864 if (remote_debug)
865 debug_printf (_("[Inferior will %s started with shell]"),
866 startup_with_shell ? "be" : "not be");
867
868 write_ok (own_buf);
869 return;
870 }
871
872 if (startswith (own_buf, "QSetWorkingDir:"))
873 {
874 const char *p = own_buf + strlen ("QSetWorkingDir:");
875
876 if (*p != '\0')
877 {
878 std::string path = hex2str (p);
879
880 set_inferior_cwd (path.c_str ());
881
882 if (remote_debug)
883 debug_printf (_("[Set the inferior's current directory to %s]\n"),
884 path.c_str ());
885 }
886 else
887 {
888 /* An empty argument means that we should clear out any
889 previously set cwd for the inferior. */
890 set_inferior_cwd (NULL);
891
892 if (remote_debug)
893 debug_printf (_("\
894 [Unset the inferior's current directory; will use gdbserver's cwd]\n"));
895 }
896 write_ok (own_buf);
897
898 return;
899 }
900
901 /* Otherwise we didn't know what packet it was. Say we didn't
902 understand it. */
903 own_buf[0] = 0;
904 }
905
906 static const char *
907 get_features_xml (const char *annex)
908 {
909 const struct target_desc *desc = current_target_desc ();
910
911 /* `desc->xmltarget' defines what to return when looking for the
912 "target.xml" file. Its contents can either be verbatim XML code
913 (prefixed with a '@') or else the name of the actual XML file to
914 be used in place of "target.xml".
915
916 This variable is set up from the auto-generated
917 init_registers_... routine for the current target. */
918
919 if (strcmp (annex, "target.xml") == 0)
920 {
921 const char *ret = tdesc_get_features_xml ((target_desc*) desc);
922
923 if (*ret == '@')
924 return ret + 1;
925 else
926 annex = ret;
927 }
928
929 #ifdef USE_XML
930 {
931 extern const char *const xml_builtin[][2];
932 int i;
933
934 /* Look for the annex. */
935 for (i = 0; xml_builtin[i][0] != NULL; i++)
936 if (strcmp (annex, xml_builtin[i][0]) == 0)
937 break;
938
939 if (xml_builtin[i][0] != NULL)
940 return xml_builtin[i][1];
941 }
942 #endif
943
944 return NULL;
945 }
946
947 static void
948 monitor_show_help (void)
949 {
950 monitor_output ("The following monitor commands are supported:\n");
951 monitor_output (" set debug <0|1>\n");
952 monitor_output (" Enable general debugging messages\n");
953 monitor_output (" set debug-hw-points <0|1>\n");
954 monitor_output (" Enable h/w breakpoint/watchpoint debugging messages\n");
955 monitor_output (" set remote-debug <0|1>\n");
956 monitor_output (" Enable remote protocol debugging messages\n");
957 monitor_output (" set debug-format option1[,option2,...]\n");
958 monitor_output (" Add additional information to debugging messages\n");
959 monitor_output (" Options: all, none");
960 monitor_output (", timestamp");
961 monitor_output ("\n");
962 monitor_output (" exit\n");
963 monitor_output (" Quit GDBserver\n");
964 }
965
966 /* Read trace frame or inferior memory. Returns the number of bytes
967 actually read, zero when no further transfer is possible, and -1 on
968 error. Return of a positive value smaller than LEN does not
969 indicate there's no more to be read, only the end of the transfer.
970 E.g., when GDB reads memory from a traceframe, a first request may
971 be served from a memory block that does not cover the whole request
972 length. A following request gets the rest served from either
973 another block (of the same traceframe) or from the read-only
974 regions. */
975
976 static int
977 gdb_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
978 {
979 int res;
980
981 if (current_traceframe >= 0)
982 {
983 ULONGEST nbytes;
984 ULONGEST length = len;
985
986 if (traceframe_read_mem (current_traceframe,
987 memaddr, myaddr, len, &nbytes))
988 return -1;
989 /* Data read from trace buffer, we're done. */
990 if (nbytes > 0)
991 return nbytes;
992 if (!in_readonly_region (memaddr, length))
993 return -1;
994 /* Otherwise we have a valid readonly case, fall through. */
995 /* (assume no half-trace half-real blocks for now) */
996 }
997
998 res = prepare_to_access_memory ();
999 if (res == 0)
1000 {
1001 if (set_desired_thread ())
1002 res = read_inferior_memory (memaddr, myaddr, len);
1003 else
1004 res = 1;
1005 done_accessing_memory ();
1006
1007 return res == 0 ? len : -1;
1008 }
1009 else
1010 return -1;
1011 }
1012
1013 /* Write trace frame or inferior memory. Actually, writing to trace
1014 frames is forbidden. */
1015
1016 static int
1017 gdb_write_memory (CORE_ADDR memaddr, const unsigned char *myaddr, int len)
1018 {
1019 if (current_traceframe >= 0)
1020 return EIO;
1021 else
1022 {
1023 int ret;
1024
1025 ret = prepare_to_access_memory ();
1026 if (ret == 0)
1027 {
1028 if (set_desired_thread ())
1029 ret = write_inferior_memory (memaddr, myaddr, len);
1030 else
1031 ret = EIO;
1032 done_accessing_memory ();
1033 }
1034 return ret;
1035 }
1036 }
1037
1038 /* Subroutine of handle_search_memory to simplify it. */
1039
1040 static int
1041 handle_search_memory_1 (CORE_ADDR start_addr, CORE_ADDR search_space_len,
1042 gdb_byte *pattern, unsigned pattern_len,
1043 gdb_byte *search_buf,
1044 unsigned chunk_size, unsigned search_buf_size,
1045 CORE_ADDR *found_addrp)
1046 {
1047 /* Prime the search buffer. */
1048
1049 if (gdb_read_memory (start_addr, search_buf, search_buf_size)
1050 != search_buf_size)
1051 {
1052 warning ("Unable to access %ld bytes of target "
1053 "memory at 0x%lx, halting search.",
1054 (long) search_buf_size, (long) start_addr);
1055 return -1;
1056 }
1057
1058 /* Perform the search.
1059
1060 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
1061 When we've scanned N bytes we copy the trailing bytes to the start and
1062 read in another N bytes. */
1063
1064 while (search_space_len >= pattern_len)
1065 {
1066 gdb_byte *found_ptr;
1067 unsigned nr_search_bytes = (search_space_len < search_buf_size
1068 ? search_space_len
1069 : search_buf_size);
1070
1071 found_ptr = (gdb_byte *) memmem (search_buf, nr_search_bytes, pattern,
1072 pattern_len);
1073
1074 if (found_ptr != NULL)
1075 {
1076 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
1077 *found_addrp = found_addr;
1078 return 1;
1079 }
1080
1081 /* Not found in this chunk, skip to next chunk. */
1082
1083 /* Don't let search_space_len wrap here, it's unsigned. */
1084 if (search_space_len >= chunk_size)
1085 search_space_len -= chunk_size;
1086 else
1087 search_space_len = 0;
1088
1089 if (search_space_len >= pattern_len)
1090 {
1091 unsigned keep_len = search_buf_size - chunk_size;
1092 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
1093 int nr_to_read;
1094
1095 /* Copy the trailing part of the previous iteration to the front
1096 of the buffer for the next iteration. */
1097 memcpy (search_buf, search_buf + chunk_size, keep_len);
1098
1099 nr_to_read = (search_space_len - keep_len < chunk_size
1100 ? search_space_len - keep_len
1101 : chunk_size);
1102
1103 if (gdb_read_memory (read_addr, search_buf + keep_len,
1104 nr_to_read) != search_buf_size)
1105 {
1106 warning ("Unable to access %ld bytes of target memory "
1107 "at 0x%lx, halting search.",
1108 (long) nr_to_read, (long) read_addr);
1109 return -1;
1110 }
1111
1112 start_addr += chunk_size;
1113 }
1114 }
1115
1116 /* Not found. */
1117
1118 return 0;
1119 }
1120
1121 /* Handle qSearch:memory packets. */
1122
1123 static void
1124 handle_search_memory (char *own_buf, int packet_len)
1125 {
1126 CORE_ADDR start_addr;
1127 CORE_ADDR search_space_len;
1128 gdb_byte *pattern;
1129 unsigned int pattern_len;
1130 /* NOTE: also defined in find.c testcase. */
1131 #define SEARCH_CHUNK_SIZE 16000
1132 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
1133 /* Buffer to hold memory contents for searching. */
1134 gdb_byte *search_buf;
1135 unsigned search_buf_size;
1136 int found;
1137 CORE_ADDR found_addr;
1138 int cmd_name_len = sizeof ("qSearch:memory:") - 1;
1139
1140 pattern = (gdb_byte *) malloc (packet_len);
1141 if (pattern == NULL)
1142 {
1143 error ("Unable to allocate memory to perform the search");
1144 strcpy (own_buf, "E00");
1145 return;
1146 }
1147 if (decode_search_memory_packet (own_buf + cmd_name_len,
1148 packet_len - cmd_name_len,
1149 &start_addr, &search_space_len,
1150 pattern, &pattern_len) < 0)
1151 {
1152 free (pattern);
1153 error ("Error in parsing qSearch:memory packet");
1154 strcpy (own_buf, "E00");
1155 return;
1156 }
1157
1158 search_buf_size = chunk_size + pattern_len - 1;
1159
1160 /* No point in trying to allocate a buffer larger than the search space. */
1161 if (search_space_len < search_buf_size)
1162 search_buf_size = search_space_len;
1163
1164 search_buf = (gdb_byte *) malloc (search_buf_size);
1165 if (search_buf == NULL)
1166 {
1167 free (pattern);
1168 error ("Unable to allocate memory to perform the search");
1169 strcpy (own_buf, "E00");
1170 return;
1171 }
1172
1173 found = handle_search_memory_1 (start_addr, search_space_len,
1174 pattern, pattern_len,
1175 search_buf, chunk_size, search_buf_size,
1176 &found_addr);
1177
1178 if (found > 0)
1179 sprintf (own_buf, "1,%lx", (long) found_addr);
1180 else if (found == 0)
1181 strcpy (own_buf, "0");
1182 else
1183 strcpy (own_buf, "E00");
1184
1185 free (search_buf);
1186 free (pattern);
1187 }
1188
1189 /* Handle the "D" packet. */
1190
1191 static void
1192 handle_detach (char *own_buf)
1193 {
1194 require_running_or_return (own_buf);
1195
1196 int pid;
1197
1198 if (multi_process)
1199 {
1200 /* skip 'D;' */
1201 pid = strtol (&own_buf[2], NULL, 16);
1202 }
1203 else
1204 pid = ptid_get_pid (current_ptid);
1205
1206 if ((tracing && disconnected_tracing) || any_persistent_commands ())
1207 {
1208 struct process_info *process = find_process_pid (pid);
1209
1210 if (process == NULL)
1211 {
1212 write_enn (own_buf);
1213 return;
1214 }
1215
1216 if (tracing && disconnected_tracing)
1217 fprintf (stderr,
1218 "Disconnected tracing in effect, "
1219 "leaving gdbserver attached to the process\n");
1220
1221 if (any_persistent_commands ())
1222 fprintf (stderr,
1223 "Persistent commands are present, "
1224 "leaving gdbserver attached to the process\n");
1225
1226 /* Make sure we're in non-stop/async mode, so we we can both
1227 wait for an async socket accept, and handle async target
1228 events simultaneously. There's also no point either in
1229 having the target stop all threads, when we're going to
1230 pass signals down without informing GDB. */
1231 if (!non_stop)
1232 {
1233 if (debug_threads)
1234 debug_printf ("Forcing non-stop mode\n");
1235
1236 non_stop = 1;
1237 start_non_stop (1);
1238 }
1239
1240 process->gdb_detached = 1;
1241
1242 /* Detaching implicitly resumes all threads. */
1243 target_continue_no_signal (minus_one_ptid);
1244
1245 write_ok (own_buf);
1246 return;
1247 }
1248
1249 fprintf (stderr, "Detaching from process %d\n", pid);
1250 stop_tracing ();
1251 if (detach_inferior (pid) != 0)
1252 write_enn (own_buf);
1253 else
1254 {
1255 discard_queued_stop_replies (pid_to_ptid (pid));
1256 write_ok (own_buf);
1257
1258 if (extended_protocol || target_running ())
1259 {
1260 /* There is still at least one inferior remaining or
1261 we are in extended mode, so don't terminate gdbserver,
1262 and instead treat this like a normal program exit. */
1263 last_status.kind = TARGET_WAITKIND_EXITED;
1264 last_status.value.integer = 0;
1265 last_ptid = pid_to_ptid (pid);
1266
1267 current_thread = NULL;
1268 }
1269 else
1270 {
1271 putpkt (own_buf);
1272 remote_close ();
1273
1274 /* If we are attached, then we can exit. Otherwise, we
1275 need to hang around doing nothing, until the child is
1276 gone. */
1277 join_inferior (pid);
1278 exit (0);
1279 }
1280 }
1281 }
1282
1283 /* Parse options to --debug-format= and "monitor set debug-format".
1284 ARG is the text after "--debug-format=" or "monitor set debug-format".
1285 IS_MONITOR is non-zero if we're invoked via "monitor set debug-format".
1286 This triggers calls to monitor_output.
1287 The result is NULL if all options were parsed ok, otherwise an error
1288 message which the caller must free.
1289
1290 N.B. These commands affect all debug format settings, they are not
1291 cumulative. If a format is not specified, it is turned off.
1292 However, we don't go to extra trouble with things like
1293 "monitor set debug-format all,none,timestamp".
1294 Instead we just parse them one at a time, in order.
1295
1296 The syntax for "monitor set debug" we support here is not identical
1297 to gdb's "set debug foo on|off" because we also use this function to
1298 parse "--debug-format=foo,bar". */
1299
1300 static char *
1301 parse_debug_format_options (const char *arg, int is_monitor)
1302 {
1303 VEC (char_ptr) *options;
1304 int ix;
1305 char *option;
1306
1307 /* First turn all debug format options off. */
1308 debug_timestamp = 0;
1309
1310 /* First remove leading spaces, for "monitor set debug-format". */
1311 while (isspace (*arg))
1312 ++arg;
1313
1314 options = delim_string_to_char_ptr_vec (arg, ',');
1315
1316 for (ix = 0; VEC_iterate (char_ptr, options, ix, option); ++ix)
1317 {
1318 if (strcmp (option, "all") == 0)
1319 {
1320 debug_timestamp = 1;
1321 if (is_monitor)
1322 monitor_output ("All extra debug format options enabled.\n");
1323 }
1324 else if (strcmp (option, "none") == 0)
1325 {
1326 debug_timestamp = 0;
1327 if (is_monitor)
1328 monitor_output ("All extra debug format options disabled.\n");
1329 }
1330 else if (strcmp (option, "timestamp") == 0)
1331 {
1332 debug_timestamp = 1;
1333 if (is_monitor)
1334 monitor_output ("Timestamps will be added to debug output.\n");
1335 }
1336 else if (*option == '\0')
1337 {
1338 /* An empty option, e.g., "--debug-format=foo,,bar", is ignored. */
1339 continue;
1340 }
1341 else
1342 {
1343 char *msg = xstrprintf ("Unknown debug-format argument: \"%s\"\n",
1344 option);
1345
1346 free_char_ptr_vec (options);
1347 return msg;
1348 }
1349 }
1350
1351 free_char_ptr_vec (options);
1352 return NULL;
1353 }
1354
1355 /* Handle monitor commands not handled by target-specific handlers. */
1356
1357 static void
1358 handle_monitor_command (char *mon, char *own_buf)
1359 {
1360 if (strcmp (mon, "set debug 1") == 0)
1361 {
1362 debug_threads = 1;
1363 monitor_output ("Debug output enabled.\n");
1364 }
1365 else if (strcmp (mon, "set debug 0") == 0)
1366 {
1367 debug_threads = 0;
1368 monitor_output ("Debug output disabled.\n");
1369 }
1370 else if (strcmp (mon, "set debug-hw-points 1") == 0)
1371 {
1372 show_debug_regs = 1;
1373 monitor_output ("H/W point debugging output enabled.\n");
1374 }
1375 else if (strcmp (mon, "set debug-hw-points 0") == 0)
1376 {
1377 show_debug_regs = 0;
1378 monitor_output ("H/W point debugging output disabled.\n");
1379 }
1380 else if (strcmp (mon, "set remote-debug 1") == 0)
1381 {
1382 remote_debug = 1;
1383 monitor_output ("Protocol debug output enabled.\n");
1384 }
1385 else if (strcmp (mon, "set remote-debug 0") == 0)
1386 {
1387 remote_debug = 0;
1388 monitor_output ("Protocol debug output disabled.\n");
1389 }
1390 else if (startswith (mon, "set debug-format "))
1391 {
1392 char *error_msg
1393 = parse_debug_format_options (mon + sizeof ("set debug-format ") - 1,
1394 1);
1395
1396 if (error_msg != NULL)
1397 {
1398 monitor_output (error_msg);
1399 monitor_show_help ();
1400 write_enn (own_buf);
1401 xfree (error_msg);
1402 }
1403 }
1404 else if (strcmp (mon, "help") == 0)
1405 monitor_show_help ();
1406 else if (strcmp (mon, "exit") == 0)
1407 exit_requested = 1;
1408 else
1409 {
1410 monitor_output ("Unknown monitor command.\n\n");
1411 monitor_show_help ();
1412 write_enn (own_buf);
1413 }
1414 }
1415
1416 /* Associates a callback with each supported qXfer'able object. */
1417
1418 struct qxfer
1419 {
1420 /* The object this handler handles. */
1421 const char *object;
1422
1423 /* Request that the target transfer up to LEN 8-bit bytes of the
1424 target's OBJECT. The OFFSET, for a seekable object, specifies
1425 the starting point. The ANNEX can be used to provide additional
1426 data-specific information to the target.
1427
1428 Return the number of bytes actually transfered, zero when no
1429 further transfer is possible, -1 on error, -2 when the transfer
1430 is not supported, and -3 on a verbose error message that should
1431 be preserved. Return of a positive value smaller than LEN does
1432 not indicate the end of the object, only the end of the transfer.
1433
1434 One, and only one, of readbuf or writebuf must be non-NULL. */
1435 int (*xfer) (const char *annex,
1436 gdb_byte *readbuf, const gdb_byte *writebuf,
1437 ULONGEST offset, LONGEST len);
1438 };
1439
1440 /* Handle qXfer:auxv:read. */
1441
1442 static int
1443 handle_qxfer_auxv (const char *annex,
1444 gdb_byte *readbuf, const gdb_byte *writebuf,
1445 ULONGEST offset, LONGEST len)
1446 {
1447 if (the_target->read_auxv == NULL || writebuf != NULL)
1448 return -2;
1449
1450 if (annex[0] != '\0' || current_thread == NULL)
1451 return -1;
1452
1453 return (*the_target->read_auxv) (offset, readbuf, len);
1454 }
1455
1456 /* Handle qXfer:exec-file:read. */
1457
1458 static int
1459 handle_qxfer_exec_file (const char *annex,
1460 gdb_byte *readbuf, const gdb_byte *writebuf,
1461 ULONGEST offset, LONGEST len)
1462 {
1463 char *file;
1464 ULONGEST pid;
1465 int total_len;
1466
1467 if (the_target->pid_to_exec_file == NULL || writebuf != NULL)
1468 return -2;
1469
1470 if (annex[0] == '\0')
1471 {
1472 if (current_thread == NULL)
1473 return -1;
1474
1475 pid = pid_of (current_thread);
1476 }
1477 else
1478 {
1479 annex = unpack_varlen_hex (annex, &pid);
1480 if (annex[0] != '\0')
1481 return -1;
1482 }
1483
1484 if (pid <= 0)
1485 return -1;
1486
1487 file = (*the_target->pid_to_exec_file) (pid);
1488 if (file == NULL)
1489 return -1;
1490
1491 total_len = strlen (file);
1492
1493 if (offset > total_len)
1494 return -1;
1495
1496 if (offset + len > total_len)
1497 len = total_len - offset;
1498
1499 memcpy (readbuf, file + offset, len);
1500 return len;
1501 }
1502
1503 /* Handle qXfer:features:read. */
1504
1505 static int
1506 handle_qxfer_features (const char *annex,
1507 gdb_byte *readbuf, const gdb_byte *writebuf,
1508 ULONGEST offset, LONGEST len)
1509 {
1510 const char *document;
1511 size_t total_len;
1512
1513 if (writebuf != NULL)
1514 return -2;
1515
1516 if (!target_running ())
1517 return -1;
1518
1519 /* Grab the correct annex. */
1520 document = get_features_xml (annex);
1521 if (document == NULL)
1522 return -1;
1523
1524 total_len = strlen (document);
1525
1526 if (offset > total_len)
1527 return -1;
1528
1529 if (offset + len > total_len)
1530 len = total_len - offset;
1531
1532 memcpy (readbuf, document + offset, len);
1533 return len;
1534 }
1535
1536 /* Worker routine for handle_qxfer_libraries.
1537 Emit the XML to describe the library in INF. */
1538
1539 static void
1540 emit_dll_description (struct inferior_list_entry *inf, void *arg)
1541 {
1542 struct dll_info *dll = (struct dll_info *) inf;
1543 std::string *document = (std::string *) arg;
1544 std::string name = xml_escape_text (dll->name);
1545
1546 *document += string_printf
1547 (" <library name=\"%s\"><segment address=\"0x%lx\"/></library>\n",
1548 name.c_str (), (long) dll->base_addr);
1549 }
1550
1551 /* Handle qXfer:libraries:read. */
1552
1553 static int
1554 handle_qxfer_libraries (const char *annex,
1555 gdb_byte *readbuf, const gdb_byte *writebuf,
1556 ULONGEST offset, LONGEST len)
1557 {
1558 if (writebuf != NULL)
1559 return -2;
1560
1561 if (annex[0] != '\0' || current_thread == NULL)
1562 return -1;
1563
1564 std::string document = "<library-list version=\"1.0\">\n";
1565
1566 for_each_inferior_with_data (&all_dlls, emit_dll_description, &document);
1567
1568 document += "</library-list>\n";
1569
1570 if (offset > document.length ())
1571 return -1;
1572
1573 if (offset + len > document.length ())
1574 len = document.length () - offset;
1575
1576 memcpy (readbuf, &document[offset], len);
1577
1578 return len;
1579 }
1580
1581 /* Handle qXfer:libraries-svr4:read. */
1582
1583 static int
1584 handle_qxfer_libraries_svr4 (const char *annex,
1585 gdb_byte *readbuf, const gdb_byte *writebuf,
1586 ULONGEST offset, LONGEST len)
1587 {
1588 if (writebuf != NULL)
1589 return -2;
1590
1591 if (current_thread == NULL || the_target->qxfer_libraries_svr4 == NULL)
1592 return -1;
1593
1594 return the_target->qxfer_libraries_svr4 (annex, readbuf, writebuf, offset, len);
1595 }
1596
1597 /* Handle qXfer:osadata:read. */
1598
1599 static int
1600 handle_qxfer_osdata (const char *annex,
1601 gdb_byte *readbuf, const gdb_byte *writebuf,
1602 ULONGEST offset, LONGEST len)
1603 {
1604 if (the_target->qxfer_osdata == NULL || writebuf != NULL)
1605 return -2;
1606
1607 return (*the_target->qxfer_osdata) (annex, readbuf, NULL, offset, len);
1608 }
1609
1610 /* Handle qXfer:siginfo:read and qXfer:siginfo:write. */
1611
1612 static int
1613 handle_qxfer_siginfo (const char *annex,
1614 gdb_byte *readbuf, const gdb_byte *writebuf,
1615 ULONGEST offset, LONGEST len)
1616 {
1617 if (the_target->qxfer_siginfo == NULL)
1618 return -2;
1619
1620 if (annex[0] != '\0' || current_thread == NULL)
1621 return -1;
1622
1623 return (*the_target->qxfer_siginfo) (annex, readbuf, writebuf, offset, len);
1624 }
1625
1626 /* Handle qXfer:spu:read and qXfer:spu:write. */
1627
1628 static int
1629 handle_qxfer_spu (const char *annex,
1630 gdb_byte *readbuf, const gdb_byte *writebuf,
1631 ULONGEST offset, LONGEST len)
1632 {
1633 if (the_target->qxfer_spu == NULL)
1634 return -2;
1635
1636 if (current_thread == NULL)
1637 return -1;
1638
1639 return (*the_target->qxfer_spu) (annex, readbuf, writebuf, offset, len);
1640 }
1641
1642 /* Handle qXfer:statictrace:read. */
1643
1644 static int
1645 handle_qxfer_statictrace (const char *annex,
1646 gdb_byte *readbuf, const gdb_byte *writebuf,
1647 ULONGEST offset, LONGEST len)
1648 {
1649 ULONGEST nbytes;
1650
1651 if (writebuf != NULL)
1652 return -2;
1653
1654 if (annex[0] != '\0' || current_thread == NULL || current_traceframe == -1)
1655 return -1;
1656
1657 if (traceframe_read_sdata (current_traceframe, offset,
1658 readbuf, len, &nbytes))
1659 return -1;
1660 return nbytes;
1661 }
1662
1663 /* Helper for handle_qxfer_threads_proper.
1664 Emit the XML to describe the thread of INF. */
1665
1666 static void
1667 handle_qxfer_threads_worker (struct inferior_list_entry *inf, void *arg)
1668 {
1669 struct thread_info *thread = (struct thread_info *) inf;
1670 struct buffer *buffer = (struct buffer *) arg;
1671 ptid_t ptid = ptid_of (thread);
1672 char ptid_s[100];
1673 int core = target_core_of_thread (ptid);
1674 char core_s[21];
1675 const char *name = target_thread_name (ptid);
1676 int handle_len;
1677 gdb_byte *handle;
1678 bool handle_status = target_thread_handle (ptid, &handle, &handle_len);
1679
1680 write_ptid (ptid_s, ptid);
1681
1682 buffer_xml_printf (buffer, "<thread id=\"%s\"", ptid_s);
1683
1684 if (core != -1)
1685 {
1686 sprintf (core_s, "%d", core);
1687 buffer_xml_printf (buffer, " core=\"%s\"", core_s);
1688 }
1689
1690 if (name != NULL)
1691 buffer_xml_printf (buffer, " name=\"%s\"", name);
1692
1693 if (handle_status)
1694 {
1695 char *handle_s = (char *) alloca (handle_len * 2 + 1);
1696 bin2hex (handle, handle_s, handle_len);
1697 buffer_xml_printf (buffer, " handle=\"%s\"", handle_s);
1698 }
1699
1700 buffer_xml_printf (buffer, "/>\n");
1701 }
1702
1703 /* Helper for handle_qxfer_threads. */
1704
1705 static void
1706 handle_qxfer_threads_proper (struct buffer *buffer)
1707 {
1708 buffer_grow_str (buffer, "<threads>\n");
1709
1710 for_each_inferior_with_data (&all_threads, handle_qxfer_threads_worker,
1711 buffer);
1712
1713 buffer_grow_str0 (buffer, "</threads>\n");
1714 }
1715
1716 /* Handle qXfer:threads:read. */
1717
1718 static int
1719 handle_qxfer_threads (const char *annex,
1720 gdb_byte *readbuf, const gdb_byte *writebuf,
1721 ULONGEST offset, LONGEST len)
1722 {
1723 static char *result = 0;
1724 static unsigned int result_length = 0;
1725
1726 if (writebuf != NULL)
1727 return -2;
1728
1729 if (annex[0] != '\0')
1730 return -1;
1731
1732 if (offset == 0)
1733 {
1734 struct buffer buffer;
1735 /* When asked for data at offset 0, generate everything and store into
1736 'result'. Successive reads will be served off 'result'. */
1737 if (result)
1738 free (result);
1739
1740 buffer_init (&buffer);
1741
1742 handle_qxfer_threads_proper (&buffer);
1743
1744 result = buffer_finish (&buffer);
1745 result_length = strlen (result);
1746 buffer_free (&buffer);
1747 }
1748
1749 if (offset >= result_length)
1750 {
1751 /* We're out of data. */
1752 free (result);
1753 result = NULL;
1754 result_length = 0;
1755 return 0;
1756 }
1757
1758 if (len > result_length - offset)
1759 len = result_length - offset;
1760
1761 memcpy (readbuf, result + offset, len);
1762
1763 return len;
1764 }
1765
1766 /* Handle qXfer:traceframe-info:read. */
1767
1768 static int
1769 handle_qxfer_traceframe_info (const char *annex,
1770 gdb_byte *readbuf, const gdb_byte *writebuf,
1771 ULONGEST offset, LONGEST len)
1772 {
1773 static char *result = 0;
1774 static unsigned int result_length = 0;
1775
1776 if (writebuf != NULL)
1777 return -2;
1778
1779 if (!target_running () || annex[0] != '\0' || current_traceframe == -1)
1780 return -1;
1781
1782 if (offset == 0)
1783 {
1784 struct buffer buffer;
1785
1786 /* When asked for data at offset 0, generate everything and
1787 store into 'result'. Successive reads will be served off
1788 'result'. */
1789 free (result);
1790
1791 buffer_init (&buffer);
1792
1793 traceframe_read_info (current_traceframe, &buffer);
1794
1795 result = buffer_finish (&buffer);
1796 result_length = strlen (result);
1797 buffer_free (&buffer);
1798 }
1799
1800 if (offset >= result_length)
1801 {
1802 /* We're out of data. */
1803 free (result);
1804 result = NULL;
1805 result_length = 0;
1806 return 0;
1807 }
1808
1809 if (len > result_length - offset)
1810 len = result_length - offset;
1811
1812 memcpy (readbuf, result + offset, len);
1813 return len;
1814 }
1815
1816 /* Handle qXfer:fdpic:read. */
1817
1818 static int
1819 handle_qxfer_fdpic (const char *annex, gdb_byte *readbuf,
1820 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1821 {
1822 if (the_target->read_loadmap == NULL)
1823 return -2;
1824
1825 if (current_thread == NULL)
1826 return -1;
1827
1828 return (*the_target->read_loadmap) (annex, offset, readbuf, len);
1829 }
1830
1831 /* Handle qXfer:btrace:read. */
1832
1833 static int
1834 handle_qxfer_btrace (const char *annex,
1835 gdb_byte *readbuf, const gdb_byte *writebuf,
1836 ULONGEST offset, LONGEST len)
1837 {
1838 static struct buffer cache;
1839 struct thread_info *thread;
1840 enum btrace_read_type type;
1841 int result;
1842
1843 if (the_target->read_btrace == NULL || writebuf != NULL)
1844 return -2;
1845
1846 if (ptid_equal (general_thread, null_ptid)
1847 || ptid_equal (general_thread, minus_one_ptid))
1848 {
1849 strcpy (own_buf, "E.Must select a single thread.");
1850 return -3;
1851 }
1852
1853 thread = find_thread_ptid (general_thread);
1854 if (thread == NULL)
1855 {
1856 strcpy (own_buf, "E.No such thread.");
1857 return -3;
1858 }
1859
1860 if (thread->btrace == NULL)
1861 {
1862 strcpy (own_buf, "E.Btrace not enabled.");
1863 return -3;
1864 }
1865
1866 if (strcmp (annex, "all") == 0)
1867 type = BTRACE_READ_ALL;
1868 else if (strcmp (annex, "new") == 0)
1869 type = BTRACE_READ_NEW;
1870 else if (strcmp (annex, "delta") == 0)
1871 type = BTRACE_READ_DELTA;
1872 else
1873 {
1874 strcpy (own_buf, "E.Bad annex.");
1875 return -3;
1876 }
1877
1878 if (offset == 0)
1879 {
1880 buffer_free (&cache);
1881
1882 result = target_read_btrace (thread->btrace, &cache, type);
1883 if (result != 0)
1884 {
1885 memcpy (own_buf, cache.buffer, cache.used_size);
1886 return -3;
1887 }
1888 }
1889 else if (offset > cache.used_size)
1890 {
1891 buffer_free (&cache);
1892 return -3;
1893 }
1894
1895 if (len > cache.used_size - offset)
1896 len = cache.used_size - offset;
1897
1898 memcpy (readbuf, cache.buffer + offset, len);
1899
1900 return len;
1901 }
1902
1903 /* Handle qXfer:btrace-conf:read. */
1904
1905 static int
1906 handle_qxfer_btrace_conf (const char *annex,
1907 gdb_byte *readbuf, const gdb_byte *writebuf,
1908 ULONGEST offset, LONGEST len)
1909 {
1910 static struct buffer cache;
1911 struct thread_info *thread;
1912 int result;
1913
1914 if (the_target->read_btrace_conf == NULL || writebuf != NULL)
1915 return -2;
1916
1917 if (annex[0] != '\0')
1918 return -1;
1919
1920 if (ptid_equal (general_thread, null_ptid)
1921 || ptid_equal (general_thread, minus_one_ptid))
1922 {
1923 strcpy (own_buf, "E.Must select a single thread.");
1924 return -3;
1925 }
1926
1927 thread = find_thread_ptid (general_thread);
1928 if (thread == NULL)
1929 {
1930 strcpy (own_buf, "E.No such thread.");
1931 return -3;
1932 }
1933
1934 if (thread->btrace == NULL)
1935 {
1936 strcpy (own_buf, "E.Btrace not enabled.");
1937 return -3;
1938 }
1939
1940 if (offset == 0)
1941 {
1942 buffer_free (&cache);
1943
1944 result = target_read_btrace_conf (thread->btrace, &cache);
1945 if (result != 0)
1946 {
1947 memcpy (own_buf, cache.buffer, cache.used_size);
1948 return -3;
1949 }
1950 }
1951 else if (offset > cache.used_size)
1952 {
1953 buffer_free (&cache);
1954 return -3;
1955 }
1956
1957 if (len > cache.used_size - offset)
1958 len = cache.used_size - offset;
1959
1960 memcpy (readbuf, cache.buffer + offset, len);
1961
1962 return len;
1963 }
1964
1965 static const struct qxfer qxfer_packets[] =
1966 {
1967 { "auxv", handle_qxfer_auxv },
1968 { "btrace", handle_qxfer_btrace },
1969 { "btrace-conf", handle_qxfer_btrace_conf },
1970 { "exec-file", handle_qxfer_exec_file},
1971 { "fdpic", handle_qxfer_fdpic},
1972 { "features", handle_qxfer_features },
1973 { "libraries", handle_qxfer_libraries },
1974 { "libraries-svr4", handle_qxfer_libraries_svr4 },
1975 { "osdata", handle_qxfer_osdata },
1976 { "siginfo", handle_qxfer_siginfo },
1977 { "spu", handle_qxfer_spu },
1978 { "statictrace", handle_qxfer_statictrace },
1979 { "threads", handle_qxfer_threads },
1980 { "traceframe-info", handle_qxfer_traceframe_info },
1981 };
1982
1983 static int
1984 handle_qxfer (char *own_buf, int packet_len, int *new_packet_len_p)
1985 {
1986 int i;
1987 char *object;
1988 char *rw;
1989 char *annex;
1990 char *offset;
1991
1992 if (!startswith (own_buf, "qXfer:"))
1993 return 0;
1994
1995 /* Grab the object, r/w and annex. */
1996 if (decode_xfer (own_buf + 6, &object, &rw, &annex, &offset) < 0)
1997 {
1998 write_enn (own_buf);
1999 return 1;
2000 }
2001
2002 for (i = 0;
2003 i < sizeof (qxfer_packets) / sizeof (qxfer_packets[0]);
2004 i++)
2005 {
2006 const struct qxfer *q = &qxfer_packets[i];
2007
2008 if (strcmp (object, q->object) == 0)
2009 {
2010 if (strcmp (rw, "read") == 0)
2011 {
2012 unsigned char *data;
2013 int n;
2014 CORE_ADDR ofs;
2015 unsigned int len;
2016
2017 /* Grab the offset and length. */
2018 if (decode_xfer_read (offset, &ofs, &len) < 0)
2019 {
2020 write_enn (own_buf);
2021 return 1;
2022 }
2023
2024 /* Read one extra byte, as an indicator of whether there is
2025 more. */
2026 if (len > PBUFSIZ - 2)
2027 len = PBUFSIZ - 2;
2028 data = (unsigned char *) malloc (len + 1);
2029 if (data == NULL)
2030 {
2031 write_enn (own_buf);
2032 return 1;
2033 }
2034 n = (*q->xfer) (annex, data, NULL, ofs, len + 1);
2035 if (n == -2)
2036 {
2037 free (data);
2038 return 0;
2039 }
2040 else if (n == -3)
2041 {
2042 /* Preserve error message. */
2043 }
2044 else if (n < 0)
2045 write_enn (own_buf);
2046 else if (n > len)
2047 *new_packet_len_p = write_qxfer_response (own_buf, data, len, 1);
2048 else
2049 *new_packet_len_p = write_qxfer_response (own_buf, data, n, 0);
2050
2051 free (data);
2052 return 1;
2053 }
2054 else if (strcmp (rw, "write") == 0)
2055 {
2056 int n;
2057 unsigned int len;
2058 CORE_ADDR ofs;
2059 unsigned char *data;
2060
2061 strcpy (own_buf, "E00");
2062 data = (unsigned char *) malloc (packet_len - (offset - own_buf));
2063 if (data == NULL)
2064 {
2065 write_enn (own_buf);
2066 return 1;
2067 }
2068 if (decode_xfer_write (offset, packet_len - (offset - own_buf),
2069 &ofs, &len, data) < 0)
2070 {
2071 free (data);
2072 write_enn (own_buf);
2073 return 1;
2074 }
2075
2076 n = (*q->xfer) (annex, NULL, data, ofs, len);
2077 if (n == -2)
2078 {
2079 free (data);
2080 return 0;
2081 }
2082 else if (n == -3)
2083 {
2084 /* Preserve error message. */
2085 }
2086 else if (n < 0)
2087 write_enn (own_buf);
2088 else
2089 sprintf (own_buf, "%x", n);
2090
2091 free (data);
2092 return 1;
2093 }
2094
2095 return 0;
2096 }
2097 }
2098
2099 return 0;
2100 }
2101
2102 /* Compute 32 bit CRC from inferior memory.
2103
2104 On success, return 32 bit CRC.
2105 On failure, return (unsigned long long) -1. */
2106
2107 static unsigned long long
2108 crc32 (CORE_ADDR base, int len, unsigned int crc)
2109 {
2110 while (len--)
2111 {
2112 unsigned char byte = 0;
2113
2114 /* Return failure if memory read fails. */
2115 if (read_inferior_memory (base, &byte, 1) != 0)
2116 return (unsigned long long) -1;
2117
2118 crc = xcrc32 (&byte, 1, crc);
2119 base++;
2120 }
2121 return (unsigned long long) crc;
2122 }
2123
2124 /* Add supported btrace packets to BUF. */
2125
2126 static void
2127 supported_btrace_packets (char *buf)
2128 {
2129 int btrace_supported = 0;
2130
2131 if (target_supports_btrace (BTRACE_FORMAT_BTS))
2132 {
2133 strcat (buf, ";Qbtrace:bts+");
2134 strcat (buf, ";Qbtrace-conf:bts:size+");
2135
2136 btrace_supported = 1;
2137 }
2138
2139 if (target_supports_btrace (BTRACE_FORMAT_PT))
2140 {
2141 strcat (buf, ";Qbtrace:pt+");
2142 strcat (buf, ";Qbtrace-conf:pt:size+");
2143
2144 btrace_supported = 1;
2145 }
2146
2147 if (!btrace_supported)
2148 return;
2149
2150 strcat (buf, ";Qbtrace:off+");
2151 strcat (buf, ";qXfer:btrace:read+");
2152 strcat (buf, ";qXfer:btrace-conf:read+");
2153 }
2154
2155 /* Handle all of the extended 'q' packets. */
2156
2157 static void
2158 handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
2159 {
2160 static struct inferior_list_entry *thread_ptr;
2161
2162 /* Reply the current thread id. */
2163 if (strcmp ("qC", own_buf) == 0 && !disable_packet_qC)
2164 {
2165 ptid_t ptid;
2166 require_running_or_return (own_buf);
2167
2168 if (general_thread != null_ptid && general_thread != minus_one_ptid)
2169 ptid = general_thread;
2170 else
2171 {
2172 thread_ptr = get_first_inferior (&all_threads);
2173 ptid = thread_ptr->id;
2174 }
2175
2176 sprintf (own_buf, "QC");
2177 own_buf += 2;
2178 write_ptid (own_buf, ptid);
2179 return;
2180 }
2181
2182 if (strcmp ("qSymbol::", own_buf) == 0)
2183 {
2184 struct thread_info *save_thread = current_thread;
2185
2186 /* For qSymbol, GDB only changes the current thread if the
2187 previous current thread was of a different process. So if
2188 the previous thread is gone, we need to pick another one of
2189 the same process. This can happen e.g., if we followed an
2190 exec in a non-leader thread. */
2191 if (current_thread == NULL)
2192 {
2193 current_thread
2194 = find_any_thread_of_pid (ptid_get_pid (general_thread));
2195
2196 /* Just in case, if we didn't find a thread, then bail out
2197 instead of crashing. */
2198 if (current_thread == NULL)
2199 {
2200 write_enn (own_buf);
2201 current_thread = save_thread;
2202 return;
2203 }
2204 }
2205
2206 /* GDB is suggesting new symbols have been loaded. This may
2207 mean a new shared library has been detected as loaded, so
2208 take the opportunity to check if breakpoints we think are
2209 inserted, still are. Note that it isn't guaranteed that
2210 we'll see this when a shared library is loaded, and nor will
2211 we see this for unloads (although breakpoints in unloaded
2212 libraries shouldn't trigger), as GDB may not find symbols for
2213 the library at all. We also re-validate breakpoints when we
2214 see a second GDB breakpoint for the same address, and or when
2215 we access breakpoint shadows. */
2216 validate_breakpoints ();
2217
2218 if (target_supports_tracepoints ())
2219 tracepoint_look_up_symbols ();
2220
2221 if (current_thread != NULL && the_target->look_up_symbols != NULL)
2222 (*the_target->look_up_symbols) ();
2223
2224 current_thread = save_thread;
2225
2226 strcpy (own_buf, "OK");
2227 return;
2228 }
2229
2230 if (!disable_packet_qfThreadInfo)
2231 {
2232 if (strcmp ("qfThreadInfo", own_buf) == 0)
2233 {
2234 require_running_or_return (own_buf);
2235 thread_ptr = get_first_inferior (&all_threads);
2236
2237 *own_buf++ = 'm';
2238 write_ptid (own_buf, thread_ptr->id);
2239 thread_ptr = thread_ptr->next;
2240 return;
2241 }
2242
2243 if (strcmp ("qsThreadInfo", own_buf) == 0)
2244 {
2245 require_running_or_return (own_buf);
2246 if (thread_ptr != NULL)
2247 {
2248 *own_buf++ = 'm';
2249 write_ptid (own_buf, thread_ptr->id);
2250 thread_ptr = thread_ptr->next;
2251 return;
2252 }
2253 else
2254 {
2255 sprintf (own_buf, "l");
2256 return;
2257 }
2258 }
2259 }
2260
2261 if (the_target->read_offsets != NULL
2262 && strcmp ("qOffsets", own_buf) == 0)
2263 {
2264 CORE_ADDR text, data;
2265
2266 require_running_or_return (own_buf);
2267 if (the_target->read_offsets (&text, &data))
2268 sprintf (own_buf, "Text=%lX;Data=%lX;Bss=%lX",
2269 (long)text, (long)data, (long)data);
2270 else
2271 write_enn (own_buf);
2272
2273 return;
2274 }
2275
2276 /* Protocol features query. */
2277 if (startswith (own_buf, "qSupported")
2278 && (own_buf[10] == ':' || own_buf[10] == '\0'))
2279 {
2280 char *p = &own_buf[10];
2281 int gdb_supports_qRelocInsn = 0;
2282
2283 /* Process each feature being provided by GDB. The first
2284 feature will follow a ':', and latter features will follow
2285 ';'. */
2286 if (*p == ':')
2287 {
2288 char **qsupported = NULL;
2289 int count = 0;
2290 int unknown = 0;
2291 int i;
2292
2293 /* Two passes, to avoid nested strtok calls in
2294 target_process_qsupported. */
2295 for (p = strtok (p + 1, ";");
2296 p != NULL;
2297 p = strtok (NULL, ";"))
2298 {
2299 count++;
2300 qsupported = XRESIZEVEC (char *, qsupported, count);
2301 qsupported[count - 1] = xstrdup (p);
2302 }
2303
2304 for (i = 0; i < count; i++)
2305 {
2306 p = qsupported[i];
2307 if (strcmp (p, "multiprocess+") == 0)
2308 {
2309 /* GDB supports and wants multi-process support if
2310 possible. */
2311 if (target_supports_multi_process ())
2312 multi_process = 1;
2313 }
2314 else if (strcmp (p, "qRelocInsn+") == 0)
2315 {
2316 /* GDB supports relocate instruction requests. */
2317 gdb_supports_qRelocInsn = 1;
2318 }
2319 else if (strcmp (p, "swbreak+") == 0)
2320 {
2321 /* GDB wants us to report whether a trap is caused
2322 by a software breakpoint and for us to handle PC
2323 adjustment if necessary on this target. */
2324 if (target_supports_stopped_by_sw_breakpoint ())
2325 swbreak_feature = 1;
2326 }
2327 else if (strcmp (p, "hwbreak+") == 0)
2328 {
2329 /* GDB wants us to report whether a trap is caused
2330 by a hardware breakpoint. */
2331 if (target_supports_stopped_by_hw_breakpoint ())
2332 hwbreak_feature = 1;
2333 }
2334 else if (strcmp (p, "fork-events+") == 0)
2335 {
2336 /* GDB supports and wants fork events if possible. */
2337 if (target_supports_fork_events ())
2338 report_fork_events = 1;
2339 }
2340 else if (strcmp (p, "vfork-events+") == 0)
2341 {
2342 /* GDB supports and wants vfork events if possible. */
2343 if (target_supports_vfork_events ())
2344 report_vfork_events = 1;
2345 }
2346 else if (strcmp (p, "exec-events+") == 0)
2347 {
2348 /* GDB supports and wants exec events if possible. */
2349 if (target_supports_exec_events ())
2350 report_exec_events = 1;
2351 }
2352 else if (strcmp (p, "vContSupported+") == 0)
2353 vCont_supported = 1;
2354 else if (strcmp (p, "QThreadEvents+") == 0)
2355 ;
2356 else if (strcmp (p, "no-resumed+") == 0)
2357 {
2358 /* GDB supports and wants TARGET_WAITKIND_NO_RESUMED
2359 events. */
2360 report_no_resumed = 1;
2361 }
2362 else
2363 {
2364 /* Move the unknown features all together. */
2365 qsupported[i] = NULL;
2366 qsupported[unknown] = p;
2367 unknown++;
2368 }
2369 }
2370
2371 /* Give the target backend a chance to process the unknown
2372 features. */
2373 target_process_qsupported (qsupported, unknown);
2374
2375 for (i = 0; i < count; i++)
2376 free (qsupported[i]);
2377 free (qsupported);
2378 }
2379
2380 sprintf (own_buf,
2381 "PacketSize=%x;QPassSignals+;QProgramSignals+;"
2382 "QStartupWithShell+;QEnvironmentHexEncoded+;"
2383 "QEnvironmentReset+;QEnvironmentUnset+;"
2384 "QSetWorkingDir+",
2385 PBUFSIZ - 1);
2386
2387 if (target_supports_catch_syscall ())
2388 strcat (own_buf, ";QCatchSyscalls+");
2389
2390 if (the_target->qxfer_libraries_svr4 != NULL)
2391 strcat (own_buf, ";qXfer:libraries-svr4:read+"
2392 ";augmented-libraries-svr4-read+");
2393 else
2394 {
2395 /* We do not have any hook to indicate whether the non-SVR4 target
2396 backend supports qXfer:libraries:read, so always report it. */
2397 strcat (own_buf, ";qXfer:libraries:read+");
2398 }
2399
2400 if (the_target->read_auxv != NULL)
2401 strcat (own_buf, ";qXfer:auxv:read+");
2402
2403 if (the_target->qxfer_spu != NULL)
2404 strcat (own_buf, ";qXfer:spu:read+;qXfer:spu:write+");
2405
2406 if (the_target->qxfer_siginfo != NULL)
2407 strcat (own_buf, ";qXfer:siginfo:read+;qXfer:siginfo:write+");
2408
2409 if (the_target->read_loadmap != NULL)
2410 strcat (own_buf, ";qXfer:fdpic:read+");
2411
2412 /* We always report qXfer:features:read, as targets may
2413 install XML files on a subsequent call to arch_setup.
2414 If we reported to GDB on startup that we don't support
2415 qXfer:feature:read at all, we will never be re-queried. */
2416 strcat (own_buf, ";qXfer:features:read+");
2417
2418 if (transport_is_reliable)
2419 strcat (own_buf, ";QStartNoAckMode+");
2420
2421 if (the_target->qxfer_osdata != NULL)
2422 strcat (own_buf, ";qXfer:osdata:read+");
2423
2424 if (target_supports_multi_process ())
2425 strcat (own_buf, ";multiprocess+");
2426
2427 if (target_supports_fork_events ())
2428 strcat (own_buf, ";fork-events+");
2429
2430 if (target_supports_vfork_events ())
2431 strcat (own_buf, ";vfork-events+");
2432
2433 if (target_supports_exec_events ())
2434 strcat (own_buf, ";exec-events+");
2435
2436 if (target_supports_non_stop ())
2437 strcat (own_buf, ";QNonStop+");
2438
2439 if (target_supports_disable_randomization ())
2440 strcat (own_buf, ";QDisableRandomization+");
2441
2442 strcat (own_buf, ";qXfer:threads:read+");
2443
2444 if (target_supports_tracepoints ())
2445 {
2446 strcat (own_buf, ";ConditionalTracepoints+");
2447 strcat (own_buf, ";TraceStateVariables+");
2448 strcat (own_buf, ";TracepointSource+");
2449 strcat (own_buf, ";DisconnectedTracing+");
2450 if (gdb_supports_qRelocInsn && target_supports_fast_tracepoints ())
2451 strcat (own_buf, ";FastTracepoints+");
2452 strcat (own_buf, ";StaticTracepoints+");
2453 strcat (own_buf, ";InstallInTrace+");
2454 strcat (own_buf, ";qXfer:statictrace:read+");
2455 strcat (own_buf, ";qXfer:traceframe-info:read+");
2456 strcat (own_buf, ";EnableDisableTracepoints+");
2457 strcat (own_buf, ";QTBuffer:size+");
2458 strcat (own_buf, ";tracenz+");
2459 }
2460
2461 if (target_supports_hardware_single_step ()
2462 || target_supports_software_single_step () )
2463 {
2464 strcat (own_buf, ";ConditionalBreakpoints+");
2465 }
2466 strcat (own_buf, ";BreakpointCommands+");
2467
2468 if (target_supports_agent ())
2469 strcat (own_buf, ";QAgent+");
2470
2471 supported_btrace_packets (own_buf);
2472
2473 if (target_supports_stopped_by_sw_breakpoint ())
2474 strcat (own_buf, ";swbreak+");
2475
2476 if (target_supports_stopped_by_hw_breakpoint ())
2477 strcat (own_buf, ";hwbreak+");
2478
2479 if (the_target->pid_to_exec_file != NULL)
2480 strcat (own_buf, ";qXfer:exec-file:read+");
2481
2482 strcat (own_buf, ";vContSupported+");
2483
2484 strcat (own_buf, ";QThreadEvents+");
2485
2486 strcat (own_buf, ";no-resumed+");
2487
2488 /* Reinitialize components as needed for the new connection. */
2489 hostio_handle_new_gdb_connection ();
2490 target_handle_new_gdb_connection ();
2491
2492 return;
2493 }
2494
2495 /* Thread-local storage support. */
2496 if (the_target->get_tls_address != NULL
2497 && startswith (own_buf, "qGetTLSAddr:"))
2498 {
2499 char *p = own_buf + 12;
2500 CORE_ADDR parts[2], address = 0;
2501 int i, err;
2502 ptid_t ptid = null_ptid;
2503
2504 require_running_or_return (own_buf);
2505
2506 for (i = 0; i < 3; i++)
2507 {
2508 char *p2;
2509 int len;
2510
2511 if (p == NULL)
2512 break;
2513
2514 p2 = strchr (p, ',');
2515 if (p2)
2516 {
2517 len = p2 - p;
2518 p2++;
2519 }
2520 else
2521 {
2522 len = strlen (p);
2523 p2 = NULL;
2524 }
2525
2526 if (i == 0)
2527 ptid = read_ptid (p, NULL);
2528 else
2529 decode_address (&parts[i - 1], p, len);
2530 p = p2;
2531 }
2532
2533 if (p != NULL || i < 3)
2534 err = 1;
2535 else
2536 {
2537 struct thread_info *thread = find_thread_ptid (ptid);
2538
2539 if (thread == NULL)
2540 err = 2;
2541 else
2542 err = the_target->get_tls_address (thread, parts[0], parts[1],
2543 &address);
2544 }
2545
2546 if (err == 0)
2547 {
2548 strcpy (own_buf, paddress(address));
2549 return;
2550 }
2551 else if (err > 0)
2552 {
2553 write_enn (own_buf);
2554 return;
2555 }
2556
2557 /* Otherwise, pretend we do not understand this packet. */
2558 }
2559
2560 /* Windows OS Thread Information Block address support. */
2561 if (the_target->get_tib_address != NULL
2562 && startswith (own_buf, "qGetTIBAddr:"))
2563 {
2564 const char *annex;
2565 int n;
2566 CORE_ADDR tlb;
2567 ptid_t ptid = read_ptid (own_buf + 12, &annex);
2568
2569 n = (*the_target->get_tib_address) (ptid, &tlb);
2570 if (n == 1)
2571 {
2572 strcpy (own_buf, paddress(tlb));
2573 return;
2574 }
2575 else if (n == 0)
2576 {
2577 write_enn (own_buf);
2578 return;
2579 }
2580 return;
2581 }
2582
2583 /* Handle "monitor" commands. */
2584 if (startswith (own_buf, "qRcmd,"))
2585 {
2586 char *mon = (char *) malloc (PBUFSIZ);
2587 int len = strlen (own_buf + 6);
2588
2589 if (mon == NULL)
2590 {
2591 write_enn (own_buf);
2592 return;
2593 }
2594
2595 if ((len % 2) != 0
2596 || hex2bin (own_buf + 6, (gdb_byte *) mon, len / 2) != len / 2)
2597 {
2598 write_enn (own_buf);
2599 free (mon);
2600 return;
2601 }
2602 mon[len / 2] = '\0';
2603
2604 write_ok (own_buf);
2605
2606 if (the_target->handle_monitor_command == NULL
2607 || (*the_target->handle_monitor_command) (mon) == 0)
2608 /* Default processing. */
2609 handle_monitor_command (mon, own_buf);
2610
2611 free (mon);
2612 return;
2613 }
2614
2615 if (startswith (own_buf, "qSearch:memory:"))
2616 {
2617 require_running_or_return (own_buf);
2618 handle_search_memory (own_buf, packet_len);
2619 return;
2620 }
2621
2622 if (strcmp (own_buf, "qAttached") == 0
2623 || startswith (own_buf, "qAttached:"))
2624 {
2625 struct process_info *process;
2626
2627 if (own_buf[sizeof ("qAttached") - 1])
2628 {
2629 int pid = strtoul (own_buf + sizeof ("qAttached:") - 1, NULL, 16);
2630 process = (struct process_info *)
2631 find_inferior_id (&all_processes, pid_to_ptid (pid));
2632 }
2633 else
2634 {
2635 require_running_or_return (own_buf);
2636 process = current_process ();
2637 }
2638
2639 if (process == NULL)
2640 {
2641 write_enn (own_buf);
2642 return;
2643 }
2644
2645 strcpy (own_buf, process->attached ? "1" : "0");
2646 return;
2647 }
2648
2649 if (startswith (own_buf, "qCRC:"))
2650 {
2651 /* CRC check (compare-section). */
2652 const char *comma;
2653 ULONGEST base;
2654 int len;
2655 unsigned long long crc;
2656
2657 require_running_or_return (own_buf);
2658 comma = unpack_varlen_hex (own_buf + 5, &base);
2659 if (*comma++ != ',')
2660 {
2661 write_enn (own_buf);
2662 return;
2663 }
2664 len = strtoul (comma, NULL, 16);
2665 crc = crc32 (base, len, 0xffffffff);
2666 /* Check for memory failure. */
2667 if (crc == (unsigned long long) -1)
2668 {
2669 write_enn (own_buf);
2670 return;
2671 }
2672 sprintf (own_buf, "C%lx", (unsigned long) crc);
2673 return;
2674 }
2675
2676 if (handle_qxfer (own_buf, packet_len, new_packet_len_p))
2677 return;
2678
2679 if (target_supports_tracepoints () && handle_tracepoint_query (own_buf))
2680 return;
2681
2682 /* Otherwise we didn't know what packet it was. Say we didn't
2683 understand it. */
2684 own_buf[0] = 0;
2685 }
2686
2687 static void gdb_wants_all_threads_stopped (void);
2688 static void resume (struct thread_resume *actions, size_t n);
2689
2690 /* The callback that is passed to visit_actioned_threads. */
2691 typedef int (visit_actioned_threads_callback_ftype)
2692 (const struct thread_resume *, struct thread_info *);
2693
2694 /* Struct to pass data to visit_actioned_threads. */
2695
2696 struct visit_actioned_threads_data
2697 {
2698 const struct thread_resume *actions;
2699 size_t num_actions;
2700 visit_actioned_threads_callback_ftype *callback;
2701 };
2702
2703 /* Call CALLBACK for any thread to which ACTIONS applies to. Returns
2704 true if CALLBACK returns true. Returns false if no matching thread
2705 is found or CALLBACK results false.
2706 Note: This function is itself a callback for find_inferior. */
2707
2708 static int
2709 visit_actioned_threads (struct inferior_list_entry *entry, void *datap)
2710 {
2711 struct visit_actioned_threads_data *data
2712 = (struct visit_actioned_threads_data *) datap;
2713 const struct thread_resume *actions = data->actions;
2714 size_t num_actions = data->num_actions;
2715 visit_actioned_threads_callback_ftype *callback = data->callback;
2716 size_t i;
2717
2718 for (i = 0; i < num_actions; i++)
2719 {
2720 const struct thread_resume *action = &actions[i];
2721
2722 if (ptid_equal (action->thread, minus_one_ptid)
2723 || ptid_equal (action->thread, entry->id)
2724 || ((ptid_get_pid (action->thread)
2725 == ptid_get_pid (entry->id))
2726 && ptid_get_lwp (action->thread) == -1))
2727 {
2728 struct thread_info *thread = (struct thread_info *) entry;
2729
2730 if ((*callback) (action, thread))
2731 return 1;
2732 }
2733 }
2734
2735 return 0;
2736 }
2737
2738 /* Callback for visit_actioned_threads. If the thread has a pending
2739 status to report, report it now. */
2740
2741 static int
2742 handle_pending_status (const struct thread_resume *resumption,
2743 struct thread_info *thread)
2744 {
2745 if (thread->status_pending_p)
2746 {
2747 thread->status_pending_p = 0;
2748
2749 last_status = thread->last_status;
2750 last_ptid = thread->entry.id;
2751 prepare_resume_reply (own_buf, last_ptid, &last_status);
2752 return 1;
2753 }
2754 return 0;
2755 }
2756
2757 /* Parse vCont packets. */
2758 static void
2759 handle_v_cont (char *own_buf)
2760 {
2761 const char *p;
2762 int n = 0, i = 0;
2763 struct thread_resume *resume_info;
2764 struct thread_resume default_action { null_ptid };
2765
2766 /* Count the number of semicolons in the packet. There should be one
2767 for every action. */
2768 p = &own_buf[5];
2769 while (p)
2770 {
2771 n++;
2772 p++;
2773 p = strchr (p, ';');
2774 }
2775
2776 resume_info = (struct thread_resume *) malloc (n * sizeof (resume_info[0]));
2777 if (resume_info == NULL)
2778 goto err;
2779
2780 p = &own_buf[5];
2781 while (*p)
2782 {
2783 p++;
2784
2785 memset (&resume_info[i], 0, sizeof resume_info[i]);
2786
2787 if (p[0] == 's' || p[0] == 'S')
2788 resume_info[i].kind = resume_step;
2789 else if (p[0] == 'r')
2790 resume_info[i].kind = resume_step;
2791 else if (p[0] == 'c' || p[0] == 'C')
2792 resume_info[i].kind = resume_continue;
2793 else if (p[0] == 't')
2794 resume_info[i].kind = resume_stop;
2795 else
2796 goto err;
2797
2798 if (p[0] == 'S' || p[0] == 'C')
2799 {
2800 char *q;
2801 int sig = strtol (p + 1, &q, 16);
2802 if (p == q)
2803 goto err;
2804 p = q;
2805
2806 if (!gdb_signal_to_host_p ((enum gdb_signal) sig))
2807 goto err;
2808 resume_info[i].sig = gdb_signal_to_host ((enum gdb_signal) sig);
2809 }
2810 else if (p[0] == 'r')
2811 {
2812 ULONGEST addr;
2813
2814 p = unpack_varlen_hex (p + 1, &addr);
2815 resume_info[i].step_range_start = addr;
2816
2817 if (*p != ',')
2818 goto err;
2819
2820 p = unpack_varlen_hex (p + 1, &addr);
2821 resume_info[i].step_range_end = addr;
2822 }
2823 else
2824 {
2825 p = p + 1;
2826 }
2827
2828 if (p[0] == 0)
2829 {
2830 resume_info[i].thread = minus_one_ptid;
2831 default_action = resume_info[i];
2832
2833 /* Note: we don't increment i here, we'll overwrite this entry
2834 the next time through. */
2835 }
2836 else if (p[0] == ':')
2837 {
2838 const char *q;
2839 ptid_t ptid = read_ptid (p + 1, &q);
2840
2841 if (p == q)
2842 goto err;
2843 p = q;
2844 if (p[0] != ';' && p[0] != 0)
2845 goto err;
2846
2847 resume_info[i].thread = ptid;
2848
2849 i++;
2850 }
2851 }
2852
2853 if (i < n)
2854 resume_info[i] = default_action;
2855
2856 resume (resume_info, n);
2857 free (resume_info);
2858 return;
2859
2860 err:
2861 write_enn (own_buf);
2862 free (resume_info);
2863 return;
2864 }
2865
2866 /* Resume target with ACTIONS, an array of NUM_ACTIONS elements. */
2867
2868 static void
2869 resume (struct thread_resume *actions, size_t num_actions)
2870 {
2871 if (!non_stop)
2872 {
2873 /* Check if among the threads that GDB wants actioned, there's
2874 one with a pending status to report. If so, skip actually
2875 resuming/stopping and report the pending event
2876 immediately. */
2877 struct visit_actioned_threads_data data;
2878
2879 data.actions = actions;
2880 data.num_actions = num_actions;
2881 data.callback = handle_pending_status;
2882 if (find_inferior (&all_threads, visit_actioned_threads, &data) != NULL)
2883 return;
2884
2885 enable_async_io ();
2886 }
2887
2888 (*the_target->resume) (actions, num_actions);
2889
2890 if (non_stop)
2891 write_ok (own_buf);
2892 else
2893 {
2894 last_ptid = mywait (minus_one_ptid, &last_status, 0, 1);
2895
2896 if (last_status.kind == TARGET_WAITKIND_NO_RESUMED
2897 && !report_no_resumed)
2898 {
2899 /* The client does not support this stop reply. At least
2900 return error. */
2901 sprintf (own_buf, "E.No unwaited-for children left.");
2902 disable_async_io ();
2903 return;
2904 }
2905
2906 if (last_status.kind != TARGET_WAITKIND_EXITED
2907 && last_status.kind != TARGET_WAITKIND_SIGNALLED
2908 && last_status.kind != TARGET_WAITKIND_NO_RESUMED)
2909 current_thread->last_status = last_status;
2910
2911 /* From the client's perspective, all-stop mode always stops all
2912 threads implicitly (and the target backend has already done
2913 so by now). Tag all threads as "want-stopped", so we don't
2914 resume them implicitly without the client telling us to. */
2915 gdb_wants_all_threads_stopped ();
2916 prepare_resume_reply (own_buf, last_ptid, &last_status);
2917 disable_async_io ();
2918
2919 if (last_status.kind == TARGET_WAITKIND_EXITED
2920 || last_status.kind == TARGET_WAITKIND_SIGNALLED)
2921 target_mourn_inferior (last_ptid);
2922 }
2923 }
2924
2925 /* Attach to a new program. Return 1 if successful, 0 if failure. */
2926 static int
2927 handle_v_attach (char *own_buf)
2928 {
2929 int pid;
2930
2931 pid = strtol (own_buf + 8, NULL, 16);
2932 if (pid != 0 && attach_inferior (pid) == 0)
2933 {
2934 /* Don't report shared library events after attaching, even if
2935 some libraries are preloaded. GDB will always poll the
2936 library list. Avoids the "stopped by shared library event"
2937 notice on the GDB side. */
2938 dlls_changed = 0;
2939
2940 if (non_stop)
2941 {
2942 /* In non-stop, we don't send a resume reply. Stop events
2943 will follow up using the normal notification
2944 mechanism. */
2945 write_ok (own_buf);
2946 }
2947 else
2948 prepare_resume_reply (own_buf, last_ptid, &last_status);
2949
2950 return 1;
2951 }
2952 else
2953 {
2954 write_enn (own_buf);
2955 return 0;
2956 }
2957 }
2958
2959 /* Run a new program. Return 1 if successful, 0 if failure. */
2960 static int
2961 handle_v_run (char *own_buf)
2962 {
2963 char *p, *next_p;
2964 std::vector<char *> new_argv;
2965 char *new_program_name = NULL;
2966 int i, new_argc;
2967
2968 new_argc = 0;
2969 for (p = own_buf + strlen ("vRun;"); p && *p; p = strchr (p, ';'))
2970 {
2971 p++;
2972 new_argc++;
2973 }
2974
2975 for (i = 0, p = own_buf + strlen ("vRun;"); *p; p = next_p, ++i)
2976 {
2977 next_p = strchr (p, ';');
2978 if (next_p == NULL)
2979 next_p = p + strlen (p);
2980
2981 if (i == 0 && p == next_p)
2982 {
2983 /* No program specified. */
2984 new_program_name = NULL;
2985 }
2986 else if (p == next_p)
2987 {
2988 /* Empty argument. */
2989 new_argv.push_back (xstrdup ("''"));
2990 }
2991 else
2992 {
2993 size_t len = (next_p - p) / 2;
2994 /* ARG is the unquoted argument received via the RSP. */
2995 char *arg = (char *) xmalloc (len + 1);
2996 /* FULL_ARGS will contain the quoted version of ARG. */
2997 char *full_arg = (char *) xmalloc ((len + 1) * 2);
2998 /* These are pointers used to navigate the strings above. */
2999 char *tmp_arg = arg;
3000 char *tmp_full_arg = full_arg;
3001 int need_quote = 0;
3002
3003 hex2bin (p, (gdb_byte *) arg, len);
3004 arg[len] = '\0';
3005
3006 while (*tmp_arg != '\0')
3007 {
3008 switch (*tmp_arg)
3009 {
3010 case '\n':
3011 /* Quote \n. */
3012 *tmp_full_arg = '\'';
3013 ++tmp_full_arg;
3014 need_quote = 1;
3015 break;
3016
3017 case '\'':
3018 /* Quote single quote. */
3019 *tmp_full_arg = '\\';
3020 ++tmp_full_arg;
3021 break;
3022
3023 default:
3024 break;
3025 }
3026
3027 *tmp_full_arg = *tmp_arg;
3028 ++tmp_full_arg;
3029 ++tmp_arg;
3030 }
3031
3032 if (need_quote)
3033 *tmp_full_arg++ = '\'';
3034
3035 /* Finish FULL_ARG and push it into the vector containing
3036 the argv. */
3037 *tmp_full_arg = '\0';
3038 if (i == 0)
3039 new_program_name = full_arg;
3040 else
3041 new_argv.push_back (full_arg);
3042 xfree (arg);
3043 }
3044 if (*next_p)
3045 next_p++;
3046 }
3047 new_argv.push_back (NULL);
3048
3049 if (new_program_name == NULL)
3050 {
3051 /* GDB didn't specify a program to run. Use the program from the
3052 last run with the new argument list. */
3053 if (program_name == NULL)
3054 {
3055 write_enn (own_buf);
3056 free_vector_argv (new_argv);
3057 return 0;
3058 }
3059 }
3060 else
3061 {
3062 xfree (program_name);
3063 program_name = new_program_name;
3064 }
3065
3066 /* Free the old argv and install the new one. */
3067 free_vector_argv (program_args);
3068 program_args = new_argv;
3069
3070 create_inferior (program_name, program_args);
3071
3072 if (last_status.kind == TARGET_WAITKIND_STOPPED)
3073 {
3074 prepare_resume_reply (own_buf, last_ptid, &last_status);
3075
3076 /* In non-stop, sending a resume reply doesn't set the general
3077 thread, but GDB assumes a vRun sets it (this is so GDB can
3078 query which is the main thread of the new inferior. */
3079 if (non_stop)
3080 general_thread = last_ptid;
3081
3082 return 1;
3083 }
3084 else
3085 {
3086 write_enn (own_buf);
3087 return 0;
3088 }
3089 }
3090
3091 /* Kill process. Return 1 if successful, 0 if failure. */
3092 static int
3093 handle_v_kill (char *own_buf)
3094 {
3095 int pid;
3096 char *p = &own_buf[6];
3097 if (multi_process)
3098 pid = strtol (p, NULL, 16);
3099 else
3100 pid = signal_pid;
3101 if (pid != 0 && kill_inferior (pid) == 0)
3102 {
3103 last_status.kind = TARGET_WAITKIND_SIGNALLED;
3104 last_status.value.sig = GDB_SIGNAL_KILL;
3105 last_ptid = pid_to_ptid (pid);
3106 discard_queued_stop_replies (last_ptid);
3107 write_ok (own_buf);
3108 return 1;
3109 }
3110 else
3111 {
3112 write_enn (own_buf);
3113 return 0;
3114 }
3115 }
3116
3117 /* Handle all of the extended 'v' packets. */
3118 void
3119 handle_v_requests (char *own_buf, int packet_len, int *new_packet_len)
3120 {
3121 if (!disable_packet_vCont)
3122 {
3123 if (strcmp (own_buf, "vCtrlC") == 0)
3124 {
3125 (*the_target->request_interrupt) ();
3126 write_ok (own_buf);
3127 return;
3128 }
3129
3130 if (startswith (own_buf, "vCont;"))
3131 {
3132 handle_v_cont (own_buf);
3133 return;
3134 }
3135
3136 if (startswith (own_buf, "vCont?"))
3137 {
3138 strcpy (own_buf, "vCont;c;C;t");
3139
3140 if (target_supports_hardware_single_step ()
3141 || target_supports_software_single_step ()
3142 || !vCont_supported)
3143 {
3144 /* If target supports single step either by hardware or by
3145 software, add actions s and S to the list of supported
3146 actions. On the other hand, if GDB doesn't request the
3147 supported vCont actions in qSupported packet, add s and
3148 S to the list too. */
3149 own_buf = own_buf + strlen (own_buf);
3150 strcpy (own_buf, ";s;S");
3151 }
3152
3153 if (target_supports_range_stepping ())
3154 {
3155 own_buf = own_buf + strlen (own_buf);
3156 strcpy (own_buf, ";r");
3157 }
3158 return;
3159 }
3160 }
3161
3162 if (startswith (own_buf, "vFile:")
3163 && handle_vFile (own_buf, packet_len, new_packet_len))
3164 return;
3165
3166 if (startswith (own_buf, "vAttach;"))
3167 {
3168 if ((!extended_protocol || !multi_process) && target_running ())
3169 {
3170 fprintf (stderr, "Already debugging a process\n");
3171 write_enn (own_buf);
3172 return;
3173 }
3174 handle_v_attach (own_buf);
3175 return;
3176 }
3177
3178 if (startswith (own_buf, "vRun;"))
3179 {
3180 if ((!extended_protocol || !multi_process) && target_running ())
3181 {
3182 fprintf (stderr, "Already debugging a process\n");
3183 write_enn (own_buf);
3184 return;
3185 }
3186 handle_v_run (own_buf);
3187 return;
3188 }
3189
3190 if (startswith (own_buf, "vKill;"))
3191 {
3192 if (!target_running ())
3193 {
3194 fprintf (stderr, "No process to kill\n");
3195 write_enn (own_buf);
3196 return;
3197 }
3198 handle_v_kill (own_buf);
3199 return;
3200 }
3201
3202 if (handle_notif_ack (own_buf, packet_len))
3203 return;
3204
3205 /* Otherwise we didn't know what packet it was. Say we didn't
3206 understand it. */
3207 own_buf[0] = 0;
3208 return;
3209 }
3210
3211 /* Resume thread and wait for another event. In non-stop mode,
3212 don't really wait here, but return immediatelly to the event
3213 loop. */
3214 static void
3215 myresume (char *own_buf, int step, int sig)
3216 {
3217 struct thread_resume resume_info[2];
3218 int n = 0;
3219 int valid_cont_thread;
3220
3221 valid_cont_thread = (!ptid_equal (cont_thread, null_ptid)
3222 && !ptid_equal (cont_thread, minus_one_ptid));
3223
3224 if (step || sig || valid_cont_thread)
3225 {
3226 resume_info[0].thread = current_ptid;
3227 if (step)
3228 resume_info[0].kind = resume_step;
3229 else
3230 resume_info[0].kind = resume_continue;
3231 resume_info[0].sig = sig;
3232 n++;
3233 }
3234
3235 if (!valid_cont_thread)
3236 {
3237 resume_info[n].thread = minus_one_ptid;
3238 resume_info[n].kind = resume_continue;
3239 resume_info[n].sig = 0;
3240 n++;
3241 }
3242
3243 resume (resume_info, n);
3244 }
3245
3246 /* Callback for for_each_inferior. Make a new stop reply for each
3247 stopped thread. */
3248
3249 static int
3250 queue_stop_reply_callback (struct inferior_list_entry *entry, void *arg)
3251 {
3252 struct thread_info *thread = (struct thread_info *) entry;
3253
3254 /* For now, assume targets that don't have this callback also don't
3255 manage the thread's last_status field. */
3256 if (the_target->thread_stopped == NULL)
3257 {
3258 struct vstop_notif *new_notif = XNEW (struct vstop_notif);
3259
3260 new_notif->ptid = entry->id;
3261 new_notif->status = thread->last_status;
3262 /* Pass the last stop reply back to GDB, but don't notify
3263 yet. */
3264 notif_event_enque (&notif_stop,
3265 (struct notif_event *) new_notif);
3266 }
3267 else
3268 {
3269 if (thread_stopped (thread))
3270 {
3271 if (debug_threads)
3272 {
3273 std::string status_string
3274 = target_waitstatus_to_string (&thread->last_status);
3275
3276 debug_printf ("Reporting thread %s as already stopped with %s\n",
3277 target_pid_to_str (entry->id),
3278 status_string.c_str ());
3279 }
3280
3281 gdb_assert (thread->last_status.kind != TARGET_WAITKIND_IGNORE);
3282
3283 /* Pass the last stop reply back to GDB, but don't notify
3284 yet. */
3285 queue_stop_reply (entry->id, &thread->last_status);
3286 }
3287 }
3288
3289 return 0;
3290 }
3291
3292 /* Set this inferior threads's state as "want-stopped". We won't
3293 resume this thread until the client gives us another action for
3294 it. */
3295
3296 static void
3297 gdb_wants_thread_stopped (struct inferior_list_entry *entry)
3298 {
3299 struct thread_info *thread = (struct thread_info *) entry;
3300
3301 thread->last_resume_kind = resume_stop;
3302
3303 if (thread->last_status.kind == TARGET_WAITKIND_IGNORE)
3304 {
3305 /* Most threads are stopped implicitly (all-stop); tag that with
3306 signal 0. */
3307 thread->last_status.kind = TARGET_WAITKIND_STOPPED;
3308 thread->last_status.value.sig = GDB_SIGNAL_0;
3309 }
3310 }
3311
3312 /* Set all threads' states as "want-stopped". */
3313
3314 static void
3315 gdb_wants_all_threads_stopped (void)
3316 {
3317 for_each_inferior (&all_threads, gdb_wants_thread_stopped);
3318 }
3319
3320 /* Clear the gdb_detached flag of every process. */
3321
3322 static void
3323 gdb_reattached_process (struct inferior_list_entry *entry)
3324 {
3325 struct process_info *process = (struct process_info *) entry;
3326
3327 process->gdb_detached = 0;
3328 }
3329
3330 /* Callback for for_each_inferior. Clear the thread's pending status
3331 flag. */
3332
3333 static void
3334 clear_pending_status_callback (struct inferior_list_entry *entry)
3335 {
3336 struct thread_info *thread = (struct thread_info *) entry;
3337
3338 thread->status_pending_p = 0;
3339 }
3340
3341 /* Callback for for_each_inferior. If the thread is stopped with an
3342 interesting event, mark it as having a pending event. */
3343
3344 static void
3345 set_pending_status_callback (struct inferior_list_entry *entry)
3346 {
3347 struct thread_info *thread = (struct thread_info *) entry;
3348
3349 if (thread->last_status.kind != TARGET_WAITKIND_STOPPED
3350 || (thread->last_status.value.sig != GDB_SIGNAL_0
3351 /* A breakpoint, watchpoint or finished step from a previous
3352 GDB run isn't considered interesting for a new GDB run.
3353 If we left those pending, the new GDB could consider them
3354 random SIGTRAPs. This leaves out real async traps. We'd
3355 have to peek into the (target-specific) siginfo to
3356 distinguish those. */
3357 && thread->last_status.value.sig != GDB_SIGNAL_TRAP))
3358 thread->status_pending_p = 1;
3359 }
3360
3361 /* Callback for find_inferior. Return true if ENTRY (a thread) has a
3362 pending status to report to GDB. */
3363
3364 static int
3365 find_status_pending_thread_callback (struct inferior_list_entry *entry, void *data)
3366 {
3367 struct thread_info *thread = (struct thread_info *) entry;
3368
3369 return thread->status_pending_p;
3370 }
3371
3372 /* Status handler for the '?' packet. */
3373
3374 static void
3375 handle_status (char *own_buf)
3376 {
3377 /* GDB is connected, don't forward events to the target anymore. */
3378 for_each_inferior (&all_processes, gdb_reattached_process);
3379
3380 /* In non-stop mode, we must send a stop reply for each stopped
3381 thread. In all-stop mode, just send one for the first stopped
3382 thread we find. */
3383
3384 if (non_stop)
3385 {
3386 find_inferior (&all_threads, queue_stop_reply_callback, NULL);
3387
3388 /* The first is sent immediatly. OK is sent if there is no
3389 stopped thread, which is the same handling of the vStopped
3390 packet (by design). */
3391 notif_write_event (&notif_stop, own_buf);
3392 }
3393 else
3394 {
3395 struct inferior_list_entry *thread = NULL;
3396
3397 pause_all (0);
3398 stabilize_threads ();
3399 gdb_wants_all_threads_stopped ();
3400
3401 /* We can only report one status, but we might be coming out of
3402 non-stop -- if more than one thread is stopped with
3403 interesting events, leave events for the threads we're not
3404 reporting now pending. They'll be reported the next time the
3405 threads are resumed. Start by marking all interesting events
3406 as pending. */
3407 for_each_inferior (&all_threads, set_pending_status_callback);
3408
3409 /* Prefer the last thread that reported an event to GDB (even if
3410 that was a GDB_SIGNAL_TRAP). */
3411 if (last_status.kind != TARGET_WAITKIND_IGNORE
3412 && last_status.kind != TARGET_WAITKIND_EXITED
3413 && last_status.kind != TARGET_WAITKIND_SIGNALLED)
3414 thread = find_inferior_id (&all_threads, last_ptid);
3415
3416 /* If the last event thread is not found for some reason, look
3417 for some other thread that might have an event to report. */
3418 if (thread == NULL)
3419 thread = find_inferior (&all_threads,
3420 find_status_pending_thread_callback, NULL);
3421
3422 /* If we're still out of luck, simply pick the first thread in
3423 the thread list. */
3424 if (thread == NULL)
3425 thread = get_first_inferior (&all_threads);
3426
3427 if (thread != NULL)
3428 {
3429 struct thread_info *tp = (struct thread_info *) thread;
3430
3431 /* We're reporting this event, so it's no longer
3432 pending. */
3433 tp->status_pending_p = 0;
3434
3435 /* GDB assumes the current thread is the thread we're
3436 reporting the status for. */
3437 general_thread = thread->id;
3438 set_desired_thread ();
3439
3440 gdb_assert (tp->last_status.kind != TARGET_WAITKIND_IGNORE);
3441 prepare_resume_reply (own_buf, tp->entry.id, &tp->last_status);
3442 }
3443 else
3444 strcpy (own_buf, "W00");
3445 }
3446 }
3447
3448 static void
3449 gdbserver_version (void)
3450 {
3451 printf ("GNU gdbserver %s%s\n"
3452 "Copyright (C) 2017 Free Software Foundation, Inc.\n"
3453 "gdbserver is free software, covered by the "
3454 "GNU General Public License.\n"
3455 "This gdbserver was configured as \"%s\"\n",
3456 PKGVERSION, version, host_name);
3457 }
3458
3459 static void
3460 gdbserver_usage (FILE *stream)
3461 {
3462 fprintf (stream, "Usage:\tgdbserver [OPTIONS] COMM PROG [ARGS ...]\n"
3463 "\tgdbserver [OPTIONS] --attach COMM PID\n"
3464 "\tgdbserver [OPTIONS] --multi COMM\n"
3465 "\n"
3466 "COMM may either be a tty device (for serial debugging),\n"
3467 "HOST:PORT to listen for a TCP connection, or '-' or 'stdio' to use \n"
3468 "stdin/stdout of gdbserver.\n"
3469 "PROG is the executable program. ARGS are arguments passed to inferior.\n"
3470 "PID is the process ID to attach to, when --attach is specified.\n"
3471 "\n"
3472 "Operating modes:\n"
3473 "\n"
3474 " --attach Attach to running process PID.\n"
3475 " --multi Start server without a specific program, and\n"
3476 " only quit when explicitly commanded.\n"
3477 " --once Exit after the first connection has closed.\n"
3478 " --help Print this message and then exit.\n"
3479 " --version Display version information and exit.\n"
3480 "\n"
3481 "Other options:\n"
3482 "\n"
3483 " --wrapper WRAPPER -- Run WRAPPER to start new programs.\n"
3484 " --disable-randomization\n"
3485 " Run PROG with address space randomization disabled.\n"
3486 " --no-disable-randomization\n"
3487 " Don't disable address space randomization when\n"
3488 " starting PROG.\n"
3489 " --startup-with-shell\n"
3490 " Start PROG using a shell. I.e., execs a shell that\n"
3491 " then execs PROG. (default)\n"
3492 " --no-startup-with-shell\n"
3493 " Exec PROG directly instead of using a shell.\n"
3494 " Disables argument globbing and variable substitution\n"
3495 " on UNIX-like systems.\n"
3496 "\n"
3497 "Debug options:\n"
3498 "\n"
3499 " --debug Enable general debugging output.\n"
3500 " --debug-format=opt1[,opt2,...]\n"
3501 " Specify extra content in debugging output.\n"
3502 " Options:\n"
3503 " all\n"
3504 " none\n"
3505 " timestamp\n"
3506 " --remote-debug Enable remote protocol debugging output.\n"
3507 " --disable-packet=opt1[,opt2,...]\n"
3508 " Disable support for RSP packets or features.\n"
3509 " Options:\n"
3510 " vCont, Tthread, qC, qfThreadInfo and \n"
3511 " threads (disable all threading packets).\n"
3512 "\n"
3513 "For more information, consult the GDB manual (available as on-line \n"
3514 "info or a printed manual).\n");
3515 if (REPORT_BUGS_TO[0] && stream == stdout)
3516 fprintf (stream, "Report bugs to \"%s\".\n", REPORT_BUGS_TO);
3517 }
3518
3519 static void
3520 gdbserver_show_disableable (FILE *stream)
3521 {
3522 fprintf (stream, "Disableable packets:\n"
3523 " vCont \tAll vCont packets\n"
3524 " qC \tQuerying the current thread\n"
3525 " qfThreadInfo\tThread listing\n"
3526 " Tthread \tPassing the thread specifier in the "
3527 "T stop reply packet\n"
3528 " threads \tAll of the above\n");
3529 }
3530
3531 static void
3532 kill_inferior_callback (struct inferior_list_entry *entry)
3533 {
3534 struct process_info *process = (struct process_info *) entry;
3535 int pid = ptid_get_pid (process->entry.id);
3536
3537 kill_inferior (pid);
3538 discard_queued_stop_replies (pid_to_ptid (pid));
3539 }
3540
3541 /* Callback for for_each_inferior to detach or kill the inferior,
3542 depending on whether we attached to it or not.
3543 We inform the user whether we're detaching or killing the process
3544 as this is only called when gdbserver is about to exit. */
3545
3546 static void
3547 detach_or_kill_inferior_callback (struct inferior_list_entry *entry)
3548 {
3549 struct process_info *process = (struct process_info *) entry;
3550 int pid = ptid_get_pid (process->entry.id);
3551
3552 if (process->attached)
3553 detach_inferior (pid);
3554 else
3555 kill_inferior (pid);
3556
3557 discard_queued_stop_replies (pid_to_ptid (pid));
3558 }
3559
3560 /* for_each_inferior callback for detach_or_kill_for_exit to print
3561 the pids of started inferiors. */
3562
3563 static void
3564 print_started_pid (struct inferior_list_entry *entry)
3565 {
3566 struct process_info *process = (struct process_info *) entry;
3567
3568 if (! process->attached)
3569 {
3570 int pid = ptid_get_pid (process->entry.id);
3571 fprintf (stderr, " %d", pid);
3572 }
3573 }
3574
3575 /* for_each_inferior callback for detach_or_kill_for_exit to print
3576 the pids of attached inferiors. */
3577
3578 static void
3579 print_attached_pid (struct inferior_list_entry *entry)
3580 {
3581 struct process_info *process = (struct process_info *) entry;
3582
3583 if (process->attached)
3584 {
3585 int pid = ptid_get_pid (process->entry.id);
3586 fprintf (stderr, " %d", pid);
3587 }
3588 }
3589
3590 /* Call this when exiting gdbserver with possible inferiors that need
3591 to be killed or detached from. */
3592
3593 static void
3594 detach_or_kill_for_exit (void)
3595 {
3596 /* First print a list of the inferiors we will be killing/detaching.
3597 This is to assist the user, for example, in case the inferior unexpectedly
3598 dies after we exit: did we screw up or did the inferior exit on its own?
3599 Having this info will save some head-scratching. */
3600
3601 if (have_started_inferiors_p ())
3602 {
3603 fprintf (stderr, "Killing process(es):");
3604 for_each_inferior (&all_processes, print_started_pid);
3605 fprintf (stderr, "\n");
3606 }
3607 if (have_attached_inferiors_p ())
3608 {
3609 fprintf (stderr, "Detaching process(es):");
3610 for_each_inferior (&all_processes, print_attached_pid);
3611 fprintf (stderr, "\n");
3612 }
3613
3614 /* Now we can kill or detach the inferiors. */
3615
3616 for_each_inferior (&all_processes, detach_or_kill_inferior_callback);
3617 }
3618
3619 /* Value that will be passed to exit(3) when gdbserver exits. */
3620 static int exit_code;
3621
3622 /* Cleanup version of detach_or_kill_for_exit. */
3623
3624 static void
3625 detach_or_kill_for_exit_cleanup (void *ignore)
3626 {
3627
3628 TRY
3629 {
3630 detach_or_kill_for_exit ();
3631 }
3632
3633 CATCH (exception, RETURN_MASK_ALL)
3634 {
3635 fflush (stdout);
3636 fprintf (stderr, "Detach or kill failed: %s\n", exception.message);
3637 exit_code = 1;
3638 }
3639 END_CATCH
3640 }
3641
3642 /* Main function. This is called by the real "main" function,
3643 wrapped in a TRY_CATCH that handles any uncaught exceptions. */
3644
3645 static void ATTRIBUTE_NORETURN
3646 captured_main (int argc, char *argv[])
3647 {
3648 int bad_attach;
3649 int pid;
3650 char *arg_end;
3651 const char *port = NULL;
3652 char **next_arg = &argv[1];
3653 volatile int multi_mode = 0;
3654 volatile int attach = 0;
3655 int was_running;
3656 bool selftest = false;
3657 const char *selftest_filter = NULL;
3658
3659 while (*next_arg != NULL && **next_arg == '-')
3660 {
3661 if (strcmp (*next_arg, "--version") == 0)
3662 {
3663 gdbserver_version ();
3664 exit (0);
3665 }
3666 else if (strcmp (*next_arg, "--help") == 0)
3667 {
3668 gdbserver_usage (stdout);
3669 exit (0);
3670 }
3671 else if (strcmp (*next_arg, "--attach") == 0)
3672 attach = 1;
3673 else if (strcmp (*next_arg, "--multi") == 0)
3674 multi_mode = 1;
3675 else if (strcmp (*next_arg, "--wrapper") == 0)
3676 {
3677 char **tmp;
3678
3679 next_arg++;
3680
3681 tmp = next_arg;
3682 while (*next_arg != NULL && strcmp (*next_arg, "--") != 0)
3683 {
3684 wrapper_argv += *next_arg;
3685 wrapper_argv += ' ';
3686 next_arg++;
3687 }
3688
3689 if (!wrapper_argv.empty ())
3690 {
3691 /* Erase the last whitespace. */
3692 wrapper_argv.erase (wrapper_argv.end () - 1);
3693 }
3694
3695 if (next_arg == tmp || *next_arg == NULL)
3696 {
3697 gdbserver_usage (stderr);
3698 exit (1);
3699 }
3700
3701 /* Consume the "--". */
3702 *next_arg = NULL;
3703 }
3704 else if (strcmp (*next_arg, "--debug") == 0)
3705 debug_threads = 1;
3706 else if (startswith (*next_arg, "--debug-format="))
3707 {
3708 char *error_msg
3709 = parse_debug_format_options ((*next_arg)
3710 + sizeof ("--debug-format=") - 1, 0);
3711
3712 if (error_msg != NULL)
3713 {
3714 fprintf (stderr, "%s", error_msg);
3715 exit (1);
3716 }
3717 }
3718 else if (strcmp (*next_arg, "--remote-debug") == 0)
3719 remote_debug = 1;
3720 else if (strcmp (*next_arg, "--disable-packet") == 0)
3721 {
3722 gdbserver_show_disableable (stdout);
3723 exit (0);
3724 }
3725 else if (startswith (*next_arg, "--disable-packet="))
3726 {
3727 char *packets, *tok;
3728
3729 packets = *next_arg += sizeof ("--disable-packet=") - 1;
3730 for (tok = strtok (packets, ",");
3731 tok != NULL;
3732 tok = strtok (NULL, ","))
3733 {
3734 if (strcmp ("vCont", tok) == 0)
3735 disable_packet_vCont = 1;
3736 else if (strcmp ("Tthread", tok) == 0)
3737 disable_packet_Tthread = 1;
3738 else if (strcmp ("qC", tok) == 0)
3739 disable_packet_qC = 1;
3740 else if (strcmp ("qfThreadInfo", tok) == 0)
3741 disable_packet_qfThreadInfo = 1;
3742 else if (strcmp ("threads", tok) == 0)
3743 {
3744 disable_packet_vCont = 1;
3745 disable_packet_Tthread = 1;
3746 disable_packet_qC = 1;
3747 disable_packet_qfThreadInfo = 1;
3748 }
3749 else
3750 {
3751 fprintf (stderr, "Don't know how to disable \"%s\".\n\n",
3752 tok);
3753 gdbserver_show_disableable (stderr);
3754 exit (1);
3755 }
3756 }
3757 }
3758 else if (strcmp (*next_arg, "-") == 0)
3759 {
3760 /* "-" specifies a stdio connection and is a form of port
3761 specification. */
3762 port = STDIO_CONNECTION_NAME;
3763 next_arg++;
3764 break;
3765 }
3766 else if (strcmp (*next_arg, "--disable-randomization") == 0)
3767 disable_randomization = 1;
3768 else if (strcmp (*next_arg, "--no-disable-randomization") == 0)
3769 disable_randomization = 0;
3770 else if (strcmp (*next_arg, "--startup-with-shell") == 0)
3771 startup_with_shell = true;
3772 else if (strcmp (*next_arg, "--no-startup-with-shell") == 0)
3773 startup_with_shell = false;
3774 else if (strcmp (*next_arg, "--once") == 0)
3775 run_once = 1;
3776 else if (strcmp (*next_arg, "--selftest") == 0)
3777 selftest = true;
3778 else if (startswith (*next_arg, "--selftest="))
3779 {
3780 selftest = true;
3781 selftest_filter = *next_arg + strlen ("--selftest=");
3782 }
3783 else
3784 {
3785 fprintf (stderr, "Unknown argument: %s\n", *next_arg);
3786 exit (1);
3787 }
3788
3789 next_arg++;
3790 continue;
3791 }
3792
3793 if (port == NULL)
3794 {
3795 port = *next_arg;
3796 next_arg++;
3797 }
3798 if ((port == NULL || (!attach && !multi_mode && *next_arg == NULL))
3799 && !selftest)
3800 {
3801 gdbserver_usage (stderr);
3802 exit (1);
3803 }
3804
3805 /* Remember stdio descriptors. LISTEN_DESC must not be listed, it will be
3806 opened by remote_prepare. */
3807 notice_open_fds ();
3808
3809 save_original_signals_state ();
3810
3811 /* We need to know whether the remote connection is stdio before
3812 starting the inferior. Inferiors created in this scenario have
3813 stdin,stdout redirected. So do this here before we call
3814 start_inferior. */
3815 if (port != NULL)
3816 remote_prepare (port);
3817
3818 bad_attach = 0;
3819 pid = 0;
3820
3821 /* --attach used to come after PORT, so allow it there for
3822 compatibility. */
3823 if (*next_arg != NULL && strcmp (*next_arg, "--attach") == 0)
3824 {
3825 attach = 1;
3826 next_arg++;
3827 }
3828
3829 if (attach
3830 && (*next_arg == NULL
3831 || (*next_arg)[0] == '\0'
3832 || (pid = strtoul (*next_arg, &arg_end, 0)) == 0
3833 || *arg_end != '\0'
3834 || next_arg[1] != NULL))
3835 bad_attach = 1;
3836
3837 if (bad_attach)
3838 {
3839 gdbserver_usage (stderr);
3840 exit (1);
3841 }
3842
3843 /* Gather information about the environment. */
3844 our_environ = gdb_environ::from_host_environ ();
3845
3846 initialize_async_io ();
3847 initialize_low ();
3848 have_job_control ();
3849 initialize_event_loop ();
3850 if (target_supports_tracepoints ())
3851 initialize_tracepoint ();
3852 initialize_notif ();
3853
3854 own_buf = (char *) xmalloc (PBUFSIZ + 1);
3855 mem_buf = (unsigned char *) xmalloc (PBUFSIZ);
3856
3857 if (selftest)
3858 {
3859 selftests::run_tests (selftest_filter);
3860 throw_quit ("Quit");
3861 }
3862
3863 if (pid == 0 && *next_arg != NULL)
3864 {
3865 int i, n;
3866
3867 n = argc - (next_arg - argv);
3868 program_name = xstrdup (next_arg[0]);
3869 for (i = 1; i < n; i++)
3870 program_args.push_back (xstrdup (next_arg[i]));
3871 program_args.push_back (NULL);
3872
3873 /* Wait till we are at first instruction in program. */
3874 create_inferior (program_name, program_args);
3875
3876 /* We are now (hopefully) stopped at the first instruction of
3877 the target process. This assumes that the target process was
3878 successfully created. */
3879 }
3880 else if (pid != 0)
3881 {
3882 if (attach_inferior (pid) == -1)
3883 error ("Attaching not supported on this target");
3884
3885 /* Otherwise succeeded. */
3886 }
3887 else
3888 {
3889 last_status.kind = TARGET_WAITKIND_EXITED;
3890 last_status.value.integer = 0;
3891 last_ptid = minus_one_ptid;
3892 }
3893 make_cleanup (detach_or_kill_for_exit_cleanup, NULL);
3894
3895 /* Don't report shared library events on the initial connection,
3896 even if some libraries are preloaded. Avoids the "stopped by
3897 shared library event" notice on gdb side. */
3898 dlls_changed = 0;
3899
3900 if (last_status.kind == TARGET_WAITKIND_EXITED
3901 || last_status.kind == TARGET_WAITKIND_SIGNALLED)
3902 was_running = 0;
3903 else
3904 was_running = 1;
3905
3906 if (!was_running && !multi_mode)
3907 error ("No program to debug");
3908
3909 while (1)
3910 {
3911
3912 noack_mode = 0;
3913 multi_process = 0;
3914 report_fork_events = 0;
3915 report_vfork_events = 0;
3916 report_exec_events = 0;
3917 /* Be sure we're out of tfind mode. */
3918 current_traceframe = -1;
3919 cont_thread = null_ptid;
3920 swbreak_feature = 0;
3921 hwbreak_feature = 0;
3922 vCont_supported = 0;
3923
3924 remote_open (port);
3925
3926 TRY
3927 {
3928 /* Wait for events. This will return when all event sources
3929 are removed from the event loop. */
3930 start_event_loop ();
3931
3932 /* If an exit was requested (using the "monitor exit"
3933 command), terminate now. */
3934 if (exit_requested)
3935 throw_quit ("Quit");
3936
3937 /* The only other way to get here is for getpkt to fail:
3938
3939 - If --once was specified, we're done.
3940
3941 - If not in extended-remote mode, and we're no longer
3942 debugging anything, simply exit: GDB has disconnected
3943 after processing the last process exit.
3944
3945 - Otherwise, close the connection and reopen it at the
3946 top of the loop. */
3947 if (run_once || (!extended_protocol && !target_running ()))
3948 throw_quit ("Quit");
3949
3950 fprintf (stderr,
3951 "Remote side has terminated connection. "
3952 "GDBserver will reopen the connection.\n");
3953
3954 /* Get rid of any pending statuses. An eventual reconnection
3955 (by the same GDB instance or another) will refresh all its
3956 state from scratch. */
3957 discard_queued_stop_replies (minus_one_ptid);
3958 for_each_inferior (&all_threads,
3959 clear_pending_status_callback);
3960
3961 if (tracing)
3962 {
3963 if (disconnected_tracing)
3964 {
3965 /* Try to enable non-stop/async mode, so we we can
3966 both wait for an async socket accept, and handle
3967 async target events simultaneously. There's also
3968 no point either in having the target always stop
3969 all threads, when we're going to pass signals
3970 down without informing GDB. */
3971 if (!non_stop)
3972 {
3973 if (start_non_stop (1))
3974 non_stop = 1;
3975
3976 /* Detaching implicitly resumes all threads;
3977 simply disconnecting does not. */
3978 }
3979 }
3980 else
3981 {
3982 fprintf (stderr,
3983 "Disconnected tracing disabled; "
3984 "stopping trace run.\n");
3985 stop_tracing ();
3986 }
3987 }
3988 }
3989 CATCH (exception, RETURN_MASK_ERROR)
3990 {
3991 fflush (stdout);
3992 fprintf (stderr, "gdbserver: %s\n", exception.message);
3993
3994 if (response_needed)
3995 {
3996 write_enn (own_buf);
3997 putpkt (own_buf);
3998 }
3999
4000 if (run_once)
4001 throw_quit ("Quit");
4002 }
4003 END_CATCH
4004 }
4005 }
4006
4007 /* Main function. */
4008
4009 int
4010 main (int argc, char *argv[])
4011 {
4012
4013 TRY
4014 {
4015 captured_main (argc, argv);
4016 }
4017 CATCH (exception, RETURN_MASK_ALL)
4018 {
4019 if (exception.reason == RETURN_ERROR)
4020 {
4021 fflush (stdout);
4022 fprintf (stderr, "%s\n", exception.message);
4023 fprintf (stderr, "Exiting\n");
4024 exit_code = 1;
4025 }
4026
4027 exit (exit_code);
4028 }
4029 END_CATCH
4030
4031 gdb_assert_not_reached ("captured_main should never return");
4032 }
4033
4034 /* Process options coming from Z packets for a breakpoint. PACKET is
4035 the packet buffer. *PACKET is updated to point to the first char
4036 after the last processed option. */
4037
4038 static void
4039 process_point_options (struct gdb_breakpoint *bp, const char **packet)
4040 {
4041 const char *dataptr = *packet;
4042 int persist;
4043
4044 /* Check if data has the correct format. */
4045 if (*dataptr != ';')
4046 return;
4047
4048 dataptr++;
4049
4050 while (*dataptr)
4051 {
4052 if (*dataptr == ';')
4053 ++dataptr;
4054
4055 if (*dataptr == 'X')
4056 {
4057 /* Conditional expression. */
4058 if (debug_threads)
4059 debug_printf ("Found breakpoint condition.\n");
4060 if (!add_breakpoint_condition (bp, &dataptr))
4061 dataptr = strchrnul (dataptr, ';');
4062 }
4063 else if (startswith (dataptr, "cmds:"))
4064 {
4065 dataptr += strlen ("cmds:");
4066 if (debug_threads)
4067 debug_printf ("Found breakpoint commands %s.\n", dataptr);
4068 persist = (*dataptr == '1');
4069 dataptr += 2;
4070 if (add_breakpoint_commands (bp, &dataptr, persist))
4071 dataptr = strchrnul (dataptr, ';');
4072 }
4073 else
4074 {
4075 fprintf (stderr, "Unknown token %c, ignoring.\n",
4076 *dataptr);
4077 /* Skip tokens until we find one that we recognize. */
4078 dataptr = strchrnul (dataptr, ';');
4079 }
4080 }
4081 *packet = dataptr;
4082 }
4083
4084 /* Event loop callback that handles a serial event. The first byte in
4085 the serial buffer gets us here. We expect characters to arrive at
4086 a brisk pace, so we read the rest of the packet with a blocking
4087 getpkt call. */
4088
4089 static int
4090 process_serial_event (void)
4091 {
4092 int signal;
4093 unsigned int len;
4094 int res;
4095 CORE_ADDR mem_addr;
4096 unsigned char sig;
4097 int packet_len;
4098 int new_packet_len = -1;
4099
4100 disable_async_io ();
4101
4102 response_needed = 0;
4103 packet_len = getpkt (own_buf);
4104 if (packet_len <= 0)
4105 {
4106 remote_close ();
4107 /* Force an event loop break. */
4108 return -1;
4109 }
4110 response_needed = 1;
4111
4112 char ch = own_buf[0];
4113 switch (ch)
4114 {
4115 case 'q':
4116 handle_query (own_buf, packet_len, &new_packet_len);
4117 break;
4118 case 'Q':
4119 handle_general_set (own_buf);
4120 break;
4121 case 'D':
4122 handle_detach (own_buf);
4123 break;
4124 case '!':
4125 extended_protocol = 1;
4126 write_ok (own_buf);
4127 break;
4128 case '?':
4129 handle_status (own_buf);
4130 break;
4131 case 'H':
4132 if (own_buf[1] == 'c' || own_buf[1] == 'g' || own_buf[1] == 's')
4133 {
4134 require_running_or_break (own_buf);
4135
4136 ptid_t thread_id = read_ptid (&own_buf[2], NULL);
4137
4138 if (thread_id == null_ptid || thread_id == minus_one_ptid)
4139 thread_id = null_ptid;
4140 else if (thread_id.is_pid ())
4141 {
4142 /* The ptid represents a pid. */
4143 thread_info *thread = find_any_thread_of_pid (thread_id.pid ());
4144
4145 if (thread == NULL)
4146 {
4147 write_enn (own_buf);
4148 break;
4149 }
4150
4151 thread_id = thread->entry.id;
4152 }
4153 else
4154 {
4155 /* The ptid represents a lwp/tid. */
4156 if (find_thread_ptid (thread_id) == NULL)
4157 {
4158 write_enn (own_buf);
4159 break;
4160 }
4161 }
4162
4163 if (own_buf[1] == 'g')
4164 {
4165 if (ptid_equal (thread_id, null_ptid))
4166 {
4167 /* GDB is telling us to choose any thread. Check if
4168 the currently selected thread is still valid. If
4169 it is not, select the first available. */
4170 struct thread_info *thread =
4171 (struct thread_info *) find_inferior_id (&all_threads,
4172 general_thread);
4173 if (thread == NULL)
4174 thread = get_first_thread ();
4175 thread_id = thread->entry.id;
4176 }
4177
4178 general_thread = thread_id;
4179 set_desired_thread ();
4180 gdb_assert (current_thread != NULL);
4181 }
4182 else if (own_buf[1] == 'c')
4183 cont_thread = thread_id;
4184
4185 write_ok (own_buf);
4186 }
4187 else
4188 {
4189 /* Silently ignore it so that gdb can extend the protocol
4190 without compatibility headaches. */
4191 own_buf[0] = '\0';
4192 }
4193 break;
4194 case 'g':
4195 require_running_or_break (own_buf);
4196 if (current_traceframe >= 0)
4197 {
4198 struct regcache *regcache
4199 = new_register_cache (current_target_desc ());
4200
4201 if (fetch_traceframe_registers (current_traceframe,
4202 regcache, -1) == 0)
4203 registers_to_string (regcache, own_buf);
4204 else
4205 write_enn (own_buf);
4206 free_register_cache (regcache);
4207 }
4208 else
4209 {
4210 struct regcache *regcache;
4211
4212 if (!set_desired_thread ())
4213 write_enn (own_buf);
4214 else
4215 {
4216 regcache = get_thread_regcache (current_thread, 1);
4217 registers_to_string (regcache, own_buf);
4218 }
4219 }
4220 break;
4221 case 'G':
4222 require_running_or_break (own_buf);
4223 if (current_traceframe >= 0)
4224 write_enn (own_buf);
4225 else
4226 {
4227 struct regcache *regcache;
4228
4229 if (!set_desired_thread ())
4230 write_enn (own_buf);
4231 else
4232 {
4233 regcache = get_thread_regcache (current_thread, 1);
4234 registers_from_string (regcache, &own_buf[1]);
4235 write_ok (own_buf);
4236 }
4237 }
4238 break;
4239 case 'm':
4240 require_running_or_break (own_buf);
4241 decode_m_packet (&own_buf[1], &mem_addr, &len);
4242 res = gdb_read_memory (mem_addr, mem_buf, len);
4243 if (res < 0)
4244 write_enn (own_buf);
4245 else
4246 bin2hex (mem_buf, own_buf, res);
4247 break;
4248 case 'M':
4249 require_running_or_break (own_buf);
4250 decode_M_packet (&own_buf[1], &mem_addr, &len, &mem_buf);
4251 if (gdb_write_memory (mem_addr, mem_buf, len) == 0)
4252 write_ok (own_buf);
4253 else
4254 write_enn (own_buf);
4255 break;
4256 case 'X':
4257 require_running_or_break (own_buf);
4258 if (decode_X_packet (&own_buf[1], packet_len - 1,
4259 &mem_addr, &len, &mem_buf) < 0
4260 || gdb_write_memory (mem_addr, mem_buf, len) != 0)
4261 write_enn (own_buf);
4262 else
4263 write_ok (own_buf);
4264 break;
4265 case 'C':
4266 require_running_or_break (own_buf);
4267 hex2bin (own_buf + 1, &sig, 1);
4268 if (gdb_signal_to_host_p ((enum gdb_signal) sig))
4269 signal = gdb_signal_to_host ((enum gdb_signal) sig);
4270 else
4271 signal = 0;
4272 myresume (own_buf, 0, signal);
4273 break;
4274 case 'S':
4275 require_running_or_break (own_buf);
4276 hex2bin (own_buf + 1, &sig, 1);
4277 if (gdb_signal_to_host_p ((enum gdb_signal) sig))
4278 signal = gdb_signal_to_host ((enum gdb_signal) sig);
4279 else
4280 signal = 0;
4281 myresume (own_buf, 1, signal);
4282 break;
4283 case 'c':
4284 require_running_or_break (own_buf);
4285 signal = 0;
4286 myresume (own_buf, 0, signal);
4287 break;
4288 case 's':
4289 require_running_or_break (own_buf);
4290 signal = 0;
4291 myresume (own_buf, 1, signal);
4292 break;
4293 case 'Z': /* insert_ ... */
4294 /* Fallthrough. */
4295 case 'z': /* remove_ ... */
4296 {
4297 char *dataptr;
4298 ULONGEST addr;
4299 int kind;
4300 char type = own_buf[1];
4301 int res;
4302 const int insert = ch == 'Z';
4303 const char *p = &own_buf[3];
4304
4305 p = unpack_varlen_hex (p, &addr);
4306 kind = strtol (p + 1, &dataptr, 16);
4307
4308 if (insert)
4309 {
4310 struct gdb_breakpoint *bp;
4311
4312 bp = set_gdb_breakpoint (type, addr, kind, &res);
4313 if (bp != NULL)
4314 {
4315 res = 0;
4316
4317 /* GDB may have sent us a list of *point parameters to
4318 be evaluated on the target's side. Read such list
4319 here. If we already have a list of parameters, GDB
4320 is telling us to drop that list and use this one
4321 instead. */
4322 clear_breakpoint_conditions_and_commands (bp);
4323 const char *options = dataptr;
4324 process_point_options (bp, &options);
4325 }
4326 }
4327 else
4328 res = delete_gdb_breakpoint (type, addr, kind);
4329
4330 if (res == 0)
4331 write_ok (own_buf);
4332 else if (res == 1)
4333 /* Unsupported. */
4334 own_buf[0] = '\0';
4335 else
4336 write_enn (own_buf);
4337 break;
4338 }
4339 case 'k':
4340 response_needed = 0;
4341 if (!target_running ())
4342 /* The packet we received doesn't make sense - but we can't
4343 reply to it, either. */
4344 return 0;
4345
4346 fprintf (stderr, "Killing all inferiors\n");
4347 for_each_inferior (&all_processes, kill_inferior_callback);
4348
4349 /* When using the extended protocol, we wait with no program
4350 running. The traditional protocol will exit instead. */
4351 if (extended_protocol)
4352 {
4353 last_status.kind = TARGET_WAITKIND_EXITED;
4354 last_status.value.sig = GDB_SIGNAL_KILL;
4355 return 0;
4356 }
4357 else
4358 exit (0);
4359
4360 case 'T':
4361 {
4362 require_running_or_break (own_buf);
4363
4364 ptid_t thread_id = read_ptid (&own_buf[1], NULL);
4365 if (find_thread_ptid (thread_id) == NULL)
4366 {
4367 write_enn (own_buf);
4368 break;
4369 }
4370
4371 if (mythread_alive (thread_id))
4372 write_ok (own_buf);
4373 else
4374 write_enn (own_buf);
4375 }
4376 break;
4377 case 'R':
4378 response_needed = 0;
4379
4380 /* Restarting the inferior is only supported in the extended
4381 protocol. */
4382 if (extended_protocol)
4383 {
4384 if (target_running ())
4385 for_each_inferior (&all_processes,
4386 kill_inferior_callback);
4387 fprintf (stderr, "GDBserver restarting\n");
4388
4389 /* Wait till we are at 1st instruction in prog. */
4390 if (program_name != NULL)
4391 {
4392 create_inferior (program_name, program_args);
4393
4394 if (last_status.kind == TARGET_WAITKIND_STOPPED)
4395 {
4396 /* Stopped at the first instruction of the target
4397 process. */
4398 general_thread = last_ptid;
4399 }
4400 else
4401 {
4402 /* Something went wrong. */
4403 general_thread = null_ptid;
4404 }
4405 }
4406 else
4407 {
4408 last_status.kind = TARGET_WAITKIND_EXITED;
4409 last_status.value.sig = GDB_SIGNAL_KILL;
4410 }
4411 return 0;
4412 }
4413 else
4414 {
4415 /* It is a request we don't understand. Respond with an
4416 empty packet so that gdb knows that we don't support this
4417 request. */
4418 own_buf[0] = '\0';
4419 break;
4420 }
4421 case 'v':
4422 /* Extended (long) request. */
4423 handle_v_requests (own_buf, packet_len, &new_packet_len);
4424 break;
4425
4426 default:
4427 /* It is a request we don't understand. Respond with an empty
4428 packet so that gdb knows that we don't support this
4429 request. */
4430 own_buf[0] = '\0';
4431 break;
4432 }
4433
4434 if (new_packet_len != -1)
4435 putpkt_binary (own_buf, new_packet_len);
4436 else
4437 putpkt (own_buf);
4438
4439 response_needed = 0;
4440
4441 if (exit_requested)
4442 return -1;
4443
4444 return 0;
4445 }
4446
4447 /* Event-loop callback for serial events. */
4448
4449 int
4450 handle_serial_event (int err, gdb_client_data client_data)
4451 {
4452 if (debug_threads)
4453 debug_printf ("handling possible serial event\n");
4454
4455 /* Really handle it. */
4456 if (process_serial_event () < 0)
4457 return -1;
4458
4459 /* Be sure to not change the selected thread behind GDB's back.
4460 Important in the non-stop mode asynchronous protocol. */
4461 set_desired_thread ();
4462
4463 return 0;
4464 }
4465
4466 /* Push a stop notification on the notification queue. */
4467
4468 static void
4469 push_stop_notification (ptid_t ptid, struct target_waitstatus *status)
4470 {
4471 struct vstop_notif *vstop_notif = XNEW (struct vstop_notif);
4472
4473 vstop_notif->status = *status;
4474 vstop_notif->ptid = ptid;
4475 /* Push Stop notification. */
4476 notif_push (&notif_stop, (struct notif_event *) vstop_notif);
4477 }
4478
4479 /* Event-loop callback for target events. */
4480
4481 int
4482 handle_target_event (int err, gdb_client_data client_data)
4483 {
4484 if (debug_threads)
4485 debug_printf ("handling possible target event\n");
4486
4487 last_ptid = mywait (minus_one_ptid, &last_status,
4488 TARGET_WNOHANG, 1);
4489
4490 if (last_status.kind == TARGET_WAITKIND_NO_RESUMED)
4491 {
4492 if (gdb_connected () && report_no_resumed)
4493 push_stop_notification (null_ptid, &last_status);
4494 }
4495 else if (last_status.kind != TARGET_WAITKIND_IGNORE)
4496 {
4497 int pid = ptid_get_pid (last_ptid);
4498 struct process_info *process = find_process_pid (pid);
4499 int forward_event = !gdb_connected () || process->gdb_detached;
4500
4501 if (last_status.kind == TARGET_WAITKIND_EXITED
4502 || last_status.kind == TARGET_WAITKIND_SIGNALLED)
4503 {
4504 mark_breakpoints_out (process);
4505 target_mourn_inferior (last_ptid);
4506 }
4507 else if (last_status.kind == TARGET_WAITKIND_THREAD_EXITED)
4508 ;
4509 else
4510 {
4511 /* We're reporting this thread as stopped. Update its
4512 "want-stopped" state to what the client wants, until it
4513 gets a new resume action. */
4514 current_thread->last_resume_kind = resume_stop;
4515 current_thread->last_status = last_status;
4516 }
4517
4518 if (forward_event)
4519 {
4520 if (!target_running ())
4521 {
4522 /* The last process exited. We're done. */
4523 exit (0);
4524 }
4525
4526 if (last_status.kind == TARGET_WAITKIND_EXITED
4527 || last_status.kind == TARGET_WAITKIND_SIGNALLED
4528 || last_status.kind == TARGET_WAITKIND_THREAD_EXITED)
4529 ;
4530 else
4531 {
4532 /* A thread stopped with a signal, but gdb isn't
4533 connected to handle it. Pass it down to the
4534 inferior, as if it wasn't being traced. */
4535 enum gdb_signal signal;
4536
4537 if (debug_threads)
4538 debug_printf ("GDB not connected; forwarding event %d for"
4539 " [%s]\n",
4540 (int) last_status.kind,
4541 target_pid_to_str (last_ptid));
4542
4543 if (last_status.kind == TARGET_WAITKIND_STOPPED)
4544 signal = last_status.value.sig;
4545 else
4546 signal = GDB_SIGNAL_0;
4547 target_continue (last_ptid, signal);
4548 }
4549 }
4550 else
4551 push_stop_notification (last_ptid, &last_status);
4552 }
4553
4554 /* Be sure to not change the selected thread behind GDB's back.
4555 Important in the non-stop mode asynchronous protocol. */
4556 set_desired_thread ();
4557
4558 return 0;
4559 }
4560
4561 #if GDB_SELF_TEST
4562 namespace selftests
4563 {
4564
4565 void
4566 reset ()
4567 {}
4568
4569 } // namespace selftests
4570 #endif /* GDB_SELF_TEST */
This page took 0.129659 seconds and 5 git commands to generate.