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