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