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