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