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