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