]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Remote target communications for serial-line targets in custom GDB protocol |
8926118c | 2 | |
32d0add0 | 3 | Copyright (C) 1988-2015 Free Software Foundation, Inc. |
c906108c | 4 | |
c5aa993b JM |
5 | This file is part of GDB. |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b JM |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c5aa993b | 19 | |
23860348 | 20 | /* See the GDB User Guide for details of the GDB remote protocol. */ |
c5aa993b | 21 | |
c906108c | 22 | #include "defs.h" |
c906108c SS |
23 | #include <ctype.h> |
24 | #include <fcntl.h> | |
c906108c | 25 | #include "inferior.h" |
45741a9c | 26 | #include "infrun.h" |
c906108c SS |
27 | #include "bfd.h" |
28 | #include "symfile.h" | |
29 | #include "target.h" | |
c5aa993b | 30 | /*#include "terminal.h" */ |
c906108c SS |
31 | #include "gdbcmd.h" |
32 | #include "objfiles.h" | |
33 | #include "gdb-stabs.h" | |
34 | #include "gdbthread.h" | |
c2c6d25f | 35 | #include "remote.h" |
722247f1 | 36 | #include "remote-notif.h" |
4e052eda | 37 | #include "regcache.h" |
fd0407d6 | 38 | #include "value.h" |
6867ae3e | 39 | #include "observer.h" |
a77053c2 | 40 | #include "solib.h" |
37a105a1 DJ |
41 | #include "cli/cli-decode.h" |
42 | #include "cli/cli-setshow.h" | |
424163ea | 43 | #include "target-descriptions.h" |
a4453b7e | 44 | #include "gdb_bfd.h" |
614c279d | 45 | #include "filestuff.h" |
9c3d6531 | 46 | #include "rsp-low.h" |
c906108c | 47 | |
9846de1b | 48 | #include <sys/time.h> |
c906108c | 49 | |
43ff13b4 | 50 | #include "event-loop.h" |
c2c6d25f | 51 | #include "event-top.h" |
2acceee2 | 52 | #include "inf-loop.h" |
43ff13b4 | 53 | |
c906108c SS |
54 | #include <signal.h> |
55 | #include "serial.h" | |
56 | ||
6240bebf MS |
57 | #include "gdbcore.h" /* for exec_bfd */ |
58 | ||
449092f6 | 59 | #include "remote-fileio.h" |
a6b151f1 | 60 | #include "gdb/fileio.h" |
53ce3c39 | 61 | #include <sys/stat.h> |
dc146f7c | 62 | #include "xml-support.h" |
449092f6 | 63 | |
fd79ecee DJ |
64 | #include "memory-map.h" |
65 | ||
35b1e5cc SS |
66 | #include "tracepoint.h" |
67 | #include "ax.h" | |
68 | #include "ax-gdb.h" | |
d1feda86 | 69 | #include "agent.h" |
9accd112 | 70 | #include "btrace.h" |
35b1e5cc | 71 | |
0df8b418 | 72 | /* Temp hacks for tracepoint encoding migration. */ |
35b1e5cc SS |
73 | static char *target_buf; |
74 | static long target_buf_size; | |
35b1e5cc | 75 | |
6765f3e5 DJ |
76 | /* The size to align memory write packets, when practical. The protocol |
77 | does not guarantee any alignment, and gdb will generate short | |
78 | writes and unaligned writes, but even as a best-effort attempt this | |
79 | can improve bulk transfers. For instance, if a write is misaligned | |
80 | relative to the target's data bus, the stub may need to make an extra | |
81 | round trip fetching data from the target. This doesn't make a | |
82 | huge difference, but it's easy to do, so we try to be helpful. | |
83 | ||
84 | The alignment chosen is arbitrary; usually data bus width is | |
85 | important here, not the possibly larger cache line size. */ | |
86 | enum { REMOTE_ALIGN_WRITES = 16 }; | |
87 | ||
23860348 | 88 | /* Prototypes for local functions. */ |
934b9bac | 89 | static void async_cleanup_sigint_signal_handler (void *dummy); |
6d820c5c | 90 | static int getpkt_sane (char **buf, long *sizeof_buf, int forever); |
74531fed | 91 | static int getpkt_or_notif_sane (char **buf, long *sizeof_buf, |
fee9eda9 | 92 | int forever, int *is_notif); |
6426a772 | 93 | |
934b9bac JK |
94 | static void async_handle_remote_sigint (int); |
95 | static void async_handle_remote_sigint_twice (int); | |
43ff13b4 | 96 | |
a14ed312 | 97 | static void remote_files_info (struct target_ops *ignore); |
c906108c | 98 | |
f32dbf8c MM |
99 | static void remote_prepare_to_store (struct target_ops *self, |
100 | struct regcache *regcache); | |
c906108c | 101 | |
014f9477 TT |
102 | static void remote_open_1 (const char *, int, struct target_ops *, |
103 | int extended_p); | |
c906108c | 104 | |
de90e03d | 105 | static void remote_close (struct target_ops *self); |
c906108c | 106 | |
136d6dae | 107 | static void remote_mourn (struct target_ops *ops); |
c906108c | 108 | |
a14ed312 | 109 | static void extended_remote_restart (void); |
c906108c | 110 | |
136d6dae | 111 | static void extended_remote_mourn (struct target_ops *); |
c906108c | 112 | |
a14ed312 | 113 | static void remote_mourn_1 (struct target_ops *); |
c906108c | 114 | |
6d820c5c | 115 | static void remote_send (char **buf, long *sizeof_buf_p); |
c906108c | 116 | |
a14ed312 | 117 | static int readchar (int timeout); |
c906108c | 118 | |
c33e31fd PA |
119 | static void remote_serial_write (const char *str, int len); |
120 | ||
7d85a9c0 | 121 | static void remote_kill (struct target_ops *ops); |
c906108c | 122 | |
6a109b6b | 123 | static int remote_can_async_p (struct target_ops *); |
75c99385 | 124 | |
6a109b6b | 125 | static int remote_is_async_p (struct target_ops *); |
75c99385 | 126 | |
6a109b6b TT |
127 | static void remote_async (struct target_ops *ops, |
128 | void (*callback) (enum inferior_event_type event_type, | |
129 | void *context), | |
130 | void *context); | |
75c99385 | 131 | |
934b9bac | 132 | static void sync_remote_interrupt_twice (int signo); |
7a292a7a | 133 | |
a14ed312 | 134 | static void interrupt_query (void); |
c906108c | 135 | |
79d7f229 PA |
136 | static void set_general_thread (struct ptid ptid); |
137 | static void set_continue_thread (struct ptid ptid); | |
c906108c | 138 | |
a14ed312 | 139 | static void get_offsets (void); |
c906108c | 140 | |
6d820c5c DJ |
141 | static void skip_frame (void); |
142 | ||
143 | static long read_frame (char **buf_p, long *sizeof_buf); | |
c906108c | 144 | |
a14ed312 | 145 | static int hexnumlen (ULONGEST num); |
c906108c | 146 | |
a14ed312 | 147 | static void init_remote_ops (void); |
c906108c | 148 | |
a14ed312 | 149 | static void init_extended_remote_ops (void); |
c906108c | 150 | |
1eab8a48 | 151 | static void remote_stop (struct target_ops *self, ptid_t); |
c906108c | 152 | |
a14ed312 | 153 | static int stubhex (int ch); |
c906108c | 154 | |
a14ed312 | 155 | static int hexnumstr (char *, ULONGEST); |
c906108c | 156 | |
a14ed312 | 157 | static int hexnumnstr (char *, ULONGEST, int); |
2df3850c | 158 | |
a14ed312 | 159 | static CORE_ADDR remote_address_masked (CORE_ADDR); |
c906108c | 160 | |
baa336ce | 161 | static void print_packet (const char *); |
c906108c | 162 | |
a14ed312 | 163 | static void compare_sections_command (char *, int); |
c906108c | 164 | |
a14ed312 | 165 | static void packet_command (char *, int); |
c906108c | 166 | |
a14ed312 | 167 | static int stub_unpack_int (char *buff, int fieldlength); |
c906108c | 168 | |
39f77062 | 169 | static ptid_t remote_current_thread (ptid_t oldptid); |
c906108c | 170 | |
baa336ce | 171 | static int putpkt_binary (const char *buf, int cnt); |
c906108c | 172 | |
a14ed312 | 173 | static void check_binary_download (CORE_ADDR addr); |
c906108c | 174 | |
5a2468f5 | 175 | struct packet_config; |
5a2468f5 | 176 | |
a14ed312 | 177 | static void show_packet_config_cmd (struct packet_config *config); |
5a2468f5 | 178 | |
bb572ddd DJ |
179 | static void show_remote_protocol_packet_cmd (struct ui_file *file, |
180 | int from_tty, | |
181 | struct cmd_list_element *c, | |
182 | const char *value); | |
183 | ||
82f73884 PA |
184 | static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid); |
185 | static ptid_t read_ptid (char *buf, char **obuf); | |
186 | ||
c378d69d | 187 | static void remote_set_permissions (struct target_ops *self); |
d914c394 | 188 | |
d5551862 | 189 | struct remote_state; |
8bd200f1 TT |
190 | static int remote_get_trace_status (struct target_ops *self, |
191 | struct trace_status *ts); | |
d5551862 | 192 | |
ab6617cc TT |
193 | static int remote_upload_tracepoints (struct target_ops *self, |
194 | struct uploaded_tp **utpp); | |
00bf0b85 | 195 | |
181e3713 TT |
196 | static int remote_upload_trace_state_variables (struct target_ops *self, |
197 | struct uploaded_tsv **utsvp); | |
00bf0b85 | 198 | |
c8d104ad PA |
199 | static void remote_query_supported (void); |
200 | ||
36d25514 | 201 | static void remote_check_symbols (void); |
c8d104ad | 202 | |
a14ed312 | 203 | void _initialize_remote (void); |
c906108c | 204 | |
74531fed | 205 | struct stop_reply; |
74531fed | 206 | static void stop_reply_xfree (struct stop_reply *); |
722247f1 | 207 | static void remote_parse_stop_reply (char *, struct stop_reply *); |
74531fed | 208 | static void push_stop_reply (struct stop_reply *); |
bcc75809 | 209 | static void discard_pending_stop_replies_in_queue (struct remote_state *); |
74531fed PA |
210 | static int peek_stop_reply (ptid_t ptid); |
211 | ||
212 | static void remote_async_inferior_event_handler (gdb_client_data); | |
74531fed | 213 | |
e3594fd1 | 214 | static void remote_terminal_ours (struct target_ops *self); |
d3fd5342 | 215 | |
d962ef82 DJ |
216 | static int remote_read_description_p (struct target_ops *target); |
217 | ||
176a6961 | 218 | static void remote_console_output (char *msg); |
dde08ee1 | 219 | |
efcc2da7 | 220 | static int remote_supports_cond_breakpoints (struct target_ops *self); |
b775012e | 221 | |
78eff0ec | 222 | static int remote_can_run_breakpoint_commands (struct target_ops *self); |
d3ce09f5 | 223 | |
a6b151f1 DJ |
224 | /* For "remote". */ |
225 | ||
226 | static struct cmd_list_element *remote_cmdlist; | |
227 | ||
bb572ddd DJ |
228 | /* For "set remote" and "show remote". */ |
229 | ||
230 | static struct cmd_list_element *remote_set_cmdlist; | |
231 | static struct cmd_list_element *remote_show_cmdlist; | |
232 | ||
d458bd84 PA |
233 | /* Stub vCont actions support. |
234 | ||
235 | Each field is a boolean flag indicating whether the stub reports | |
236 | support for the corresponding action. */ | |
237 | ||
238 | struct vCont_action_support | |
239 | { | |
240 | /* vCont;t */ | |
241 | int t; | |
c1e36e3e PA |
242 | |
243 | /* vCont;r */ | |
244 | int r; | |
d458bd84 PA |
245 | }; |
246 | ||
c1e36e3e PA |
247 | /* Controls whether GDB is willing to use range stepping. */ |
248 | ||
249 | static int use_range_stepping = 1; | |
250 | ||
0d031856 TT |
251 | #define OPAQUETHREADBYTES 8 |
252 | ||
253 | /* a 64 bit opaque identifier */ | |
254 | typedef unsigned char threadref[OPAQUETHREADBYTES]; | |
255 | ||
256 | /* About this many threadisds fit in a packet. */ | |
257 | ||
258 | #define MAXTHREADLISTRESULTS 32 | |
259 | ||
ea9c271d DJ |
260 | /* Description of the remote protocol state for the currently |
261 | connected target. This is per-target state, and independent of the | |
262 | selected architecture. */ | |
263 | ||
264 | struct remote_state | |
265 | { | |
266 | /* A buffer to use for incoming packets, and its current size. The | |
267 | buffer is grown dynamically for larger incoming packets. | |
268 | Outgoing packets may also be constructed in this buffer. | |
269 | BUF_SIZE is always at least REMOTE_PACKET_SIZE; | |
270 | REMOTE_PACKET_SIZE should be used to limit the length of outgoing | |
271 | packets. */ | |
272 | char *buf; | |
273 | long buf_size; | |
be2a5f71 | 274 | |
1e51243a PA |
275 | /* True if we're going through initial connection setup (finding out |
276 | about the remote side's threads, relocating symbols, etc.). */ | |
277 | int starting_up; | |
278 | ||
be2a5f71 DJ |
279 | /* If we negotiated packet size explicitly (and thus can bypass |
280 | heuristics for the largest packet size that will not overflow | |
281 | a buffer in the stub), this will be set to that packet size. | |
282 | Otherwise zero, meaning to use the guessed size. */ | |
283 | long explicit_packet_size; | |
2d717e4f DJ |
284 | |
285 | /* remote_wait is normally called when the target is running and | |
286 | waits for a stop reply packet. But sometimes we need to call it | |
287 | when the target is already stopped. We can send a "?" packet | |
288 | and have remote_wait read the response. Or, if we already have | |
289 | the response, we can stash it in BUF and tell remote_wait to | |
290 | skip calling getpkt. This flag is set when BUF contains a | |
291 | stop reply packet and the target is not waiting. */ | |
292 | int cached_wait_status; | |
a6f3e723 SL |
293 | |
294 | /* True, if in no ack mode. That is, neither GDB nor the stub will | |
295 | expect acks from each other. The connection is assumed to be | |
296 | reliable. */ | |
297 | int noack_mode; | |
82f73884 PA |
298 | |
299 | /* True if we're connected in extended remote mode. */ | |
300 | int extended; | |
301 | ||
e24a49d8 PA |
302 | /* True if we resumed the target and we're waiting for the target to |
303 | stop. In the mean time, we can't start another command/query. | |
304 | The remote server wouldn't be ready to process it, so we'd | |
305 | timeout waiting for a reply that would never come and eventually | |
306 | we'd close the connection. This can happen in asynchronous mode | |
307 | because we allow GDB commands while the target is running. */ | |
308 | int waiting_for_stop_reply; | |
74531fed | 309 | |
d458bd84 PA |
310 | /* The status of the stub support for the various vCont actions. */ |
311 | struct vCont_action_support supports_vCont; | |
782b2b07 | 312 | |
3a29589a DJ |
313 | /* Nonzero if the user has pressed Ctrl-C, but the target hasn't |
314 | responded to that. */ | |
315 | int ctrlc_pending_p; | |
5d93a237 TT |
316 | |
317 | /* Descriptor for I/O to remote machine. Initialize it to NULL so that | |
318 | remote_open knows that we don't have a file open when the program | |
319 | starts. */ | |
320 | struct serial *remote_desc; | |
47f8a51d TT |
321 | |
322 | /* These are the threads which we last sent to the remote system. The | |
323 | TID member will be -1 for all or -2 for not sent yet. */ | |
324 | ptid_t general_thread; | |
325 | ptid_t continue_thread; | |
262e1174 TT |
326 | |
327 | /* This is the traceframe which we last selected on the remote system. | |
328 | It will be -1 if no traceframe is selected. */ | |
329 | int remote_traceframe_number; | |
747dc59d TT |
330 | |
331 | char *last_pass_packet; | |
5e4a05c4 TT |
332 | |
333 | /* The last QProgramSignals packet sent to the target. We bypass | |
334 | sending a new program signals list down to the target if the new | |
335 | packet is exactly the same as the last we sent. IOW, we only let | |
336 | the target know about program signals list changes. */ | |
337 | char *last_program_signals_packet; | |
b73be471 TT |
338 | |
339 | enum gdb_signal last_sent_signal; | |
280ceea3 TT |
340 | |
341 | int last_sent_step; | |
8e88304f TT |
342 | |
343 | char *finished_object; | |
344 | char *finished_annex; | |
345 | ULONGEST finished_offset; | |
b80fafe3 TT |
346 | |
347 | /* Should we try the 'ThreadInfo' query packet? | |
348 | ||
349 | This variable (NOT available to the user: auto-detect only!) | |
350 | determines whether GDB will use the new, simpler "ThreadInfo" | |
351 | query or the older, more complex syntax for thread queries. | |
352 | This is an auto-detect variable (set to true at each connect, | |
353 | and set to false when the target fails to recognize it). */ | |
354 | int use_threadinfo_query; | |
355 | int use_threadextra_query; | |
88b496c3 TT |
356 | |
357 | void (*async_client_callback) (enum inferior_event_type event_type, | |
358 | void *context); | |
359 | void *async_client_context; | |
ee154bee TT |
360 | |
361 | /* This is set to the data address of the access causing the target | |
362 | to stop for a watchpoint. */ | |
363 | CORE_ADDR remote_watch_data_address; | |
364 | ||
365 | /* This is non-zero if target stopped for a watchpoint. */ | |
366 | int remote_stopped_by_watchpoint_p; | |
0d031856 TT |
367 | |
368 | threadref echo_nextthread; | |
369 | threadref nextthread; | |
370 | threadref resultthreadlist[MAXTHREADLISTRESULTS]; | |
5965e028 YQ |
371 | |
372 | /* The state of remote notification. */ | |
373 | struct remote_notif_state *notif_state; | |
ea9c271d DJ |
374 | }; |
375 | ||
dc146f7c VP |
376 | /* Private data that we'll store in (struct thread_info)->private. */ |
377 | struct private_thread_info | |
378 | { | |
379 | char *extra; | |
380 | int core; | |
381 | }; | |
382 | ||
383 | static void | |
384 | free_private_thread_info (struct private_thread_info *info) | |
385 | { | |
386 | xfree (info->extra); | |
387 | xfree (info); | |
388 | } | |
389 | ||
ea9c271d DJ |
390 | /* This data could be associated with a target, but we do not always |
391 | have access to the current target when we need it, so for now it is | |
392 | static. This will be fine for as long as only one target is in use | |
393 | at a time. */ | |
cf792862 | 394 | static struct remote_state *remote_state; |
ea9c271d DJ |
395 | |
396 | static struct remote_state * | |
0b83947e | 397 | get_remote_state_raw (void) |
ea9c271d | 398 | { |
cf792862 TT |
399 | return remote_state; |
400 | } | |
401 | ||
402 | /* Allocate a new struct remote_state with xmalloc, initialize it, and | |
403 | return it. */ | |
404 | ||
405 | static struct remote_state * | |
406 | new_remote_state (void) | |
407 | { | |
408 | struct remote_state *result = XCNEW (struct remote_state); | |
409 | ||
410 | /* The default buffer size is unimportant; it will be expanded | |
411 | whenever a larger buffer is needed. */ | |
412 | result->buf_size = 400; | |
413 | result->buf = xmalloc (result->buf_size); | |
262e1174 | 414 | result->remote_traceframe_number = -1; |
b73be471 | 415 | result->last_sent_signal = GDB_SIGNAL_0; |
cf792862 TT |
416 | |
417 | return result; | |
ea9c271d DJ |
418 | } |
419 | ||
420 | /* Description of the remote protocol for a given architecture. */ | |
d01949b6 | 421 | |
ad10f812 AC |
422 | struct packet_reg |
423 | { | |
424 | long offset; /* Offset into G packet. */ | |
425 | long regnum; /* GDB's internal register number. */ | |
426 | LONGEST pnum; /* Remote protocol register number. */ | |
b323314b | 427 | int in_g_packet; /* Always part of G packet. */ |
f5656ead | 428 | /* long size in bytes; == register_size (target_gdbarch (), regnum); |
23860348 | 429 | at present. */ |
f5656ead | 430 | /* char *name; == gdbarch_register_name (target_gdbarch (), regnum); |
c9f4d572 | 431 | at present. */ |
ad10f812 AC |
432 | }; |
433 | ||
ea9c271d | 434 | struct remote_arch_state |
d01949b6 | 435 | { |
ad10f812 AC |
436 | /* Description of the remote protocol registers. */ |
437 | long sizeof_g_packet; | |
b323314b AC |
438 | |
439 | /* Description of the remote protocol registers indexed by REGNUM | |
f57d151a | 440 | (making an array gdbarch_num_regs in size). */ |
b323314b | 441 | struct packet_reg *regs; |
ad10f812 | 442 | |
d01949b6 AC |
443 | /* This is the size (in chars) of the first response to the ``g'' |
444 | packet. It is used as a heuristic when determining the maximum | |
445 | size of memory-read and memory-write packets. A target will | |
446 | typically only reserve a buffer large enough to hold the ``g'' | |
447 | packet. The size does not include packet overhead (headers and | |
23860348 | 448 | trailers). */ |
d01949b6 AC |
449 | long actual_register_packet_size; |
450 | ||
451 | /* This is the maximum size (in chars) of a non read/write packet. | |
23860348 | 452 | It is also used as a cap on the size of read/write packets. */ |
d01949b6 AC |
453 | long remote_packet_size; |
454 | }; | |
455 | ||
35b1e5cc SS |
456 | /* Utility: generate error from an incoming stub packet. */ |
457 | static void | |
458 | trace_error (char *buf) | |
459 | { | |
460 | if (*buf++ != 'E') | |
461 | return; /* not an error msg */ | |
462 | switch (*buf) | |
463 | { | |
464 | case '1': /* malformed packet error */ | |
465 | if (*++buf == '0') /* general case: */ | |
466 | error (_("remote.c: error in outgoing packet.")); | |
467 | else | |
468 | error (_("remote.c: error in outgoing packet at field #%ld."), | |
469 | strtol (buf, NULL, 16)); | |
35b1e5cc SS |
470 | default: |
471 | error (_("Target returns error code '%s'."), buf); | |
472 | } | |
473 | } | |
474 | ||
475 | /* Utility: wait for reply from stub, while accepting "O" packets. */ | |
476 | static char * | |
477 | remote_get_noisy_reply (char **buf_p, | |
478 | long *sizeof_buf) | |
479 | { | |
480 | do /* Loop on reply from remote stub. */ | |
481 | { | |
482 | char *buf; | |
a744cf53 | 483 | |
0df8b418 | 484 | QUIT; /* Allow user to bail out with ^C. */ |
35b1e5cc SS |
485 | getpkt (buf_p, sizeof_buf, 0); |
486 | buf = *buf_p; | |
ad91cd99 | 487 | if (buf[0] == 'E') |
35b1e5cc | 488 | trace_error (buf); |
dde08ee1 PA |
489 | else if (strncmp (buf, "qRelocInsn:", strlen ("qRelocInsn:")) == 0) |
490 | { | |
491 | ULONGEST ul; | |
492 | CORE_ADDR from, to, org_to; | |
493 | char *p, *pp; | |
494 | int adjusted_size = 0; | |
495 | volatile struct gdb_exception ex; | |
496 | ||
497 | p = buf + strlen ("qRelocInsn:"); | |
498 | pp = unpack_varlen_hex (p, &ul); | |
499 | if (*pp != ';') | |
cb91c06a | 500 | error (_("invalid qRelocInsn packet: %s"), buf); |
dde08ee1 PA |
501 | from = ul; |
502 | ||
503 | p = pp + 1; | |
a9cbf802 | 504 | unpack_varlen_hex (p, &ul); |
dde08ee1 PA |
505 | to = ul; |
506 | ||
507 | org_to = to; | |
508 | ||
509 | TRY_CATCH (ex, RETURN_MASK_ALL) | |
510 | { | |
f5656ead | 511 | gdbarch_relocate_instruction (target_gdbarch (), &to, from); |
dde08ee1 PA |
512 | } |
513 | if (ex.reason >= 0) | |
514 | { | |
515 | adjusted_size = to - org_to; | |
516 | ||
bba74b36 | 517 | xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size); |
dde08ee1 PA |
518 | putpkt (buf); |
519 | } | |
520 | else if (ex.reason < 0 && ex.error == MEMORY_ERROR) | |
521 | { | |
522 | /* Propagate memory errors silently back to the target. | |
523 | The stub may have limited the range of addresses we | |
524 | can write to, for example. */ | |
525 | putpkt ("E01"); | |
526 | } | |
527 | else | |
528 | { | |
529 | /* Something unexpectedly bad happened. Be verbose so | |
530 | we can tell what, and propagate the error back to the | |
531 | stub, so it doesn't get stuck waiting for a | |
532 | response. */ | |
533 | exception_fprintf (gdb_stderr, ex, | |
534 | _("warning: relocating instruction: ")); | |
535 | putpkt ("E01"); | |
536 | } | |
537 | } | |
ad91cd99 | 538 | else if (buf[0] == 'O' && buf[1] != 'K') |
35b1e5cc SS |
539 | remote_console_output (buf + 1); /* 'O' message from stub */ |
540 | else | |
0df8b418 | 541 | return buf; /* Here's the actual reply. */ |
35b1e5cc SS |
542 | } |
543 | while (1); | |
544 | } | |
3c3bea1c | 545 | |
d01949b6 AC |
546 | /* Handle for retreving the remote protocol data from gdbarch. */ |
547 | static struct gdbarch_data *remote_gdbarch_data_handle; | |
548 | ||
ea9c271d DJ |
549 | static struct remote_arch_state * |
550 | get_remote_arch_state (void) | |
d01949b6 | 551 | { |
f5656ead | 552 | return gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle); |
d01949b6 AC |
553 | } |
554 | ||
0b83947e DJ |
555 | /* Fetch the global remote target state. */ |
556 | ||
557 | static struct remote_state * | |
558 | get_remote_state (void) | |
559 | { | |
560 | /* Make sure that the remote architecture state has been | |
561 | initialized, because doing so might reallocate rs->buf. Any | |
562 | function which calls getpkt also needs to be mindful of changes | |
563 | to rs->buf, but this call limits the number of places which run | |
564 | into trouble. */ | |
565 | get_remote_arch_state (); | |
566 | ||
567 | return get_remote_state_raw (); | |
568 | } | |
569 | ||
74ca34ce DJ |
570 | static int |
571 | compare_pnums (const void *lhs_, const void *rhs_) | |
572 | { | |
573 | const struct packet_reg * const *lhs = lhs_; | |
574 | const struct packet_reg * const *rhs = rhs_; | |
575 | ||
576 | if ((*lhs)->pnum < (*rhs)->pnum) | |
577 | return -1; | |
578 | else if ((*lhs)->pnum == (*rhs)->pnum) | |
579 | return 0; | |
580 | else | |
581 | return 1; | |
582 | } | |
583 | ||
c21236dc PA |
584 | static int |
585 | map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs) | |
d01949b6 | 586 | { |
74ca34ce | 587 | int regnum, num_remote_regs, offset; |
74ca34ce | 588 | struct packet_reg **remote_regs; |
ea9c271d | 589 | |
4a22f64d | 590 | for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++) |
ad10f812 | 591 | { |
c21236dc | 592 | struct packet_reg *r = ®s[regnum]; |
baef701f | 593 | |
4a22f64d | 594 | if (register_size (gdbarch, regnum) == 0) |
baef701f DJ |
595 | /* Do not try to fetch zero-sized (placeholder) registers. */ |
596 | r->pnum = -1; | |
597 | else | |
598 | r->pnum = gdbarch_remote_register_number (gdbarch, regnum); | |
599 | ||
b323314b | 600 | r->regnum = regnum; |
74ca34ce DJ |
601 | } |
602 | ||
603 | /* Define the g/G packet format as the contents of each register | |
604 | with a remote protocol number, in order of ascending protocol | |
605 | number. */ | |
606 | ||
4a22f64d | 607 | remote_regs = alloca (gdbarch_num_regs (gdbarch) |
c21236dc | 608 | * sizeof (struct packet_reg *)); |
f57d151a | 609 | for (num_remote_regs = 0, regnum = 0; |
4a22f64d | 610 | regnum < gdbarch_num_regs (gdbarch); |
f57d151a | 611 | regnum++) |
c21236dc PA |
612 | if (regs[regnum].pnum != -1) |
613 | remote_regs[num_remote_regs++] = ®s[regnum]; | |
7d58c67d | 614 | |
74ca34ce DJ |
615 | qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *), |
616 | compare_pnums); | |
617 | ||
618 | for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++) | |
619 | { | |
620 | remote_regs[regnum]->in_g_packet = 1; | |
621 | remote_regs[regnum]->offset = offset; | |
4a22f64d | 622 | offset += register_size (gdbarch, remote_regs[regnum]->regnum); |
ad10f812 AC |
623 | } |
624 | ||
c21236dc PA |
625 | return offset; |
626 | } | |
627 | ||
628 | /* Given the architecture described by GDBARCH, return the remote | |
629 | protocol register's number and the register's offset in the g/G | |
630 | packets of GDB register REGNUM, in PNUM and POFFSET respectively. | |
631 | If the target does not have a mapping for REGNUM, return false, | |
632 | otherwise, return true. */ | |
633 | ||
634 | int | |
635 | remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum, | |
636 | int *pnum, int *poffset) | |
637 | { | |
638 | int sizeof_g_packet; | |
639 | struct packet_reg *regs; | |
640 | struct cleanup *old_chain; | |
641 | ||
642 | gdb_assert (regnum < gdbarch_num_regs (gdbarch)); | |
643 | ||
644 | regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg)); | |
645 | old_chain = make_cleanup (xfree, regs); | |
646 | ||
647 | sizeof_g_packet = map_regcache_remote_table (gdbarch, regs); | |
648 | ||
649 | *pnum = regs[regnum].pnum; | |
650 | *poffset = regs[regnum].offset; | |
651 | ||
652 | do_cleanups (old_chain); | |
653 | ||
654 | return *pnum != -1; | |
655 | } | |
656 | ||
657 | static void * | |
658 | init_remote_state (struct gdbarch *gdbarch) | |
659 | { | |
660 | struct remote_state *rs = get_remote_state_raw (); | |
661 | struct remote_arch_state *rsa; | |
662 | ||
663 | rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state); | |
664 | ||
665 | /* Use the architecture to build a regnum<->pnum table, which will be | |
666 | 1:1 unless a feature set specifies otherwise. */ | |
667 | rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch, | |
668 | gdbarch_num_regs (gdbarch), | |
669 | struct packet_reg); | |
670 | ||
74ca34ce DJ |
671 | /* Record the maximum possible size of the g packet - it may turn out |
672 | to be smaller. */ | |
c21236dc | 673 | rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs); |
74ca34ce | 674 | |
0df8b418 | 675 | /* Default maximum number of characters in a packet body. Many |
d01949b6 AC |
676 | remote stubs have a hardwired buffer size of 400 bytes |
677 | (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used | |
678 | as the maximum packet-size to ensure that the packet and an extra | |
679 | NUL character can always fit in the buffer. This stops GDB | |
680 | trashing stubs that try to squeeze an extra NUL into what is | |
ea9c271d DJ |
681 | already a full buffer (As of 1999-12-04 that was most stubs). */ |
682 | rsa->remote_packet_size = 400 - 1; | |
d01949b6 | 683 | |
ea9c271d DJ |
684 | /* This one is filled in when a ``g'' packet is received. */ |
685 | rsa->actual_register_packet_size = 0; | |
686 | ||
687 | /* Should rsa->sizeof_g_packet needs more space than the | |
0df8b418 MS |
688 | default, adjust the size accordingly. Remember that each byte is |
689 | encoded as two characters. 32 is the overhead for the packet | |
690 | header / footer. NOTE: cagney/1999-10-26: I suspect that 8 | |
d01949b6 | 691 | (``$NN:G...#NN'') is a better guess, the below has been padded a |
23860348 | 692 | little. */ |
ea9c271d DJ |
693 | if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2)) |
694 | rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32); | |
802188a7 | 695 | |
ea9c271d DJ |
696 | /* Make sure that the packet buffer is plenty big enough for |
697 | this architecture. */ | |
698 | if (rs->buf_size < rsa->remote_packet_size) | |
699 | { | |
700 | rs->buf_size = 2 * rsa->remote_packet_size; | |
7fca722e | 701 | rs->buf = xrealloc (rs->buf, rs->buf_size); |
ea9c271d | 702 | } |
6d820c5c | 703 | |
ea9c271d DJ |
704 | return rsa; |
705 | } | |
706 | ||
707 | /* Return the current allowed size of a remote packet. This is | |
708 | inferred from the current architecture, and should be used to | |
709 | limit the length of outgoing packets. */ | |
710 | static long | |
711 | get_remote_packet_size (void) | |
712 | { | |
be2a5f71 | 713 | struct remote_state *rs = get_remote_state (); |
ea9c271d DJ |
714 | struct remote_arch_state *rsa = get_remote_arch_state (); |
715 | ||
be2a5f71 DJ |
716 | if (rs->explicit_packet_size) |
717 | return rs->explicit_packet_size; | |
718 | ||
ea9c271d | 719 | return rsa->remote_packet_size; |
d01949b6 AC |
720 | } |
721 | ||
ad10f812 | 722 | static struct packet_reg * |
ea9c271d | 723 | packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum) |
ad10f812 | 724 | { |
f5656ead | 725 | if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ())) |
b323314b AC |
726 | return NULL; |
727 | else | |
ad10f812 | 728 | { |
ea9c271d | 729 | struct packet_reg *r = &rsa->regs[regnum]; |
a744cf53 | 730 | |
b323314b AC |
731 | gdb_assert (r->regnum == regnum); |
732 | return r; | |
ad10f812 | 733 | } |
ad10f812 AC |
734 | } |
735 | ||
736 | static struct packet_reg * | |
ea9c271d | 737 | packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum) |
ad10f812 | 738 | { |
b323314b | 739 | int i; |
a744cf53 | 740 | |
f5656ead | 741 | for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++) |
ad10f812 | 742 | { |
ea9c271d | 743 | struct packet_reg *r = &rsa->regs[i]; |
a744cf53 | 744 | |
b323314b AC |
745 | if (r->pnum == pnum) |
746 | return r; | |
ad10f812 AC |
747 | } |
748 | return NULL; | |
d01949b6 AC |
749 | } |
750 | ||
c906108c SS |
751 | static struct target_ops remote_ops; |
752 | ||
753 | static struct target_ops extended_remote_ops; | |
754 | ||
6426a772 JM |
755 | /* FIXME: cagney/1999-09-23: Even though getpkt was called with |
756 | ``forever'' still use the normal timeout mechanism. This is | |
757 | currently used by the ASYNC code to guarentee that target reads | |
758 | during the initial connect always time-out. Once getpkt has been | |
759 | modified to return a timeout indication and, in turn | |
760 | remote_wait()/wait_for_inferior() have gained a timeout parameter | |
23860348 | 761 | this can go away. */ |
6426a772 JM |
762 | static int wait_forever_enabled_p = 1; |
763 | ||
9a7071a8 JB |
764 | /* Allow the user to specify what sequence to send to the remote |
765 | when he requests a program interruption: Although ^C is usually | |
766 | what remote systems expect (this is the default, here), it is | |
767 | sometimes preferable to send a break. On other systems such | |
768 | as the Linux kernel, a break followed by g, which is Magic SysRq g | |
769 | is required in order to interrupt the execution. */ | |
770 | const char interrupt_sequence_control_c[] = "Ctrl-C"; | |
771 | const char interrupt_sequence_break[] = "BREAK"; | |
772 | const char interrupt_sequence_break_g[] = "BREAK-g"; | |
40478521 | 773 | static const char *const interrupt_sequence_modes[] = |
9a7071a8 JB |
774 | { |
775 | interrupt_sequence_control_c, | |
776 | interrupt_sequence_break, | |
777 | interrupt_sequence_break_g, | |
778 | NULL | |
779 | }; | |
780 | static const char *interrupt_sequence_mode = interrupt_sequence_control_c; | |
781 | ||
782 | static void | |
783 | show_interrupt_sequence (struct ui_file *file, int from_tty, | |
784 | struct cmd_list_element *c, | |
785 | const char *value) | |
786 | { | |
787 | if (interrupt_sequence_mode == interrupt_sequence_control_c) | |
788 | fprintf_filtered (file, | |
789 | _("Send the ASCII ETX character (Ctrl-c) " | |
790 | "to the remote target to interrupt the " | |
791 | "execution of the program.\n")); | |
792 | else if (interrupt_sequence_mode == interrupt_sequence_break) | |
793 | fprintf_filtered (file, | |
794 | _("send a break signal to the remote target " | |
795 | "to interrupt the execution of the program.\n")); | |
796 | else if (interrupt_sequence_mode == interrupt_sequence_break_g) | |
797 | fprintf_filtered (file, | |
798 | _("Send a break signal and 'g' a.k.a. Magic SysRq g to " | |
799 | "the remote target to interrupt the execution " | |
800 | "of Linux kernel.\n")); | |
801 | else | |
802 | internal_error (__FILE__, __LINE__, | |
803 | _("Invalid value for interrupt_sequence_mode: %s."), | |
804 | interrupt_sequence_mode); | |
805 | } | |
6426a772 | 806 | |
9a7071a8 JB |
807 | /* This boolean variable specifies whether interrupt_sequence is sent |
808 | to the remote target when gdb connects to it. | |
809 | This is mostly needed when you debug the Linux kernel: The Linux kernel | |
810 | expects BREAK g which is Magic SysRq g for connecting gdb. */ | |
811 | static int interrupt_on_connect = 0; | |
c906108c | 812 | |
9a7071a8 JB |
813 | /* This variable is used to implement the "set/show remotebreak" commands. |
814 | Since these commands are now deprecated in favor of "set/show remote | |
815 | interrupt-sequence", it no longer has any effect on the code. */ | |
c906108c SS |
816 | static int remote_break; |
817 | ||
9a7071a8 JB |
818 | static void |
819 | set_remotebreak (char *args, int from_tty, struct cmd_list_element *c) | |
820 | { | |
821 | if (remote_break) | |
822 | interrupt_sequence_mode = interrupt_sequence_break; | |
823 | else | |
824 | interrupt_sequence_mode = interrupt_sequence_control_c; | |
825 | } | |
826 | ||
827 | static void | |
828 | show_remotebreak (struct ui_file *file, int from_tty, | |
829 | struct cmd_list_element *c, | |
830 | const char *value) | |
831 | { | |
832 | } | |
833 | ||
c906108c SS |
834 | /* This variable sets the number of bits in an address that are to be |
835 | sent in a memory ("M" or "m") packet. Normally, after stripping | |
0df8b418 | 836 | leading zeros, the entire address would be sent. This variable |
c906108c SS |
837 | restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The |
838 | initial implementation of remote.c restricted the address sent in | |
839 | memory packets to ``host::sizeof long'' bytes - (typically 32 | |
840 | bits). Consequently, for 64 bit targets, the upper 32 bits of an | |
841 | address was never sent. Since fixing this bug may cause a break in | |
842 | some remote targets this variable is principly provided to | |
23860348 | 843 | facilitate backward compatibility. */ |
c906108c | 844 | |
883b9c6c | 845 | static unsigned int remote_address_size; |
c906108c | 846 | |
75c99385 PA |
847 | /* Temporary to track who currently owns the terminal. See |
848 | remote_terminal_* for more details. */ | |
6426a772 JM |
849 | |
850 | static int remote_async_terminal_ours_p; | |
851 | ||
2d717e4f DJ |
852 | /* The executable file to use for "run" on the remote side. */ |
853 | ||
854 | static char *remote_exec_file = ""; | |
855 | ||
11cf8741 | 856 | \f |
11cf8741 | 857 | /* User configurable variables for the number of characters in a |
ea9c271d DJ |
858 | memory read/write packet. MIN (rsa->remote_packet_size, |
859 | rsa->sizeof_g_packet) is the default. Some targets need smaller | |
24b06219 | 860 | values (fifo overruns, et.al.) and some users need larger values |
ad10f812 AC |
861 | (speed up transfers). The variables ``preferred_*'' (the user |
862 | request), ``current_*'' (what was actually set) and ``forced_*'' | |
23860348 | 863 | (Positive - a soft limit, negative - a hard limit). */ |
11cf8741 JM |
864 | |
865 | struct memory_packet_config | |
866 | { | |
867 | char *name; | |
868 | long size; | |
869 | int fixed_p; | |
870 | }; | |
871 | ||
872 | /* Compute the current size of a read/write packet. Since this makes | |
873 | use of ``actual_register_packet_size'' the computation is dynamic. */ | |
874 | ||
875 | static long | |
876 | get_memory_packet_size (struct memory_packet_config *config) | |
877 | { | |
d01949b6 | 878 | struct remote_state *rs = get_remote_state (); |
ea9c271d DJ |
879 | struct remote_arch_state *rsa = get_remote_arch_state (); |
880 | ||
11cf8741 JM |
881 | /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk |
882 | law?) that some hosts don't cope very well with large alloca() | |
883 | calls. Eventually the alloca() code will be replaced by calls to | |
884 | xmalloc() and make_cleanups() allowing this restriction to either | |
23860348 | 885 | be lifted or removed. */ |
11cf8741 JM |
886 | #ifndef MAX_REMOTE_PACKET_SIZE |
887 | #define MAX_REMOTE_PACKET_SIZE 16384 | |
888 | #endif | |
3de11b2e | 889 | /* NOTE: 20 ensures we can write at least one byte. */ |
11cf8741 | 890 | #ifndef MIN_REMOTE_PACKET_SIZE |
3de11b2e | 891 | #define MIN_REMOTE_PACKET_SIZE 20 |
11cf8741 JM |
892 | #endif |
893 | long what_they_get; | |
894 | if (config->fixed_p) | |
895 | { | |
896 | if (config->size <= 0) | |
897 | what_they_get = MAX_REMOTE_PACKET_SIZE; | |
898 | else | |
899 | what_they_get = config->size; | |
900 | } | |
901 | else | |
902 | { | |
ea9c271d | 903 | what_they_get = get_remote_packet_size (); |
23860348 | 904 | /* Limit the packet to the size specified by the user. */ |
11cf8741 JM |
905 | if (config->size > 0 |
906 | && what_they_get > config->size) | |
907 | what_they_get = config->size; | |
be2a5f71 DJ |
908 | |
909 | /* Limit it to the size of the targets ``g'' response unless we have | |
910 | permission from the stub to use a larger packet size. */ | |
911 | if (rs->explicit_packet_size == 0 | |
912 | && rsa->actual_register_packet_size > 0 | |
913 | && what_they_get > rsa->actual_register_packet_size) | |
914 | what_they_get = rsa->actual_register_packet_size; | |
11cf8741 JM |
915 | } |
916 | if (what_they_get > MAX_REMOTE_PACKET_SIZE) | |
917 | what_they_get = MAX_REMOTE_PACKET_SIZE; | |
918 | if (what_they_get < MIN_REMOTE_PACKET_SIZE) | |
919 | what_they_get = MIN_REMOTE_PACKET_SIZE; | |
6d820c5c DJ |
920 | |
921 | /* Make sure there is room in the global buffer for this packet | |
922 | (including its trailing NUL byte). */ | |
923 | if (rs->buf_size < what_they_get + 1) | |
924 | { | |
925 | rs->buf_size = 2 * what_they_get; | |
926 | rs->buf = xrealloc (rs->buf, 2 * what_they_get); | |
927 | } | |
928 | ||
11cf8741 JM |
929 | return what_they_get; |
930 | } | |
931 | ||
0df8b418 | 932 | /* Update the size of a read/write packet. If they user wants |
23860348 | 933 | something really big then do a sanity check. */ |
11cf8741 JM |
934 | |
935 | static void | |
936 | set_memory_packet_size (char *args, struct memory_packet_config *config) | |
937 | { | |
938 | int fixed_p = config->fixed_p; | |
939 | long size = config->size; | |
a744cf53 | 940 | |
11cf8741 | 941 | if (args == NULL) |
8a3fe4f8 | 942 | error (_("Argument required (integer, `fixed' or `limited').")); |
11cf8741 JM |
943 | else if (strcmp (args, "hard") == 0 |
944 | || strcmp (args, "fixed") == 0) | |
945 | fixed_p = 1; | |
946 | else if (strcmp (args, "soft") == 0 | |
947 | || strcmp (args, "limit") == 0) | |
948 | fixed_p = 0; | |
949 | else | |
950 | { | |
951 | char *end; | |
a744cf53 | 952 | |
11cf8741 JM |
953 | size = strtoul (args, &end, 0); |
954 | if (args == end) | |
8a3fe4f8 | 955 | error (_("Invalid %s (bad syntax)."), config->name); |
11cf8741 JM |
956 | #if 0 |
957 | /* Instead of explicitly capping the size of a packet to | |
958 | MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is | |
959 | instead allowed to set the size to something arbitrarily | |
23860348 | 960 | large. */ |
11cf8741 | 961 | if (size > MAX_REMOTE_PACKET_SIZE) |
8a3fe4f8 | 962 | error (_("Invalid %s (too large)."), config->name); |
11cf8741 JM |
963 | #endif |
964 | } | |
23860348 | 965 | /* Extra checks? */ |
11cf8741 JM |
966 | if (fixed_p && !config->fixed_p) |
967 | { | |
e2e0b3e5 AC |
968 | if (! query (_("The target may not be able to correctly handle a %s\n" |
969 | "of %ld bytes. Change the packet size? "), | |
11cf8741 | 970 | config->name, size)) |
8a3fe4f8 | 971 | error (_("Packet size not changed.")); |
11cf8741 | 972 | } |
23860348 | 973 | /* Update the config. */ |
11cf8741 JM |
974 | config->fixed_p = fixed_p; |
975 | config->size = size; | |
976 | } | |
977 | ||
978 | static void | |
979 | show_memory_packet_size (struct memory_packet_config *config) | |
980 | { | |
a3f17187 | 981 | printf_filtered (_("The %s is %ld. "), config->name, config->size); |
11cf8741 | 982 | if (config->fixed_p) |
a3f17187 | 983 | printf_filtered (_("Packets are fixed at %ld bytes.\n"), |
11cf8741 JM |
984 | get_memory_packet_size (config)); |
985 | else | |
a3f17187 | 986 | printf_filtered (_("Packets are limited to %ld bytes.\n"), |
11cf8741 JM |
987 | get_memory_packet_size (config)); |
988 | } | |
989 | ||
990 | static struct memory_packet_config memory_write_packet_config = | |
991 | { | |
992 | "memory-write-packet-size", | |
993 | }; | |
994 | ||
995 | static void | |
996 | set_memory_write_packet_size (char *args, int from_tty) | |
997 | { | |
998 | set_memory_packet_size (args, &memory_write_packet_config); | |
999 | } | |
1000 | ||
1001 | static void | |
1002 | show_memory_write_packet_size (char *args, int from_tty) | |
1003 | { | |
1004 | show_memory_packet_size (&memory_write_packet_config); | |
1005 | } | |
1006 | ||
1007 | static long | |
1008 | get_memory_write_packet_size (void) | |
1009 | { | |
1010 | return get_memory_packet_size (&memory_write_packet_config); | |
1011 | } | |
1012 | ||
1013 | static struct memory_packet_config memory_read_packet_config = | |
1014 | { | |
1015 | "memory-read-packet-size", | |
1016 | }; | |
1017 | ||
1018 | static void | |
1019 | set_memory_read_packet_size (char *args, int from_tty) | |
1020 | { | |
1021 | set_memory_packet_size (args, &memory_read_packet_config); | |
1022 | } | |
1023 | ||
1024 | static void | |
1025 | show_memory_read_packet_size (char *args, int from_tty) | |
1026 | { | |
1027 | show_memory_packet_size (&memory_read_packet_config); | |
1028 | } | |
1029 | ||
1030 | static long | |
1031 | get_memory_read_packet_size (void) | |
1032 | { | |
1033 | long size = get_memory_packet_size (&memory_read_packet_config); | |
a744cf53 | 1034 | |
11cf8741 JM |
1035 | /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an |
1036 | extra buffer size argument before the memory read size can be | |
ea9c271d DJ |
1037 | increased beyond this. */ |
1038 | if (size > get_remote_packet_size ()) | |
1039 | size = get_remote_packet_size (); | |
11cf8741 JM |
1040 | return size; |
1041 | } | |
1042 | ||
11cf8741 | 1043 | \f |
5a2468f5 | 1044 | /* Generic configuration support for packets the stub optionally |
0df8b418 | 1045 | supports. Allows the user to specify the use of the packet as well |
23860348 | 1046 | as allowing GDB to auto-detect support in the remote stub. */ |
5a2468f5 JM |
1047 | |
1048 | enum packet_support | |
1049 | { | |
1050 | PACKET_SUPPORT_UNKNOWN = 0, | |
1051 | PACKET_ENABLE, | |
1052 | PACKET_DISABLE | |
1053 | }; | |
1054 | ||
5a2468f5 JM |
1055 | struct packet_config |
1056 | { | |
bb572ddd DJ |
1057 | const char *name; |
1058 | const char *title; | |
4082afcc PA |
1059 | |
1060 | /* If auto, GDB auto-detects support for this packet or feature, | |
1061 | either through qSupported, or by trying the packet and looking | |
1062 | at the response. If true, GDB assumes the target supports this | |
ca4f7f8b PA |
1063 | packet. If false, the packet is disabled. Configs that don't |
1064 | have an associated command always have this set to auto. */ | |
7f19b9a2 | 1065 | enum auto_boolean detect; |
4082afcc PA |
1066 | |
1067 | /* Does the target support this packet? */ | |
5a2468f5 JM |
1068 | enum packet_support support; |
1069 | }; | |
1070 | ||
d471ea57 | 1071 | /* Analyze a packet's return value and update the packet config |
23860348 | 1072 | accordingly. */ |
d471ea57 AC |
1073 | |
1074 | enum packet_result | |
1075 | { | |
1076 | PACKET_ERROR, | |
1077 | PACKET_OK, | |
1078 | PACKET_UNKNOWN | |
1079 | }; | |
1080 | ||
4082afcc PA |
1081 | static enum packet_support packet_config_support (struct packet_config *config); |
1082 | static enum packet_support packet_support (int packet); | |
5a2468f5 JM |
1083 | |
1084 | static void | |
fba45db2 | 1085 | show_packet_config_cmd (struct packet_config *config) |
5a2468f5 JM |
1086 | { |
1087 | char *support = "internal-error"; | |
a744cf53 | 1088 | |
4082afcc | 1089 | switch (packet_config_support (config)) |
5a2468f5 JM |
1090 | { |
1091 | case PACKET_ENABLE: | |
1092 | support = "enabled"; | |
1093 | break; | |
1094 | case PACKET_DISABLE: | |
1095 | support = "disabled"; | |
1096 | break; | |
1097 | case PACKET_SUPPORT_UNKNOWN: | |
1098 | support = "unknown"; | |
1099 | break; | |
1100 | } | |
1101 | switch (config->detect) | |
1102 | { | |
7f19b9a2 | 1103 | case AUTO_BOOLEAN_AUTO: |
3e43a32a MS |
1104 | printf_filtered (_("Support for the `%s' packet " |
1105 | "is auto-detected, currently %s.\n"), | |
37a105a1 | 1106 | config->name, support); |
5a2468f5 | 1107 | break; |
7f19b9a2 AC |
1108 | case AUTO_BOOLEAN_TRUE: |
1109 | case AUTO_BOOLEAN_FALSE: | |
37a105a1 DJ |
1110 | printf_filtered (_("Support for the `%s' packet is currently %s.\n"), |
1111 | config->name, support); | |
8e248173 | 1112 | break; |
5a2468f5 JM |
1113 | } |
1114 | } | |
1115 | ||
1116 | static void | |
bb572ddd DJ |
1117 | add_packet_config_cmd (struct packet_config *config, const char *name, |
1118 | const char *title, int legacy) | |
d471ea57 | 1119 | { |
5a2468f5 JM |
1120 | char *set_doc; |
1121 | char *show_doc; | |
d471ea57 | 1122 | char *cmd_name; |
3ed07be4 | 1123 | |
5a2468f5 JM |
1124 | config->name = name; |
1125 | config->title = title; | |
b435e160 AC |
1126 | set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet", |
1127 | name, title); | |
3e43a32a MS |
1128 | show_doc = xstrprintf ("Show current use of remote " |
1129 | "protocol `%s' (%s) packet", | |
b435e160 | 1130 | name, title); |
d471ea57 | 1131 | /* set/show TITLE-packet {auto,on,off} */ |
b435e160 | 1132 | cmd_name = xstrprintf ("%s-packet", title); |
e9e68a56 | 1133 | add_setshow_auto_boolean_cmd (cmd_name, class_obscure, |
3e43a32a MS |
1134 | &config->detect, set_doc, |
1135 | show_doc, NULL, /* help_doc */ | |
4082afcc | 1136 | NULL, |
bb572ddd DJ |
1137 | show_remote_protocol_packet_cmd, |
1138 | &remote_set_cmdlist, &remote_show_cmdlist); | |
1eefb858 TT |
1139 | /* The command code copies the documentation strings. */ |
1140 | xfree (set_doc); | |
1141 | xfree (show_doc); | |
23860348 | 1142 | /* set/show remote NAME-packet {auto,on,off} -- legacy. */ |
d471ea57 AC |
1143 | if (legacy) |
1144 | { | |
1145 | char *legacy_name; | |
a744cf53 | 1146 | |
b435e160 | 1147 | legacy_name = xstrprintf ("%s-packet", name); |
d471ea57 | 1148 | add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, |
bb572ddd | 1149 | &remote_set_cmdlist); |
d471ea57 | 1150 | add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, |
bb572ddd | 1151 | &remote_show_cmdlist); |
d471ea57 | 1152 | } |
5a2468f5 JM |
1153 | } |
1154 | ||
d471ea57 | 1155 | static enum packet_result |
a76d924d | 1156 | packet_check_result (const char *buf) |
5a2468f5 | 1157 | { |
d471ea57 | 1158 | if (buf[0] != '\0') |
5a2468f5 | 1159 | { |
d471ea57 | 1160 | /* The stub recognized the packet request. Check that the |
23860348 | 1161 | operation succeeded. */ |
a76d924d DJ |
1162 | if (buf[0] == 'E' |
1163 | && isxdigit (buf[1]) && isxdigit (buf[2]) | |
1164 | && buf[3] == '\0') | |
1165 | /* "Enn" - definitly an error. */ | |
1166 | return PACKET_ERROR; | |
1167 | ||
1168 | /* Always treat "E." as an error. This will be used for | |
1169 | more verbose error messages, such as E.memtypes. */ | |
1170 | if (buf[0] == 'E' && buf[1] == '.') | |
1171 | return PACKET_ERROR; | |
1172 | ||
1173 | /* The packet may or may not be OK. Just assume it is. */ | |
1174 | return PACKET_OK; | |
1175 | } | |
1176 | else | |
1177 | /* The stub does not support the packet. */ | |
1178 | return PACKET_UNKNOWN; | |
1179 | } | |
1180 | ||
1181 | static enum packet_result | |
1182 | packet_ok (const char *buf, struct packet_config *config) | |
1183 | { | |
1184 | enum packet_result result; | |
1185 | ||
4082afcc PA |
1186 | if (config->detect != AUTO_BOOLEAN_TRUE |
1187 | && config->support == PACKET_DISABLE) | |
1188 | internal_error (__FILE__, __LINE__, | |
1189 | _("packet_ok: attempt to use a disabled packet")); | |
1190 | ||
a76d924d DJ |
1191 | result = packet_check_result (buf); |
1192 | switch (result) | |
1193 | { | |
1194 | case PACKET_OK: | |
1195 | case PACKET_ERROR: | |
1196 | /* The stub recognized the packet request. */ | |
4082afcc | 1197 | if (config->support == PACKET_SUPPORT_UNKNOWN) |
d471ea57 | 1198 | { |
d471ea57 AC |
1199 | if (remote_debug) |
1200 | fprintf_unfiltered (gdb_stdlog, | |
4082afcc PA |
1201 | "Packet %s (%s) is supported\n", |
1202 | config->name, config->title); | |
d471ea57 | 1203 | config->support = PACKET_ENABLE; |
d471ea57 | 1204 | } |
a76d924d DJ |
1205 | break; |
1206 | case PACKET_UNKNOWN: | |
23860348 | 1207 | /* The stub does not support the packet. */ |
4082afcc PA |
1208 | if (config->detect == AUTO_BOOLEAN_AUTO |
1209 | && config->support == PACKET_ENABLE) | |
d471ea57 | 1210 | { |
4082afcc PA |
1211 | /* If the stub previously indicated that the packet was |
1212 | supported then there is a protocol error. */ | |
1213 | error (_("Protocol error: %s (%s) conflicting enabled responses."), | |
1214 | config->name, config->title); | |
1215 | } | |
1216 | else if (config->detect == AUTO_BOOLEAN_TRUE) | |
1217 | { | |
1218 | /* The user set it wrong. */ | |
1219 | error (_("Enabled packet %s (%s) not recognized by stub"), | |
1220 | config->name, config->title); | |
d471ea57 | 1221 | } |
4082afcc PA |
1222 | |
1223 | if (remote_debug) | |
1224 | fprintf_unfiltered (gdb_stdlog, | |
1225 | "Packet %s (%s) is NOT supported\n", | |
1226 | config->name, config->title); | |
1227 | config->support = PACKET_DISABLE; | |
a76d924d | 1228 | break; |
5a2468f5 | 1229 | } |
a76d924d DJ |
1230 | |
1231 | return result; | |
5a2468f5 JM |
1232 | } |
1233 | ||
444abaca DJ |
1234 | enum { |
1235 | PACKET_vCont = 0, | |
1236 | PACKET_X, | |
1237 | PACKET_qSymbol, | |
1238 | PACKET_P, | |
1239 | PACKET_p, | |
1240 | PACKET_Z0, | |
1241 | PACKET_Z1, | |
1242 | PACKET_Z2, | |
1243 | PACKET_Z3, | |
1244 | PACKET_Z4, | |
a6b151f1 DJ |
1245 | PACKET_vFile_open, |
1246 | PACKET_vFile_pread, | |
1247 | PACKET_vFile_pwrite, | |
1248 | PACKET_vFile_close, | |
1249 | PACKET_vFile_unlink, | |
b9e7b9c3 | 1250 | PACKET_vFile_readlink, |
0876f84a | 1251 | PACKET_qXfer_auxv, |
23181151 | 1252 | PACKET_qXfer_features, |
cfa9d6d9 | 1253 | PACKET_qXfer_libraries, |
2268b414 | 1254 | PACKET_qXfer_libraries_svr4, |
fd79ecee | 1255 | PACKET_qXfer_memory_map, |
0e7f50da UW |
1256 | PACKET_qXfer_spu_read, |
1257 | PACKET_qXfer_spu_write, | |
07e059b5 | 1258 | PACKET_qXfer_osdata, |
dc146f7c | 1259 | PACKET_qXfer_threads, |
0fb4aa4b | 1260 | PACKET_qXfer_statictrace_read, |
b3b9301e | 1261 | PACKET_qXfer_traceframe_info, |
169081d0 | 1262 | PACKET_qXfer_uib, |
711e434b | 1263 | PACKET_qGetTIBAddr, |
444abaca | 1264 | PACKET_qGetTLSAddr, |
be2a5f71 | 1265 | PACKET_qSupported, |
bd3eecc3 | 1266 | PACKET_qTStatus, |
89be2091 | 1267 | PACKET_QPassSignals, |
9b224c5e | 1268 | PACKET_QProgramSignals, |
936d2992 | 1269 | PACKET_qCRC, |
08388c79 | 1270 | PACKET_qSearch_memory, |
2d717e4f DJ |
1271 | PACKET_vAttach, |
1272 | PACKET_vRun, | |
a6f3e723 | 1273 | PACKET_QStartNoAckMode, |
82f73884 | 1274 | PACKET_vKill, |
4aa995e1 PA |
1275 | PACKET_qXfer_siginfo_read, |
1276 | PACKET_qXfer_siginfo_write, | |
0b16c5cf | 1277 | PACKET_qAttached, |
4082afcc PA |
1278 | |
1279 | /* Support for conditional tracepoints. */ | |
782b2b07 | 1280 | PACKET_ConditionalTracepoints, |
4082afcc PA |
1281 | |
1282 | /* Support for target-side breakpoint conditions. */ | |
3788aec7 | 1283 | PACKET_ConditionalBreakpoints, |
4082afcc PA |
1284 | |
1285 | /* Support for target-side breakpoint commands. */ | |
d3ce09f5 | 1286 | PACKET_BreakpointCommands, |
4082afcc PA |
1287 | |
1288 | /* Support for fast tracepoints. */ | |
7a697b8d | 1289 | PACKET_FastTracepoints, |
4082afcc PA |
1290 | |
1291 | /* Support for static tracepoints. */ | |
0fb4aa4b | 1292 | PACKET_StaticTracepoints, |
4082afcc PA |
1293 | |
1294 | /* Support for installing tracepoints while a trace experiment is | |
1295 | running. */ | |
1e4d1764 | 1296 | PACKET_InstallInTrace, |
4082afcc | 1297 | |
40ab02ce MS |
1298 | PACKET_bc, |
1299 | PACKET_bs, | |
409873ef | 1300 | PACKET_TracepointSource, |
d914c394 | 1301 | PACKET_QAllow, |
78d85199 | 1302 | PACKET_qXfer_fdpic, |
03583c20 | 1303 | PACKET_QDisableRandomization, |
d1feda86 | 1304 | PACKET_QAgent, |
f6f899bf | 1305 | PACKET_QTBuffer_size, |
9accd112 MM |
1306 | PACKET_Qbtrace_off, |
1307 | PACKET_Qbtrace_bts, | |
1308 | PACKET_qXfer_btrace, | |
4082afcc PA |
1309 | |
1310 | /* Support for the QNonStop packet. */ | |
1311 | PACKET_QNonStop, | |
1312 | ||
1313 | /* Support for multi-process extensions. */ | |
1314 | PACKET_multiprocess_feature, | |
1315 | ||
1316 | /* Support for enabling and disabling tracepoints while a trace | |
1317 | experiment is running. */ | |
1318 | PACKET_EnableDisableTracepoints_feature, | |
1319 | ||
1320 | /* Support for collecting strings using the tracenz bytecode. */ | |
1321 | PACKET_tracenz_feature, | |
1322 | ||
1323 | /* Support for continuing to run a trace experiment while GDB is | |
1324 | disconnected. */ | |
1325 | PACKET_DisconnectedTracing_feature, | |
1326 | ||
1327 | /* Support for qXfer:libraries-svr4:read with a non-empty annex. */ | |
1328 | PACKET_augmented_libraries_svr4_read_feature, | |
1329 | ||
444abaca DJ |
1330 | PACKET_MAX |
1331 | }; | |
506fb367 | 1332 | |
444abaca | 1333 | static struct packet_config remote_protocol_packets[PACKET_MAX]; |
dc8acb97 | 1334 | |
4082afcc PA |
1335 | /* Returns whether a given packet or feature is supported. This takes |
1336 | into account the state of the corresponding "set remote foo-packet" | |
1337 | command, which may be used to bypass auto-detection. */ | |
dc8acb97 | 1338 | |
4082afcc PA |
1339 | static enum packet_support |
1340 | packet_config_support (struct packet_config *config) | |
1341 | { | |
1342 | switch (config->detect) | |
444abaca | 1343 | { |
4082afcc PA |
1344 | case AUTO_BOOLEAN_TRUE: |
1345 | return PACKET_ENABLE; | |
1346 | case AUTO_BOOLEAN_FALSE: | |
1347 | return PACKET_DISABLE; | |
1348 | case AUTO_BOOLEAN_AUTO: | |
1349 | return config->support; | |
1350 | default: | |
1351 | gdb_assert_not_reached (_("bad switch")); | |
444abaca | 1352 | } |
4082afcc PA |
1353 | } |
1354 | ||
1355 | /* Same as packet_config_support, but takes the packet's enum value as | |
1356 | argument. */ | |
1357 | ||
1358 | static enum packet_support | |
1359 | packet_support (int packet) | |
1360 | { | |
1361 | struct packet_config *config = &remote_protocol_packets[packet]; | |
1362 | ||
1363 | return packet_config_support (config); | |
dc8acb97 MS |
1364 | } |
1365 | ||
5a2468f5 | 1366 | static void |
444abaca DJ |
1367 | show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty, |
1368 | struct cmd_list_element *c, | |
1369 | const char *value) | |
5a2468f5 | 1370 | { |
444abaca | 1371 | struct packet_config *packet; |
5a2468f5 | 1372 | |
444abaca DJ |
1373 | for (packet = remote_protocol_packets; |
1374 | packet < &remote_protocol_packets[PACKET_MAX]; | |
1375 | packet++) | |
1376 | { | |
1377 | if (&packet->detect == c->var) | |
1378 | { | |
1379 | show_packet_config_cmd (packet); | |
1380 | return; | |
1381 | } | |
1382 | } | |
9b20d036 | 1383 | internal_error (__FILE__, __LINE__, _("Could not find config for %s"), |
444abaca | 1384 | c->name); |
5a2468f5 JM |
1385 | } |
1386 | ||
d471ea57 AC |
1387 | /* Should we try one of the 'Z' requests? */ |
1388 | ||
1389 | enum Z_packet_type | |
1390 | { | |
1391 | Z_PACKET_SOFTWARE_BP, | |
1392 | Z_PACKET_HARDWARE_BP, | |
1393 | Z_PACKET_WRITE_WP, | |
1394 | Z_PACKET_READ_WP, | |
1395 | Z_PACKET_ACCESS_WP, | |
1396 | NR_Z_PACKET_TYPES | |
1397 | }; | |
96baa820 | 1398 | |
d471ea57 | 1399 | /* For compatibility with older distributions. Provide a ``set remote |
23860348 | 1400 | Z-packet ...'' command that updates all the Z packet types. */ |
d471ea57 | 1401 | |
7f19b9a2 | 1402 | static enum auto_boolean remote_Z_packet_detect; |
96baa820 JM |
1403 | |
1404 | static void | |
fba45db2 KB |
1405 | set_remote_protocol_Z_packet_cmd (char *args, int from_tty, |
1406 | struct cmd_list_element *c) | |
96baa820 | 1407 | { |
d471ea57 | 1408 | int i; |
a744cf53 | 1409 | |
d471ea57 | 1410 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) |
4082afcc | 1411 | remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect; |
96baa820 JM |
1412 | } |
1413 | ||
1414 | static void | |
08546159 AC |
1415 | show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty, |
1416 | struct cmd_list_element *c, | |
1417 | const char *value) | |
96baa820 | 1418 | { |
d471ea57 | 1419 | int i; |
a744cf53 | 1420 | |
d471ea57 AC |
1421 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) |
1422 | { | |
444abaca | 1423 | show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]); |
d471ea57 | 1424 | } |
96baa820 JM |
1425 | } |
1426 | ||
4082afcc PA |
1427 | /* Returns true if the multi-process extensions are in effect. */ |
1428 | ||
1429 | static int | |
1430 | remote_multi_process_p (struct remote_state *rs) | |
1431 | { | |
1432 | return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE; | |
1433 | } | |
1434 | ||
23860348 | 1435 | /* Tokens for use by the asynchronous signal handlers for SIGINT. */ |
934b9bac JK |
1436 | static struct async_signal_handler *async_sigint_remote_twice_token; |
1437 | static struct async_signal_handler *async_sigint_remote_token; | |
43ff13b4 | 1438 | |
74531fed PA |
1439 | \f |
1440 | /* Asynchronous signal handle registered as event loop source for | |
1441 | when we have pending events ready to be passed to the core. */ | |
1442 | ||
1443 | static struct async_event_handler *remote_async_inferior_event_token; | |
1444 | ||
c906108c SS |
1445 | \f |
1446 | ||
79d7f229 PA |
1447 | static ptid_t magic_null_ptid; |
1448 | static ptid_t not_sent_ptid; | |
1449 | static ptid_t any_thread_ptid; | |
1450 | ||
0b16c5cf PA |
1451 | /* Find out if the stub attached to PID (and hence GDB should offer to |
1452 | detach instead of killing it when bailing out). */ | |
1453 | ||
1454 | static int | |
1455 | remote_query_attached (int pid) | |
1456 | { | |
1457 | struct remote_state *rs = get_remote_state (); | |
bba74b36 | 1458 | size_t size = get_remote_packet_size (); |
0b16c5cf | 1459 | |
4082afcc | 1460 | if (packet_support (PACKET_qAttached) == PACKET_DISABLE) |
0b16c5cf PA |
1461 | return 0; |
1462 | ||
1463 | if (remote_multi_process_p (rs)) | |
bba74b36 | 1464 | xsnprintf (rs->buf, size, "qAttached:%x", pid); |
0b16c5cf | 1465 | else |
bba74b36 | 1466 | xsnprintf (rs->buf, size, "qAttached"); |
0b16c5cf PA |
1467 | |
1468 | putpkt (rs->buf); | |
1469 | getpkt (&rs->buf, &rs->buf_size, 0); | |
1470 | ||
1471 | switch (packet_ok (rs->buf, | |
1554e9be | 1472 | &remote_protocol_packets[PACKET_qAttached])) |
0b16c5cf PA |
1473 | { |
1474 | case PACKET_OK: | |
1475 | if (strcmp (rs->buf, "1") == 0) | |
1476 | return 1; | |
1477 | break; | |
1478 | case PACKET_ERROR: | |
1479 | warning (_("Remote failure reply: %s"), rs->buf); | |
1480 | break; | |
1481 | case PACKET_UNKNOWN: | |
1482 | break; | |
1483 | } | |
1484 | ||
1485 | return 0; | |
1486 | } | |
1487 | ||
49c62f2e PA |
1488 | /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID |
1489 | has been invented by GDB, instead of reported by the target. Since | |
1490 | we can be connected to a remote system before before knowing about | |
1491 | any inferior, mark the target with execution when we find the first | |
1492 | inferior. If ATTACHED is 1, then we had just attached to this | |
1493 | inferior. If it is 0, then we just created this inferior. If it | |
1494 | is -1, then try querying the remote stub to find out if it had | |
1495 | attached to the inferior or not. */ | |
1941c569 PA |
1496 | |
1497 | static struct inferior * | |
49c62f2e | 1498 | remote_add_inferior (int fake_pid_p, int pid, int attached) |
1941c569 | 1499 | { |
1941c569 PA |
1500 | struct inferior *inf; |
1501 | ||
0b16c5cf PA |
1502 | /* Check whether this process we're learning about is to be |
1503 | considered attached, or if is to be considered to have been | |
1504 | spawned by the stub. */ | |
1505 | if (attached == -1) | |
1506 | attached = remote_query_attached (pid); | |
1507 | ||
f5656ead | 1508 | if (gdbarch_has_global_solist (target_gdbarch ())) |
6c95b8df PA |
1509 | { |
1510 | /* If the target shares code across all inferiors, then every | |
1511 | attach adds a new inferior. */ | |
1512 | inf = add_inferior (pid); | |
1513 | ||
1514 | /* ... and every inferior is bound to the same program space. | |
1515 | However, each inferior may still have its own address | |
1516 | space. */ | |
1517 | inf->aspace = maybe_new_address_space (); | |
1518 | inf->pspace = current_program_space; | |
1519 | } | |
1520 | else | |
1521 | { | |
1522 | /* In the traditional debugging scenario, there's a 1-1 match | |
1523 | between program/address spaces. We simply bind the inferior | |
1524 | to the program space's address space. */ | |
1525 | inf = current_inferior (); | |
1526 | inferior_appeared (inf, pid); | |
1527 | } | |
1941c569 | 1528 | |
0b16c5cf | 1529 | inf->attach_flag = attached; |
49c62f2e | 1530 | inf->fake_pid_p = fake_pid_p; |
0b16c5cf | 1531 | |
1941c569 PA |
1532 | return inf; |
1533 | } | |
1534 | ||
1535 | /* Add thread PTID to GDB's thread list. Tag it as executing/running | |
1536 | according to RUNNING. */ | |
1537 | ||
c906108c | 1538 | static void |
1941c569 | 1539 | remote_add_thread (ptid_t ptid, int running) |
c906108c | 1540 | { |
b7ea362b PA |
1541 | struct remote_state *rs = get_remote_state (); |
1542 | ||
1543 | /* GDB historically didn't pull threads in the initial connection | |
1544 | setup. If the remote target doesn't even have a concept of | |
1545 | threads (e.g., a bare-metal target), even if internally we | |
1546 | consider that a single-threaded target, mentioning a new thread | |
1547 | might be confusing to the user. Be silent then, preserving the | |
1548 | age old behavior. */ | |
1549 | if (rs->starting_up) | |
1550 | add_thread_silent (ptid); | |
1551 | else | |
1552 | add_thread (ptid); | |
1941c569 PA |
1553 | |
1554 | set_executing (ptid, running); | |
1555 | set_running (ptid, running); | |
1556 | } | |
1557 | ||
1558 | /* Come here when we learn about a thread id from the remote target. | |
1559 | It may be the first time we hear about such thread, so take the | |
1560 | opportunity to add it to GDB's thread list. In case this is the | |
1561 | first time we're noticing its corresponding inferior, add it to | |
1562 | GDB's inferior list as well. */ | |
1563 | ||
1564 | static void | |
1565 | remote_notice_new_inferior (ptid_t currthread, int running) | |
1566 | { | |
c906108c SS |
1567 | /* If this is a new thread, add it to GDB's thread list. |
1568 | If we leave it up to WFI to do this, bad things will happen. */ | |
82f73884 PA |
1569 | |
1570 | if (in_thread_list (currthread) && is_exited (currthread)) | |
1571 | { | |
1572 | /* We're seeing an event on a thread id we knew had exited. | |
1573 | This has to be a new thread reusing the old id. Add it. */ | |
1941c569 | 1574 | remote_add_thread (currthread, running); |
82f73884 PA |
1575 | return; |
1576 | } | |
1577 | ||
79d7f229 | 1578 | if (!in_thread_list (currthread)) |
c0a2216e | 1579 | { |
1941c569 | 1580 | struct inferior *inf = NULL; |
bad34192 | 1581 | int pid = ptid_get_pid (currthread); |
1941c569 | 1582 | |
bad34192 PA |
1583 | if (ptid_is_pid (inferior_ptid) |
1584 | && pid == ptid_get_pid (inferior_ptid)) | |
c0a2216e PA |
1585 | { |
1586 | /* inferior_ptid has no thread member yet. This can happen | |
1587 | with the vAttach -> remote_wait,"TAAthread:" path if the | |
1588 | stub doesn't support qC. This is the first stop reported | |
1589 | after an attach, so this is the main thread. Update the | |
1590 | ptid in the thread list. */ | |
bad34192 PA |
1591 | if (in_thread_list (pid_to_ptid (pid))) |
1592 | thread_change_ptid (inferior_ptid, currthread); | |
1593 | else | |
1594 | { | |
1595 | remote_add_thread (currthread, running); | |
1596 | inferior_ptid = currthread; | |
1597 | } | |
dc146f7c | 1598 | return; |
c0a2216e | 1599 | } |
82f73884 PA |
1600 | |
1601 | if (ptid_equal (magic_null_ptid, inferior_ptid)) | |
c0a2216e PA |
1602 | { |
1603 | /* inferior_ptid is not set yet. This can happen with the | |
1604 | vRun -> remote_wait,"TAAthread:" path if the stub | |
1605 | doesn't support qC. This is the first stop reported | |
1606 | after an attach, so this is the main thread. Update the | |
1607 | ptid in the thread list. */ | |
dc146f7c | 1608 | thread_change_ptid (inferior_ptid, currthread); |
82f73884 | 1609 | return; |
c0a2216e | 1610 | } |
82f73884 | 1611 | |
29c87f7f PA |
1612 | /* When connecting to a target remote, or to a target |
1613 | extended-remote which already was debugging an inferior, we | |
1614 | may not know about it yet. Add it before adding its child | |
1615 | thread, so notifications are emitted in a sensible order. */ | |
1616 | if (!in_inferior_list (ptid_get_pid (currthread))) | |
49c62f2e PA |
1617 | { |
1618 | struct remote_state *rs = get_remote_state (); | |
1619 | int fake_pid_p = !remote_multi_process_p (rs); | |
1620 | ||
1621 | inf = remote_add_inferior (fake_pid_p, | |
1622 | ptid_get_pid (currthread), -1); | |
1623 | } | |
29c87f7f | 1624 | |
82f73884 | 1625 | /* This is really a new thread. Add it. */ |
1941c569 PA |
1626 | remote_add_thread (currthread, running); |
1627 | ||
1628 | /* If we found a new inferior, let the common code do whatever | |
1629 | it needs to with it (e.g., read shared libraries, insert | |
b7ea362b PA |
1630 | breakpoints), unless we're just setting up an all-stop |
1631 | connection. */ | |
1941c569 | 1632 | if (inf != NULL) |
b7ea362b PA |
1633 | { |
1634 | struct remote_state *rs = get_remote_state (); | |
1635 | ||
1636 | if (non_stop || !rs->starting_up) | |
1637 | notice_new_inferior (currthread, running, 0); | |
1638 | } | |
c0a2216e | 1639 | } |
c906108c SS |
1640 | } |
1641 | ||
dc146f7c VP |
1642 | /* Return the private thread data, creating it if necessary. */ |
1643 | ||
70221824 | 1644 | static struct private_thread_info * |
dc146f7c VP |
1645 | demand_private_info (ptid_t ptid) |
1646 | { | |
1647 | struct thread_info *info = find_thread_ptid (ptid); | |
1648 | ||
1649 | gdb_assert (info); | |
1650 | ||
1651 | if (!info->private) | |
1652 | { | |
1653 | info->private = xmalloc (sizeof (*(info->private))); | |
1654 | info->private_dtor = free_private_thread_info; | |
1655 | info->private->core = -1; | |
1656 | info->private->extra = 0; | |
1657 | } | |
1658 | ||
1659 | return info->private; | |
1660 | } | |
1661 | ||
74531fed PA |
1662 | /* Call this function as a result of |
1663 | 1) A halt indication (T packet) containing a thread id | |
1664 | 2) A direct query of currthread | |
0df8b418 | 1665 | 3) Successful execution of set thread */ |
74531fed PA |
1666 | |
1667 | static void | |
47f8a51d | 1668 | record_currthread (struct remote_state *rs, ptid_t currthread) |
74531fed | 1669 | { |
47f8a51d | 1670 | rs->general_thread = currthread; |
74531fed PA |
1671 | } |
1672 | ||
89be2091 DJ |
1673 | /* If 'QPassSignals' is supported, tell the remote stub what signals |
1674 | it can simply pass through to the inferior without reporting. */ | |
1675 | ||
1676 | static void | |
94bedb42 TT |
1677 | remote_pass_signals (struct target_ops *self, |
1678 | int numsigs, unsigned char *pass_signals) | |
89be2091 | 1679 | { |
4082afcc | 1680 | if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE) |
89be2091 DJ |
1681 | { |
1682 | char *pass_packet, *p; | |
89be2091 | 1683 | int count = 0, i; |
747dc59d | 1684 | struct remote_state *rs = get_remote_state (); |
89be2091 DJ |
1685 | |
1686 | gdb_assert (numsigs < 256); | |
1687 | for (i = 0; i < numsigs; i++) | |
1688 | { | |
2455069d | 1689 | if (pass_signals[i]) |
89be2091 DJ |
1690 | count++; |
1691 | } | |
1692 | pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1); | |
1693 | strcpy (pass_packet, "QPassSignals:"); | |
1694 | p = pass_packet + strlen (pass_packet); | |
1695 | for (i = 0; i < numsigs; i++) | |
1696 | { | |
2455069d | 1697 | if (pass_signals[i]) |
89be2091 DJ |
1698 | { |
1699 | if (i >= 16) | |
1700 | *p++ = tohex (i >> 4); | |
1701 | *p++ = tohex (i & 15); | |
1702 | if (count) | |
1703 | *p++ = ';'; | |
1704 | else | |
1705 | break; | |
1706 | count--; | |
1707 | } | |
1708 | } | |
1709 | *p = 0; | |
747dc59d | 1710 | if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet)) |
89be2091 | 1711 | { |
89be2091 DJ |
1712 | putpkt (pass_packet); |
1713 | getpkt (&rs->buf, &rs->buf_size, 0); | |
8dc5b319 | 1714 | packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]); |
747dc59d TT |
1715 | if (rs->last_pass_packet) |
1716 | xfree (rs->last_pass_packet); | |
1717 | rs->last_pass_packet = pass_packet; | |
89be2091 DJ |
1718 | } |
1719 | else | |
1720 | xfree (pass_packet); | |
1721 | } | |
1722 | } | |
1723 | ||
9b224c5e PA |
1724 | /* If 'QProgramSignals' is supported, tell the remote stub what |
1725 | signals it should pass through to the inferior when detaching. */ | |
1726 | ||
1727 | static void | |
daf5e9b6 TT |
1728 | remote_program_signals (struct target_ops *self, |
1729 | int numsigs, unsigned char *signals) | |
9b224c5e | 1730 | { |
4082afcc | 1731 | if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE) |
9b224c5e PA |
1732 | { |
1733 | char *packet, *p; | |
1734 | int count = 0, i; | |
5e4a05c4 | 1735 | struct remote_state *rs = get_remote_state (); |
9b224c5e PA |
1736 | |
1737 | gdb_assert (numsigs < 256); | |
1738 | for (i = 0; i < numsigs; i++) | |
1739 | { | |
1740 | if (signals[i]) | |
1741 | count++; | |
1742 | } | |
1743 | packet = xmalloc (count * 3 + strlen ("QProgramSignals:") + 1); | |
1744 | strcpy (packet, "QProgramSignals:"); | |
1745 | p = packet + strlen (packet); | |
1746 | for (i = 0; i < numsigs; i++) | |
1747 | { | |
1748 | if (signal_pass_state (i)) | |
1749 | { | |
1750 | if (i >= 16) | |
1751 | *p++ = tohex (i >> 4); | |
1752 | *p++ = tohex (i & 15); | |
1753 | if (count) | |
1754 | *p++ = ';'; | |
1755 | else | |
1756 | break; | |
1757 | count--; | |
1758 | } | |
1759 | } | |
1760 | *p = 0; | |
5e4a05c4 TT |
1761 | if (!rs->last_program_signals_packet |
1762 | || strcmp (rs->last_program_signals_packet, packet) != 0) | |
9b224c5e | 1763 | { |
9b224c5e PA |
1764 | putpkt (packet); |
1765 | getpkt (&rs->buf, &rs->buf_size, 0); | |
8dc5b319 | 1766 | packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]); |
5e4a05c4 TT |
1767 | xfree (rs->last_program_signals_packet); |
1768 | rs->last_program_signals_packet = packet; | |
9b224c5e PA |
1769 | } |
1770 | else | |
1771 | xfree (packet); | |
1772 | } | |
1773 | } | |
1774 | ||
79d7f229 PA |
1775 | /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is |
1776 | MINUS_ONE_PTID, set the thread to -1, so the stub returns the | |
1777 | thread. If GEN is set, set the general thread, if not, then set | |
1778 | the step/continue thread. */ | |
c906108c | 1779 | static void |
79d7f229 | 1780 | set_thread (struct ptid ptid, int gen) |
c906108c | 1781 | { |
d01949b6 | 1782 | struct remote_state *rs = get_remote_state (); |
47f8a51d | 1783 | ptid_t state = gen ? rs->general_thread : rs->continue_thread; |
6d820c5c | 1784 | char *buf = rs->buf; |
79d7f229 | 1785 | char *endbuf = rs->buf + get_remote_packet_size (); |
c906108c | 1786 | |
79d7f229 | 1787 | if (ptid_equal (state, ptid)) |
c906108c SS |
1788 | return; |
1789 | ||
79d7f229 PA |
1790 | *buf++ = 'H'; |
1791 | *buf++ = gen ? 'g' : 'c'; | |
1792 | if (ptid_equal (ptid, magic_null_ptid)) | |
1793 | xsnprintf (buf, endbuf - buf, "0"); | |
1794 | else if (ptid_equal (ptid, any_thread_ptid)) | |
1795 | xsnprintf (buf, endbuf - buf, "0"); | |
1796 | else if (ptid_equal (ptid, minus_one_ptid)) | |
1797 | xsnprintf (buf, endbuf - buf, "-1"); | |
1798 | else | |
82f73884 | 1799 | write_ptid (buf, endbuf, ptid); |
79d7f229 | 1800 | putpkt (rs->buf); |
6d820c5c | 1801 | getpkt (&rs->buf, &rs->buf_size, 0); |
c906108c | 1802 | if (gen) |
47f8a51d | 1803 | rs->general_thread = ptid; |
c906108c | 1804 | else |
47f8a51d | 1805 | rs->continue_thread = ptid; |
c906108c | 1806 | } |
79d7f229 PA |
1807 | |
1808 | static void | |
1809 | set_general_thread (struct ptid ptid) | |
1810 | { | |
1811 | set_thread (ptid, 1); | |
1812 | } | |
1813 | ||
1814 | static void | |
1815 | set_continue_thread (struct ptid ptid) | |
1816 | { | |
1817 | set_thread (ptid, 0); | |
1818 | } | |
1819 | ||
3c9c4b83 PA |
1820 | /* Change the remote current process. Which thread within the process |
1821 | ends up selected isn't important, as long as it is the same process | |
1822 | as what INFERIOR_PTID points to. | |
1823 | ||
1824 | This comes from that fact that there is no explicit notion of | |
1825 | "selected process" in the protocol. The selected process for | |
1826 | general operations is the process the selected general thread | |
1827 | belongs to. */ | |
1828 | ||
1829 | static void | |
1830 | set_general_process (void) | |
1831 | { | |
1832 | struct remote_state *rs = get_remote_state (); | |
1833 | ||
1834 | /* If the remote can't handle multiple processes, don't bother. */ | |
901f9912 | 1835 | if (!rs->extended || !remote_multi_process_p (rs)) |
3c9c4b83 PA |
1836 | return; |
1837 | ||
1838 | /* We only need to change the remote current thread if it's pointing | |
1839 | at some other process. */ | |
47f8a51d | 1840 | if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid)) |
3c9c4b83 PA |
1841 | set_general_thread (inferior_ptid); |
1842 | } | |
1843 | ||
c906108c | 1844 | \f |
7d1a114c PA |
1845 | /* Return nonzero if this is the main thread that we made up ourselves |
1846 | to model non-threaded targets as single-threaded. */ | |
c906108c SS |
1847 | |
1848 | static int | |
7d1a114c | 1849 | remote_thread_always_alive (struct target_ops *ops, ptid_t ptid) |
c906108c | 1850 | { |
6d820c5c | 1851 | struct remote_state *rs = get_remote_state (); |
82f73884 | 1852 | char *p, *endp; |
c906108c | 1853 | |
c0a2216e PA |
1854 | if (ptid_equal (ptid, magic_null_ptid)) |
1855 | /* The main thread is always alive. */ | |
1856 | return 1; | |
1857 | ||
ba348170 | 1858 | if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0) |
c0a2216e PA |
1859 | /* The main thread is always alive. This can happen after a |
1860 | vAttach, if the remote side doesn't support | |
1861 | multi-threading. */ | |
1862 | return 1; | |
1863 | ||
7d1a114c PA |
1864 | return 0; |
1865 | } | |
1866 | ||
1867 | /* Return nonzero if the thread PTID is still alive on the remote | |
1868 | system. */ | |
1869 | ||
1870 | static int | |
1871 | remote_thread_alive (struct target_ops *ops, ptid_t ptid) | |
1872 | { | |
1873 | struct remote_state *rs = get_remote_state (); | |
1874 | char *p, *endp; | |
1875 | ||
1876 | /* Check if this is a thread that we made up ourselves to model | |
1877 | non-threaded targets as single-threaded. */ | |
1878 | if (remote_thread_always_alive (ops, ptid)) | |
1879 | return 1; | |
1880 | ||
82f73884 PA |
1881 | p = rs->buf; |
1882 | endp = rs->buf + get_remote_packet_size (); | |
1883 | ||
1884 | *p++ = 'T'; | |
1885 | write_ptid (p, endp, ptid); | |
1886 | ||
2e9f7625 | 1887 | putpkt (rs->buf); |
6d820c5c | 1888 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 1889 | return (rs->buf[0] == 'O' && rs->buf[1] == 'K'); |
c906108c SS |
1890 | } |
1891 | ||
1892 | /* About these extended threadlist and threadinfo packets. They are | |
1893 | variable length packets but, the fields within them are often fixed | |
1894 | length. They are redundent enough to send over UDP as is the | |
1895 | remote protocol in general. There is a matching unit test module | |
1896 | in libstub. */ | |
1897 | ||
23860348 | 1898 | /* WARNING: This threadref data structure comes from the remote O.S., |
0df8b418 | 1899 | libstub protocol encoding, and remote.c. It is not particularly |
23860348 | 1900 | changable. */ |
cce74817 JM |
1901 | |
1902 | /* Right now, the internal structure is int. We want it to be bigger. | |
0df8b418 | 1903 | Plan to fix this. */ |
cce74817 | 1904 | |
23860348 | 1905 | typedef int gdb_threadref; /* Internal GDB thread reference. */ |
cce74817 | 1906 | |
9d1f7ab2 | 1907 | /* gdb_ext_thread_info is an internal GDB data structure which is |
cfde0993 | 1908 | equivalent to the reply of the remote threadinfo packet. */ |
cce74817 JM |
1909 | |
1910 | struct gdb_ext_thread_info | |
c5aa993b | 1911 | { |
23860348 | 1912 | threadref threadid; /* External form of thread reference. */ |
2bc416ba | 1913 | int active; /* Has state interesting to GDB? |
23860348 | 1914 | regs, stack. */ |
2bc416ba | 1915 | char display[256]; /* Brief state display, name, |
cedea757 | 1916 | blocked/suspended. */ |
23860348 | 1917 | char shortname[32]; /* To be used to name threads. */ |
2bc416ba | 1918 | char more_display[256]; /* Long info, statistics, queue depth, |
23860348 | 1919 | whatever. */ |
c5aa993b | 1920 | }; |
cce74817 JM |
1921 | |
1922 | /* The volume of remote transfers can be limited by submitting | |
1923 | a mask containing bits specifying the desired information. | |
1924 | Use a union of these values as the 'selection' parameter to | |
0df8b418 | 1925 | get_thread_info. FIXME: Make these TAG names more thread specific. */ |
cce74817 JM |
1926 | |
1927 | #define TAG_THREADID 1 | |
1928 | #define TAG_EXISTS 2 | |
1929 | #define TAG_DISPLAY 4 | |
1930 | #define TAG_THREADNAME 8 | |
c5aa993b | 1931 | #define TAG_MOREDISPLAY 16 |
cce74817 | 1932 | |
23860348 | 1933 | #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2) |
c906108c | 1934 | |
a14ed312 | 1935 | static char *unpack_nibble (char *buf, int *val); |
cce74817 | 1936 | |
a14ed312 | 1937 | static char *unpack_byte (char *buf, int *value); |
cce74817 | 1938 | |
a14ed312 | 1939 | static char *pack_int (char *buf, int value); |
cce74817 | 1940 | |
a14ed312 | 1941 | static char *unpack_int (char *buf, int *value); |
cce74817 | 1942 | |
a14ed312 | 1943 | static char *unpack_string (char *src, char *dest, int length); |
cce74817 | 1944 | |
23860348 | 1945 | static char *pack_threadid (char *pkt, threadref *id); |
cce74817 | 1946 | |
23860348 | 1947 | static char *unpack_threadid (char *inbuf, threadref *id); |
cce74817 | 1948 | |
23860348 | 1949 | void int_to_threadref (threadref *id, int value); |
cce74817 | 1950 | |
23860348 | 1951 | static int threadref_to_int (threadref *ref); |
cce74817 | 1952 | |
23860348 | 1953 | static void copy_threadref (threadref *dest, threadref *src); |
cce74817 | 1954 | |
23860348 | 1955 | static int threadmatch (threadref *dest, threadref *src); |
cce74817 | 1956 | |
2bc416ba | 1957 | static char *pack_threadinfo_request (char *pkt, int mode, |
23860348 | 1958 | threadref *id); |
cce74817 | 1959 | |
a14ed312 | 1960 | static int remote_unpack_thread_info_response (char *pkt, |
23860348 | 1961 | threadref *expectedref, |
a14ed312 KB |
1962 | struct gdb_ext_thread_info |
1963 | *info); | |
cce74817 JM |
1964 | |
1965 | ||
2bc416ba | 1966 | static int remote_get_threadinfo (threadref *threadid, |
23860348 | 1967 | int fieldset, /*TAG mask */ |
a14ed312 | 1968 | struct gdb_ext_thread_info *info); |
cce74817 | 1969 | |
a14ed312 KB |
1970 | static char *pack_threadlist_request (char *pkt, int startflag, |
1971 | int threadcount, | |
23860348 | 1972 | threadref *nextthread); |
cce74817 | 1973 | |
a14ed312 KB |
1974 | static int parse_threadlist_response (char *pkt, |
1975 | int result_limit, | |
23860348 | 1976 | threadref *original_echo, |
2bc416ba | 1977 | threadref *resultlist, |
23860348 | 1978 | int *doneflag); |
cce74817 | 1979 | |
a14ed312 | 1980 | static int remote_get_threadlist (int startflag, |
23860348 | 1981 | threadref *nextthread, |
a14ed312 KB |
1982 | int result_limit, |
1983 | int *done, | |
2bc416ba | 1984 | int *result_count, |
23860348 | 1985 | threadref *threadlist); |
cce74817 | 1986 | |
23860348 | 1987 | typedef int (*rmt_thread_action) (threadref *ref, void *context); |
cce74817 | 1988 | |
a14ed312 KB |
1989 | static int remote_threadlist_iterator (rmt_thread_action stepfunction, |
1990 | void *context, int looplimit); | |
cce74817 | 1991 | |
23860348 | 1992 | static int remote_newthread_step (threadref *ref, void *context); |
cce74817 | 1993 | |
82f73884 PA |
1994 | |
1995 | /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the | |
1996 | buffer we're allowed to write to. Returns | |
1997 | BUF+CHARACTERS_WRITTEN. */ | |
1998 | ||
1999 | static char * | |
2000 | write_ptid (char *buf, const char *endbuf, ptid_t ptid) | |
2001 | { | |
2002 | int pid, tid; | |
2003 | struct remote_state *rs = get_remote_state (); | |
2004 | ||
2005 | if (remote_multi_process_p (rs)) | |
2006 | { | |
2007 | pid = ptid_get_pid (ptid); | |
2008 | if (pid < 0) | |
2009 | buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid); | |
2010 | else | |
2011 | buf += xsnprintf (buf, endbuf - buf, "p%x.", pid); | |
2012 | } | |
ba348170 | 2013 | tid = ptid_get_lwp (ptid); |
82f73884 PA |
2014 | if (tid < 0) |
2015 | buf += xsnprintf (buf, endbuf - buf, "-%x", -tid); | |
2016 | else | |
2017 | buf += xsnprintf (buf, endbuf - buf, "%x", tid); | |
2018 | ||
2019 | return buf; | |
2020 | } | |
2021 | ||
2022 | /* Extract a PTID from BUF. If non-null, OBUF is set to the to one | |
2023 | passed the last parsed char. Returns null_ptid on error. */ | |
2024 | ||
2025 | static ptid_t | |
2026 | read_ptid (char *buf, char **obuf) | |
2027 | { | |
2028 | char *p = buf; | |
2029 | char *pp; | |
2030 | ULONGEST pid = 0, tid = 0; | |
82f73884 PA |
2031 | |
2032 | if (*p == 'p') | |
2033 | { | |
2034 | /* Multi-process ptid. */ | |
2035 | pp = unpack_varlen_hex (p + 1, &pid); | |
2036 | if (*pp != '.') | |
b37520b6 | 2037 | error (_("invalid remote ptid: %s"), p); |
82f73884 PA |
2038 | |
2039 | p = pp; | |
2040 | pp = unpack_varlen_hex (p + 1, &tid); | |
2041 | if (obuf) | |
2042 | *obuf = pp; | |
ba348170 | 2043 | return ptid_build (pid, tid, 0); |
82f73884 PA |
2044 | } |
2045 | ||
2046 | /* No multi-process. Just a tid. */ | |
2047 | pp = unpack_varlen_hex (p, &tid); | |
2048 | ||
2049 | /* Since the stub is not sending a process id, then default to | |
ca19bf23 PA |
2050 | what's in inferior_ptid, unless it's null at this point. If so, |
2051 | then since there's no way to know the pid of the reported | |
2052 | threads, use the magic number. */ | |
2053 | if (ptid_equal (inferior_ptid, null_ptid)) | |
2054 | pid = ptid_get_pid (magic_null_ptid); | |
2055 | else | |
2056 | pid = ptid_get_pid (inferior_ptid); | |
82f73884 PA |
2057 | |
2058 | if (obuf) | |
2059 | *obuf = pp; | |
ba348170 | 2060 | return ptid_build (pid, tid, 0); |
82f73884 PA |
2061 | } |
2062 | ||
c906108c | 2063 | static int |
fba45db2 | 2064 | stubhex (int ch) |
c906108c SS |
2065 | { |
2066 | if (ch >= 'a' && ch <= 'f') | |
2067 | return ch - 'a' + 10; | |
2068 | if (ch >= '0' && ch <= '9') | |
2069 | return ch - '0'; | |
2070 | if (ch >= 'A' && ch <= 'F') | |
2071 | return ch - 'A' + 10; | |
2072 | return -1; | |
2073 | } | |
2074 | ||
2075 | static int | |
fba45db2 | 2076 | stub_unpack_int (char *buff, int fieldlength) |
c906108c SS |
2077 | { |
2078 | int nibble; | |
2079 | int retval = 0; | |
2080 | ||
2081 | while (fieldlength) | |
2082 | { | |
2083 | nibble = stubhex (*buff++); | |
2084 | retval |= nibble; | |
2085 | fieldlength--; | |
2086 | if (fieldlength) | |
2087 | retval = retval << 4; | |
2088 | } | |
2089 | return retval; | |
2090 | } | |
2091 | ||
c906108c | 2092 | static char * |
fba45db2 | 2093 | unpack_nibble (char *buf, int *val) |
c906108c | 2094 | { |
b7589f7d | 2095 | *val = fromhex (*buf++); |
c906108c SS |
2096 | return buf; |
2097 | } | |
2098 | ||
c906108c | 2099 | static char * |
fba45db2 | 2100 | unpack_byte (char *buf, int *value) |
c906108c SS |
2101 | { |
2102 | *value = stub_unpack_int (buf, 2); | |
2103 | return buf + 2; | |
2104 | } | |
2105 | ||
2106 | static char * | |
fba45db2 | 2107 | pack_int (char *buf, int value) |
c906108c SS |
2108 | { |
2109 | buf = pack_hex_byte (buf, (value >> 24) & 0xff); | |
2110 | buf = pack_hex_byte (buf, (value >> 16) & 0xff); | |
2111 | buf = pack_hex_byte (buf, (value >> 8) & 0x0ff); | |
2112 | buf = pack_hex_byte (buf, (value & 0xff)); | |
2113 | return buf; | |
2114 | } | |
2115 | ||
2116 | static char * | |
fba45db2 | 2117 | unpack_int (char *buf, int *value) |
c906108c SS |
2118 | { |
2119 | *value = stub_unpack_int (buf, 8); | |
2120 | return buf + 8; | |
2121 | } | |
2122 | ||
23860348 | 2123 | #if 0 /* Currently unused, uncomment when needed. */ |
a14ed312 | 2124 | static char *pack_string (char *pkt, char *string); |
c906108c SS |
2125 | |
2126 | static char * | |
fba45db2 | 2127 | pack_string (char *pkt, char *string) |
c906108c SS |
2128 | { |
2129 | char ch; | |
2130 | int len; | |
2131 | ||
2132 | len = strlen (string); | |
2133 | if (len > 200) | |
23860348 | 2134 | len = 200; /* Bigger than most GDB packets, junk??? */ |
c906108c SS |
2135 | pkt = pack_hex_byte (pkt, len); |
2136 | while (len-- > 0) | |
2137 | { | |
2138 | ch = *string++; | |
2139 | if ((ch == '\0') || (ch == '#')) | |
23860348 | 2140 | ch = '*'; /* Protect encapsulation. */ |
c906108c SS |
2141 | *pkt++ = ch; |
2142 | } | |
2143 | return pkt; | |
2144 | } | |
2145 | #endif /* 0 (unused) */ | |
2146 | ||
2147 | static char * | |
fba45db2 | 2148 | unpack_string (char *src, char *dest, int length) |
c906108c SS |
2149 | { |
2150 | while (length--) | |
2151 | *dest++ = *src++; | |
2152 | *dest = '\0'; | |
2153 | return src; | |
2154 | } | |
2155 | ||
2156 | static char * | |
fba45db2 | 2157 | pack_threadid (char *pkt, threadref *id) |
c906108c SS |
2158 | { |
2159 | char *limit; | |
2160 | unsigned char *altid; | |
2161 | ||
2162 | altid = (unsigned char *) id; | |
2163 | limit = pkt + BUF_THREAD_ID_SIZE; | |
2164 | while (pkt < limit) | |
2165 | pkt = pack_hex_byte (pkt, *altid++); | |
2166 | return pkt; | |
2167 | } | |
2168 | ||
2169 | ||
2170 | static char * | |
fba45db2 | 2171 | unpack_threadid (char *inbuf, threadref *id) |
c906108c SS |
2172 | { |
2173 | char *altref; | |
2174 | char *limit = inbuf + BUF_THREAD_ID_SIZE; | |
2175 | int x, y; | |
2176 | ||
2177 | altref = (char *) id; | |
2178 | ||
2179 | while (inbuf < limit) | |
2180 | { | |
2181 | x = stubhex (*inbuf++); | |
2182 | y = stubhex (*inbuf++); | |
2183 | *altref++ = (x << 4) | y; | |
2184 | } | |
2185 | return inbuf; | |
2186 | } | |
2187 | ||
2188 | /* Externally, threadrefs are 64 bits but internally, they are still | |
0df8b418 | 2189 | ints. This is due to a mismatch of specifications. We would like |
c906108c SS |
2190 | to use 64bit thread references internally. This is an adapter |
2191 | function. */ | |
2192 | ||
2193 | void | |
fba45db2 | 2194 | int_to_threadref (threadref *id, int value) |
c906108c SS |
2195 | { |
2196 | unsigned char *scan; | |
2197 | ||
2198 | scan = (unsigned char *) id; | |
2199 | { | |
2200 | int i = 4; | |
2201 | while (i--) | |
2202 | *scan++ = 0; | |
2203 | } | |
2204 | *scan++ = (value >> 24) & 0xff; | |
2205 | *scan++ = (value >> 16) & 0xff; | |
2206 | *scan++ = (value >> 8) & 0xff; | |
2207 | *scan++ = (value & 0xff); | |
2208 | } | |
2209 | ||
2210 | static int | |
fba45db2 | 2211 | threadref_to_int (threadref *ref) |
c906108c SS |
2212 | { |
2213 | int i, value = 0; | |
2214 | unsigned char *scan; | |
2215 | ||
cfd77fa1 | 2216 | scan = *ref; |
c906108c SS |
2217 | scan += 4; |
2218 | i = 4; | |
2219 | while (i-- > 0) | |
2220 | value = (value << 8) | ((*scan++) & 0xff); | |
2221 | return value; | |
2222 | } | |
2223 | ||
2224 | static void | |
fba45db2 | 2225 | copy_threadref (threadref *dest, threadref *src) |
c906108c SS |
2226 | { |
2227 | int i; | |
2228 | unsigned char *csrc, *cdest; | |
2229 | ||
2230 | csrc = (unsigned char *) src; | |
2231 | cdest = (unsigned char *) dest; | |
2232 | i = 8; | |
2233 | while (i--) | |
2234 | *cdest++ = *csrc++; | |
2235 | } | |
2236 | ||
2237 | static int | |
fba45db2 | 2238 | threadmatch (threadref *dest, threadref *src) |
c906108c | 2239 | { |
23860348 | 2240 | /* Things are broken right now, so just assume we got a match. */ |
c906108c SS |
2241 | #if 0 |
2242 | unsigned char *srcp, *destp; | |
2243 | int i, result; | |
2244 | srcp = (char *) src; | |
2245 | destp = (char *) dest; | |
2246 | ||
2247 | result = 1; | |
2248 | while (i-- > 0) | |
2249 | result &= (*srcp++ == *destp++) ? 1 : 0; | |
2250 | return result; | |
2251 | #endif | |
2252 | return 1; | |
2253 | } | |
2254 | ||
2255 | /* | |
c5aa993b JM |
2256 | threadid:1, # always request threadid |
2257 | context_exists:2, | |
2258 | display:4, | |
2259 | unique_name:8, | |
2260 | more_display:16 | |
2261 | */ | |
c906108c SS |
2262 | |
2263 | /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */ | |
2264 | ||
2265 | static char * | |
fba45db2 | 2266 | pack_threadinfo_request (char *pkt, int mode, threadref *id) |
c906108c | 2267 | { |
23860348 MS |
2268 | *pkt++ = 'q'; /* Info Query */ |
2269 | *pkt++ = 'P'; /* process or thread info */ | |
2270 | pkt = pack_int (pkt, mode); /* mode */ | |
c906108c | 2271 | pkt = pack_threadid (pkt, id); /* threadid */ |
23860348 | 2272 | *pkt = '\0'; /* terminate */ |
c906108c SS |
2273 | return pkt; |
2274 | } | |
2275 | ||
23860348 | 2276 | /* These values tag the fields in a thread info response packet. */ |
c906108c | 2277 | /* Tagging the fields allows us to request specific fields and to |
23860348 | 2278 | add more fields as time goes by. */ |
c906108c | 2279 | |
23860348 | 2280 | #define TAG_THREADID 1 /* Echo the thread identifier. */ |
c5aa993b | 2281 | #define TAG_EXISTS 2 /* Is this process defined enough to |
23860348 | 2282 | fetch registers and its stack? */ |
c5aa993b | 2283 | #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */ |
23860348 | 2284 | #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */ |
802188a7 | 2285 | #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about |
23860348 | 2286 | the process. */ |
c906108c SS |
2287 | |
2288 | static int | |
fba45db2 KB |
2289 | remote_unpack_thread_info_response (char *pkt, threadref *expectedref, |
2290 | struct gdb_ext_thread_info *info) | |
c906108c | 2291 | { |
d01949b6 | 2292 | struct remote_state *rs = get_remote_state (); |
c906108c | 2293 | int mask, length; |
cfd77fa1 | 2294 | int tag; |
c906108c | 2295 | threadref ref; |
6d820c5c | 2296 | char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */ |
c906108c SS |
2297 | int retval = 1; |
2298 | ||
23860348 | 2299 | /* info->threadid = 0; FIXME: implement zero_threadref. */ |
c906108c SS |
2300 | info->active = 0; |
2301 | info->display[0] = '\0'; | |
2302 | info->shortname[0] = '\0'; | |
2303 | info->more_display[0] = '\0'; | |
2304 | ||
23860348 MS |
2305 | /* Assume the characters indicating the packet type have been |
2306 | stripped. */ | |
c906108c SS |
2307 | pkt = unpack_int (pkt, &mask); /* arg mask */ |
2308 | pkt = unpack_threadid (pkt, &ref); | |
2309 | ||
2310 | if (mask == 0) | |
8a3fe4f8 | 2311 | warning (_("Incomplete response to threadinfo request.")); |
c906108c | 2312 | if (!threadmatch (&ref, expectedref)) |
23860348 | 2313 | { /* This is an answer to a different request. */ |
8a3fe4f8 | 2314 | warning (_("ERROR RMT Thread info mismatch.")); |
c906108c SS |
2315 | return 0; |
2316 | } | |
2317 | copy_threadref (&info->threadid, &ref); | |
2318 | ||
23860348 | 2319 | /* Loop on tagged fields , try to bail if somthing goes wrong. */ |
c906108c | 2320 | |
23860348 MS |
2321 | /* Packets are terminated with nulls. */ |
2322 | while ((pkt < limit) && mask && *pkt) | |
c906108c SS |
2323 | { |
2324 | pkt = unpack_int (pkt, &tag); /* tag */ | |
23860348 MS |
2325 | pkt = unpack_byte (pkt, &length); /* length */ |
2326 | if (!(tag & mask)) /* Tags out of synch with mask. */ | |
c906108c | 2327 | { |
8a3fe4f8 | 2328 | warning (_("ERROR RMT: threadinfo tag mismatch.")); |
c906108c SS |
2329 | retval = 0; |
2330 | break; | |
2331 | } | |
2332 | if (tag == TAG_THREADID) | |
2333 | { | |
2334 | if (length != 16) | |
2335 | { | |
8a3fe4f8 | 2336 | warning (_("ERROR RMT: length of threadid is not 16.")); |
c906108c SS |
2337 | retval = 0; |
2338 | break; | |
2339 | } | |
2340 | pkt = unpack_threadid (pkt, &ref); | |
2341 | mask = mask & ~TAG_THREADID; | |
2342 | continue; | |
2343 | } | |
2344 | if (tag == TAG_EXISTS) | |
2345 | { | |
2346 | info->active = stub_unpack_int (pkt, length); | |
2347 | pkt += length; | |
2348 | mask = mask & ~(TAG_EXISTS); | |
2349 | if (length > 8) | |
2350 | { | |
8a3fe4f8 | 2351 | warning (_("ERROR RMT: 'exists' length too long.")); |
c906108c SS |
2352 | retval = 0; |
2353 | break; | |
2354 | } | |
2355 | continue; | |
2356 | } | |
2357 | if (tag == TAG_THREADNAME) | |
2358 | { | |
2359 | pkt = unpack_string (pkt, &info->shortname[0], length); | |
2360 | mask = mask & ~TAG_THREADNAME; | |
2361 | continue; | |
2362 | } | |
2363 | if (tag == TAG_DISPLAY) | |
2364 | { | |
2365 | pkt = unpack_string (pkt, &info->display[0], length); | |
2366 | mask = mask & ~TAG_DISPLAY; | |
2367 | continue; | |
2368 | } | |
2369 | if (tag == TAG_MOREDISPLAY) | |
2370 | { | |
2371 | pkt = unpack_string (pkt, &info->more_display[0], length); | |
2372 | mask = mask & ~TAG_MOREDISPLAY; | |
2373 | continue; | |
2374 | } | |
8a3fe4f8 | 2375 | warning (_("ERROR RMT: unknown thread info tag.")); |
23860348 | 2376 | break; /* Not a tag we know about. */ |
c906108c SS |
2377 | } |
2378 | return retval; | |
2379 | } | |
2380 | ||
2381 | static int | |
fba45db2 KB |
2382 | remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */ |
2383 | struct gdb_ext_thread_info *info) | |
c906108c | 2384 | { |
d01949b6 | 2385 | struct remote_state *rs = get_remote_state (); |
c906108c | 2386 | int result; |
c906108c | 2387 | |
2e9f7625 DJ |
2388 | pack_threadinfo_request (rs->buf, fieldset, threadid); |
2389 | putpkt (rs->buf); | |
6d820c5c | 2390 | getpkt (&rs->buf, &rs->buf_size, 0); |
3084dd77 PA |
2391 | |
2392 | if (rs->buf[0] == '\0') | |
2393 | return 0; | |
2394 | ||
2e9f7625 | 2395 | result = remote_unpack_thread_info_response (rs->buf + 2, |
23860348 | 2396 | threadid, info); |
c906108c SS |
2397 | return result; |
2398 | } | |
2399 | ||
c906108c SS |
2400 | /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */ |
2401 | ||
2402 | static char * | |
fba45db2 KB |
2403 | pack_threadlist_request (char *pkt, int startflag, int threadcount, |
2404 | threadref *nextthread) | |
c906108c SS |
2405 | { |
2406 | *pkt++ = 'q'; /* info query packet */ | |
2407 | *pkt++ = 'L'; /* Process LIST or threadLIST request */ | |
23860348 | 2408 | pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */ |
c906108c SS |
2409 | pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */ |
2410 | pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */ | |
2411 | *pkt = '\0'; | |
2412 | return pkt; | |
2413 | } | |
2414 | ||
2415 | /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */ | |
2416 | ||
2417 | static int | |
fba45db2 KB |
2418 | parse_threadlist_response (char *pkt, int result_limit, |
2419 | threadref *original_echo, threadref *resultlist, | |
2420 | int *doneflag) | |
c906108c | 2421 | { |
d01949b6 | 2422 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
2423 | char *limit; |
2424 | int count, resultcount, done; | |
2425 | ||
2426 | resultcount = 0; | |
2427 | /* Assume the 'q' and 'M chars have been stripped. */ | |
6d820c5c | 2428 | limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE); |
23860348 | 2429 | /* done parse past here */ |
c906108c SS |
2430 | pkt = unpack_byte (pkt, &count); /* count field */ |
2431 | pkt = unpack_nibble (pkt, &done); | |
2432 | /* The first threadid is the argument threadid. */ | |
2433 | pkt = unpack_threadid (pkt, original_echo); /* should match query packet */ | |
2434 | while ((count-- > 0) && (pkt < limit)) | |
2435 | { | |
2436 | pkt = unpack_threadid (pkt, resultlist++); | |
2437 | if (resultcount++ >= result_limit) | |
2438 | break; | |
2439 | } | |
2440 | if (doneflag) | |
2441 | *doneflag = done; | |
2442 | return resultcount; | |
2443 | } | |
2444 | ||
6dc54d91 PA |
2445 | /* Fetch the next batch of threads from the remote. Returns -1 if the |
2446 | qL packet is not supported, 0 on error and 1 on success. */ | |
2447 | ||
c906108c | 2448 | static int |
fba45db2 KB |
2449 | remote_get_threadlist (int startflag, threadref *nextthread, int result_limit, |
2450 | int *done, int *result_count, threadref *threadlist) | |
c906108c | 2451 | { |
d01949b6 | 2452 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
2453 | int result = 1; |
2454 | ||
23860348 | 2455 | /* Trancate result limit to be smaller than the packet size. */ |
3e43a32a MS |
2456 | if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) |
2457 | >= get_remote_packet_size ()) | |
ea9c271d | 2458 | result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2; |
c906108c | 2459 | |
6d820c5c DJ |
2460 | pack_threadlist_request (rs->buf, startflag, result_limit, nextthread); |
2461 | putpkt (rs->buf); | |
2462 | getpkt (&rs->buf, &rs->buf_size, 0); | |
d8f2712d | 2463 | if (*rs->buf == '\0') |
6dc54d91 PA |
2464 | { |
2465 | /* Packet not supported. */ | |
2466 | return -1; | |
2467 | } | |
2468 | ||
2469 | *result_count = | |
2470 | parse_threadlist_response (rs->buf + 2, result_limit, | |
2471 | &rs->echo_nextthread, threadlist, done); | |
c906108c | 2472 | |
0d031856 | 2473 | if (!threadmatch (&rs->echo_nextthread, nextthread)) |
c906108c | 2474 | { |
23860348 MS |
2475 | /* FIXME: This is a good reason to drop the packet. */ |
2476 | /* Possably, there is a duplicate response. */ | |
c906108c SS |
2477 | /* Possabilities : |
2478 | retransmit immediatly - race conditions | |
2479 | retransmit after timeout - yes | |
2480 | exit | |
2481 | wait for packet, then exit | |
2482 | */ | |
8a3fe4f8 | 2483 | warning (_("HMM: threadlist did not echo arg thread, dropping it.")); |
23860348 | 2484 | return 0; /* I choose simply exiting. */ |
c906108c SS |
2485 | } |
2486 | if (*result_count <= 0) | |
2487 | { | |
2488 | if (*done != 1) | |
2489 | { | |
8a3fe4f8 | 2490 | warning (_("RMT ERROR : failed to get remote thread list.")); |
c906108c SS |
2491 | result = 0; |
2492 | } | |
2493 | return result; /* break; */ | |
2494 | } | |
2495 | if (*result_count > result_limit) | |
2496 | { | |
2497 | *result_count = 0; | |
8a3fe4f8 | 2498 | warning (_("RMT ERROR: threadlist response longer than requested.")); |
c906108c SS |
2499 | return 0; |
2500 | } | |
2501 | return result; | |
2502 | } | |
2503 | ||
6dc54d91 PA |
2504 | /* Fetch the list of remote threads, with the qL packet, and call |
2505 | STEPFUNCTION for each thread found. Stops iterating and returns 1 | |
2506 | if STEPFUNCTION returns true. Stops iterating and returns 0 if the | |
2507 | STEPFUNCTION returns false. If the packet is not supported, | |
2508 | returns -1. */ | |
c906108c | 2509 | |
c906108c | 2510 | static int |
fba45db2 KB |
2511 | remote_threadlist_iterator (rmt_thread_action stepfunction, void *context, |
2512 | int looplimit) | |
c906108c | 2513 | { |
0d031856 | 2514 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
2515 | int done, i, result_count; |
2516 | int startflag = 1; | |
2517 | int result = 1; | |
2518 | int loopcount = 0; | |
c906108c SS |
2519 | |
2520 | done = 0; | |
2521 | while (!done) | |
2522 | { | |
2523 | if (loopcount++ > looplimit) | |
2524 | { | |
2525 | result = 0; | |
8a3fe4f8 | 2526 | warning (_("Remote fetch threadlist -infinite loop-.")); |
c906108c SS |
2527 | break; |
2528 | } | |
6dc54d91 PA |
2529 | result = remote_get_threadlist (startflag, &rs->nextthread, |
2530 | MAXTHREADLISTRESULTS, | |
2531 | &done, &result_count, | |
2532 | rs->resultthreadlist); | |
2533 | if (result <= 0) | |
2534 | break; | |
23860348 | 2535 | /* Clear for later iterations. */ |
c906108c SS |
2536 | startflag = 0; |
2537 | /* Setup to resume next batch of thread references, set nextthread. */ | |
2538 | if (result_count >= 1) | |
0d031856 TT |
2539 | copy_threadref (&rs->nextthread, |
2540 | &rs->resultthreadlist[result_count - 1]); | |
c906108c SS |
2541 | i = 0; |
2542 | while (result_count--) | |
6dc54d91 PA |
2543 | { |
2544 | if (!(*stepfunction) (&rs->resultthreadlist[i++], context)) | |
2545 | { | |
2546 | result = 0; | |
2547 | break; | |
2548 | } | |
2549 | } | |
c906108c SS |
2550 | } |
2551 | return result; | |
2552 | } | |
2553 | ||
6dc54d91 PA |
2554 | /* A thread found on the remote target. */ |
2555 | ||
2556 | typedef struct thread_item | |
2557 | { | |
2558 | /* The thread's PTID. */ | |
2559 | ptid_t ptid; | |
2560 | ||
2561 | /* The thread's extra info. May be NULL. */ | |
2562 | char *extra; | |
2563 | ||
2564 | /* The core the thread was running on. -1 if not known. */ | |
2565 | int core; | |
2566 | } thread_item_t; | |
2567 | DEF_VEC_O(thread_item_t); | |
2568 | ||
2569 | /* Context passed around to the various methods listing remote | |
2570 | threads. As new threads are found, they're added to the ITEMS | |
2571 | vector. */ | |
2572 | ||
2573 | struct threads_listing_context | |
2574 | { | |
2575 | /* The threads found on the remote target. */ | |
2576 | VEC (thread_item_t) *items; | |
2577 | }; | |
2578 | ||
80134cf5 PA |
2579 | /* Discard the contents of the constructed thread listing context. */ |
2580 | ||
2581 | static void | |
2582 | clear_threads_listing_context (void *p) | |
2583 | { | |
2584 | struct threads_listing_context *context = p; | |
2585 | int i; | |
2586 | struct thread_item *item; | |
2587 | ||
2588 | for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i) | |
2589 | xfree (item->extra); | |
2590 | ||
2591 | VEC_free (thread_item_t, context->items); | |
2592 | } | |
2593 | ||
c906108c | 2594 | static int |
6dc54d91 | 2595 | remote_newthread_step (threadref *ref, void *data) |
c906108c | 2596 | { |
6dc54d91 PA |
2597 | struct threads_listing_context *context = data; |
2598 | struct thread_item item; | |
79d7f229 | 2599 | int pid = ptid_get_pid (inferior_ptid); |
39f77062 | 2600 | |
6dc54d91 PA |
2601 | item.ptid = ptid_build (pid, threadref_to_int (ref), 0); |
2602 | item.core = -1; | |
2603 | item.extra = NULL; | |
2604 | ||
2605 | VEC_safe_push (thread_item_t, context->items, &item); | |
2606 | ||
c906108c SS |
2607 | return 1; /* continue iterator */ |
2608 | } | |
2609 | ||
2610 | #define CRAZY_MAX_THREADS 1000 | |
2611 | ||
39f77062 KB |
2612 | static ptid_t |
2613 | remote_current_thread (ptid_t oldpid) | |
c906108c | 2614 | { |
d01949b6 | 2615 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
2616 | |
2617 | putpkt ("qC"); | |
6d820c5c | 2618 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 2619 | if (rs->buf[0] == 'Q' && rs->buf[1] == 'C') |
82f73884 | 2620 | return read_ptid (&rs->buf[2], NULL); |
c906108c SS |
2621 | else |
2622 | return oldpid; | |
2623 | } | |
2624 | ||
6dc54d91 | 2625 | /* List remote threads using the deprecated qL packet. */ |
cce74817 | 2626 | |
6dc54d91 PA |
2627 | static int |
2628 | remote_get_threads_with_ql (struct target_ops *ops, | |
2629 | struct threads_listing_context *context) | |
c906108c | 2630 | { |
6dc54d91 PA |
2631 | if (remote_threadlist_iterator (remote_newthread_step, context, |
2632 | CRAZY_MAX_THREADS) >= 0) | |
2633 | return 1; | |
2634 | ||
2635 | return 0; | |
c906108c SS |
2636 | } |
2637 | ||
dc146f7c VP |
2638 | #if defined(HAVE_LIBEXPAT) |
2639 | ||
dc146f7c VP |
2640 | static void |
2641 | start_thread (struct gdb_xml_parser *parser, | |
2642 | const struct gdb_xml_element *element, | |
2643 | void *user_data, VEC(gdb_xml_value_s) *attributes) | |
2644 | { | |
6dc54d91 | 2645 | struct threads_listing_context *data = user_data; |
dc146f7c VP |
2646 | |
2647 | struct thread_item item; | |
2648 | char *id; | |
3d2c1d41 | 2649 | struct gdb_xml_value *attr; |
dc146f7c | 2650 | |
3d2c1d41 | 2651 | id = xml_find_attribute (attributes, "id")->value; |
dc146f7c VP |
2652 | item.ptid = read_ptid (id, NULL); |
2653 | ||
3d2c1d41 PA |
2654 | attr = xml_find_attribute (attributes, "core"); |
2655 | if (attr != NULL) | |
2656 | item.core = *(ULONGEST *) attr->value; | |
dc146f7c VP |
2657 | else |
2658 | item.core = -1; | |
2659 | ||
2660 | item.extra = 0; | |
2661 | ||
2662 | VEC_safe_push (thread_item_t, data->items, &item); | |
2663 | } | |
2664 | ||
2665 | static void | |
2666 | end_thread (struct gdb_xml_parser *parser, | |
2667 | const struct gdb_xml_element *element, | |
2668 | void *user_data, const char *body_text) | |
2669 | { | |
6dc54d91 | 2670 | struct threads_listing_context *data = user_data; |
dc146f7c VP |
2671 | |
2672 | if (body_text && *body_text) | |
2ae2a0b7 | 2673 | VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text); |
dc146f7c VP |
2674 | } |
2675 | ||
2676 | const struct gdb_xml_attribute thread_attributes[] = { | |
2677 | { "id", GDB_XML_AF_NONE, NULL, NULL }, | |
2678 | { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL }, | |
2679 | { NULL, GDB_XML_AF_NONE, NULL, NULL } | |
2680 | }; | |
2681 | ||
2682 | const struct gdb_xml_element thread_children[] = { | |
2683 | { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } | |
2684 | }; | |
2685 | ||
2686 | const struct gdb_xml_element threads_children[] = { | |
2687 | { "thread", thread_attributes, thread_children, | |
2688 | GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL, | |
2689 | start_thread, end_thread }, | |
2690 | { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } | |
2691 | }; | |
2692 | ||
2693 | const struct gdb_xml_element threads_elements[] = { | |
2694 | { "threads", NULL, threads_children, | |
2695 | GDB_XML_EF_NONE, NULL, NULL }, | |
2696 | { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } | |
2697 | }; | |
2698 | ||
2699 | #endif | |
2700 | ||
6dc54d91 | 2701 | /* List remote threads using qXfer:threads:read. */ |
9d1f7ab2 | 2702 | |
6dc54d91 PA |
2703 | static int |
2704 | remote_get_threads_with_qxfer (struct target_ops *ops, | |
2705 | struct threads_listing_context *context) | |
0f71a2f6 | 2706 | { |
dc146f7c | 2707 | #if defined(HAVE_LIBEXPAT) |
4082afcc | 2708 | if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE) |
dc146f7c | 2709 | { |
6dc54d91 | 2710 | char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL); |
dc146f7c | 2711 | struct cleanup *back_to = make_cleanup (xfree, xml); |
efc0eabd | 2712 | |
6dc54d91 | 2713 | if (xml != NULL && *xml != '\0') |
dc146f7c | 2714 | { |
6dc54d91 PA |
2715 | gdb_xml_parse_quick (_("threads"), "threads.dtd", |
2716 | threads_elements, xml, context); | |
dc146f7c VP |
2717 | } |
2718 | ||
2719 | do_cleanups (back_to); | |
6dc54d91 | 2720 | return 1; |
dc146f7c VP |
2721 | } |
2722 | #endif | |
2723 | ||
6dc54d91 PA |
2724 | return 0; |
2725 | } | |
2726 | ||
2727 | /* List remote threads using qfThreadInfo/qsThreadInfo. */ | |
2728 | ||
2729 | static int | |
2730 | remote_get_threads_with_qthreadinfo (struct target_ops *ops, | |
2731 | struct threads_listing_context *context) | |
2732 | { | |
2733 | struct remote_state *rs = get_remote_state (); | |
2734 | ||
b80fafe3 | 2735 | if (rs->use_threadinfo_query) |
9d1f7ab2 | 2736 | { |
6dc54d91 PA |
2737 | char *bufp; |
2738 | ||
9d1f7ab2 | 2739 | putpkt ("qfThreadInfo"); |
6d820c5c | 2740 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 2741 | bufp = rs->buf; |
9d1f7ab2 | 2742 | if (bufp[0] != '\0') /* q packet recognized */ |
802188a7 | 2743 | { |
9d1f7ab2 MS |
2744 | while (*bufp++ == 'm') /* reply contains one or more TID */ |
2745 | { | |
2746 | do | |
2747 | { | |
6dc54d91 PA |
2748 | struct thread_item item; |
2749 | ||
2750 | item.ptid = read_ptid (bufp, &bufp); | |
2751 | item.core = -1; | |
2752 | item.extra = NULL; | |
2753 | ||
2754 | VEC_safe_push (thread_item_t, context->items, &item); | |
9d1f7ab2 MS |
2755 | } |
2756 | while (*bufp++ == ','); /* comma-separated list */ | |
2757 | putpkt ("qsThreadInfo"); | |
6d820c5c | 2758 | getpkt (&rs->buf, &rs->buf_size, 0); |
6dc54d91 | 2759 | bufp = rs->buf; |
9d1f7ab2 | 2760 | } |
6dc54d91 PA |
2761 | return 1; |
2762 | } | |
2763 | else | |
2764 | { | |
2765 | /* Packet not recognized. */ | |
2766 | rs->use_threadinfo_query = 0; | |
9d1f7ab2 MS |
2767 | } |
2768 | } | |
2769 | ||
6dc54d91 PA |
2770 | return 0; |
2771 | } | |
2772 | ||
e8032dde | 2773 | /* Implement the to_update_thread_list function for the remote |
6dc54d91 PA |
2774 | targets. */ |
2775 | ||
2776 | static void | |
e8032dde | 2777 | remote_update_thread_list (struct target_ops *ops) |
6dc54d91 PA |
2778 | { |
2779 | struct remote_state *rs = get_remote_state (); | |
2780 | struct threads_listing_context context; | |
2781 | struct cleanup *old_chain; | |
ab970af1 | 2782 | int got_list = 0; |
e8032dde | 2783 | |
6dc54d91 PA |
2784 | context.items = NULL; |
2785 | old_chain = make_cleanup (clear_threads_listing_context, &context); | |
2786 | ||
2787 | /* We have a few different mechanisms to fetch the thread list. Try | |
2788 | them all, starting with the most preferred one first, falling | |
2789 | back to older methods. */ | |
2790 | if (remote_get_threads_with_qxfer (ops, &context) | |
2791 | || remote_get_threads_with_qthreadinfo (ops, &context) | |
2792 | || remote_get_threads_with_ql (ops, &context)) | |
2793 | { | |
2794 | int i; | |
2795 | struct thread_item *item; | |
ab970af1 PA |
2796 | struct thread_info *tp, *tmp; |
2797 | ||
2798 | got_list = 1; | |
2799 | ||
7d1a114c PA |
2800 | if (VEC_empty (thread_item_t, context.items) |
2801 | && remote_thread_always_alive (ops, inferior_ptid)) | |
2802 | { | |
2803 | /* Some targets don't really support threads, but still | |
2804 | reply an (empty) thread list in response to the thread | |
2805 | listing packets, instead of replying "packet not | |
2806 | supported". Exit early so we don't delete the main | |
2807 | thread. */ | |
2808 | do_cleanups (old_chain); | |
2809 | return; | |
2810 | } | |
2811 | ||
ab970af1 PA |
2812 | /* CONTEXT now holds the current thread list on the remote |
2813 | target end. Delete GDB-side threads no longer found on the | |
2814 | target. */ | |
2815 | ALL_NON_EXITED_THREADS_SAFE (tp, tmp) | |
2816 | { | |
2817 | for (i = 0; | |
2818 | VEC_iterate (thread_item_t, context.items, i, item); | |
2819 | ++i) | |
2820 | { | |
2821 | if (ptid_equal (item->ptid, tp->ptid)) | |
2822 | break; | |
2823 | } | |
2824 | ||
2825 | if (i == VEC_length (thread_item_t, context.items)) | |
2826 | { | |
2827 | /* Not found. */ | |
2828 | delete_thread (tp->ptid); | |
2829 | } | |
2830 | } | |
74531fed | 2831 | |
ab970af1 | 2832 | /* And now add threads we don't know about yet to our list. */ |
6dc54d91 PA |
2833 | for (i = 0; |
2834 | VEC_iterate (thread_item_t, context.items, i, item); | |
2835 | ++i) | |
2836 | { | |
2837 | if (!ptid_equal (item->ptid, null_ptid)) | |
2838 | { | |
2839 | struct private_thread_info *info; | |
2840 | /* In non-stop mode, we assume new found threads are | |
2841 | running until proven otherwise with a stop reply. In | |
2842 | all-stop, we can only get here if all threads are | |
2843 | stopped. */ | |
2844 | int running = non_stop ? 1 : 0; | |
2845 | ||
2846 | remote_notice_new_inferior (item->ptid, running); | |
2847 | ||
2848 | info = demand_private_info (item->ptid); | |
2849 | info->core = item->core; | |
2850 | info->extra = item->extra; | |
2851 | item->extra = NULL; | |
2852 | } | |
2853 | } | |
2854 | } | |
2855 | ||
ab970af1 PA |
2856 | if (!got_list) |
2857 | { | |
2858 | /* If no thread listing method is supported, then query whether | |
2859 | each known thread is alive, one by one, with the T packet. | |
2860 | If the target doesn't support threads at all, then this is a | |
2861 | no-op. See remote_thread_alive. */ | |
2862 | prune_threads (); | |
2863 | } | |
2864 | ||
6dc54d91 | 2865 | do_cleanups (old_chain); |
9d1f7ab2 MS |
2866 | } |
2867 | ||
802188a7 | 2868 | /* |
9d1f7ab2 MS |
2869 | * Collect a descriptive string about the given thread. |
2870 | * The target may say anything it wants to about the thread | |
2871 | * (typically info about its blocked / runnable state, name, etc.). | |
2872 | * This string will appear in the info threads display. | |
802188a7 | 2873 | * |
9d1f7ab2 MS |
2874 | * Optional: targets are not required to implement this function. |
2875 | */ | |
2876 | ||
2877 | static char * | |
c15906d8 | 2878 | remote_threads_extra_info (struct target_ops *self, struct thread_info *tp) |
9d1f7ab2 | 2879 | { |
d01949b6 | 2880 | struct remote_state *rs = get_remote_state (); |
9d1f7ab2 MS |
2881 | int result; |
2882 | int set; | |
2883 | threadref id; | |
2884 | struct gdb_ext_thread_info threadinfo; | |
23860348 | 2885 | static char display_buf[100]; /* arbitrary... */ |
9d1f7ab2 MS |
2886 | int n = 0; /* position in display_buf */ |
2887 | ||
5d93a237 | 2888 | if (rs->remote_desc == 0) /* paranoia */ |
8e65ff28 | 2889 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 2890 | _("remote_threads_extra_info")); |
9d1f7ab2 | 2891 | |
60e569b9 | 2892 | if (ptid_equal (tp->ptid, magic_null_ptid) |
ba348170 | 2893 | || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0)) |
60e569b9 PA |
2894 | /* This is the main thread which was added by GDB. The remote |
2895 | server doesn't know about it. */ | |
2896 | return NULL; | |
2897 | ||
4082afcc | 2898 | if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE) |
dc146f7c VP |
2899 | { |
2900 | struct thread_info *info = find_thread_ptid (tp->ptid); | |
a744cf53 | 2901 | |
dc146f7c VP |
2902 | if (info && info->private) |
2903 | return info->private->extra; | |
2904 | else | |
2905 | return NULL; | |
2906 | } | |
2907 | ||
b80fafe3 | 2908 | if (rs->use_threadextra_query) |
9d1f7ab2 | 2909 | { |
82f73884 PA |
2910 | char *b = rs->buf; |
2911 | char *endb = rs->buf + get_remote_packet_size (); | |
2912 | ||
2913 | xsnprintf (b, endb - b, "qThreadExtraInfo,"); | |
2914 | b += strlen (b); | |
2915 | write_ptid (b, endb, tp->ptid); | |
2916 | ||
2e9f7625 | 2917 | putpkt (rs->buf); |
6d820c5c | 2918 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 2919 | if (rs->buf[0] != 0) |
9d1f7ab2 | 2920 | { |
2e9f7625 DJ |
2921 | n = min (strlen (rs->buf) / 2, sizeof (display_buf)); |
2922 | result = hex2bin (rs->buf, (gdb_byte *) display_buf, n); | |
30559e10 | 2923 | display_buf [result] = '\0'; |
9d1f7ab2 MS |
2924 | return display_buf; |
2925 | } | |
0f71a2f6 | 2926 | } |
9d1f7ab2 MS |
2927 | |
2928 | /* If the above query fails, fall back to the old method. */ | |
b80fafe3 | 2929 | rs->use_threadextra_query = 0; |
9d1f7ab2 MS |
2930 | set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME |
2931 | | TAG_MOREDISPLAY | TAG_DISPLAY; | |
ba348170 | 2932 | int_to_threadref (&id, ptid_get_lwp (tp->ptid)); |
9d1f7ab2 MS |
2933 | if (remote_get_threadinfo (&id, set, &threadinfo)) |
2934 | if (threadinfo.active) | |
0f71a2f6 | 2935 | { |
9d1f7ab2 | 2936 | if (*threadinfo.shortname) |
2bc416ba | 2937 | n += xsnprintf (&display_buf[0], sizeof (display_buf) - n, |
ecbc58df | 2938 | " Name: %s,", threadinfo.shortname); |
9d1f7ab2 | 2939 | if (*threadinfo.display) |
2bc416ba | 2940 | n += xsnprintf (&display_buf[n], sizeof (display_buf) - n, |
ecbc58df | 2941 | " State: %s,", threadinfo.display); |
9d1f7ab2 | 2942 | if (*threadinfo.more_display) |
2bc416ba | 2943 | n += xsnprintf (&display_buf[n], sizeof (display_buf) - n, |
ecbc58df | 2944 | " Priority: %s", threadinfo.more_display); |
9d1f7ab2 MS |
2945 | |
2946 | if (n > 0) | |
c5aa993b | 2947 | { |
23860348 | 2948 | /* For purely cosmetic reasons, clear up trailing commas. */ |
9d1f7ab2 MS |
2949 | if (',' == display_buf[n-1]) |
2950 | display_buf[n-1] = ' '; | |
2951 | return display_buf; | |
c5aa993b | 2952 | } |
0f71a2f6 | 2953 | } |
9d1f7ab2 | 2954 | return NULL; |
0f71a2f6 | 2955 | } |
c906108c | 2956 | \f |
c5aa993b | 2957 | |
0fb4aa4b | 2958 | static int |
61fc905d | 2959 | remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr, |
0fb4aa4b PA |
2960 | struct static_tracepoint_marker *marker) |
2961 | { | |
2962 | struct remote_state *rs = get_remote_state (); | |
2963 | char *p = rs->buf; | |
2964 | ||
bba74b36 | 2965 | xsnprintf (p, get_remote_packet_size (), "qTSTMat:"); |
0fb4aa4b PA |
2966 | p += strlen (p); |
2967 | p += hexnumstr (p, addr); | |
2968 | putpkt (rs->buf); | |
2969 | getpkt (&rs->buf, &rs->buf_size, 0); | |
2970 | p = rs->buf; | |
2971 | ||
2972 | if (*p == 'E') | |
2973 | error (_("Remote failure reply: %s"), p); | |
2974 | ||
2975 | if (*p++ == 'm') | |
2976 | { | |
2977 | parse_static_tracepoint_marker_definition (p, &p, marker); | |
2978 | return 1; | |
2979 | } | |
2980 | ||
2981 | return 0; | |
2982 | } | |
2983 | ||
0fb4aa4b | 2984 | static VEC(static_tracepoint_marker_p) * |
c686c57f TT |
2985 | remote_static_tracepoint_markers_by_strid (struct target_ops *self, |
2986 | const char *strid) | |
0fb4aa4b PA |
2987 | { |
2988 | struct remote_state *rs = get_remote_state (); | |
2989 | VEC(static_tracepoint_marker_p) *markers = NULL; | |
2990 | struct static_tracepoint_marker *marker = NULL; | |
2991 | struct cleanup *old_chain; | |
2992 | char *p; | |
2993 | ||
2994 | /* Ask for a first packet of static tracepoint marker | |
2995 | definition. */ | |
2996 | putpkt ("qTfSTM"); | |
2997 | getpkt (&rs->buf, &rs->buf_size, 0); | |
2998 | p = rs->buf; | |
2999 | if (*p == 'E') | |
3000 | error (_("Remote failure reply: %s"), p); | |
3001 | ||
3002 | old_chain = make_cleanup (free_current_marker, &marker); | |
3003 | ||
3004 | while (*p++ == 'm') | |
3005 | { | |
3006 | if (marker == NULL) | |
3007 | marker = XCNEW (struct static_tracepoint_marker); | |
3008 | ||
3009 | do | |
3010 | { | |
3011 | parse_static_tracepoint_marker_definition (p, &p, marker); | |
3012 | ||
3013 | if (strid == NULL || strcmp (strid, marker->str_id) == 0) | |
3014 | { | |
3015 | VEC_safe_push (static_tracepoint_marker_p, | |
3016 | markers, marker); | |
3017 | marker = NULL; | |
3018 | } | |
3019 | else | |
3020 | { | |
3021 | release_static_tracepoint_marker (marker); | |
3022 | memset (marker, 0, sizeof (*marker)); | |
3023 | } | |
3024 | } | |
3025 | while (*p++ == ','); /* comma-separated list */ | |
3026 | /* Ask for another packet of static tracepoint definition. */ | |
3027 | putpkt ("qTsSTM"); | |
3028 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3029 | p = rs->buf; | |
3030 | } | |
3031 | ||
3032 | do_cleanups (old_chain); | |
3033 | return markers; | |
3034 | } | |
3035 | ||
3036 | \f | |
10760264 JB |
3037 | /* Implement the to_get_ada_task_ptid function for the remote targets. */ |
3038 | ||
3039 | static ptid_t | |
1e6b91a4 | 3040 | remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread) |
10760264 | 3041 | { |
ba348170 | 3042 | return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0); |
10760264 JB |
3043 | } |
3044 | \f | |
3045 | ||
24b06219 | 3046 | /* Restart the remote side; this is an extended protocol operation. */ |
c906108c SS |
3047 | |
3048 | static void | |
fba45db2 | 3049 | extended_remote_restart (void) |
c906108c | 3050 | { |
d01949b6 | 3051 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
3052 | |
3053 | /* Send the restart command; for reasons I don't understand the | |
3054 | remote side really expects a number after the "R". */ | |
ea9c271d | 3055 | xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0); |
6d820c5c | 3056 | putpkt (rs->buf); |
c906108c | 3057 | |
ad9a8f3f | 3058 | remote_fileio_reset (); |
c906108c SS |
3059 | } |
3060 | \f | |
3061 | /* Clean up connection to a remote debugger. */ | |
3062 | ||
c906108c | 3063 | static void |
de90e03d | 3064 | remote_close (struct target_ops *self) |
c906108c | 3065 | { |
5d93a237 TT |
3066 | struct remote_state *rs = get_remote_state (); |
3067 | ||
3068 | if (rs->remote_desc == NULL) | |
d3fd5342 PA |
3069 | return; /* already closed */ |
3070 | ||
3071 | /* Make sure we leave stdin registered in the event loop, and we | |
3072 | don't leave the async SIGINT signal handler installed. */ | |
e3594fd1 | 3073 | remote_terminal_ours (self); |
ce5ce7ed | 3074 | |
5d93a237 TT |
3075 | serial_close (rs->remote_desc); |
3076 | rs->remote_desc = NULL; | |
ce5ce7ed PA |
3077 | |
3078 | /* We don't have a connection to the remote stub anymore. Get rid | |
f67fd822 PM |
3079 | of all the inferiors and their threads we were controlling. |
3080 | Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame | |
3081 | will be unable to find the thread corresponding to (pid, 0, 0). */ | |
0f2caa1b | 3082 | inferior_ptid = null_ptid; |
f67fd822 | 3083 | discard_all_inferiors (); |
ce5ce7ed | 3084 | |
f48ff2a7 YQ |
3085 | /* We are closing the remote target, so we should discard |
3086 | everything of this target. */ | |
bcc75809 | 3087 | discard_pending_stop_replies_in_queue (rs); |
74531fed PA |
3088 | |
3089 | if (remote_async_inferior_event_token) | |
3090 | delete_async_event_handler (&remote_async_inferior_event_token); | |
722247f1 | 3091 | |
5965e028 | 3092 | remote_notif_state_xfree (rs->notif_state); |
aef525cb YQ |
3093 | |
3094 | trace_reset_local_state (); | |
c906108c SS |
3095 | } |
3096 | ||
23860348 | 3097 | /* Query the remote side for the text, data and bss offsets. */ |
c906108c SS |
3098 | |
3099 | static void | |
fba45db2 | 3100 | get_offsets (void) |
c906108c | 3101 | { |
d01949b6 | 3102 | struct remote_state *rs = get_remote_state (); |
2e9f7625 | 3103 | char *buf; |
085dd6e6 | 3104 | char *ptr; |
31d99776 DJ |
3105 | int lose, num_segments = 0, do_sections, do_segments; |
3106 | CORE_ADDR text_addr, data_addr, bss_addr, segments[2]; | |
c906108c | 3107 | struct section_offsets *offs; |
31d99776 DJ |
3108 | struct symfile_segment_data *data; |
3109 | ||
3110 | if (symfile_objfile == NULL) | |
3111 | return; | |
c906108c SS |
3112 | |
3113 | putpkt ("qOffsets"); | |
6d820c5c | 3114 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 3115 | buf = rs->buf; |
c906108c SS |
3116 | |
3117 | if (buf[0] == '\000') | |
3118 | return; /* Return silently. Stub doesn't support | |
23860348 | 3119 | this command. */ |
c906108c SS |
3120 | if (buf[0] == 'E') |
3121 | { | |
8a3fe4f8 | 3122 | warning (_("Remote failure reply: %s"), buf); |
c906108c SS |
3123 | return; |
3124 | } | |
3125 | ||
3126 | /* Pick up each field in turn. This used to be done with scanf, but | |
3127 | scanf will make trouble if CORE_ADDR size doesn't match | |
3128 | conversion directives correctly. The following code will work | |
3129 | with any size of CORE_ADDR. */ | |
3130 | text_addr = data_addr = bss_addr = 0; | |
3131 | ptr = buf; | |
3132 | lose = 0; | |
3133 | ||
3134 | if (strncmp (ptr, "Text=", 5) == 0) | |
3135 | { | |
3136 | ptr += 5; | |
3137 | /* Don't use strtol, could lose on big values. */ | |
3138 | while (*ptr && *ptr != ';') | |
3139 | text_addr = (text_addr << 4) + fromhex (*ptr++); | |
c906108c | 3140 | |
31d99776 DJ |
3141 | if (strncmp (ptr, ";Data=", 6) == 0) |
3142 | { | |
3143 | ptr += 6; | |
3144 | while (*ptr && *ptr != ';') | |
3145 | data_addr = (data_addr << 4) + fromhex (*ptr++); | |
3146 | } | |
3147 | else | |
3148 | lose = 1; | |
3149 | ||
3150 | if (!lose && strncmp (ptr, ";Bss=", 5) == 0) | |
3151 | { | |
3152 | ptr += 5; | |
3153 | while (*ptr && *ptr != ';') | |
3154 | bss_addr = (bss_addr << 4) + fromhex (*ptr++); | |
c906108c | 3155 | |
31d99776 DJ |
3156 | if (bss_addr != data_addr) |
3157 | warning (_("Target reported unsupported offsets: %s"), buf); | |
3158 | } | |
3159 | else | |
3160 | lose = 1; | |
3161 | } | |
3162 | else if (strncmp (ptr, "TextSeg=", 8) == 0) | |
c906108c | 3163 | { |
31d99776 DJ |
3164 | ptr += 8; |
3165 | /* Don't use strtol, could lose on big values. */ | |
c906108c | 3166 | while (*ptr && *ptr != ';') |
31d99776 DJ |
3167 | text_addr = (text_addr << 4) + fromhex (*ptr++); |
3168 | num_segments = 1; | |
3169 | ||
3170 | if (strncmp (ptr, ";DataSeg=", 9) == 0) | |
3171 | { | |
3172 | ptr += 9; | |
3173 | while (*ptr && *ptr != ';') | |
3174 | data_addr = (data_addr << 4) + fromhex (*ptr++); | |
3175 | num_segments++; | |
3176 | } | |
c906108c SS |
3177 | } |
3178 | else | |
3179 | lose = 1; | |
3180 | ||
3181 | if (lose) | |
8a3fe4f8 | 3182 | error (_("Malformed response to offset query, %s"), buf); |
31d99776 DJ |
3183 | else if (*ptr != '\0') |
3184 | warning (_("Target reported unsupported offsets: %s"), buf); | |
c906108c | 3185 | |
802188a7 | 3186 | offs = ((struct section_offsets *) |
a39a16c4 | 3187 | alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections))); |
802188a7 | 3188 | memcpy (offs, symfile_objfile->section_offsets, |
a39a16c4 | 3189 | SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)); |
c906108c | 3190 | |
31d99776 DJ |
3191 | data = get_symfile_segment_data (symfile_objfile->obfd); |
3192 | do_segments = (data != NULL); | |
3193 | do_sections = num_segments == 0; | |
c906108c | 3194 | |
28c32713 | 3195 | if (num_segments > 0) |
31d99776 | 3196 | { |
31d99776 DJ |
3197 | segments[0] = text_addr; |
3198 | segments[1] = data_addr; | |
3199 | } | |
28c32713 JB |
3200 | /* If we have two segments, we can still try to relocate everything |
3201 | by assuming that the .text and .data offsets apply to the whole | |
3202 | text and data segments. Convert the offsets given in the packet | |
3203 | to base addresses for symfile_map_offsets_to_segments. */ | |
3204 | else if (data && data->num_segments == 2) | |
3205 | { | |
3206 | segments[0] = data->segment_bases[0] + text_addr; | |
3207 | segments[1] = data->segment_bases[1] + data_addr; | |
3208 | num_segments = 2; | |
3209 | } | |
8d385431 DJ |
3210 | /* If the object file has only one segment, assume that it is text |
3211 | rather than data; main programs with no writable data are rare, | |
3212 | but programs with no code are useless. Of course the code might | |
3213 | have ended up in the data segment... to detect that we would need | |
3214 | the permissions here. */ | |
3215 | else if (data && data->num_segments == 1) | |
3216 | { | |
3217 | segments[0] = data->segment_bases[0] + text_addr; | |
3218 | num_segments = 1; | |
3219 | } | |
28c32713 JB |
3220 | /* There's no way to relocate by segment. */ |
3221 | else | |
3222 | do_segments = 0; | |
31d99776 DJ |
3223 | |
3224 | if (do_segments) | |
3225 | { | |
3226 | int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data, | |
3227 | offs, num_segments, segments); | |
3228 | ||
3229 | if (ret == 0 && !do_sections) | |
3e43a32a MS |
3230 | error (_("Can not handle qOffsets TextSeg " |
3231 | "response with this symbol file")); | |
31d99776 DJ |
3232 | |
3233 | if (ret > 0) | |
3234 | do_sections = 0; | |
3235 | } | |
c906108c | 3236 | |
9ef895d6 DJ |
3237 | if (data) |
3238 | free_symfile_segment_data (data); | |
31d99776 DJ |
3239 | |
3240 | if (do_sections) | |
3241 | { | |
3242 | offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr; | |
3243 | ||
3e43a32a MS |
3244 | /* This is a temporary kludge to force data and bss to use the |
3245 | same offsets because that's what nlmconv does now. The real | |
3246 | solution requires changes to the stub and remote.c that I | |
3247 | don't have time to do right now. */ | |
31d99776 DJ |
3248 | |
3249 | offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr; | |
3250 | offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr; | |
3251 | } | |
c906108c SS |
3252 | |
3253 | objfile_relocate (symfile_objfile, offs); | |
3254 | } | |
3255 | ||
74531fed PA |
3256 | /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in |
3257 | threads we know are stopped already. This is used during the | |
3258 | initial remote connection in non-stop mode --- threads that are | |
3259 | reported as already being stopped are left stopped. */ | |
3260 | ||
3261 | static int | |
3262 | set_stop_requested_callback (struct thread_info *thread, void *data) | |
3263 | { | |
3264 | /* If we have a stop reply for this thread, it must be stopped. */ | |
3265 | if (peek_stop_reply (thread->ptid)) | |
3266 | set_stop_requested (thread->ptid, 1); | |
3267 | ||
3268 | return 0; | |
3269 | } | |
3270 | ||
9a7071a8 JB |
3271 | /* Send interrupt_sequence to remote target. */ |
3272 | static void | |
eeae04df | 3273 | send_interrupt_sequence (void) |
9a7071a8 | 3274 | { |
5d93a237 TT |
3275 | struct remote_state *rs = get_remote_state (); |
3276 | ||
9a7071a8 | 3277 | if (interrupt_sequence_mode == interrupt_sequence_control_c) |
c33e31fd | 3278 | remote_serial_write ("\x03", 1); |
9a7071a8 | 3279 | else if (interrupt_sequence_mode == interrupt_sequence_break) |
5d93a237 | 3280 | serial_send_break (rs->remote_desc); |
9a7071a8 JB |
3281 | else if (interrupt_sequence_mode == interrupt_sequence_break_g) |
3282 | { | |
5d93a237 | 3283 | serial_send_break (rs->remote_desc); |
c33e31fd | 3284 | remote_serial_write ("g", 1); |
9a7071a8 JB |
3285 | } |
3286 | else | |
3287 | internal_error (__FILE__, __LINE__, | |
3288 | _("Invalid value for interrupt_sequence_mode: %s."), | |
3289 | interrupt_sequence_mode); | |
3290 | } | |
3291 | ||
3405876a PA |
3292 | |
3293 | /* If STOP_REPLY is a T stop reply, look for the "thread" register, | |
3294 | and extract the PTID. Returns NULL_PTID if not found. */ | |
3295 | ||
3296 | static ptid_t | |
3297 | stop_reply_extract_thread (char *stop_reply) | |
3298 | { | |
3299 | if (stop_reply[0] == 'T' && strlen (stop_reply) > 3) | |
3300 | { | |
3301 | char *p; | |
3302 | ||
3303 | /* Txx r:val ; r:val (...) */ | |
3304 | p = &stop_reply[3]; | |
3305 | ||
3306 | /* Look for "register" named "thread". */ | |
3307 | while (*p != '\0') | |
3308 | { | |
3309 | char *p1; | |
3310 | ||
3311 | p1 = strchr (p, ':'); | |
3312 | if (p1 == NULL) | |
3313 | return null_ptid; | |
3314 | ||
3315 | if (strncmp (p, "thread", p1 - p) == 0) | |
3316 | return read_ptid (++p1, &p); | |
3317 | ||
3318 | p1 = strchr (p, ';'); | |
3319 | if (p1 == NULL) | |
3320 | return null_ptid; | |
3321 | p1++; | |
3322 | ||
3323 | p = p1; | |
3324 | } | |
3325 | } | |
3326 | ||
3327 | return null_ptid; | |
3328 | } | |
3329 | ||
b7ea362b PA |
3330 | /* Determine the remote side's current thread. If we have a stop |
3331 | reply handy (in WAIT_STATUS), maybe it's a T stop reply with a | |
3332 | "thread" register we can extract the current thread from. If not, | |
3333 | ask the remote which is the current thread with qC. The former | |
3334 | method avoids a roundtrip. */ | |
3335 | ||
3336 | static ptid_t | |
3337 | get_current_thread (char *wait_status) | |
3338 | { | |
3339 | ptid_t ptid; | |
3340 | ||
3341 | /* Note we don't use remote_parse_stop_reply as that makes use of | |
3342 | the target architecture, which we haven't yet fully determined at | |
3343 | this point. */ | |
3344 | if (wait_status != NULL) | |
3345 | ptid = stop_reply_extract_thread (wait_status); | |
3346 | if (ptid_equal (ptid, null_ptid)) | |
3347 | ptid = remote_current_thread (inferior_ptid); | |
3348 | ||
3349 | return ptid; | |
3350 | } | |
3351 | ||
49c62f2e PA |
3352 | /* Query the remote target for which is the current thread/process, |
3353 | add it to our tables, and update INFERIOR_PTID. The caller is | |
3354 | responsible for setting the state such that the remote end is ready | |
3405876a PA |
3355 | to return the current thread. |
3356 | ||
3357 | This function is called after handling the '?' or 'vRun' packets, | |
3358 | whose response is a stop reply from which we can also try | |
3359 | extracting the thread. If the target doesn't support the explicit | |
3360 | qC query, we infer the current thread from that stop reply, passed | |
3361 | in in WAIT_STATUS, which may be NULL. */ | |
49c62f2e PA |
3362 | |
3363 | static void | |
3405876a | 3364 | add_current_inferior_and_thread (char *wait_status) |
49c62f2e PA |
3365 | { |
3366 | struct remote_state *rs = get_remote_state (); | |
3367 | int fake_pid_p = 0; | |
3405876a | 3368 | ptid_t ptid = null_ptid; |
49c62f2e PA |
3369 | |
3370 | inferior_ptid = null_ptid; | |
3371 | ||
b7ea362b PA |
3372 | /* Now, if we have thread information, update inferior_ptid. */ |
3373 | ptid = get_current_thread (wait_status); | |
3405876a | 3374 | |
49c62f2e PA |
3375 | if (!ptid_equal (ptid, null_ptid)) |
3376 | { | |
3377 | if (!remote_multi_process_p (rs)) | |
3378 | fake_pid_p = 1; | |
3379 | ||
3380 | inferior_ptid = ptid; | |
3381 | } | |
3382 | else | |
3383 | { | |
3384 | /* Without this, some commands which require an active target | |
3385 | (such as kill) won't work. This variable serves (at least) | |
3386 | double duty as both the pid of the target process (if it has | |
3387 | such), and as a flag indicating that a target is active. */ | |
3388 | inferior_ptid = magic_null_ptid; | |
3389 | fake_pid_p = 1; | |
3390 | } | |
3391 | ||
3392 | remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1); | |
3393 | ||
3394 | /* Add the main thread. */ | |
3395 | add_thread_silent (inferior_ptid); | |
3396 | } | |
3397 | ||
9cbc821d | 3398 | static void |
04bd08de | 3399 | remote_start_remote (int from_tty, struct target_ops *target, int extended_p) |
c906108c | 3400 | { |
c8d104ad PA |
3401 | struct remote_state *rs = get_remote_state (); |
3402 | struct packet_config *noack_config; | |
2d717e4f | 3403 | char *wait_status = NULL; |
8621d6a9 | 3404 | |
23860348 | 3405 | immediate_quit++; /* Allow user to interrupt it. */ |
522002f9 | 3406 | QUIT; |
c906108c | 3407 | |
9a7071a8 JB |
3408 | if (interrupt_on_connect) |
3409 | send_interrupt_sequence (); | |
3410 | ||
57e12211 | 3411 | /* Ack any packet which the remote side has already sent. */ |
5d93a237 | 3412 | serial_write (rs->remote_desc, "+", 1); |
57e12211 | 3413 | |
1e51243a PA |
3414 | /* Signal other parts that we're going through the initial setup, |
3415 | and so things may not be stable yet. */ | |
3416 | rs->starting_up = 1; | |
3417 | ||
c8d104ad PA |
3418 | /* The first packet we send to the target is the optional "supported |
3419 | packets" request. If the target can answer this, it will tell us | |
3420 | which later probes to skip. */ | |
3421 | remote_query_supported (); | |
3422 | ||
d914c394 | 3423 | /* If the stub wants to get a QAllow, compose one and send it. */ |
4082afcc | 3424 | if (packet_support (PACKET_QAllow) != PACKET_DISABLE) |
c378d69d | 3425 | remote_set_permissions (target); |
d914c394 | 3426 | |
c8d104ad PA |
3427 | /* Next, we possibly activate noack mode. |
3428 | ||
3429 | If the QStartNoAckMode packet configuration is set to AUTO, | |
3430 | enable noack mode if the stub reported a wish for it with | |
3431 | qSupported. | |
3432 | ||
3433 | If set to TRUE, then enable noack mode even if the stub didn't | |
3434 | report it in qSupported. If the stub doesn't reply OK, the | |
3435 | session ends with an error. | |
3436 | ||
3437 | If FALSE, then don't activate noack mode, regardless of what the | |
3438 | stub claimed should be the default with qSupported. */ | |
3439 | ||
3440 | noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode]; | |
4082afcc | 3441 | if (packet_config_support (noack_config) != PACKET_DISABLE) |
c8d104ad PA |
3442 | { |
3443 | putpkt ("QStartNoAckMode"); | |
3444 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3445 | if (packet_ok (rs->buf, noack_config) == PACKET_OK) | |
3446 | rs->noack_mode = 1; | |
3447 | } | |
3448 | ||
04bd08de | 3449 | if (extended_p) |
5fe04517 PA |
3450 | { |
3451 | /* Tell the remote that we are using the extended protocol. */ | |
3452 | putpkt ("!"); | |
3453 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3454 | } | |
3455 | ||
9b224c5e PA |
3456 | /* Let the target know which signals it is allowed to pass down to |
3457 | the program. */ | |
3458 | update_signals_program_target (); | |
3459 | ||
d962ef82 DJ |
3460 | /* Next, if the target can specify a description, read it. We do |
3461 | this before anything involving memory or registers. */ | |
3462 | target_find_description (); | |
3463 | ||
6c95b8df PA |
3464 | /* Next, now that we know something about the target, update the |
3465 | address spaces in the program spaces. */ | |
3466 | update_address_spaces (); | |
3467 | ||
50c71eaf PA |
3468 | /* On OSs where the list of libraries is global to all |
3469 | processes, we fetch them early. */ | |
f5656ead | 3470 | if (gdbarch_has_global_solist (target_gdbarch ())) |
04bd08de | 3471 | solib_add (NULL, from_tty, target, auto_solib_add); |
50c71eaf | 3472 | |
74531fed PA |
3473 | if (non_stop) |
3474 | { | |
4082afcc | 3475 | if (packet_support (PACKET_QNonStop) != PACKET_ENABLE) |
3e43a32a MS |
3476 | error (_("Non-stop mode requested, but remote " |
3477 | "does not support non-stop")); | |
74531fed PA |
3478 | |
3479 | putpkt ("QNonStop:1"); | |
3480 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3481 | ||
3482 | if (strcmp (rs->buf, "OK") != 0) | |
9b20d036 | 3483 | error (_("Remote refused setting non-stop mode with: %s"), rs->buf); |
74531fed PA |
3484 | |
3485 | /* Find about threads and processes the stub is already | |
3486 | controlling. We default to adding them in the running state. | |
3487 | The '?' query below will then tell us about which threads are | |
3488 | stopped. */ | |
e8032dde | 3489 | remote_update_thread_list (target); |
74531fed | 3490 | } |
4082afcc | 3491 | else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE) |
74531fed PA |
3492 | { |
3493 | /* Don't assume that the stub can operate in all-stop mode. | |
e6f3fa52 | 3494 | Request it explicitly. */ |
74531fed PA |
3495 | putpkt ("QNonStop:0"); |
3496 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3497 | ||
3498 | if (strcmp (rs->buf, "OK") != 0) | |
9b20d036 | 3499 | error (_("Remote refused setting all-stop mode with: %s"), rs->buf); |
74531fed PA |
3500 | } |
3501 | ||
a0743c90 YQ |
3502 | /* Upload TSVs regardless of whether the target is running or not. The |
3503 | remote stub, such as GDBserver, may have some predefined or builtin | |
3504 | TSVs, even if the target is not running. */ | |
8bd200f1 | 3505 | if (remote_get_trace_status (target, current_trace_status ()) != -1) |
a0743c90 YQ |
3506 | { |
3507 | struct uploaded_tsv *uploaded_tsvs = NULL; | |
3508 | ||
181e3713 | 3509 | remote_upload_trace_state_variables (target, &uploaded_tsvs); |
a0743c90 YQ |
3510 | merge_uploaded_trace_state_variables (&uploaded_tsvs); |
3511 | } | |
3512 | ||
2d717e4f DJ |
3513 | /* Check whether the target is running now. */ |
3514 | putpkt ("?"); | |
3515 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3516 | ||
74531fed | 3517 | if (!non_stop) |
2d717e4f | 3518 | { |
e714e1bf UW |
3519 | ptid_t ptid; |
3520 | int fake_pid_p = 0; | |
3521 | struct inferior *inf; | |
3522 | ||
74531fed | 3523 | if (rs->buf[0] == 'W' || rs->buf[0] == 'X') |
2d717e4f | 3524 | { |
04bd08de | 3525 | if (!extended_p) |
74531fed | 3526 | error (_("The target is not running (try extended-remote?)")); |
c35b1492 PA |
3527 | |
3528 | /* We're connected, but not running. Drop out before we | |
3529 | call start_remote. */ | |
e278ad5b | 3530 | rs->starting_up = 0; |
c35b1492 | 3531 | return; |
2d717e4f DJ |
3532 | } |
3533 | else | |
74531fed | 3534 | { |
74531fed PA |
3535 | /* Save the reply for later. */ |
3536 | wait_status = alloca (strlen (rs->buf) + 1); | |
3537 | strcpy (wait_status, rs->buf); | |
3538 | } | |
3539 | ||
b7ea362b | 3540 | /* Fetch thread list. */ |
e8032dde | 3541 | target_update_thread_list (); |
b7ea362b | 3542 | |
74531fed PA |
3543 | /* Let the stub know that we want it to return the thread. */ |
3544 | set_continue_thread (minus_one_ptid); | |
3545 | ||
b7ea362b PA |
3546 | if (thread_count () == 0) |
3547 | { | |
3548 | /* Target has no concept of threads at all. GDB treats | |
3549 | non-threaded target as single-threaded; add a main | |
3550 | thread. */ | |
3551 | add_current_inferior_and_thread (wait_status); | |
3552 | } | |
3553 | else | |
3554 | { | |
3555 | /* We have thread information; select the thread the target | |
3556 | says should be current. If we're reconnecting to a | |
3557 | multi-threaded program, this will ideally be the thread | |
3558 | that last reported an event before GDB disconnected. */ | |
3559 | inferior_ptid = get_current_thread (wait_status); | |
3560 | if (ptid_equal (inferior_ptid, null_ptid)) | |
3561 | { | |
3562 | /* Odd... The target was able to list threads, but not | |
3563 | tell us which thread was current (no "thread" | |
3564 | register in T stop reply?). Just pick the first | |
3565 | thread in the thread list then. */ | |
3566 | inferior_ptid = thread_list->ptid; | |
3567 | } | |
3568 | } | |
74531fed | 3569 | |
6e586cc5 YQ |
3570 | /* init_wait_for_inferior should be called before get_offsets in order |
3571 | to manage `inserted' flag in bp loc in a correct state. | |
3572 | breakpoint_init_inferior, called from init_wait_for_inferior, set | |
3573 | `inserted' flag to 0, while before breakpoint_re_set, called from | |
3574 | start_remote, set `inserted' flag to 1. In the initialization of | |
3575 | inferior, breakpoint_init_inferior should be called first, and then | |
3576 | breakpoint_re_set can be called. If this order is broken, state of | |
3577 | `inserted' flag is wrong, and cause some problems on breakpoint | |
3578 | manipulation. */ | |
3579 | init_wait_for_inferior (); | |
3580 | ||
74531fed PA |
3581 | get_offsets (); /* Get text, data & bss offsets. */ |
3582 | ||
d962ef82 DJ |
3583 | /* If we could not find a description using qXfer, and we know |
3584 | how to do it some other way, try again. This is not | |
3585 | supported for non-stop; it could be, but it is tricky if | |
3586 | there are no stopped threads when we connect. */ | |
04bd08de | 3587 | if (remote_read_description_p (target) |
f5656ead | 3588 | && gdbarch_target_desc (target_gdbarch ()) == NULL) |
d962ef82 DJ |
3589 | { |
3590 | target_clear_description (); | |
3591 | target_find_description (); | |
3592 | } | |
3593 | ||
74531fed PA |
3594 | /* Use the previously fetched status. */ |
3595 | gdb_assert (wait_status != NULL); | |
3596 | strcpy (rs->buf, wait_status); | |
3597 | rs->cached_wait_status = 1; | |
3598 | ||
3599 | immediate_quit--; | |
04bd08de | 3600 | start_remote (from_tty); /* Initialize gdb process mechanisms. */ |
2d717e4f DJ |
3601 | } |
3602 | else | |
3603 | { | |
68c97600 PA |
3604 | /* Clear WFI global state. Do this before finding about new |
3605 | threads and inferiors, and setting the current inferior. | |
3606 | Otherwise we would clear the proceed status of the current | |
3607 | inferior when we want its stop_soon state to be preserved | |
3608 | (see notice_new_inferior). */ | |
3609 | init_wait_for_inferior (); | |
3610 | ||
74531fed PA |
3611 | /* In non-stop, we will either get an "OK", meaning that there |
3612 | are no stopped threads at this time; or, a regular stop | |
3613 | reply. In the latter case, there may be more than one thread | |
3614 | stopped --- we pull them all out using the vStopped | |
3615 | mechanism. */ | |
3616 | if (strcmp (rs->buf, "OK") != 0) | |
3617 | { | |
722247f1 | 3618 | struct notif_client *notif = ¬if_client_stop; |
2d717e4f | 3619 | |
722247f1 YQ |
3620 | /* remote_notif_get_pending_replies acks this one, and gets |
3621 | the rest out. */ | |
f48ff2a7 | 3622 | rs->notif_state->pending_event[notif_client_stop.id] |
722247f1 YQ |
3623 | = remote_notif_parse (notif, rs->buf); |
3624 | remote_notif_get_pending_events (notif); | |
c906108c | 3625 | |
74531fed PA |
3626 | /* Make sure that threads that were stopped remain |
3627 | stopped. */ | |
3628 | iterate_over_threads (set_stop_requested_callback, NULL); | |
3629 | } | |
2d717e4f | 3630 | |
74531fed PA |
3631 | if (target_can_async_p ()) |
3632 | target_async (inferior_event_handler, 0); | |
c906108c | 3633 | |
74531fed PA |
3634 | if (thread_count () == 0) |
3635 | { | |
04bd08de | 3636 | if (!extended_p) |
74531fed | 3637 | error (_("The target is not running (try extended-remote?)")); |
82f73884 | 3638 | |
c35b1492 PA |
3639 | /* We're connected, but not running. Drop out before we |
3640 | call start_remote. */ | |
e278ad5b | 3641 | rs->starting_up = 0; |
c35b1492 PA |
3642 | return; |
3643 | } | |
74531fed PA |
3644 | |
3645 | /* Let the stub know that we want it to return the thread. */ | |
c0a2216e | 3646 | |
74531fed PA |
3647 | /* Force the stub to choose a thread. */ |
3648 | set_general_thread (null_ptid); | |
c906108c | 3649 | |
74531fed PA |
3650 | /* Query it. */ |
3651 | inferior_ptid = remote_current_thread (minus_one_ptid); | |
3652 | if (ptid_equal (inferior_ptid, minus_one_ptid)) | |
3653 | error (_("remote didn't report the current thread in non-stop mode")); | |
c906108c | 3654 | |
74531fed PA |
3655 | get_offsets (); /* Get text, data & bss offsets. */ |
3656 | ||
3657 | /* In non-stop mode, any cached wait status will be stored in | |
3658 | the stop reply queue. */ | |
3659 | gdb_assert (wait_status == NULL); | |
f0223081 | 3660 | |
2455069d | 3661 | /* Report all signals during attach/startup. */ |
94bedb42 | 3662 | remote_pass_signals (target, 0, NULL); |
74531fed | 3663 | } |
c8d104ad | 3664 | |
c8d104ad PA |
3665 | /* If we connected to a live target, do some additional setup. */ |
3666 | if (target_has_execution) | |
3667 | { | |
f4ccffad | 3668 | if (symfile_objfile) /* No use without a symbol-file. */ |
36d25514 | 3669 | remote_check_symbols (); |
c8d104ad | 3670 | } |
50c71eaf | 3671 | |
d5551862 SS |
3672 | /* Possibly the target has been engaged in a trace run started |
3673 | previously; find out where things are at. */ | |
8bd200f1 | 3674 | if (remote_get_trace_status (target, current_trace_status ()) != -1) |
d5551862 | 3675 | { |
00bf0b85 | 3676 | struct uploaded_tp *uploaded_tps = NULL; |
00bf0b85 | 3677 | |
00bf0b85 SS |
3678 | if (current_trace_status ()->running) |
3679 | printf_filtered (_("Trace is already running on the target.\n")); | |
3680 | ||
ab6617cc | 3681 | remote_upload_tracepoints (target, &uploaded_tps); |
00bf0b85 SS |
3682 | |
3683 | merge_uploaded_tracepoints (&uploaded_tps); | |
d5551862 SS |
3684 | } |
3685 | ||
1e51243a PA |
3686 | /* The thread and inferior lists are now synchronized with the |
3687 | target, our symbols have been relocated, and we're merged the | |
3688 | target's tracepoints with ours. We're done with basic start | |
3689 | up. */ | |
3690 | rs->starting_up = 0; | |
3691 | ||
a25a5a45 PA |
3692 | /* Maybe breakpoints are global and need to be inserted now. */ |
3693 | if (breakpoints_should_be_inserted_now ()) | |
50c71eaf | 3694 | insert_breakpoints (); |
c906108c SS |
3695 | } |
3696 | ||
3697 | /* Open a connection to a remote debugger. | |
3698 | NAME is the filename used for communication. */ | |
3699 | ||
3700 | static void | |
014f9477 | 3701 | remote_open (const char *name, int from_tty) |
c906108c | 3702 | { |
75c99385 | 3703 | remote_open_1 (name, from_tty, &remote_ops, 0); |
43ff13b4 JM |
3704 | } |
3705 | ||
c906108c SS |
3706 | /* Open a connection to a remote debugger using the extended |
3707 | remote gdb protocol. NAME is the filename used for communication. */ | |
3708 | ||
3709 | static void | |
014f9477 | 3710 | extended_remote_open (const char *name, int from_tty) |
c906108c | 3711 | { |
75c99385 | 3712 | remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */); |
43ff13b4 JM |
3713 | } |
3714 | ||
ca4f7f8b PA |
3715 | /* Reset all packets back to "unknown support". Called when opening a |
3716 | new connection to a remote target. */ | |
c906108c | 3717 | |
d471ea57 | 3718 | static void |
ca4f7f8b | 3719 | reset_all_packet_configs_support (void) |
d471ea57 AC |
3720 | { |
3721 | int i; | |
a744cf53 | 3722 | |
444abaca | 3723 | for (i = 0; i < PACKET_MAX; i++) |
4082afcc | 3724 | remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN; |
d471ea57 AC |
3725 | } |
3726 | ||
ca4f7f8b PA |
3727 | /* Initialize all packet configs. */ |
3728 | ||
3729 | static void | |
3730 | init_all_packet_configs (void) | |
3731 | { | |
3732 | int i; | |
3733 | ||
3734 | for (i = 0; i < PACKET_MAX; i++) | |
3735 | { | |
3736 | remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO; | |
3737 | remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN; | |
3738 | } | |
3739 | } | |
3740 | ||
23860348 | 3741 | /* Symbol look-up. */ |
dc8acb97 MS |
3742 | |
3743 | static void | |
36d25514 | 3744 | remote_check_symbols (void) |
dc8acb97 | 3745 | { |
d01949b6 | 3746 | struct remote_state *rs = get_remote_state (); |
dc8acb97 | 3747 | char *msg, *reply, *tmp; |
3b7344d5 | 3748 | struct bound_minimal_symbol sym; |
dc8acb97 MS |
3749 | int end; |
3750 | ||
63154eca PA |
3751 | /* The remote side has no concept of inferiors that aren't running |
3752 | yet, it only knows about running processes. If we're connected | |
3753 | but our current inferior is not running, we should not invite the | |
3754 | remote target to request symbol lookups related to its | |
3755 | (unrelated) current process. */ | |
3756 | if (!target_has_execution) | |
3757 | return; | |
3758 | ||
4082afcc | 3759 | if (packet_support (PACKET_qSymbol) == PACKET_DISABLE) |
dc8acb97 MS |
3760 | return; |
3761 | ||
63154eca PA |
3762 | /* Make sure the remote is pointing at the right process. Note |
3763 | there's no way to select "no process". */ | |
3c9c4b83 PA |
3764 | set_general_process (); |
3765 | ||
6d820c5c DJ |
3766 | /* Allocate a message buffer. We can't reuse the input buffer in RS, |
3767 | because we need both at the same time. */ | |
ea9c271d | 3768 | msg = alloca (get_remote_packet_size ()); |
6d820c5c | 3769 | |
23860348 | 3770 | /* Invite target to request symbol lookups. */ |
dc8acb97 MS |
3771 | |
3772 | putpkt ("qSymbol::"); | |
6d820c5c DJ |
3773 | getpkt (&rs->buf, &rs->buf_size, 0); |
3774 | packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]); | |
2e9f7625 | 3775 | reply = rs->buf; |
dc8acb97 MS |
3776 | |
3777 | while (strncmp (reply, "qSymbol:", 8) == 0) | |
3778 | { | |
77e371c0 TT |
3779 | struct bound_minimal_symbol sym; |
3780 | ||
dc8acb97 | 3781 | tmp = &reply[8]; |
cfd77fa1 | 3782 | end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2); |
dc8acb97 MS |
3783 | msg[end] = '\0'; |
3784 | sym = lookup_minimal_symbol (msg, NULL, NULL); | |
3b7344d5 | 3785 | if (sym.minsym == NULL) |
ea9c271d | 3786 | xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]); |
dc8acb97 | 3787 | else |
2bbe3cc1 | 3788 | { |
f5656ead | 3789 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
77e371c0 | 3790 | CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym); |
2bbe3cc1 DJ |
3791 | |
3792 | /* If this is a function address, return the start of code | |
3793 | instead of any data function descriptor. */ | |
f5656ead | 3794 | sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (), |
2bbe3cc1 DJ |
3795 | sym_addr, |
3796 | ¤t_target); | |
3797 | ||
3798 | xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s", | |
5af949e3 | 3799 | phex_nz (sym_addr, addr_size), &reply[8]); |
2bbe3cc1 DJ |
3800 | } |
3801 | ||
dc8acb97 | 3802 | putpkt (msg); |
6d820c5c | 3803 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 3804 | reply = rs->buf; |
dc8acb97 MS |
3805 | } |
3806 | } | |
3807 | ||
9db8d71f | 3808 | static struct serial * |
baa336ce | 3809 | remote_serial_open (const char *name) |
9db8d71f DJ |
3810 | { |
3811 | static int udp_warning = 0; | |
3812 | ||
3813 | /* FIXME: Parsing NAME here is a hack. But we want to warn here instead | |
3814 | of in ser-tcp.c, because it is the remote protocol assuming that the | |
3815 | serial connection is reliable and not the serial connection promising | |
3816 | to be. */ | |
3817 | if (!udp_warning && strncmp (name, "udp:", 4) == 0) | |
3818 | { | |
3e43a32a MS |
3819 | warning (_("The remote protocol may be unreliable over UDP.\n" |
3820 | "Some events may be lost, rendering further debugging " | |
3821 | "impossible.")); | |
9db8d71f DJ |
3822 | udp_warning = 1; |
3823 | } | |
3824 | ||
3825 | return serial_open (name); | |
3826 | } | |
3827 | ||
d914c394 SS |
3828 | /* Inform the target of our permission settings. The permission flags |
3829 | work without this, but if the target knows the settings, it can do | |
3830 | a couple things. First, it can add its own check, to catch cases | |
3831 | that somehow manage to get by the permissions checks in target | |
3832 | methods. Second, if the target is wired to disallow particular | |
3833 | settings (for instance, a system in the field that is not set up to | |
3834 | be able to stop at a breakpoint), it can object to any unavailable | |
3835 | permissions. */ | |
3836 | ||
3837 | void | |
c378d69d | 3838 | remote_set_permissions (struct target_ops *self) |
d914c394 SS |
3839 | { |
3840 | struct remote_state *rs = get_remote_state (); | |
3841 | ||
bba74b36 YQ |
3842 | xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:" |
3843 | "WriteReg:%x;WriteMem:%x;" | |
3844 | "InsertBreak:%x;InsertTrace:%x;" | |
3845 | "InsertFastTrace:%x;Stop:%x", | |
3846 | may_write_registers, may_write_memory, | |
3847 | may_insert_breakpoints, may_insert_tracepoints, | |
3848 | may_insert_fast_tracepoints, may_stop); | |
d914c394 SS |
3849 | putpkt (rs->buf); |
3850 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3851 | ||
3852 | /* If the target didn't like the packet, warn the user. Do not try | |
3853 | to undo the user's settings, that would just be maddening. */ | |
3854 | if (strcmp (rs->buf, "OK") != 0) | |
7ea6d463 | 3855 | warning (_("Remote refused setting permissions with: %s"), rs->buf); |
d914c394 SS |
3856 | } |
3857 | ||
be2a5f71 DJ |
3858 | /* This type describes each known response to the qSupported |
3859 | packet. */ | |
3860 | struct protocol_feature | |
3861 | { | |
3862 | /* The name of this protocol feature. */ | |
3863 | const char *name; | |
3864 | ||
3865 | /* The default for this protocol feature. */ | |
3866 | enum packet_support default_support; | |
3867 | ||
3868 | /* The function to call when this feature is reported, or after | |
3869 | qSupported processing if the feature is not supported. | |
3870 | The first argument points to this structure. The second | |
3871 | argument indicates whether the packet requested support be | |
3872 | enabled, disabled, or probed (or the default, if this function | |
3873 | is being called at the end of processing and this feature was | |
3874 | not reported). The third argument may be NULL; if not NULL, it | |
3875 | is a NUL-terminated string taken from the packet following | |
3876 | this feature's name and an equals sign. */ | |
3877 | void (*func) (const struct protocol_feature *, enum packet_support, | |
3878 | const char *); | |
3879 | ||
3880 | /* The corresponding packet for this feature. Only used if | |
3881 | FUNC is remote_supported_packet. */ | |
3882 | int packet; | |
3883 | }; | |
3884 | ||
be2a5f71 DJ |
3885 | static void |
3886 | remote_supported_packet (const struct protocol_feature *feature, | |
3887 | enum packet_support support, | |
3888 | const char *argument) | |
3889 | { | |
3890 | if (argument) | |
3891 | { | |
3892 | warning (_("Remote qSupported response supplied an unexpected value for" | |
3893 | " \"%s\"."), feature->name); | |
3894 | return; | |
3895 | } | |
3896 | ||
4082afcc | 3897 | remote_protocol_packets[feature->packet].support = support; |
be2a5f71 | 3898 | } |
be2a5f71 DJ |
3899 | |
3900 | static void | |
3901 | remote_packet_size (const struct protocol_feature *feature, | |
3902 | enum packet_support support, const char *value) | |
3903 | { | |
3904 | struct remote_state *rs = get_remote_state (); | |
3905 | ||
3906 | int packet_size; | |
3907 | char *value_end; | |
3908 | ||
3909 | if (support != PACKET_ENABLE) | |
3910 | return; | |
3911 | ||
3912 | if (value == NULL || *value == '\0') | |
3913 | { | |
3914 | warning (_("Remote target reported \"%s\" without a size."), | |
3915 | feature->name); | |
3916 | return; | |
3917 | } | |
3918 | ||
3919 | errno = 0; | |
3920 | packet_size = strtol (value, &value_end, 16); | |
3921 | if (errno != 0 || *value_end != '\0' || packet_size < 0) | |
3922 | { | |
3923 | warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."), | |
3924 | feature->name, value); | |
3925 | return; | |
3926 | } | |
3927 | ||
3928 | if (packet_size > MAX_REMOTE_PACKET_SIZE) | |
3929 | { | |
3930 | warning (_("limiting remote suggested packet size (%d bytes) to %d"), | |
3931 | packet_size, MAX_REMOTE_PACKET_SIZE); | |
3932 | packet_size = MAX_REMOTE_PACKET_SIZE; | |
3933 | } | |
3934 | ||
3935 | /* Record the new maximum packet size. */ | |
3936 | rs->explicit_packet_size = packet_size; | |
3937 | } | |
3938 | ||
dc473cfb | 3939 | static const struct protocol_feature remote_protocol_features[] = { |
0876f84a | 3940 | { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 }, |
40e57cf2 | 3941 | { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet, |
fd79ecee | 3942 | PACKET_qXfer_auxv }, |
23181151 DJ |
3943 | { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet, |
3944 | PACKET_qXfer_features }, | |
cfa9d6d9 DJ |
3945 | { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet, |
3946 | PACKET_qXfer_libraries }, | |
2268b414 JK |
3947 | { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet, |
3948 | PACKET_qXfer_libraries_svr4 }, | |
ced63ec0 | 3949 | { "augmented-libraries-svr4-read", PACKET_DISABLE, |
4082afcc | 3950 | remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature }, |
fd79ecee | 3951 | { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet, |
89be2091 | 3952 | PACKET_qXfer_memory_map }, |
4de6483e UW |
3953 | { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet, |
3954 | PACKET_qXfer_spu_read }, | |
3955 | { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet, | |
3956 | PACKET_qXfer_spu_write }, | |
07e059b5 VP |
3957 | { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet, |
3958 | PACKET_qXfer_osdata }, | |
dc146f7c VP |
3959 | { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet, |
3960 | PACKET_qXfer_threads }, | |
b3b9301e PA |
3961 | { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet, |
3962 | PACKET_qXfer_traceframe_info }, | |
89be2091 DJ |
3963 | { "QPassSignals", PACKET_DISABLE, remote_supported_packet, |
3964 | PACKET_QPassSignals }, | |
9b224c5e PA |
3965 | { "QProgramSignals", PACKET_DISABLE, remote_supported_packet, |
3966 | PACKET_QProgramSignals }, | |
a6f3e723 SL |
3967 | { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet, |
3968 | PACKET_QStartNoAckMode }, | |
4082afcc PA |
3969 | { "multiprocess", PACKET_DISABLE, remote_supported_packet, |
3970 | PACKET_multiprocess_feature }, | |
3971 | { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop }, | |
4aa995e1 PA |
3972 | { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet, |
3973 | PACKET_qXfer_siginfo_read }, | |
3974 | { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet, | |
3975 | PACKET_qXfer_siginfo_write }, | |
4082afcc | 3976 | { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet, |
782b2b07 | 3977 | PACKET_ConditionalTracepoints }, |
4082afcc | 3978 | { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet, |
3788aec7 | 3979 | PACKET_ConditionalBreakpoints }, |
4082afcc | 3980 | { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet, |
d3ce09f5 | 3981 | PACKET_BreakpointCommands }, |
4082afcc | 3982 | { "FastTracepoints", PACKET_DISABLE, remote_supported_packet, |
7a697b8d | 3983 | PACKET_FastTracepoints }, |
4082afcc | 3984 | { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet, |
0fb4aa4b | 3985 | PACKET_StaticTracepoints }, |
4082afcc | 3986 | {"InstallInTrace", PACKET_DISABLE, remote_supported_packet, |
1e4d1764 | 3987 | PACKET_InstallInTrace}, |
4082afcc PA |
3988 | { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet, |
3989 | PACKET_DisconnectedTracing_feature }, | |
40ab02ce MS |
3990 | { "ReverseContinue", PACKET_DISABLE, remote_supported_packet, |
3991 | PACKET_bc }, | |
3992 | { "ReverseStep", PACKET_DISABLE, remote_supported_packet, | |
3993 | PACKET_bs }, | |
409873ef SS |
3994 | { "TracepointSource", PACKET_DISABLE, remote_supported_packet, |
3995 | PACKET_TracepointSource }, | |
d914c394 SS |
3996 | { "QAllow", PACKET_DISABLE, remote_supported_packet, |
3997 | PACKET_QAllow }, | |
4082afcc PA |
3998 | { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet, |
3999 | PACKET_EnableDisableTracepoints_feature }, | |
78d85199 YQ |
4000 | { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet, |
4001 | PACKET_qXfer_fdpic }, | |
169081d0 TG |
4002 | { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet, |
4003 | PACKET_qXfer_uib }, | |
03583c20 UW |
4004 | { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet, |
4005 | PACKET_QDisableRandomization }, | |
d1feda86 | 4006 | { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent}, |
f6f899bf HAQ |
4007 | { "QTBuffer:size", PACKET_DISABLE, |
4008 | remote_supported_packet, PACKET_QTBuffer_size}, | |
4082afcc | 4009 | { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature }, |
9accd112 MM |
4010 | { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off }, |
4011 | { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts }, | |
4012 | { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet, | |
4013 | PACKET_qXfer_btrace } | |
be2a5f71 DJ |
4014 | }; |
4015 | ||
c8d5aac9 L |
4016 | static char *remote_support_xml; |
4017 | ||
4018 | /* Register string appended to "xmlRegisters=" in qSupported query. */ | |
4019 | ||
4020 | void | |
6e39997a | 4021 | register_remote_support_xml (const char *xml) |
c8d5aac9 L |
4022 | { |
4023 | #if defined(HAVE_LIBEXPAT) | |
4024 | if (remote_support_xml == NULL) | |
c4f7c687 | 4025 | remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL); |
c8d5aac9 L |
4026 | else |
4027 | { | |
4028 | char *copy = xstrdup (remote_support_xml + 13); | |
4029 | char *p = strtok (copy, ","); | |
4030 | ||
4031 | do | |
4032 | { | |
4033 | if (strcmp (p, xml) == 0) | |
4034 | { | |
4035 | /* already there */ | |
4036 | xfree (copy); | |
4037 | return; | |
4038 | } | |
4039 | } | |
4040 | while ((p = strtok (NULL, ",")) != NULL); | |
4041 | xfree (copy); | |
4042 | ||
94b0dee1 PA |
4043 | remote_support_xml = reconcat (remote_support_xml, |
4044 | remote_support_xml, ",", xml, | |
4045 | (char *) NULL); | |
c8d5aac9 L |
4046 | } |
4047 | #endif | |
4048 | } | |
4049 | ||
4050 | static char * | |
4051 | remote_query_supported_append (char *msg, const char *append) | |
4052 | { | |
4053 | if (msg) | |
94b0dee1 | 4054 | return reconcat (msg, msg, ";", append, (char *) NULL); |
c8d5aac9 L |
4055 | else |
4056 | return xstrdup (append); | |
4057 | } | |
4058 | ||
be2a5f71 DJ |
4059 | static void |
4060 | remote_query_supported (void) | |
4061 | { | |
4062 | struct remote_state *rs = get_remote_state (); | |
4063 | char *next; | |
4064 | int i; | |
4065 | unsigned char seen [ARRAY_SIZE (remote_protocol_features)]; | |
4066 | ||
4067 | /* The packet support flags are handled differently for this packet | |
4068 | than for most others. We treat an error, a disabled packet, and | |
4069 | an empty response identically: any features which must be reported | |
4070 | to be used will be automatically disabled. An empty buffer | |
4071 | accomplishes this, since that is also the representation for a list | |
4072 | containing no features. */ | |
4073 | ||
4074 | rs->buf[0] = 0; | |
4082afcc | 4075 | if (packet_support (PACKET_qSupported) != PACKET_DISABLE) |
be2a5f71 | 4076 | { |
c8d5aac9 | 4077 | char *q = NULL; |
94b0dee1 | 4078 | struct cleanup *old_chain = make_cleanup (free_current_contents, &q); |
c8d5aac9 | 4079 | |
901f9912 | 4080 | q = remote_query_supported_append (q, "multiprocess+"); |
c8d5aac9 L |
4081 | |
4082 | if (remote_support_xml) | |
4083 | q = remote_query_supported_append (q, remote_support_xml); | |
4084 | ||
dde08ee1 PA |
4085 | q = remote_query_supported_append (q, "qRelocInsn+"); |
4086 | ||
4087 | q = reconcat (q, "qSupported:", q, (char *) NULL); | |
4088 | putpkt (q); | |
82f73884 | 4089 | |
94b0dee1 PA |
4090 | do_cleanups (old_chain); |
4091 | ||
be2a5f71 DJ |
4092 | getpkt (&rs->buf, &rs->buf_size, 0); |
4093 | ||
4094 | /* If an error occured, warn, but do not return - just reset the | |
4095 | buffer to empty and go on to disable features. */ | |
4096 | if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported]) | |
4097 | == PACKET_ERROR) | |
4098 | { | |
4099 | warning (_("Remote failure reply: %s"), rs->buf); | |
4100 | rs->buf[0] = 0; | |
4101 | } | |
4102 | } | |
4103 | ||
4104 | memset (seen, 0, sizeof (seen)); | |
4105 | ||
4106 | next = rs->buf; | |
4107 | while (*next) | |
4108 | { | |
4109 | enum packet_support is_supported; | |
4110 | char *p, *end, *name_end, *value; | |
4111 | ||
4112 | /* First separate out this item from the rest of the packet. If | |
4113 | there's another item after this, we overwrite the separator | |
4114 | (terminated strings are much easier to work with). */ | |
4115 | p = next; | |
4116 | end = strchr (p, ';'); | |
4117 | if (end == NULL) | |
4118 | { | |
4119 | end = p + strlen (p); | |
4120 | next = end; | |
4121 | } | |
4122 | else | |
4123 | { | |
89be2091 DJ |
4124 | *end = '\0'; |
4125 | next = end + 1; | |
4126 | ||
be2a5f71 DJ |
4127 | if (end == p) |
4128 | { | |
4129 | warning (_("empty item in \"qSupported\" response")); | |
4130 | continue; | |
4131 | } | |
be2a5f71 DJ |
4132 | } |
4133 | ||
4134 | name_end = strchr (p, '='); | |
4135 | if (name_end) | |
4136 | { | |
4137 | /* This is a name=value entry. */ | |
4138 | is_supported = PACKET_ENABLE; | |
4139 | value = name_end + 1; | |
4140 | *name_end = '\0'; | |
4141 | } | |
4142 | else | |
4143 | { | |
4144 | value = NULL; | |
4145 | switch (end[-1]) | |
4146 | { | |
4147 | case '+': | |
4148 | is_supported = PACKET_ENABLE; | |
4149 | break; | |
4150 | ||
4151 | case '-': | |
4152 | is_supported = PACKET_DISABLE; | |
4153 | break; | |
4154 | ||
4155 | case '?': | |
4156 | is_supported = PACKET_SUPPORT_UNKNOWN; | |
4157 | break; | |
4158 | ||
4159 | default: | |
3e43a32a MS |
4160 | warning (_("unrecognized item \"%s\" " |
4161 | "in \"qSupported\" response"), p); | |
be2a5f71 DJ |
4162 | continue; |
4163 | } | |
4164 | end[-1] = '\0'; | |
4165 | } | |
4166 | ||
4167 | for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++) | |
4168 | if (strcmp (remote_protocol_features[i].name, p) == 0) | |
4169 | { | |
4170 | const struct protocol_feature *feature; | |
4171 | ||
4172 | seen[i] = 1; | |
4173 | feature = &remote_protocol_features[i]; | |
4174 | feature->func (feature, is_supported, value); | |
4175 | break; | |
4176 | } | |
4177 | } | |
4178 | ||
4179 | /* If we increased the packet size, make sure to increase the global | |
4180 | buffer size also. We delay this until after parsing the entire | |
4181 | qSupported packet, because this is the same buffer we were | |
4182 | parsing. */ | |
4183 | if (rs->buf_size < rs->explicit_packet_size) | |
4184 | { | |
4185 | rs->buf_size = rs->explicit_packet_size; | |
4186 | rs->buf = xrealloc (rs->buf, rs->buf_size); | |
4187 | } | |
4188 | ||
4189 | /* Handle the defaults for unmentioned features. */ | |
4190 | for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++) | |
4191 | if (!seen[i]) | |
4192 | { | |
4193 | const struct protocol_feature *feature; | |
4194 | ||
4195 | feature = &remote_protocol_features[i]; | |
4196 | feature->func (feature, feature->default_support, NULL); | |
4197 | } | |
4198 | } | |
4199 | ||
78a095c3 JK |
4200 | /* Remove any of the remote.c targets from target stack. Upper targets depend |
4201 | on it so remove them first. */ | |
4202 | ||
4203 | static void | |
4204 | remote_unpush_target (void) | |
4205 | { | |
4206 | pop_all_targets_above (process_stratum - 1); | |
4207 | } | |
be2a5f71 | 4208 | |
c906108c | 4209 | static void |
014f9477 | 4210 | remote_open_1 (const char *name, int from_tty, |
3e43a32a | 4211 | struct target_ops *target, int extended_p) |
c906108c | 4212 | { |
d01949b6 | 4213 | struct remote_state *rs = get_remote_state (); |
a6f3e723 | 4214 | |
c906108c | 4215 | if (name == 0) |
8a3fe4f8 | 4216 | error (_("To open a remote debug connection, you need to specify what\n" |
22e04375 | 4217 | "serial device is attached to the remote system\n" |
8a3fe4f8 | 4218 | "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).")); |
c906108c | 4219 | |
23860348 | 4220 | /* See FIXME above. */ |
c6ebd6cf | 4221 | if (!target_async_permitted) |
92d1e331 | 4222 | wait_forever_enabled_p = 1; |
6426a772 | 4223 | |
2d717e4f | 4224 | /* If we're connected to a running target, target_preopen will kill it. |
78a095c3 JK |
4225 | Ask this question first, before target_preopen has a chance to kill |
4226 | anything. */ | |
5d93a237 | 4227 | if (rs->remote_desc != NULL && !have_inferiors ()) |
2d717e4f | 4228 | { |
78a095c3 JK |
4229 | if (from_tty |
4230 | && !query (_("Already connected to a remote target. Disconnect? "))) | |
2d717e4f DJ |
4231 | error (_("Still connected.")); |
4232 | } | |
4233 | ||
78a095c3 | 4234 | /* Here the possibly existing remote target gets unpushed. */ |
c906108c SS |
4235 | target_preopen (from_tty); |
4236 | ||
89be2091 | 4237 | /* Make sure we send the passed signals list the next time we resume. */ |
747dc59d TT |
4238 | xfree (rs->last_pass_packet); |
4239 | rs->last_pass_packet = NULL; | |
89be2091 | 4240 | |
9b224c5e PA |
4241 | /* Make sure we send the program signals list the next time we |
4242 | resume. */ | |
5e4a05c4 TT |
4243 | xfree (rs->last_program_signals_packet); |
4244 | rs->last_program_signals_packet = NULL; | |
9b224c5e | 4245 | |
ad9a8f3f | 4246 | remote_fileio_reset (); |
1dd41f16 NS |
4247 | reopen_exec_file (); |
4248 | reread_symbols (); | |
4249 | ||
5d93a237 TT |
4250 | rs->remote_desc = remote_serial_open (name); |
4251 | if (!rs->remote_desc) | |
c906108c SS |
4252 | perror_with_name (name); |
4253 | ||
4254 | if (baud_rate != -1) | |
4255 | { | |
5d93a237 | 4256 | if (serial_setbaudrate (rs->remote_desc, baud_rate)) |
c906108c | 4257 | { |
9b74d5d3 KB |
4258 | /* The requested speed could not be set. Error out to |
4259 | top level after closing remote_desc. Take care to | |
4260 | set remote_desc to NULL to avoid closing remote_desc | |
4261 | more than once. */ | |
5d93a237 TT |
4262 | serial_close (rs->remote_desc); |
4263 | rs->remote_desc = NULL; | |
c906108c SS |
4264 | perror_with_name (name); |
4265 | } | |
4266 | } | |
4267 | ||
5d93a237 | 4268 | serial_raw (rs->remote_desc); |
c906108c SS |
4269 | |
4270 | /* If there is something sitting in the buffer we might take it as a | |
4271 | response to a command, which would be bad. */ | |
5d93a237 | 4272 | serial_flush_input (rs->remote_desc); |
c906108c SS |
4273 | |
4274 | if (from_tty) | |
4275 | { | |
4276 | puts_filtered ("Remote debugging using "); | |
4277 | puts_filtered (name); | |
4278 | puts_filtered ("\n"); | |
4279 | } | |
23860348 | 4280 | push_target (target); /* Switch to using remote target now. */ |
c906108c | 4281 | |
74531fed PA |
4282 | /* Register extra event sources in the event loop. */ |
4283 | remote_async_inferior_event_token | |
4284 | = create_async_event_handler (remote_async_inferior_event_handler, | |
4285 | NULL); | |
5965e028 | 4286 | rs->notif_state = remote_notif_state_allocate (); |
74531fed | 4287 | |
be2a5f71 DJ |
4288 | /* Reset the target state; these things will be queried either by |
4289 | remote_query_supported or as they are needed. */ | |
ca4f7f8b | 4290 | reset_all_packet_configs_support (); |
74531fed | 4291 | rs->cached_wait_status = 0; |
be2a5f71 | 4292 | rs->explicit_packet_size = 0; |
a6f3e723 | 4293 | rs->noack_mode = 0; |
82f73884 | 4294 | rs->extended = extended_p; |
e24a49d8 | 4295 | rs->waiting_for_stop_reply = 0; |
3a29589a | 4296 | rs->ctrlc_pending_p = 0; |
802188a7 | 4297 | |
47f8a51d TT |
4298 | rs->general_thread = not_sent_ptid; |
4299 | rs->continue_thread = not_sent_ptid; | |
262e1174 | 4300 | rs->remote_traceframe_number = -1; |
c906108c | 4301 | |
9d1f7ab2 | 4302 | /* Probe for ability to use "ThreadInfo" query, as required. */ |
b80fafe3 TT |
4303 | rs->use_threadinfo_query = 1; |
4304 | rs->use_threadextra_query = 1; | |
9d1f7ab2 | 4305 | |
c6ebd6cf | 4306 | if (target_async_permitted) |
92d1e331 | 4307 | { |
23860348 | 4308 | /* With this target we start out by owning the terminal. */ |
92d1e331 DJ |
4309 | remote_async_terminal_ours_p = 1; |
4310 | ||
4311 | /* FIXME: cagney/1999-09-23: During the initial connection it is | |
4312 | assumed that the target is already ready and able to respond to | |
0df8b418 | 4313 | requests. Unfortunately remote_start_remote() eventually calls |
92d1e331 | 4314 | wait_for_inferior() with no timeout. wait_forever_enabled_p gets |
0df8b418 | 4315 | around this. Eventually a mechanism that allows |
92d1e331 | 4316 | wait_for_inferior() to expect/get timeouts will be |
23860348 | 4317 | implemented. */ |
92d1e331 DJ |
4318 | wait_forever_enabled_p = 0; |
4319 | } | |
4320 | ||
23860348 | 4321 | /* First delete any symbols previously loaded from shared libraries. */ |
f78f6cf1 | 4322 | no_shared_libraries (NULL, 0); |
f78f6cf1 | 4323 | |
74531fed PA |
4324 | /* Start afresh. */ |
4325 | init_thread_list (); | |
4326 | ||
36918e70 | 4327 | /* Start the remote connection. If error() or QUIT, discard this |
165b8e33 AC |
4328 | target (we'd otherwise be in an inconsistent state) and then |
4329 | propogate the error on up the exception chain. This ensures that | |
4330 | the caller doesn't stumble along blindly assuming that the | |
4331 | function succeeded. The CLI doesn't have this problem but other | |
4332 | UI's, such as MI do. | |
36918e70 AC |
4333 | |
4334 | FIXME: cagney/2002-05-19: Instead of re-throwing the exception, | |
4335 | this function should return an error indication letting the | |
ce2826aa | 4336 | caller restore the previous state. Unfortunately the command |
36918e70 AC |
4337 | ``target remote'' is directly wired to this function making that |
4338 | impossible. On a positive note, the CLI side of this problem has | |
4339 | been fixed - the function set_cmd_context() makes it possible for | |
4340 | all the ``target ....'' commands to share a common callback | |
4341 | function. See cli-dump.c. */ | |
109c3e39 | 4342 | { |
04bd08de | 4343 | volatile struct gdb_exception ex; |
2d717e4f | 4344 | |
04bd08de TT |
4345 | TRY_CATCH (ex, RETURN_MASK_ALL) |
4346 | { | |
4347 | remote_start_remote (from_tty, target, extended_p); | |
4348 | } | |
109c3e39 AC |
4349 | if (ex.reason < 0) |
4350 | { | |
c8d104ad PA |
4351 | /* Pop the partially set up target - unless something else did |
4352 | already before throwing the exception. */ | |
5d93a237 | 4353 | if (rs->remote_desc != NULL) |
78a095c3 | 4354 | remote_unpush_target (); |
c6ebd6cf | 4355 | if (target_async_permitted) |
109c3e39 AC |
4356 | wait_forever_enabled_p = 1; |
4357 | throw_exception (ex); | |
4358 | } | |
4359 | } | |
c906108c | 4360 | |
c6ebd6cf | 4361 | if (target_async_permitted) |
92d1e331 | 4362 | wait_forever_enabled_p = 1; |
43ff13b4 JM |
4363 | } |
4364 | ||
c906108c SS |
4365 | /* This takes a program previously attached to and detaches it. After |
4366 | this is done, GDB can be used to debug some other program. We | |
4367 | better not have left any breakpoints in the target program or it'll | |
4368 | die when it hits one. */ | |
4369 | ||
4370 | static void | |
52554a0e | 4371 | remote_detach_1 (const char *args, int from_tty, int extended) |
c906108c | 4372 | { |
82f73884 | 4373 | int pid = ptid_get_pid (inferior_ptid); |
d01949b6 | 4374 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
4375 | |
4376 | if (args) | |
8a3fe4f8 | 4377 | error (_("Argument given to \"detach\" when remotely debugging.")); |
c906108c | 4378 | |
2d717e4f DJ |
4379 | if (!target_has_execution) |
4380 | error (_("No process to detach from.")); | |
4381 | ||
7cee1e54 PA |
4382 | if (from_tty) |
4383 | { | |
4384 | char *exec_file = get_exec_file (0); | |
4385 | if (exec_file == NULL) | |
4386 | exec_file = ""; | |
4387 | printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file, | |
4388 | target_pid_to_str (pid_to_ptid (pid))); | |
4389 | gdb_flush (gdb_stdout); | |
4390 | } | |
4391 | ||
c906108c | 4392 | /* Tell the remote target to detach. */ |
82f73884 | 4393 | if (remote_multi_process_p (rs)) |
bba74b36 | 4394 | xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid); |
82f73884 PA |
4395 | else |
4396 | strcpy (rs->buf, "D"); | |
4397 | ||
4ddda9b5 PA |
4398 | putpkt (rs->buf); |
4399 | getpkt (&rs->buf, &rs->buf_size, 0); | |
4400 | ||
82f73884 PA |
4401 | if (rs->buf[0] == 'O' && rs->buf[1] == 'K') |
4402 | ; | |
4403 | else if (rs->buf[0] == '\0') | |
4404 | error (_("Remote doesn't know how to detach")); | |
4405 | else | |
4ddda9b5 | 4406 | error (_("Can't detach process.")); |
c906108c | 4407 | |
7cee1e54 PA |
4408 | if (from_tty && !extended) |
4409 | puts_filtered (_("Ending remote debugging.\n")); | |
82f73884 | 4410 | |
82f73884 | 4411 | target_mourn_inferior (); |
2d717e4f DJ |
4412 | } |
4413 | ||
4414 | static void | |
52554a0e | 4415 | remote_detach (struct target_ops *ops, const char *args, int from_tty) |
2d717e4f DJ |
4416 | { |
4417 | remote_detach_1 (args, from_tty, 0); | |
4418 | } | |
4419 | ||
4420 | static void | |
52554a0e | 4421 | extended_remote_detach (struct target_ops *ops, const char *args, int from_tty) |
2d717e4f DJ |
4422 | { |
4423 | remote_detach_1 (args, from_tty, 1); | |
c906108c SS |
4424 | } |
4425 | ||
6ad8ae5c DJ |
4426 | /* Same as remote_detach, but don't send the "D" packet; just disconnect. */ |
4427 | ||
43ff13b4 | 4428 | static void |
fee354ee | 4429 | remote_disconnect (struct target_ops *target, const char *args, int from_tty) |
43ff13b4 | 4430 | { |
43ff13b4 | 4431 | if (args) |
2d717e4f | 4432 | error (_("Argument given to \"disconnect\" when remotely debugging.")); |
43ff13b4 | 4433 | |
2d717e4f DJ |
4434 | /* Make sure we unpush even the extended remote targets; mourn |
4435 | won't do it. So call remote_mourn_1 directly instead of | |
4436 | target_mourn_inferior. */ | |
4437 | remote_mourn_1 (target); | |
4438 | ||
43ff13b4 JM |
4439 | if (from_tty) |
4440 | puts_filtered ("Ending remote debugging.\n"); | |
4441 | } | |
4442 | ||
2d717e4f DJ |
4443 | /* Attach to the process specified by ARGS. If FROM_TTY is non-zero, |
4444 | be chatty about it. */ | |
4445 | ||
4446 | static void | |
c0939df1 TT |
4447 | extended_remote_attach_1 (struct target_ops *target, const char *args, |
4448 | int from_tty) | |
2d717e4f DJ |
4449 | { |
4450 | struct remote_state *rs = get_remote_state (); | |
be86555c | 4451 | int pid; |
96ef3384 | 4452 | char *wait_status = NULL; |
2d717e4f | 4453 | |
74164c56 | 4454 | pid = parse_pid_to_attach (args); |
2d717e4f | 4455 | |
74164c56 JK |
4456 | /* Remote PID can be freely equal to getpid, do not check it here the same |
4457 | way as in other targets. */ | |
2d717e4f | 4458 | |
4082afcc | 4459 | if (packet_support (PACKET_vAttach) == PACKET_DISABLE) |
2d717e4f DJ |
4460 | error (_("This target does not support attaching to a process")); |
4461 | ||
7cee1e54 PA |
4462 | if (from_tty) |
4463 | { | |
4464 | char *exec_file = get_exec_file (0); | |
4465 | ||
4466 | if (exec_file) | |
4467 | printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file, | |
4468 | target_pid_to_str (pid_to_ptid (pid))); | |
4469 | else | |
4470 | printf_unfiltered (_("Attaching to %s\n"), | |
4471 | target_pid_to_str (pid_to_ptid (pid))); | |
4472 | ||
4473 | gdb_flush (gdb_stdout); | |
4474 | } | |
4475 | ||
bba74b36 | 4476 | xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid); |
2d717e4f DJ |
4477 | putpkt (rs->buf); |
4478 | getpkt (&rs->buf, &rs->buf_size, 0); | |
4479 | ||
4082afcc PA |
4480 | switch (packet_ok (rs->buf, |
4481 | &remote_protocol_packets[PACKET_vAttach])) | |
2d717e4f | 4482 | { |
4082afcc | 4483 | case PACKET_OK: |
74531fed PA |
4484 | if (!non_stop) |
4485 | { | |
4486 | /* Save the reply for later. */ | |
4487 | wait_status = alloca (strlen (rs->buf) + 1); | |
4488 | strcpy (wait_status, rs->buf); | |
4489 | } | |
4490 | else if (strcmp (rs->buf, "OK") != 0) | |
4491 | error (_("Attaching to %s failed with: %s"), | |
4492 | target_pid_to_str (pid_to_ptid (pid)), | |
4493 | rs->buf); | |
4082afcc PA |
4494 | break; |
4495 | case PACKET_UNKNOWN: | |
4496 | error (_("This target does not support attaching to a process")); | |
4497 | default: | |
4498 | error (_("Attaching to %s failed"), | |
4499 | target_pid_to_str (pid_to_ptid (pid))); | |
2d717e4f | 4500 | } |
2d717e4f | 4501 | |
49c62f2e | 4502 | set_current_inferior (remote_add_inferior (0, pid, 1)); |
bad34192 | 4503 | |
2d717e4f | 4504 | inferior_ptid = pid_to_ptid (pid); |
79d7f229 | 4505 | |
bad34192 PA |
4506 | if (non_stop) |
4507 | { | |
4508 | struct thread_info *thread; | |
79d7f229 | 4509 | |
bad34192 | 4510 | /* Get list of threads. */ |
e8032dde | 4511 | remote_update_thread_list (target); |
82f73884 | 4512 | |
bad34192 PA |
4513 | thread = first_thread_of_process (pid); |
4514 | if (thread) | |
4515 | inferior_ptid = thread->ptid; | |
4516 | else | |
4517 | inferior_ptid = pid_to_ptid (pid); | |
4518 | ||
4519 | /* Invalidate our notion of the remote current thread. */ | |
47f8a51d | 4520 | record_currthread (rs, minus_one_ptid); |
bad34192 | 4521 | } |
74531fed | 4522 | else |
bad34192 PA |
4523 | { |
4524 | /* Now, if we have thread information, update inferior_ptid. */ | |
4525 | inferior_ptid = remote_current_thread (inferior_ptid); | |
4526 | ||
4527 | /* Add the main thread to the thread list. */ | |
4528 | add_thread_silent (inferior_ptid); | |
4529 | } | |
c0a2216e | 4530 | |
96ef3384 UW |
4531 | /* Next, if the target can specify a description, read it. We do |
4532 | this before anything involving memory or registers. */ | |
4533 | target_find_description (); | |
4534 | ||
74531fed PA |
4535 | if (!non_stop) |
4536 | { | |
4537 | /* Use the previously fetched status. */ | |
4538 | gdb_assert (wait_status != NULL); | |
4539 | ||
4540 | if (target_can_async_p ()) | |
4541 | { | |
722247f1 YQ |
4542 | struct notif_event *reply |
4543 | = remote_notif_parse (¬if_client_stop, wait_status); | |
74531fed | 4544 | |
722247f1 | 4545 | push_stop_reply ((struct stop_reply *) reply); |
74531fed PA |
4546 | |
4547 | target_async (inferior_event_handler, 0); | |
4548 | } | |
4549 | else | |
4550 | { | |
4551 | gdb_assert (wait_status != NULL); | |
4552 | strcpy (rs->buf, wait_status); | |
4553 | rs->cached_wait_status = 1; | |
4554 | } | |
4555 | } | |
4556 | else | |
4557 | gdb_assert (wait_status == NULL); | |
2d717e4f DJ |
4558 | } |
4559 | ||
4560 | static void | |
c0939df1 | 4561 | extended_remote_attach (struct target_ops *ops, const char *args, int from_tty) |
2d717e4f | 4562 | { |
136d6dae | 4563 | extended_remote_attach_1 (ops, args, from_tty); |
2d717e4f DJ |
4564 | } |
4565 | ||
b9c1d481 AS |
4566 | /* Implementation of the to_post_attach method. */ |
4567 | ||
4568 | static void | |
4569 | extended_remote_post_attach (struct target_ops *ops, int pid) | |
4570 | { | |
4571 | /* In certain cases GDB might not have had the chance to start | |
4572 | symbol lookup up until now. This could happen if the debugged | |
4573 | binary is not using shared libraries, the vsyscall page is not | |
4574 | present (on Linux) and the binary itself hadn't changed since the | |
4575 | debugging process was started. */ | |
4576 | if (symfile_objfile != NULL) | |
4577 | remote_check_symbols(); | |
4578 | } | |
4579 | ||
c906108c | 4580 | \f |
506fb367 DJ |
4581 | /* Check for the availability of vCont. This function should also check |
4582 | the response. */ | |
c906108c SS |
4583 | |
4584 | static void | |
6d820c5c | 4585 | remote_vcont_probe (struct remote_state *rs) |
c906108c | 4586 | { |
2e9f7625 | 4587 | char *buf; |
6d820c5c | 4588 | |
2e9f7625 DJ |
4589 | strcpy (rs->buf, "vCont?"); |
4590 | putpkt (rs->buf); | |
6d820c5c | 4591 | getpkt (&rs->buf, &rs->buf_size, 0); |
2e9f7625 | 4592 | buf = rs->buf; |
c906108c | 4593 | |
506fb367 DJ |
4594 | /* Make sure that the features we assume are supported. */ |
4595 | if (strncmp (buf, "vCont", 5) == 0) | |
4596 | { | |
4597 | char *p = &buf[5]; | |
4598 | int support_s, support_S, support_c, support_C; | |
4599 | ||
4600 | support_s = 0; | |
4601 | support_S = 0; | |
4602 | support_c = 0; | |
4603 | support_C = 0; | |
d458bd84 | 4604 | rs->supports_vCont.t = 0; |
c1e36e3e | 4605 | rs->supports_vCont.r = 0; |
506fb367 DJ |
4606 | while (p && *p == ';') |
4607 | { | |
4608 | p++; | |
4609 | if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0)) | |
4610 | support_s = 1; | |
4611 | else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0)) | |
4612 | support_S = 1; | |
4613 | else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0)) | |
4614 | support_c = 1; | |
4615 | else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0)) | |
4616 | support_C = 1; | |
74531fed | 4617 | else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0)) |
d458bd84 | 4618 | rs->supports_vCont.t = 1; |
c1e36e3e PA |
4619 | else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0)) |
4620 | rs->supports_vCont.r = 1; | |
506fb367 DJ |
4621 | |
4622 | p = strchr (p, ';'); | |
4623 | } | |
c906108c | 4624 | |
506fb367 DJ |
4625 | /* If s, S, c, and C are not all supported, we can't use vCont. Clearing |
4626 | BUF will make packet_ok disable the packet. */ | |
4627 | if (!support_s || !support_S || !support_c || !support_C) | |
4628 | buf[0] = 0; | |
4629 | } | |
c906108c | 4630 | |
444abaca | 4631 | packet_ok (buf, &remote_protocol_packets[PACKET_vCont]); |
506fb367 | 4632 | } |
c906108c | 4633 | |
0d8f58ca PA |
4634 | /* Helper function for building "vCont" resumptions. Write a |
4635 | resumption to P. ENDP points to one-passed-the-end of the buffer | |
4636 | we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The | |
4637 | thread to be resumed is PTID; STEP and SIGGNAL indicate whether the | |
4638 | resumed thread should be single-stepped and/or signalled. If PTID | |
4639 | equals minus_one_ptid, then all threads are resumed; if PTID | |
4640 | represents a process, then all threads of the process are resumed; | |
4641 | the thread to be stepped and/or signalled is given in the global | |
4642 | INFERIOR_PTID. */ | |
4643 | ||
4644 | static char * | |
4645 | append_resumption (char *p, char *endp, | |
2ea28649 | 4646 | ptid_t ptid, int step, enum gdb_signal siggnal) |
0d8f58ca PA |
4647 | { |
4648 | struct remote_state *rs = get_remote_state (); | |
4649 | ||
a493e3e2 | 4650 | if (step && siggnal != GDB_SIGNAL_0) |
0d8f58ca | 4651 | p += xsnprintf (p, endp - p, ";S%02x", siggnal); |
c1e36e3e PA |
4652 | else if (step |
4653 | /* GDB is willing to range step. */ | |
4654 | && use_range_stepping | |
4655 | /* Target supports range stepping. */ | |
4656 | && rs->supports_vCont.r | |
4657 | /* We don't currently support range stepping multiple | |
4658 | threads with a wildcard (though the protocol allows it, | |
4659 | so stubs shouldn't make an active effort to forbid | |
4660 | it). */ | |
4661 | && !(remote_multi_process_p (rs) && ptid_is_pid (ptid))) | |
4662 | { | |
4663 | struct thread_info *tp; | |
4664 | ||
4665 | if (ptid_equal (ptid, minus_one_ptid)) | |
4666 | { | |
4667 | /* If we don't know about the target thread's tid, then | |
4668 | we're resuming magic_null_ptid (see caller). */ | |
4669 | tp = find_thread_ptid (magic_null_ptid); | |
4670 | } | |
4671 | else | |
4672 | tp = find_thread_ptid (ptid); | |
4673 | gdb_assert (tp != NULL); | |
4674 | ||
4675 | if (tp->control.may_range_step) | |
4676 | { | |
4677 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; | |
4678 | ||
4679 | p += xsnprintf (p, endp - p, ";r%s,%s", | |
4680 | phex_nz (tp->control.step_range_start, | |
4681 | addr_size), | |
4682 | phex_nz (tp->control.step_range_end, | |
4683 | addr_size)); | |
4684 | } | |
4685 | else | |
4686 | p += xsnprintf (p, endp - p, ";s"); | |
4687 | } | |
0d8f58ca PA |
4688 | else if (step) |
4689 | p += xsnprintf (p, endp - p, ";s"); | |
a493e3e2 | 4690 | else if (siggnal != GDB_SIGNAL_0) |
0d8f58ca PA |
4691 | p += xsnprintf (p, endp - p, ";C%02x", siggnal); |
4692 | else | |
4693 | p += xsnprintf (p, endp - p, ";c"); | |
4694 | ||
4695 | if (remote_multi_process_p (rs) && ptid_is_pid (ptid)) | |
4696 | { | |
4697 | ptid_t nptid; | |
4698 | ||
4699 | /* All (-1) threads of process. */ | |
ba348170 | 4700 | nptid = ptid_build (ptid_get_pid (ptid), -1, 0); |
0d8f58ca PA |
4701 | |
4702 | p += xsnprintf (p, endp - p, ":"); | |
4703 | p = write_ptid (p, endp, nptid); | |
4704 | } | |
4705 | else if (!ptid_equal (ptid, minus_one_ptid)) | |
4706 | { | |
4707 | p += xsnprintf (p, endp - p, ":"); | |
4708 | p = write_ptid (p, endp, ptid); | |
4709 | } | |
4710 | ||
4711 | return p; | |
4712 | } | |
4713 | ||
e5ef252a PA |
4714 | /* Append a vCont continue-with-signal action for threads that have a |
4715 | non-zero stop signal. */ | |
4716 | ||
4717 | static char * | |
4718 | append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid) | |
4719 | { | |
4720 | struct thread_info *thread; | |
4721 | ||
034f788c | 4722 | ALL_NON_EXITED_THREADS (thread) |
e5ef252a PA |
4723 | if (ptid_match (thread->ptid, ptid) |
4724 | && !ptid_equal (inferior_ptid, thread->ptid) | |
70509625 | 4725 | && thread->suspend.stop_signal != GDB_SIGNAL_0) |
e5ef252a PA |
4726 | { |
4727 | p = append_resumption (p, endp, thread->ptid, | |
4728 | 0, thread->suspend.stop_signal); | |
4729 | thread->suspend.stop_signal = GDB_SIGNAL_0; | |
4730 | } | |
4731 | ||
4732 | return p; | |
4733 | } | |
4734 | ||
506fb367 DJ |
4735 | /* Resume the remote inferior by using a "vCont" packet. The thread |
4736 | to be resumed is PTID; STEP and SIGGNAL indicate whether the | |
79d7f229 PA |
4737 | resumed thread should be single-stepped and/or signalled. If PTID |
4738 | equals minus_one_ptid, then all threads are resumed; the thread to | |
4739 | be stepped and/or signalled is given in the global INFERIOR_PTID. | |
4740 | This function returns non-zero iff it resumes the inferior. | |
44eaed12 | 4741 | |
506fb367 DJ |
4742 | This function issues a strict subset of all possible vCont commands at the |
4743 | moment. */ | |
44eaed12 | 4744 | |
506fb367 | 4745 | static int |
2ea28649 | 4746 | remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal) |
506fb367 DJ |
4747 | { |
4748 | struct remote_state *rs = get_remote_state (); | |
82f73884 PA |
4749 | char *p; |
4750 | char *endp; | |
44eaed12 | 4751 | |
4082afcc | 4752 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN) |
6d820c5c | 4753 | remote_vcont_probe (rs); |
44eaed12 | 4754 | |
4082afcc | 4755 | if (packet_support (PACKET_vCont) == PACKET_DISABLE) |
6d820c5c | 4756 | return 0; |
44eaed12 | 4757 | |
82f73884 PA |
4758 | p = rs->buf; |
4759 | endp = rs->buf + get_remote_packet_size (); | |
4760 | ||
506fb367 DJ |
4761 | /* If we could generate a wider range of packets, we'd have to worry |
4762 | about overflowing BUF. Should there be a generic | |
4763 | "multi-part-packet" packet? */ | |
4764 | ||
0d8f58ca PA |
4765 | p += xsnprintf (p, endp - p, "vCont"); |
4766 | ||
79d7f229 | 4767 | if (ptid_equal (ptid, magic_null_ptid)) |
c906108c | 4768 | { |
79d7f229 PA |
4769 | /* MAGIC_NULL_PTID means that we don't have any active threads, |
4770 | so we don't have any TID numbers the inferior will | |
4771 | understand. Make sure to only send forms that do not specify | |
4772 | a TID. */ | |
a9cbf802 | 4773 | append_resumption (p, endp, minus_one_ptid, step, siggnal); |
506fb367 | 4774 | } |
0d8f58ca | 4775 | else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)) |
506fb367 | 4776 | { |
0d8f58ca PA |
4777 | /* Resume all threads (of all processes, or of a single |
4778 | process), with preference for INFERIOR_PTID. This assumes | |
4779 | inferior_ptid belongs to the set of all threads we are about | |
4780 | to resume. */ | |
a493e3e2 | 4781 | if (step || siggnal != GDB_SIGNAL_0) |
82f73884 | 4782 | { |
0d8f58ca PA |
4783 | /* Step inferior_ptid, with or without signal. */ |
4784 | p = append_resumption (p, endp, inferior_ptid, step, siggnal); | |
82f73884 | 4785 | } |
0d8f58ca | 4786 | |
e5ef252a PA |
4787 | /* Also pass down any pending signaled resumption for other |
4788 | threads not the current. */ | |
4789 | p = append_pending_thread_resumptions (p, endp, ptid); | |
4790 | ||
0d8f58ca | 4791 | /* And continue others without a signal. */ |
a493e3e2 | 4792 | append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0); |
c906108c SS |
4793 | } |
4794 | else | |
506fb367 DJ |
4795 | { |
4796 | /* Scheduler locking; resume only PTID. */ | |
a9cbf802 | 4797 | append_resumption (p, endp, ptid, step, siggnal); |
506fb367 | 4798 | } |
c906108c | 4799 | |
82f73884 PA |
4800 | gdb_assert (strlen (rs->buf) < get_remote_packet_size ()); |
4801 | putpkt (rs->buf); | |
506fb367 | 4802 | |
74531fed PA |
4803 | if (non_stop) |
4804 | { | |
4805 | /* In non-stop, the stub replies to vCont with "OK". The stop | |
4806 | reply will be reported asynchronously by means of a `%Stop' | |
4807 | notification. */ | |
4808 | getpkt (&rs->buf, &rs->buf_size, 0); | |
4809 | if (strcmp (rs->buf, "OK") != 0) | |
4810 | error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf); | |
4811 | } | |
4812 | ||
506fb367 | 4813 | return 1; |
c906108c | 4814 | } |
43ff13b4 | 4815 | |
506fb367 DJ |
4816 | /* Tell the remote machine to resume. */ |
4817 | ||
43ff13b4 | 4818 | static void |
28439f5e | 4819 | remote_resume (struct target_ops *ops, |
2ea28649 | 4820 | ptid_t ptid, int step, enum gdb_signal siggnal) |
43ff13b4 | 4821 | { |
d01949b6 | 4822 | struct remote_state *rs = get_remote_state (); |
2e9f7625 | 4823 | char *buf; |
43ff13b4 | 4824 | |
722247f1 YQ |
4825 | /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN |
4826 | (explained in remote-notif.c:handle_notification) so | |
4827 | remote_notif_process is not called. We need find a place where | |
4828 | it is safe to start a 'vNotif' sequence. It is good to do it | |
4829 | before resuming inferior, because inferior was stopped and no RSP | |
4830 | traffic at that moment. */ | |
4831 | if (!non_stop) | |
5965e028 | 4832 | remote_notif_process (rs->notif_state, ¬if_client_stop); |
722247f1 | 4833 | |
b73be471 | 4834 | rs->last_sent_signal = siggnal; |
280ceea3 | 4835 | rs->last_sent_step = step; |
43ff13b4 | 4836 | |
506fb367 | 4837 | /* The vCont packet doesn't need to specify threads via Hc. */ |
40ab02ce MS |
4838 | /* No reverse support (yet) for vCont. */ |
4839 | if (execution_direction != EXEC_REVERSE) | |
4840 | if (remote_vcont_resume (ptid, step, siggnal)) | |
4841 | goto done; | |
506fb367 | 4842 | |
79d7f229 PA |
4843 | /* All other supported resume packets do use Hc, so set the continue |
4844 | thread. */ | |
4845 | if (ptid_equal (ptid, minus_one_ptid)) | |
4846 | set_continue_thread (any_thread_ptid); | |
506fb367 | 4847 | else |
79d7f229 | 4848 | set_continue_thread (ptid); |
506fb367 | 4849 | |
2e9f7625 | 4850 | buf = rs->buf; |
b2175913 MS |
4851 | if (execution_direction == EXEC_REVERSE) |
4852 | { | |
4853 | /* We don't pass signals to the target in reverse exec mode. */ | |
a493e3e2 | 4854 | if (info_verbose && siggnal != GDB_SIGNAL_0) |
7ea6d463 | 4855 | warning (_(" - Can't pass signal %d to target in reverse: ignored."), |
b2175913 | 4856 | siggnal); |
40ab02ce | 4857 | |
4082afcc | 4858 | if (step && packet_support (PACKET_bs) == PACKET_DISABLE) |
40ab02ce | 4859 | error (_("Remote reverse-step not supported.")); |
4082afcc | 4860 | if (!step && packet_support (PACKET_bc) == PACKET_DISABLE) |
08c93ed9 | 4861 | error (_("Remote reverse-continue not supported.")); |
40ab02ce | 4862 | |
b2175913 MS |
4863 | strcpy (buf, step ? "bs" : "bc"); |
4864 | } | |
a493e3e2 | 4865 | else if (siggnal != GDB_SIGNAL_0) |
43ff13b4 JM |
4866 | { |
4867 | buf[0] = step ? 'S' : 'C'; | |
c5aa993b | 4868 | buf[1] = tohex (((int) siggnal >> 4) & 0xf); |
506fb367 | 4869 | buf[2] = tohex (((int) siggnal) & 0xf); |
43ff13b4 JM |
4870 | buf[3] = '\0'; |
4871 | } | |
4872 | else | |
c5aa993b | 4873 | strcpy (buf, step ? "s" : "c"); |
506fb367 | 4874 | |
44eaed12 | 4875 | putpkt (buf); |
43ff13b4 | 4876 | |
75c99385 | 4877 | done: |
2acceee2 | 4878 | /* We are about to start executing the inferior, let's register it |
0df8b418 MS |
4879 | with the event loop. NOTE: this is the one place where all the |
4880 | execution commands end up. We could alternatively do this in each | |
23860348 | 4881 | of the execution commands in infcmd.c. */ |
2acceee2 JM |
4882 | /* FIXME: ezannoni 1999-09-28: We may need to move this out of here |
4883 | into infcmd.c in order to allow inferior function calls to work | |
23860348 | 4884 | NOT asynchronously. */ |
362646f5 | 4885 | if (target_can_async_p ()) |
2acceee2 | 4886 | target_async (inferior_event_handler, 0); |
e24a49d8 PA |
4887 | |
4888 | /* We've just told the target to resume. The remote server will | |
4889 | wait for the inferior to stop, and then send a stop reply. In | |
4890 | the mean time, we can't start another command/query ourselves | |
74531fed PA |
4891 | because the stub wouldn't be ready to process it. This applies |
4892 | only to the base all-stop protocol, however. In non-stop (which | |
4893 | only supports vCont), the stub replies with an "OK", and is | |
4894 | immediate able to process further serial input. */ | |
4895 | if (!non_stop) | |
4896 | rs->waiting_for_stop_reply = 1; | |
43ff13b4 | 4897 | } |
c906108c | 4898 | \f |
43ff13b4 JM |
4899 | |
4900 | /* Set up the signal handler for SIGINT, while the target is | |
23860348 | 4901 | executing, ovewriting the 'regular' SIGINT signal handler. */ |
43ff13b4 | 4902 | static void |
934b9bac | 4903 | async_initialize_sigint_signal_handler (void) |
43ff13b4 | 4904 | { |
934b9bac | 4905 | signal (SIGINT, async_handle_remote_sigint); |
43ff13b4 JM |
4906 | } |
4907 | ||
23860348 | 4908 | /* Signal handler for SIGINT, while the target is executing. */ |
43ff13b4 | 4909 | static void |
934b9bac | 4910 | async_handle_remote_sigint (int sig) |
43ff13b4 | 4911 | { |
934b9bac | 4912 | signal (sig, async_handle_remote_sigint_twice); |
b2ee242b PA |
4913 | /* Note we need to go through gdb_call_async_signal_handler in order |
4914 | to wake up the event loop on Windows. */ | |
4915 | gdb_call_async_signal_handler (async_sigint_remote_token, 0); | |
43ff13b4 JM |
4916 | } |
4917 | ||
4918 | /* Signal handler for SIGINT, installed after SIGINT has already been | |
4919 | sent once. It will take effect the second time that the user sends | |
23860348 | 4920 | a ^C. */ |
43ff13b4 | 4921 | static void |
934b9bac | 4922 | async_handle_remote_sigint_twice (int sig) |
43ff13b4 | 4923 | { |
934b9bac | 4924 | signal (sig, async_handle_remote_sigint); |
b2ee242b PA |
4925 | /* See note in async_handle_remote_sigint. */ |
4926 | gdb_call_async_signal_handler (async_sigint_remote_twice_token, 0); | |
43ff13b4 JM |
4927 | } |
4928 | ||
6426a772 | 4929 | /* Perform the real interruption of the target execution, in response |
23860348 | 4930 | to a ^C. */ |
c5aa993b | 4931 | static void |
fba45db2 | 4932 | async_remote_interrupt (gdb_client_data arg) |
43ff13b4 JM |
4933 | { |
4934 | if (remote_debug) | |
248fd3bf | 4935 | fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n"); |
43ff13b4 | 4936 | |
94cc34af | 4937 | target_stop (inferior_ptid); |
43ff13b4 JM |
4938 | } |
4939 | ||
0df8b418 | 4940 | /* Perform interrupt, if the first attempt did not succeed. Just give |
23860348 | 4941 | up on the target alltogether. */ |
47e1ce27 | 4942 | static void |
fba45db2 | 4943 | async_remote_interrupt_twice (gdb_client_data arg) |
43ff13b4 | 4944 | { |
2df3850c | 4945 | if (remote_debug) |
248fd3bf | 4946 | fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n"); |
b803fb0f DJ |
4947 | |
4948 | interrupt_query (); | |
43ff13b4 JM |
4949 | } |
4950 | ||
4951 | /* Reinstall the usual SIGINT handlers, after the target has | |
23860348 | 4952 | stopped. */ |
6426a772 | 4953 | static void |
934b9bac | 4954 | async_cleanup_sigint_signal_handler (void *dummy) |
43ff13b4 JM |
4955 | { |
4956 | signal (SIGINT, handle_sigint); | |
43ff13b4 JM |
4957 | } |
4958 | ||
c906108c SS |
4959 | /* Send ^C to target to halt it. Target will respond, and send us a |
4960 | packet. */ | |
507f3c78 | 4961 | static void (*ofunc) (int); |
c906108c | 4962 | |
0df8b418 MS |
4963 | /* The command line interface's stop routine. This function is installed |
4964 | as a signal handler for SIGINT. The first time a user requests a | |
4965 | stop, we call remote_stop to send a break or ^C. If there is no | |
7a292a7a | 4966 | response from the target (it didn't stop when the user requested it), |
23860348 | 4967 | we ask the user if he'd like to detach from the target. */ |
c906108c | 4968 | static void |
934b9bac | 4969 | sync_remote_interrupt (int signo) |
c906108c | 4970 | { |
23860348 | 4971 | /* If this doesn't work, try more severe steps. */ |
934b9bac | 4972 | signal (signo, sync_remote_interrupt_twice); |
7a292a7a | 4973 | |
934b9bac | 4974 | gdb_call_async_signal_handler (async_sigint_remote_token, 1); |
7a292a7a SS |
4975 | } |
4976 | ||
4977 | /* The user typed ^C twice. */ | |
4978 | ||
4979 | static void | |
934b9bac | 4980 | sync_remote_interrupt_twice (int signo) |
7a292a7a SS |
4981 | { |
4982 | signal (signo, ofunc); | |
934b9bac JK |
4983 | gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1); |
4984 | signal (signo, sync_remote_interrupt); | |
c906108c | 4985 | } |
7a292a7a | 4986 | |
74531fed PA |
4987 | /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote |
4988 | thread, all threads of a remote process, or all threads of all | |
4989 | processes. */ | |
4990 | ||
4991 | static void | |
4992 | remote_stop_ns (ptid_t ptid) | |
4993 | { | |
4994 | struct remote_state *rs = get_remote_state (); | |
4995 | char *p = rs->buf; | |
4996 | char *endp = rs->buf + get_remote_packet_size (); | |
74531fed | 4997 | |
4082afcc | 4998 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN) |
74531fed PA |
4999 | remote_vcont_probe (rs); |
5000 | ||
d458bd84 | 5001 | if (!rs->supports_vCont.t) |
74531fed PA |
5002 | error (_("Remote server does not support stopping threads")); |
5003 | ||
f91d3df5 PA |
5004 | if (ptid_equal (ptid, minus_one_ptid) |
5005 | || (!remote_multi_process_p (rs) && ptid_is_pid (ptid))) | |
74531fed PA |
5006 | p += xsnprintf (p, endp - p, "vCont;t"); |
5007 | else | |
5008 | { | |
5009 | ptid_t nptid; | |
5010 | ||
74531fed PA |
5011 | p += xsnprintf (p, endp - p, "vCont;t:"); |
5012 | ||
5013 | if (ptid_is_pid (ptid)) | |
5014 | /* All (-1) threads of process. */ | |
ba348170 | 5015 | nptid = ptid_build (ptid_get_pid (ptid), -1, 0); |
74531fed PA |
5016 | else |
5017 | { | |
5018 | /* Small optimization: if we already have a stop reply for | |
5019 | this thread, no use in telling the stub we want this | |
5020 | stopped. */ | |
5021 | if (peek_stop_reply (ptid)) | |
5022 | return; | |
5023 | ||
5024 | nptid = ptid; | |
5025 | } | |
5026 | ||
a9cbf802 | 5027 | write_ptid (p, endp, nptid); |
74531fed PA |
5028 | } |
5029 | ||
5030 | /* In non-stop, we get an immediate OK reply. The stop reply will | |
5031 | come in asynchronously by notification. */ | |
5032 | putpkt (rs->buf); | |
5033 | getpkt (&rs->buf, &rs->buf_size, 0); | |
5034 | if (strcmp (rs->buf, "OK") != 0) | |
5035 | error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf); | |
5036 | } | |
5037 | ||
5038 | /* All-stop version of target_stop. Sends a break or a ^C to stop the | |
5039 | remote target. It is undefined which thread of which process | |
5040 | reports the stop. */ | |
5041 | ||
5042 | static void | |
5043 | remote_stop_as (ptid_t ptid) | |
5044 | { | |
5045 | struct remote_state *rs = get_remote_state (); | |
5046 | ||
3a29589a DJ |
5047 | rs->ctrlc_pending_p = 1; |
5048 | ||
74531fed PA |
5049 | /* If the inferior is stopped already, but the core didn't know |
5050 | about it yet, just ignore the request. The cached wait status | |
5051 | will be collected in remote_wait. */ | |
5052 | if (rs->cached_wait_status) | |
5053 | return; | |
5054 | ||
9a7071a8 JB |
5055 | /* Send interrupt_sequence to remote target. */ |
5056 | send_interrupt_sequence (); | |
74531fed PA |
5057 | } |
5058 | ||
0df8b418 | 5059 | /* This is the generic stop called via the target vector. When a target |
7a292a7a | 5060 | interrupt is requested, either by the command line or the GUI, we |
23860348 | 5061 | will eventually end up here. */ |
74531fed | 5062 | |
c906108c | 5063 | static void |
1eab8a48 | 5064 | remote_stop (struct target_ops *self, ptid_t ptid) |
c906108c | 5065 | { |
7a292a7a | 5066 | if (remote_debug) |
0f71a2f6 | 5067 | fprintf_unfiltered (gdb_stdlog, "remote_stop called\n"); |
c906108c | 5068 | |
74531fed PA |
5069 | if (non_stop) |
5070 | remote_stop_ns (ptid); | |
c906108c | 5071 | else |
74531fed | 5072 | remote_stop_as (ptid); |
c906108c SS |
5073 | } |
5074 | ||
5075 | /* Ask the user what to do when an interrupt is received. */ | |
5076 | ||
5077 | static void | |
fba45db2 | 5078 | interrupt_query (void) |
c906108c SS |
5079 | { |
5080 | target_terminal_ours (); | |
5081 | ||
74531fed | 5082 | if (target_can_async_p ()) |
c906108c | 5083 | { |
74531fed | 5084 | signal (SIGINT, handle_sigint); |
039e3c22 | 5085 | quit (); |
c906108c | 5086 | } |
74531fed PA |
5087 | else |
5088 | { | |
9e2f0ad4 HZ |
5089 | if (query (_("Interrupted while waiting for the program.\n\ |
5090 | Give up (and stop debugging it)? "))) | |
74531fed | 5091 | { |
78a095c3 | 5092 | remote_unpush_target (); |
039e3c22 | 5093 | quit (); |
74531fed PA |
5094 | } |
5095 | } | |
c906108c SS |
5096 | |
5097 | target_terminal_inferior (); | |
5098 | } | |
5099 | ||
6426a772 JM |
5100 | /* Enable/disable target terminal ownership. Most targets can use |
5101 | terminal groups to control terminal ownership. Remote targets are | |
5102 | different in that explicit transfer of ownership to/from GDB/target | |
23860348 | 5103 | is required. */ |
6426a772 JM |
5104 | |
5105 | static void | |
d2f640d4 | 5106 | remote_terminal_inferior (struct target_ops *self) |
6426a772 | 5107 | { |
c6ebd6cf | 5108 | if (!target_async_permitted) |
75c99385 PA |
5109 | /* Nothing to do. */ |
5110 | return; | |
5111 | ||
d9d2d8b6 PA |
5112 | /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*() |
5113 | idempotent. The event-loop GDB talking to an asynchronous target | |
5114 | with a synchronous command calls this function from both | |
5115 | event-top.c and infrun.c/infcmd.c. Once GDB stops trying to | |
5116 | transfer the terminal to the target when it shouldn't this guard | |
5117 | can go away. */ | |
6426a772 JM |
5118 | if (!remote_async_terminal_ours_p) |
5119 | return; | |
5120 | delete_file_handler (input_fd); | |
5121 | remote_async_terminal_ours_p = 0; | |
934b9bac | 5122 | async_initialize_sigint_signal_handler (); |
6426a772 JM |
5123 | /* NOTE: At this point we could also register our selves as the |
5124 | recipient of all input. Any characters typed could then be | |
23860348 | 5125 | passed on down to the target. */ |
6426a772 JM |
5126 | } |
5127 | ||
5128 | static void | |
e3594fd1 | 5129 | remote_terminal_ours (struct target_ops *self) |
6426a772 | 5130 | { |
c6ebd6cf | 5131 | if (!target_async_permitted) |
75c99385 PA |
5132 | /* Nothing to do. */ |
5133 | return; | |
5134 | ||
5135 | /* See FIXME in remote_terminal_inferior. */ | |
6426a772 JM |
5136 | if (remote_async_terminal_ours_p) |
5137 | return; | |
934b9bac | 5138 | async_cleanup_sigint_signal_handler (NULL); |
6426a772 JM |
5139 | add_file_handler (input_fd, stdin_event_handler, 0); |
5140 | remote_async_terminal_ours_p = 1; | |
5141 | } | |
5142 | ||
176a6961 | 5143 | static void |
917317f4 | 5144 | remote_console_output (char *msg) |
c906108c SS |
5145 | { |
5146 | char *p; | |
5147 | ||
c5aa993b | 5148 | for (p = msg; p[0] && p[1]; p += 2) |
c906108c SS |
5149 | { |
5150 | char tb[2]; | |
5151 | char c = fromhex (p[0]) * 16 + fromhex (p[1]); | |
a744cf53 | 5152 | |
c906108c SS |
5153 | tb[0] = c; |
5154 | tb[1] = 0; | |
43ff13b4 | 5155 | fputs_unfiltered (tb, gdb_stdtarg); |
c906108c | 5156 | } |
00db5b94 PA |
5157 | gdb_flush (gdb_stdtarg); |
5158 | } | |
74531fed PA |
5159 | |
5160 | typedef struct cached_reg | |
5161 | { | |
5162 | int num; | |
5163 | gdb_byte data[MAX_REGISTER_SIZE]; | |
5164 | } cached_reg_t; | |
5165 | ||
5166 | DEF_VEC_O(cached_reg_t); | |
5167 | ||
722247f1 | 5168 | typedef struct stop_reply |
74531fed | 5169 | { |
722247f1 | 5170 | struct notif_event base; |
74531fed | 5171 | |
722247f1 | 5172 | /* The identifier of the thread about this event */ |
74531fed PA |
5173 | ptid_t ptid; |
5174 | ||
340e3c99 | 5175 | /* The remote state this event is associated with. When the remote |
bcc75809 YQ |
5176 | connection, represented by a remote_state object, is closed, |
5177 | all the associated stop_reply events should be released. */ | |
5178 | struct remote_state *rs; | |
5179 | ||
74531fed PA |
5180 | struct target_waitstatus ws; |
5181 | ||
15148d6a PA |
5182 | /* Expedited registers. This makes remote debugging a bit more |
5183 | efficient for those targets that provide critical registers as | |
5184 | part of their normal status mechanism (as another roundtrip to | |
5185 | fetch them is avoided). */ | |
74531fed PA |
5186 | VEC(cached_reg_t) *regcache; |
5187 | ||
5188 | int stopped_by_watchpoint_p; | |
5189 | CORE_ADDR watch_data_address; | |
5190 | ||
dc146f7c | 5191 | int core; |
722247f1 | 5192 | } *stop_reply_p; |
a744cf53 | 5193 | |
722247f1 YQ |
5194 | DECLARE_QUEUE_P (stop_reply_p); |
5195 | DEFINE_QUEUE_P (stop_reply_p); | |
5196 | /* The list of already fetched and acknowledged stop events. This | |
5197 | queue is used for notification Stop, and other notifications | |
5198 | don't need queue for their events, because the notification events | |
5199 | of Stop can't be consumed immediately, so that events should be | |
5200 | queued first, and be consumed by remote_wait_{ns,as} one per | |
5201 | time. Other notifications can consume their events immediately, | |
5202 | so queue is not needed for them. */ | |
5203 | static QUEUE (stop_reply_p) *stop_reply_queue; | |
74531fed PA |
5204 | |
5205 | static void | |
5206 | stop_reply_xfree (struct stop_reply *r) | |
5207 | { | |
f48ff2a7 | 5208 | notif_event_xfree ((struct notif_event *) r); |
c906108c SS |
5209 | } |
5210 | ||
722247f1 YQ |
5211 | static void |
5212 | remote_notif_stop_parse (struct notif_client *self, char *buf, | |
5213 | struct notif_event *event) | |
5214 | { | |
5215 | remote_parse_stop_reply (buf, (struct stop_reply *) event); | |
5216 | } | |
5217 | ||
5218 | static void | |
5219 | remote_notif_stop_ack (struct notif_client *self, char *buf, | |
5220 | struct notif_event *event) | |
5221 | { | |
5222 | struct stop_reply *stop_reply = (struct stop_reply *) event; | |
5223 | ||
5224 | /* acknowledge */ | |
5225 | putpkt ((char *) self->ack_command); | |
5226 | ||
5227 | if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE) | |
5228 | /* We got an unknown stop reply. */ | |
5229 | error (_("Unknown stop reply")); | |
5230 | ||
5231 | push_stop_reply (stop_reply); | |
5232 | } | |
5233 | ||
5234 | static int | |
5235 | remote_notif_stop_can_get_pending_events (struct notif_client *self) | |
5236 | { | |
5237 | /* We can't get pending events in remote_notif_process for | |
5238 | notification stop, and we have to do this in remote_wait_ns | |
5239 | instead. If we fetch all queued events from stub, remote stub | |
5240 | may exit and we have no chance to process them back in | |
5241 | remote_wait_ns. */ | |
5242 | mark_async_event_handler (remote_async_inferior_event_token); | |
5243 | return 0; | |
5244 | } | |
5245 | ||
5246 | static void | |
5247 | stop_reply_dtr (struct notif_event *event) | |
5248 | { | |
5249 | struct stop_reply *r = (struct stop_reply *) event; | |
5250 | ||
5251 | VEC_free (cached_reg_t, r->regcache); | |
5252 | } | |
5253 | ||
5254 | static struct notif_event * | |
5255 | remote_notif_stop_alloc_reply (void) | |
5256 | { | |
5257 | struct notif_event *r | |
70ba0933 | 5258 | = (struct notif_event *) XNEW (struct stop_reply); |
722247f1 YQ |
5259 | |
5260 | r->dtr = stop_reply_dtr; | |
5261 | ||
5262 | return r; | |
5263 | } | |
5264 | ||
5265 | /* A client of notification Stop. */ | |
5266 | ||
5267 | struct notif_client notif_client_stop = | |
5268 | { | |
5269 | "Stop", | |
5270 | "vStopped", | |
5271 | remote_notif_stop_parse, | |
5272 | remote_notif_stop_ack, | |
5273 | remote_notif_stop_can_get_pending_events, | |
5274 | remote_notif_stop_alloc_reply, | |
f48ff2a7 | 5275 | REMOTE_NOTIF_STOP, |
722247f1 YQ |
5276 | }; |
5277 | ||
5278 | /* A parameter to pass data in and out. */ | |
5279 | ||
5280 | struct queue_iter_param | |
5281 | { | |
5282 | void *input; | |
5283 | struct stop_reply *output; | |
5284 | }; | |
5285 | ||
f48ff2a7 YQ |
5286 | /* Remove stop replies in the queue if its pid is equal to the given |
5287 | inferior's pid. */ | |
722247f1 YQ |
5288 | |
5289 | static int | |
f48ff2a7 YQ |
5290 | remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q, |
5291 | QUEUE_ITER (stop_reply_p) *iter, | |
5292 | stop_reply_p event, | |
5293 | void *data) | |
722247f1 YQ |
5294 | { |
5295 | struct queue_iter_param *param = data; | |
5296 | struct inferior *inf = param->input; | |
5297 | ||
f48ff2a7 | 5298 | if (ptid_get_pid (event->ptid) == inf->pid) |
722247f1 YQ |
5299 | { |
5300 | stop_reply_xfree (event); | |
5301 | QUEUE_remove_elem (stop_reply_p, q, iter); | |
5302 | } | |
5303 | ||
5304 | return 1; | |
5305 | } | |
5306 | ||
f48ff2a7 | 5307 | /* Discard all pending stop replies of inferior INF. */ |
c906108c | 5308 | |
74531fed | 5309 | static void |
5f4cf0bb | 5310 | discard_pending_stop_replies (struct inferior *inf) |
c906108c | 5311 | { |
722247f1 YQ |
5312 | int i; |
5313 | struct queue_iter_param param; | |
f48ff2a7 YQ |
5314 | struct stop_reply *reply; |
5315 | struct remote_state *rs = get_remote_state (); | |
5316 | struct remote_notif_state *rns = rs->notif_state; | |
5317 | ||
5318 | /* This function can be notified when an inferior exists. When the | |
5319 | target is not remote, the notification state is NULL. */ | |
5320 | if (rs->remote_desc == NULL) | |
5321 | return; | |
5322 | ||
5323 | reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id]; | |
c906108c | 5324 | |
74531fed | 5325 | /* Discard the in-flight notification. */ |
f48ff2a7 | 5326 | if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid) |
74531fed | 5327 | { |
722247f1 | 5328 | stop_reply_xfree (reply); |
f48ff2a7 | 5329 | rns->pending_event[notif_client_stop.id] = NULL; |
74531fed | 5330 | } |
c906108c | 5331 | |
722247f1 YQ |
5332 | param.input = inf; |
5333 | param.output = NULL; | |
74531fed PA |
5334 | /* Discard the stop replies we have already pulled with |
5335 | vStopped. */ | |
722247f1 | 5336 | QUEUE_iterate (stop_reply_p, stop_reply_queue, |
f48ff2a7 YQ |
5337 | remove_stop_reply_for_inferior, ¶m); |
5338 | } | |
5339 | ||
bcc75809 YQ |
5340 | /* If its remote state is equal to the given remote state, |
5341 | remove EVENT from the stop reply queue. */ | |
5342 | ||
5343 | static int | |
5344 | remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q, | |
5345 | QUEUE_ITER (stop_reply_p) *iter, | |
5346 | stop_reply_p event, | |
5347 | void *data) | |
5348 | { | |
5349 | struct queue_iter_param *param = data; | |
5350 | struct remote_state *rs = param->input; | |
5351 | ||
5352 | if (event->rs == rs) | |
5353 | { | |
5354 | stop_reply_xfree (event); | |
5355 | QUEUE_remove_elem (stop_reply_p, q, iter); | |
5356 | } | |
5357 | ||
5358 | return 1; | |
5359 | } | |
5360 | ||
5361 | /* Discard the stop replies for RS in stop_reply_queue. */ | |
f48ff2a7 YQ |
5362 | |
5363 | static void | |
bcc75809 | 5364 | discard_pending_stop_replies_in_queue (struct remote_state *rs) |
f48ff2a7 YQ |
5365 | { |
5366 | struct queue_iter_param param; | |
5367 | ||
bcc75809 | 5368 | param.input = rs; |
f48ff2a7 YQ |
5369 | param.output = NULL; |
5370 | /* Discard the stop replies we have already pulled with | |
5371 | vStopped. */ | |
5372 | QUEUE_iterate (stop_reply_p, stop_reply_queue, | |
bcc75809 | 5373 | remove_stop_reply_of_remote_state, ¶m); |
722247f1 | 5374 | } |
74531fed | 5375 | |
722247f1 YQ |
5376 | /* A parameter to pass data in and out. */ |
5377 | ||
5378 | static int | |
5379 | remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q, | |
5380 | QUEUE_ITER (stop_reply_p) *iter, | |
5381 | stop_reply_p event, | |
5382 | void *data) | |
5383 | { | |
5384 | struct queue_iter_param *param = data; | |
5385 | ptid_t *ptid = param->input; | |
5386 | ||
5387 | if (ptid_match (event->ptid, *ptid)) | |
5388 | { | |
5389 | param->output = event; | |
5390 | QUEUE_remove_elem (stop_reply_p, q, iter); | |
5391 | return 0; | |
c8e38a49 | 5392 | } |
722247f1 YQ |
5393 | |
5394 | return 1; | |
74531fed | 5395 | } |
43ff13b4 | 5396 | |
722247f1 YQ |
5397 | /* Remove the first reply in 'stop_reply_queue' which matches |
5398 | PTID. */ | |
2e9f7625 | 5399 | |
722247f1 YQ |
5400 | static struct stop_reply * |
5401 | remote_notif_remove_queued_reply (ptid_t ptid) | |
74531fed | 5402 | { |
722247f1 YQ |
5403 | struct queue_iter_param param; |
5404 | ||
5405 | param.input = &ptid; | |
5406 | param.output = NULL; | |
5407 | ||
5408 | QUEUE_iterate (stop_reply_p, stop_reply_queue, | |
5409 | remote_notif_remove_once_on_match, ¶m); | |
5410 | if (notif_debug) | |
5411 | fprintf_unfiltered (gdb_stdlog, | |
5412 | "notif: discard queued event: 'Stop' in %s\n", | |
5413 | target_pid_to_str (ptid)); | |
a744cf53 | 5414 | |
722247f1 | 5415 | return param.output; |
74531fed | 5416 | } |
75c99385 | 5417 | |
74531fed PA |
5418 | /* Look for a queued stop reply belonging to PTID. If one is found, |
5419 | remove it from the queue, and return it. Returns NULL if none is | |
5420 | found. If there are still queued events left to process, tell the | |
5421 | event loop to get back to target_wait soon. */ | |
e24a49d8 | 5422 | |
74531fed PA |
5423 | static struct stop_reply * |
5424 | queued_stop_reply (ptid_t ptid) | |
5425 | { | |
722247f1 | 5426 | struct stop_reply *r = remote_notif_remove_queued_reply (ptid); |
74531fed | 5427 | |
722247f1 | 5428 | if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue)) |
74531fed PA |
5429 | /* There's still at least an event left. */ |
5430 | mark_async_event_handler (remote_async_inferior_event_token); | |
5431 | ||
722247f1 | 5432 | return r; |
74531fed PA |
5433 | } |
5434 | ||
5435 | /* Push a fully parsed stop reply in the stop reply queue. Since we | |
5436 | know that we now have at least one queued event left to pass to the | |
5437 | core side, tell the event loop to get back to target_wait soon. */ | |
5438 | ||
5439 | static void | |
5440 | push_stop_reply (struct stop_reply *new_event) | |
5441 | { | |
722247f1 | 5442 | QUEUE_enque (stop_reply_p, stop_reply_queue, new_event); |
74531fed | 5443 | |
722247f1 YQ |
5444 | if (notif_debug) |
5445 | fprintf_unfiltered (gdb_stdlog, | |
5446 | "notif: push 'Stop' %s to queue %d\n", | |
5447 | target_pid_to_str (new_event->ptid), | |
5448 | QUEUE_length (stop_reply_p, | |
5449 | stop_reply_queue)); | |
74531fed PA |
5450 | |
5451 | mark_async_event_handler (remote_async_inferior_event_token); | |
5452 | } | |
5453 | ||
722247f1 YQ |
5454 | static int |
5455 | stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q, | |
5456 | QUEUE_ITER (stop_reply_p) *iter, | |
5457 | struct stop_reply *event, | |
5458 | void *data) | |
5459 | { | |
5460 | ptid_t *ptid = data; | |
5461 | ||
5462 | return !(ptid_equal (*ptid, event->ptid) | |
5463 | && event->ws.kind == TARGET_WAITKIND_STOPPED); | |
5464 | } | |
5465 | ||
74531fed PA |
5466 | /* Returns true if we have a stop reply for PTID. */ |
5467 | ||
5468 | static int | |
5469 | peek_stop_reply (ptid_t ptid) | |
5470 | { | |
722247f1 YQ |
5471 | return !QUEUE_iterate (stop_reply_p, stop_reply_queue, |
5472 | stop_reply_match_ptid_and_ws, &ptid); | |
74531fed PA |
5473 | } |
5474 | ||
5475 | /* Parse the stop reply in BUF. Either the function succeeds, and the | |
5476 | result is stored in EVENT, or throws an error. */ | |
5477 | ||
5478 | static void | |
5479 | remote_parse_stop_reply (char *buf, struct stop_reply *event) | |
5480 | { | |
5481 | struct remote_arch_state *rsa = get_remote_arch_state (); | |
5482 | ULONGEST addr; | |
5483 | char *p; | |
5484 | ||
5485 | event->ptid = null_ptid; | |
bcc75809 | 5486 | event->rs = get_remote_state (); |
74531fed PA |
5487 | event->ws.kind = TARGET_WAITKIND_IGNORE; |
5488 | event->ws.value.integer = 0; | |
74531fed PA |
5489 | event->stopped_by_watchpoint_p = 0; |
5490 | event->regcache = NULL; | |
dc146f7c | 5491 | event->core = -1; |
74531fed PA |
5492 | |
5493 | switch (buf[0]) | |
5494 | { | |
5495 | case 'T': /* Status with PC, SP, FP, ... */ | |
cea39f65 MS |
5496 | /* Expedited reply, containing Signal, {regno, reg} repeat. */ |
5497 | /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where | |
5498 | ss = signal number | |
5499 | n... = register number | |
5500 | r... = register contents | |
5501 | */ | |
5502 | ||
5503 | p = &buf[3]; /* after Txx */ | |
5504 | while (*p) | |
5505 | { | |
5506 | char *p1; | |
5507 | char *p_temp; | |
5508 | int fieldsize; | |
5509 | LONGEST pnum = 0; | |
43ff13b4 | 5510 | |
cea39f65 MS |
5511 | /* If the packet contains a register number, save it in |
5512 | pnum and set p1 to point to the character following it. | |
5513 | Otherwise p1 points to p. */ | |
3c3bea1c | 5514 | |
cea39f65 MS |
5515 | /* If this packet is an awatch packet, don't parse the 'a' |
5516 | as a register number. */ | |
c8e38a49 | 5517 | |
dc146f7c VP |
5518 | if (strncmp (p, "awatch", strlen("awatch")) != 0 |
5519 | && strncmp (p, "core", strlen ("core") != 0)) | |
cea39f65 MS |
5520 | { |
5521 | /* Read the ``P'' register number. */ | |
5522 | pnum = strtol (p, &p_temp, 16); | |
5523 | p1 = p_temp; | |
5524 | } | |
5525 | else | |
5526 | p1 = p; | |
802188a7 | 5527 | |
cea39f65 MS |
5528 | if (p1 == p) /* No register number present here. */ |
5529 | { | |
5530 | p1 = strchr (p, ':'); | |
5531 | if (p1 == NULL) | |
5532 | error (_("Malformed packet(a) (missing colon): %s\n\ | |
c8e38a49 | 5533 | Packet: '%s'\n"), |
cea39f65 MS |
5534 | p, buf); |
5535 | if (strncmp (p, "thread", p1 - p) == 0) | |
5536 | event->ptid = read_ptid (++p1, &p); | |
5537 | else if ((strncmp (p, "watch", p1 - p) == 0) | |
5538 | || (strncmp (p, "rwatch", p1 - p) == 0) | |
5539 | || (strncmp (p, "awatch", p1 - p) == 0)) | |
5540 | { | |
5541 | event->stopped_by_watchpoint_p = 1; | |
5542 | p = unpack_varlen_hex (++p1, &addr); | |
5543 | event->watch_data_address = (CORE_ADDR) addr; | |
5544 | } | |
5545 | else if (strncmp (p, "library", p1 - p) == 0) | |
5546 | { | |
5547 | p1++; | |
5548 | p_temp = p1; | |
5549 | while (*p_temp && *p_temp != ';') | |
5550 | p_temp++; | |
c8e38a49 | 5551 | |
5b5596ff | 5552 | event->ws.kind = TARGET_WAITKIND_LOADED; |
cea39f65 MS |
5553 | p = p_temp; |
5554 | } | |
5555 | else if (strncmp (p, "replaylog", p1 - p) == 0) | |
5556 | { | |
5b5596ff PA |
5557 | event->ws.kind = TARGET_WAITKIND_NO_HISTORY; |
5558 | /* p1 will indicate "begin" or "end", but it makes | |
5559 | no difference for now, so ignore it. */ | |
cea39f65 MS |
5560 | p_temp = strchr (p1 + 1, ';'); |
5561 | if (p_temp) | |
c8e38a49 | 5562 | p = p_temp; |
cea39f65 | 5563 | } |
dc146f7c VP |
5564 | else if (strncmp (p, "core", p1 - p) == 0) |
5565 | { | |
5566 | ULONGEST c; | |
a744cf53 | 5567 | |
dc146f7c VP |
5568 | p = unpack_varlen_hex (++p1, &c); |
5569 | event->core = c; | |
5570 | } | |
cea39f65 MS |
5571 | else |
5572 | { | |
5573 | /* Silently skip unknown optional info. */ | |
5574 | p_temp = strchr (p1 + 1, ';'); | |
5575 | if (p_temp) | |
5576 | p = p_temp; | |
5577 | } | |
5578 | } | |
5579 | else | |
5580 | { | |
5581 | struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum); | |
5582 | cached_reg_t cached_reg; | |
74531fed | 5583 | |
cea39f65 | 5584 | p = p1; |
75c99385 | 5585 | |
cea39f65 MS |
5586 | if (*p != ':') |
5587 | error (_("Malformed packet(b) (missing colon): %s\n\ | |
8a3fe4f8 | 5588 | Packet: '%s'\n"), |
cea39f65 MS |
5589 | p, buf); |
5590 | ++p; | |
43ff13b4 | 5591 | |
cea39f65 MS |
5592 | if (reg == NULL) |
5593 | error (_("Remote sent bad register number %s: %s\n\ | |
8a3fe4f8 | 5594 | Packet: '%s'\n"), |
7c47795c | 5595 | hex_string (pnum), p, buf); |
c8e38a49 | 5596 | |
cea39f65 | 5597 | cached_reg.num = reg->regnum; |
4100683b | 5598 | |
cea39f65 | 5599 | fieldsize = hex2bin (p, cached_reg.data, |
f5656ead | 5600 | register_size (target_gdbarch (), |
cea39f65 MS |
5601 | reg->regnum)); |
5602 | p += 2 * fieldsize; | |
f5656ead | 5603 | if (fieldsize < register_size (target_gdbarch (), |
cea39f65 MS |
5604 | reg->regnum)) |
5605 | warning (_("Remote reply is too short: %s"), buf); | |
74531fed | 5606 | |
cea39f65 MS |
5607 | VEC_safe_push (cached_reg_t, event->regcache, &cached_reg); |
5608 | } | |
c8e38a49 | 5609 | |
cea39f65 MS |
5610 | if (*p != ';') |
5611 | error (_("Remote register badly formatted: %s\nhere: %s"), | |
5612 | buf, p); | |
5613 | ++p; | |
5614 | } | |
5b5596ff PA |
5615 | |
5616 | if (event->ws.kind != TARGET_WAITKIND_IGNORE) | |
5617 | break; | |
5618 | ||
c8e38a49 PA |
5619 | /* fall through */ |
5620 | case 'S': /* Old style status, just signal only. */ | |
3a09da41 PA |
5621 | { |
5622 | int sig; | |
5623 | ||
5624 | event->ws.kind = TARGET_WAITKIND_STOPPED; | |
5625 | sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]); | |
5626 | if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST) | |
5627 | event->ws.value.sig = (enum gdb_signal) sig; | |
5628 | else | |
5629 | event->ws.value.sig = GDB_SIGNAL_UNKNOWN; | |
5630 | } | |
c8e38a49 PA |
5631 | break; |
5632 | case 'W': /* Target exited. */ | |
5633 | case 'X': | |
5634 | { | |
5635 | char *p; | |
5636 | int pid; | |
5637 | ULONGEST value; | |
82f73884 | 5638 | |
c8e38a49 PA |
5639 | /* GDB used to accept only 2 hex chars here. Stubs should |
5640 | only send more if they detect GDB supports multi-process | |
5641 | support. */ | |
5642 | p = unpack_varlen_hex (&buf[1], &value); | |
82f73884 | 5643 | |
c8e38a49 PA |
5644 | if (buf[0] == 'W') |
5645 | { | |
5646 | /* The remote process exited. */ | |
74531fed PA |
5647 | event->ws.kind = TARGET_WAITKIND_EXITED; |
5648 | event->ws.value.integer = value; | |
c8e38a49 PA |
5649 | } |
5650 | else | |
5651 | { | |
5652 | /* The remote process exited with a signal. */ | |
74531fed | 5653 | event->ws.kind = TARGET_WAITKIND_SIGNALLED; |
3a09da41 PA |
5654 | if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST) |
5655 | event->ws.value.sig = (enum gdb_signal) value; | |
5656 | else | |
5657 | event->ws.value.sig = GDB_SIGNAL_UNKNOWN; | |
c8e38a49 | 5658 | } |
82f73884 | 5659 | |
c8e38a49 PA |
5660 | /* If no process is specified, assume inferior_ptid. */ |
5661 | pid = ptid_get_pid (inferior_ptid); | |
5662 | if (*p == '\0') | |
5663 | ; | |
5664 | else if (*p == ';') | |
5665 | { | |
5666 | p++; | |
5667 | ||
5668 | if (p == '\0') | |
82f73884 | 5669 | ; |
c8e38a49 PA |
5670 | else if (strncmp (p, |
5671 | "process:", sizeof ("process:") - 1) == 0) | |
82f73884 | 5672 | { |
c8e38a49 | 5673 | ULONGEST upid; |
a744cf53 | 5674 | |
c8e38a49 PA |
5675 | p += sizeof ("process:") - 1; |
5676 | unpack_varlen_hex (p, &upid); | |
5677 | pid = upid; | |
82f73884 PA |
5678 | } |
5679 | else | |
5680 | error (_("unknown stop reply packet: %s"), buf); | |
43ff13b4 | 5681 | } |
c8e38a49 PA |
5682 | else |
5683 | error (_("unknown stop reply packet: %s"), buf); | |
74531fed PA |
5684 | event->ptid = pid_to_ptid (pid); |
5685 | } | |
5686 | break; | |
5687 | } | |
5688 | ||
5689 | if (non_stop && ptid_equal (event->ptid, null_ptid)) | |
5690 | error (_("No process or thread specified in stop reply: %s"), buf); | |
5691 | } | |
5692 | ||
722247f1 YQ |
5693 | /* When the stub wants to tell GDB about a new notification reply, it |
5694 | sends a notification (%Stop, for example). Those can come it at | |
5695 | any time, hence, we have to make sure that any pending | |
5696 | putpkt/getpkt sequence we're making is finished, before querying | |
5697 | the stub for more events with the corresponding ack command | |
5698 | (vStopped, for example). E.g., if we started a vStopped sequence | |
5699 | immediately upon receiving the notification, something like this | |
5700 | could happen: | |
74531fed PA |
5701 | |
5702 | 1.1) --> Hg 1 | |
5703 | 1.2) <-- OK | |
5704 | 1.3) --> g | |
5705 | 1.4) <-- %Stop | |
5706 | 1.5) --> vStopped | |
5707 | 1.6) <-- (registers reply to step #1.3) | |
5708 | ||
5709 | Obviously, the reply in step #1.6 would be unexpected to a vStopped | |
5710 | query. | |
5711 | ||
796cb314 | 5712 | To solve this, whenever we parse a %Stop notification successfully, |
74531fed PA |
5713 | we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on |
5714 | doing whatever we were doing: | |
5715 | ||
5716 | 2.1) --> Hg 1 | |
5717 | 2.2) <-- OK | |
5718 | 2.3) --> g | |
5719 | 2.4) <-- %Stop | |
5720 | <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN> | |
5721 | 2.5) <-- (registers reply to step #2.3) | |
5722 | ||
5723 | Eventualy after step #2.5, we return to the event loop, which | |
5724 | notices there's an event on the | |
5725 | REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the | |
5726 | associated callback --- the function below. At this point, we're | |
5727 | always safe to start a vStopped sequence. : | |
5728 | ||
5729 | 2.6) --> vStopped | |
5730 | 2.7) <-- T05 thread:2 | |
5731 | 2.8) --> vStopped | |
5732 | 2.9) --> OK | |
5733 | */ | |
5734 | ||
722247f1 YQ |
5735 | void |
5736 | remote_notif_get_pending_events (struct notif_client *nc) | |
74531fed PA |
5737 | { |
5738 | struct remote_state *rs = get_remote_state (); | |
74531fed | 5739 | |
f48ff2a7 | 5740 | if (rs->notif_state->pending_event[nc->id] != NULL) |
74531fed | 5741 | { |
722247f1 YQ |
5742 | if (notif_debug) |
5743 | fprintf_unfiltered (gdb_stdlog, | |
5744 | "notif: process: '%s' ack pending event\n", | |
5745 | nc->name); | |
74531fed | 5746 | |
722247f1 | 5747 | /* acknowledge */ |
f48ff2a7 YQ |
5748 | nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]); |
5749 | rs->notif_state->pending_event[nc->id] = NULL; | |
74531fed PA |
5750 | |
5751 | while (1) | |
5752 | { | |
5753 | getpkt (&rs->buf, &rs->buf_size, 0); | |
5754 | if (strcmp (rs->buf, "OK") == 0) | |
5755 | break; | |
5756 | else | |
722247f1 | 5757 | remote_notif_ack (nc, rs->buf); |
74531fed PA |
5758 | } |
5759 | } | |
722247f1 YQ |
5760 | else |
5761 | { | |
5762 | if (notif_debug) | |
5763 | fprintf_unfiltered (gdb_stdlog, | |
5764 | "notif: process: '%s' no pending reply\n", | |
5765 | nc->name); | |
5766 | } | |
74531fed PA |
5767 | } |
5768 | ||
74531fed PA |
5769 | /* Called when it is decided that STOP_REPLY holds the info of the |
5770 | event that is to be returned to the core. This function always | |
5771 | destroys STOP_REPLY. */ | |
5772 | ||
5773 | static ptid_t | |
5774 | process_stop_reply (struct stop_reply *stop_reply, | |
5775 | struct target_waitstatus *status) | |
5776 | { | |
5777 | ptid_t ptid; | |
5778 | ||
5779 | *status = stop_reply->ws; | |
5780 | ptid = stop_reply->ptid; | |
5781 | ||
5782 | /* If no thread/process was reported by the stub, assume the current | |
5783 | inferior. */ | |
5784 | if (ptid_equal (ptid, null_ptid)) | |
5785 | ptid = inferior_ptid; | |
5786 | ||
5f3563ea PA |
5787 | if (status->kind != TARGET_WAITKIND_EXITED |
5788 | && status->kind != TARGET_WAITKIND_SIGNALLED) | |
74531fed | 5789 | { |
ee154bee TT |
5790 | struct remote_state *rs = get_remote_state (); |
5791 | ||
5f3563ea PA |
5792 | /* Expedited registers. */ |
5793 | if (stop_reply->regcache) | |
5794 | { | |
217f1f79 | 5795 | struct regcache *regcache |
f5656ead | 5796 | = get_thread_arch_regcache (ptid, target_gdbarch ()); |
5f3563ea PA |
5797 | cached_reg_t *reg; |
5798 | int ix; | |
5799 | ||
5800 | for (ix = 0; | |
5801 | VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg); | |
5802 | ix++) | |
217f1f79 | 5803 | regcache_raw_supply (regcache, reg->num, reg->data); |
5f3563ea PA |
5804 | VEC_free (cached_reg_t, stop_reply->regcache); |
5805 | } | |
74531fed | 5806 | |
ee154bee TT |
5807 | rs->remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p; |
5808 | rs->remote_watch_data_address = stop_reply->watch_data_address; | |
1941c569 PA |
5809 | |
5810 | remote_notice_new_inferior (ptid, 0); | |
dc146f7c | 5811 | demand_private_info (ptid)->core = stop_reply->core; |
74531fed PA |
5812 | } |
5813 | ||
74531fed PA |
5814 | stop_reply_xfree (stop_reply); |
5815 | return ptid; | |
5816 | } | |
5817 | ||
5818 | /* The non-stop mode version of target_wait. */ | |
5819 | ||
5820 | static ptid_t | |
47608cb1 | 5821 | remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options) |
74531fed PA |
5822 | { |
5823 | struct remote_state *rs = get_remote_state (); | |
74531fed PA |
5824 | struct stop_reply *stop_reply; |
5825 | int ret; | |
fee9eda9 | 5826 | int is_notif = 0; |
74531fed PA |
5827 | |
5828 | /* If in non-stop mode, get out of getpkt even if a | |
5829 | notification is received. */ | |
5830 | ||
5831 | ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size, | |
fee9eda9 | 5832 | 0 /* forever */, &is_notif); |
74531fed PA |
5833 | while (1) |
5834 | { | |
fee9eda9 | 5835 | if (ret != -1 && !is_notif) |
74531fed PA |
5836 | switch (rs->buf[0]) |
5837 | { | |
5838 | case 'E': /* Error of some sort. */ | |
5839 | /* We're out of sync with the target now. Did it continue | |
5840 | or not? We can't tell which thread it was in non-stop, | |
5841 | so just ignore this. */ | |
5842 | warning (_("Remote failure reply: %s"), rs->buf); | |
5843 | break; | |
5844 | case 'O': /* Console output. */ | |
5845 | remote_console_output (rs->buf + 1); | |
5846 | break; | |
5847 | default: | |
5848 | warning (_("Invalid remote reply: %s"), rs->buf); | |
5849 | break; | |
5850 | } | |
5851 | ||
5852 | /* Acknowledge a pending stop reply that may have arrived in the | |
5853 | mean time. */ | |
f48ff2a7 | 5854 | if (rs->notif_state->pending_event[notif_client_stop.id] != NULL) |
722247f1 | 5855 | remote_notif_get_pending_events (¬if_client_stop); |
74531fed PA |
5856 | |
5857 | /* If indeed we noticed a stop reply, we're done. */ | |
5858 | stop_reply = queued_stop_reply (ptid); | |
5859 | if (stop_reply != NULL) | |
5860 | return process_stop_reply (stop_reply, status); | |
5861 | ||
47608cb1 | 5862 | /* Still no event. If we're just polling for an event, then |
74531fed | 5863 | return to the event loop. */ |
47608cb1 | 5864 | if (options & TARGET_WNOHANG) |
74531fed PA |
5865 | { |
5866 | status->kind = TARGET_WAITKIND_IGNORE; | |
5867 | return minus_one_ptid; | |
5868 | } | |
5869 | ||
47608cb1 | 5870 | /* Otherwise do a blocking wait. */ |
74531fed | 5871 | ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size, |
fee9eda9 | 5872 | 1 /* forever */, &is_notif); |
74531fed PA |
5873 | } |
5874 | } | |
5875 | ||
5876 | /* Wait until the remote machine stops, then return, storing status in | |
5877 | STATUS just as `wait' would. */ | |
5878 | ||
5879 | static ptid_t | |
47608cb1 | 5880 | remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options) |
74531fed PA |
5881 | { |
5882 | struct remote_state *rs = get_remote_state (); | |
74531fed | 5883 | ptid_t event_ptid = null_ptid; |
cea39f65 | 5884 | char *buf; |
74531fed PA |
5885 | struct stop_reply *stop_reply; |
5886 | ||
47608cb1 PA |
5887 | again: |
5888 | ||
74531fed PA |
5889 | status->kind = TARGET_WAITKIND_IGNORE; |
5890 | status->value.integer = 0; | |
5891 | ||
5892 | stop_reply = queued_stop_reply (ptid); | |
5893 | if (stop_reply != NULL) | |
5894 | return process_stop_reply (stop_reply, status); | |
5895 | ||
5896 | if (rs->cached_wait_status) | |
5897 | /* Use the cached wait status, but only once. */ | |
5898 | rs->cached_wait_status = 0; | |
5899 | else | |
5900 | { | |
5901 | int ret; | |
722247f1 | 5902 | int is_notif; |
74531fed PA |
5903 | |
5904 | if (!target_is_async_p ()) | |
5905 | { | |
934b9bac | 5906 | ofunc = signal (SIGINT, sync_remote_interrupt); |
74531fed PA |
5907 | /* If the user hit C-c before this packet, or between packets, |
5908 | pretend that it was hit right here. */ | |
522002f9 | 5909 | if (check_quit_flag ()) |
74531fed | 5910 | { |
522002f9 | 5911 | clear_quit_flag (); |
934b9bac | 5912 | sync_remote_interrupt (SIGINT); |
74531fed PA |
5913 | } |
5914 | } | |
5915 | ||
5916 | /* FIXME: cagney/1999-09-27: If we're in async mode we should | |
5917 | _never_ wait for ever -> test on target_is_async_p(). | |
5918 | However, before we do that we need to ensure that the caller | |
5919 | knows how to take the target into/out of async mode. */ | |
722247f1 YQ |
5920 | ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size, |
5921 | wait_forever_enabled_p, &is_notif); | |
5922 | ||
5e1b953b SDJ |
5923 | if (!target_is_async_p ()) |
5924 | signal (SIGINT, ofunc); | |
5925 | ||
722247f1 YQ |
5926 | /* GDB gets a notification. Return to core as this event is |
5927 | not interesting. */ | |
5928 | if (ret != -1 && is_notif) | |
5929 | return minus_one_ptid; | |
74531fed PA |
5930 | } |
5931 | ||
5932 | buf = rs->buf; | |
5933 | ||
ee154bee | 5934 | rs->remote_stopped_by_watchpoint_p = 0; |
74531fed PA |
5935 | |
5936 | /* We got something. */ | |
5937 | rs->waiting_for_stop_reply = 0; | |
5938 | ||
3a29589a DJ |
5939 | /* Assume that the target has acknowledged Ctrl-C unless we receive |
5940 | an 'F' or 'O' packet. */ | |
5941 | if (buf[0] != 'F' && buf[0] != 'O') | |
5942 | rs->ctrlc_pending_p = 0; | |
5943 | ||
74531fed PA |
5944 | switch (buf[0]) |
5945 | { | |
5946 | case 'E': /* Error of some sort. */ | |
5947 | /* We're out of sync with the target now. Did it continue or | |
5948 | not? Not is more likely, so report a stop. */ | |
5949 | warning (_("Remote failure reply: %s"), buf); | |
5950 | status->kind = TARGET_WAITKIND_STOPPED; | |
a493e3e2 | 5951 | status->value.sig = GDB_SIGNAL_0; |
74531fed PA |
5952 | break; |
5953 | case 'F': /* File-I/O request. */ | |
3a29589a DJ |
5954 | remote_fileio_request (buf, rs->ctrlc_pending_p); |
5955 | rs->ctrlc_pending_p = 0; | |
74531fed PA |
5956 | break; |
5957 | case 'T': case 'S': case 'X': case 'W': | |
5958 | { | |
722247f1 YQ |
5959 | struct stop_reply *stop_reply |
5960 | = (struct stop_reply *) remote_notif_parse (¬if_client_stop, | |
5961 | rs->buf); | |
74531fed | 5962 | |
74531fed | 5963 | event_ptid = process_stop_reply (stop_reply, status); |
c8e38a49 PA |
5964 | break; |
5965 | } | |
5966 | case 'O': /* Console output. */ | |
5967 | remote_console_output (buf + 1); | |
e24a49d8 | 5968 | |
c8e38a49 PA |
5969 | /* The target didn't really stop; keep waiting. */ |
5970 | rs->waiting_for_stop_reply = 1; | |
e24a49d8 | 5971 | |
c8e38a49 PA |
5972 | break; |
5973 | case '\0': | |
b73be471 | 5974 | if (rs->last_sent_signal != GDB_SIGNAL_0) |
c8e38a49 PA |
5975 | { |
5976 | /* Zero length reply means that we tried 'S' or 'C' and the | |
5977 | remote system doesn't support it. */ | |
5978 | target_terminal_ours_for_output (); | |
5979 | printf_filtered | |
5980 | ("Can't send signals to this remote system. %s not sent.\n", | |
b73be471 TT |
5981 | gdb_signal_to_name (rs->last_sent_signal)); |
5982 | rs->last_sent_signal = GDB_SIGNAL_0; | |
c8e38a49 PA |
5983 | target_terminal_inferior (); |
5984 | ||
280ceea3 | 5985 | strcpy ((char *) buf, rs->last_sent_step ? "s" : "c"); |
c8e38a49 PA |
5986 | putpkt ((char *) buf); |
5987 | ||
5988 | /* We just told the target to resume, so a stop reply is in | |
5989 | order. */ | |
e24a49d8 | 5990 | rs->waiting_for_stop_reply = 1; |
c8e38a49 | 5991 | break; |
43ff13b4 | 5992 | } |
c8e38a49 PA |
5993 | /* else fallthrough */ |
5994 | default: | |
5995 | warning (_("Invalid remote reply: %s"), buf); | |
5996 | /* Keep waiting. */ | |
5997 | rs->waiting_for_stop_reply = 1; | |
5998 | break; | |
43ff13b4 | 5999 | } |
c8e38a49 | 6000 | |
c8e38a49 | 6001 | if (status->kind == TARGET_WAITKIND_IGNORE) |
47608cb1 PA |
6002 | { |
6003 | /* Nothing interesting happened. If we're doing a non-blocking | |
6004 | poll, we're done. Otherwise, go back to waiting. */ | |
6005 | if (options & TARGET_WNOHANG) | |
6006 | return minus_one_ptid; | |
6007 | else | |
6008 | goto again; | |
6009 | } | |
74531fed PA |
6010 | else if (status->kind != TARGET_WAITKIND_EXITED |
6011 | && status->kind != TARGET_WAITKIND_SIGNALLED) | |
82f73884 PA |
6012 | { |
6013 | if (!ptid_equal (event_ptid, null_ptid)) | |
47f8a51d | 6014 | record_currthread (rs, event_ptid); |
82f73884 PA |
6015 | else |
6016 | event_ptid = inferior_ptid; | |
43ff13b4 | 6017 | } |
74531fed PA |
6018 | else |
6019 | /* A process exit. Invalidate our notion of current thread. */ | |
47f8a51d | 6020 | record_currthread (rs, minus_one_ptid); |
79d7f229 | 6021 | |
82f73884 | 6022 | return event_ptid; |
43ff13b4 JM |
6023 | } |
6024 | ||
74531fed PA |
6025 | /* Wait until the remote machine stops, then return, storing status in |
6026 | STATUS just as `wait' would. */ | |
6027 | ||
c8e38a49 | 6028 | static ptid_t |
117de6a9 | 6029 | remote_wait (struct target_ops *ops, |
47608cb1 | 6030 | ptid_t ptid, struct target_waitstatus *status, int options) |
c8e38a49 PA |
6031 | { |
6032 | ptid_t event_ptid; | |
6033 | ||
74531fed | 6034 | if (non_stop) |
47608cb1 | 6035 | event_ptid = remote_wait_ns (ptid, status, options); |
74531fed | 6036 | else |
47608cb1 | 6037 | event_ptid = remote_wait_as (ptid, status, options); |
c8e38a49 | 6038 | |
74531fed | 6039 | if (target_can_async_p ()) |
c8e38a49 | 6040 | { |
74531fed PA |
6041 | /* If there are are events left in the queue tell the event loop |
6042 | to return here. */ | |
722247f1 | 6043 | if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue)) |
74531fed | 6044 | mark_async_event_handler (remote_async_inferior_event_token); |
c8e38a49 | 6045 | } |
c8e38a49 PA |
6046 | |
6047 | return event_ptid; | |
6048 | } | |
6049 | ||
74ca34ce | 6050 | /* Fetch a single register using a 'p' packet. */ |
c906108c | 6051 | |
b96ec7ac | 6052 | static int |
56be3814 | 6053 | fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg) |
b96ec7ac AC |
6054 | { |
6055 | struct remote_state *rs = get_remote_state (); | |
2e9f7625 | 6056 | char *buf, *p; |
b96ec7ac AC |
6057 | char regp[MAX_REGISTER_SIZE]; |
6058 | int i; | |
6059 | ||
4082afcc | 6060 | if (packet_support (PACKET_p) == PACKET_DISABLE) |
74ca34ce DJ |
6061 | return 0; |
6062 | ||
6063 | if (reg->pnum == -1) | |
6064 | return 0; | |
6065 | ||
2e9f7625 | 6066 | p = rs->buf; |
fcad0fa4 | 6067 | *p++ = 'p'; |
74ca34ce | 6068 | p += hexnumstr (p, reg->pnum); |
fcad0fa4 | 6069 | *p++ = '\0'; |
1f4437a4 MS |
6070 | putpkt (rs->buf); |
6071 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3f9a994c | 6072 | |
2e9f7625 DJ |
6073 | buf = rs->buf; |
6074 | ||
74ca34ce DJ |
6075 | switch (packet_ok (buf, &remote_protocol_packets[PACKET_p])) |
6076 | { | |
6077 | case PACKET_OK: | |
6078 | break; | |
6079 | case PACKET_UNKNOWN: | |
6080 | return 0; | |
6081 | case PACKET_ERROR: | |
27a9c0bf MS |
6082 | error (_("Could not fetch register \"%s\"; remote failure reply '%s'"), |
6083 | gdbarch_register_name (get_regcache_arch (regcache), | |
6084 | reg->regnum), | |
6085 | buf); | |
74ca34ce | 6086 | } |
3f9a994c JB |
6087 | |
6088 | /* If this register is unfetchable, tell the regcache. */ | |
6089 | if (buf[0] == 'x') | |
8480adf2 | 6090 | { |
56be3814 | 6091 | regcache_raw_supply (regcache, reg->regnum, NULL); |
8480adf2 | 6092 | return 1; |
b96ec7ac | 6093 | } |
b96ec7ac | 6094 | |
3f9a994c JB |
6095 | /* Otherwise, parse and supply the value. */ |
6096 | p = buf; | |
6097 | i = 0; | |
6098 | while (p[0] != 0) | |
6099 | { | |
6100 | if (p[1] == 0) | |
74ca34ce | 6101 | error (_("fetch_register_using_p: early buf termination")); |
3f9a994c JB |
6102 | |
6103 | regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]); | |
6104 | p += 2; | |
6105 | } | |
56be3814 | 6106 | regcache_raw_supply (regcache, reg->regnum, regp); |
3f9a994c | 6107 | return 1; |
b96ec7ac AC |
6108 | } |
6109 | ||
74ca34ce DJ |
6110 | /* Fetch the registers included in the target's 'g' packet. */ |
6111 | ||
29709017 DJ |
6112 | static int |
6113 | send_g_packet (void) | |
c906108c | 6114 | { |
d01949b6 | 6115 | struct remote_state *rs = get_remote_state (); |
cea39f65 | 6116 | int buf_len; |
c906108c | 6117 | |
bba74b36 | 6118 | xsnprintf (rs->buf, get_remote_packet_size (), "g"); |
74ca34ce | 6119 | remote_send (&rs->buf, &rs->buf_size); |
c906108c | 6120 | |
29709017 DJ |
6121 | /* We can get out of synch in various cases. If the first character |
6122 | in the buffer is not a hex character, assume that has happened | |
6123 | and try to fetch another packet to read. */ | |
6124 | while ((rs->buf[0] < '0' || rs->buf[0] > '9') | |
6125 | && (rs->buf[0] < 'A' || rs->buf[0] > 'F') | |
6126 | && (rs->buf[0] < 'a' || rs->buf[0] > 'f') | |
6127 | && rs->buf[0] != 'x') /* New: unavailable register value. */ | |
6128 | { | |
6129 | if (remote_debug) | |
6130 | fprintf_unfiltered (gdb_stdlog, | |
6131 | "Bad register packet; fetching a new packet\n"); | |
6132 | getpkt (&rs->buf, &rs->buf_size, 0); | |
6133 | } | |
6134 | ||
74ca34ce DJ |
6135 | buf_len = strlen (rs->buf); |
6136 | ||
6137 | /* Sanity check the received packet. */ | |
6138 | if (buf_len % 2 != 0) | |
6139 | error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf); | |
29709017 DJ |
6140 | |
6141 | return buf_len / 2; | |
6142 | } | |
6143 | ||
6144 | static void | |
56be3814 | 6145 | process_g_packet (struct regcache *regcache) |
29709017 | 6146 | { |
4a22f64d | 6147 | struct gdbarch *gdbarch = get_regcache_arch (regcache); |
29709017 DJ |
6148 | struct remote_state *rs = get_remote_state (); |
6149 | struct remote_arch_state *rsa = get_remote_arch_state (); | |
6150 | int i, buf_len; | |
6151 | char *p; | |
6152 | char *regs; | |
6153 | ||
6154 | buf_len = strlen (rs->buf); | |
6155 | ||
6156 | /* Further sanity checks, with knowledge of the architecture. */ | |
74ca34ce DJ |
6157 | if (buf_len > 2 * rsa->sizeof_g_packet) |
6158 | error (_("Remote 'g' packet reply is too long: %s"), rs->buf); | |
6159 | ||
6160 | /* Save the size of the packet sent to us by the target. It is used | |
6161 | as a heuristic when determining the max size of packets that the | |
6162 | target can safely receive. */ | |
6163 | if (rsa->actual_register_packet_size == 0) | |
6164 | rsa->actual_register_packet_size = buf_len; | |
6165 | ||
6166 | /* If this is smaller than we guessed the 'g' packet would be, | |
6167 | update our records. A 'g' reply that doesn't include a register's | |
6168 | value implies either that the register is not available, or that | |
6169 | the 'p' packet must be used. */ | |
6170 | if (buf_len < 2 * rsa->sizeof_g_packet) | |
b323314b | 6171 | { |
74ca34ce DJ |
6172 | rsa->sizeof_g_packet = buf_len / 2; |
6173 | ||
4a22f64d | 6174 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
b96ec7ac | 6175 | { |
74ca34ce DJ |
6176 | if (rsa->regs[i].pnum == -1) |
6177 | continue; | |
6178 | ||
6179 | if (rsa->regs[i].offset >= rsa->sizeof_g_packet) | |
6180 | rsa->regs[i].in_g_packet = 0; | |
b96ec7ac | 6181 | else |
74ca34ce | 6182 | rsa->regs[i].in_g_packet = 1; |
b96ec7ac | 6183 | } |
74ca34ce | 6184 | } |
b323314b | 6185 | |
74ca34ce | 6186 | regs = alloca (rsa->sizeof_g_packet); |
c906108c SS |
6187 | |
6188 | /* Unimplemented registers read as all bits zero. */ | |
ea9c271d | 6189 | memset (regs, 0, rsa->sizeof_g_packet); |
c906108c | 6190 | |
c906108c SS |
6191 | /* Reply describes registers byte by byte, each byte encoded as two |
6192 | hex characters. Suck them all up, then supply them to the | |
6193 | register cacheing/storage mechanism. */ | |
6194 | ||
74ca34ce | 6195 | p = rs->buf; |
ea9c271d | 6196 | for (i = 0; i < rsa->sizeof_g_packet; i++) |
c906108c | 6197 | { |
74ca34ce DJ |
6198 | if (p[0] == 0 || p[1] == 0) |
6199 | /* This shouldn't happen - we adjusted sizeof_g_packet above. */ | |
6200 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 6201 | _("unexpected end of 'g' packet reply")); |
74ca34ce | 6202 | |
c906108c | 6203 | if (p[0] == 'x' && p[1] == 'x') |
c5aa993b | 6204 | regs[i] = 0; /* 'x' */ |
c906108c SS |
6205 | else |
6206 | regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]); | |
6207 | p += 2; | |
6208 | } | |
6209 | ||
a744cf53 MS |
6210 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
6211 | { | |
6212 | struct packet_reg *r = &rsa->regs[i]; | |
6213 | ||
6214 | if (r->in_g_packet) | |
6215 | { | |
6216 | if (r->offset * 2 >= strlen (rs->buf)) | |
6217 | /* This shouldn't happen - we adjusted in_g_packet above. */ | |
6218 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 6219 | _("unexpected end of 'g' packet reply")); |
a744cf53 MS |
6220 | else if (rs->buf[r->offset * 2] == 'x') |
6221 | { | |
6222 | gdb_assert (r->offset * 2 < strlen (rs->buf)); | |
6223 | /* The register isn't available, mark it as such (at | |
6224 | the same time setting the value to zero). */ | |
6225 | regcache_raw_supply (regcache, r->regnum, NULL); | |
6226 | } | |
6227 | else | |
6228 | regcache_raw_supply (regcache, r->regnum, | |
6229 | regs + r->offset); | |
6230 | } | |
6231 | } | |
c906108c SS |
6232 | } |
6233 | ||
29709017 | 6234 | static void |
56be3814 | 6235 | fetch_registers_using_g (struct regcache *regcache) |
29709017 DJ |
6236 | { |
6237 | send_g_packet (); | |
56be3814 | 6238 | process_g_packet (regcache); |
29709017 DJ |
6239 | } |
6240 | ||
e6e4e701 PA |
6241 | /* Make the remote selected traceframe match GDB's selected |
6242 | traceframe. */ | |
6243 | ||
6244 | static void | |
6245 | set_remote_traceframe (void) | |
6246 | { | |
6247 | int newnum; | |
262e1174 | 6248 | struct remote_state *rs = get_remote_state (); |
e6e4e701 | 6249 | |
262e1174 | 6250 | if (rs->remote_traceframe_number == get_traceframe_number ()) |
e6e4e701 PA |
6251 | return; |
6252 | ||
6253 | /* Avoid recursion, remote_trace_find calls us again. */ | |
262e1174 | 6254 | rs->remote_traceframe_number = get_traceframe_number (); |
e6e4e701 PA |
6255 | |
6256 | newnum = target_trace_find (tfind_number, | |
6257 | get_traceframe_number (), 0, 0, NULL); | |
6258 | ||
6259 | /* Should not happen. If it does, all bets are off. */ | |
6260 | if (newnum != get_traceframe_number ()) | |
6261 | warning (_("could not set remote traceframe")); | |
6262 | } | |
6263 | ||
74ca34ce | 6264 | static void |
28439f5e PA |
6265 | remote_fetch_registers (struct target_ops *ops, |
6266 | struct regcache *regcache, int regnum) | |
74ca34ce | 6267 | { |
74ca34ce DJ |
6268 | struct remote_arch_state *rsa = get_remote_arch_state (); |
6269 | int i; | |
6270 | ||
e6e4e701 | 6271 | set_remote_traceframe (); |
79d7f229 | 6272 | set_general_thread (inferior_ptid); |
74ca34ce DJ |
6273 | |
6274 | if (regnum >= 0) | |
6275 | { | |
6276 | struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum); | |
a744cf53 | 6277 | |
74ca34ce DJ |
6278 | gdb_assert (reg != NULL); |
6279 | ||
6280 | /* If this register might be in the 'g' packet, try that first - | |
6281 | we are likely to read more than one register. If this is the | |
6282 | first 'g' packet, we might be overly optimistic about its | |
6283 | contents, so fall back to 'p'. */ | |
6284 | if (reg->in_g_packet) | |
6285 | { | |
56be3814 | 6286 | fetch_registers_using_g (regcache); |
74ca34ce DJ |
6287 | if (reg->in_g_packet) |
6288 | return; | |
6289 | } | |
6290 | ||
56be3814 | 6291 | if (fetch_register_using_p (regcache, reg)) |
74ca34ce DJ |
6292 | return; |
6293 | ||
6294 | /* This register is not available. */ | |
56be3814 | 6295 | regcache_raw_supply (regcache, reg->regnum, NULL); |
74ca34ce DJ |
6296 | |
6297 | return; | |
6298 | } | |
6299 | ||
56be3814 | 6300 | fetch_registers_using_g (regcache); |
74ca34ce | 6301 | |
4a22f64d | 6302 | for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++) |
74ca34ce | 6303 | if (!rsa->regs[i].in_g_packet) |
56be3814 | 6304 | if (!fetch_register_using_p (regcache, &rsa->regs[i])) |
74ca34ce DJ |
6305 | { |
6306 | /* This register is not available. */ | |
56be3814 | 6307 | regcache_raw_supply (regcache, i, NULL); |
74ca34ce DJ |
6308 | } |
6309 | } | |
6310 | ||
c906108c SS |
6311 | /* Prepare to store registers. Since we may send them all (using a |
6312 | 'G' request), we have to read out the ones we don't want to change | |
6313 | first. */ | |
6314 | ||
c5aa993b | 6315 | static void |
f32dbf8c | 6316 | remote_prepare_to_store (struct target_ops *self, struct regcache *regcache) |
c906108c | 6317 | { |
ea9c271d | 6318 | struct remote_arch_state *rsa = get_remote_arch_state (); |
cf0e1e0d | 6319 | int i; |
cfd77fa1 | 6320 | gdb_byte buf[MAX_REGISTER_SIZE]; |
cf0e1e0d | 6321 | |
c906108c | 6322 | /* Make sure the entire registers array is valid. */ |
4082afcc | 6323 | switch (packet_support (PACKET_P)) |
5a2468f5 JM |
6324 | { |
6325 | case PACKET_DISABLE: | |
6326 | case PACKET_SUPPORT_UNKNOWN: | |
cf0e1e0d | 6327 | /* Make sure all the necessary registers are cached. */ |
4a22f64d | 6328 | for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++) |
ea9c271d | 6329 | if (rsa->regs[i].in_g_packet) |
316f2060 | 6330 | regcache_raw_read (regcache, rsa->regs[i].regnum, buf); |
5a2468f5 JM |
6331 | break; |
6332 | case PACKET_ENABLE: | |
6333 | break; | |
6334 | } | |
6335 | } | |
6336 | ||
ad10f812 | 6337 | /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF |
23860348 | 6338 | packet was not recognized. */ |
5a2468f5 JM |
6339 | |
6340 | static int | |
1f4437a4 MS |
6341 | store_register_using_P (const struct regcache *regcache, |
6342 | struct packet_reg *reg) | |
5a2468f5 | 6343 | { |
4a22f64d | 6344 | struct gdbarch *gdbarch = get_regcache_arch (regcache); |
d01949b6 | 6345 | struct remote_state *rs = get_remote_state (); |
5a2468f5 | 6346 | /* Try storing a single register. */ |
6d820c5c | 6347 | char *buf = rs->buf; |
cfd77fa1 | 6348 | gdb_byte regp[MAX_REGISTER_SIZE]; |
5a2468f5 | 6349 | char *p; |
5a2468f5 | 6350 | |
4082afcc | 6351 | if (packet_support (PACKET_P) == PACKET_DISABLE) |
74ca34ce DJ |
6352 | return 0; |
6353 | ||
6354 | if (reg->pnum == -1) | |
6355 | return 0; | |
6356 | ||
ea9c271d | 6357 | xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0)); |
5a2468f5 | 6358 | p = buf + strlen (buf); |
56be3814 | 6359 | regcache_raw_collect (regcache, reg->regnum, regp); |
4a22f64d | 6360 | bin2hex (regp, p, register_size (gdbarch, reg->regnum)); |
1f4437a4 MS |
6361 | putpkt (rs->buf); |
6362 | getpkt (&rs->buf, &rs->buf_size, 0); | |
5a2468f5 | 6363 | |
74ca34ce DJ |
6364 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P])) |
6365 | { | |
6366 | case PACKET_OK: | |
6367 | return 1; | |
6368 | case PACKET_ERROR: | |
27a9c0bf MS |
6369 | error (_("Could not write register \"%s\"; remote failure reply '%s'"), |
6370 | gdbarch_register_name (gdbarch, reg->regnum), rs->buf); | |
74ca34ce DJ |
6371 | case PACKET_UNKNOWN: |
6372 | return 0; | |
6373 | default: | |
6374 | internal_error (__FILE__, __LINE__, _("Bad result from packet_ok")); | |
6375 | } | |
c906108c SS |
6376 | } |
6377 | ||
23860348 MS |
6378 | /* Store register REGNUM, or all registers if REGNUM == -1, from the |
6379 | contents of the register cache buffer. FIXME: ignores errors. */ | |
c906108c SS |
6380 | |
6381 | static void | |
56be3814 | 6382 | store_registers_using_G (const struct regcache *regcache) |
c906108c | 6383 | { |
d01949b6 | 6384 | struct remote_state *rs = get_remote_state (); |
ea9c271d | 6385 | struct remote_arch_state *rsa = get_remote_arch_state (); |
cfd77fa1 | 6386 | gdb_byte *regs; |
c906108c SS |
6387 | char *p; |
6388 | ||
193cb69f AC |
6389 | /* Extract all the registers in the regcache copying them into a |
6390 | local buffer. */ | |
6391 | { | |
b323314b | 6392 | int i; |
a744cf53 | 6393 | |
ea9c271d DJ |
6394 | regs = alloca (rsa->sizeof_g_packet); |
6395 | memset (regs, 0, rsa->sizeof_g_packet); | |
4a22f64d | 6396 | for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++) |
193cb69f | 6397 | { |
ea9c271d | 6398 | struct packet_reg *r = &rsa->regs[i]; |
a744cf53 | 6399 | |
b323314b | 6400 | if (r->in_g_packet) |
56be3814 | 6401 | regcache_raw_collect (regcache, r->regnum, regs + r->offset); |
193cb69f AC |
6402 | } |
6403 | } | |
c906108c SS |
6404 | |
6405 | /* Command describes registers byte by byte, | |
6406 | each byte encoded as two hex characters. */ | |
6d820c5c | 6407 | p = rs->buf; |
193cb69f | 6408 | *p++ = 'G'; |
74ca34ce DJ |
6409 | /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets |
6410 | updated. */ | |
6411 | bin2hex (regs, p, rsa->sizeof_g_packet); | |
1f4437a4 MS |
6412 | putpkt (rs->buf); |
6413 | getpkt (&rs->buf, &rs->buf_size, 0); | |
6414 | if (packet_check_result (rs->buf) == PACKET_ERROR) | |
27a9c0bf MS |
6415 | error (_("Could not write registers; remote failure reply '%s'"), |
6416 | rs->buf); | |
c906108c | 6417 | } |
74ca34ce DJ |
6418 | |
6419 | /* Store register REGNUM, or all registers if REGNUM == -1, from the contents | |
6420 | of the register cache buffer. FIXME: ignores errors. */ | |
6421 | ||
6422 | static void | |
28439f5e PA |
6423 | remote_store_registers (struct target_ops *ops, |
6424 | struct regcache *regcache, int regnum) | |
74ca34ce | 6425 | { |
74ca34ce DJ |
6426 | struct remote_arch_state *rsa = get_remote_arch_state (); |
6427 | int i; | |
6428 | ||
e6e4e701 | 6429 | set_remote_traceframe (); |
79d7f229 | 6430 | set_general_thread (inferior_ptid); |
74ca34ce DJ |
6431 | |
6432 | if (regnum >= 0) | |
6433 | { | |
6434 | struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum); | |
a744cf53 | 6435 | |
74ca34ce DJ |
6436 | gdb_assert (reg != NULL); |
6437 | ||
6438 | /* Always prefer to store registers using the 'P' packet if | |
6439 | possible; we often change only a small number of registers. | |
6440 | Sometimes we change a larger number; we'd need help from a | |
6441 | higher layer to know to use 'G'. */ | |
56be3814 | 6442 | if (store_register_using_P (regcache, reg)) |
74ca34ce DJ |
6443 | return; |
6444 | ||
6445 | /* For now, don't complain if we have no way to write the | |
6446 | register. GDB loses track of unavailable registers too | |
6447 | easily. Some day, this may be an error. We don't have | |
0df8b418 | 6448 | any way to read the register, either... */ |
74ca34ce DJ |
6449 | if (!reg->in_g_packet) |
6450 | return; | |
6451 | ||
56be3814 | 6452 | store_registers_using_G (regcache); |
74ca34ce DJ |
6453 | return; |
6454 | } | |
6455 | ||
56be3814 | 6456 | store_registers_using_G (regcache); |
74ca34ce | 6457 | |
4a22f64d | 6458 | for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++) |
74ca34ce | 6459 | if (!rsa->regs[i].in_g_packet) |
56be3814 | 6460 | if (!store_register_using_P (regcache, &rsa->regs[i])) |
74ca34ce DJ |
6461 | /* See above for why we do not issue an error here. */ |
6462 | continue; | |
6463 | } | |
c906108c SS |
6464 | \f |
6465 | ||
6466 | /* Return the number of hex digits in num. */ | |
6467 | ||
6468 | static int | |
fba45db2 | 6469 | hexnumlen (ULONGEST num) |
c906108c SS |
6470 | { |
6471 | int i; | |
6472 | ||
6473 | for (i = 0; num != 0; i++) | |
6474 | num >>= 4; | |
6475 | ||
6476 | return max (i, 1); | |
6477 | } | |
6478 | ||
2df3850c | 6479 | /* Set BUF to the minimum number of hex digits representing NUM. */ |
c906108c SS |
6480 | |
6481 | static int | |
fba45db2 | 6482 | hexnumstr (char *buf, ULONGEST num) |
c906108c | 6483 | { |
c906108c | 6484 | int len = hexnumlen (num); |
a744cf53 | 6485 | |
2df3850c JM |
6486 | return hexnumnstr (buf, num, len); |
6487 | } | |
6488 | ||
c906108c | 6489 | |
2df3850c | 6490 | /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */ |
c906108c | 6491 | |
2df3850c | 6492 | static int |
fba45db2 | 6493 | hexnumnstr (char *buf, ULONGEST num, int width) |
2df3850c JM |
6494 | { |
6495 | int i; | |
6496 | ||
6497 | buf[width] = '\0'; | |
6498 | ||
6499 | for (i = width - 1; i >= 0; i--) | |
c906108c | 6500 | { |
c5aa993b | 6501 | buf[i] = "0123456789abcdef"[(num & 0xf)]; |
c906108c SS |
6502 | num >>= 4; |
6503 | } | |
6504 | ||
2df3850c | 6505 | return width; |
c906108c SS |
6506 | } |
6507 | ||
23860348 | 6508 | /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */ |
c906108c SS |
6509 | |
6510 | static CORE_ADDR | |
fba45db2 | 6511 | remote_address_masked (CORE_ADDR addr) |
c906108c | 6512 | { |
883b9c6c | 6513 | unsigned int address_size = remote_address_size; |
a744cf53 | 6514 | |
911c95a5 UW |
6515 | /* If "remoteaddresssize" was not set, default to target address size. */ |
6516 | if (!address_size) | |
f5656ead | 6517 | address_size = gdbarch_addr_bit (target_gdbarch ()); |
911c95a5 UW |
6518 | |
6519 | if (address_size > 0 | |
6520 | && address_size < (sizeof (ULONGEST) * 8)) | |
c906108c SS |
6521 | { |
6522 | /* Only create a mask when that mask can safely be constructed | |
23860348 | 6523 | in a ULONGEST variable. */ |
c906108c | 6524 | ULONGEST mask = 1; |
a744cf53 | 6525 | |
911c95a5 | 6526 | mask = (mask << address_size) - 1; |
c906108c SS |
6527 | addr &= mask; |
6528 | } | |
6529 | return addr; | |
6530 | } | |
6531 | ||
6532 | /* Determine whether the remote target supports binary downloading. | |
6533 | This is accomplished by sending a no-op memory write of zero length | |
6534 | to the target at the specified address. It does not suffice to send | |
23860348 MS |
6535 | the whole packet, since many stubs strip the eighth bit and |
6536 | subsequently compute a wrong checksum, which causes real havoc with | |
6537 | remote_write_bytes. | |
7a292a7a | 6538 | |
96baa820 | 6539 | NOTE: This can still lose if the serial line is not eight-bit |
0df8b418 | 6540 | clean. In cases like this, the user should clear "remote |
23860348 | 6541 | X-packet". */ |
96baa820 | 6542 | |
c906108c | 6543 | static void |
fba45db2 | 6544 | check_binary_download (CORE_ADDR addr) |
c906108c | 6545 | { |
d01949b6 | 6546 | struct remote_state *rs = get_remote_state (); |
24b06219 | 6547 | |
4082afcc | 6548 | switch (packet_support (PACKET_X)) |
c906108c | 6549 | { |
96baa820 JM |
6550 | case PACKET_DISABLE: |
6551 | break; | |
6552 | case PACKET_ENABLE: | |
6553 | break; | |
6554 | case PACKET_SUPPORT_UNKNOWN: | |
6555 | { | |
96baa820 | 6556 | char *p; |
802188a7 | 6557 | |
2e9f7625 | 6558 | p = rs->buf; |
96baa820 JM |
6559 | *p++ = 'X'; |
6560 | p += hexnumstr (p, (ULONGEST) addr); | |
6561 | *p++ = ','; | |
6562 | p += hexnumstr (p, (ULONGEST) 0); | |
6563 | *p++ = ':'; | |
6564 | *p = '\0'; | |
802188a7 | 6565 | |
2e9f7625 | 6566 | putpkt_binary (rs->buf, (int) (p - rs->buf)); |
6d820c5c | 6567 | getpkt (&rs->buf, &rs->buf_size, 0); |
c906108c | 6568 | |
2e9f7625 | 6569 | if (rs->buf[0] == '\0') |
96baa820 JM |
6570 | { |
6571 | if (remote_debug) | |
6572 | fprintf_unfiltered (gdb_stdlog, | |
3e43a32a MS |
6573 | "binary downloading NOT " |
6574 | "supported by target\n"); | |
444abaca | 6575 | remote_protocol_packets[PACKET_X].support = PACKET_DISABLE; |
96baa820 JM |
6576 | } |
6577 | else | |
6578 | { | |
6579 | if (remote_debug) | |
6580 | fprintf_unfiltered (gdb_stdlog, | |
64b9b334 | 6581 | "binary downloading supported by target\n"); |
444abaca | 6582 | remote_protocol_packets[PACKET_X].support = PACKET_ENABLE; |
96baa820 JM |
6583 | } |
6584 | break; | |
6585 | } | |
c906108c SS |
6586 | } |
6587 | } | |
6588 | ||
6589 | /* Write memory data directly to the remote machine. | |
6590 | This does not inform the data cache; the data cache uses this. | |
a76d924d | 6591 | HEADER is the starting part of the packet. |
c906108c SS |
6592 | MEMADDR is the address in the remote memory space. |
6593 | MYADDR is the address of the buffer in our space. | |
6594 | LEN is the number of bytes. | |
a76d924d DJ |
6595 | PACKET_FORMAT should be either 'X' or 'M', and indicates if we |
6596 | should send data as binary ('X'), or hex-encoded ('M'). | |
6597 | ||
6598 | The function creates packet of the form | |
6599 | <HEADER><ADDRESS>,<LENGTH>:<DATA> | |
6600 | ||
6601 | where encoding of <DATA> is termined by PACKET_FORMAT. | |
6602 | ||
6603 | If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma | |
6604 | are omitted. | |
6605 | ||
9b409511 YQ |
6606 | Return the transferred status, error or OK (an |
6607 | 'enum target_xfer_status' value). Save the number of bytes | |
6608 | transferred in *XFERED_LEN. Only transfer a single packet. */ | |
c906108c | 6609 | |
9b409511 | 6610 | static enum target_xfer_status |
a76d924d | 6611 | remote_write_bytes_aux (const char *header, CORE_ADDR memaddr, |
5d6df423 | 6612 | const gdb_byte *myaddr, ULONGEST len, |
9b409511 YQ |
6613 | ULONGEST *xfered_len, char packet_format, |
6614 | int use_length) | |
c906108c | 6615 | { |
6d820c5c | 6616 | struct remote_state *rs = get_remote_state (); |
cfd77fa1 | 6617 | char *p; |
a76d924d DJ |
6618 | char *plen = NULL; |
6619 | int plenlen = 0; | |
917317f4 JM |
6620 | int todo; |
6621 | int nr_bytes; | |
a257b5bb | 6622 | int payload_size; |
6765f3e5 | 6623 | int payload_length; |
a76d924d DJ |
6624 | int header_length; |
6625 | ||
6626 | if (packet_format != 'X' && packet_format != 'M') | |
6627 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 6628 | _("remote_write_bytes_aux: bad packet format")); |
c906108c | 6629 | |
5d6df423 | 6630 | if (len == 0) |
9b409511 | 6631 | return TARGET_XFER_EOF; |
b2182ed2 | 6632 | |
3de11b2e | 6633 | payload_size = get_memory_write_packet_size (); |
2bc416ba | 6634 | |
6d820c5c DJ |
6635 | /* The packet buffer will be large enough for the payload; |
6636 | get_memory_packet_size ensures this. */ | |
a76d924d | 6637 | rs->buf[0] = '\0'; |
c906108c | 6638 | |
a257b5bb | 6639 | /* Compute the size of the actual payload by subtracting out the |
0df8b418 MS |
6640 | packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */ |
6641 | ||
a76d924d DJ |
6642 | payload_size -= strlen ("$,:#NN"); |
6643 | if (!use_length) | |
0df8b418 | 6644 | /* The comma won't be used. */ |
a76d924d DJ |
6645 | payload_size += 1; |
6646 | header_length = strlen (header); | |
6647 | payload_size -= header_length; | |
3de11b2e | 6648 | payload_size -= hexnumlen (memaddr); |
c906108c | 6649 | |
a76d924d | 6650 | /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */ |
917317f4 | 6651 | |
a76d924d DJ |
6652 | strcat (rs->buf, header); |
6653 | p = rs->buf + strlen (header); | |
6654 | ||
6655 | /* Compute a best guess of the number of bytes actually transfered. */ | |
6656 | if (packet_format == 'X') | |
c906108c | 6657 | { |
23860348 | 6658 | /* Best guess at number of bytes that will fit. */ |
a257b5bb | 6659 | todo = min (len, payload_size); |
a76d924d DJ |
6660 | if (use_length) |
6661 | payload_size -= hexnumlen (todo); | |
3de11b2e | 6662 | todo = min (todo, payload_size); |
a76d924d DJ |
6663 | } |
6664 | else | |
6665 | { | |
23860348 | 6666 | /* Num bytes that will fit. */ |
a257b5bb | 6667 | todo = min (len, payload_size / 2); |
a76d924d DJ |
6668 | if (use_length) |
6669 | payload_size -= hexnumlen (todo); | |
3de11b2e | 6670 | todo = min (todo, payload_size / 2); |
917317f4 | 6671 | } |
a76d924d | 6672 | |
3de11b2e NS |
6673 | if (todo <= 0) |
6674 | internal_error (__FILE__, __LINE__, | |
405f8e94 | 6675 | _("minimum packet size too small to write data")); |
802188a7 | 6676 | |
6765f3e5 DJ |
6677 | /* If we already need another packet, then try to align the end |
6678 | of this packet to a useful boundary. */ | |
6679 | if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len) | |
6680 | todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr; | |
6681 | ||
a257b5bb | 6682 | /* Append "<memaddr>". */ |
917317f4 JM |
6683 | memaddr = remote_address_masked (memaddr); |
6684 | p += hexnumstr (p, (ULONGEST) memaddr); | |
a257b5bb | 6685 | |
a76d924d DJ |
6686 | if (use_length) |
6687 | { | |
6688 | /* Append ",". */ | |
6689 | *p++ = ','; | |
802188a7 | 6690 | |
a76d924d DJ |
6691 | /* Append <len>. Retain the location/size of <len>. It may need to |
6692 | be adjusted once the packet body has been created. */ | |
6693 | plen = p; | |
6694 | plenlen = hexnumstr (p, (ULONGEST) todo); | |
6695 | p += plenlen; | |
6696 | } | |
a257b5bb AC |
6697 | |
6698 | /* Append ":". */ | |
917317f4 JM |
6699 | *p++ = ':'; |
6700 | *p = '\0'; | |
802188a7 | 6701 | |
a257b5bb | 6702 | /* Append the packet body. */ |
a76d924d | 6703 | if (packet_format == 'X') |
917317f4 | 6704 | { |
917317f4 JM |
6705 | /* Binary mode. Send target system values byte by byte, in |
6706 | increasing byte addresses. Only escape certain critical | |
6707 | characters. */ | |
bc20a4af PA |
6708 | payload_length = remote_escape_output (myaddr, todo, (gdb_byte *) p, |
6709 | &nr_bytes, payload_size); | |
6765f3e5 DJ |
6710 | |
6711 | /* If not all TODO bytes fit, then we'll need another packet. Make | |
9b7194bc DJ |
6712 | a second try to keep the end of the packet aligned. Don't do |
6713 | this if the packet is tiny. */ | |
6714 | if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES) | |
6765f3e5 DJ |
6715 | { |
6716 | int new_nr_bytes; | |
6717 | ||
6718 | new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1)) | |
6719 | - memaddr); | |
6720 | if (new_nr_bytes != nr_bytes) | |
6721 | payload_length = remote_escape_output (myaddr, new_nr_bytes, | |
bc20a4af | 6722 | (gdb_byte *) p, &nr_bytes, |
6765f3e5 DJ |
6723 | payload_size); |
6724 | } | |
6725 | ||
6726 | p += payload_length; | |
a76d924d | 6727 | if (use_length && nr_bytes < todo) |
c906108c | 6728 | { |
802188a7 | 6729 | /* Escape chars have filled up the buffer prematurely, |
917317f4 JM |
6730 | and we have actually sent fewer bytes than planned. |
6731 | Fix-up the length field of the packet. Use the same | |
6732 | number of characters as before. */ | |
917317f4 JM |
6733 | plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen); |
6734 | *plen = ':'; /* overwrite \0 from hexnumnstr() */ | |
c906108c | 6735 | } |
a76d924d DJ |
6736 | } |
6737 | else | |
6738 | { | |
917317f4 JM |
6739 | /* Normal mode: Send target system values byte by byte, in |
6740 | increasing byte addresses. Each byte is encoded as a two hex | |
6741 | value. */ | |
2644f393 | 6742 | nr_bytes = bin2hex (myaddr, p, todo); |
aa6c0017 | 6743 | p += 2 * nr_bytes; |
c906108c | 6744 | } |
802188a7 | 6745 | |
2e9f7625 | 6746 | putpkt_binary (rs->buf, (int) (p - rs->buf)); |
6d820c5c | 6747 | getpkt (&rs->buf, &rs->buf_size, 0); |
802188a7 | 6748 | |
2e9f7625 | 6749 | if (rs->buf[0] == 'E') |
00d84524 | 6750 | return TARGET_XFER_E_IO; |
802188a7 | 6751 | |
23860348 MS |
6752 | /* Return NR_BYTES, not TODO, in case escape chars caused us to send |
6753 | fewer bytes than we'd planned. */ | |
9b409511 YQ |
6754 | *xfered_len = (ULONGEST) nr_bytes; |
6755 | return TARGET_XFER_OK; | |
c906108c SS |
6756 | } |
6757 | ||
a76d924d DJ |
6758 | /* Write memory data directly to the remote machine. |
6759 | This does not inform the data cache; the data cache uses this. | |
6760 | MEMADDR is the address in the remote memory space. | |
6761 | MYADDR is the address of the buffer in our space. | |
6762 | LEN is the number of bytes. | |
6763 | ||
9b409511 YQ |
6764 | Return the transferred status, error or OK (an |
6765 | 'enum target_xfer_status' value). Save the number of bytes | |
6766 | transferred in *XFERED_LEN. Only transfer a single packet. */ | |
a76d924d | 6767 | |
9b409511 YQ |
6768 | static enum target_xfer_status |
6769 | remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len, | |
6770 | ULONGEST *xfered_len) | |
a76d924d DJ |
6771 | { |
6772 | char *packet_format = 0; | |
6773 | ||
6774 | /* Check whether the target supports binary download. */ | |
6775 | check_binary_download (memaddr); | |
6776 | ||
4082afcc | 6777 | switch (packet_support (PACKET_X)) |
a76d924d DJ |
6778 | { |
6779 | case PACKET_ENABLE: | |
6780 | packet_format = "X"; | |
6781 | break; | |
6782 | case PACKET_DISABLE: | |
6783 | packet_format = "M"; | |
6784 | break; | |
6785 | case PACKET_SUPPORT_UNKNOWN: | |
6786 | internal_error (__FILE__, __LINE__, | |
6787 | _("remote_write_bytes: bad internal state")); | |
6788 | default: | |
6789 | internal_error (__FILE__, __LINE__, _("bad switch")); | |
6790 | } | |
6791 | ||
6792 | return remote_write_bytes_aux (packet_format, | |
9b409511 YQ |
6793 | memaddr, myaddr, len, xfered_len, |
6794 | packet_format[0], 1); | |
a76d924d DJ |
6795 | } |
6796 | ||
9217e74e YQ |
6797 | /* Read memory data directly from the remote machine. |
6798 | This does not use the data cache; the data cache uses this. | |
6799 | MEMADDR is the address in the remote memory space. | |
6800 | MYADDR is the address of the buffer in our space. | |
6801 | LEN is the number of bytes. | |
6802 | ||
6803 | Return the transferred status, error or OK (an | |
6804 | 'enum target_xfer_status' value). Save the number of bytes | |
6805 | transferred in *XFERED_LEN. */ | |
6806 | ||
6807 | static enum target_xfer_status | |
6808 | remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len, | |
6809 | ULONGEST *xfered_len) | |
6810 | { | |
6811 | struct remote_state *rs = get_remote_state (); | |
6812 | int max_buf_size; /* Max size of packet output buffer. */ | |
6813 | char *p; | |
6814 | int todo; | |
6815 | int i; | |
6816 | ||
6817 | max_buf_size = get_memory_read_packet_size (); | |
6818 | /* The packet buffer will be large enough for the payload; | |
6819 | get_memory_packet_size ensures this. */ | |
6820 | ||
6821 | /* Number if bytes that will fit. */ | |
6822 | todo = min (len, max_buf_size / 2); | |
6823 | ||
6824 | /* Construct "m"<memaddr>","<len>". */ | |
6825 | memaddr = remote_address_masked (memaddr); | |
6826 | p = rs->buf; | |
6827 | *p++ = 'm'; | |
6828 | p += hexnumstr (p, (ULONGEST) memaddr); | |
6829 | *p++ = ','; | |
6830 | p += hexnumstr (p, (ULONGEST) todo); | |
6831 | *p = '\0'; | |
6832 | putpkt (rs->buf); | |
6833 | getpkt (&rs->buf, &rs->buf_size, 0); | |
6834 | if (rs->buf[0] == 'E' | |
6835 | && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2]) | |
6836 | && rs->buf[3] == '\0') | |
6837 | return TARGET_XFER_E_IO; | |
6838 | /* Reply describes memory byte by byte, each byte encoded as two hex | |
6839 | characters. */ | |
6840 | p = rs->buf; | |
6841 | i = hex2bin (p, myaddr, todo); | |
6842 | /* Return what we have. Let higher layers handle partial reads. */ | |
6843 | *xfered_len = (ULONGEST) i; | |
6844 | return TARGET_XFER_OK; | |
6845 | } | |
6846 | ||
b55fbac4 YQ |
6847 | /* Using the set of read-only target sections of remote, read live |
6848 | read-only memory. | |
8acf9577 YQ |
6849 | |
6850 | For interface/parameters/return description see target.h, | |
6851 | to_xfer_partial. */ | |
6852 | ||
6853 | static enum target_xfer_status | |
b55fbac4 YQ |
6854 | remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf, |
6855 | ULONGEST memaddr, ULONGEST len, | |
6856 | ULONGEST *xfered_len) | |
8acf9577 YQ |
6857 | { |
6858 | struct target_section *secp; | |
6859 | struct target_section_table *table; | |
6860 | ||
6861 | secp = target_section_by_addr (ops, memaddr); | |
6862 | if (secp != NULL | |
6863 | && (bfd_get_section_flags (secp->the_bfd_section->owner, | |
6864 | secp->the_bfd_section) | |
6865 | & SEC_READONLY)) | |
6866 | { | |
6867 | struct target_section *p; | |
6868 | ULONGEST memend = memaddr + len; | |
6869 | ||
6870 | table = target_get_section_table (ops); | |
6871 | ||
6872 | for (p = table->sections; p < table->sections_end; p++) | |
6873 | { | |
6874 | if (memaddr >= p->addr) | |
6875 | { | |
6876 | if (memend <= p->endaddr) | |
6877 | { | |
6878 | /* Entire transfer is within this section. */ | |
b55fbac4 YQ |
6879 | return remote_read_bytes_1 (memaddr, readbuf, len, |
6880 | xfered_len); | |
8acf9577 YQ |
6881 | } |
6882 | else if (memaddr >= p->endaddr) | |
6883 | { | |
6884 | /* This section ends before the transfer starts. */ | |
6885 | continue; | |
6886 | } | |
6887 | else | |
6888 | { | |
6889 | /* This section overlaps the transfer. Just do half. */ | |
6890 | len = p->endaddr - memaddr; | |
b55fbac4 YQ |
6891 | return remote_read_bytes_1 (memaddr, readbuf, len, |
6892 | xfered_len); | |
8acf9577 YQ |
6893 | } |
6894 | } | |
6895 | } | |
6896 | } | |
6897 | ||
6898 | return TARGET_XFER_EOF; | |
6899 | } | |
6900 | ||
9217e74e YQ |
6901 | /* Similar to remote_read_bytes_1, but it reads from the remote stub |
6902 | first if the requested memory is unavailable in traceframe. | |
6903 | Otherwise, fall back to remote_read_bytes_1. */ | |
c906108c | 6904 | |
9b409511 | 6905 | static enum target_xfer_status |
8acf9577 YQ |
6906 | remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr, |
6907 | gdb_byte *myaddr, ULONGEST len, ULONGEST *xfered_len) | |
c906108c | 6908 | { |
6b6aa828 | 6909 | if (len == 0) |
96c4f946 | 6910 | return TARGET_XFER_EOF; |
b2182ed2 | 6911 | |
8acf9577 YQ |
6912 | if (get_traceframe_number () != -1) |
6913 | { | |
6914 | VEC(mem_range_s) *available; | |
6915 | ||
6916 | /* If we fail to get the set of available memory, then the | |
6917 | target does not support querying traceframe info, and so we | |
6918 | attempt reading from the traceframe anyway (assuming the | |
6919 | target implements the old QTro packet then). */ | |
6920 | if (traceframe_available_memory (&available, memaddr, len)) | |
6921 | { | |
6922 | struct cleanup *old_chain; | |
6923 | ||
6924 | old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available); | |
6925 | ||
6926 | if (VEC_empty (mem_range_s, available) | |
6927 | || VEC_index (mem_range_s, available, 0)->start != memaddr) | |
6928 | { | |
6929 | enum target_xfer_status res; | |
6930 | ||
6931 | /* Don't read into the traceframe's available | |
6932 | memory. */ | |
6933 | if (!VEC_empty (mem_range_s, available)) | |
6934 | { | |
6935 | LONGEST oldlen = len; | |
6936 | ||
6937 | len = VEC_index (mem_range_s, available, 0)->start - memaddr; | |
6938 | gdb_assert (len <= oldlen); | |
6939 | } | |
6940 | ||
6941 | do_cleanups (old_chain); | |
6942 | ||
6943 | /* This goes through the topmost target again. */ | |
b55fbac4 | 6944 | res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr, |
8acf9577 YQ |
6945 | len, xfered_len); |
6946 | if (res == TARGET_XFER_OK) | |
6947 | return TARGET_XFER_OK; | |
6948 | else | |
6949 | { | |
6950 | /* No use trying further, we know some memory starting | |
6951 | at MEMADDR isn't available. */ | |
6952 | *xfered_len = len; | |
6953 | return TARGET_XFER_UNAVAILABLE; | |
6954 | } | |
6955 | } | |
6956 | ||
6957 | /* Don't try to read more than how much is available, in | |
6958 | case the target implements the deprecated QTro packet to | |
6959 | cater for older GDBs (the target's knowledge of read-only | |
6960 | sections may be outdated by now). */ | |
6961 | len = VEC_index (mem_range_s, available, 0)->length; | |
6962 | ||
6963 | do_cleanups (old_chain); | |
6964 | } | |
6965 | } | |
6966 | ||
9217e74e | 6967 | return remote_read_bytes_1 (memaddr, myaddr, len, xfered_len); |
c906108c | 6968 | } |
74531fed | 6969 | |
c906108c | 6970 | \f |
c906108c | 6971 | |
a76d924d DJ |
6972 | /* Sends a packet with content determined by the printf format string |
6973 | FORMAT and the remaining arguments, then gets the reply. Returns | |
6974 | whether the packet was a success, a failure, or unknown. */ | |
6975 | ||
2c0b251b | 6976 | static enum packet_result |
a76d924d DJ |
6977 | remote_send_printf (const char *format, ...) |
6978 | { | |
6979 | struct remote_state *rs = get_remote_state (); | |
6980 | int max_size = get_remote_packet_size (); | |
a76d924d | 6981 | va_list ap; |
a744cf53 | 6982 | |
a76d924d DJ |
6983 | va_start (ap, format); |
6984 | ||
6985 | rs->buf[0] = '\0'; | |
6986 | if (vsnprintf (rs->buf, max_size, format, ap) >= max_size) | |
9b20d036 | 6987 | internal_error (__FILE__, __LINE__, _("Too long remote packet.")); |
a76d924d DJ |
6988 | |
6989 | if (putpkt (rs->buf) < 0) | |
6990 | error (_("Communication problem with target.")); | |
6991 | ||
6992 | rs->buf[0] = '\0'; | |
6993 | getpkt (&rs->buf, &rs->buf_size, 0); | |
6994 | ||
6995 | return packet_check_result (rs->buf); | |
6996 | } | |
6997 | ||
6998 | static void | |
6999 | restore_remote_timeout (void *p) | |
7000 | { | |
7001 | int value = *(int *)p; | |
a744cf53 | 7002 | |
a76d924d DJ |
7003 | remote_timeout = value; |
7004 | } | |
7005 | ||
7006 | /* Flash writing can take quite some time. We'll set | |
7007 | effectively infinite timeout for flash operations. | |
7008 | In future, we'll need to decide on a better approach. */ | |
7009 | static const int remote_flash_timeout = 1000; | |
7010 | ||
7011 | static void | |
7012 | remote_flash_erase (struct target_ops *ops, | |
7013 | ULONGEST address, LONGEST length) | |
7014 | { | |
f5656ead | 7015 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
a76d924d DJ |
7016 | int saved_remote_timeout = remote_timeout; |
7017 | enum packet_result ret; | |
a76d924d DJ |
7018 | struct cleanup *back_to = make_cleanup (restore_remote_timeout, |
7019 | &saved_remote_timeout); | |
a744cf53 | 7020 | |
a76d924d DJ |
7021 | remote_timeout = remote_flash_timeout; |
7022 | ||
7023 | ret = remote_send_printf ("vFlashErase:%s,%s", | |
5af949e3 | 7024 | phex (address, addr_size), |
a76d924d DJ |
7025 | phex (length, 4)); |
7026 | switch (ret) | |
7027 | { | |
7028 | case PACKET_UNKNOWN: | |
7029 | error (_("Remote target does not support flash erase")); | |
7030 | case PACKET_ERROR: | |
7031 | error (_("Error erasing flash with vFlashErase packet")); | |
7032 | default: | |
7033 | break; | |
7034 | } | |
7035 | ||
7036 | do_cleanups (back_to); | |
7037 | } | |
7038 | ||
9b409511 YQ |
7039 | static enum target_xfer_status |
7040 | remote_flash_write (struct target_ops *ops, ULONGEST address, | |
7041 | ULONGEST length, ULONGEST *xfered_len, | |
7042 | const gdb_byte *data) | |
a76d924d DJ |
7043 | { |
7044 | int saved_remote_timeout = remote_timeout; | |
9b409511 | 7045 | enum target_xfer_status ret; |
a76d924d | 7046 | struct cleanup *back_to = make_cleanup (restore_remote_timeout, |
9b409511 | 7047 | &saved_remote_timeout); |
a76d924d DJ |
7048 | |
7049 | remote_timeout = remote_flash_timeout; | |
9b409511 YQ |
7050 | ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, |
7051 | xfered_len,'X', 0); | |
a76d924d DJ |
7052 | do_cleanups (back_to); |
7053 | ||
7054 | return ret; | |
7055 | } | |
7056 | ||
7057 | static void | |
7058 | remote_flash_done (struct target_ops *ops) | |
7059 | { | |
7060 | int saved_remote_timeout = remote_timeout; | |
7061 | int ret; | |
7062 | struct cleanup *back_to = make_cleanup (restore_remote_timeout, | |
7063 | &saved_remote_timeout); | |
7064 | ||
7065 | remote_timeout = remote_flash_timeout; | |
7066 | ret = remote_send_printf ("vFlashDone"); | |
7067 | do_cleanups (back_to); | |
7068 | ||
7069 | switch (ret) | |
7070 | { | |
7071 | case PACKET_UNKNOWN: | |
7072 | error (_("Remote target does not support vFlashDone")); | |
7073 | case PACKET_ERROR: | |
7074 | error (_("Error finishing flash operation")); | |
7075 | default: | |
7076 | break; | |
7077 | } | |
7078 | } | |
7079 | ||
c906108c | 7080 | static void |
fba45db2 | 7081 | remote_files_info (struct target_ops *ignore) |
c906108c SS |
7082 | { |
7083 | puts_filtered ("Debugging a target over a serial line.\n"); | |
7084 | } | |
7085 | \f | |
7086 | /* Stuff for dealing with the packets which are part of this protocol. | |
7087 | See comment at top of file for details. */ | |
7088 | ||
1927e618 PA |
7089 | /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR |
7090 | error to higher layers. Called when a serial error is detected. | |
7091 | The exception message is STRING, followed by a colon and a blank, | |
d6cb50a2 JK |
7092 | the system error message for errno at function entry and final dot |
7093 | for output compatibility with throw_perror_with_name. */ | |
1927e618 PA |
7094 | |
7095 | static void | |
7096 | unpush_and_perror (const char *string) | |
7097 | { | |
d6cb50a2 | 7098 | int saved_errno = errno; |
1927e618 PA |
7099 | |
7100 | remote_unpush_target (); | |
d6cb50a2 JK |
7101 | throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string, |
7102 | safe_strerror (saved_errno)); | |
1927e618 PA |
7103 | } |
7104 | ||
0876f84a | 7105 | /* Read a single character from the remote end. */ |
c906108c SS |
7106 | |
7107 | static int | |
fba45db2 | 7108 | readchar (int timeout) |
c906108c SS |
7109 | { |
7110 | int ch; | |
5d93a237 | 7111 | struct remote_state *rs = get_remote_state (); |
c906108c | 7112 | |
5d93a237 | 7113 | ch = serial_readchar (rs->remote_desc, timeout); |
c906108c | 7114 | |
2acceee2 | 7115 | if (ch >= 0) |
0876f84a | 7116 | return ch; |
2acceee2 JM |
7117 | |
7118 | switch ((enum serial_rc) ch) | |
c906108c SS |
7119 | { |
7120 | case SERIAL_EOF: | |
78a095c3 | 7121 | remote_unpush_target (); |
598d3636 | 7122 | throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed")); |
2acceee2 | 7123 | /* no return */ |
c906108c | 7124 | case SERIAL_ERROR: |
1927e618 PA |
7125 | unpush_and_perror (_("Remote communication error. " |
7126 | "Target disconnected.")); | |
2acceee2 | 7127 | /* no return */ |
c906108c | 7128 | case SERIAL_TIMEOUT: |
2acceee2 | 7129 | break; |
c906108c | 7130 | } |
2acceee2 | 7131 | return ch; |
c906108c SS |
7132 | } |
7133 | ||
c33e31fd PA |
7134 | /* Wrapper for serial_write that closes the target and throws if |
7135 | writing fails. */ | |
7136 | ||
7137 | static void | |
7138 | remote_serial_write (const char *str, int len) | |
7139 | { | |
5d93a237 TT |
7140 | struct remote_state *rs = get_remote_state (); |
7141 | ||
7142 | if (serial_write (rs->remote_desc, str, len)) | |
c33e31fd | 7143 | { |
1927e618 PA |
7144 | unpush_and_perror (_("Remote communication error. " |
7145 | "Target disconnected.")); | |
c33e31fd PA |
7146 | } |
7147 | } | |
7148 | ||
6d820c5c DJ |
7149 | /* Send the command in *BUF to the remote machine, and read the reply |
7150 | into *BUF. Report an error if we get an error reply. Resize | |
7151 | *BUF using xrealloc if necessary to hold the result, and update | |
7152 | *SIZEOF_BUF. */ | |
c906108c SS |
7153 | |
7154 | static void | |
6d820c5c DJ |
7155 | remote_send (char **buf, |
7156 | long *sizeof_buf) | |
c906108c | 7157 | { |
6d820c5c | 7158 | putpkt (*buf); |
c2d11a7d | 7159 | getpkt (buf, sizeof_buf, 0); |
c906108c | 7160 | |
6d820c5c DJ |
7161 | if ((*buf)[0] == 'E') |
7162 | error (_("Remote failure reply: %s"), *buf); | |
c906108c SS |
7163 | } |
7164 | ||
6e5abd65 PA |
7165 | /* Return a pointer to an xmalloc'ed string representing an escaped |
7166 | version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t, | |
7167 | etc. The caller is responsible for releasing the returned | |
7168 | memory. */ | |
7169 | ||
7170 | static char * | |
7171 | escape_buffer (const char *buf, int n) | |
7172 | { | |
7173 | struct cleanup *old_chain; | |
7174 | struct ui_file *stb; | |
7175 | char *str; | |
6e5abd65 PA |
7176 | |
7177 | stb = mem_fileopen (); | |
7178 | old_chain = make_cleanup_ui_file_delete (stb); | |
7179 | ||
6ef284bd | 7180 | fputstrn_unfiltered (buf, n, '\\', stb); |
759ef836 | 7181 | str = ui_file_xstrdup (stb, NULL); |
6e5abd65 PA |
7182 | do_cleanups (old_chain); |
7183 | return str; | |
7184 | } | |
7185 | ||
c906108c SS |
7186 | /* Display a null-terminated packet on stdout, for debugging, using C |
7187 | string notation. */ | |
7188 | ||
7189 | static void | |
baa336ce | 7190 | print_packet (const char *buf) |
c906108c SS |
7191 | { |
7192 | puts_filtered ("\""); | |
43e526b9 | 7193 | fputstr_filtered (buf, '"', gdb_stdout); |
c906108c SS |
7194 | puts_filtered ("\""); |
7195 | } | |
7196 | ||
7197 | int | |
baa336ce | 7198 | putpkt (const char *buf) |
c906108c SS |
7199 | { |
7200 | return putpkt_binary (buf, strlen (buf)); | |
7201 | } | |
7202 | ||
7203 | /* Send a packet to the remote machine, with error checking. The data | |
23860348 | 7204 | of the packet is in BUF. The string in BUF can be at most |
ea9c271d | 7205 | get_remote_packet_size () - 5 to account for the $, # and checksum, |
23860348 MS |
7206 | and for a possible /0 if we are debugging (remote_debug) and want |
7207 | to print the sent packet as a string. */ | |
c906108c SS |
7208 | |
7209 | static int | |
baa336ce | 7210 | putpkt_binary (const char *buf, int cnt) |
c906108c | 7211 | { |
2d717e4f | 7212 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
7213 | int i; |
7214 | unsigned char csum = 0; | |
11cf8741 | 7215 | char *buf2 = alloca (cnt + 6); |
085dd6e6 | 7216 | |
c906108c SS |
7217 | int ch; |
7218 | int tcount = 0; | |
7219 | char *p; | |
dd61ec5c | 7220 | char *message; |
c906108c | 7221 | |
e24a49d8 PA |
7222 | /* Catch cases like trying to read memory or listing threads while |
7223 | we're waiting for a stop reply. The remote server wouldn't be | |
7224 | ready to handle this request, so we'd hang and timeout. We don't | |
7225 | have to worry about this in synchronous mode, because in that | |
7226 | case it's not possible to issue a command while the target is | |
74531fed PA |
7227 | running. This is not a problem in non-stop mode, because in that |
7228 | case, the stub is always ready to process serial input. */ | |
7229 | if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply) | |
9597b22a DE |
7230 | { |
7231 | error (_("Cannot execute this command while the target is running.\n" | |
7232 | "Use the \"interrupt\" command to stop the target\n" | |
7233 | "and then try again.")); | |
7234 | } | |
e24a49d8 | 7235 | |
2d717e4f DJ |
7236 | /* We're sending out a new packet. Make sure we don't look at a |
7237 | stale cached response. */ | |
7238 | rs->cached_wait_status = 0; | |
7239 | ||
c906108c SS |
7240 | /* Copy the packet into buffer BUF2, encapsulating it |
7241 | and giving it a checksum. */ | |
7242 | ||
c906108c SS |
7243 | p = buf2; |
7244 | *p++ = '$'; | |
7245 | ||
7246 | for (i = 0; i < cnt; i++) | |
7247 | { | |
7248 | csum += buf[i]; | |
7249 | *p++ = buf[i]; | |
7250 | } | |
7251 | *p++ = '#'; | |
7252 | *p++ = tohex ((csum >> 4) & 0xf); | |
7253 | *p++ = tohex (csum & 0xf); | |
7254 | ||
7255 | /* Send it over and over until we get a positive ack. */ | |
7256 | ||
7257 | while (1) | |
7258 | { | |
7259 | int started_error_output = 0; | |
7260 | ||
7261 | if (remote_debug) | |
7262 | { | |
6e5abd65 PA |
7263 | struct cleanup *old_chain; |
7264 | char *str; | |
7265 | ||
c906108c | 7266 | *p = '\0'; |
6e5abd65 PA |
7267 | str = escape_buffer (buf2, p - buf2); |
7268 | old_chain = make_cleanup (xfree, str); | |
7269 | fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str); | |
0f71a2f6 | 7270 | gdb_flush (gdb_stdlog); |
6e5abd65 | 7271 | do_cleanups (old_chain); |
c906108c | 7272 | } |
c33e31fd | 7273 | remote_serial_write (buf2, p - buf2); |
c906108c | 7274 | |
a6f3e723 SL |
7275 | /* If this is a no acks version of the remote protocol, send the |
7276 | packet and move on. */ | |
7277 | if (rs->noack_mode) | |
7278 | break; | |
7279 | ||
74531fed PA |
7280 | /* Read until either a timeout occurs (-2) or '+' is read. |
7281 | Handle any notification that arrives in the mean time. */ | |
c906108c SS |
7282 | while (1) |
7283 | { | |
7284 | ch = readchar (remote_timeout); | |
7285 | ||
c5aa993b | 7286 | if (remote_debug) |
c906108c SS |
7287 | { |
7288 | switch (ch) | |
7289 | { | |
7290 | case '+': | |
1216fa2c | 7291 | case '-': |
c906108c SS |
7292 | case SERIAL_TIMEOUT: |
7293 | case '$': | |
74531fed | 7294 | case '%': |
c906108c SS |
7295 | if (started_error_output) |
7296 | { | |
7297 | putchar_unfiltered ('\n'); | |
7298 | started_error_output = 0; | |
7299 | } | |
7300 | } | |
7301 | } | |
7302 | ||
7303 | switch (ch) | |
7304 | { | |
7305 | case '+': | |
7306 | if (remote_debug) | |
0f71a2f6 | 7307 | fprintf_unfiltered (gdb_stdlog, "Ack\n"); |
c906108c | 7308 | return 1; |
1216fa2c AC |
7309 | case '-': |
7310 | if (remote_debug) | |
7311 | fprintf_unfiltered (gdb_stdlog, "Nak\n"); | |
a17d146e | 7312 | /* FALLTHROUGH */ |
c906108c | 7313 | case SERIAL_TIMEOUT: |
c5aa993b | 7314 | tcount++; |
c906108c SS |
7315 | if (tcount > 3) |
7316 | return 0; | |
23860348 | 7317 | break; /* Retransmit buffer. */ |
c906108c SS |
7318 | case '$': |
7319 | { | |
40e3f985 | 7320 | if (remote_debug) |
2bc416ba | 7321 | fprintf_unfiltered (gdb_stdlog, |
23860348 | 7322 | "Packet instead of Ack, ignoring it\n"); |
d6f7abdf AC |
7323 | /* It's probably an old response sent because an ACK |
7324 | was lost. Gobble up the packet and ack it so it | |
7325 | doesn't get retransmitted when we resend this | |
7326 | packet. */ | |
6d820c5c | 7327 | skip_frame (); |
c33e31fd | 7328 | remote_serial_write ("+", 1); |
23860348 | 7329 | continue; /* Now, go look for +. */ |
c906108c | 7330 | } |
74531fed PA |
7331 | |
7332 | case '%': | |
7333 | { | |
7334 | int val; | |
7335 | ||
7336 | /* If we got a notification, handle it, and go back to looking | |
7337 | for an ack. */ | |
7338 | /* We've found the start of a notification. Now | |
7339 | collect the data. */ | |
7340 | val = read_frame (&rs->buf, &rs->buf_size); | |
7341 | if (val >= 0) | |
7342 | { | |
7343 | if (remote_debug) | |
7344 | { | |
6e5abd65 PA |
7345 | struct cleanup *old_chain; |
7346 | char *str; | |
7347 | ||
7348 | str = escape_buffer (rs->buf, val); | |
7349 | old_chain = make_cleanup (xfree, str); | |
7350 | fprintf_unfiltered (gdb_stdlog, | |
7351 | " Notification received: %s\n", | |
7352 | str); | |
7353 | do_cleanups (old_chain); | |
74531fed | 7354 | } |
5965e028 | 7355 | handle_notification (rs->notif_state, rs->buf); |
74531fed PA |
7356 | /* We're in sync now, rewait for the ack. */ |
7357 | tcount = 0; | |
7358 | } | |
7359 | else | |
7360 | { | |
7361 | if (remote_debug) | |
7362 | { | |
7363 | if (!started_error_output) | |
7364 | { | |
7365 | started_error_output = 1; | |
7366 | fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: "); | |
7367 | } | |
7368 | fputc_unfiltered (ch & 0177, gdb_stdlog); | |
7369 | fprintf_unfiltered (gdb_stdlog, "%s", rs->buf); | |
7370 | } | |
7371 | } | |
7372 | continue; | |
7373 | } | |
7374 | /* fall-through */ | |
c906108c SS |
7375 | default: |
7376 | if (remote_debug) | |
7377 | { | |
7378 | if (!started_error_output) | |
7379 | { | |
7380 | started_error_output = 1; | |
0f71a2f6 | 7381 | fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: "); |
c906108c | 7382 | } |
0f71a2f6 | 7383 | fputc_unfiltered (ch & 0177, gdb_stdlog); |
c906108c SS |
7384 | } |
7385 | continue; | |
7386 | } | |
23860348 | 7387 | break; /* Here to retransmit. */ |
c906108c SS |
7388 | } |
7389 | ||
7390 | #if 0 | |
7391 | /* This is wrong. If doing a long backtrace, the user should be | |
c5aa993b JM |
7392 | able to get out next time we call QUIT, without anything as |
7393 | violent as interrupt_query. If we want to provide a way out of | |
7394 | here without getting to the next QUIT, it should be based on | |
7395 | hitting ^C twice as in remote_wait. */ | |
c906108c SS |
7396 | if (quit_flag) |
7397 | { | |
7398 | quit_flag = 0; | |
7399 | interrupt_query (); | |
7400 | } | |
7401 | #endif | |
7402 | } | |
a6f3e723 | 7403 | return 0; |
c906108c SS |
7404 | } |
7405 | ||
6d820c5c DJ |
7406 | /* Come here after finding the start of a frame when we expected an |
7407 | ack. Do our best to discard the rest of this packet. */ | |
7408 | ||
7409 | static void | |
7410 | skip_frame (void) | |
7411 | { | |
7412 | int c; | |
7413 | ||
7414 | while (1) | |
7415 | { | |
7416 | c = readchar (remote_timeout); | |
7417 | switch (c) | |
7418 | { | |
7419 | case SERIAL_TIMEOUT: | |
7420 | /* Nothing we can do. */ | |
7421 | return; | |
7422 | case '#': | |
7423 | /* Discard the two bytes of checksum and stop. */ | |
7424 | c = readchar (remote_timeout); | |
7425 | if (c >= 0) | |
7426 | c = readchar (remote_timeout); | |
7427 | ||
7428 | return; | |
7429 | case '*': /* Run length encoding. */ | |
7430 | /* Discard the repeat count. */ | |
7431 | c = readchar (remote_timeout); | |
7432 | if (c < 0) | |
7433 | return; | |
7434 | break; | |
7435 | default: | |
7436 | /* A regular character. */ | |
7437 | break; | |
7438 | } | |
7439 | } | |
7440 | } | |
7441 | ||
c906108c | 7442 | /* Come here after finding the start of the frame. Collect the rest |
6d820c5c DJ |
7443 | into *BUF, verifying the checksum, length, and handling run-length |
7444 | compression. NUL terminate the buffer. If there is not enough room, | |
7445 | expand *BUF using xrealloc. | |
c906108c | 7446 | |
c2d11a7d JM |
7447 | Returns -1 on error, number of characters in buffer (ignoring the |
7448 | trailing NULL) on success. (could be extended to return one of the | |
23860348 | 7449 | SERIAL status indications). */ |
c2d11a7d JM |
7450 | |
7451 | static long | |
6d820c5c DJ |
7452 | read_frame (char **buf_p, |
7453 | long *sizeof_buf) | |
c906108c SS |
7454 | { |
7455 | unsigned char csum; | |
c2d11a7d | 7456 | long bc; |
c906108c | 7457 | int c; |
6d820c5c | 7458 | char *buf = *buf_p; |
a6f3e723 | 7459 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
7460 | |
7461 | csum = 0; | |
c2d11a7d | 7462 | bc = 0; |
c906108c SS |
7463 | |
7464 | while (1) | |
7465 | { | |
7466 | c = readchar (remote_timeout); | |
c906108c SS |
7467 | switch (c) |
7468 | { | |
7469 | case SERIAL_TIMEOUT: | |
7470 | if (remote_debug) | |
0f71a2f6 | 7471 | fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog); |
c2d11a7d | 7472 | return -1; |
c906108c SS |
7473 | case '$': |
7474 | if (remote_debug) | |
0f71a2f6 JM |
7475 | fputs_filtered ("Saw new packet start in middle of old one\n", |
7476 | gdb_stdlog); | |
23860348 | 7477 | return -1; /* Start a new packet, count retries. */ |
c906108c SS |
7478 | case '#': |
7479 | { | |
7480 | unsigned char pktcsum; | |
e1b09194 AC |
7481 | int check_0 = 0; |
7482 | int check_1 = 0; | |
c906108c | 7483 | |
c2d11a7d | 7484 | buf[bc] = '\0'; |
c906108c | 7485 | |
e1b09194 AC |
7486 | check_0 = readchar (remote_timeout); |
7487 | if (check_0 >= 0) | |
7488 | check_1 = readchar (remote_timeout); | |
802188a7 | 7489 | |
e1b09194 AC |
7490 | if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT) |
7491 | { | |
7492 | if (remote_debug) | |
2bc416ba | 7493 | fputs_filtered ("Timeout in checksum, retrying\n", |
23860348 | 7494 | gdb_stdlog); |
e1b09194 AC |
7495 | return -1; |
7496 | } | |
7497 | else if (check_0 < 0 || check_1 < 0) | |
40e3f985 FN |
7498 | { |
7499 | if (remote_debug) | |
2bc416ba | 7500 | fputs_filtered ("Communication error in checksum\n", |
23860348 | 7501 | gdb_stdlog); |
40e3f985 FN |
7502 | return -1; |
7503 | } | |
c906108c | 7504 | |
a6f3e723 SL |
7505 | /* Don't recompute the checksum; with no ack packets we |
7506 | don't have any way to indicate a packet retransmission | |
7507 | is necessary. */ | |
7508 | if (rs->noack_mode) | |
7509 | return bc; | |
7510 | ||
e1b09194 | 7511 | pktcsum = (fromhex (check_0) << 4) | fromhex (check_1); |
c906108c | 7512 | if (csum == pktcsum) |
c2d11a7d | 7513 | return bc; |
c906108c | 7514 | |
c5aa993b | 7515 | if (remote_debug) |
c906108c | 7516 | { |
6e5abd65 PA |
7517 | struct cleanup *old_chain; |
7518 | char *str; | |
7519 | ||
7520 | str = escape_buffer (buf, bc); | |
7521 | old_chain = make_cleanup (xfree, str); | |
7522 | fprintf_unfiltered (gdb_stdlog, | |
3e43a32a MS |
7523 | "Bad checksum, sentsum=0x%x, " |
7524 | "csum=0x%x, buf=%s\n", | |
6e5abd65 PA |
7525 | pktcsum, csum, str); |
7526 | do_cleanups (old_chain); | |
c906108c | 7527 | } |
c2d11a7d | 7528 | /* Number of characters in buffer ignoring trailing |
23860348 | 7529 | NULL. */ |
c2d11a7d | 7530 | return -1; |
c906108c | 7531 | } |
23860348 | 7532 | case '*': /* Run length encoding. */ |
c2c6d25f JM |
7533 | { |
7534 | int repeat; | |
c906108c | 7535 | |
a744cf53 | 7536 | csum += c; |
b4501125 AC |
7537 | c = readchar (remote_timeout); |
7538 | csum += c; | |
23860348 | 7539 | repeat = c - ' ' + 3; /* Compute repeat count. */ |
c906108c | 7540 | |
23860348 | 7541 | /* The character before ``*'' is repeated. */ |
c2d11a7d | 7542 | |
6d820c5c | 7543 | if (repeat > 0 && repeat <= 255 && bc > 0) |
c2c6d25f | 7544 | { |
6d820c5c DJ |
7545 | if (bc + repeat - 1 >= *sizeof_buf - 1) |
7546 | { | |
7547 | /* Make some more room in the buffer. */ | |
7548 | *sizeof_buf += repeat; | |
7549 | *buf_p = xrealloc (*buf_p, *sizeof_buf); | |
7550 | buf = *buf_p; | |
7551 | } | |
7552 | ||
c2d11a7d JM |
7553 | memset (&buf[bc], buf[bc - 1], repeat); |
7554 | bc += repeat; | |
c2c6d25f JM |
7555 | continue; |
7556 | } | |
7557 | ||
c2d11a7d | 7558 | buf[bc] = '\0'; |
6d820c5c | 7559 | printf_filtered (_("Invalid run length encoding: %s\n"), buf); |
c2d11a7d | 7560 | return -1; |
c2c6d25f | 7561 | } |
c906108c | 7562 | default: |
6d820c5c | 7563 | if (bc >= *sizeof_buf - 1) |
c906108c | 7564 | { |
6d820c5c DJ |
7565 | /* Make some more room in the buffer. */ |
7566 | *sizeof_buf *= 2; | |
7567 | *buf_p = xrealloc (*buf_p, *sizeof_buf); | |
7568 | buf = *buf_p; | |
c906108c SS |
7569 | } |
7570 | ||
6d820c5c DJ |
7571 | buf[bc++] = c; |
7572 | csum += c; | |
7573 | continue; | |
c906108c SS |
7574 | } |
7575 | } | |
7576 | } | |
7577 | ||
7578 | /* Read a packet from the remote machine, with error checking, and | |
6d820c5c DJ |
7579 | store it in *BUF. Resize *BUF using xrealloc if necessary to hold |
7580 | the result, and update *SIZEOF_BUF. If FOREVER, wait forever | |
7581 | rather than timing out; this is used (in synchronous mode) to wait | |
7582 | for a target that is is executing user code to stop. */ | |
d9fcf2fb JM |
7583 | /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we |
7584 | don't have to change all the calls to getpkt to deal with the | |
7585 | return value, because at the moment I don't know what the right | |
23860348 | 7586 | thing to do it for those. */ |
c906108c | 7587 | void |
6d820c5c DJ |
7588 | getpkt (char **buf, |
7589 | long *sizeof_buf, | |
c2d11a7d | 7590 | int forever) |
d9fcf2fb JM |
7591 | { |
7592 | int timed_out; | |
7593 | ||
7594 | timed_out = getpkt_sane (buf, sizeof_buf, forever); | |
7595 | } | |
7596 | ||
7597 | ||
7598 | /* Read a packet from the remote machine, with error checking, and | |
6d820c5c DJ |
7599 | store it in *BUF. Resize *BUF using xrealloc if necessary to hold |
7600 | the result, and update *SIZEOF_BUF. If FOREVER, wait forever | |
7601 | rather than timing out; this is used (in synchronous mode) to wait | |
7602 | for a target that is is executing user code to stop. If FOREVER == | |
7603 | 0, this function is allowed to time out gracefully and return an | |
74531fed PA |
7604 | indication of this to the caller. Otherwise return the number of |
7605 | bytes read. If EXPECTING_NOTIF, consider receiving a notification | |
fee9eda9 YQ |
7606 | enough reason to return to the caller. *IS_NOTIF is an output |
7607 | boolean that indicates whether *BUF holds a notification or not | |
7608 | (a regular packet). */ | |
74531fed | 7609 | |
3172dc30 | 7610 | static int |
74531fed | 7611 | getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever, |
fee9eda9 | 7612 | int expecting_notif, int *is_notif) |
c906108c | 7613 | { |
2d717e4f | 7614 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
7615 | int c; |
7616 | int tries; | |
7617 | int timeout; | |
df4b58fe | 7618 | int val = -1; |
c906108c | 7619 | |
2d717e4f DJ |
7620 | /* We're reading a new response. Make sure we don't look at a |
7621 | previously cached response. */ | |
7622 | rs->cached_wait_status = 0; | |
7623 | ||
6d820c5c | 7624 | strcpy (*buf, "timeout"); |
c906108c SS |
7625 | |
7626 | if (forever) | |
74531fed PA |
7627 | timeout = watchdog > 0 ? watchdog : -1; |
7628 | else if (expecting_notif) | |
7629 | timeout = 0; /* There should already be a char in the buffer. If | |
7630 | not, bail out. */ | |
c906108c SS |
7631 | else |
7632 | timeout = remote_timeout; | |
7633 | ||
7634 | #define MAX_TRIES 3 | |
7635 | ||
74531fed PA |
7636 | /* Process any number of notifications, and then return when |
7637 | we get a packet. */ | |
7638 | for (;;) | |
c906108c | 7639 | { |
d9c43928 | 7640 | /* If we get a timeout or bad checksum, retry up to MAX_TRIES |
74531fed PA |
7641 | times. */ |
7642 | for (tries = 1; tries <= MAX_TRIES; tries++) | |
c906108c | 7643 | { |
74531fed PA |
7644 | /* This can loop forever if the remote side sends us |
7645 | characters continuously, but if it pauses, we'll get | |
7646 | SERIAL_TIMEOUT from readchar because of timeout. Then | |
7647 | we'll count that as a retry. | |
7648 | ||
7649 | Note that even when forever is set, we will only wait | |
7650 | forever prior to the start of a packet. After that, we | |
7651 | expect characters to arrive at a brisk pace. They should | |
7652 | show up within remote_timeout intervals. */ | |
7653 | do | |
7654 | c = readchar (timeout); | |
7655 | while (c != SERIAL_TIMEOUT && c != '$' && c != '%'); | |
c906108c SS |
7656 | |
7657 | if (c == SERIAL_TIMEOUT) | |
7658 | { | |
74531fed PA |
7659 | if (expecting_notif) |
7660 | return -1; /* Don't complain, it's normal to not get | |
7661 | anything in this case. */ | |
7662 | ||
23860348 | 7663 | if (forever) /* Watchdog went off? Kill the target. */ |
c906108c | 7664 | { |
2acceee2 | 7665 | QUIT; |
78a095c3 | 7666 | remote_unpush_target (); |
598d3636 JK |
7667 | throw_error (TARGET_CLOSE_ERROR, |
7668 | _("Watchdog timeout has expired. " | |
7669 | "Target detached.")); | |
c906108c | 7670 | } |
c906108c | 7671 | if (remote_debug) |
0f71a2f6 | 7672 | fputs_filtered ("Timed out.\n", gdb_stdlog); |
c906108c | 7673 | } |
74531fed PA |
7674 | else |
7675 | { | |
7676 | /* We've found the start of a packet or notification. | |
7677 | Now collect the data. */ | |
7678 | val = read_frame (buf, sizeof_buf); | |
7679 | if (val >= 0) | |
7680 | break; | |
7681 | } | |
7682 | ||
c33e31fd | 7683 | remote_serial_write ("-", 1); |
c906108c | 7684 | } |
c906108c | 7685 | |
74531fed PA |
7686 | if (tries > MAX_TRIES) |
7687 | { | |
7688 | /* We have tried hard enough, and just can't receive the | |
7689 | packet/notification. Give up. */ | |
7690 | printf_unfiltered (_("Ignoring packet error, continuing...\n")); | |
c906108c | 7691 | |
74531fed PA |
7692 | /* Skip the ack char if we're in no-ack mode. */ |
7693 | if (!rs->noack_mode) | |
c33e31fd | 7694 | remote_serial_write ("+", 1); |
74531fed PA |
7695 | return -1; |
7696 | } | |
c906108c | 7697 | |
74531fed PA |
7698 | /* If we got an ordinary packet, return that to our caller. */ |
7699 | if (c == '$') | |
c906108c SS |
7700 | { |
7701 | if (remote_debug) | |
43e526b9 | 7702 | { |
6e5abd65 PA |
7703 | struct cleanup *old_chain; |
7704 | char *str; | |
7705 | ||
7706 | str = escape_buffer (*buf, val); | |
7707 | old_chain = make_cleanup (xfree, str); | |
7708 | fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str); | |
7709 | do_cleanups (old_chain); | |
43e526b9 | 7710 | } |
a6f3e723 SL |
7711 | |
7712 | /* Skip the ack char if we're in no-ack mode. */ | |
7713 | if (!rs->noack_mode) | |
c33e31fd | 7714 | remote_serial_write ("+", 1); |
fee9eda9 YQ |
7715 | if (is_notif != NULL) |
7716 | *is_notif = 0; | |
0876f84a | 7717 | return val; |
c906108c SS |
7718 | } |
7719 | ||
74531fed PA |
7720 | /* If we got a notification, handle it, and go back to looking |
7721 | for a packet. */ | |
7722 | else | |
7723 | { | |
7724 | gdb_assert (c == '%'); | |
7725 | ||
7726 | if (remote_debug) | |
7727 | { | |
6e5abd65 PA |
7728 | struct cleanup *old_chain; |
7729 | char *str; | |
7730 | ||
7731 | str = escape_buffer (*buf, val); | |
7732 | old_chain = make_cleanup (xfree, str); | |
7733 | fprintf_unfiltered (gdb_stdlog, | |
7734 | " Notification received: %s\n", | |
7735 | str); | |
7736 | do_cleanups (old_chain); | |
74531fed | 7737 | } |
fee9eda9 YQ |
7738 | if (is_notif != NULL) |
7739 | *is_notif = 1; | |
c906108c | 7740 | |
5965e028 | 7741 | handle_notification (rs->notif_state, *buf); |
c906108c | 7742 | |
74531fed | 7743 | /* Notifications require no acknowledgement. */ |
a6f3e723 | 7744 | |
74531fed | 7745 | if (expecting_notif) |
fee9eda9 | 7746 | return val; |
74531fed PA |
7747 | } |
7748 | } | |
7749 | } | |
7750 | ||
7751 | static int | |
7752 | getpkt_sane (char **buf, long *sizeof_buf, int forever) | |
7753 | { | |
fee9eda9 | 7754 | return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL); |
74531fed PA |
7755 | } |
7756 | ||
7757 | static int | |
fee9eda9 YQ |
7758 | getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever, |
7759 | int *is_notif) | |
74531fed | 7760 | { |
fee9eda9 YQ |
7761 | return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1, |
7762 | is_notif); | |
c906108c | 7763 | } |
74531fed | 7764 | |
c906108c SS |
7765 | \f |
7766 | static void | |
7d85a9c0 | 7767 | remote_kill (struct target_ops *ops) |
43ff13b4 | 7768 | { |
c90a6fb7 | 7769 | volatile struct gdb_exception ex; |
0fdf84ca PA |
7770 | |
7771 | /* Catch errors so the user can quit from gdb even when we | |
23860348 | 7772 | aren't on speaking terms with the remote system. */ |
0fdf84ca PA |
7773 | TRY_CATCH (ex, RETURN_MASK_ERROR) |
7774 | { | |
7775 | putpkt ("k"); | |
7776 | } | |
7777 | if (ex.reason < 0) | |
7778 | { | |
7779 | if (ex.error == TARGET_CLOSE_ERROR) | |
7780 | { | |
7781 | /* If we got an (EOF) error that caused the target | |
7782 | to go away, then we're done, that's what we wanted. | |
7783 | "k" is susceptible to cause a premature EOF, given | |
7784 | that the remote server isn't actually required to | |
7785 | reply to "k", and it can happen that it doesn't | |
7786 | even get to reply ACK to the "k". */ | |
7787 | return; | |
7788 | } | |
7789 | ||
7790 | /* Otherwise, something went wrong. We didn't actually kill | |
7791 | the target. Just propagate the exception, and let the | |
7792 | user or higher layers decide what to do. */ | |
7793 | throw_exception (ex); | |
7794 | } | |
43ff13b4 | 7795 | |
0fdf84ca PA |
7796 | /* We've killed the remote end, we get to mourn it. Since this is |
7797 | target remote, single-process, mourning the inferior also | |
7798 | unpushes remote_ops. */ | |
43ff13b4 JM |
7799 | target_mourn_inferior (); |
7800 | } | |
7801 | ||
82f73884 PA |
7802 | static int |
7803 | remote_vkill (int pid, struct remote_state *rs) | |
7804 | { | |
4082afcc | 7805 | if (packet_support (PACKET_vKill) == PACKET_DISABLE) |
82f73884 PA |
7806 | return -1; |
7807 | ||
7808 | /* Tell the remote target to detach. */ | |
bba74b36 | 7809 | xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid); |
82f73884 PA |
7810 | putpkt (rs->buf); |
7811 | getpkt (&rs->buf, &rs->buf_size, 0); | |
7812 | ||
4082afcc PA |
7813 | switch (packet_ok (rs->buf, |
7814 | &remote_protocol_packets[PACKET_vKill])) | |
7815 | { | |
7816 | case PACKET_OK: | |
7817 | return 0; | |
7818 | case PACKET_ERROR: | |
7819 | return 1; | |
7820 | case PACKET_UNKNOWN: | |
7821 | return -1; | |
7822 | default: | |
7823 | internal_error (__FILE__, __LINE__, _("Bad result from packet_ok")); | |
7824 | } | |
82f73884 PA |
7825 | } |
7826 | ||
7827 | static void | |
7d85a9c0 | 7828 | extended_remote_kill (struct target_ops *ops) |
82f73884 PA |
7829 | { |
7830 | int res; | |
7831 | int pid = ptid_get_pid (inferior_ptid); | |
7832 | struct remote_state *rs = get_remote_state (); | |
7833 | ||
7834 | res = remote_vkill (pid, rs); | |
901f9912 | 7835 | if (res == -1 && !(rs->extended && remote_multi_process_p (rs))) |
82f73884 PA |
7836 | { |
7837 | /* Don't try 'k' on a multi-process aware stub -- it has no way | |
7838 | to specify the pid. */ | |
7839 | ||
7840 | putpkt ("k"); | |
7841 | #if 0 | |
7842 | getpkt (&rs->buf, &rs->buf_size, 0); | |
7843 | if (rs->buf[0] != 'O' || rs->buf[0] != 'K') | |
7844 | res = 1; | |
7845 | #else | |
7846 | /* Don't wait for it to die. I'm not really sure it matters whether | |
7847 | we do or not. For the existing stubs, kill is a noop. */ | |
7848 | res = 0; | |
7849 | #endif | |
7850 | } | |
7851 | ||
7852 | if (res != 0) | |
7853 | error (_("Can't kill process")); | |
7854 | ||
82f73884 PA |
7855 | target_mourn_inferior (); |
7856 | } | |
7857 | ||
c906108c | 7858 | static void |
136d6dae | 7859 | remote_mourn (struct target_ops *ops) |
c906108c | 7860 | { |
136d6dae | 7861 | remote_mourn_1 (ops); |
c906108c SS |
7862 | } |
7863 | ||
c906108c SS |
7864 | /* Worker function for remote_mourn. */ |
7865 | static void | |
fba45db2 | 7866 | remote_mourn_1 (struct target_ops *target) |
c906108c SS |
7867 | { |
7868 | unpush_target (target); | |
ce5ce7ed | 7869 | |
8a2492ee PA |
7870 | /* remote_close takes care of doing most of the clean up. */ |
7871 | generic_mourn_inferior (); | |
c906108c SS |
7872 | } |
7873 | ||
2d717e4f DJ |
7874 | static void |
7875 | extended_remote_mourn_1 (struct target_ops *target) | |
7876 | { | |
7877 | struct remote_state *rs = get_remote_state (); | |
c906108c | 7878 | |
e24a49d8 PA |
7879 | /* In case we got here due to an error, but we're going to stay |
7880 | connected. */ | |
7881 | rs->waiting_for_stop_reply = 0; | |
7882 | ||
dc1981d7 PA |
7883 | /* If the current general thread belonged to the process we just |
7884 | detached from or has exited, the remote side current general | |
7885 | thread becomes undefined. Considering a case like this: | |
7886 | ||
7887 | - We just got here due to a detach. | |
7888 | - The process that we're detaching from happens to immediately | |
7889 | report a global breakpoint being hit in non-stop mode, in the | |
7890 | same thread we had selected before. | |
7891 | - GDB attaches to this process again. | |
7892 | - This event happens to be the next event we handle. | |
7893 | ||
7894 | GDB would consider that the current general thread didn't need to | |
7895 | be set on the stub side (with Hg), since for all it knew, | |
7896 | GENERAL_THREAD hadn't changed. | |
7897 | ||
7898 | Notice that although in all-stop mode, the remote server always | |
7899 | sets the current thread to the thread reporting the stop event, | |
7900 | that doesn't happen in non-stop mode; in non-stop, the stub *must | |
7901 | not* change the current thread when reporting a breakpoint hit, | |
7902 | due to the decoupling of event reporting and event handling. | |
7903 | ||
7904 | To keep things simple, we always invalidate our notion of the | |
7905 | current thread. */ | |
47f8a51d | 7906 | record_currthread (rs, minus_one_ptid); |
dc1981d7 | 7907 | |
2d717e4f DJ |
7908 | /* Unlike "target remote", we do not want to unpush the target; then |
7909 | the next time the user says "run", we won't be connected. */ | |
7910 | ||
48aa3c27 PA |
7911 | /* Call common code to mark the inferior as not running. */ |
7912 | generic_mourn_inferior (); | |
7913 | ||
d729566a | 7914 | if (!have_inferiors ()) |
2d717e4f | 7915 | { |
82f73884 PA |
7916 | if (!remote_multi_process_p (rs)) |
7917 | { | |
7918 | /* Check whether the target is running now - some remote stubs | |
7919 | automatically restart after kill. */ | |
7920 | putpkt ("?"); | |
7921 | getpkt (&rs->buf, &rs->buf_size, 0); | |
7922 | ||
7923 | if (rs->buf[0] == 'S' || rs->buf[0] == 'T') | |
7924 | { | |
3e43a32a MS |
7925 | /* Assume that the target has been restarted. Set |
7926 | inferior_ptid so that bits of core GDB realizes | |
7927 | there's something here, e.g., so that the user can | |
7928 | say "kill" again. */ | |
82f73884 PA |
7929 | inferior_ptid = magic_null_ptid; |
7930 | } | |
82f73884 | 7931 | } |
2d717e4f DJ |
7932 | } |
7933 | } | |
c906108c SS |
7934 | |
7935 | static void | |
136d6dae | 7936 | extended_remote_mourn (struct target_ops *ops) |
c906108c | 7937 | { |
136d6dae | 7938 | extended_remote_mourn_1 (ops); |
2d717e4f | 7939 | } |
c906108c | 7940 | |
03583c20 | 7941 | static int |
2bfc0540 | 7942 | extended_remote_supports_disable_randomization (struct target_ops *self) |
03583c20 | 7943 | { |
4082afcc | 7944 | return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE; |
03583c20 UW |
7945 | } |
7946 | ||
7947 | static void | |
7948 | extended_remote_disable_randomization (int val) | |
7949 | { | |
7950 | struct remote_state *rs = get_remote_state (); | |
7951 | char *reply; | |
7952 | ||
bba74b36 YQ |
7953 | xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x", |
7954 | val); | |
03583c20 UW |
7955 | putpkt (rs->buf); |
7956 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
7957 | if (*reply == '\0') | |
7958 | error (_("Target does not support QDisableRandomization.")); | |
7959 | if (strcmp (reply, "OK") != 0) | |
7960 | error (_("Bogus QDisableRandomization reply from target: %s"), reply); | |
7961 | } | |
7962 | ||
2d717e4f DJ |
7963 | static int |
7964 | extended_remote_run (char *args) | |
7965 | { | |
7966 | struct remote_state *rs = get_remote_state (); | |
2d717e4f | 7967 | int len; |
c906108c | 7968 | |
2d717e4f DJ |
7969 | /* If the user has disabled vRun support, or we have detected that |
7970 | support is not available, do not try it. */ | |
4082afcc | 7971 | if (packet_support (PACKET_vRun) == PACKET_DISABLE) |
2d717e4f | 7972 | return -1; |
424163ea | 7973 | |
2d717e4f DJ |
7974 | strcpy (rs->buf, "vRun;"); |
7975 | len = strlen (rs->buf); | |
c906108c | 7976 | |
2d717e4f DJ |
7977 | if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ()) |
7978 | error (_("Remote file name too long for run packet")); | |
9f1b45b0 TT |
7979 | len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, |
7980 | strlen (remote_exec_file)); | |
2d717e4f | 7981 | |
d1a41061 | 7982 | gdb_assert (args != NULL); |
2d717e4f DJ |
7983 | if (*args) |
7984 | { | |
7985 | struct cleanup *back_to; | |
7986 | int i; | |
7987 | char **argv; | |
7988 | ||
d1a41061 | 7989 | argv = gdb_buildargv (args); |
6e366df1 | 7990 | back_to = make_cleanup_freeargv (argv); |
2d717e4f DJ |
7991 | for (i = 0; argv[i] != NULL; i++) |
7992 | { | |
7993 | if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ()) | |
7994 | error (_("Argument list too long for run packet")); | |
7995 | rs->buf[len++] = ';'; | |
9f1b45b0 TT |
7996 | len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, |
7997 | strlen (argv[i])); | |
2d717e4f DJ |
7998 | } |
7999 | do_cleanups (back_to); | |
8000 | } | |
8001 | ||
8002 | rs->buf[len++] = '\0'; | |
8003 | ||
8004 | putpkt (rs->buf); | |
8005 | getpkt (&rs->buf, &rs->buf_size, 0); | |
8006 | ||
4082afcc | 8007 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun])) |
2d717e4f | 8008 | { |
4082afcc | 8009 | case PACKET_OK: |
3405876a | 8010 | /* We have a wait response. All is well. */ |
2d717e4f | 8011 | return 0; |
4082afcc PA |
8012 | case PACKET_UNKNOWN: |
8013 | return -1; | |
8014 | case PACKET_ERROR: | |
2d717e4f DJ |
8015 | if (remote_exec_file[0] == '\0') |
8016 | error (_("Running the default executable on the remote target failed; " | |
8017 | "try \"set remote exec-file\"?")); | |
8018 | else | |
8019 | error (_("Running \"%s\" on the remote target failed"), | |
8020 | remote_exec_file); | |
4082afcc PA |
8021 | default: |
8022 | gdb_assert_not_reached (_("bad switch")); | |
2d717e4f | 8023 | } |
c906108c SS |
8024 | } |
8025 | ||
2d717e4f DJ |
8026 | /* In the extended protocol we want to be able to do things like |
8027 | "run" and have them basically work as expected. So we need | |
8028 | a special create_inferior function. We support changing the | |
8029 | executable file and the command line arguments, but not the | |
8030 | environment. */ | |
8031 | ||
43ff13b4 | 8032 | static void |
77a19445 TT |
8033 | extended_remote_create_inferior (struct target_ops *ops, |
8034 | char *exec_file, char *args, | |
8035 | char **env, int from_tty) | |
43ff13b4 | 8036 | { |
3405876a PA |
8037 | int run_worked; |
8038 | char *stop_reply; | |
8039 | struct remote_state *rs = get_remote_state (); | |
8040 | ||
43ff13b4 | 8041 | /* If running asynchronously, register the target file descriptor |
23860348 | 8042 | with the event loop. */ |
75c99385 | 8043 | if (target_can_async_p ()) |
2acceee2 | 8044 | target_async (inferior_event_handler, 0); |
43ff13b4 | 8045 | |
03583c20 | 8046 | /* Disable address space randomization if requested (and supported). */ |
2bfc0540 | 8047 | if (extended_remote_supports_disable_randomization (ops)) |
03583c20 UW |
8048 | extended_remote_disable_randomization (disable_randomization); |
8049 | ||
43ff13b4 | 8050 | /* Now restart the remote server. */ |
3405876a PA |
8051 | run_worked = extended_remote_run (args) != -1; |
8052 | if (!run_worked) | |
2d717e4f DJ |
8053 | { |
8054 | /* vRun was not supported. Fail if we need it to do what the | |
8055 | user requested. */ | |
8056 | if (remote_exec_file[0]) | |
8057 | error (_("Remote target does not support \"set remote exec-file\"")); | |
8058 | if (args[0]) | |
8059 | error (_("Remote target does not support \"set args\" or run <ARGS>")); | |
43ff13b4 | 8060 | |
2d717e4f DJ |
8061 | /* Fall back to "R". */ |
8062 | extended_remote_restart (); | |
8063 | } | |
424163ea | 8064 | |
6c95b8df PA |
8065 | if (!have_inferiors ()) |
8066 | { | |
8067 | /* Clean up from the last time we ran, before we mark the target | |
8068 | running again. This will mark breakpoints uninserted, and | |
8069 | get_offsets may insert breakpoints. */ | |
8070 | init_thread_list (); | |
8071 | init_wait_for_inferior (); | |
8072 | } | |
45280a52 | 8073 | |
3405876a PA |
8074 | /* vRun's success return is a stop reply. */ |
8075 | stop_reply = run_worked ? rs->buf : NULL; | |
8076 | add_current_inferior_and_thread (stop_reply); | |
c0a2216e | 8077 | |
2d717e4f DJ |
8078 | /* Get updated offsets, if the stub uses qOffsets. */ |
8079 | get_offsets (); | |
2d717e4f | 8080 | } |
c906108c | 8081 | \f |
c5aa993b | 8082 | |
b775012e LM |
8083 | /* Given a location's target info BP_TGT and the packet buffer BUF, output |
8084 | the list of conditions (in agent expression bytecode format), if any, the | |
8085 | target needs to evaluate. The output is placed into the packet buffer | |
bba74b36 | 8086 | started from BUF and ended at BUF_END. */ |
b775012e LM |
8087 | |
8088 | static int | |
8089 | remote_add_target_side_condition (struct gdbarch *gdbarch, | |
bba74b36 YQ |
8090 | struct bp_target_info *bp_tgt, char *buf, |
8091 | char *buf_end) | |
b775012e LM |
8092 | { |
8093 | struct agent_expr *aexpr = NULL; | |
8094 | int i, ix; | |
8095 | char *pkt; | |
8096 | char *buf_start = buf; | |
8097 | ||
8098 | if (VEC_empty (agent_expr_p, bp_tgt->conditions)) | |
8099 | return 0; | |
8100 | ||
8101 | buf += strlen (buf); | |
bba74b36 | 8102 | xsnprintf (buf, buf_end - buf, "%s", ";"); |
b775012e LM |
8103 | buf++; |
8104 | ||
8105 | /* Send conditions to the target and free the vector. */ | |
8106 | for (ix = 0; | |
8107 | VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr); | |
8108 | ix++) | |
8109 | { | |
bba74b36 | 8110 | xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len); |
b775012e LM |
8111 | buf += strlen (buf); |
8112 | for (i = 0; i < aexpr->len; ++i) | |
8113 | buf = pack_hex_byte (buf, aexpr->buf[i]); | |
8114 | *buf = '\0'; | |
8115 | } | |
b775012e LM |
8116 | return 0; |
8117 | } | |
8118 | ||
d3ce09f5 SS |
8119 | static void |
8120 | remote_add_target_side_commands (struct gdbarch *gdbarch, | |
8121 | struct bp_target_info *bp_tgt, char *buf) | |
8122 | { | |
8123 | struct agent_expr *aexpr = NULL; | |
8124 | int i, ix; | |
8125 | ||
8126 | if (VEC_empty (agent_expr_p, bp_tgt->tcommands)) | |
8127 | return; | |
8128 | ||
8129 | buf += strlen (buf); | |
8130 | ||
8131 | sprintf (buf, ";cmds:%x,", bp_tgt->persist); | |
8132 | buf += strlen (buf); | |
8133 | ||
8134 | /* Concatenate all the agent expressions that are commands into the | |
8135 | cmds parameter. */ | |
8136 | for (ix = 0; | |
8137 | VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr); | |
8138 | ix++) | |
8139 | { | |
8140 | sprintf (buf, "X%x,", aexpr->len); | |
8141 | buf += strlen (buf); | |
8142 | for (i = 0; i < aexpr->len; ++i) | |
8143 | buf = pack_hex_byte (buf, aexpr->buf[i]); | |
8144 | *buf = '\0'; | |
8145 | } | |
d3ce09f5 SS |
8146 | } |
8147 | ||
8181d85f DJ |
8148 | /* Insert a breakpoint. On targets that have software breakpoint |
8149 | support, we ask the remote target to do the work; on targets | |
8150 | which don't, we insert a traditional memory breakpoint. */ | |
c906108c SS |
8151 | |
8152 | static int | |
3db08215 MM |
8153 | remote_insert_breakpoint (struct target_ops *ops, |
8154 | struct gdbarch *gdbarch, | |
a6d9a66e | 8155 | struct bp_target_info *bp_tgt) |
c906108c | 8156 | { |
d471ea57 AC |
8157 | /* Try the "Z" s/w breakpoint packet if it is not already disabled. |
8158 | If it succeeds, then set the support to PACKET_ENABLE. If it | |
8159 | fails, and the user has explicitly requested the Z support then | |
23860348 | 8160 | report an error, otherwise, mark it disabled and go on. */ |
802188a7 | 8161 | |
4082afcc | 8162 | if (packet_support (PACKET_Z0) != PACKET_DISABLE) |
96baa820 | 8163 | { |
0d5ed153 | 8164 | CORE_ADDR addr = bp_tgt->reqstd_address; |
4fff2411 | 8165 | struct remote_state *rs; |
bba74b36 | 8166 | char *p, *endbuf; |
7c0f6dcc | 8167 | int bpsize; |
b775012e | 8168 | struct condition_list *cond = NULL; |
4fff2411 | 8169 | |
28439a30 PA |
8170 | /* Make sure the remote is pointing at the right process, if |
8171 | necessary. */ | |
8172 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
8173 | set_general_process (); | |
8174 | ||
a1dcb23a | 8175 | gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize); |
4fff2411 JZ |
8176 | |
8177 | rs = get_remote_state (); | |
8178 | p = rs->buf; | |
bba74b36 | 8179 | endbuf = rs->buf + get_remote_packet_size (); |
802188a7 | 8180 | |
96baa820 JM |
8181 | *(p++) = 'Z'; |
8182 | *(p++) = '0'; | |
8183 | *(p++) = ','; | |
7c0f6dcc | 8184 | addr = (ULONGEST) remote_address_masked (addr); |
8181d85f | 8185 | p += hexnumstr (p, addr); |
bba74b36 | 8186 | xsnprintf (p, endbuf - p, ",%d", bpsize); |
802188a7 | 8187 | |
efcc2da7 | 8188 | if (remote_supports_cond_breakpoints (ops)) |
bba74b36 | 8189 | remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf); |
b775012e | 8190 | |
78eff0ec | 8191 | if (remote_can_run_breakpoint_commands (ops)) |
d3ce09f5 SS |
8192 | remote_add_target_side_commands (gdbarch, bp_tgt, p); |
8193 | ||
6d820c5c DJ |
8194 | putpkt (rs->buf); |
8195 | getpkt (&rs->buf, &rs->buf_size, 0); | |
96baa820 | 8196 | |
6d820c5c | 8197 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0])) |
96baa820 | 8198 | { |
d471ea57 AC |
8199 | case PACKET_ERROR: |
8200 | return -1; | |
8201 | case PACKET_OK: | |
7c0f6dcc JL |
8202 | bp_tgt->placed_address = addr; |
8203 | bp_tgt->placed_size = bpsize; | |
d471ea57 AC |
8204 | return 0; |
8205 | case PACKET_UNKNOWN: | |
8206 | break; | |
96baa820 JM |
8207 | } |
8208 | } | |
c906108c | 8209 | |
0000e5cc PA |
8210 | /* If this breakpoint has target-side commands but this stub doesn't |
8211 | support Z0 packets, throw error. */ | |
8212 | if (!VEC_empty (agent_expr_p, bp_tgt->tcommands)) | |
8213 | throw_error (NOT_SUPPORTED_ERROR, _("\ | |
8214 | Target doesn't support breakpoints that have target side commands.")); | |
8215 | ||
3db08215 | 8216 | return memory_insert_breakpoint (ops, gdbarch, bp_tgt); |
c906108c SS |
8217 | } |
8218 | ||
8219 | static int | |
3db08215 MM |
8220 | remote_remove_breakpoint (struct target_ops *ops, |
8221 | struct gdbarch *gdbarch, | |
a6d9a66e | 8222 | struct bp_target_info *bp_tgt) |
c906108c | 8223 | { |
8181d85f | 8224 | CORE_ADDR addr = bp_tgt->placed_address; |
d01949b6 | 8225 | struct remote_state *rs = get_remote_state (); |
96baa820 | 8226 | |
4082afcc | 8227 | if (packet_support (PACKET_Z0) != PACKET_DISABLE) |
96baa820 | 8228 | { |
6d820c5c | 8229 | char *p = rs->buf; |
bba74b36 | 8230 | char *endbuf = rs->buf + get_remote_packet_size (); |
802188a7 | 8231 | |
28439a30 PA |
8232 | /* Make sure the remote is pointing at the right process, if |
8233 | necessary. */ | |
8234 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
8235 | set_general_process (); | |
8236 | ||
96baa820 JM |
8237 | *(p++) = 'z'; |
8238 | *(p++) = '0'; | |
8239 | *(p++) = ','; | |
8240 | ||
8181d85f DJ |
8241 | addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address); |
8242 | p += hexnumstr (p, addr); | |
bba74b36 | 8243 | xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size); |
802188a7 | 8244 | |
6d820c5c DJ |
8245 | putpkt (rs->buf); |
8246 | getpkt (&rs->buf, &rs->buf_size, 0); | |
96baa820 | 8247 | |
6d820c5c | 8248 | return (rs->buf[0] == 'E'); |
96baa820 JM |
8249 | } |
8250 | ||
3db08215 | 8251 | return memory_remove_breakpoint (ops, gdbarch, bp_tgt); |
c906108c SS |
8252 | } |
8253 | ||
d471ea57 AC |
8254 | static int |
8255 | watchpoint_to_Z_packet (int type) | |
8256 | { | |
8257 | switch (type) | |
8258 | { | |
8259 | case hw_write: | |
bb858e6a | 8260 | return Z_PACKET_WRITE_WP; |
d471ea57 AC |
8261 | break; |
8262 | case hw_read: | |
bb858e6a | 8263 | return Z_PACKET_READ_WP; |
d471ea57 AC |
8264 | break; |
8265 | case hw_access: | |
bb858e6a | 8266 | return Z_PACKET_ACCESS_WP; |
d471ea57 AC |
8267 | break; |
8268 | default: | |
8e65ff28 | 8269 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 8270 | _("hw_bp_to_z: bad watchpoint type %d"), type); |
d471ea57 AC |
8271 | } |
8272 | } | |
8273 | ||
3c3bea1c | 8274 | static int |
7bb99c53 TT |
8275 | remote_insert_watchpoint (struct target_ops *self, |
8276 | CORE_ADDR addr, int len, int type, | |
0cf6dd15 | 8277 | struct expression *cond) |
96baa820 | 8278 | { |
d01949b6 | 8279 | struct remote_state *rs = get_remote_state (); |
bba74b36 | 8280 | char *endbuf = rs->buf + get_remote_packet_size (); |
e514a9d6 | 8281 | char *p; |
d471ea57 | 8282 | enum Z_packet_type packet = watchpoint_to_Z_packet (type); |
96baa820 | 8283 | |
4082afcc | 8284 | if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE) |
85d721b8 | 8285 | return 1; |
802188a7 | 8286 | |
28439a30 PA |
8287 | /* Make sure the remote is pointing at the right process, if |
8288 | necessary. */ | |
8289 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
8290 | set_general_process (); | |
8291 | ||
bba74b36 | 8292 | xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet); |
6d820c5c | 8293 | p = strchr (rs->buf, '\0'); |
96baa820 JM |
8294 | addr = remote_address_masked (addr); |
8295 | p += hexnumstr (p, (ULONGEST) addr); | |
bba74b36 | 8296 | xsnprintf (p, endbuf - p, ",%x", len); |
802188a7 | 8297 | |
6d820c5c DJ |
8298 | putpkt (rs->buf); |
8299 | getpkt (&rs->buf, &rs->buf_size, 0); | |
96baa820 | 8300 | |
6d820c5c | 8301 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet])) |
d471ea57 AC |
8302 | { |
8303 | case PACKET_ERROR: | |
d471ea57 | 8304 | return -1; |
85d721b8 PA |
8305 | case PACKET_UNKNOWN: |
8306 | return 1; | |
d471ea57 AC |
8307 | case PACKET_OK: |
8308 | return 0; | |
8309 | } | |
8e65ff28 | 8310 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 8311 | _("remote_insert_watchpoint: reached end of function")); |
96baa820 JM |
8312 | } |
8313 | ||
283002cf MR |
8314 | static int |
8315 | remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr, | |
8316 | CORE_ADDR start, int length) | |
8317 | { | |
8318 | CORE_ADDR diff = remote_address_masked (addr - start); | |
8319 | ||
8320 | return diff < length; | |
8321 | } | |
8322 | ||
d471ea57 | 8323 | |
3c3bea1c | 8324 | static int |
11b5219a TT |
8325 | remote_remove_watchpoint (struct target_ops *self, |
8326 | CORE_ADDR addr, int len, int type, | |
0cf6dd15 | 8327 | struct expression *cond) |
96baa820 | 8328 | { |
d01949b6 | 8329 | struct remote_state *rs = get_remote_state (); |
bba74b36 | 8330 | char *endbuf = rs->buf + get_remote_packet_size (); |
e514a9d6 | 8331 | char *p; |
d471ea57 AC |
8332 | enum Z_packet_type packet = watchpoint_to_Z_packet (type); |
8333 | ||
4082afcc | 8334 | if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE) |
5cffb350 | 8335 | return -1; |
802188a7 | 8336 | |
28439a30 PA |
8337 | /* Make sure the remote is pointing at the right process, if |
8338 | necessary. */ | |
8339 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
8340 | set_general_process (); | |
8341 | ||
bba74b36 | 8342 | xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet); |
6d820c5c | 8343 | p = strchr (rs->buf, '\0'); |
96baa820 JM |
8344 | addr = remote_address_masked (addr); |
8345 | p += hexnumstr (p, (ULONGEST) addr); | |
bba74b36 | 8346 | xsnprintf (p, endbuf - p, ",%x", len); |
6d820c5c DJ |
8347 | putpkt (rs->buf); |
8348 | getpkt (&rs->buf, &rs->buf_size, 0); | |
96baa820 | 8349 | |
6d820c5c | 8350 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet])) |
d471ea57 AC |
8351 | { |
8352 | case PACKET_ERROR: | |
8353 | case PACKET_UNKNOWN: | |
8354 | return -1; | |
8355 | case PACKET_OK: | |
8356 | return 0; | |
8357 | } | |
8e65ff28 | 8358 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 8359 | _("remote_remove_watchpoint: reached end of function")); |
96baa820 JM |
8360 | } |
8361 | ||
3c3bea1c | 8362 | |
501eef12 | 8363 | int remote_hw_watchpoint_limit = -1; |
480a3f21 | 8364 | int remote_hw_watchpoint_length_limit = -1; |
501eef12 | 8365 | int remote_hw_breakpoint_limit = -1; |
d471ea57 | 8366 | |
480a3f21 | 8367 | static int |
31568a15 TT |
8368 | remote_region_ok_for_hw_watchpoint (struct target_ops *self, |
8369 | CORE_ADDR addr, int len) | |
480a3f21 PW |
8370 | { |
8371 | if (remote_hw_watchpoint_length_limit == 0) | |
8372 | return 0; | |
8373 | else if (remote_hw_watchpoint_length_limit < 0) | |
8374 | return 1; | |
8375 | else if (len <= remote_hw_watchpoint_length_limit) | |
8376 | return 1; | |
8377 | else | |
8378 | return 0; | |
8379 | } | |
8380 | ||
b9362cc7 | 8381 | static int |
5461485a TT |
8382 | remote_check_watch_resources (struct target_ops *self, |
8383 | int type, int cnt, int ot) | |
96baa820 | 8384 | { |
3c3bea1c GS |
8385 | if (type == bp_hardware_breakpoint) |
8386 | { | |
8387 | if (remote_hw_breakpoint_limit == 0) | |
8388 | return 0; | |
501eef12 AC |
8389 | else if (remote_hw_breakpoint_limit < 0) |
8390 | return 1; | |
3c3bea1c GS |
8391 | else if (cnt <= remote_hw_breakpoint_limit) |
8392 | return 1; | |
8393 | } | |
8394 | else | |
8395 | { | |
8396 | if (remote_hw_watchpoint_limit == 0) | |
8397 | return 0; | |
501eef12 AC |
8398 | else if (remote_hw_watchpoint_limit < 0) |
8399 | return 1; | |
3c3bea1c GS |
8400 | else if (ot) |
8401 | return -1; | |
8402 | else if (cnt <= remote_hw_watchpoint_limit) | |
8403 | return 1; | |
8404 | } | |
8405 | return -1; | |
8406 | } | |
8407 | ||
b9362cc7 | 8408 | static int |
6a109b6b | 8409 | remote_stopped_by_watchpoint (struct target_ops *ops) |
3c3bea1c | 8410 | { |
ee154bee TT |
8411 | struct remote_state *rs = get_remote_state (); |
8412 | ||
8413 | return rs->remote_stopped_by_watchpoint_p; | |
3c3bea1c GS |
8414 | } |
8415 | ||
4aa7a7f5 JJ |
8416 | static int |
8417 | remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p) | |
3c3bea1c | 8418 | { |
ee154bee | 8419 | struct remote_state *rs = get_remote_state (); |
4aa7a7f5 | 8420 | int rc = 0; |
a744cf53 | 8421 | |
6a109b6b | 8422 | if (remote_stopped_by_watchpoint (target)) |
4aa7a7f5 | 8423 | { |
ee154bee | 8424 | *addr_p = rs->remote_watch_data_address; |
4aa7a7f5 JJ |
8425 | rc = 1; |
8426 | } | |
8427 | ||
8428 | return rc; | |
3c3bea1c GS |
8429 | } |
8430 | ||
8431 | ||
8432 | static int | |
23a26771 | 8433 | remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch, |
a6d9a66e | 8434 | struct bp_target_info *bp_tgt) |
3c3bea1c | 8435 | { |
0d5ed153 | 8436 | CORE_ADDR addr = bp_tgt->reqstd_address; |
4fff2411 | 8437 | struct remote_state *rs; |
bba74b36 | 8438 | char *p, *endbuf; |
dd61ec5c | 8439 | char *message; |
0d5ed153 | 8440 | int bpsize; |
802188a7 | 8441 | |
c8189ed1 | 8442 | /* The length field should be set to the size of a breakpoint |
8181d85f | 8443 | instruction, even though we aren't inserting one ourselves. */ |
c8189ed1 | 8444 | |
0d5ed153 | 8445 | gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize); |
3c3bea1c | 8446 | |
4082afcc | 8447 | if (packet_support (PACKET_Z1) == PACKET_DISABLE) |
5cffb350 | 8448 | return -1; |
2bc416ba | 8449 | |
28439a30 PA |
8450 | /* Make sure the remote is pointing at the right process, if |
8451 | necessary. */ | |
8452 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
8453 | set_general_process (); | |
8454 | ||
4fff2411 JZ |
8455 | rs = get_remote_state (); |
8456 | p = rs->buf; | |
bba74b36 | 8457 | endbuf = rs->buf + get_remote_packet_size (); |
4fff2411 | 8458 | |
96baa820 JM |
8459 | *(p++) = 'Z'; |
8460 | *(p++) = '1'; | |
8461 | *(p++) = ','; | |
802188a7 | 8462 | |
0d5ed153 | 8463 | addr = remote_address_masked (addr); |
96baa820 | 8464 | p += hexnumstr (p, (ULONGEST) addr); |
0d5ed153 | 8465 | xsnprintf (p, endbuf - p, ",%x", bpsize); |
96baa820 | 8466 | |
efcc2da7 | 8467 | if (remote_supports_cond_breakpoints (self)) |
bba74b36 | 8468 | remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf); |
b775012e | 8469 | |
78eff0ec | 8470 | if (remote_can_run_breakpoint_commands (self)) |
d3ce09f5 SS |
8471 | remote_add_target_side_commands (gdbarch, bp_tgt, p); |
8472 | ||
6d820c5c DJ |
8473 | putpkt (rs->buf); |
8474 | getpkt (&rs->buf, &rs->buf_size, 0); | |
96baa820 | 8475 | |
6d820c5c | 8476 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1])) |
d471ea57 AC |
8477 | { |
8478 | case PACKET_ERROR: | |
dd61ec5c MW |
8479 | if (rs->buf[1] == '.') |
8480 | { | |
8481 | message = strchr (rs->buf + 2, '.'); | |
8482 | if (message) | |
0316657e | 8483 | error (_("Remote failure reply: %s"), message + 1); |
dd61ec5c MW |
8484 | } |
8485 | return -1; | |
d471ea57 AC |
8486 | case PACKET_UNKNOWN: |
8487 | return -1; | |
8488 | case PACKET_OK: | |
0d5ed153 MR |
8489 | bp_tgt->placed_address = addr; |
8490 | bp_tgt->placed_size = bpsize; | |
d471ea57 AC |
8491 | return 0; |
8492 | } | |
8e65ff28 | 8493 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 8494 | _("remote_insert_hw_breakpoint: reached end of function")); |
96baa820 JM |
8495 | } |
8496 | ||
d471ea57 | 8497 | |
802188a7 | 8498 | static int |
a64dc96c | 8499 | remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch, |
a6d9a66e | 8500 | struct bp_target_info *bp_tgt) |
96baa820 | 8501 | { |
8181d85f | 8502 | CORE_ADDR addr; |
d01949b6 | 8503 | struct remote_state *rs = get_remote_state (); |
6d820c5c | 8504 | char *p = rs->buf; |
bba74b36 | 8505 | char *endbuf = rs->buf + get_remote_packet_size (); |
c8189ed1 | 8506 | |
4082afcc | 8507 | if (packet_support (PACKET_Z1) == PACKET_DISABLE) |
5cffb350 | 8508 | return -1; |
802188a7 | 8509 | |
28439a30 PA |
8510 | /* Make sure the remote is pointing at the right process, if |
8511 | necessary. */ | |
8512 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
8513 | set_general_process (); | |
8514 | ||
96baa820 JM |
8515 | *(p++) = 'z'; |
8516 | *(p++) = '1'; | |
8517 | *(p++) = ','; | |
802188a7 | 8518 | |
8181d85f | 8519 | addr = remote_address_masked (bp_tgt->placed_address); |
96baa820 | 8520 | p += hexnumstr (p, (ULONGEST) addr); |
bba74b36 | 8521 | xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size); |
96baa820 | 8522 | |
6d820c5c DJ |
8523 | putpkt (rs->buf); |
8524 | getpkt (&rs->buf, &rs->buf_size, 0); | |
802188a7 | 8525 | |
6d820c5c | 8526 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1])) |
d471ea57 AC |
8527 | { |
8528 | case PACKET_ERROR: | |
8529 | case PACKET_UNKNOWN: | |
8530 | return -1; | |
8531 | case PACKET_OK: | |
8532 | return 0; | |
8533 | } | |
8e65ff28 | 8534 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 8535 | _("remote_remove_hw_breakpoint: reached end of function")); |
96baa820 | 8536 | } |
96baa820 | 8537 | |
4a5e7a5b PA |
8538 | /* Verify memory using the "qCRC:" request. */ |
8539 | ||
8540 | static int | |
8541 | remote_verify_memory (struct target_ops *ops, | |
8542 | const gdb_byte *data, CORE_ADDR lma, ULONGEST size) | |
8543 | { | |
8544 | struct remote_state *rs = get_remote_state (); | |
8545 | unsigned long host_crc, target_crc; | |
8546 | char *tmp; | |
8547 | ||
936d2992 PA |
8548 | /* It doesn't make sense to use qCRC if the remote target is |
8549 | connected but not running. */ | |
8550 | if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE) | |
8551 | { | |
8552 | enum packet_result result; | |
28439a30 | 8553 | |
936d2992 PA |
8554 | /* Make sure the remote is pointing at the right process. */ |
8555 | set_general_process (); | |
4a5e7a5b | 8556 | |
936d2992 PA |
8557 | /* FIXME: assumes lma can fit into long. */ |
8558 | xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx", | |
8559 | (long) lma, (long) size); | |
8560 | putpkt (rs->buf); | |
4a5e7a5b | 8561 | |
936d2992 PA |
8562 | /* Be clever; compute the host_crc before waiting for target |
8563 | reply. */ | |
8564 | host_crc = xcrc32 (data, size, 0xffffffff); | |
8565 | ||
8566 | getpkt (&rs->buf, &rs->buf_size, 0); | |
4a5e7a5b | 8567 | |
936d2992 PA |
8568 | result = packet_ok (rs->buf, |
8569 | &remote_protocol_packets[PACKET_qCRC]); | |
8570 | if (result == PACKET_ERROR) | |
8571 | return -1; | |
8572 | else if (result == PACKET_OK) | |
8573 | { | |
8574 | for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++) | |
8575 | target_crc = target_crc * 16 + fromhex (*tmp); | |
4a5e7a5b | 8576 | |
936d2992 PA |
8577 | return (host_crc == target_crc); |
8578 | } | |
8579 | } | |
4a5e7a5b | 8580 | |
936d2992 | 8581 | return simple_verify_memory (ops, data, lma, size); |
4a5e7a5b PA |
8582 | } |
8583 | ||
c906108c SS |
8584 | /* compare-sections command |
8585 | ||
8586 | With no arguments, compares each loadable section in the exec bfd | |
8587 | with the same memory range on the target, and reports mismatches. | |
4a5e7a5b | 8588 | Useful for verifying the image on the target against the exec file. */ |
e514a9d6 | 8589 | |
c906108c | 8590 | static void |
fba45db2 | 8591 | compare_sections_command (char *args, int from_tty) |
c906108c SS |
8592 | { |
8593 | asection *s; | |
c906108c | 8594 | struct cleanup *old_chain; |
948f8e3d | 8595 | gdb_byte *sectdata; |
ce359b09 | 8596 | const char *sectname; |
c906108c SS |
8597 | bfd_size_type size; |
8598 | bfd_vma lma; | |
8599 | int matched = 0; | |
8600 | int mismatched = 0; | |
4a5e7a5b | 8601 | int res; |
95cf3b38 | 8602 | int read_only = 0; |
c906108c SS |
8603 | |
8604 | if (!exec_bfd) | |
8a3fe4f8 | 8605 | error (_("command cannot be used without an exec file")); |
c906108c | 8606 | |
28439a30 PA |
8607 | /* Make sure the remote is pointing at the right process. */ |
8608 | set_general_process (); | |
8609 | ||
95cf3b38 DT |
8610 | if (args != NULL && strcmp (args, "-r") == 0) |
8611 | { | |
8612 | read_only = 1; | |
8613 | args = NULL; | |
8614 | } | |
8615 | ||
c5aa993b | 8616 | for (s = exec_bfd->sections; s; s = s->next) |
c906108c SS |
8617 | { |
8618 | if (!(s->flags & SEC_LOAD)) | |
0df8b418 | 8619 | continue; /* Skip non-loadable section. */ |
c906108c | 8620 | |
95cf3b38 DT |
8621 | if (read_only && (s->flags & SEC_READONLY) == 0) |
8622 | continue; /* Skip writeable sections */ | |
8623 | ||
2c500098 | 8624 | size = bfd_get_section_size (s); |
c906108c | 8625 | if (size == 0) |
0df8b418 | 8626 | continue; /* Skip zero-length section. */ |
c906108c | 8627 | |
ce359b09 | 8628 | sectname = bfd_get_section_name (exec_bfd, s); |
c906108c | 8629 | if (args && strcmp (args, sectname) != 0) |
0df8b418 | 8630 | continue; /* Not the section selected by user. */ |
c906108c | 8631 | |
0df8b418 | 8632 | matched = 1; /* Do this section. */ |
c906108c | 8633 | lma = s->lma; |
c906108c | 8634 | |
c906108c | 8635 | sectdata = xmalloc (size); |
b8c9b27d | 8636 | old_chain = make_cleanup (xfree, sectdata); |
c906108c | 8637 | bfd_get_section_contents (exec_bfd, s, sectdata, 0, size); |
c906108c | 8638 | |
4a5e7a5b PA |
8639 | res = target_verify_memory (sectdata, lma, size); |
8640 | ||
8641 | if (res == -1) | |
5af949e3 | 8642 | error (_("target memory fault, section %s, range %s -- %s"), sectname, |
f5656ead TT |
8643 | paddress (target_gdbarch (), lma), |
8644 | paddress (target_gdbarch (), lma + size)); | |
c906108c | 8645 | |
5af949e3 | 8646 | printf_filtered ("Section %s, range %s -- %s: ", sectname, |
f5656ead TT |
8647 | paddress (target_gdbarch (), lma), |
8648 | paddress (target_gdbarch (), lma + size)); | |
4a5e7a5b | 8649 | if (res) |
c906108c SS |
8650 | printf_filtered ("matched.\n"); |
8651 | else | |
c5aa993b JM |
8652 | { |
8653 | printf_filtered ("MIS-MATCHED!\n"); | |
8654 | mismatched++; | |
8655 | } | |
c906108c SS |
8656 | |
8657 | do_cleanups (old_chain); | |
8658 | } | |
8659 | if (mismatched > 0) | |
936d2992 | 8660 | warning (_("One or more sections of the target image does not match\n\ |
8a3fe4f8 | 8661 | the loaded file\n")); |
c906108c | 8662 | if (args && !matched) |
a3f17187 | 8663 | printf_filtered (_("No loaded section named '%s'.\n"), args); |
c906108c SS |
8664 | } |
8665 | ||
0e7f50da UW |
8666 | /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET |
8667 | into remote target. The number of bytes written to the remote | |
8668 | target is returned, or -1 for error. */ | |
8669 | ||
9b409511 | 8670 | static enum target_xfer_status |
0e7f50da UW |
8671 | remote_write_qxfer (struct target_ops *ops, const char *object_name, |
8672 | const char *annex, const gdb_byte *writebuf, | |
9b409511 | 8673 | ULONGEST offset, LONGEST len, ULONGEST *xfered_len, |
0e7f50da UW |
8674 | struct packet_config *packet) |
8675 | { | |
8676 | int i, buf_len; | |
8677 | ULONGEST n; | |
0e7f50da UW |
8678 | struct remote_state *rs = get_remote_state (); |
8679 | int max_size = get_memory_write_packet_size (); | |
8680 | ||
8681 | if (packet->support == PACKET_DISABLE) | |
2ed4b548 | 8682 | return TARGET_XFER_E_IO; |
0e7f50da UW |
8683 | |
8684 | /* Insert header. */ | |
8685 | i = snprintf (rs->buf, max_size, | |
8686 | "qXfer:%s:write:%s:%s:", | |
8687 | object_name, annex ? annex : "", | |
8688 | phex_nz (offset, sizeof offset)); | |
8689 | max_size -= (i + 1); | |
8690 | ||
8691 | /* Escape as much data as fits into rs->buf. */ | |
8692 | buf_len = remote_escape_output | |
bc20a4af | 8693 | (writebuf, len, (gdb_byte *) rs->buf + i, &max_size, max_size); |
0e7f50da UW |
8694 | |
8695 | if (putpkt_binary (rs->buf, i + buf_len) < 0 | |
8696 | || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0 | |
8697 | || packet_ok (rs->buf, packet) != PACKET_OK) | |
2ed4b548 | 8698 | return TARGET_XFER_E_IO; |
0e7f50da UW |
8699 | |
8700 | unpack_varlen_hex (rs->buf, &n); | |
9b409511 YQ |
8701 | |
8702 | *xfered_len = n; | |
8703 | return TARGET_XFER_OK; | |
0e7f50da UW |
8704 | } |
8705 | ||
0876f84a DJ |
8706 | /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet. |
8707 | Data at OFFSET, of up to LEN bytes, is read into READBUF; the | |
8708 | number of bytes read is returned, or 0 for EOF, or -1 for error. | |
8709 | The number of bytes read may be less than LEN without indicating an | |
8710 | EOF. PACKET is checked and updated to indicate whether the remote | |
8711 | target supports this object. */ | |
8712 | ||
9b409511 | 8713 | static enum target_xfer_status |
0876f84a DJ |
8714 | remote_read_qxfer (struct target_ops *ops, const char *object_name, |
8715 | const char *annex, | |
8716 | gdb_byte *readbuf, ULONGEST offset, LONGEST len, | |
9b409511 | 8717 | ULONGEST *xfered_len, |
0876f84a DJ |
8718 | struct packet_config *packet) |
8719 | { | |
0876f84a | 8720 | struct remote_state *rs = get_remote_state (); |
0876f84a DJ |
8721 | LONGEST i, n, packet_len; |
8722 | ||
8723 | if (packet->support == PACKET_DISABLE) | |
2ed4b548 | 8724 | return TARGET_XFER_E_IO; |
0876f84a DJ |
8725 | |
8726 | /* Check whether we've cached an end-of-object packet that matches | |
8727 | this request. */ | |
8e88304f | 8728 | if (rs->finished_object) |
0876f84a | 8729 | { |
8e88304f TT |
8730 | if (strcmp (object_name, rs->finished_object) == 0 |
8731 | && strcmp (annex ? annex : "", rs->finished_annex) == 0 | |
8732 | && offset == rs->finished_offset) | |
9b409511 YQ |
8733 | return TARGET_XFER_EOF; |
8734 | ||
0876f84a DJ |
8735 | |
8736 | /* Otherwise, we're now reading something different. Discard | |
8737 | the cache. */ | |
8e88304f TT |
8738 | xfree (rs->finished_object); |
8739 | xfree (rs->finished_annex); | |
8740 | rs->finished_object = NULL; | |
8741 | rs->finished_annex = NULL; | |
0876f84a DJ |
8742 | } |
8743 | ||
8744 | /* Request only enough to fit in a single packet. The actual data | |
8745 | may not, since we don't know how much of it will need to be escaped; | |
8746 | the target is free to respond with slightly less data. We subtract | |
8747 | five to account for the response type and the protocol frame. */ | |
8748 | n = min (get_remote_packet_size () - 5, len); | |
8749 | snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s", | |
8750 | object_name, annex ? annex : "", | |
8751 | phex_nz (offset, sizeof offset), | |
8752 | phex_nz (n, sizeof n)); | |
8753 | i = putpkt (rs->buf); | |
8754 | if (i < 0) | |
2ed4b548 | 8755 | return TARGET_XFER_E_IO; |
0876f84a DJ |
8756 | |
8757 | rs->buf[0] = '\0'; | |
8758 | packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0); | |
8759 | if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK) | |
2ed4b548 | 8760 | return TARGET_XFER_E_IO; |
0876f84a DJ |
8761 | |
8762 | if (rs->buf[0] != 'l' && rs->buf[0] != 'm') | |
8763 | error (_("Unknown remote qXfer reply: %s"), rs->buf); | |
8764 | ||
8765 | /* 'm' means there is (or at least might be) more data after this | |
8766 | batch. That does not make sense unless there's at least one byte | |
8767 | of data in this reply. */ | |
8768 | if (rs->buf[0] == 'm' && packet_len == 1) | |
8769 | error (_("Remote qXfer reply contained no data.")); | |
8770 | ||
8771 | /* Got some data. */ | |
bc20a4af PA |
8772 | i = remote_unescape_input ((gdb_byte *) rs->buf + 1, |
8773 | packet_len - 1, readbuf, n); | |
0876f84a DJ |
8774 | |
8775 | /* 'l' is an EOF marker, possibly including a final block of data, | |
0e7f50da UW |
8776 | or possibly empty. If we have the final block of a non-empty |
8777 | object, record this fact to bypass a subsequent partial read. */ | |
8778 | if (rs->buf[0] == 'l' && offset + i > 0) | |
0876f84a | 8779 | { |
8e88304f TT |
8780 | rs->finished_object = xstrdup (object_name); |
8781 | rs->finished_annex = xstrdup (annex ? annex : ""); | |
8782 | rs->finished_offset = offset + i; | |
0876f84a DJ |
8783 | } |
8784 | ||
9b409511 YQ |
8785 | if (i == 0) |
8786 | return TARGET_XFER_EOF; | |
8787 | else | |
8788 | { | |
8789 | *xfered_len = i; | |
8790 | return TARGET_XFER_OK; | |
8791 | } | |
0876f84a DJ |
8792 | } |
8793 | ||
9b409511 | 8794 | static enum target_xfer_status |
4b8a223f | 8795 | remote_xfer_partial (struct target_ops *ops, enum target_object object, |
961cb7b5 | 8796 | const char *annex, gdb_byte *readbuf, |
9b409511 YQ |
8797 | const gdb_byte *writebuf, ULONGEST offset, ULONGEST len, |
8798 | ULONGEST *xfered_len) | |
c906108c | 8799 | { |
82f73884 | 8800 | struct remote_state *rs; |
c906108c | 8801 | int i; |
6d820c5c | 8802 | char *p2; |
1e3ff5ad | 8803 | char query_type; |
c906108c | 8804 | |
e6e4e701 | 8805 | set_remote_traceframe (); |
82f73884 PA |
8806 | set_general_thread (inferior_ptid); |
8807 | ||
8808 | rs = get_remote_state (); | |
8809 | ||
b2182ed2 | 8810 | /* Handle memory using the standard memory routines. */ |
21e3b9b9 DJ |
8811 | if (object == TARGET_OBJECT_MEMORY) |
8812 | { | |
2d717e4f DJ |
8813 | /* If the remote target is connected but not running, we should |
8814 | pass this request down to a lower stratum (e.g. the executable | |
8815 | file). */ | |
8816 | if (!target_has_execution) | |
9b409511 | 8817 | return TARGET_XFER_EOF; |
2d717e4f | 8818 | |
21e3b9b9 | 8819 | if (writebuf != NULL) |
9b409511 | 8820 | return remote_write_bytes (offset, writebuf, len, xfered_len); |
21e3b9b9 | 8821 | else |
8acf9577 | 8822 | return remote_read_bytes (ops, offset, readbuf, len, xfered_len); |
21e3b9b9 DJ |
8823 | } |
8824 | ||
0df8b418 | 8825 | /* Handle SPU memory using qxfer packets. */ |
0e7f50da UW |
8826 | if (object == TARGET_OBJECT_SPU) |
8827 | { | |
8828 | if (readbuf) | |
8829 | return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len, | |
9b409511 YQ |
8830 | xfered_len, &remote_protocol_packets |
8831 | [PACKET_qXfer_spu_read]); | |
0e7f50da UW |
8832 | else |
8833 | return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len, | |
9b409511 YQ |
8834 | xfered_len, &remote_protocol_packets |
8835 | [PACKET_qXfer_spu_write]); | |
0e7f50da UW |
8836 | } |
8837 | ||
4aa995e1 PA |
8838 | /* Handle extra signal info using qxfer packets. */ |
8839 | if (object == TARGET_OBJECT_SIGNAL_INFO) | |
8840 | { | |
8841 | if (readbuf) | |
8842 | return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len, | |
9b409511 | 8843 | xfered_len, &remote_protocol_packets |
4aa995e1 PA |
8844 | [PACKET_qXfer_siginfo_read]); |
8845 | else | |
3e43a32a | 8846 | return remote_write_qxfer (ops, "siginfo", annex, |
9b409511 | 8847 | writebuf, offset, len, xfered_len, |
4aa995e1 PA |
8848 | &remote_protocol_packets |
8849 | [PACKET_qXfer_siginfo_write]); | |
8850 | } | |
8851 | ||
0fb4aa4b PA |
8852 | if (object == TARGET_OBJECT_STATIC_TRACE_DATA) |
8853 | { | |
8854 | if (readbuf) | |
3e43a32a | 8855 | return remote_read_qxfer (ops, "statictrace", annex, |
9b409511 | 8856 | readbuf, offset, len, xfered_len, |
0fb4aa4b PA |
8857 | &remote_protocol_packets |
8858 | [PACKET_qXfer_statictrace_read]); | |
8859 | else | |
2ed4b548 | 8860 | return TARGET_XFER_E_IO; |
0fb4aa4b PA |
8861 | } |
8862 | ||
a76d924d DJ |
8863 | /* Only handle flash writes. */ |
8864 | if (writebuf != NULL) | |
8865 | { | |
8866 | LONGEST xfered; | |
8867 | ||
8868 | switch (object) | |
8869 | { | |
8870 | case TARGET_OBJECT_FLASH: | |
9b409511 YQ |
8871 | return remote_flash_write (ops, offset, len, xfered_len, |
8872 | writebuf); | |
a76d924d DJ |
8873 | |
8874 | default: | |
2ed4b548 | 8875 | return TARGET_XFER_E_IO; |
a76d924d DJ |
8876 | } |
8877 | } | |
4b8a223f | 8878 | |
1e3ff5ad AC |
8879 | /* Map pre-existing objects onto letters. DO NOT do this for new |
8880 | objects!!! Instead specify new query packets. */ | |
8881 | switch (object) | |
c906108c | 8882 | { |
1e3ff5ad AC |
8883 | case TARGET_OBJECT_AVR: |
8884 | query_type = 'R'; | |
8885 | break; | |
802188a7 RM |
8886 | |
8887 | case TARGET_OBJECT_AUXV: | |
0876f84a DJ |
8888 | gdb_assert (annex == NULL); |
8889 | return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len, | |
9b409511 | 8890 | xfered_len, |
0876f84a | 8891 | &remote_protocol_packets[PACKET_qXfer_auxv]); |
802188a7 | 8892 | |
23181151 DJ |
8893 | case TARGET_OBJECT_AVAILABLE_FEATURES: |
8894 | return remote_read_qxfer | |
9b409511 | 8895 | (ops, "features", annex, readbuf, offset, len, xfered_len, |
23181151 DJ |
8896 | &remote_protocol_packets[PACKET_qXfer_features]); |
8897 | ||
cfa9d6d9 DJ |
8898 | case TARGET_OBJECT_LIBRARIES: |
8899 | return remote_read_qxfer | |
9b409511 | 8900 | (ops, "libraries", annex, readbuf, offset, len, xfered_len, |
cfa9d6d9 DJ |
8901 | &remote_protocol_packets[PACKET_qXfer_libraries]); |
8902 | ||
2268b414 JK |
8903 | case TARGET_OBJECT_LIBRARIES_SVR4: |
8904 | return remote_read_qxfer | |
9b409511 | 8905 | (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len, |
2268b414 JK |
8906 | &remote_protocol_packets[PACKET_qXfer_libraries_svr4]); |
8907 | ||
fd79ecee DJ |
8908 | case TARGET_OBJECT_MEMORY_MAP: |
8909 | gdb_assert (annex == NULL); | |
8910 | return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len, | |
9b409511 | 8911 | xfered_len, |
fd79ecee DJ |
8912 | &remote_protocol_packets[PACKET_qXfer_memory_map]); |
8913 | ||
07e059b5 VP |
8914 | case TARGET_OBJECT_OSDATA: |
8915 | /* Should only get here if we're connected. */ | |
5d93a237 | 8916 | gdb_assert (rs->remote_desc); |
07e059b5 | 8917 | return remote_read_qxfer |
9b409511 | 8918 | (ops, "osdata", annex, readbuf, offset, len, xfered_len, |
07e059b5 VP |
8919 | &remote_protocol_packets[PACKET_qXfer_osdata]); |
8920 | ||
dc146f7c VP |
8921 | case TARGET_OBJECT_THREADS: |
8922 | gdb_assert (annex == NULL); | |
8923 | return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len, | |
9b409511 | 8924 | xfered_len, |
dc146f7c VP |
8925 | &remote_protocol_packets[PACKET_qXfer_threads]); |
8926 | ||
b3b9301e PA |
8927 | case TARGET_OBJECT_TRACEFRAME_INFO: |
8928 | gdb_assert (annex == NULL); | |
8929 | return remote_read_qxfer | |
9b409511 | 8930 | (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len, |
b3b9301e | 8931 | &remote_protocol_packets[PACKET_qXfer_traceframe_info]); |
78d85199 YQ |
8932 | |
8933 | case TARGET_OBJECT_FDPIC: | |
8934 | return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len, | |
9b409511 | 8935 | xfered_len, |
78d85199 | 8936 | &remote_protocol_packets[PACKET_qXfer_fdpic]); |
169081d0 TG |
8937 | |
8938 | case TARGET_OBJECT_OPENVMS_UIB: | |
8939 | return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len, | |
9b409511 | 8940 | xfered_len, |
169081d0 TG |
8941 | &remote_protocol_packets[PACKET_qXfer_uib]); |
8942 | ||
9accd112 MM |
8943 | case TARGET_OBJECT_BTRACE: |
8944 | return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len, | |
9b409511 | 8945 | xfered_len, |
9accd112 MM |
8946 | &remote_protocol_packets[PACKET_qXfer_btrace]); |
8947 | ||
1e3ff5ad | 8948 | default: |
2ed4b548 | 8949 | return TARGET_XFER_E_IO; |
c906108c SS |
8950 | } |
8951 | ||
0df8b418 | 8952 | /* Minimum outbuf size is get_remote_packet_size (). If LEN is not |
24b06219 | 8953 | large enough let the caller deal with it. */ |
ea9c271d | 8954 | if (len < get_remote_packet_size ()) |
2ed4b548 | 8955 | return TARGET_XFER_E_IO; |
ea9c271d | 8956 | len = get_remote_packet_size (); |
1e3ff5ad | 8957 | |
23860348 | 8958 | /* Except for querying the minimum buffer size, target must be open. */ |
5d93a237 | 8959 | if (!rs->remote_desc) |
8a3fe4f8 | 8960 | error (_("remote query is only available after target open")); |
c906108c | 8961 | |
1e3ff5ad | 8962 | gdb_assert (annex != NULL); |
4b8a223f | 8963 | gdb_assert (readbuf != NULL); |
c906108c | 8964 | |
6d820c5c | 8965 | p2 = rs->buf; |
c906108c SS |
8966 | *p2++ = 'q'; |
8967 | *p2++ = query_type; | |
8968 | ||
23860348 MS |
8969 | /* We used one buffer char for the remote protocol q command and |
8970 | another for the query type. As the remote protocol encapsulation | |
8971 | uses 4 chars plus one extra in case we are debugging | |
8972 | (remote_debug), we have PBUFZIZ - 7 left to pack the query | |
8973 | string. */ | |
c906108c | 8974 | i = 0; |
ea9c271d | 8975 | while (annex[i] && (i < (get_remote_packet_size () - 8))) |
c906108c | 8976 | { |
1e3ff5ad AC |
8977 | /* Bad caller may have sent forbidden characters. */ |
8978 | gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#'); | |
8979 | *p2++ = annex[i]; | |
c906108c SS |
8980 | i++; |
8981 | } | |
1e3ff5ad AC |
8982 | *p2 = '\0'; |
8983 | gdb_assert (annex[i] == '\0'); | |
c906108c | 8984 | |
6d820c5c | 8985 | i = putpkt (rs->buf); |
c5aa993b | 8986 | if (i < 0) |
2ed4b548 | 8987 | return TARGET_XFER_E_IO; |
c906108c | 8988 | |
6d820c5c DJ |
8989 | getpkt (&rs->buf, &rs->buf_size, 0); |
8990 | strcpy ((char *) readbuf, rs->buf); | |
c906108c | 8991 | |
9b409511 YQ |
8992 | *xfered_len = strlen ((char *) readbuf); |
8993 | return TARGET_XFER_OK; | |
c906108c SS |
8994 | } |
8995 | ||
08388c79 DE |
8996 | static int |
8997 | remote_search_memory (struct target_ops* ops, | |
8998 | CORE_ADDR start_addr, ULONGEST search_space_len, | |
8999 | const gdb_byte *pattern, ULONGEST pattern_len, | |
9000 | CORE_ADDR *found_addrp) | |
9001 | { | |
f5656ead | 9002 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
08388c79 DE |
9003 | struct remote_state *rs = get_remote_state (); |
9004 | int max_size = get_memory_write_packet_size (); | |
9005 | struct packet_config *packet = | |
9006 | &remote_protocol_packets[PACKET_qSearch_memory]; | |
0df8b418 MS |
9007 | /* Number of packet bytes used to encode the pattern; |
9008 | this could be more than PATTERN_LEN due to escape characters. */ | |
08388c79 | 9009 | int escaped_pattern_len; |
0df8b418 | 9010 | /* Amount of pattern that was encodable in the packet. */ |
08388c79 DE |
9011 | int used_pattern_len; |
9012 | int i; | |
9013 | int found; | |
9014 | ULONGEST found_addr; | |
9015 | ||
9016 | /* Don't go to the target if we don't have to. | |
9017 | This is done before checking packet->support to avoid the possibility that | |
9018 | a success for this edge case means the facility works in general. */ | |
9019 | if (pattern_len > search_space_len) | |
9020 | return 0; | |
9021 | if (pattern_len == 0) | |
9022 | { | |
9023 | *found_addrp = start_addr; | |
9024 | return 1; | |
9025 | } | |
9026 | ||
9027 | /* If we already know the packet isn't supported, fall back to the simple | |
9028 | way of searching memory. */ | |
9029 | ||
4082afcc | 9030 | if (packet_config_support (packet) == PACKET_DISABLE) |
08388c79 DE |
9031 | { |
9032 | /* Target doesn't provided special support, fall back and use the | |
9033 | standard support (copy memory and do the search here). */ | |
9034 | return simple_search_memory (ops, start_addr, search_space_len, | |
9035 | pattern, pattern_len, found_addrp); | |
9036 | } | |
9037 | ||
28439a30 PA |
9038 | /* Make sure the remote is pointing at the right process. */ |
9039 | set_general_process (); | |
9040 | ||
08388c79 DE |
9041 | /* Insert header. */ |
9042 | i = snprintf (rs->buf, max_size, | |
9043 | "qSearch:memory:%s;%s;", | |
5af949e3 | 9044 | phex_nz (start_addr, addr_size), |
08388c79 DE |
9045 | phex_nz (search_space_len, sizeof (search_space_len))); |
9046 | max_size -= (i + 1); | |
9047 | ||
9048 | /* Escape as much data as fits into rs->buf. */ | |
9049 | escaped_pattern_len = | |
bc20a4af | 9050 | remote_escape_output (pattern, pattern_len, (gdb_byte *) rs->buf + i, |
08388c79 DE |
9051 | &used_pattern_len, max_size); |
9052 | ||
9053 | /* Bail if the pattern is too large. */ | |
9054 | if (used_pattern_len != pattern_len) | |
9b20d036 | 9055 | error (_("Pattern is too large to transmit to remote target.")); |
08388c79 DE |
9056 | |
9057 | if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0 | |
9058 | || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0 | |
9059 | || packet_ok (rs->buf, packet) != PACKET_OK) | |
9060 | { | |
9061 | /* The request may not have worked because the command is not | |
9062 | supported. If so, fall back to the simple way. */ | |
9063 | if (packet->support == PACKET_DISABLE) | |
9064 | { | |
9065 | return simple_search_memory (ops, start_addr, search_space_len, | |
9066 | pattern, pattern_len, found_addrp); | |
9067 | } | |
9068 | return -1; | |
9069 | } | |
9070 | ||
9071 | if (rs->buf[0] == '0') | |
9072 | found = 0; | |
9073 | else if (rs->buf[0] == '1') | |
9074 | { | |
9075 | found = 1; | |
9076 | if (rs->buf[1] != ',') | |
10e0fa18 | 9077 | error (_("Unknown qSearch:memory reply: %s"), rs->buf); |
08388c79 DE |
9078 | unpack_varlen_hex (rs->buf + 2, &found_addr); |
9079 | *found_addrp = found_addr; | |
9080 | } | |
9081 | else | |
10e0fa18 | 9082 | error (_("Unknown qSearch:memory reply: %s"), rs->buf); |
08388c79 DE |
9083 | |
9084 | return found; | |
9085 | } | |
9086 | ||
96baa820 | 9087 | static void |
a30bf1f1 | 9088 | remote_rcmd (struct target_ops *self, const char *command, |
d9fcf2fb | 9089 | struct ui_file *outbuf) |
96baa820 | 9090 | { |
d01949b6 | 9091 | struct remote_state *rs = get_remote_state (); |
2e9f7625 | 9092 | char *p = rs->buf; |
96baa820 | 9093 | |
5d93a237 | 9094 | if (!rs->remote_desc) |
8a3fe4f8 | 9095 | error (_("remote rcmd is only available after target open")); |
96baa820 | 9096 | |
23860348 | 9097 | /* Send a NULL command across as an empty command. */ |
7be570e7 JM |
9098 | if (command == NULL) |
9099 | command = ""; | |
9100 | ||
23860348 | 9101 | /* The query prefix. */ |
2e9f7625 DJ |
9102 | strcpy (rs->buf, "qRcmd,"); |
9103 | p = strchr (rs->buf, '\0'); | |
96baa820 | 9104 | |
3e43a32a MS |
9105 | if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) |
9106 | > get_remote_packet_size ()) | |
8a3fe4f8 | 9107 | error (_("\"monitor\" command ``%s'' is too long."), command); |
96baa820 | 9108 | |
23860348 | 9109 | /* Encode the actual command. */ |
a30bf1f1 | 9110 | bin2hex ((const gdb_byte *) command, p, strlen (command)); |
96baa820 | 9111 | |
6d820c5c | 9112 | if (putpkt (rs->buf) < 0) |
8a3fe4f8 | 9113 | error (_("Communication problem with target.")); |
96baa820 JM |
9114 | |
9115 | /* get/display the response */ | |
9116 | while (1) | |
9117 | { | |
2e9f7625 DJ |
9118 | char *buf; |
9119 | ||
00bf0b85 | 9120 | /* XXX - see also remote_get_noisy_reply(). */ |
5b37825d | 9121 | QUIT; /* Allow user to bail out with ^C. */ |
2e9f7625 | 9122 | rs->buf[0] = '\0'; |
5b37825d PW |
9123 | if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1) |
9124 | { | |
9125 | /* Timeout. Continue to (try to) read responses. | |
9126 | This is better than stopping with an error, assuming the stub | |
9127 | is still executing the (long) monitor command. | |
9128 | If needed, the user can interrupt gdb using C-c, obtaining | |
9129 | an effect similar to stop on timeout. */ | |
9130 | continue; | |
9131 | } | |
2e9f7625 | 9132 | buf = rs->buf; |
96baa820 | 9133 | if (buf[0] == '\0') |
8a3fe4f8 | 9134 | error (_("Target does not support this command.")); |
96baa820 JM |
9135 | if (buf[0] == 'O' && buf[1] != 'K') |
9136 | { | |
23860348 | 9137 | remote_console_output (buf + 1); /* 'O' message from stub. */ |
96baa820 JM |
9138 | continue; |
9139 | } | |
9140 | if (strcmp (buf, "OK") == 0) | |
9141 | break; | |
7be570e7 JM |
9142 | if (strlen (buf) == 3 && buf[0] == 'E' |
9143 | && isdigit (buf[1]) && isdigit (buf[2])) | |
9144 | { | |
8a3fe4f8 | 9145 | error (_("Protocol error with Rcmd")); |
7be570e7 | 9146 | } |
96baa820 JM |
9147 | for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2) |
9148 | { | |
9149 | char c = (fromhex (p[0]) << 4) + fromhex (p[1]); | |
a744cf53 | 9150 | |
96baa820 JM |
9151 | fputc_unfiltered (c, outbuf); |
9152 | } | |
9153 | break; | |
9154 | } | |
9155 | } | |
9156 | ||
fd79ecee DJ |
9157 | static VEC(mem_region_s) * |
9158 | remote_memory_map (struct target_ops *ops) | |
9159 | { | |
9160 | VEC(mem_region_s) *result = NULL; | |
9161 | char *text = target_read_stralloc (¤t_target, | |
9162 | TARGET_OBJECT_MEMORY_MAP, NULL); | |
9163 | ||
9164 | if (text) | |
9165 | { | |
9166 | struct cleanup *back_to = make_cleanup (xfree, text); | |
a744cf53 | 9167 | |
fd79ecee DJ |
9168 | result = parse_memory_map (text); |
9169 | do_cleanups (back_to); | |
9170 | } | |
9171 | ||
9172 | return result; | |
9173 | } | |
9174 | ||
c906108c | 9175 | static void |
fba45db2 | 9176 | packet_command (char *args, int from_tty) |
c906108c | 9177 | { |
d01949b6 | 9178 | struct remote_state *rs = get_remote_state (); |
c906108c | 9179 | |
5d93a237 | 9180 | if (!rs->remote_desc) |
8a3fe4f8 | 9181 | error (_("command can only be used with remote target")); |
c906108c | 9182 | |
c5aa993b | 9183 | if (!args) |
8a3fe4f8 | 9184 | error (_("remote-packet command requires packet text as argument")); |
c906108c SS |
9185 | |
9186 | puts_filtered ("sending: "); | |
9187 | print_packet (args); | |
9188 | puts_filtered ("\n"); | |
9189 | putpkt (args); | |
9190 | ||
6d820c5c | 9191 | getpkt (&rs->buf, &rs->buf_size, 0); |
c906108c | 9192 | puts_filtered ("received: "); |
6d820c5c | 9193 | print_packet (rs->buf); |
c906108c SS |
9194 | puts_filtered ("\n"); |
9195 | } | |
9196 | ||
9197 | #if 0 | |
23860348 | 9198 | /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */ |
c906108c | 9199 | |
a14ed312 | 9200 | static void display_thread_info (struct gdb_ext_thread_info *info); |
c906108c | 9201 | |
a14ed312 | 9202 | static void threadset_test_cmd (char *cmd, int tty); |
c906108c | 9203 | |
a14ed312 | 9204 | static void threadalive_test (char *cmd, int tty); |
c906108c | 9205 | |
a14ed312 | 9206 | static void threadlist_test_cmd (char *cmd, int tty); |
c906108c | 9207 | |
23860348 | 9208 | int get_and_display_threadinfo (threadref *ref); |
c906108c | 9209 | |
a14ed312 | 9210 | static void threadinfo_test_cmd (char *cmd, int tty); |
c906108c | 9211 | |
23860348 | 9212 | static int thread_display_step (threadref *ref, void *context); |
c906108c | 9213 | |
a14ed312 | 9214 | static void threadlist_update_test_cmd (char *cmd, int tty); |
c906108c | 9215 | |
a14ed312 | 9216 | static void init_remote_threadtests (void); |
c906108c | 9217 | |
23860348 | 9218 | #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */ |
c906108c SS |
9219 | |
9220 | static void | |
fba45db2 | 9221 | threadset_test_cmd (char *cmd, int tty) |
c906108c SS |
9222 | { |
9223 | int sample_thread = SAMPLE_THREAD; | |
9224 | ||
a3f17187 | 9225 | printf_filtered (_("Remote threadset test\n")); |
79d7f229 | 9226 | set_general_thread (sample_thread); |
c906108c SS |
9227 | } |
9228 | ||
9229 | ||
9230 | static void | |
fba45db2 | 9231 | threadalive_test (char *cmd, int tty) |
c906108c SS |
9232 | { |
9233 | int sample_thread = SAMPLE_THREAD; | |
79d7f229 | 9234 | int pid = ptid_get_pid (inferior_ptid); |
ba348170 | 9235 | ptid_t ptid = ptid_build (pid, sample_thread, 0); |
c906108c | 9236 | |
79d7f229 | 9237 | if (remote_thread_alive (ptid)) |
c906108c SS |
9238 | printf_filtered ("PASS: Thread alive test\n"); |
9239 | else | |
9240 | printf_filtered ("FAIL: Thread alive test\n"); | |
9241 | } | |
9242 | ||
23860348 | 9243 | void output_threadid (char *title, threadref *ref); |
c906108c SS |
9244 | |
9245 | void | |
fba45db2 | 9246 | output_threadid (char *title, threadref *ref) |
c906108c SS |
9247 | { |
9248 | char hexid[20]; | |
9249 | ||
23860348 | 9250 | pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */ |
c906108c SS |
9251 | hexid[16] = 0; |
9252 | printf_filtered ("%s %s\n", title, (&hexid[0])); | |
9253 | } | |
9254 | ||
9255 | static void | |
fba45db2 | 9256 | threadlist_test_cmd (char *cmd, int tty) |
c906108c SS |
9257 | { |
9258 | int startflag = 1; | |
9259 | threadref nextthread; | |
9260 | int done, result_count; | |
9261 | threadref threadlist[3]; | |
9262 | ||
9263 | printf_filtered ("Remote Threadlist test\n"); | |
9264 | if (!remote_get_threadlist (startflag, &nextthread, 3, &done, | |
9265 | &result_count, &threadlist[0])) | |
9266 | printf_filtered ("FAIL: threadlist test\n"); | |
9267 | else | |
9268 | { | |
9269 | threadref *scan = threadlist; | |
9270 | threadref *limit = scan + result_count; | |
9271 | ||
9272 | while (scan < limit) | |
9273 | output_threadid (" thread ", scan++); | |
9274 | } | |
9275 | } | |
9276 | ||
9277 | void | |
fba45db2 | 9278 | display_thread_info (struct gdb_ext_thread_info *info) |
c906108c SS |
9279 | { |
9280 | output_threadid ("Threadid: ", &info->threadid); | |
9281 | printf_filtered ("Name: %s\n ", info->shortname); | |
9282 | printf_filtered ("State: %s\n", info->display); | |
9283 | printf_filtered ("other: %s\n\n", info->more_display); | |
9284 | } | |
9285 | ||
9286 | int | |
fba45db2 | 9287 | get_and_display_threadinfo (threadref *ref) |
c906108c SS |
9288 | { |
9289 | int result; | |
9290 | int set; | |
9291 | struct gdb_ext_thread_info threadinfo; | |
9292 | ||
9293 | set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME | |
9294 | | TAG_MOREDISPLAY | TAG_DISPLAY; | |
9295 | if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo))) | |
9296 | display_thread_info (&threadinfo); | |
9297 | return result; | |
9298 | } | |
9299 | ||
9300 | static void | |
fba45db2 | 9301 | threadinfo_test_cmd (char *cmd, int tty) |
c906108c SS |
9302 | { |
9303 | int athread = SAMPLE_THREAD; | |
9304 | threadref thread; | |
9305 | int set; | |
9306 | ||
9307 | int_to_threadref (&thread, athread); | |
9308 | printf_filtered ("Remote Threadinfo test\n"); | |
9309 | if (!get_and_display_threadinfo (&thread)) | |
9310 | printf_filtered ("FAIL cannot get thread info\n"); | |
9311 | } | |
9312 | ||
9313 | static int | |
fba45db2 | 9314 | thread_display_step (threadref *ref, void *context) |
c906108c SS |
9315 | { |
9316 | /* output_threadid(" threadstep ",ref); *//* simple test */ | |
9317 | return get_and_display_threadinfo (ref); | |
9318 | } | |
9319 | ||
9320 | static void | |
fba45db2 | 9321 | threadlist_update_test_cmd (char *cmd, int tty) |
c906108c SS |
9322 | { |
9323 | printf_filtered ("Remote Threadlist update test\n"); | |
9324 | remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS); | |
9325 | } | |
9326 | ||
9327 | static void | |
9328 | init_remote_threadtests (void) | |
9329 | { | |
3e43a32a MS |
9330 | add_com ("tlist", class_obscure, threadlist_test_cmd, |
9331 | _("Fetch and print the remote list of " | |
9332 | "thread identifiers, one pkt only")); | |
c906108c | 9333 | add_com ("tinfo", class_obscure, threadinfo_test_cmd, |
1bedd215 | 9334 | _("Fetch and display info about one thread")); |
c906108c | 9335 | add_com ("tset", class_obscure, threadset_test_cmd, |
1bedd215 | 9336 | _("Test setting to a different thread")); |
c906108c | 9337 | add_com ("tupd", class_obscure, threadlist_update_test_cmd, |
1bedd215 | 9338 | _("Iterate through updating all remote thread info")); |
c906108c | 9339 | add_com ("talive", class_obscure, threadalive_test, |
1bedd215 | 9340 | _(" Remote thread alive test ")); |
c906108c SS |
9341 | } |
9342 | ||
9343 | #endif /* 0 */ | |
9344 | ||
f3fb8c85 MS |
9345 | /* Convert a thread ID to a string. Returns the string in a static |
9346 | buffer. */ | |
9347 | ||
9348 | static char * | |
117de6a9 | 9349 | remote_pid_to_str (struct target_ops *ops, ptid_t ptid) |
f3fb8c85 | 9350 | { |
79d7f229 | 9351 | static char buf[64]; |
82f73884 | 9352 | struct remote_state *rs = get_remote_state (); |
f3fb8c85 | 9353 | |
7cee1e54 PA |
9354 | if (ptid_equal (ptid, null_ptid)) |
9355 | return normal_pid_to_str (ptid); | |
9356 | else if (ptid_is_pid (ptid)) | |
ecd0ada5 PA |
9357 | { |
9358 | /* Printing an inferior target id. */ | |
9359 | ||
9360 | /* When multi-process extensions are off, there's no way in the | |
9361 | remote protocol to know the remote process id, if there's any | |
9362 | at all. There's one exception --- when we're connected with | |
9363 | target extended-remote, and we manually attached to a process | |
9364 | with "attach PID". We don't record anywhere a flag that | |
9365 | allows us to distinguish that case from the case of | |
9366 | connecting with extended-remote and the stub already being | |
9367 | attached to a process, and reporting yes to qAttached, hence | |
9368 | no smart special casing here. */ | |
9369 | if (!remote_multi_process_p (rs)) | |
9370 | { | |
9371 | xsnprintf (buf, sizeof buf, "Remote target"); | |
9372 | return buf; | |
9373 | } | |
9374 | ||
9375 | return normal_pid_to_str (ptid); | |
82f73884 | 9376 | } |
ecd0ada5 | 9377 | else |
79d7f229 | 9378 | { |
ecd0ada5 PA |
9379 | if (ptid_equal (magic_null_ptid, ptid)) |
9380 | xsnprintf (buf, sizeof buf, "Thread <main>"); | |
901f9912 | 9381 | else if (rs->extended && remote_multi_process_p (rs)) |
ecd0ada5 | 9382 | xsnprintf (buf, sizeof buf, "Thread %d.%ld", |
ba348170 | 9383 | ptid_get_pid (ptid), ptid_get_lwp (ptid)); |
ecd0ada5 PA |
9384 | else |
9385 | xsnprintf (buf, sizeof buf, "Thread %ld", | |
ba348170 | 9386 | ptid_get_lwp (ptid)); |
79d7f229 PA |
9387 | return buf; |
9388 | } | |
f3fb8c85 MS |
9389 | } |
9390 | ||
38691318 KB |
9391 | /* Get the address of the thread local variable in OBJFILE which is |
9392 | stored at OFFSET within the thread local storage for thread PTID. */ | |
9393 | ||
9394 | static CORE_ADDR | |
117de6a9 PA |
9395 | remote_get_thread_local_address (struct target_ops *ops, |
9396 | ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset) | |
38691318 | 9397 | { |
4082afcc | 9398 | if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE) |
38691318 KB |
9399 | { |
9400 | struct remote_state *rs = get_remote_state (); | |
6d820c5c | 9401 | char *p = rs->buf; |
82f73884 | 9402 | char *endp = rs->buf + get_remote_packet_size (); |
571dd617 | 9403 | enum packet_result result; |
38691318 KB |
9404 | |
9405 | strcpy (p, "qGetTLSAddr:"); | |
9406 | p += strlen (p); | |
82f73884 | 9407 | p = write_ptid (p, endp, ptid); |
38691318 KB |
9408 | *p++ = ','; |
9409 | p += hexnumstr (p, offset); | |
9410 | *p++ = ','; | |
9411 | p += hexnumstr (p, lm); | |
9412 | *p++ = '\0'; | |
9413 | ||
6d820c5c DJ |
9414 | putpkt (rs->buf); |
9415 | getpkt (&rs->buf, &rs->buf_size, 0); | |
3e43a32a MS |
9416 | result = packet_ok (rs->buf, |
9417 | &remote_protocol_packets[PACKET_qGetTLSAddr]); | |
571dd617 | 9418 | if (result == PACKET_OK) |
38691318 KB |
9419 | { |
9420 | ULONGEST result; | |
9421 | ||
6d820c5c | 9422 | unpack_varlen_hex (rs->buf, &result); |
38691318 KB |
9423 | return result; |
9424 | } | |
571dd617 | 9425 | else if (result == PACKET_UNKNOWN) |
109c3e39 AC |
9426 | throw_error (TLS_GENERIC_ERROR, |
9427 | _("Remote target doesn't support qGetTLSAddr packet")); | |
38691318 | 9428 | else |
109c3e39 AC |
9429 | throw_error (TLS_GENERIC_ERROR, |
9430 | _("Remote target failed to process qGetTLSAddr request")); | |
38691318 KB |
9431 | } |
9432 | else | |
109c3e39 AC |
9433 | throw_error (TLS_GENERIC_ERROR, |
9434 | _("TLS not supported or disabled on this target")); | |
38691318 KB |
9435 | /* Not reached. */ |
9436 | return 0; | |
9437 | } | |
9438 | ||
711e434b PM |
9439 | /* Provide thread local base, i.e. Thread Information Block address. |
9440 | Returns 1 if ptid is found and thread_local_base is non zero. */ | |
9441 | ||
70221824 | 9442 | static int |
bd7ae0f5 | 9443 | remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr) |
711e434b | 9444 | { |
4082afcc | 9445 | if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE) |
711e434b PM |
9446 | { |
9447 | struct remote_state *rs = get_remote_state (); | |
9448 | char *p = rs->buf; | |
9449 | char *endp = rs->buf + get_remote_packet_size (); | |
9450 | enum packet_result result; | |
9451 | ||
9452 | strcpy (p, "qGetTIBAddr:"); | |
9453 | p += strlen (p); | |
9454 | p = write_ptid (p, endp, ptid); | |
9455 | *p++ = '\0'; | |
9456 | ||
9457 | putpkt (rs->buf); | |
9458 | getpkt (&rs->buf, &rs->buf_size, 0); | |
9459 | result = packet_ok (rs->buf, | |
9460 | &remote_protocol_packets[PACKET_qGetTIBAddr]); | |
9461 | if (result == PACKET_OK) | |
9462 | { | |
9463 | ULONGEST result; | |
9464 | ||
9465 | unpack_varlen_hex (rs->buf, &result); | |
9466 | if (addr) | |
9467 | *addr = (CORE_ADDR) result; | |
9468 | return 1; | |
9469 | } | |
9470 | else if (result == PACKET_UNKNOWN) | |
9471 | error (_("Remote target doesn't support qGetTIBAddr packet")); | |
9472 | else | |
9473 | error (_("Remote target failed to process qGetTIBAddr request")); | |
9474 | } | |
9475 | else | |
9476 | error (_("qGetTIBAddr not supported or disabled on this target")); | |
9477 | /* Not reached. */ | |
9478 | return 0; | |
9479 | } | |
9480 | ||
29709017 DJ |
9481 | /* Support for inferring a target description based on the current |
9482 | architecture and the size of a 'g' packet. While the 'g' packet | |
9483 | can have any size (since optional registers can be left off the | |
9484 | end), some sizes are easily recognizable given knowledge of the | |
9485 | approximate architecture. */ | |
9486 | ||
9487 | struct remote_g_packet_guess | |
9488 | { | |
9489 | int bytes; | |
9490 | const struct target_desc *tdesc; | |
9491 | }; | |
9492 | typedef struct remote_g_packet_guess remote_g_packet_guess_s; | |
9493 | DEF_VEC_O(remote_g_packet_guess_s); | |
9494 | ||
9495 | struct remote_g_packet_data | |
9496 | { | |
9497 | VEC(remote_g_packet_guess_s) *guesses; | |
9498 | }; | |
9499 | ||
9500 | static struct gdbarch_data *remote_g_packet_data_handle; | |
9501 | ||
9502 | static void * | |
9503 | remote_g_packet_data_init (struct obstack *obstack) | |
9504 | { | |
9505 | return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data); | |
9506 | } | |
9507 | ||
9508 | void | |
9509 | register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes, | |
9510 | const struct target_desc *tdesc) | |
9511 | { | |
9512 | struct remote_g_packet_data *data | |
9513 | = gdbarch_data (gdbarch, remote_g_packet_data_handle); | |
9514 | struct remote_g_packet_guess new_guess, *guess; | |
9515 | int ix; | |
9516 | ||
9517 | gdb_assert (tdesc != NULL); | |
9518 | ||
9519 | for (ix = 0; | |
9520 | VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess); | |
9521 | ix++) | |
9522 | if (guess->bytes == bytes) | |
9523 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 9524 | _("Duplicate g packet description added for size %d"), |
29709017 DJ |
9525 | bytes); |
9526 | ||
9527 | new_guess.bytes = bytes; | |
9528 | new_guess.tdesc = tdesc; | |
9529 | VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess); | |
9530 | } | |
9531 | ||
d962ef82 DJ |
9532 | /* Return 1 if remote_read_description would do anything on this target |
9533 | and architecture, 0 otherwise. */ | |
9534 | ||
9535 | static int | |
9536 | remote_read_description_p (struct target_ops *target) | |
9537 | { | |
9538 | struct remote_g_packet_data *data | |
f5656ead | 9539 | = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle); |
d962ef82 DJ |
9540 | |
9541 | if (!VEC_empty (remote_g_packet_guess_s, data->guesses)) | |
9542 | return 1; | |
9543 | ||
9544 | return 0; | |
9545 | } | |
9546 | ||
29709017 DJ |
9547 | static const struct target_desc * |
9548 | remote_read_description (struct target_ops *target) | |
9549 | { | |
9550 | struct remote_g_packet_data *data | |
f5656ead | 9551 | = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle); |
29709017 | 9552 | |
d962ef82 DJ |
9553 | /* Do not try this during initial connection, when we do not know |
9554 | whether there is a running but stopped thread. */ | |
9555 | if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid)) | |
2117c711 | 9556 | return target->beneath->to_read_description (target->beneath); |
d962ef82 | 9557 | |
29709017 DJ |
9558 | if (!VEC_empty (remote_g_packet_guess_s, data->guesses)) |
9559 | { | |
9560 | struct remote_g_packet_guess *guess; | |
9561 | int ix; | |
9562 | int bytes = send_g_packet (); | |
9563 | ||
9564 | for (ix = 0; | |
9565 | VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess); | |
9566 | ix++) | |
9567 | if (guess->bytes == bytes) | |
9568 | return guess->tdesc; | |
9569 | ||
9570 | /* We discard the g packet. A minor optimization would be to | |
9571 | hold on to it, and fill the register cache once we have selected | |
9572 | an architecture, but it's too tricky to do safely. */ | |
9573 | } | |
9574 | ||
2117c711 | 9575 | return target->beneath->to_read_description (target->beneath); |
29709017 DJ |
9576 | } |
9577 | ||
a6b151f1 DJ |
9578 | /* Remote file transfer support. This is host-initiated I/O, not |
9579 | target-initiated; for target-initiated, see remote-fileio.c. */ | |
9580 | ||
9581 | /* If *LEFT is at least the length of STRING, copy STRING to | |
9582 | *BUFFER, update *BUFFER to point to the new end of the buffer, and | |
9583 | decrease *LEFT. Otherwise raise an error. */ | |
9584 | ||
9585 | static void | |
9586 | remote_buffer_add_string (char **buffer, int *left, char *string) | |
9587 | { | |
9588 | int len = strlen (string); | |
9589 | ||
9590 | if (len > *left) | |
9591 | error (_("Packet too long for target.")); | |
9592 | ||
9593 | memcpy (*buffer, string, len); | |
9594 | *buffer += len; | |
9595 | *left -= len; | |
9596 | ||
9597 | /* NUL-terminate the buffer as a convenience, if there is | |
9598 | room. */ | |
9599 | if (*left) | |
9600 | **buffer = '\0'; | |
9601 | } | |
9602 | ||
9603 | /* If *LEFT is large enough, hex encode LEN bytes from BYTES into | |
9604 | *BUFFER, update *BUFFER to point to the new end of the buffer, and | |
9605 | decrease *LEFT. Otherwise raise an error. */ | |
9606 | ||
9607 | static void | |
9608 | remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes, | |
9609 | int len) | |
9610 | { | |
9611 | if (2 * len > *left) | |
9612 | error (_("Packet too long for target.")); | |
9613 | ||
9614 | bin2hex (bytes, *buffer, len); | |
9615 | *buffer += 2 * len; | |
9616 | *left -= 2 * len; | |
9617 | ||
9618 | /* NUL-terminate the buffer as a convenience, if there is | |
9619 | room. */ | |
9620 | if (*left) | |
9621 | **buffer = '\0'; | |
9622 | } | |
9623 | ||
9624 | /* If *LEFT is large enough, convert VALUE to hex and add it to | |
9625 | *BUFFER, update *BUFFER to point to the new end of the buffer, and | |
9626 | decrease *LEFT. Otherwise raise an error. */ | |
9627 | ||
9628 | static void | |
9629 | remote_buffer_add_int (char **buffer, int *left, ULONGEST value) | |
9630 | { | |
9631 | int len = hexnumlen (value); | |
9632 | ||
9633 | if (len > *left) | |
9634 | error (_("Packet too long for target.")); | |
9635 | ||
9636 | hexnumstr (*buffer, value); | |
9637 | *buffer += len; | |
9638 | *left -= len; | |
9639 | ||
9640 | /* NUL-terminate the buffer as a convenience, if there is | |
9641 | room. */ | |
9642 | if (*left) | |
9643 | **buffer = '\0'; | |
9644 | } | |
9645 | ||
9646 | /* Parse an I/O result packet from BUFFER. Set RETCODE to the return | |
9647 | value, *REMOTE_ERRNO to the remote error number or zero if none | |
9648 | was included, and *ATTACHMENT to point to the start of the annex | |
9649 | if any. The length of the packet isn't needed here; there may | |
9650 | be NUL bytes in BUFFER, but they will be after *ATTACHMENT. | |
9651 | ||
9652 | Return 0 if the packet could be parsed, -1 if it could not. If | |
9653 | -1 is returned, the other variables may not be initialized. */ | |
9654 | ||
9655 | static int | |
9656 | remote_hostio_parse_result (char *buffer, int *retcode, | |
9657 | int *remote_errno, char **attachment) | |
9658 | { | |
9659 | char *p, *p2; | |
9660 | ||
9661 | *remote_errno = 0; | |
9662 | *attachment = NULL; | |
9663 | ||
9664 | if (buffer[0] != 'F') | |
9665 | return -1; | |
9666 | ||
9667 | errno = 0; | |
9668 | *retcode = strtol (&buffer[1], &p, 16); | |
9669 | if (errno != 0 || p == &buffer[1]) | |
9670 | return -1; | |
9671 | ||
9672 | /* Check for ",errno". */ | |
9673 | if (*p == ',') | |
9674 | { | |
9675 | errno = 0; | |
9676 | *remote_errno = strtol (p + 1, &p2, 16); | |
9677 | if (errno != 0 || p + 1 == p2) | |
9678 | return -1; | |
9679 | p = p2; | |
9680 | } | |
9681 | ||
9682 | /* Check for ";attachment". If there is no attachment, the | |
9683 | packet should end here. */ | |
9684 | if (*p == ';') | |
9685 | { | |
9686 | *attachment = p + 1; | |
9687 | return 0; | |
9688 | } | |
9689 | else if (*p == '\0') | |
9690 | return 0; | |
9691 | else | |
9692 | return -1; | |
9693 | } | |
9694 | ||
9695 | /* Send a prepared I/O packet to the target and read its response. | |
9696 | The prepared packet is in the global RS->BUF before this function | |
9697 | is called, and the answer is there when we return. | |
9698 | ||
9699 | COMMAND_BYTES is the length of the request to send, which may include | |
9700 | binary data. WHICH_PACKET is the packet configuration to check | |
9701 | before attempting a packet. If an error occurs, *REMOTE_ERRNO | |
9702 | is set to the error number and -1 is returned. Otherwise the value | |
9703 | returned by the function is returned. | |
9704 | ||
9705 | ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an | |
9706 | attachment is expected; an error will be reported if there's a | |
9707 | mismatch. If one is found, *ATTACHMENT will be set to point into | |
9708 | the packet buffer and *ATTACHMENT_LEN will be set to the | |
9709 | attachment's length. */ | |
9710 | ||
9711 | static int | |
9712 | remote_hostio_send_command (int command_bytes, int which_packet, | |
9713 | int *remote_errno, char **attachment, | |
9714 | int *attachment_len) | |
9715 | { | |
9716 | struct remote_state *rs = get_remote_state (); | |
9717 | int ret, bytes_read; | |
9718 | char *attachment_tmp; | |
9719 | ||
5d93a237 | 9720 | if (!rs->remote_desc |
4082afcc | 9721 | || packet_support (which_packet) == PACKET_DISABLE) |
a6b151f1 DJ |
9722 | { |
9723 | *remote_errno = FILEIO_ENOSYS; | |
9724 | return -1; | |
9725 | } | |
9726 | ||
9727 | putpkt_binary (rs->buf, command_bytes); | |
9728 | bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0); | |
9729 | ||
9730 | /* If it timed out, something is wrong. Don't try to parse the | |
9731 | buffer. */ | |
9732 | if (bytes_read < 0) | |
9733 | { | |
9734 | *remote_errno = FILEIO_EINVAL; | |
9735 | return -1; | |
9736 | } | |
9737 | ||
9738 | switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet])) | |
9739 | { | |
9740 | case PACKET_ERROR: | |
9741 | *remote_errno = FILEIO_EINVAL; | |
9742 | return -1; | |
9743 | case PACKET_UNKNOWN: | |
9744 | *remote_errno = FILEIO_ENOSYS; | |
9745 | return -1; | |
9746 | case PACKET_OK: | |
9747 | break; | |
9748 | } | |
9749 | ||
9750 | if (remote_hostio_parse_result (rs->buf, &ret, remote_errno, | |
9751 | &attachment_tmp)) | |
9752 | { | |
9753 | *remote_errno = FILEIO_EINVAL; | |
9754 | return -1; | |
9755 | } | |
9756 | ||
9757 | /* Make sure we saw an attachment if and only if we expected one. */ | |
9758 | if ((attachment_tmp == NULL && attachment != NULL) | |
9759 | || (attachment_tmp != NULL && attachment == NULL)) | |
9760 | { | |
9761 | *remote_errno = FILEIO_EINVAL; | |
9762 | return -1; | |
9763 | } | |
9764 | ||
9765 | /* If an attachment was found, it must point into the packet buffer; | |
9766 | work out how many bytes there were. */ | |
9767 | if (attachment_tmp != NULL) | |
9768 | { | |
9769 | *attachment = attachment_tmp; | |
9770 | *attachment_len = bytes_read - (*attachment - rs->buf); | |
9771 | } | |
9772 | ||
9773 | return ret; | |
9774 | } | |
9775 | ||
9776 | /* Open FILENAME on the remote target, using FLAGS and MODE. Return a | |
9777 | remote file descriptor, or -1 if an error occurs (and set | |
9778 | *REMOTE_ERRNO). */ | |
9779 | ||
9780 | static int | |
cd897586 TT |
9781 | remote_hostio_open (struct target_ops *self, |
9782 | const char *filename, int flags, int mode, | |
a6b151f1 DJ |
9783 | int *remote_errno) |
9784 | { | |
9785 | struct remote_state *rs = get_remote_state (); | |
9786 | char *p = rs->buf; | |
9787 | int left = get_remote_packet_size () - 1; | |
9788 | ||
9789 | remote_buffer_add_string (&p, &left, "vFile:open:"); | |
9790 | ||
9791 | remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename, | |
9792 | strlen (filename)); | |
9793 | remote_buffer_add_string (&p, &left, ","); | |
9794 | ||
9795 | remote_buffer_add_int (&p, &left, flags); | |
9796 | remote_buffer_add_string (&p, &left, ","); | |
9797 | ||
9798 | remote_buffer_add_int (&p, &left, mode); | |
9799 | ||
9800 | return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open, | |
9801 | remote_errno, NULL, NULL); | |
9802 | } | |
9803 | ||
9804 | /* Write up to LEN bytes from WRITE_BUF to FD on the remote target. | |
9805 | Return the number of bytes written, or -1 if an error occurs (and | |
9806 | set *REMOTE_ERRNO). */ | |
9807 | ||
9808 | static int | |
0d866f62 TT |
9809 | remote_hostio_pwrite (struct target_ops *self, |
9810 | int fd, const gdb_byte *write_buf, int len, | |
a6b151f1 DJ |
9811 | ULONGEST offset, int *remote_errno) |
9812 | { | |
9813 | struct remote_state *rs = get_remote_state (); | |
9814 | char *p = rs->buf; | |
9815 | int left = get_remote_packet_size (); | |
9816 | int out_len; | |
9817 | ||
9818 | remote_buffer_add_string (&p, &left, "vFile:pwrite:"); | |
9819 | ||
9820 | remote_buffer_add_int (&p, &left, fd); | |
9821 | remote_buffer_add_string (&p, &left, ","); | |
9822 | ||
9823 | remote_buffer_add_int (&p, &left, offset); | |
9824 | remote_buffer_add_string (&p, &left, ","); | |
9825 | ||
bc20a4af | 9826 | p += remote_escape_output (write_buf, len, (gdb_byte *) p, &out_len, |
a6b151f1 DJ |
9827 | get_remote_packet_size () - (p - rs->buf)); |
9828 | ||
9829 | return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite, | |
9830 | remote_errno, NULL, NULL); | |
9831 | } | |
9832 | ||
9833 | /* Read up to LEN bytes FD on the remote target into READ_BUF | |
9834 | Return the number of bytes read, or -1 if an error occurs (and | |
9835 | set *REMOTE_ERRNO). */ | |
9836 | ||
9837 | static int | |
a3be983c TT |
9838 | remote_hostio_pread (struct target_ops *self, |
9839 | int fd, gdb_byte *read_buf, int len, | |
a6b151f1 DJ |
9840 | ULONGEST offset, int *remote_errno) |
9841 | { | |
9842 | struct remote_state *rs = get_remote_state (); | |
9843 | char *p = rs->buf; | |
9844 | char *attachment; | |
9845 | int left = get_remote_packet_size (); | |
9846 | int ret, attachment_len; | |
9847 | int read_len; | |
9848 | ||
9849 | remote_buffer_add_string (&p, &left, "vFile:pread:"); | |
9850 | ||
9851 | remote_buffer_add_int (&p, &left, fd); | |
9852 | remote_buffer_add_string (&p, &left, ","); | |
9853 | ||
9854 | remote_buffer_add_int (&p, &left, len); | |
9855 | remote_buffer_add_string (&p, &left, ","); | |
9856 | ||
9857 | remote_buffer_add_int (&p, &left, offset); | |
9858 | ||
9859 | ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread, | |
9860 | remote_errno, &attachment, | |
9861 | &attachment_len); | |
9862 | ||
9863 | if (ret < 0) | |
9864 | return ret; | |
9865 | ||
bc20a4af | 9866 | read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len, |
a6b151f1 DJ |
9867 | read_buf, len); |
9868 | if (read_len != ret) | |
9869 | error (_("Read returned %d, but %d bytes."), ret, (int) read_len); | |
9870 | ||
9871 | return ret; | |
9872 | } | |
9873 | ||
9874 | /* Close FD on the remote target. Return 0, or -1 if an error occurs | |
9875 | (and set *REMOTE_ERRNO). */ | |
9876 | ||
9877 | static int | |
df39ea25 | 9878 | remote_hostio_close (struct target_ops *self, int fd, int *remote_errno) |
a6b151f1 DJ |
9879 | { |
9880 | struct remote_state *rs = get_remote_state (); | |
9881 | char *p = rs->buf; | |
9882 | int left = get_remote_packet_size () - 1; | |
9883 | ||
9884 | remote_buffer_add_string (&p, &left, "vFile:close:"); | |
9885 | ||
9886 | remote_buffer_add_int (&p, &left, fd); | |
9887 | ||
9888 | return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close, | |
9889 | remote_errno, NULL, NULL); | |
9890 | } | |
9891 | ||
9892 | /* Unlink FILENAME on the remote target. Return 0, or -1 if an error | |
9893 | occurs (and set *REMOTE_ERRNO). */ | |
9894 | ||
9895 | static int | |
dbbca37d TT |
9896 | remote_hostio_unlink (struct target_ops *self, |
9897 | const char *filename, int *remote_errno) | |
a6b151f1 DJ |
9898 | { |
9899 | struct remote_state *rs = get_remote_state (); | |
9900 | char *p = rs->buf; | |
9901 | int left = get_remote_packet_size () - 1; | |
9902 | ||
9903 | remote_buffer_add_string (&p, &left, "vFile:unlink:"); | |
9904 | ||
9905 | remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename, | |
9906 | strlen (filename)); | |
9907 | ||
9908 | return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink, | |
9909 | remote_errno, NULL, NULL); | |
9910 | } | |
9911 | ||
b9e7b9c3 UW |
9912 | /* Read value of symbolic link FILENAME on the remote target. Return |
9913 | a null-terminated string allocated via xmalloc, or NULL if an error | |
9914 | occurs (and set *REMOTE_ERRNO). */ | |
9915 | ||
9916 | static char * | |
fab5aa7c TT |
9917 | remote_hostio_readlink (struct target_ops *self, |
9918 | const char *filename, int *remote_errno) | |
b9e7b9c3 UW |
9919 | { |
9920 | struct remote_state *rs = get_remote_state (); | |
9921 | char *p = rs->buf; | |
9922 | char *attachment; | |
9923 | int left = get_remote_packet_size (); | |
9924 | int len, attachment_len; | |
9925 | int read_len; | |
9926 | char *ret; | |
9927 | ||
9928 | remote_buffer_add_string (&p, &left, "vFile:readlink:"); | |
9929 | ||
9930 | remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename, | |
9931 | strlen (filename)); | |
9932 | ||
9933 | len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink, | |
9934 | remote_errno, &attachment, | |
9935 | &attachment_len); | |
9936 | ||
9937 | if (len < 0) | |
9938 | return NULL; | |
9939 | ||
9940 | ret = xmalloc (len + 1); | |
9941 | ||
bc20a4af PA |
9942 | read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len, |
9943 | (gdb_byte *) ret, len); | |
b9e7b9c3 UW |
9944 | if (read_len != len) |
9945 | error (_("Readlink returned %d, but %d bytes."), len, read_len); | |
9946 | ||
9947 | ret[len] = '\0'; | |
9948 | return ret; | |
9949 | } | |
9950 | ||
a6b151f1 DJ |
9951 | static int |
9952 | remote_fileio_errno_to_host (int errnum) | |
9953 | { | |
9954 | switch (errnum) | |
9955 | { | |
9956 | case FILEIO_EPERM: | |
9957 | return EPERM; | |
9958 | case FILEIO_ENOENT: | |
9959 | return ENOENT; | |
9960 | case FILEIO_EINTR: | |
9961 | return EINTR; | |
9962 | case FILEIO_EIO: | |
9963 | return EIO; | |
9964 | case FILEIO_EBADF: | |
9965 | return EBADF; | |
9966 | case FILEIO_EACCES: | |
9967 | return EACCES; | |
9968 | case FILEIO_EFAULT: | |
9969 | return EFAULT; | |
9970 | case FILEIO_EBUSY: | |
9971 | return EBUSY; | |
9972 | case FILEIO_EEXIST: | |
9973 | return EEXIST; | |
9974 | case FILEIO_ENODEV: | |
9975 | return ENODEV; | |
9976 | case FILEIO_ENOTDIR: | |
9977 | return ENOTDIR; | |
9978 | case FILEIO_EISDIR: | |
9979 | return EISDIR; | |
9980 | case FILEIO_EINVAL: | |
9981 | return EINVAL; | |
9982 | case FILEIO_ENFILE: | |
9983 | return ENFILE; | |
9984 | case FILEIO_EMFILE: | |
9985 | return EMFILE; | |
9986 | case FILEIO_EFBIG: | |
9987 | return EFBIG; | |
9988 | case FILEIO_ENOSPC: | |
9989 | return ENOSPC; | |
9990 | case FILEIO_ESPIPE: | |
9991 | return ESPIPE; | |
9992 | case FILEIO_EROFS: | |
9993 | return EROFS; | |
9994 | case FILEIO_ENOSYS: | |
9995 | return ENOSYS; | |
9996 | case FILEIO_ENAMETOOLONG: | |
9997 | return ENAMETOOLONG; | |
9998 | } | |
9999 | return -1; | |
10000 | } | |
10001 | ||
10002 | static char * | |
10003 | remote_hostio_error (int errnum) | |
10004 | { | |
10005 | int host_error = remote_fileio_errno_to_host (errnum); | |
10006 | ||
10007 | if (host_error == -1) | |
10008 | error (_("Unknown remote I/O error %d"), errnum); | |
10009 | else | |
10010 | error (_("Remote I/O error: %s"), safe_strerror (host_error)); | |
10011 | } | |
10012 | ||
a6b151f1 DJ |
10013 | static void |
10014 | remote_hostio_close_cleanup (void *opaque) | |
10015 | { | |
10016 | int fd = *(int *) opaque; | |
10017 | int remote_errno; | |
10018 | ||
df39ea25 | 10019 | remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno); |
a6b151f1 DJ |
10020 | } |
10021 | ||
f1838a98 UW |
10022 | |
10023 | static void * | |
10024 | remote_bfd_iovec_open (struct bfd *abfd, void *open_closure) | |
10025 | { | |
10026 | const char *filename = bfd_get_filename (abfd); | |
10027 | int fd, remote_errno; | |
10028 | int *stream; | |
10029 | ||
10030 | gdb_assert (remote_filename_p (filename)); | |
10031 | ||
cd897586 TT |
10032 | fd = remote_hostio_open (find_target_at (process_stratum), |
10033 | filename + 7, FILEIO_O_RDONLY, 0, &remote_errno); | |
f1838a98 UW |
10034 | if (fd == -1) |
10035 | { | |
10036 | errno = remote_fileio_errno_to_host (remote_errno); | |
10037 | bfd_set_error (bfd_error_system_call); | |
10038 | return NULL; | |
10039 | } | |
10040 | ||
10041 | stream = xmalloc (sizeof (int)); | |
10042 | *stream = fd; | |
10043 | return stream; | |
10044 | } | |
10045 | ||
10046 | static int | |
10047 | remote_bfd_iovec_close (struct bfd *abfd, void *stream) | |
10048 | { | |
10049 | int fd = *(int *)stream; | |
10050 | int remote_errno; | |
10051 | ||
10052 | xfree (stream); | |
10053 | ||
10054 | /* Ignore errors on close; these may happen if the remote | |
10055 | connection was already torn down. */ | |
df39ea25 | 10056 | remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno); |
f1838a98 | 10057 | |
39ed5604 JK |
10058 | /* Zero means success. */ |
10059 | return 0; | |
f1838a98 UW |
10060 | } |
10061 | ||
10062 | static file_ptr | |
10063 | remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf, | |
10064 | file_ptr nbytes, file_ptr offset) | |
10065 | { | |
10066 | int fd = *(int *)stream; | |
10067 | int remote_errno; | |
10068 | file_ptr pos, bytes; | |
10069 | ||
10070 | pos = 0; | |
10071 | while (nbytes > pos) | |
10072 | { | |
a3be983c TT |
10073 | bytes = remote_hostio_pread (find_target_at (process_stratum), |
10074 | fd, (gdb_byte *) buf + pos, nbytes - pos, | |
f1838a98 UW |
10075 | offset + pos, &remote_errno); |
10076 | if (bytes == 0) | |
10077 | /* Success, but no bytes, means end-of-file. */ | |
10078 | break; | |
10079 | if (bytes == -1) | |
10080 | { | |
10081 | errno = remote_fileio_errno_to_host (remote_errno); | |
10082 | bfd_set_error (bfd_error_system_call); | |
10083 | return -1; | |
10084 | } | |
10085 | ||
10086 | pos += bytes; | |
10087 | } | |
10088 | ||
10089 | return pos; | |
10090 | } | |
10091 | ||
10092 | static int | |
10093 | remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb) | |
10094 | { | |
10095 | /* FIXME: We should probably implement remote_hostio_stat. */ | |
10096 | sb->st_size = INT_MAX; | |
10097 | return 0; | |
10098 | } | |
10099 | ||
10100 | int | |
10101 | remote_filename_p (const char *filename) | |
10102 | { | |
3736004f PA |
10103 | return strncmp (filename, |
10104 | REMOTE_SYSROOT_PREFIX, | |
10105 | sizeof (REMOTE_SYSROOT_PREFIX) - 1) == 0; | |
f1838a98 UW |
10106 | } |
10107 | ||
10108 | bfd * | |
10109 | remote_bfd_open (const char *remote_file, const char *target) | |
10110 | { | |
64c31149 TT |
10111 | bfd *abfd = gdb_bfd_openr_iovec (remote_file, target, |
10112 | remote_bfd_iovec_open, NULL, | |
10113 | remote_bfd_iovec_pread, | |
10114 | remote_bfd_iovec_close, | |
10115 | remote_bfd_iovec_stat); | |
10116 | ||
a4453b7e | 10117 | return abfd; |
f1838a98 UW |
10118 | } |
10119 | ||
a6b151f1 DJ |
10120 | void |
10121 | remote_file_put (const char *local_file, const char *remote_file, int from_tty) | |
10122 | { | |
10123 | struct cleanup *back_to, *close_cleanup; | |
10124 | int retcode, fd, remote_errno, bytes, io_size; | |
10125 | FILE *file; | |
10126 | gdb_byte *buffer; | |
10127 | int bytes_in_buffer; | |
10128 | int saw_eof; | |
10129 | ULONGEST offset; | |
5d93a237 | 10130 | struct remote_state *rs = get_remote_state (); |
a6b151f1 | 10131 | |
5d93a237 | 10132 | if (!rs->remote_desc) |
a6b151f1 DJ |
10133 | error (_("command can only be used with remote target")); |
10134 | ||
614c279d | 10135 | file = gdb_fopen_cloexec (local_file, "rb"); |
a6b151f1 DJ |
10136 | if (file == NULL) |
10137 | perror_with_name (local_file); | |
7c8a8b04 | 10138 | back_to = make_cleanup_fclose (file); |
a6b151f1 | 10139 | |
cd897586 TT |
10140 | fd = remote_hostio_open (find_target_at (process_stratum), |
10141 | remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT | |
a6b151f1 DJ |
10142 | | FILEIO_O_TRUNC), |
10143 | 0700, &remote_errno); | |
10144 | if (fd == -1) | |
10145 | remote_hostio_error (remote_errno); | |
10146 | ||
10147 | /* Send up to this many bytes at once. They won't all fit in the | |
10148 | remote packet limit, so we'll transfer slightly fewer. */ | |
10149 | io_size = get_remote_packet_size (); | |
10150 | buffer = xmalloc (io_size); | |
10151 | make_cleanup (xfree, buffer); | |
10152 | ||
10153 | close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd); | |
10154 | ||
10155 | bytes_in_buffer = 0; | |
10156 | saw_eof = 0; | |
10157 | offset = 0; | |
10158 | while (bytes_in_buffer || !saw_eof) | |
10159 | { | |
10160 | if (!saw_eof) | |
10161 | { | |
3e43a32a MS |
10162 | bytes = fread (buffer + bytes_in_buffer, 1, |
10163 | io_size - bytes_in_buffer, | |
a6b151f1 DJ |
10164 | file); |
10165 | if (bytes == 0) | |
10166 | { | |
10167 | if (ferror (file)) | |
10168 | error (_("Error reading %s."), local_file); | |
10169 | else | |
10170 | { | |
10171 | /* EOF. Unless there is something still in the | |
10172 | buffer from the last iteration, we are done. */ | |
10173 | saw_eof = 1; | |
10174 | if (bytes_in_buffer == 0) | |
10175 | break; | |
10176 | } | |
10177 | } | |
10178 | } | |
10179 | else | |
10180 | bytes = 0; | |
10181 | ||
10182 | bytes += bytes_in_buffer; | |
10183 | bytes_in_buffer = 0; | |
10184 | ||
0d866f62 TT |
10185 | retcode = remote_hostio_pwrite (find_target_at (process_stratum), |
10186 | fd, buffer, bytes, | |
3e43a32a | 10187 | offset, &remote_errno); |
a6b151f1 DJ |
10188 | |
10189 | if (retcode < 0) | |
10190 | remote_hostio_error (remote_errno); | |
10191 | else if (retcode == 0) | |
10192 | error (_("Remote write of %d bytes returned 0!"), bytes); | |
10193 | else if (retcode < bytes) | |
10194 | { | |
10195 | /* Short write. Save the rest of the read data for the next | |
10196 | write. */ | |
10197 | bytes_in_buffer = bytes - retcode; | |
10198 | memmove (buffer, buffer + retcode, bytes_in_buffer); | |
10199 | } | |
10200 | ||
10201 | offset += retcode; | |
10202 | } | |
10203 | ||
10204 | discard_cleanups (close_cleanup); | |
df39ea25 | 10205 | if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno)) |
a6b151f1 DJ |
10206 | remote_hostio_error (remote_errno); |
10207 | ||
10208 | if (from_tty) | |
10209 | printf_filtered (_("Successfully sent file \"%s\".\n"), local_file); | |
10210 | do_cleanups (back_to); | |
10211 | } | |
10212 | ||
10213 | void | |
10214 | remote_file_get (const char *remote_file, const char *local_file, int from_tty) | |
10215 | { | |
10216 | struct cleanup *back_to, *close_cleanup; | |
cea39f65 | 10217 | int fd, remote_errno, bytes, io_size; |
a6b151f1 DJ |
10218 | FILE *file; |
10219 | gdb_byte *buffer; | |
10220 | ULONGEST offset; | |
5d93a237 | 10221 | struct remote_state *rs = get_remote_state (); |
a6b151f1 | 10222 | |
5d93a237 | 10223 | if (!rs->remote_desc) |
a6b151f1 DJ |
10224 | error (_("command can only be used with remote target")); |
10225 | ||
cd897586 TT |
10226 | fd = remote_hostio_open (find_target_at (process_stratum), |
10227 | remote_file, FILEIO_O_RDONLY, 0, &remote_errno); | |
a6b151f1 DJ |
10228 | if (fd == -1) |
10229 | remote_hostio_error (remote_errno); | |
10230 | ||
614c279d | 10231 | file = gdb_fopen_cloexec (local_file, "wb"); |
a6b151f1 DJ |
10232 | if (file == NULL) |
10233 | perror_with_name (local_file); | |
7c8a8b04 | 10234 | back_to = make_cleanup_fclose (file); |
a6b151f1 DJ |
10235 | |
10236 | /* Send up to this many bytes at once. They won't all fit in the | |
10237 | remote packet limit, so we'll transfer slightly fewer. */ | |
10238 | io_size = get_remote_packet_size (); | |
10239 | buffer = xmalloc (io_size); | |
10240 | make_cleanup (xfree, buffer); | |
10241 | ||
10242 | close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd); | |
10243 | ||
10244 | offset = 0; | |
10245 | while (1) | |
10246 | { | |
a3be983c TT |
10247 | bytes = remote_hostio_pread (find_target_at (process_stratum), |
10248 | fd, buffer, io_size, offset, &remote_errno); | |
a6b151f1 DJ |
10249 | if (bytes == 0) |
10250 | /* Success, but no bytes, means end-of-file. */ | |
10251 | break; | |
10252 | if (bytes == -1) | |
10253 | remote_hostio_error (remote_errno); | |
10254 | ||
10255 | offset += bytes; | |
10256 | ||
10257 | bytes = fwrite (buffer, 1, bytes, file); | |
10258 | if (bytes == 0) | |
10259 | perror_with_name (local_file); | |
10260 | } | |
10261 | ||
10262 | discard_cleanups (close_cleanup); | |
df39ea25 | 10263 | if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno)) |
a6b151f1 DJ |
10264 | remote_hostio_error (remote_errno); |
10265 | ||
10266 | if (from_tty) | |
10267 | printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file); | |
10268 | do_cleanups (back_to); | |
10269 | } | |
10270 | ||
10271 | void | |
10272 | remote_file_delete (const char *remote_file, int from_tty) | |
10273 | { | |
10274 | int retcode, remote_errno; | |
5d93a237 | 10275 | struct remote_state *rs = get_remote_state (); |
a6b151f1 | 10276 | |
5d93a237 | 10277 | if (!rs->remote_desc) |
a6b151f1 DJ |
10278 | error (_("command can only be used with remote target")); |
10279 | ||
dbbca37d TT |
10280 | retcode = remote_hostio_unlink (find_target_at (process_stratum), |
10281 | remote_file, &remote_errno); | |
a6b151f1 DJ |
10282 | if (retcode == -1) |
10283 | remote_hostio_error (remote_errno); | |
10284 | ||
10285 | if (from_tty) | |
10286 | printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file); | |
10287 | } | |
10288 | ||
10289 | static void | |
10290 | remote_put_command (char *args, int from_tty) | |
10291 | { | |
10292 | struct cleanup *back_to; | |
10293 | char **argv; | |
10294 | ||
d1a41061 PP |
10295 | if (args == NULL) |
10296 | error_no_arg (_("file to put")); | |
10297 | ||
10298 | argv = gdb_buildargv (args); | |
a6b151f1 DJ |
10299 | back_to = make_cleanup_freeargv (argv); |
10300 | if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL) | |
10301 | error (_("Invalid parameters to remote put")); | |
10302 | ||
10303 | remote_file_put (argv[0], argv[1], from_tty); | |
10304 | ||
10305 | do_cleanups (back_to); | |
10306 | } | |
10307 | ||
10308 | static void | |
10309 | remote_get_command (char *args, int from_tty) | |
10310 | { | |
10311 | struct cleanup *back_to; | |
10312 | char **argv; | |
10313 | ||
d1a41061 PP |
10314 | if (args == NULL) |
10315 | error_no_arg (_("file to get")); | |
10316 | ||
10317 | argv = gdb_buildargv (args); | |
a6b151f1 DJ |
10318 | back_to = make_cleanup_freeargv (argv); |
10319 | if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL) | |
10320 | error (_("Invalid parameters to remote get")); | |
10321 | ||
10322 | remote_file_get (argv[0], argv[1], from_tty); | |
10323 | ||
10324 | do_cleanups (back_to); | |
10325 | } | |
10326 | ||
10327 | static void | |
10328 | remote_delete_command (char *args, int from_tty) | |
10329 | { | |
10330 | struct cleanup *back_to; | |
10331 | char **argv; | |
10332 | ||
d1a41061 PP |
10333 | if (args == NULL) |
10334 | error_no_arg (_("file to delete")); | |
10335 | ||
10336 | argv = gdb_buildargv (args); | |
a6b151f1 DJ |
10337 | back_to = make_cleanup_freeargv (argv); |
10338 | if (argv[0] == NULL || argv[1] != NULL) | |
10339 | error (_("Invalid parameters to remote delete")); | |
10340 | ||
10341 | remote_file_delete (argv[0], from_tty); | |
10342 | ||
10343 | do_cleanups (back_to); | |
10344 | } | |
10345 | ||
10346 | static void | |
10347 | remote_command (char *args, int from_tty) | |
10348 | { | |
635c7e8a | 10349 | help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout); |
a6b151f1 DJ |
10350 | } |
10351 | ||
b2175913 | 10352 | static int |
19db3e69 | 10353 | remote_can_execute_reverse (struct target_ops *self) |
b2175913 | 10354 | { |
4082afcc PA |
10355 | if (packet_support (PACKET_bs) == PACKET_ENABLE |
10356 | || packet_support (PACKET_bc) == PACKET_ENABLE) | |
40ab02ce MS |
10357 | return 1; |
10358 | else | |
10359 | return 0; | |
b2175913 MS |
10360 | } |
10361 | ||
74531fed | 10362 | static int |
2a9a2795 | 10363 | remote_supports_non_stop (struct target_ops *self) |
74531fed PA |
10364 | { |
10365 | return 1; | |
10366 | } | |
10367 | ||
03583c20 | 10368 | static int |
2bfc0540 | 10369 | remote_supports_disable_randomization (struct target_ops *self) |
03583c20 UW |
10370 | { |
10371 | /* Only supported in extended mode. */ | |
10372 | return 0; | |
10373 | } | |
10374 | ||
8a305172 | 10375 | static int |
86ce2668 | 10376 | remote_supports_multi_process (struct target_ops *self) |
8a305172 PA |
10377 | { |
10378 | struct remote_state *rs = get_remote_state (); | |
a744cf53 | 10379 | |
901f9912 UW |
10380 | /* Only extended-remote handles being attached to multiple |
10381 | processes, even though plain remote can use the multi-process | |
10382 | thread id extensions, so that GDB knows the target process's | |
10383 | PID. */ | |
10384 | return rs->extended && remote_multi_process_p (rs); | |
8a305172 PA |
10385 | } |
10386 | ||
70221824 | 10387 | static int |
782b2b07 SS |
10388 | remote_supports_cond_tracepoints (void) |
10389 | { | |
4082afcc | 10390 | return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE; |
782b2b07 SS |
10391 | } |
10392 | ||
3788aec7 | 10393 | static int |
efcc2da7 | 10394 | remote_supports_cond_breakpoints (struct target_ops *self) |
3788aec7 | 10395 | { |
4082afcc | 10396 | return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE; |
3788aec7 LM |
10397 | } |
10398 | ||
70221824 | 10399 | static int |
7a697b8d SS |
10400 | remote_supports_fast_tracepoints (void) |
10401 | { | |
4082afcc | 10402 | return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE; |
7a697b8d SS |
10403 | } |
10404 | ||
0fb4aa4b PA |
10405 | static int |
10406 | remote_supports_static_tracepoints (void) | |
10407 | { | |
4082afcc | 10408 | return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE; |
0fb4aa4b PA |
10409 | } |
10410 | ||
1e4d1764 YQ |
10411 | static int |
10412 | remote_supports_install_in_trace (void) | |
10413 | { | |
4082afcc | 10414 | return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE; |
1e4d1764 YQ |
10415 | } |
10416 | ||
d248b706 | 10417 | static int |
7d178d6a | 10418 | remote_supports_enable_disable_tracepoint (struct target_ops *self) |
d248b706 | 10419 | { |
4082afcc PA |
10420 | return (packet_support (PACKET_EnableDisableTracepoints_feature) |
10421 | == PACKET_ENABLE); | |
d248b706 KY |
10422 | } |
10423 | ||
3065dfb6 | 10424 | static int |
6de37a3a | 10425 | remote_supports_string_tracing (struct target_ops *self) |
3065dfb6 | 10426 | { |
4082afcc | 10427 | return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE; |
3065dfb6 SS |
10428 | } |
10429 | ||
d3ce09f5 | 10430 | static int |
78eff0ec | 10431 | remote_can_run_breakpoint_commands (struct target_ops *self) |
d3ce09f5 | 10432 | { |
4082afcc | 10433 | return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE; |
d3ce09f5 SS |
10434 | } |
10435 | ||
35b1e5cc | 10436 | static void |
ecae04e1 | 10437 | remote_trace_init (struct target_ops *self) |
35b1e5cc SS |
10438 | { |
10439 | putpkt ("QTinit"); | |
10440 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
ad91cd99 | 10441 | if (strcmp (target_buf, "OK") != 0) |
35b1e5cc SS |
10442 | error (_("Target does not support this command.")); |
10443 | } | |
10444 | ||
10445 | static void free_actions_list (char **actions_list); | |
10446 | static void free_actions_list_cleanup_wrapper (void *); | |
10447 | static void | |
10448 | free_actions_list_cleanup_wrapper (void *al) | |
10449 | { | |
10450 | free_actions_list (al); | |
10451 | } | |
10452 | ||
10453 | static void | |
10454 | free_actions_list (char **actions_list) | |
10455 | { | |
10456 | int ndx; | |
10457 | ||
10458 | if (actions_list == 0) | |
10459 | return; | |
10460 | ||
10461 | for (ndx = 0; actions_list[ndx]; ndx++) | |
10462 | xfree (actions_list[ndx]); | |
10463 | ||
10464 | xfree (actions_list); | |
10465 | } | |
10466 | ||
409873ef SS |
10467 | /* Recursive routine to walk through command list including loops, and |
10468 | download packets for each command. */ | |
10469 | ||
10470 | static void | |
10471 | remote_download_command_source (int num, ULONGEST addr, | |
10472 | struct command_line *cmds) | |
10473 | { | |
10474 | struct remote_state *rs = get_remote_state (); | |
10475 | struct command_line *cmd; | |
10476 | ||
10477 | for (cmd = cmds; cmd; cmd = cmd->next) | |
10478 | { | |
0df8b418 | 10479 | QUIT; /* Allow user to bail out with ^C. */ |
409873ef SS |
10480 | strcpy (rs->buf, "QTDPsrc:"); |
10481 | encode_source_string (num, addr, "cmd", cmd->line, | |
10482 | rs->buf + strlen (rs->buf), | |
10483 | rs->buf_size - strlen (rs->buf)); | |
10484 | putpkt (rs->buf); | |
10485 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10486 | if (strcmp (target_buf, "OK")) | |
10487 | warning (_("Target does not support source download.")); | |
10488 | ||
10489 | if (cmd->control_type == while_control | |
10490 | || cmd->control_type == while_stepping_control) | |
10491 | { | |
10492 | remote_download_command_source (num, addr, *cmd->body_list); | |
10493 | ||
0df8b418 | 10494 | QUIT; /* Allow user to bail out with ^C. */ |
409873ef SS |
10495 | strcpy (rs->buf, "QTDPsrc:"); |
10496 | encode_source_string (num, addr, "cmd", "end", | |
10497 | rs->buf + strlen (rs->buf), | |
10498 | rs->buf_size - strlen (rs->buf)); | |
10499 | putpkt (rs->buf); | |
10500 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10501 | if (strcmp (target_buf, "OK")) | |
10502 | warning (_("Target does not support source download.")); | |
10503 | } | |
10504 | } | |
10505 | } | |
10506 | ||
35b1e5cc | 10507 | static void |
548f7808 | 10508 | remote_download_tracepoint (struct target_ops *self, struct bp_location *loc) |
35b1e5cc | 10509 | { |
bba74b36 | 10510 | #define BUF_SIZE 2048 |
e8ba3115 | 10511 | |
35b1e5cc | 10512 | CORE_ADDR tpaddr; |
409873ef | 10513 | char addrbuf[40]; |
bba74b36 | 10514 | char buf[BUF_SIZE]; |
35b1e5cc SS |
10515 | char **tdp_actions; |
10516 | char **stepping_actions; | |
10517 | int ndx; | |
10518 | struct cleanup *old_chain = NULL; | |
10519 | struct agent_expr *aexpr; | |
10520 | struct cleanup *aexpr_chain = NULL; | |
10521 | char *pkt; | |
e8ba3115 | 10522 | struct breakpoint *b = loc->owner; |
d9b3f62e | 10523 | struct tracepoint *t = (struct tracepoint *) b; |
35b1e5cc | 10524 | |
dc673c81 | 10525 | encode_actions_rsp (loc, &tdp_actions, &stepping_actions); |
e8ba3115 YQ |
10526 | old_chain = make_cleanup (free_actions_list_cleanup_wrapper, |
10527 | tdp_actions); | |
10528 | (void) make_cleanup (free_actions_list_cleanup_wrapper, | |
10529 | stepping_actions); | |
10530 | ||
10531 | tpaddr = loc->address; | |
10532 | sprintf_vma (addrbuf, tpaddr); | |
bba74b36 YQ |
10533 | xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number, |
10534 | addrbuf, /* address */ | |
10535 | (b->enable_state == bp_enabled ? 'E' : 'D'), | |
10536 | t->step_count, t->pass_count); | |
e8ba3115 YQ |
10537 | /* Fast tracepoints are mostly handled by the target, but we can |
10538 | tell the target how big of an instruction block should be moved | |
10539 | around. */ | |
10540 | if (b->type == bp_fast_tracepoint) | |
10541 | { | |
10542 | /* Only test for support at download time; we may not know | |
10543 | target capabilities at definition time. */ | |
10544 | if (remote_supports_fast_tracepoints ()) | |
35b1e5cc | 10545 | { |
e8ba3115 | 10546 | int isize; |
35b1e5cc | 10547 | |
f5656ead | 10548 | if (gdbarch_fast_tracepoint_valid_at (target_gdbarch (), |
e8ba3115 | 10549 | tpaddr, &isize, NULL)) |
bba74b36 YQ |
10550 | xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x", |
10551 | isize); | |
35b1e5cc | 10552 | else |
e8ba3115 YQ |
10553 | /* If it passed validation at definition but fails now, |
10554 | something is very wrong. */ | |
10555 | internal_error (__FILE__, __LINE__, | |
10556 | _("Fast tracepoint not " | |
10557 | "valid during download")); | |
35b1e5cc | 10558 | } |
e8ba3115 YQ |
10559 | else |
10560 | /* Fast tracepoints are functionally identical to regular | |
10561 | tracepoints, so don't take lack of support as a reason to | |
10562 | give up on the trace run. */ | |
10563 | warning (_("Target does not support fast tracepoints, " | |
10564 | "downloading %d as regular tracepoint"), b->number); | |
10565 | } | |
10566 | else if (b->type == bp_static_tracepoint) | |
10567 | { | |
10568 | /* Only test for support at download time; we may not know | |
10569 | target capabilities at definition time. */ | |
10570 | if (remote_supports_static_tracepoints ()) | |
0fb4aa4b | 10571 | { |
e8ba3115 | 10572 | struct static_tracepoint_marker marker; |
0fb4aa4b | 10573 | |
e8ba3115 YQ |
10574 | if (target_static_tracepoint_marker_at (tpaddr, &marker)) |
10575 | strcat (buf, ":S"); | |
0fb4aa4b | 10576 | else |
e8ba3115 | 10577 | error (_("Static tracepoint not valid during download")); |
0fb4aa4b | 10578 | } |
e8ba3115 YQ |
10579 | else |
10580 | /* Fast tracepoints are functionally identical to regular | |
10581 | tracepoints, so don't take lack of support as a reason | |
10582 | to give up on the trace run. */ | |
10583 | error (_("Target does not support static tracepoints")); | |
10584 | } | |
10585 | /* If the tracepoint has a conditional, make it into an agent | |
10586 | expression and append to the definition. */ | |
10587 | if (loc->cond) | |
10588 | { | |
10589 | /* Only test support at download time, we may not know target | |
10590 | capabilities at definition time. */ | |
10591 | if (remote_supports_cond_tracepoints ()) | |
35b1e5cc | 10592 | { |
e8ba3115 YQ |
10593 | aexpr = gen_eval_for_expr (tpaddr, loc->cond); |
10594 | aexpr_chain = make_cleanup_free_agent_expr (aexpr); | |
bba74b36 YQ |
10595 | xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,", |
10596 | aexpr->len); | |
e8ba3115 YQ |
10597 | pkt = buf + strlen (buf); |
10598 | for (ndx = 0; ndx < aexpr->len; ++ndx) | |
10599 | pkt = pack_hex_byte (pkt, aexpr->buf[ndx]); | |
10600 | *pkt = '\0'; | |
10601 | do_cleanups (aexpr_chain); | |
35b1e5cc | 10602 | } |
e8ba3115 YQ |
10603 | else |
10604 | warning (_("Target does not support conditional tracepoints, " | |
10605 | "ignoring tp %d cond"), b->number); | |
10606 | } | |
35b1e5cc | 10607 | |
d9b3f62e | 10608 | if (b->commands || *default_collect) |
e8ba3115 YQ |
10609 | strcat (buf, "-"); |
10610 | putpkt (buf); | |
10611 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10612 | if (strcmp (target_buf, "OK")) | |
10613 | error (_("Target does not support tracepoints.")); | |
35b1e5cc | 10614 | |
e8ba3115 YQ |
10615 | /* do_single_steps (t); */ |
10616 | if (tdp_actions) | |
10617 | { | |
10618 | for (ndx = 0; tdp_actions[ndx]; ndx++) | |
35b1e5cc | 10619 | { |
e8ba3115 | 10620 | QUIT; /* Allow user to bail out with ^C. */ |
bba74b36 YQ |
10621 | xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c", |
10622 | b->number, addrbuf, /* address */ | |
10623 | tdp_actions[ndx], | |
10624 | ((tdp_actions[ndx + 1] || stepping_actions) | |
10625 | ? '-' : 0)); | |
e8ba3115 YQ |
10626 | putpkt (buf); |
10627 | remote_get_noisy_reply (&target_buf, | |
10628 | &target_buf_size); | |
10629 | if (strcmp (target_buf, "OK")) | |
10630 | error (_("Error on target while setting tracepoints.")); | |
35b1e5cc | 10631 | } |
e8ba3115 YQ |
10632 | } |
10633 | if (stepping_actions) | |
10634 | { | |
10635 | for (ndx = 0; stepping_actions[ndx]; ndx++) | |
35b1e5cc | 10636 | { |
e8ba3115 | 10637 | QUIT; /* Allow user to bail out with ^C. */ |
bba74b36 YQ |
10638 | xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s", |
10639 | b->number, addrbuf, /* address */ | |
10640 | ((ndx == 0) ? "S" : ""), | |
10641 | stepping_actions[ndx], | |
10642 | (stepping_actions[ndx + 1] ? "-" : "")); | |
e8ba3115 YQ |
10643 | putpkt (buf); |
10644 | remote_get_noisy_reply (&target_buf, | |
10645 | &target_buf_size); | |
10646 | if (strcmp (target_buf, "OK")) | |
10647 | error (_("Error on target while setting tracepoints.")); | |
35b1e5cc | 10648 | } |
e8ba3115 | 10649 | } |
409873ef | 10650 | |
4082afcc | 10651 | if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE) |
e8ba3115 YQ |
10652 | { |
10653 | if (b->addr_string) | |
409873ef | 10654 | { |
e8ba3115 YQ |
10655 | strcpy (buf, "QTDPsrc:"); |
10656 | encode_source_string (b->number, loc->address, | |
10657 | "at", b->addr_string, buf + strlen (buf), | |
10658 | 2048 - strlen (buf)); | |
409873ef | 10659 | |
e8ba3115 YQ |
10660 | putpkt (buf); |
10661 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10662 | if (strcmp (target_buf, "OK")) | |
10663 | warning (_("Target does not support source download.")); | |
409873ef | 10664 | } |
e8ba3115 YQ |
10665 | if (b->cond_string) |
10666 | { | |
10667 | strcpy (buf, "QTDPsrc:"); | |
10668 | encode_source_string (b->number, loc->address, | |
10669 | "cond", b->cond_string, buf + strlen (buf), | |
10670 | 2048 - strlen (buf)); | |
10671 | putpkt (buf); | |
10672 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10673 | if (strcmp (target_buf, "OK")) | |
10674 | warning (_("Target does not support source download.")); | |
10675 | } | |
10676 | remote_download_command_source (b->number, loc->address, | |
10677 | breakpoint_commands (b)); | |
35b1e5cc | 10678 | } |
e8ba3115 YQ |
10679 | |
10680 | do_cleanups (old_chain); | |
35b1e5cc SS |
10681 | } |
10682 | ||
1e4d1764 | 10683 | static int |
a52a8357 | 10684 | remote_can_download_tracepoint (struct target_ops *self) |
1e4d1764 | 10685 | { |
1e51243a PA |
10686 | struct remote_state *rs = get_remote_state (); |
10687 | struct trace_status *ts; | |
10688 | int status; | |
10689 | ||
10690 | /* Don't try to install tracepoints until we've relocated our | |
10691 | symbols, and fetched and merged the target's tracepoint list with | |
10692 | ours. */ | |
10693 | if (rs->starting_up) | |
10694 | return 0; | |
10695 | ||
10696 | ts = current_trace_status (); | |
8bd200f1 | 10697 | status = remote_get_trace_status (self, ts); |
1e4d1764 YQ |
10698 | |
10699 | if (status == -1 || !ts->running_known || !ts->running) | |
10700 | return 0; | |
10701 | ||
10702 | /* If we are in a tracing experiment, but remote stub doesn't support | |
10703 | installing tracepoint in trace, we have to return. */ | |
10704 | if (!remote_supports_install_in_trace ()) | |
10705 | return 0; | |
10706 | ||
10707 | return 1; | |
10708 | } | |
10709 | ||
10710 | ||
35b1e5cc | 10711 | static void |
559d2b81 TT |
10712 | remote_download_trace_state_variable (struct target_ops *self, |
10713 | struct trace_state_variable *tsv) | |
35b1e5cc SS |
10714 | { |
10715 | struct remote_state *rs = get_remote_state (); | |
00bf0b85 | 10716 | char *p; |
35b1e5cc | 10717 | |
bba74b36 YQ |
10718 | xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:", |
10719 | tsv->number, phex ((ULONGEST) tsv->initial_value, 8), | |
10720 | tsv->builtin); | |
00bf0b85 SS |
10721 | p = rs->buf + strlen (rs->buf); |
10722 | if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ()) | |
10723 | error (_("Trace state variable name too long for tsv definition packet")); | |
9f1b45b0 | 10724 | p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name)); |
00bf0b85 | 10725 | *p++ = '\0'; |
35b1e5cc SS |
10726 | putpkt (rs->buf); |
10727 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
ad91cd99 PA |
10728 | if (*target_buf == '\0') |
10729 | error (_("Target does not support this command.")); | |
10730 | if (strcmp (target_buf, "OK") != 0) | |
10731 | error (_("Error on target while downloading trace state variable.")); | |
35b1e5cc SS |
10732 | } |
10733 | ||
d248b706 | 10734 | static void |
46670d57 TT |
10735 | remote_enable_tracepoint (struct target_ops *self, |
10736 | struct bp_location *location) | |
d248b706 KY |
10737 | { |
10738 | struct remote_state *rs = get_remote_state (); | |
10739 | char addr_buf[40]; | |
10740 | ||
10741 | sprintf_vma (addr_buf, location->address); | |
bba74b36 YQ |
10742 | xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s", |
10743 | location->owner->number, addr_buf); | |
d248b706 KY |
10744 | putpkt (rs->buf); |
10745 | remote_get_noisy_reply (&rs->buf, &rs->buf_size); | |
10746 | if (*rs->buf == '\0') | |
10747 | error (_("Target does not support enabling tracepoints while a trace run is ongoing.")); | |
10748 | if (strcmp (rs->buf, "OK") != 0) | |
10749 | error (_("Error on target while enabling tracepoint.")); | |
10750 | } | |
10751 | ||
10752 | static void | |
780b049c TT |
10753 | remote_disable_tracepoint (struct target_ops *self, |
10754 | struct bp_location *location) | |
d248b706 KY |
10755 | { |
10756 | struct remote_state *rs = get_remote_state (); | |
10757 | char addr_buf[40]; | |
10758 | ||
10759 | sprintf_vma (addr_buf, location->address); | |
bba74b36 YQ |
10760 | xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s", |
10761 | location->owner->number, addr_buf); | |
d248b706 KY |
10762 | putpkt (rs->buf); |
10763 | remote_get_noisy_reply (&rs->buf, &rs->buf_size); | |
10764 | if (*rs->buf == '\0') | |
10765 | error (_("Target does not support disabling tracepoints while a trace run is ongoing.")); | |
10766 | if (strcmp (rs->buf, "OK") != 0) | |
10767 | error (_("Error on target while disabling tracepoint.")); | |
10768 | } | |
10769 | ||
35b1e5cc | 10770 | static void |
583f9a86 | 10771 | remote_trace_set_readonly_regions (struct target_ops *self) |
35b1e5cc SS |
10772 | { |
10773 | asection *s; | |
81b9b86e | 10774 | bfd *abfd = NULL; |
35b1e5cc | 10775 | bfd_size_type size; |
608bcef2 | 10776 | bfd_vma vma; |
35b1e5cc | 10777 | int anysecs = 0; |
c2fa21f1 | 10778 | int offset = 0; |
35b1e5cc SS |
10779 | |
10780 | if (!exec_bfd) | |
10781 | return; /* No information to give. */ | |
10782 | ||
10783 | strcpy (target_buf, "QTro"); | |
9779ab84 | 10784 | offset = strlen (target_buf); |
35b1e5cc SS |
10785 | for (s = exec_bfd->sections; s; s = s->next) |
10786 | { | |
10787 | char tmp1[40], tmp2[40]; | |
c2fa21f1 | 10788 | int sec_length; |
35b1e5cc SS |
10789 | |
10790 | if ((s->flags & SEC_LOAD) == 0 || | |
0df8b418 | 10791 | /* (s->flags & SEC_CODE) == 0 || */ |
35b1e5cc SS |
10792 | (s->flags & SEC_READONLY) == 0) |
10793 | continue; | |
10794 | ||
10795 | anysecs = 1; | |
81b9b86e | 10796 | vma = bfd_get_section_vma (abfd, s); |
35b1e5cc | 10797 | size = bfd_get_section_size (s); |
608bcef2 HZ |
10798 | sprintf_vma (tmp1, vma); |
10799 | sprintf_vma (tmp2, vma + size); | |
c2fa21f1 HZ |
10800 | sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2); |
10801 | if (offset + sec_length + 1 > target_buf_size) | |
10802 | { | |
4082afcc | 10803 | if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE) |
864ac8a7 | 10804 | warning (_("\ |
c2fa21f1 HZ |
10805 | Too many sections for read-only sections definition packet.")); |
10806 | break; | |
10807 | } | |
bba74b36 YQ |
10808 | xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s", |
10809 | tmp1, tmp2); | |
c2fa21f1 | 10810 | offset += sec_length; |
35b1e5cc SS |
10811 | } |
10812 | if (anysecs) | |
10813 | { | |
10814 | putpkt (target_buf); | |
10815 | getpkt (&target_buf, &target_buf_size, 0); | |
10816 | } | |
10817 | } | |
10818 | ||
10819 | static void | |
e2d1aae3 | 10820 | remote_trace_start (struct target_ops *self) |
35b1e5cc SS |
10821 | { |
10822 | putpkt ("QTStart"); | |
10823 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
ad91cd99 PA |
10824 | if (*target_buf == '\0') |
10825 | error (_("Target does not support this command.")); | |
10826 | if (strcmp (target_buf, "OK") != 0) | |
35b1e5cc SS |
10827 | error (_("Bogus reply from target: %s"), target_buf); |
10828 | } | |
10829 | ||
10830 | static int | |
8bd200f1 | 10831 | remote_get_trace_status (struct target_ops *self, struct trace_status *ts) |
35b1e5cc | 10832 | { |
953b98d1 | 10833 | /* Initialize it just to avoid a GCC false warning. */ |
f652de6f | 10834 | char *p = NULL; |
0df8b418 | 10835 | /* FIXME we need to get register block size some other way. */ |
00bf0b85 | 10836 | extern int trace_regblock_size; |
67f41397 | 10837 | volatile struct gdb_exception ex; |
bd3eecc3 PA |
10838 | enum packet_result result; |
10839 | ||
4082afcc | 10840 | if (packet_support (PACKET_qTStatus) == PACKET_DISABLE) |
bd3eecc3 | 10841 | return -1; |
a744cf53 | 10842 | |
00bf0b85 SS |
10843 | trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet; |
10844 | ||
049dc89b JK |
10845 | putpkt ("qTStatus"); |
10846 | ||
67f41397 JK |
10847 | TRY_CATCH (ex, RETURN_MASK_ERROR) |
10848 | { | |
10849 | p = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10850 | } | |
10851 | if (ex.reason < 0) | |
10852 | { | |
598d3636 JK |
10853 | if (ex.error != TARGET_CLOSE_ERROR) |
10854 | { | |
10855 | exception_fprintf (gdb_stderr, ex, "qTStatus: "); | |
10856 | return -1; | |
10857 | } | |
10858 | throw_exception (ex); | |
67f41397 | 10859 | } |
00bf0b85 | 10860 | |
bd3eecc3 PA |
10861 | result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]); |
10862 | ||
00bf0b85 | 10863 | /* If the remote target doesn't do tracing, flag it. */ |
bd3eecc3 | 10864 | if (result == PACKET_UNKNOWN) |
00bf0b85 | 10865 | return -1; |
35b1e5cc | 10866 | |
00bf0b85 | 10867 | /* We're working with a live target. */ |
f5911ea1 | 10868 | ts->filename = NULL; |
00bf0b85 | 10869 | |
00bf0b85 | 10870 | if (*p++ != 'T') |
35b1e5cc SS |
10871 | error (_("Bogus trace status reply from target: %s"), target_buf); |
10872 | ||
84cebc4a YQ |
10873 | /* Function 'parse_trace_status' sets default value of each field of |
10874 | 'ts' at first, so we don't have to do it here. */ | |
00bf0b85 SS |
10875 | parse_trace_status (p, ts); |
10876 | ||
10877 | return ts->running; | |
35b1e5cc SS |
10878 | } |
10879 | ||
70221824 | 10880 | static void |
db90e85c | 10881 | remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp, |
f196051f SS |
10882 | struct uploaded_tp *utp) |
10883 | { | |
10884 | struct remote_state *rs = get_remote_state (); | |
f196051f SS |
10885 | char *reply; |
10886 | struct bp_location *loc; | |
10887 | struct tracepoint *tp = (struct tracepoint *) bp; | |
bba74b36 | 10888 | size_t size = get_remote_packet_size (); |
f196051f SS |
10889 | |
10890 | if (tp) | |
10891 | { | |
10892 | tp->base.hit_count = 0; | |
10893 | tp->traceframe_usage = 0; | |
10894 | for (loc = tp->base.loc; loc; loc = loc->next) | |
10895 | { | |
10896 | /* If the tracepoint was never downloaded, don't go asking for | |
10897 | any status. */ | |
10898 | if (tp->number_on_target == 0) | |
10899 | continue; | |
bba74b36 YQ |
10900 | xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target, |
10901 | phex_nz (loc->address, 0)); | |
f196051f SS |
10902 | putpkt (rs->buf); |
10903 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10904 | if (reply && *reply) | |
10905 | { | |
10906 | if (*reply == 'V') | |
10907 | parse_tracepoint_status (reply + 1, bp, utp); | |
10908 | } | |
10909 | } | |
10910 | } | |
10911 | else if (utp) | |
10912 | { | |
10913 | utp->hit_count = 0; | |
10914 | utp->traceframe_usage = 0; | |
bba74b36 YQ |
10915 | xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number, |
10916 | phex_nz (utp->addr, 0)); | |
f196051f SS |
10917 | putpkt (rs->buf); |
10918 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
10919 | if (reply && *reply) | |
10920 | { | |
10921 | if (*reply == 'V') | |
10922 | parse_tracepoint_status (reply + 1, bp, utp); | |
10923 | } | |
10924 | } | |
10925 | } | |
10926 | ||
35b1e5cc | 10927 | static void |
74499f1b | 10928 | remote_trace_stop (struct target_ops *self) |
35b1e5cc SS |
10929 | { |
10930 | putpkt ("QTStop"); | |
10931 | remote_get_noisy_reply (&target_buf, &target_buf_size); | |
ad91cd99 PA |
10932 | if (*target_buf == '\0') |
10933 | error (_("Target does not support this command.")); | |
10934 | if (strcmp (target_buf, "OK") != 0) | |
35b1e5cc SS |
10935 | error (_("Bogus reply from target: %s"), target_buf); |
10936 | } | |
10937 | ||
10938 | static int | |
bd4c6793 TT |
10939 | remote_trace_find (struct target_ops *self, |
10940 | enum trace_find_type type, int num, | |
cc5925ad | 10941 | CORE_ADDR addr1, CORE_ADDR addr2, |
35b1e5cc SS |
10942 | int *tpp) |
10943 | { | |
10944 | struct remote_state *rs = get_remote_state (); | |
bba74b36 | 10945 | char *endbuf = rs->buf + get_remote_packet_size (); |
35b1e5cc SS |
10946 | char *p, *reply; |
10947 | int target_frameno = -1, target_tracept = -1; | |
10948 | ||
e6e4e701 PA |
10949 | /* Lookups other than by absolute frame number depend on the current |
10950 | trace selected, so make sure it is correct on the remote end | |
10951 | first. */ | |
10952 | if (type != tfind_number) | |
10953 | set_remote_traceframe (); | |
10954 | ||
35b1e5cc SS |
10955 | p = rs->buf; |
10956 | strcpy (p, "QTFrame:"); | |
10957 | p = strchr (p, '\0'); | |
10958 | switch (type) | |
10959 | { | |
10960 | case tfind_number: | |
bba74b36 | 10961 | xsnprintf (p, endbuf - p, "%x", num); |
35b1e5cc SS |
10962 | break; |
10963 | case tfind_pc: | |
bba74b36 | 10964 | xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0)); |
35b1e5cc SS |
10965 | break; |
10966 | case tfind_tp: | |
bba74b36 | 10967 | xsnprintf (p, endbuf - p, "tdp:%x", num); |
35b1e5cc SS |
10968 | break; |
10969 | case tfind_range: | |
bba74b36 YQ |
10970 | xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0), |
10971 | phex_nz (addr2, 0)); | |
35b1e5cc SS |
10972 | break; |
10973 | case tfind_outside: | |
bba74b36 YQ |
10974 | xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0), |
10975 | phex_nz (addr2, 0)); | |
35b1e5cc SS |
10976 | break; |
10977 | default: | |
9b20d036 | 10978 | error (_("Unknown trace find type %d"), type); |
35b1e5cc SS |
10979 | } |
10980 | ||
10981 | putpkt (rs->buf); | |
2f65bcb7 | 10982 | reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size); |
ad91cd99 PA |
10983 | if (*reply == '\0') |
10984 | error (_("Target does not support this command.")); | |
35b1e5cc SS |
10985 | |
10986 | while (reply && *reply) | |
10987 | switch (*reply) | |
10988 | { | |
10989 | case 'F': | |
f197e0f1 VP |
10990 | p = ++reply; |
10991 | target_frameno = (int) strtol (p, &reply, 16); | |
10992 | if (reply == p) | |
10993 | error (_("Unable to parse trace frame number")); | |
e6e4e701 PA |
10994 | /* Don't update our remote traceframe number cache on failure |
10995 | to select a remote traceframe. */ | |
f197e0f1 VP |
10996 | if (target_frameno == -1) |
10997 | return -1; | |
35b1e5cc SS |
10998 | break; |
10999 | case 'T': | |
f197e0f1 VP |
11000 | p = ++reply; |
11001 | target_tracept = (int) strtol (p, &reply, 16); | |
11002 | if (reply == p) | |
11003 | error (_("Unable to parse tracepoint number")); | |
35b1e5cc SS |
11004 | break; |
11005 | case 'O': /* "OK"? */ | |
11006 | if (reply[1] == 'K' && reply[2] == '\0') | |
11007 | reply += 2; | |
11008 | else | |
11009 | error (_("Bogus reply from target: %s"), reply); | |
11010 | break; | |
11011 | default: | |
11012 | error (_("Bogus reply from target: %s"), reply); | |
11013 | } | |
11014 | if (tpp) | |
11015 | *tpp = target_tracept; | |
e6e4e701 | 11016 | |
262e1174 | 11017 | rs->remote_traceframe_number = target_frameno; |
35b1e5cc SS |
11018 | return target_frameno; |
11019 | } | |
11020 | ||
11021 | static int | |
4011015b TT |
11022 | remote_get_trace_state_variable_value (struct target_ops *self, |
11023 | int tsvnum, LONGEST *val) | |
35b1e5cc SS |
11024 | { |
11025 | struct remote_state *rs = get_remote_state (); | |
11026 | char *reply; | |
11027 | ULONGEST uval; | |
11028 | ||
e6e4e701 PA |
11029 | set_remote_traceframe (); |
11030 | ||
bba74b36 | 11031 | xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum); |
35b1e5cc SS |
11032 | putpkt (rs->buf); |
11033 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
11034 | if (reply && *reply) | |
11035 | { | |
11036 | if (*reply == 'V') | |
11037 | { | |
11038 | unpack_varlen_hex (reply + 1, &uval); | |
11039 | *val = (LONGEST) uval; | |
11040 | return 1; | |
11041 | } | |
11042 | } | |
11043 | return 0; | |
11044 | } | |
11045 | ||
00bf0b85 | 11046 | static int |
dc3decaf | 11047 | remote_save_trace_data (struct target_ops *self, const char *filename) |
00bf0b85 SS |
11048 | { |
11049 | struct remote_state *rs = get_remote_state (); | |
11050 | char *p, *reply; | |
11051 | ||
11052 | p = rs->buf; | |
11053 | strcpy (p, "QTSave:"); | |
11054 | p += strlen (p); | |
11055 | if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ()) | |
11056 | error (_("Remote file name too long for trace save packet")); | |
9f1b45b0 | 11057 | p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename)); |
00bf0b85 SS |
11058 | *p++ = '\0'; |
11059 | putpkt (rs->buf); | |
ad91cd99 | 11060 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); |
d6c5869f | 11061 | if (*reply == '\0') |
ad91cd99 PA |
11062 | error (_("Target does not support this command.")); |
11063 | if (strcmp (reply, "OK") != 0) | |
11064 | error (_("Bogus reply from target: %s"), reply); | |
00bf0b85 SS |
11065 | return 0; |
11066 | } | |
11067 | ||
11068 | /* This is basically a memory transfer, but needs to be its own packet | |
11069 | because we don't know how the target actually organizes its trace | |
11070 | memory, plus we want to be able to ask for as much as possible, but | |
11071 | not be unhappy if we don't get as much as we ask for. */ | |
11072 | ||
11073 | static LONGEST | |
88ee6f45 TT |
11074 | remote_get_raw_trace_data (struct target_ops *self, |
11075 | gdb_byte *buf, ULONGEST offset, LONGEST len) | |
00bf0b85 SS |
11076 | { |
11077 | struct remote_state *rs = get_remote_state (); | |
11078 | char *reply; | |
11079 | char *p; | |
11080 | int rslt; | |
11081 | ||
11082 | p = rs->buf; | |
11083 | strcpy (p, "qTBuffer:"); | |
11084 | p += strlen (p); | |
11085 | p += hexnumstr (p, offset); | |
11086 | *p++ = ','; | |
11087 | p += hexnumstr (p, len); | |
11088 | *p++ = '\0'; | |
11089 | ||
11090 | putpkt (rs->buf); | |
11091 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
11092 | if (reply && *reply) | |
11093 | { | |
11094 | /* 'l' by itself means we're at the end of the buffer and | |
11095 | there is nothing more to get. */ | |
11096 | if (*reply == 'l') | |
11097 | return 0; | |
11098 | ||
11099 | /* Convert the reply into binary. Limit the number of bytes to | |
11100 | convert according to our passed-in buffer size, rather than | |
11101 | what was returned in the packet; if the target is | |
11102 | unexpectedly generous and gives us a bigger reply than we | |
11103 | asked for, we don't want to crash. */ | |
11104 | rslt = hex2bin (target_buf, buf, len); | |
11105 | return rslt; | |
11106 | } | |
11107 | ||
11108 | /* Something went wrong, flag as an error. */ | |
11109 | return -1; | |
11110 | } | |
11111 | ||
35b1e5cc | 11112 | static void |
37b25738 | 11113 | remote_set_disconnected_tracing (struct target_ops *self, int val) |
35b1e5cc SS |
11114 | { |
11115 | struct remote_state *rs = get_remote_state (); | |
11116 | ||
4082afcc | 11117 | if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE) |
33da3f1c | 11118 | { |
ad91cd99 PA |
11119 | char *reply; |
11120 | ||
bba74b36 | 11121 | xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val); |
33da3f1c | 11122 | putpkt (rs->buf); |
ad91cd99 PA |
11123 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); |
11124 | if (*reply == '\0') | |
33da3f1c | 11125 | error (_("Target does not support this command.")); |
ad91cd99 PA |
11126 | if (strcmp (reply, "OK") != 0) |
11127 | error (_("Bogus reply from target: %s"), reply); | |
33da3f1c SS |
11128 | } |
11129 | else if (val) | |
11130 | warning (_("Target does not support disconnected tracing.")); | |
35b1e5cc SS |
11131 | } |
11132 | ||
dc146f7c VP |
11133 | static int |
11134 | remote_core_of_thread (struct target_ops *ops, ptid_t ptid) | |
11135 | { | |
11136 | struct thread_info *info = find_thread_ptid (ptid); | |
a744cf53 | 11137 | |
dc146f7c VP |
11138 | if (info && info->private) |
11139 | return info->private->core; | |
11140 | return -1; | |
11141 | } | |
11142 | ||
4daf5ac0 | 11143 | static void |
736d5b1f | 11144 | remote_set_circular_trace_buffer (struct target_ops *self, int val) |
4daf5ac0 SS |
11145 | { |
11146 | struct remote_state *rs = get_remote_state (); | |
ad91cd99 | 11147 | char *reply; |
4daf5ac0 | 11148 | |
bba74b36 | 11149 | xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val); |
4daf5ac0 | 11150 | putpkt (rs->buf); |
ad91cd99 PA |
11151 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); |
11152 | if (*reply == '\0') | |
4daf5ac0 | 11153 | error (_("Target does not support this command.")); |
ad91cd99 PA |
11154 | if (strcmp (reply, "OK") != 0) |
11155 | error (_("Bogus reply from target: %s"), reply); | |
4daf5ac0 SS |
11156 | } |
11157 | ||
b3b9301e | 11158 | static struct traceframe_info * |
a893e81f | 11159 | remote_traceframe_info (struct target_ops *self) |
b3b9301e PA |
11160 | { |
11161 | char *text; | |
11162 | ||
11163 | text = target_read_stralloc (¤t_target, | |
11164 | TARGET_OBJECT_TRACEFRAME_INFO, NULL); | |
11165 | if (text != NULL) | |
11166 | { | |
11167 | struct traceframe_info *info; | |
11168 | struct cleanup *back_to = make_cleanup (xfree, text); | |
11169 | ||
11170 | info = parse_traceframe_info (text); | |
11171 | do_cleanups (back_to); | |
11172 | return info; | |
11173 | } | |
11174 | ||
11175 | return NULL; | |
11176 | } | |
11177 | ||
405f8e94 SS |
11178 | /* Handle the qTMinFTPILen packet. Returns the minimum length of |
11179 | instruction on which a fast tracepoint may be placed. Returns -1 | |
11180 | if the packet is not supported, and 0 if the minimum instruction | |
11181 | length is unknown. */ | |
11182 | ||
11183 | static int | |
0e67620a | 11184 | remote_get_min_fast_tracepoint_insn_len (struct target_ops *self) |
405f8e94 SS |
11185 | { |
11186 | struct remote_state *rs = get_remote_state (); | |
11187 | char *reply; | |
11188 | ||
e886a173 PA |
11189 | /* If we're not debugging a process yet, the IPA can't be |
11190 | loaded. */ | |
11191 | if (!target_has_execution) | |
11192 | return 0; | |
11193 | ||
11194 | /* Make sure the remote is pointing at the right process. */ | |
11195 | set_general_process (); | |
11196 | ||
bba74b36 | 11197 | xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen"); |
405f8e94 SS |
11198 | putpkt (rs->buf); |
11199 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
11200 | if (*reply == '\0') | |
11201 | return -1; | |
11202 | else | |
11203 | { | |
11204 | ULONGEST min_insn_len; | |
11205 | ||
11206 | unpack_varlen_hex (reply, &min_insn_len); | |
11207 | ||
11208 | return (int) min_insn_len; | |
11209 | } | |
11210 | } | |
11211 | ||
f6f899bf | 11212 | static void |
4da384be | 11213 | remote_set_trace_buffer_size (struct target_ops *self, LONGEST val) |
f6f899bf | 11214 | { |
4082afcc | 11215 | if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE) |
f6f899bf HAQ |
11216 | { |
11217 | struct remote_state *rs = get_remote_state (); | |
11218 | char *buf = rs->buf; | |
11219 | char *endbuf = rs->buf + get_remote_packet_size (); | |
11220 | enum packet_result result; | |
11221 | ||
11222 | gdb_assert (val >= 0 || val == -1); | |
11223 | buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:"); | |
11224 | /* Send -1 as literal "-1" to avoid host size dependency. */ | |
11225 | if (val < 0) | |
11226 | { | |
11227 | *buf++ = '-'; | |
11228 | buf += hexnumstr (buf, (ULONGEST) -val); | |
11229 | } | |
11230 | else | |
11231 | buf += hexnumstr (buf, (ULONGEST) val); | |
11232 | ||
11233 | putpkt (rs->buf); | |
11234 | remote_get_noisy_reply (&rs->buf, &rs->buf_size); | |
11235 | result = packet_ok (rs->buf, | |
11236 | &remote_protocol_packets[PACKET_QTBuffer_size]); | |
11237 | ||
11238 | if (result != PACKET_OK) | |
11239 | warning (_("Bogus reply from target: %s"), rs->buf); | |
11240 | } | |
11241 | } | |
11242 | ||
f196051f | 11243 | static int |
d9e68a2c TT |
11244 | remote_set_trace_notes (struct target_ops *self, |
11245 | const char *user, const char *notes, | |
ca623f82 | 11246 | const char *stop_notes) |
f196051f SS |
11247 | { |
11248 | struct remote_state *rs = get_remote_state (); | |
11249 | char *reply; | |
11250 | char *buf = rs->buf; | |
11251 | char *endbuf = rs->buf + get_remote_packet_size (); | |
11252 | int nbytes; | |
11253 | ||
11254 | buf += xsnprintf (buf, endbuf - buf, "QTNotes:"); | |
11255 | if (user) | |
11256 | { | |
11257 | buf += xsnprintf (buf, endbuf - buf, "user:"); | |
9f1b45b0 | 11258 | nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user)); |
f196051f SS |
11259 | buf += 2 * nbytes; |
11260 | *buf++ = ';'; | |
11261 | } | |
11262 | if (notes) | |
11263 | { | |
11264 | buf += xsnprintf (buf, endbuf - buf, "notes:"); | |
9f1b45b0 | 11265 | nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes)); |
f196051f SS |
11266 | buf += 2 * nbytes; |
11267 | *buf++ = ';'; | |
11268 | } | |
11269 | if (stop_notes) | |
11270 | { | |
11271 | buf += xsnprintf (buf, endbuf - buf, "tstop:"); | |
9f1b45b0 | 11272 | nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes)); |
f196051f SS |
11273 | buf += 2 * nbytes; |
11274 | *buf++ = ';'; | |
11275 | } | |
11276 | /* Ensure the buffer is terminated. */ | |
11277 | *buf = '\0'; | |
11278 | ||
11279 | putpkt (rs->buf); | |
11280 | reply = remote_get_noisy_reply (&target_buf, &target_buf_size); | |
11281 | if (*reply == '\0') | |
11282 | return 0; | |
11283 | ||
11284 | if (strcmp (reply, "OK") != 0) | |
11285 | error (_("Bogus reply from target: %s"), reply); | |
11286 | ||
11287 | return 1; | |
11288 | } | |
11289 | ||
d1feda86 | 11290 | static int |
2c152180 | 11291 | remote_use_agent (struct target_ops *self, int use) |
d1feda86 | 11292 | { |
4082afcc | 11293 | if (packet_support (PACKET_QAgent) != PACKET_DISABLE) |
d1feda86 YQ |
11294 | { |
11295 | struct remote_state *rs = get_remote_state (); | |
11296 | ||
11297 | /* If the stub supports QAgent. */ | |
bba74b36 | 11298 | xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use); |
d1feda86 YQ |
11299 | putpkt (rs->buf); |
11300 | getpkt (&rs->buf, &rs->buf_size, 0); | |
11301 | ||
11302 | if (strcmp (rs->buf, "OK") == 0) | |
11303 | { | |
11304 | use_agent = use; | |
11305 | return 1; | |
11306 | } | |
11307 | } | |
11308 | ||
11309 | return 0; | |
11310 | } | |
11311 | ||
11312 | static int | |
fe38f897 | 11313 | remote_can_use_agent (struct target_ops *self) |
d1feda86 | 11314 | { |
4082afcc | 11315 | return (packet_support (PACKET_QAgent) != PACKET_DISABLE); |
d1feda86 YQ |
11316 | } |
11317 | ||
9accd112 MM |
11318 | struct btrace_target_info |
11319 | { | |
11320 | /* The ptid of the traced thread. */ | |
11321 | ptid_t ptid; | |
11322 | }; | |
11323 | ||
11324 | /* Check whether the target supports branch tracing. */ | |
11325 | ||
11326 | static int | |
46917d26 | 11327 | remote_supports_btrace (struct target_ops *self) |
9accd112 | 11328 | { |
4082afcc | 11329 | if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE) |
9accd112 | 11330 | return 0; |
4082afcc | 11331 | if (packet_support (PACKET_Qbtrace_bts) != PACKET_ENABLE) |
9accd112 | 11332 | return 0; |
4082afcc | 11333 | if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE) |
9accd112 MM |
11334 | return 0; |
11335 | ||
11336 | return 1; | |
11337 | } | |
11338 | ||
11339 | /* Enable branch tracing. */ | |
11340 | ||
11341 | static struct btrace_target_info * | |
e3c49f88 | 11342 | remote_enable_btrace (struct target_ops *self, ptid_t ptid) |
9accd112 MM |
11343 | { |
11344 | struct btrace_target_info *tinfo = NULL; | |
11345 | struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_bts]; | |
11346 | struct remote_state *rs = get_remote_state (); | |
11347 | char *buf = rs->buf; | |
11348 | char *endbuf = rs->buf + get_remote_packet_size (); | |
11349 | ||
4082afcc | 11350 | if (packet_config_support (packet) != PACKET_ENABLE) |
9accd112 MM |
11351 | error (_("Target does not support branch tracing.")); |
11352 | ||
11353 | set_general_thread (ptid); | |
11354 | ||
11355 | buf += xsnprintf (buf, endbuf - buf, "%s", packet->name); | |
11356 | putpkt (rs->buf); | |
11357 | getpkt (&rs->buf, &rs->buf_size, 0); | |
11358 | ||
11359 | if (packet_ok (rs->buf, packet) == PACKET_ERROR) | |
11360 | { | |
11361 | if (rs->buf[0] == 'E' && rs->buf[1] == '.') | |
11362 | error (_("Could not enable branch tracing for %s: %s"), | |
11363 | target_pid_to_str (ptid), rs->buf + 2); | |
11364 | else | |
11365 | error (_("Could not enable branch tracing for %s."), | |
11366 | target_pid_to_str (ptid)); | |
11367 | } | |
11368 | ||
11369 | tinfo = xzalloc (sizeof (*tinfo)); | |
11370 | tinfo->ptid = ptid; | |
11371 | ||
11372 | return tinfo; | |
11373 | } | |
11374 | ||
11375 | /* Disable branch tracing. */ | |
11376 | ||
11377 | static void | |
25e95349 TT |
11378 | remote_disable_btrace (struct target_ops *self, |
11379 | struct btrace_target_info *tinfo) | |
9accd112 MM |
11380 | { |
11381 | struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off]; | |
11382 | struct remote_state *rs = get_remote_state (); | |
11383 | char *buf = rs->buf; | |
11384 | char *endbuf = rs->buf + get_remote_packet_size (); | |
11385 | ||
4082afcc | 11386 | if (packet_config_support (packet) != PACKET_ENABLE) |
9accd112 MM |
11387 | error (_("Target does not support branch tracing.")); |
11388 | ||
11389 | set_general_thread (tinfo->ptid); | |
11390 | ||
11391 | buf += xsnprintf (buf, endbuf - buf, "%s", packet->name); | |
11392 | putpkt (rs->buf); | |
11393 | getpkt (&rs->buf, &rs->buf_size, 0); | |
11394 | ||
11395 | if (packet_ok (rs->buf, packet) == PACKET_ERROR) | |
11396 | { | |
11397 | if (rs->buf[0] == 'E' && rs->buf[1] == '.') | |
11398 | error (_("Could not disable branch tracing for %s: %s"), | |
11399 | target_pid_to_str (tinfo->ptid), rs->buf + 2); | |
11400 | else | |
11401 | error (_("Could not disable branch tracing for %s."), | |
11402 | target_pid_to_str (tinfo->ptid)); | |
11403 | } | |
11404 | ||
11405 | xfree (tinfo); | |
11406 | } | |
11407 | ||
11408 | /* Teardown branch tracing. */ | |
11409 | ||
11410 | static void | |
1777056d TT |
11411 | remote_teardown_btrace (struct target_ops *self, |
11412 | struct btrace_target_info *tinfo) | |
9accd112 MM |
11413 | { |
11414 | /* We must not talk to the target during teardown. */ | |
11415 | xfree (tinfo); | |
11416 | } | |
11417 | ||
11418 | /* Read the branch trace. */ | |
11419 | ||
969c39fb | 11420 | static enum btrace_error |
39c49f83 TT |
11421 | remote_read_btrace (struct target_ops *self, |
11422 | VEC (btrace_block_s) **btrace, | |
969c39fb | 11423 | struct btrace_target_info *tinfo, |
9accd112 MM |
11424 | enum btrace_read_type type) |
11425 | { | |
11426 | struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace]; | |
11427 | struct remote_state *rs = get_remote_state (); | |
969c39fb | 11428 | struct cleanup *cleanup; |
9accd112 MM |
11429 | const char *annex; |
11430 | char *xml; | |
11431 | ||
4082afcc | 11432 | if (packet_config_support (packet) != PACKET_ENABLE) |
9accd112 MM |
11433 | error (_("Target does not support branch tracing.")); |
11434 | ||
11435 | #if !defined(HAVE_LIBEXPAT) | |
11436 | error (_("Cannot process branch tracing result. XML parsing not supported.")); | |
11437 | #endif | |
11438 | ||
11439 | switch (type) | |
11440 | { | |
864089d2 | 11441 | case BTRACE_READ_ALL: |
9accd112 MM |
11442 | annex = "all"; |
11443 | break; | |
864089d2 | 11444 | case BTRACE_READ_NEW: |
9accd112 MM |
11445 | annex = "new"; |
11446 | break; | |
969c39fb MM |
11447 | case BTRACE_READ_DELTA: |
11448 | annex = "delta"; | |
11449 | break; | |
9accd112 MM |
11450 | default: |
11451 | internal_error (__FILE__, __LINE__, | |
11452 | _("Bad branch tracing read type: %u."), | |
11453 | (unsigned int) type); | |
11454 | } | |
11455 | ||
11456 | xml = target_read_stralloc (¤t_target, | |
11457 | TARGET_OBJECT_BTRACE, annex); | |
969c39fb MM |
11458 | if (xml == NULL) |
11459 | return BTRACE_ERR_UNKNOWN; | |
9accd112 | 11460 | |
969c39fb MM |
11461 | cleanup = make_cleanup (xfree, xml); |
11462 | *btrace = parse_xml_btrace (xml); | |
11463 | do_cleanups (cleanup); | |
9accd112 | 11464 | |
969c39fb | 11465 | return BTRACE_ERR_NONE; |
9accd112 MM |
11466 | } |
11467 | ||
ced63ec0 | 11468 | static int |
5436ff03 | 11469 | remote_augmented_libraries_svr4_read (struct target_ops *self) |
ced63ec0 | 11470 | { |
4082afcc PA |
11471 | return (packet_support (PACKET_augmented_libraries_svr4_read_feature) |
11472 | == PACKET_ENABLE); | |
ced63ec0 GB |
11473 | } |
11474 | ||
9dd130a0 TT |
11475 | /* Implementation of to_load. */ |
11476 | ||
11477 | static void | |
9cbe5fff | 11478 | remote_load (struct target_ops *self, const char *name, int from_tty) |
9dd130a0 TT |
11479 | { |
11480 | generic_load (name, from_tty); | |
11481 | } | |
11482 | ||
c906108c | 11483 | static void |
fba45db2 | 11484 | init_remote_ops (void) |
c906108c | 11485 | { |
c5aa993b | 11486 | remote_ops.to_shortname = "remote"; |
c906108c | 11487 | remote_ops.to_longname = "Remote serial target in gdb-specific protocol"; |
c5aa993b | 11488 | remote_ops.to_doc = |
c906108c | 11489 | "Use a remote computer via a serial line, using a gdb-specific protocol.\n\ |
0d06e24b JM |
11490 | Specify the serial device it is connected to\n\ |
11491 | (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."; | |
c5aa993b JM |
11492 | remote_ops.to_open = remote_open; |
11493 | remote_ops.to_close = remote_close; | |
c906108c | 11494 | remote_ops.to_detach = remote_detach; |
6ad8ae5c | 11495 | remote_ops.to_disconnect = remote_disconnect; |
c5aa993b | 11496 | remote_ops.to_resume = remote_resume; |
c906108c SS |
11497 | remote_ops.to_wait = remote_wait; |
11498 | remote_ops.to_fetch_registers = remote_fetch_registers; | |
11499 | remote_ops.to_store_registers = remote_store_registers; | |
11500 | remote_ops.to_prepare_to_store = remote_prepare_to_store; | |
c5aa993b | 11501 | remote_ops.to_files_info = remote_files_info; |
c906108c SS |
11502 | remote_ops.to_insert_breakpoint = remote_insert_breakpoint; |
11503 | remote_ops.to_remove_breakpoint = remote_remove_breakpoint; | |
3c3bea1c GS |
11504 | remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint; |
11505 | remote_ops.to_stopped_data_address = remote_stopped_data_address; | |
283002cf MR |
11506 | remote_ops.to_watchpoint_addr_within_range = |
11507 | remote_watchpoint_addr_within_range; | |
3c3bea1c GS |
11508 | remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources; |
11509 | remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint; | |
11510 | remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint; | |
480a3f21 PW |
11511 | remote_ops.to_region_ok_for_hw_watchpoint |
11512 | = remote_region_ok_for_hw_watchpoint; | |
3c3bea1c GS |
11513 | remote_ops.to_insert_watchpoint = remote_insert_watchpoint; |
11514 | remote_ops.to_remove_watchpoint = remote_remove_watchpoint; | |
c5aa993b | 11515 | remote_ops.to_kill = remote_kill; |
9dd130a0 | 11516 | remote_ops.to_load = remote_load; |
c906108c | 11517 | remote_ops.to_mourn_inferior = remote_mourn; |
2455069d | 11518 | remote_ops.to_pass_signals = remote_pass_signals; |
9b224c5e | 11519 | remote_ops.to_program_signals = remote_program_signals; |
c906108c | 11520 | remote_ops.to_thread_alive = remote_thread_alive; |
e8032dde | 11521 | remote_ops.to_update_thread_list = remote_update_thread_list; |
0caabb7e | 11522 | remote_ops.to_pid_to_str = remote_pid_to_str; |
cf759d3b | 11523 | remote_ops.to_extra_thread_info = remote_threads_extra_info; |
10760264 | 11524 | remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid; |
c906108c | 11525 | remote_ops.to_stop = remote_stop; |
4b8a223f | 11526 | remote_ops.to_xfer_partial = remote_xfer_partial; |
96baa820 | 11527 | remote_ops.to_rcmd = remote_rcmd; |
49d03eab | 11528 | remote_ops.to_log_command = serial_log_command; |
38691318 | 11529 | remote_ops.to_get_thread_local_address = remote_get_thread_local_address; |
c906108c | 11530 | remote_ops.to_stratum = process_stratum; |
c35b1492 PA |
11531 | remote_ops.to_has_all_memory = default_child_has_all_memory; |
11532 | remote_ops.to_has_memory = default_child_has_memory; | |
11533 | remote_ops.to_has_stack = default_child_has_stack; | |
11534 | remote_ops.to_has_registers = default_child_has_registers; | |
11535 | remote_ops.to_has_execution = default_child_has_execution; | |
3e43a32a | 11536 | remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */ |
b2175913 | 11537 | remote_ops.to_can_execute_reverse = remote_can_execute_reverse; |
c5aa993b | 11538 | remote_ops.to_magic = OPS_MAGIC; |
fd79ecee | 11539 | remote_ops.to_memory_map = remote_memory_map; |
a76d924d DJ |
11540 | remote_ops.to_flash_erase = remote_flash_erase; |
11541 | remote_ops.to_flash_done = remote_flash_done; | |
29709017 | 11542 | remote_ops.to_read_description = remote_read_description; |
08388c79 | 11543 | remote_ops.to_search_memory = remote_search_memory; |
75c99385 PA |
11544 | remote_ops.to_can_async_p = remote_can_async_p; |
11545 | remote_ops.to_is_async_p = remote_is_async_p; | |
11546 | remote_ops.to_async = remote_async; | |
75c99385 PA |
11547 | remote_ops.to_terminal_inferior = remote_terminal_inferior; |
11548 | remote_ops.to_terminal_ours = remote_terminal_ours; | |
74531fed | 11549 | remote_ops.to_supports_non_stop = remote_supports_non_stop; |
8a305172 | 11550 | remote_ops.to_supports_multi_process = remote_supports_multi_process; |
03583c20 UW |
11551 | remote_ops.to_supports_disable_randomization |
11552 | = remote_supports_disable_randomization; | |
7313baad UW |
11553 | remote_ops.to_fileio_open = remote_hostio_open; |
11554 | remote_ops.to_fileio_pwrite = remote_hostio_pwrite; | |
11555 | remote_ops.to_fileio_pread = remote_hostio_pread; | |
11556 | remote_ops.to_fileio_close = remote_hostio_close; | |
11557 | remote_ops.to_fileio_unlink = remote_hostio_unlink; | |
b9e7b9c3 | 11558 | remote_ops.to_fileio_readlink = remote_hostio_readlink; |
d248b706 | 11559 | remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint; |
3065dfb6 | 11560 | remote_ops.to_supports_string_tracing = remote_supports_string_tracing; |
b775012e | 11561 | remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints; |
d3ce09f5 | 11562 | remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands; |
35b1e5cc SS |
11563 | remote_ops.to_trace_init = remote_trace_init; |
11564 | remote_ops.to_download_tracepoint = remote_download_tracepoint; | |
1e4d1764 | 11565 | remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint; |
3e43a32a MS |
11566 | remote_ops.to_download_trace_state_variable |
11567 | = remote_download_trace_state_variable; | |
d248b706 KY |
11568 | remote_ops.to_enable_tracepoint = remote_enable_tracepoint; |
11569 | remote_ops.to_disable_tracepoint = remote_disable_tracepoint; | |
35b1e5cc SS |
11570 | remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions; |
11571 | remote_ops.to_trace_start = remote_trace_start; | |
11572 | remote_ops.to_get_trace_status = remote_get_trace_status; | |
f196051f | 11573 | remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status; |
35b1e5cc SS |
11574 | remote_ops.to_trace_stop = remote_trace_stop; |
11575 | remote_ops.to_trace_find = remote_trace_find; | |
3e43a32a MS |
11576 | remote_ops.to_get_trace_state_variable_value |
11577 | = remote_get_trace_state_variable_value; | |
00bf0b85 SS |
11578 | remote_ops.to_save_trace_data = remote_save_trace_data; |
11579 | remote_ops.to_upload_tracepoints = remote_upload_tracepoints; | |
3e43a32a MS |
11580 | remote_ops.to_upload_trace_state_variables |
11581 | = remote_upload_trace_state_variables; | |
00bf0b85 | 11582 | remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data; |
405f8e94 | 11583 | remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len; |
35b1e5cc | 11584 | remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing; |
4daf5ac0 | 11585 | remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer; |
f6f899bf | 11586 | remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size; |
f196051f | 11587 | remote_ops.to_set_trace_notes = remote_set_trace_notes; |
dc146f7c | 11588 | remote_ops.to_core_of_thread = remote_core_of_thread; |
4a5e7a5b | 11589 | remote_ops.to_verify_memory = remote_verify_memory; |
711e434b | 11590 | remote_ops.to_get_tib_address = remote_get_tib_address; |
d914c394 | 11591 | remote_ops.to_set_permissions = remote_set_permissions; |
0fb4aa4b PA |
11592 | remote_ops.to_static_tracepoint_marker_at |
11593 | = remote_static_tracepoint_marker_at; | |
11594 | remote_ops.to_static_tracepoint_markers_by_strid | |
11595 | = remote_static_tracepoint_markers_by_strid; | |
b3b9301e | 11596 | remote_ops.to_traceframe_info = remote_traceframe_info; |
d1feda86 YQ |
11597 | remote_ops.to_use_agent = remote_use_agent; |
11598 | remote_ops.to_can_use_agent = remote_can_use_agent; | |
9accd112 MM |
11599 | remote_ops.to_supports_btrace = remote_supports_btrace; |
11600 | remote_ops.to_enable_btrace = remote_enable_btrace; | |
11601 | remote_ops.to_disable_btrace = remote_disable_btrace; | |
11602 | remote_ops.to_teardown_btrace = remote_teardown_btrace; | |
11603 | remote_ops.to_read_btrace = remote_read_btrace; | |
ced63ec0 GB |
11604 | remote_ops.to_augmented_libraries_svr4_read = |
11605 | remote_augmented_libraries_svr4_read; | |
c906108c SS |
11606 | } |
11607 | ||
11608 | /* Set up the extended remote vector by making a copy of the standard | |
11609 | remote vector and adding to it. */ | |
11610 | ||
11611 | static void | |
fba45db2 | 11612 | init_extended_remote_ops (void) |
c906108c SS |
11613 | { |
11614 | extended_remote_ops = remote_ops; | |
11615 | ||
0f71a2f6 | 11616 | extended_remote_ops.to_shortname = "extended-remote"; |
c5aa993b | 11617 | extended_remote_ops.to_longname = |
c906108c | 11618 | "Extended remote serial target in gdb-specific protocol"; |
c5aa993b | 11619 | extended_remote_ops.to_doc = |
c906108c | 11620 | "Use a remote computer via a serial line, using a gdb-specific protocol.\n\ |
39237dd1 PA |
11621 | Specify the serial device it is connected to (e.g. /dev/ttya)."; |
11622 | extended_remote_ops.to_open = extended_remote_open; | |
c906108c SS |
11623 | extended_remote_ops.to_create_inferior = extended_remote_create_inferior; |
11624 | extended_remote_ops.to_mourn_inferior = extended_remote_mourn; | |
2d717e4f DJ |
11625 | extended_remote_ops.to_detach = extended_remote_detach; |
11626 | extended_remote_ops.to_attach = extended_remote_attach; | |
b9c1d481 | 11627 | extended_remote_ops.to_post_attach = extended_remote_post_attach; |
82f73884 | 11628 | extended_remote_ops.to_kill = extended_remote_kill; |
03583c20 UW |
11629 | extended_remote_ops.to_supports_disable_randomization |
11630 | = extended_remote_supports_disable_randomization; | |
0f71a2f6 JM |
11631 | } |
11632 | ||
6426a772 | 11633 | static int |
6a109b6b | 11634 | remote_can_async_p (struct target_ops *ops) |
6426a772 | 11635 | { |
5d93a237 TT |
11636 | struct remote_state *rs = get_remote_state (); |
11637 | ||
c6ebd6cf | 11638 | if (!target_async_permitted) |
75c99385 PA |
11639 | /* We only enable async when the user specifically asks for it. */ |
11640 | return 0; | |
11641 | ||
23860348 | 11642 | /* We're async whenever the serial device is. */ |
5d93a237 | 11643 | return serial_can_async_p (rs->remote_desc); |
6426a772 JM |
11644 | } |
11645 | ||
11646 | static int | |
6a109b6b | 11647 | remote_is_async_p (struct target_ops *ops) |
6426a772 | 11648 | { |
5d93a237 TT |
11649 | struct remote_state *rs = get_remote_state (); |
11650 | ||
c6ebd6cf | 11651 | if (!target_async_permitted) |
75c99385 PA |
11652 | /* We only enable async when the user specifically asks for it. */ |
11653 | return 0; | |
11654 | ||
23860348 | 11655 | /* We're async whenever the serial device is. */ |
5d93a237 | 11656 | return serial_is_async_p (rs->remote_desc); |
6426a772 JM |
11657 | } |
11658 | ||
2acceee2 JM |
11659 | /* Pass the SERIAL event on and up to the client. One day this code |
11660 | will be able to delay notifying the client of an event until the | |
23860348 | 11661 | point where an entire packet has been received. */ |
2acceee2 | 11662 | |
2acceee2 JM |
11663 | static serial_event_ftype remote_async_serial_handler; |
11664 | ||
6426a772 | 11665 | static void |
819cc324 | 11666 | remote_async_serial_handler (struct serial *scb, void *context) |
6426a772 | 11667 | { |
88b496c3 TT |
11668 | struct remote_state *rs = context; |
11669 | ||
2acceee2 JM |
11670 | /* Don't propogate error information up to the client. Instead let |
11671 | the client find out about the error by querying the target. */ | |
88b496c3 | 11672 | rs->async_client_callback (INF_REG_EVENT, rs->async_client_context); |
2acceee2 JM |
11673 | } |
11674 | ||
74531fed PA |
11675 | static void |
11676 | remote_async_inferior_event_handler (gdb_client_data data) | |
11677 | { | |
11678 | inferior_event_handler (INF_REG_EVENT, NULL); | |
11679 | } | |
11680 | ||
2acceee2 | 11681 | static void |
6a109b6b TT |
11682 | remote_async (struct target_ops *ops, |
11683 | void (*callback) (enum inferior_event_type event_type, | |
11684 | void *context), | |
11685 | void *context) | |
2acceee2 | 11686 | { |
5d93a237 TT |
11687 | struct remote_state *rs = get_remote_state (); |
11688 | ||
2acceee2 JM |
11689 | if (callback != NULL) |
11690 | { | |
88b496c3 TT |
11691 | serial_async (rs->remote_desc, remote_async_serial_handler, rs); |
11692 | rs->async_client_callback = callback; | |
11693 | rs->async_client_context = context; | |
2acceee2 JM |
11694 | } |
11695 | else | |
5d93a237 | 11696 | serial_async (rs->remote_desc, NULL, NULL); |
6426a772 JM |
11697 | } |
11698 | ||
5a2468f5 | 11699 | static void |
c2d11a7d | 11700 | set_remote_cmd (char *args, int from_tty) |
5a2468f5 | 11701 | { |
635c7e8a | 11702 | help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout); |
5a2468f5 JM |
11703 | } |
11704 | ||
d471ea57 AC |
11705 | static void |
11706 | show_remote_cmd (char *args, int from_tty) | |
11707 | { | |
37a105a1 | 11708 | /* We can't just use cmd_show_list here, because we want to skip |
427c3a89 | 11709 | the redundant "show remote Z-packet" and the legacy aliases. */ |
37a105a1 DJ |
11710 | struct cleanup *showlist_chain; |
11711 | struct cmd_list_element *list = remote_show_cmdlist; | |
79a45e25 | 11712 | struct ui_out *uiout = current_uiout; |
37a105a1 DJ |
11713 | |
11714 | showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist"); | |
11715 | for (; list != NULL; list = list->next) | |
11716 | if (strcmp (list->name, "Z-packet") == 0) | |
11717 | continue; | |
427c3a89 DJ |
11718 | else if (list->type == not_set_cmd) |
11719 | /* Alias commands are exactly like the original, except they | |
11720 | don't have the normal type. */ | |
11721 | continue; | |
11722 | else | |
37a105a1 DJ |
11723 | { |
11724 | struct cleanup *option_chain | |
11725 | = make_cleanup_ui_out_tuple_begin_end (uiout, "option"); | |
a744cf53 | 11726 | |
37a105a1 DJ |
11727 | ui_out_field_string (uiout, "name", list->name); |
11728 | ui_out_text (uiout, ": "); | |
427c3a89 | 11729 | if (list->type == show_cmd) |
5b9afe8a | 11730 | do_show_command ((char *) NULL, from_tty, list); |
427c3a89 DJ |
11731 | else |
11732 | cmd_func (list, NULL, from_tty); | |
37a105a1 DJ |
11733 | /* Close the tuple. */ |
11734 | do_cleanups (option_chain); | |
11735 | } | |
427c3a89 DJ |
11736 | |
11737 | /* Close the tuple. */ | |
11738 | do_cleanups (showlist_chain); | |
d471ea57 | 11739 | } |
5a2468f5 | 11740 | |
0f71a2f6 | 11741 | |
23860348 | 11742 | /* Function to be called whenever a new objfile (shlib) is detected. */ |
dc8acb97 MS |
11743 | static void |
11744 | remote_new_objfile (struct objfile *objfile) | |
11745 | { | |
5d93a237 TT |
11746 | struct remote_state *rs = get_remote_state (); |
11747 | ||
11748 | if (rs->remote_desc != 0) /* Have a remote connection. */ | |
36d25514 | 11749 | remote_check_symbols (); |
dc8acb97 MS |
11750 | } |
11751 | ||
00bf0b85 SS |
11752 | /* Pull all the tracepoints defined on the target and create local |
11753 | data structures representing them. We don't want to create real | |
11754 | tracepoints yet, we don't want to mess up the user's existing | |
11755 | collection. */ | |
11756 | ||
11757 | static int | |
ab6617cc | 11758 | remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp) |
d5551862 | 11759 | { |
00bf0b85 SS |
11760 | struct remote_state *rs = get_remote_state (); |
11761 | char *p; | |
d5551862 | 11762 | |
00bf0b85 SS |
11763 | /* Ask for a first packet of tracepoint definition. */ |
11764 | putpkt ("qTfP"); | |
11765 | getpkt (&rs->buf, &rs->buf_size, 0); | |
11766 | p = rs->buf; | |
11767 | while (*p && *p != 'l') | |
d5551862 | 11768 | { |
00bf0b85 SS |
11769 | parse_tracepoint_definition (p, utpp); |
11770 | /* Ask for another packet of tracepoint definition. */ | |
11771 | putpkt ("qTsP"); | |
11772 | getpkt (&rs->buf, &rs->buf_size, 0); | |
11773 | p = rs->buf; | |
d5551862 | 11774 | } |
00bf0b85 | 11775 | return 0; |
d5551862 SS |
11776 | } |
11777 | ||
00bf0b85 | 11778 | static int |
181e3713 TT |
11779 | remote_upload_trace_state_variables (struct target_ops *self, |
11780 | struct uploaded_tsv **utsvp) | |
d5551862 | 11781 | { |
00bf0b85 | 11782 | struct remote_state *rs = get_remote_state (); |
d5551862 | 11783 | char *p; |
d5551862 | 11784 | |
00bf0b85 SS |
11785 | /* Ask for a first packet of variable definition. */ |
11786 | putpkt ("qTfV"); | |
d5551862 SS |
11787 | getpkt (&rs->buf, &rs->buf_size, 0); |
11788 | p = rs->buf; | |
00bf0b85 | 11789 | while (*p && *p != 'l') |
d5551862 | 11790 | { |
00bf0b85 SS |
11791 | parse_tsv_definition (p, utsvp); |
11792 | /* Ask for another packet of variable definition. */ | |
11793 | putpkt ("qTsV"); | |
d5551862 SS |
11794 | getpkt (&rs->buf, &rs->buf_size, 0); |
11795 | p = rs->buf; | |
11796 | } | |
00bf0b85 | 11797 | return 0; |
d5551862 SS |
11798 | } |
11799 | ||
c1e36e3e PA |
11800 | /* The "set/show range-stepping" show hook. */ |
11801 | ||
11802 | static void | |
11803 | show_range_stepping (struct ui_file *file, int from_tty, | |
11804 | struct cmd_list_element *c, | |
11805 | const char *value) | |
11806 | { | |
11807 | fprintf_filtered (file, | |
11808 | _("Debugger's willingness to use range stepping " | |
11809 | "is %s.\n"), value); | |
11810 | } | |
11811 | ||
11812 | /* The "set/show range-stepping" set hook. */ | |
11813 | ||
11814 | static void | |
11815 | set_range_stepping (char *ignore_args, int from_tty, | |
11816 | struct cmd_list_element *c) | |
11817 | { | |
5d93a237 TT |
11818 | struct remote_state *rs = get_remote_state (); |
11819 | ||
c1e36e3e PA |
11820 | /* Whene enabling, check whether range stepping is actually |
11821 | supported by the target, and warn if not. */ | |
11822 | if (use_range_stepping) | |
11823 | { | |
5d93a237 | 11824 | if (rs->remote_desc != NULL) |
c1e36e3e | 11825 | { |
4082afcc | 11826 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN) |
c1e36e3e PA |
11827 | remote_vcont_probe (rs); |
11828 | ||
4082afcc | 11829 | if (packet_support (PACKET_vCont) == PACKET_ENABLE |
c1e36e3e PA |
11830 | && rs->supports_vCont.r) |
11831 | return; | |
11832 | } | |
11833 | ||
11834 | warning (_("Range stepping is not supported by the current target")); | |
11835 | } | |
11836 | } | |
11837 | ||
c906108c | 11838 | void |
fba45db2 | 11839 | _initialize_remote (void) |
c906108c | 11840 | { |
ea9c271d | 11841 | struct remote_state *rs; |
9a7071a8 | 11842 | struct cmd_list_element *cmd; |
6f937416 | 11843 | const char *cmd_name; |
ea9c271d | 11844 | |
0f71a2f6 | 11845 | /* architecture specific data */ |
2bc416ba | 11846 | remote_gdbarch_data_handle = |
23860348 | 11847 | gdbarch_data_register_post_init (init_remote_state); |
29709017 DJ |
11848 | remote_g_packet_data_handle = |
11849 | gdbarch_data_register_pre_init (remote_g_packet_data_init); | |
d01949b6 | 11850 | |
ea9c271d DJ |
11851 | /* Initialize the per-target state. At the moment there is only one |
11852 | of these, not one per target. Only one target is active at a | |
cf792862 TT |
11853 | time. */ |
11854 | remote_state = new_remote_state (); | |
ea9c271d | 11855 | |
c906108c SS |
11856 | init_remote_ops (); |
11857 | add_target (&remote_ops); | |
11858 | ||
11859 | init_extended_remote_ops (); | |
11860 | add_target (&extended_remote_ops); | |
cce74817 | 11861 | |
dc8acb97 | 11862 | /* Hook into new objfile notification. */ |
06d3b283 | 11863 | observer_attach_new_objfile (remote_new_objfile); |
5f4cf0bb YQ |
11864 | /* We're no longer interested in notification events of an inferior |
11865 | when it exits. */ | |
11866 | observer_attach_inferior_exit (discard_pending_stop_replies); | |
dc8acb97 | 11867 | |
b803fb0f | 11868 | /* Set up signal handlers. */ |
934b9bac | 11869 | async_sigint_remote_token = |
b803fb0f | 11870 | create_async_signal_handler (async_remote_interrupt, NULL); |
934b9bac | 11871 | async_sigint_remote_twice_token = |
6d549500 | 11872 | create_async_signal_handler (async_remote_interrupt_twice, NULL); |
b803fb0f | 11873 | |
c906108c SS |
11874 | #if 0 |
11875 | init_remote_threadtests (); | |
11876 | #endif | |
11877 | ||
722247f1 | 11878 | stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree); |
23860348 | 11879 | /* set/show remote ... */ |
d471ea57 | 11880 | |
1bedd215 | 11881 | add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\ |
5a2468f5 JM |
11882 | Remote protocol specific variables\n\ |
11883 | Configure various remote-protocol specific variables such as\n\ | |
1bedd215 | 11884 | the packets being used"), |
cff3e48b | 11885 | &remote_set_cmdlist, "set remote ", |
23860348 | 11886 | 0 /* allow-unknown */, &setlist); |
1bedd215 | 11887 | add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\ |
5a2468f5 JM |
11888 | Remote protocol specific variables\n\ |
11889 | Configure various remote-protocol specific variables such as\n\ | |
1bedd215 | 11890 | the packets being used"), |
cff3e48b | 11891 | &remote_show_cmdlist, "show remote ", |
23860348 | 11892 | 0 /* allow-unknown */, &showlist); |
5a2468f5 | 11893 | |
1a966eab AC |
11894 | add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\ |
11895 | Compare section data on target to the exec file.\n\ | |
95cf3b38 DT |
11896 | Argument is a single section name (default: all loaded sections).\n\ |
11897 | To compare only read-only loaded sections, specify the -r option."), | |
c906108c SS |
11898 | &cmdlist); |
11899 | ||
1a966eab AC |
11900 | add_cmd ("packet", class_maintenance, packet_command, _("\ |
11901 | Send an arbitrary packet to a remote target.\n\ | |
c906108c SS |
11902 | maintenance packet TEXT\n\ |
11903 | If GDB is talking to an inferior via the GDB serial protocol, then\n\ | |
11904 | this command sends the string TEXT to the inferior, and displays the\n\ | |
11905 | response packet. GDB supplies the initial `$' character, and the\n\ | |
1a966eab | 11906 | terminating `#' character and checksum."), |
c906108c SS |
11907 | &maintenancelist); |
11908 | ||
7915a72c AC |
11909 | add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\ |
11910 | Set whether to send break if interrupted."), _("\ | |
11911 | Show whether to send break if interrupted."), _("\ | |
11912 | If set, a break, instead of a cntrl-c, is sent to the remote target."), | |
9a7071a8 | 11913 | set_remotebreak, show_remotebreak, |
e707bbc2 | 11914 | &setlist, &showlist); |
9a7071a8 JB |
11915 | cmd_name = "remotebreak"; |
11916 | cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1); | |
11917 | deprecate_cmd (cmd, "set remote interrupt-sequence"); | |
11918 | cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */ | |
11919 | cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1); | |
11920 | deprecate_cmd (cmd, "show remote interrupt-sequence"); | |
11921 | ||
11922 | add_setshow_enum_cmd ("interrupt-sequence", class_support, | |
3e43a32a MS |
11923 | interrupt_sequence_modes, &interrupt_sequence_mode, |
11924 | _("\ | |
9a7071a8 JB |
11925 | Set interrupt sequence to remote target."), _("\ |
11926 | Show interrupt sequence to remote target."), _("\ | |
11927 | Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."), | |
11928 | NULL, show_interrupt_sequence, | |
11929 | &remote_set_cmdlist, | |
11930 | &remote_show_cmdlist); | |
11931 | ||
11932 | add_setshow_boolean_cmd ("interrupt-on-connect", class_support, | |
11933 | &interrupt_on_connect, _("\ | |
11934 | Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \ | |
11935 | Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \ | |
11936 | If set, interrupt sequence is sent to remote target."), | |
11937 | NULL, NULL, | |
11938 | &remote_set_cmdlist, &remote_show_cmdlist); | |
c906108c | 11939 | |
23860348 | 11940 | /* Install commands for configuring memory read/write packets. */ |
11cf8741 | 11941 | |
1a966eab AC |
11942 | add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\ |
11943 | Set the maximum number of bytes per memory write packet (deprecated)."), | |
11cf8741 | 11944 | &setlist); |
1a966eab AC |
11945 | add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\ |
11946 | Show the maximum number of bytes per memory write packet (deprecated)."), | |
11cf8741 JM |
11947 | &showlist); |
11948 | add_cmd ("memory-write-packet-size", no_class, | |
1a966eab AC |
11949 | set_memory_write_packet_size, _("\ |
11950 | Set the maximum number of bytes per memory-write packet.\n\ | |
11951 | Specify the number of bytes in a packet or 0 (zero) for the\n\ | |
11952 | default packet size. The actual limit is further reduced\n\ | |
11953 | dependent on the target. Specify ``fixed'' to disable the\n\ | |
11954 | further restriction and ``limit'' to enable that restriction."), | |
11cf8741 JM |
11955 | &remote_set_cmdlist); |
11956 | add_cmd ("memory-read-packet-size", no_class, | |
1a966eab AC |
11957 | set_memory_read_packet_size, _("\ |
11958 | Set the maximum number of bytes per memory-read packet.\n\ | |
11959 | Specify the number of bytes in a packet or 0 (zero) for the\n\ | |
11960 | default packet size. The actual limit is further reduced\n\ | |
11961 | dependent on the target. Specify ``fixed'' to disable the\n\ | |
11962 | further restriction and ``limit'' to enable that restriction."), | |
11cf8741 JM |
11963 | &remote_set_cmdlist); |
11964 | add_cmd ("memory-write-packet-size", no_class, | |
11965 | show_memory_write_packet_size, | |
1a966eab | 11966 | _("Show the maximum number of bytes per memory-write packet."), |
11cf8741 JM |
11967 | &remote_show_cmdlist); |
11968 | add_cmd ("memory-read-packet-size", no_class, | |
11969 | show_memory_read_packet_size, | |
1a966eab | 11970 | _("Show the maximum number of bytes per memory-read packet."), |
11cf8741 | 11971 | &remote_show_cmdlist); |
c906108c | 11972 | |
b3f42336 | 11973 | add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class, |
7915a72c AC |
11974 | &remote_hw_watchpoint_limit, _("\ |
11975 | Set the maximum number of target hardware watchpoints."), _("\ | |
11976 | Show the maximum number of target hardware watchpoints."), _("\ | |
11977 | Specify a negative limit for unlimited."), | |
3e43a32a MS |
11978 | NULL, NULL, /* FIXME: i18n: The maximum |
11979 | number of target hardware | |
11980 | watchpoints is %s. */ | |
b3f42336 | 11981 | &remote_set_cmdlist, &remote_show_cmdlist); |
480a3f21 PW |
11982 | add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class, |
11983 | &remote_hw_watchpoint_length_limit, _("\ | |
11984 | Set the maximum length (in bytes) of a target hardware watchpoint."), _("\ | |
11985 | Show the maximum length (in bytes) of a target hardware watchpoint."), _("\ | |
11986 | Specify a negative limit for unlimited."), | |
11987 | NULL, NULL, /* FIXME: i18n: The maximum | |
11988 | length (in bytes) of a target | |
11989 | hardware watchpoint is %s. */ | |
11990 | &remote_set_cmdlist, &remote_show_cmdlist); | |
b3f42336 | 11991 | add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class, |
7915a72c AC |
11992 | &remote_hw_breakpoint_limit, _("\ |
11993 | Set the maximum number of target hardware breakpoints."), _("\ | |
11994 | Show the maximum number of target hardware breakpoints."), _("\ | |
11995 | Specify a negative limit for unlimited."), | |
3e43a32a MS |
11996 | NULL, NULL, /* FIXME: i18n: The maximum |
11997 | number of target hardware | |
11998 | breakpoints is %s. */ | |
b3f42336 | 11999 | &remote_set_cmdlist, &remote_show_cmdlist); |
501eef12 | 12000 | |
1b493192 PA |
12001 | add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure, |
12002 | &remote_address_size, _("\ | |
4d28ad1e AC |
12003 | Set the maximum size of the address (in bits) in a memory packet."), _("\ |
12004 | Show the maximum size of the address (in bits) in a memory packet."), NULL, | |
1b493192 PA |
12005 | NULL, |
12006 | NULL, /* FIXME: i18n: */ | |
12007 | &setlist, &showlist); | |
c906108c | 12008 | |
ca4f7f8b PA |
12009 | init_all_packet_configs (); |
12010 | ||
444abaca | 12011 | add_packet_config_cmd (&remote_protocol_packets[PACKET_X], |
bb572ddd | 12012 | "X", "binary-download", 1); |
0f71a2f6 | 12013 | |
444abaca | 12014 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont], |
bb572ddd | 12015 | "vCont", "verbose-resume", 0); |
506fb367 | 12016 | |
89be2091 DJ |
12017 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals], |
12018 | "QPassSignals", "pass-signals", 0); | |
12019 | ||
9b224c5e PA |
12020 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals], |
12021 | "QProgramSignals", "program-signals", 0); | |
12022 | ||
444abaca | 12023 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol], |
bb572ddd | 12024 | "qSymbol", "symbol-lookup", 0); |
dc8acb97 | 12025 | |
444abaca | 12026 | add_packet_config_cmd (&remote_protocol_packets[PACKET_P], |
bb572ddd | 12027 | "P", "set-register", 1); |
d471ea57 | 12028 | |
444abaca | 12029 | add_packet_config_cmd (&remote_protocol_packets[PACKET_p], |
bb572ddd | 12030 | "p", "fetch-register", 1); |
b96ec7ac | 12031 | |
444abaca | 12032 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0], |
bb572ddd | 12033 | "Z0", "software-breakpoint", 0); |
d471ea57 | 12034 | |
444abaca | 12035 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1], |
bb572ddd | 12036 | "Z1", "hardware-breakpoint", 0); |
d471ea57 | 12037 | |
444abaca | 12038 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2], |
bb572ddd | 12039 | "Z2", "write-watchpoint", 0); |
d471ea57 | 12040 | |
444abaca | 12041 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3], |
bb572ddd | 12042 | "Z3", "read-watchpoint", 0); |
d471ea57 | 12043 | |
444abaca | 12044 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4], |
bb572ddd | 12045 | "Z4", "access-watchpoint", 0); |
d471ea57 | 12046 | |
0876f84a DJ |
12047 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv], |
12048 | "qXfer:auxv:read", "read-aux-vector", 0); | |
802188a7 | 12049 | |
23181151 DJ |
12050 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features], |
12051 | "qXfer:features:read", "target-features", 0); | |
12052 | ||
cfa9d6d9 DJ |
12053 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries], |
12054 | "qXfer:libraries:read", "library-info", 0); | |
12055 | ||
2268b414 JK |
12056 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4], |
12057 | "qXfer:libraries-svr4:read", "library-info-svr4", 0); | |
12058 | ||
fd79ecee DJ |
12059 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map], |
12060 | "qXfer:memory-map:read", "memory-map", 0); | |
12061 | ||
0e7f50da UW |
12062 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read], |
12063 | "qXfer:spu:read", "read-spu-object", 0); | |
12064 | ||
12065 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write], | |
12066 | "qXfer:spu:write", "write-spu-object", 0); | |
12067 | ||
07e059b5 VP |
12068 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata], |
12069 | "qXfer:osdata:read", "osdata", 0); | |
12070 | ||
dc146f7c VP |
12071 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads], |
12072 | "qXfer:threads:read", "threads", 0); | |
12073 | ||
4aa995e1 PA |
12074 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read], |
12075 | "qXfer:siginfo:read", "read-siginfo-object", 0); | |
12076 | ||
12077 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write], | |
12078 | "qXfer:siginfo:write", "write-siginfo-object", 0); | |
12079 | ||
b3b9301e PA |
12080 | add_packet_config_cmd |
12081 | (&remote_protocol_packets[PACKET_qXfer_traceframe_info], | |
eb9fe518 | 12082 | "qXfer:traceframe-info:read", "traceframe-info", 0); |
b3b9301e | 12083 | |
169081d0 TG |
12084 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib], |
12085 | "qXfer:uib:read", "unwind-info-block", 0); | |
12086 | ||
444abaca | 12087 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr], |
38691318 | 12088 | "qGetTLSAddr", "get-thread-local-storage-address", |
38691318 KB |
12089 | 0); |
12090 | ||
711e434b PM |
12091 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr], |
12092 | "qGetTIBAddr", "get-thread-information-block-address", | |
12093 | 0); | |
12094 | ||
40ab02ce MS |
12095 | add_packet_config_cmd (&remote_protocol_packets[PACKET_bc], |
12096 | "bc", "reverse-continue", 0); | |
12097 | ||
12098 | add_packet_config_cmd (&remote_protocol_packets[PACKET_bs], | |
12099 | "bs", "reverse-step", 0); | |
12100 | ||
be2a5f71 DJ |
12101 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported], |
12102 | "qSupported", "supported-packets", 0); | |
12103 | ||
08388c79 DE |
12104 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory], |
12105 | "qSearch:memory", "search-memory", 0); | |
12106 | ||
bd3eecc3 PA |
12107 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus], |
12108 | "qTStatus", "trace-status", 0); | |
12109 | ||
a6b151f1 DJ |
12110 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open], |
12111 | "vFile:open", "hostio-open", 0); | |
12112 | ||
12113 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread], | |
12114 | "vFile:pread", "hostio-pread", 0); | |
12115 | ||
12116 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite], | |
12117 | "vFile:pwrite", "hostio-pwrite", 0); | |
12118 | ||
12119 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close], | |
12120 | "vFile:close", "hostio-close", 0); | |
12121 | ||
12122 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink], | |
12123 | "vFile:unlink", "hostio-unlink", 0); | |
12124 | ||
b9e7b9c3 UW |
12125 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink], |
12126 | "vFile:readlink", "hostio-readlink", 0); | |
12127 | ||
2d717e4f DJ |
12128 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach], |
12129 | "vAttach", "attach", 0); | |
12130 | ||
12131 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun], | |
12132 | "vRun", "run", 0); | |
12133 | ||
a6f3e723 SL |
12134 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode], |
12135 | "QStartNoAckMode", "noack", 0); | |
12136 | ||
82f73884 PA |
12137 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill], |
12138 | "vKill", "kill", 0); | |
12139 | ||
0b16c5cf PA |
12140 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached], |
12141 | "qAttached", "query-attached", 0); | |
12142 | ||
782b2b07 | 12143 | add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints], |
3e43a32a MS |
12144 | "ConditionalTracepoints", |
12145 | "conditional-tracepoints", 0); | |
3788aec7 LM |
12146 | |
12147 | add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints], | |
12148 | "ConditionalBreakpoints", | |
12149 | "conditional-breakpoints", 0); | |
12150 | ||
d3ce09f5 SS |
12151 | add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands], |
12152 | "BreakpointCommands", | |
12153 | "breakpoint-commands", 0); | |
12154 | ||
7a697b8d SS |
12155 | add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints], |
12156 | "FastTracepoints", "fast-tracepoints", 0); | |
782b2b07 | 12157 | |
409873ef SS |
12158 | add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource], |
12159 | "TracepointSource", "TracepointSource", 0); | |
12160 | ||
d914c394 SS |
12161 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow], |
12162 | "QAllow", "allow", 0); | |
12163 | ||
0fb4aa4b PA |
12164 | add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints], |
12165 | "StaticTracepoints", "static-tracepoints", 0); | |
12166 | ||
1e4d1764 YQ |
12167 | add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace], |
12168 | "InstallInTrace", "install-in-trace", 0); | |
12169 | ||
0fb4aa4b PA |
12170 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read], |
12171 | "qXfer:statictrace:read", "read-sdata-object", 0); | |
12172 | ||
78d85199 YQ |
12173 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic], |
12174 | "qXfer:fdpic:read", "read-fdpic-loadmap", 0); | |
12175 | ||
03583c20 UW |
12176 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization], |
12177 | "QDisableRandomization", "disable-randomization", 0); | |
12178 | ||
d1feda86 YQ |
12179 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent], |
12180 | "QAgent", "agent", 0); | |
12181 | ||
f6f899bf HAQ |
12182 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size], |
12183 | "QTBuffer:size", "trace-buffer-size", 0); | |
12184 | ||
9accd112 MM |
12185 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off], |
12186 | "Qbtrace:off", "disable-btrace", 0); | |
12187 | ||
12188 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts], | |
12189 | "Qbtrace:bts", "enable-btrace", 0); | |
12190 | ||
12191 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace], | |
12192 | "qXfer:btrace", "read-btrace", 0); | |
12193 | ||
ca4f7f8b PA |
12194 | /* Assert that we've registered commands for all packet configs. */ |
12195 | { | |
12196 | int i; | |
12197 | ||
12198 | for (i = 0; i < PACKET_MAX; i++) | |
12199 | { | |
12200 | /* Ideally all configs would have a command associated. Some | |
12201 | still don't though. */ | |
12202 | int excepted; | |
12203 | ||
12204 | switch (i) | |
12205 | { | |
12206 | case PACKET_QNonStop: | |
12207 | case PACKET_multiprocess_feature: | |
12208 | case PACKET_EnableDisableTracepoints_feature: | |
12209 | case PACKET_tracenz_feature: | |
12210 | case PACKET_DisconnectedTracing_feature: | |
12211 | case PACKET_augmented_libraries_svr4_read_feature: | |
936d2992 PA |
12212 | case PACKET_qCRC: |
12213 | /* Additions to this list need to be well justified: | |
12214 | pre-existing packets are OK; new packets are not. */ | |
ca4f7f8b PA |
12215 | excepted = 1; |
12216 | break; | |
12217 | default: | |
12218 | excepted = 0; | |
12219 | break; | |
12220 | } | |
12221 | ||
12222 | /* This catches both forgetting to add a config command, and | |
12223 | forgetting to remove a packet from the exception list. */ | |
12224 | gdb_assert (excepted == (remote_protocol_packets[i].name == NULL)); | |
12225 | } | |
12226 | } | |
12227 | ||
37a105a1 DJ |
12228 | /* Keep the old ``set remote Z-packet ...'' working. Each individual |
12229 | Z sub-packet has its own set and show commands, but users may | |
12230 | have sets to this variable in their .gdbinit files (or in their | |
12231 | documentation). */ | |
e9e68a56 | 12232 | add_setshow_auto_boolean_cmd ("Z-packet", class_obscure, |
7915a72c AC |
12233 | &remote_Z_packet_detect, _("\ |
12234 | Set use of remote protocol `Z' packets"), _("\ | |
12235 | Show use of remote protocol `Z' packets "), _("\ | |
3b64bf98 | 12236 | When set, GDB will attempt to use the remote breakpoint and watchpoint\n\ |
7915a72c | 12237 | packets."), |
e9e68a56 | 12238 | set_remote_protocol_Z_packet_cmd, |
3e43a32a MS |
12239 | show_remote_protocol_Z_packet_cmd, |
12240 | /* FIXME: i18n: Use of remote protocol | |
12241 | `Z' packets is %s. */ | |
e9e68a56 | 12242 | &remote_set_cmdlist, &remote_show_cmdlist); |
449092f6 | 12243 | |
a6b151f1 DJ |
12244 | add_prefix_cmd ("remote", class_files, remote_command, _("\ |
12245 | Manipulate files on the remote system\n\ | |
12246 | Transfer files to and from the remote target system."), | |
12247 | &remote_cmdlist, "remote ", | |
12248 | 0 /* allow-unknown */, &cmdlist); | |
12249 | ||
12250 | add_cmd ("put", class_files, remote_put_command, | |
12251 | _("Copy a local file to the remote system."), | |
12252 | &remote_cmdlist); | |
12253 | ||
12254 | add_cmd ("get", class_files, remote_get_command, | |
12255 | _("Copy a remote file to the local system."), | |
12256 | &remote_cmdlist); | |
12257 | ||
12258 | add_cmd ("delete", class_files, remote_delete_command, | |
12259 | _("Delete a remote file."), | |
12260 | &remote_cmdlist); | |
12261 | ||
2d717e4f DJ |
12262 | remote_exec_file = xstrdup (""); |
12263 | add_setshow_string_noescape_cmd ("exec-file", class_files, | |
12264 | &remote_exec_file, _("\ | |
12265 | Set the remote pathname for \"run\""), _("\ | |
12266 | Show the remote pathname for \"run\""), NULL, NULL, NULL, | |
12267 | &remote_set_cmdlist, &remote_show_cmdlist); | |
12268 | ||
c1e36e3e PA |
12269 | add_setshow_boolean_cmd ("range-stepping", class_run, |
12270 | &use_range_stepping, _("\ | |
12271 | Enable or disable range stepping."), _("\ | |
12272 | Show whether target-assisted range stepping is enabled."), _("\ | |
12273 | If on, and the target supports it, when stepping a source line, GDB\n\ | |
12274 | tells the target to step the corresponding range of addresses itself instead\n\ | |
12275 | of issuing multiple single-steps. This speeds up source level\n\ | |
12276 | stepping. If off, GDB always issues single-steps, even if range\n\ | |
12277 | stepping is supported by the target. The default is on."), | |
12278 | set_range_stepping, | |
12279 | show_range_stepping, | |
12280 | &setlist, | |
12281 | &showlist); | |
12282 | ||
449092f6 CV |
12283 | /* Eventually initialize fileio. See fileio.c */ |
12284 | initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist); | |
79d7f229 | 12285 | |
ba348170 | 12286 | /* Take advantage of the fact that the TID field is not used, to tag |
79d7f229 | 12287 | special ptids with it set to != 0. */ |
ba348170 PA |
12288 | magic_null_ptid = ptid_build (42000, -1, 1); |
12289 | not_sent_ptid = ptid_build (42000, -2, 1); | |
12290 | any_thread_ptid = ptid_build (42000, 0, 1); | |
35b1e5cc SS |
12291 | |
12292 | target_buf_size = 2048; | |
12293 | target_buf = xmalloc (target_buf_size); | |
c906108c | 12294 | } |
10760264 | 12295 |