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