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