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