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