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