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