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