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