Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Remote target communications for serial-line targets in custom GDB protocol |
8926118c | 2 | |
b811d2c2 | 3 | Copyright (C) 1988-2020 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" | |
3b3dac9b | 30 | #include "process-stratum-target.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" |
76727919 | 39 | #include "observable.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" |
268a13a5 TT |
45 | #include "gdbsupport/filestuff.h" |
46 | #include "gdbsupport/rsp-low.h" | |
6b940e6a | 47 | #include "disasm.h" |
f00aae0f | 48 | #include "location.h" |
c906108c | 49 | |
268a13a5 | 50 | #include "gdbsupport/gdb_sys_time.h" |
c906108c | 51 | |
43ff13b4 | 52 | #include "event-loop.h" |
c2c6d25f | 53 | #include "event-top.h" |
2acceee2 | 54 | #include "inf-loop.h" |
43ff13b4 | 55 | |
c906108c SS |
56 | #include <signal.h> |
57 | #include "serial.h" | |
58 | ||
6240bebf MS |
59 | #include "gdbcore.h" /* for exec_bfd */ |
60 | ||
449092f6 | 61 | #include "remote-fileio.h" |
a6b151f1 | 62 | #include "gdb/fileio.h" |
53ce3c39 | 63 | #include <sys/stat.h> |
dc146f7c | 64 | #include "xml-support.h" |
449092f6 | 65 | |
fd79ecee DJ |
66 | #include "memory-map.h" |
67 | ||
35b1e5cc SS |
68 | #include "tracepoint.h" |
69 | #include "ax.h" | |
70 | #include "ax-gdb.h" | |
268a13a5 | 71 | #include "gdbsupport/agent.h" |
9accd112 | 72 | #include "btrace.h" |
c0272db5 | 73 | #include "record-btrace.h" |
325fac50 | 74 | #include <algorithm> |
268a13a5 TT |
75 | #include "gdbsupport/scoped_restore.h" |
76 | #include "gdbsupport/environ.h" | |
77 | #include "gdbsupport/byte-vector.h" | |
39ef2f62 | 78 | #include <algorithm> |
9d6eea31 | 79 | #include <unordered_map> |
35b1e5cc | 80 | |
f6ac5f3d PA |
81 | /* The remote target. */ |
82 | ||
d9f719f1 PA |
83 | static const char remote_doc[] = N_("\ |
84 | Use a remote computer via a serial line, using a gdb-specific protocol.\n\ | |
85 | Specify the serial device it is connected to\n\ | |
86 | (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."); | |
87 | ||
6b8edb51 PA |
88 | #define OPAQUETHREADBYTES 8 |
89 | ||
90 | /* a 64 bit opaque identifier */ | |
91 | typedef unsigned char threadref[OPAQUETHREADBYTES]; | |
92 | ||
93 | struct gdb_ext_thread_info; | |
94 | struct threads_listing_context; | |
95 | typedef int (*rmt_thread_action) (threadref *ref, void *context); | |
96 | struct protocol_feature; | |
97 | struct packet_reg; | |
98 | ||
99 | struct stop_reply; | |
32603266 | 100 | typedef std::unique_ptr<stop_reply> stop_reply_up; |
6b8edb51 PA |
101 | |
102 | /* Generic configuration support for packets the stub optionally | |
103 | supports. Allows the user to specify the use of the packet as well | |
104 | as allowing GDB to auto-detect support in the remote stub. */ | |
105 | ||
106 | enum packet_support | |
107 | { | |
108 | PACKET_SUPPORT_UNKNOWN = 0, | |
109 | PACKET_ENABLE, | |
110 | PACKET_DISABLE | |
111 | }; | |
112 | ||
113 | /* Analyze a packet's return value and update the packet config | |
114 | accordingly. */ | |
115 | ||
116 | enum packet_result | |
117 | { | |
118 | PACKET_ERROR, | |
119 | PACKET_OK, | |
120 | PACKET_UNKNOWN | |
121 | }; | |
122 | ||
123 | struct threads_listing_context; | |
3c69da40 PA |
124 | |
125 | /* Stub vCont actions support. | |
126 | ||
127 | Each field is a boolean flag indicating whether the stub reports | |
128 | support for the corresponding action. */ | |
129 | ||
130 | struct vCont_action_support | |
131 | { | |
132 | /* vCont;t */ | |
133 | bool t = false; | |
134 | ||
135 | /* vCont;r */ | |
136 | bool r = false; | |
137 | ||
138 | /* vCont;s */ | |
139 | bool s = false; | |
140 | ||
141 | /* vCont;S */ | |
142 | bool S = false; | |
143 | }; | |
144 | ||
405feb71 | 145 | /* About this many threadids fit in a packet. */ |
3c69da40 PA |
146 | |
147 | #define MAXTHREADLISTRESULTS 32 | |
148 | ||
149 | /* Data for the vFile:pread readahead cache. */ | |
150 | ||
151 | struct readahead_cache | |
152 | { | |
153 | /* Invalidate the readahead cache. */ | |
154 | void invalidate (); | |
155 | ||
156 | /* Invalidate the readahead cache if it is holding data for FD. */ | |
157 | void invalidate_fd (int fd); | |
158 | ||
159 | /* Serve pread from the readahead cache. Returns number of bytes | |
160 | read, or 0 if the request can't be served from the cache. */ | |
161 | int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset); | |
162 | ||
163 | /* The file descriptor for the file that is being cached. -1 if the | |
164 | cache is invalid. */ | |
165 | int fd = -1; | |
166 | ||
167 | /* The offset into the file that the cache buffer corresponds | |
168 | to. */ | |
169 | ULONGEST offset = 0; | |
170 | ||
171 | /* The buffer holding the cache contents. */ | |
172 | gdb_byte *buf = nullptr; | |
173 | /* The buffer's size. We try to read as much as fits into a packet | |
174 | at a time. */ | |
175 | size_t bufsize = 0; | |
176 | ||
177 | /* Cache hit and miss counters. */ | |
178 | ULONGEST hit_count = 0; | |
179 | ULONGEST miss_count = 0; | |
180 | }; | |
181 | ||
182 | /* Description of the remote protocol for a given architecture. */ | |
183 | ||
184 | struct packet_reg | |
185 | { | |
186 | long offset; /* Offset into G packet. */ | |
187 | long regnum; /* GDB's internal register number. */ | |
188 | LONGEST pnum; /* Remote protocol register number. */ | |
189 | int in_g_packet; /* Always part of G packet. */ | |
190 | /* long size in bytes; == register_size (target_gdbarch (), regnum); | |
191 | at present. */ | |
192 | /* char *name; == gdbarch_register_name (target_gdbarch (), regnum); | |
193 | at present. */ | |
194 | }; | |
195 | ||
196 | struct remote_arch_state | |
197 | { | |
198 | explicit remote_arch_state (struct gdbarch *gdbarch); | |
199 | ||
200 | /* Description of the remote protocol registers. */ | |
201 | long sizeof_g_packet; | |
202 | ||
203 | /* Description of the remote protocol registers indexed by REGNUM | |
204 | (making an array gdbarch_num_regs in size). */ | |
205 | std::unique_ptr<packet_reg[]> regs; | |
206 | ||
207 | /* This is the size (in chars) of the first response to the ``g'' | |
208 | packet. It is used as a heuristic when determining the maximum | |
209 | size of memory-read and memory-write packets. A target will | |
210 | typically only reserve a buffer large enough to hold the ``g'' | |
211 | packet. The size does not include packet overhead (headers and | |
212 | trailers). */ | |
213 | long actual_register_packet_size; | |
214 | ||
215 | /* This is the maximum size (in chars) of a non read/write packet. | |
216 | It is also used as a cap on the size of read/write packets. */ | |
217 | long remote_packet_size; | |
218 | }; | |
219 | ||
220 | /* Description of the remote protocol state for the currently | |
221 | connected target. This is per-target state, and independent of the | |
222 | selected architecture. */ | |
223 | ||
224 | class remote_state | |
225 | { | |
226 | public: | |
227 | ||
228 | remote_state (); | |
229 | ~remote_state (); | |
230 | ||
231 | /* Get the remote arch state for GDBARCH. */ | |
232 | struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch); | |
233 | ||
234 | public: /* data */ | |
235 | ||
236 | /* A buffer to use for incoming packets, and its current size. The | |
237 | buffer is grown dynamically for larger incoming packets. | |
238 | Outgoing packets may also be constructed in this buffer. | |
8d64371b | 239 | The size of the buffer is always at least REMOTE_PACKET_SIZE; |
3c69da40 PA |
240 | REMOTE_PACKET_SIZE should be used to limit the length of outgoing |
241 | packets. */ | |
8d64371b | 242 | gdb::char_vector buf; |
3c69da40 PA |
243 | |
244 | /* True if we're going through initial connection setup (finding out | |
245 | about the remote side's threads, relocating symbols, etc.). */ | |
246 | bool starting_up = false; | |
247 | ||
248 | /* If we negotiated packet size explicitly (and thus can bypass | |
249 | heuristics for the largest packet size that will not overflow | |
250 | a buffer in the stub), this will be set to that packet size. | |
251 | Otherwise zero, meaning to use the guessed size. */ | |
252 | long explicit_packet_size = 0; | |
253 | ||
254 | /* remote_wait is normally called when the target is running and | |
255 | waits for a stop reply packet. But sometimes we need to call it | |
256 | when the target is already stopped. We can send a "?" packet | |
257 | and have remote_wait read the response. Or, if we already have | |
258 | the response, we can stash it in BUF and tell remote_wait to | |
259 | skip calling getpkt. This flag is set when BUF contains a | |
260 | stop reply packet and the target is not waiting. */ | |
261 | int cached_wait_status = 0; | |
262 | ||
263 | /* True, if in no ack mode. That is, neither GDB nor the stub will | |
264 | expect acks from each other. The connection is assumed to be | |
265 | reliable. */ | |
266 | bool noack_mode = false; | |
267 | ||
268 | /* True if we're connected in extended remote mode. */ | |
269 | bool extended = false; | |
270 | ||
271 | /* True if we resumed the target and we're waiting for the target to | |
272 | stop. In the mean time, we can't start another command/query. | |
273 | The remote server wouldn't be ready to process it, so we'd | |
274 | timeout waiting for a reply that would never come and eventually | |
275 | we'd close the connection. This can happen in asynchronous mode | |
276 | because we allow GDB commands while the target is running. */ | |
277 | bool waiting_for_stop_reply = false; | |
278 | ||
279 | /* The status of the stub support for the various vCont actions. */ | |
280 | vCont_action_support supports_vCont; | |
5b6d1e4f PA |
281 | /* Whether vCont support was probed already. This is a workaround |
282 | until packet_support is per-connection. */ | |
283 | bool supports_vCont_probed; | |
3c69da40 PA |
284 | |
285 | /* True if the user has pressed Ctrl-C, but the target hasn't | |
286 | responded to that. */ | |
287 | bool ctrlc_pending_p = false; | |
288 | ||
289 | /* True if we saw a Ctrl-C while reading or writing from/to the | |
290 | remote descriptor. At that point it is not safe to send a remote | |
291 | interrupt packet, so we instead remember we saw the Ctrl-C and | |
292 | process it once we're done with sending/receiving the current | |
293 | packet, which should be shortly. If however that takes too long, | |
294 | and the user presses Ctrl-C again, we offer to disconnect. */ | |
295 | bool got_ctrlc_during_io = false; | |
296 | ||
297 | /* Descriptor for I/O to remote machine. Initialize it to NULL so that | |
298 | remote_open knows that we don't have a file open when the program | |
299 | starts. */ | |
300 | struct serial *remote_desc = nullptr; | |
301 | ||
302 | /* These are the threads which we last sent to the remote system. The | |
303 | TID member will be -1 for all or -2 for not sent yet. */ | |
304 | ptid_t general_thread = null_ptid; | |
305 | ptid_t continue_thread = null_ptid; | |
306 | ||
307 | /* This is the traceframe which we last selected on the remote system. | |
308 | It will be -1 if no traceframe is selected. */ | |
309 | int remote_traceframe_number = -1; | |
310 | ||
311 | char *last_pass_packet = nullptr; | |
312 | ||
313 | /* The last QProgramSignals packet sent to the target. We bypass | |
314 | sending a new program signals list down to the target if the new | |
315 | packet is exactly the same as the last we sent. IOW, we only let | |
316 | the target know about program signals list changes. */ | |
317 | char *last_program_signals_packet = nullptr; | |
318 | ||
319 | gdb_signal last_sent_signal = GDB_SIGNAL_0; | |
320 | ||
321 | bool last_sent_step = false; | |
322 | ||
323 | /* The execution direction of the last resume we got. */ | |
324 | exec_direction_kind last_resume_exec_dir = EXEC_FORWARD; | |
325 | ||
326 | char *finished_object = nullptr; | |
327 | char *finished_annex = nullptr; | |
328 | ULONGEST finished_offset = 0; | |
329 | ||
330 | /* Should we try the 'ThreadInfo' query packet? | |
331 | ||
332 | This variable (NOT available to the user: auto-detect only!) | |
333 | determines whether GDB will use the new, simpler "ThreadInfo" | |
334 | query or the older, more complex syntax for thread queries. | |
335 | This is an auto-detect variable (set to true at each connect, | |
336 | and set to false when the target fails to recognize it). */ | |
337 | bool use_threadinfo_query = false; | |
338 | bool use_threadextra_query = false; | |
339 | ||
340 | threadref echo_nextthread {}; | |
341 | threadref nextthread {}; | |
342 | threadref resultthreadlist[MAXTHREADLISTRESULTS] {}; | |
343 | ||
344 | /* The state of remote notification. */ | |
345 | struct remote_notif_state *notif_state = nullptr; | |
346 | ||
347 | /* The branch trace configuration. */ | |
348 | struct btrace_config btrace_config {}; | |
349 | ||
350 | /* The argument to the last "vFile:setfs:" packet we sent, used | |
351 | to avoid sending repeated unnecessary "vFile:setfs:" packets. | |
352 | Initialized to -1 to indicate that no "vFile:setfs:" packet | |
353 | has yet been sent. */ | |
354 | int fs_pid = -1; | |
355 | ||
356 | /* A readahead cache for vFile:pread. Often, reading a binary | |
357 | involves a sequence of small reads. E.g., when parsing an ELF | |
358 | file. A readahead cache helps mostly the case of remote | |
359 | debugging on a connection with higher latency, due to the | |
360 | request/reply nature of the RSP. We only cache data for a single | |
361 | file descriptor at a time. */ | |
362 | struct readahead_cache readahead_cache; | |
363 | ||
364 | /* The list of already fetched and acknowledged stop events. This | |
365 | queue is used for notification Stop, and other notifications | |
366 | don't need queue for their events, because the notification | |
367 | events of Stop can't be consumed immediately, so that events | |
368 | should be queued first, and be consumed by remote_wait_{ns,as} | |
369 | one per time. Other notifications can consume their events | |
370 | immediately, so queue is not needed for them. */ | |
953edf2b | 371 | std::vector<stop_reply_up> stop_reply_queue; |
3c69da40 PA |
372 | |
373 | /* Asynchronous signal handle registered as event loop source for | |
374 | when we have pending events ready to be passed to the core. */ | |
375 | struct async_event_handler *remote_async_inferior_event_token = nullptr; | |
376 | ||
377 | /* FIXME: cagney/1999-09-23: Even though getpkt was called with | |
378 | ``forever'' still use the normal timeout mechanism. This is | |
379 | currently used by the ASYNC code to guarentee that target reads | |
380 | during the initial connect always time-out. Once getpkt has been | |
381 | modified to return a timeout indication and, in turn | |
382 | remote_wait()/wait_for_inferior() have gained a timeout parameter | |
383 | this can go away. */ | |
384 | int wait_forever_enabled_p = 1; | |
385 | ||
386 | private: | |
387 | /* Mapping of remote protocol data for each gdbarch. Usually there | |
388 | is only one entry here, though we may see more with stubs that | |
389 | support multi-process. */ | |
390 | std::unordered_map<struct gdbarch *, remote_arch_state> | |
391 | m_arch_states; | |
392 | }; | |
6b8edb51 | 393 | |
d9f719f1 PA |
394 | static const target_info remote_target_info = { |
395 | "remote", | |
396 | N_("Remote serial target in gdb-specific protocol"), | |
397 | remote_doc | |
398 | }; | |
399 | ||
3b3dac9b | 400 | class remote_target : public process_stratum_target |
f6ac5f3d PA |
401 | { |
402 | public: | |
3b3dac9b | 403 | remote_target () = default; |
6b8edb51 | 404 | ~remote_target () override; |
f6ac5f3d | 405 | |
d9f719f1 PA |
406 | const target_info &info () const override |
407 | { return remote_target_info; } | |
f6ac5f3d | 408 | |
121b3efd PA |
409 | const char *connection_string () override; |
410 | ||
f6ac5f3d PA |
411 | thread_control_capabilities get_thread_control_capabilities () override |
412 | { return tc_schedlock; } | |
413 | ||
d9f719f1 PA |
414 | /* Open a remote connection. */ |
415 | static void open (const char *, int); | |
416 | ||
f6ac5f3d PA |
417 | void close () override; |
418 | ||
419 | void detach (inferior *, int) override; | |
420 | void disconnect (const char *, int) override; | |
421 | ||
422 | void commit_resume () override; | |
423 | void resume (ptid_t, int, enum gdb_signal) override; | |
424 | ptid_t wait (ptid_t, struct target_waitstatus *, int) override; | |
425 | ||
426 | void fetch_registers (struct regcache *, int) override; | |
427 | void store_registers (struct regcache *, int) override; | |
428 | void prepare_to_store (struct regcache *) override; | |
429 | ||
430 | void files_info () override; | |
431 | ||
432 | int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override; | |
433 | ||
434 | int remove_breakpoint (struct gdbarch *, struct bp_target_info *, | |
435 | enum remove_bp_reason) override; | |
436 | ||
437 | ||
57810aa7 PA |
438 | bool stopped_by_sw_breakpoint () override; |
439 | bool supports_stopped_by_sw_breakpoint () override; | |
f6ac5f3d | 440 | |
57810aa7 | 441 | bool stopped_by_hw_breakpoint () override; |
f6ac5f3d | 442 | |
57810aa7 | 443 | bool supports_stopped_by_hw_breakpoint () override; |
f6ac5f3d | 444 | |
57810aa7 | 445 | bool stopped_by_watchpoint () override; |
f6ac5f3d | 446 | |
57810aa7 | 447 | bool stopped_data_address (CORE_ADDR *) override; |
f6ac5f3d | 448 | |
57810aa7 | 449 | bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override; |
f6ac5f3d PA |
450 | |
451 | int can_use_hw_breakpoint (enum bptype, int, int) override; | |
452 | ||
453 | int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override; | |
454 | ||
455 | int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override; | |
456 | ||
457 | int region_ok_for_hw_watchpoint (CORE_ADDR, int) override; | |
458 | ||
459 | int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type, | |
460 | struct expression *) override; | |
461 | ||
462 | int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type, | |
463 | struct expression *) override; | |
464 | ||
465 | void kill () override; | |
466 | ||
467 | void load (const char *, int) override; | |
468 | ||
469 | void mourn_inferior () override; | |
470 | ||
adc6a863 | 471 | void pass_signals (gdb::array_view<const unsigned char>) override; |
f6ac5f3d PA |
472 | |
473 | int set_syscall_catchpoint (int, bool, int, | |
474 | gdb::array_view<const int>) override; | |
475 | ||
adc6a863 | 476 | void program_signals (gdb::array_view<const unsigned char>) override; |
f6ac5f3d | 477 | |
57810aa7 | 478 | bool thread_alive (ptid_t ptid) override; |
f6ac5f3d PA |
479 | |
480 | const char *thread_name (struct thread_info *) override; | |
481 | ||
482 | void update_thread_list () override; | |
483 | ||
a068643d | 484 | std::string pid_to_str (ptid_t) override; |
f6ac5f3d PA |
485 | |
486 | const char *extra_thread_info (struct thread_info *) override; | |
487 | ||
488 | ptid_t get_ada_task_ptid (long lwp, long thread) override; | |
489 | ||
490 | thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle, | |
491 | int handle_len, | |
492 | inferior *inf) override; | |
493 | ||
3d6c6204 KB |
494 | gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp) |
495 | override; | |
496 | ||
f6ac5f3d PA |
497 | void stop (ptid_t) override; |
498 | ||
499 | void interrupt () override; | |
500 | ||
501 | void pass_ctrlc () override; | |
502 | ||
503 | enum target_xfer_status xfer_partial (enum target_object object, | |
504 | const char *annex, | |
505 | gdb_byte *readbuf, | |
506 | const gdb_byte *writebuf, | |
507 | ULONGEST offset, ULONGEST len, | |
508 | ULONGEST *xfered_len) override; | |
509 | ||
510 | ULONGEST get_memory_xfer_limit () override; | |
511 | ||
512 | void rcmd (const char *command, struct ui_file *output) override; | |
513 | ||
514 | char *pid_to_exec_file (int pid) override; | |
515 | ||
516 | void log_command (const char *cmd) override | |
517 | { | |
518 | serial_log_command (this, cmd); | |
519 | } | |
520 | ||
521 | CORE_ADDR get_thread_local_address (ptid_t ptid, | |
522 | CORE_ADDR load_module_addr, | |
523 | CORE_ADDR offset) override; | |
524 | ||
57810aa7 | 525 | bool can_execute_reverse () override; |
f6ac5f3d PA |
526 | |
527 | std::vector<mem_region> memory_map () override; | |
528 | ||
529 | void flash_erase (ULONGEST address, LONGEST length) override; | |
530 | ||
531 | void flash_done () override; | |
532 | ||
533 | const struct target_desc *read_description () override; | |
534 | ||
535 | int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len, | |
536 | const gdb_byte *pattern, ULONGEST pattern_len, | |
537 | CORE_ADDR *found_addrp) override; | |
538 | ||
57810aa7 | 539 | bool can_async_p () override; |
f6ac5f3d | 540 | |
57810aa7 | 541 | bool is_async_p () override; |
f6ac5f3d PA |
542 | |
543 | void async (int) override; | |
544 | ||
5b6d1e4f PA |
545 | int async_wait_fd () override; |
546 | ||
f6ac5f3d PA |
547 | void thread_events (int) override; |
548 | ||
549 | int can_do_single_step () override; | |
550 | ||
551 | void terminal_inferior () override; | |
552 | ||
553 | void terminal_ours () override; | |
554 | ||
57810aa7 | 555 | bool supports_non_stop () override; |
f6ac5f3d | 556 | |
57810aa7 | 557 | bool supports_multi_process () override; |
f6ac5f3d | 558 | |
57810aa7 | 559 | bool supports_disable_randomization () override; |
f6ac5f3d | 560 | |
57810aa7 | 561 | bool filesystem_is_local () override; |
f6ac5f3d PA |
562 | |
563 | ||
564 | int fileio_open (struct inferior *inf, const char *filename, | |
565 | int flags, int mode, int warn_if_slow, | |
566 | int *target_errno) override; | |
567 | ||
568 | int fileio_pwrite (int fd, const gdb_byte *write_buf, int len, | |
569 | ULONGEST offset, int *target_errno) override; | |
570 | ||
571 | int fileio_pread (int fd, gdb_byte *read_buf, int len, | |
572 | ULONGEST offset, int *target_errno) override; | |
573 | ||
574 | int fileio_fstat (int fd, struct stat *sb, int *target_errno) override; | |
575 | ||
576 | int fileio_close (int fd, int *target_errno) override; | |
577 | ||
578 | int fileio_unlink (struct inferior *inf, | |
579 | const char *filename, | |
580 | int *target_errno) override; | |
581 | ||
582 | gdb::optional<std::string> | |
583 | fileio_readlink (struct inferior *inf, | |
584 | const char *filename, | |
585 | int *target_errno) override; | |
586 | ||
57810aa7 | 587 | bool supports_enable_disable_tracepoint () override; |
f6ac5f3d | 588 | |
57810aa7 | 589 | bool supports_string_tracing () override; |
f6ac5f3d | 590 | |
57810aa7 | 591 | bool supports_evaluation_of_breakpoint_conditions () override; |
f6ac5f3d | 592 | |
57810aa7 | 593 | bool can_run_breakpoint_commands () override; |
f6ac5f3d PA |
594 | |
595 | void trace_init () override; | |
596 | ||
597 | void download_tracepoint (struct bp_location *location) override; | |
598 | ||
57810aa7 | 599 | bool can_download_tracepoint () override; |
f6ac5f3d PA |
600 | |
601 | void download_trace_state_variable (const trace_state_variable &tsv) override; | |
602 | ||
603 | void enable_tracepoint (struct bp_location *location) override; | |
604 | ||
605 | void disable_tracepoint (struct bp_location *location) override; | |
606 | ||
607 | void trace_set_readonly_regions () override; | |
608 | ||
609 | void trace_start () override; | |
610 | ||
611 | int get_trace_status (struct trace_status *ts) override; | |
612 | ||
613 | void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp) | |
614 | override; | |
615 | ||
616 | void trace_stop () override; | |
617 | ||
618 | int trace_find (enum trace_find_type type, int num, | |
619 | CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override; | |
620 | ||
57810aa7 | 621 | bool get_trace_state_variable_value (int tsv, LONGEST *val) override; |
f6ac5f3d PA |
622 | |
623 | int save_trace_data (const char *filename) override; | |
624 | ||
625 | int upload_tracepoints (struct uploaded_tp **utpp) override; | |
626 | ||
627 | int upload_trace_state_variables (struct uploaded_tsv **utsvp) override; | |
628 | ||
629 | LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override; | |
630 | ||
631 | int get_min_fast_tracepoint_insn_len () override; | |
632 | ||
633 | void set_disconnected_tracing (int val) override; | |
634 | ||
635 | void set_circular_trace_buffer (int val) override; | |
636 | ||
637 | void set_trace_buffer_size (LONGEST val) override; | |
638 | ||
57810aa7 PA |
639 | bool set_trace_notes (const char *user, const char *notes, |
640 | const char *stopnotes) override; | |
f6ac5f3d PA |
641 | |
642 | int core_of_thread (ptid_t ptid) override; | |
643 | ||
644 | int verify_memory (const gdb_byte *data, | |
645 | CORE_ADDR memaddr, ULONGEST size) override; | |
646 | ||
647 | ||
57810aa7 | 648 | bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override; |
f6ac5f3d PA |
649 | |
650 | void set_permissions () override; | |
651 | ||
652 | bool static_tracepoint_marker_at (CORE_ADDR, | |
653 | struct static_tracepoint_marker *marker) | |
654 | override; | |
655 | ||
656 | std::vector<static_tracepoint_marker> | |
657 | static_tracepoint_markers_by_strid (const char *id) override; | |
658 | ||
659 | traceframe_info_up traceframe_info () override; | |
660 | ||
57810aa7 PA |
661 | bool use_agent (bool use) override; |
662 | bool can_use_agent () override; | |
f6ac5f3d PA |
663 | |
664 | struct btrace_target_info *enable_btrace (ptid_t ptid, | |
665 | const struct btrace_config *conf) override; | |
666 | ||
667 | void disable_btrace (struct btrace_target_info *tinfo) override; | |
668 | ||
669 | void teardown_btrace (struct btrace_target_info *tinfo) override; | |
670 | ||
671 | enum btrace_error read_btrace (struct btrace_data *data, | |
672 | struct btrace_target_info *btinfo, | |
673 | enum btrace_read_type type) override; | |
674 | ||
675 | const struct btrace_config *btrace_conf (const struct btrace_target_info *) override; | |
57810aa7 | 676 | bool augmented_libraries_svr4_read () override; |
f6ac5f3d | 677 | int follow_fork (int, int) override; |
4ca51187 | 678 | void follow_exec (struct inferior *, const char *) override; |
f6ac5f3d PA |
679 | int insert_fork_catchpoint (int) override; |
680 | int remove_fork_catchpoint (int) override; | |
681 | int insert_vfork_catchpoint (int) override; | |
682 | int remove_vfork_catchpoint (int) override; | |
683 | int insert_exec_catchpoint (int) override; | |
684 | int remove_exec_catchpoint (int) override; | |
685 | enum exec_direction_kind execution_direction () override; | |
686 | ||
6b8edb51 PA |
687 | public: /* Remote specific methods. */ |
688 | ||
689 | void remote_download_command_source (int num, ULONGEST addr, | |
690 | struct command_line *cmds); | |
691 | ||
692 | void remote_file_put (const char *local_file, const char *remote_file, | |
693 | int from_tty); | |
694 | void remote_file_get (const char *remote_file, const char *local_file, | |
695 | int from_tty); | |
696 | void remote_file_delete (const char *remote_file, int from_tty); | |
697 | ||
698 | int remote_hostio_pread (int fd, gdb_byte *read_buf, int len, | |
699 | ULONGEST offset, int *remote_errno); | |
700 | int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len, | |
701 | ULONGEST offset, int *remote_errno); | |
702 | int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len, | |
703 | ULONGEST offset, int *remote_errno); | |
704 | ||
705 | int remote_hostio_send_command (int command_bytes, int which_packet, | |
706 | int *remote_errno, char **attachment, | |
707 | int *attachment_len); | |
708 | int remote_hostio_set_filesystem (struct inferior *inf, | |
709 | int *remote_errno); | |
710 | /* We should get rid of this and use fileio_open directly. */ | |
711 | int remote_hostio_open (struct inferior *inf, const char *filename, | |
712 | int flags, int mode, int warn_if_slow, | |
713 | int *remote_errno); | |
714 | int remote_hostio_close (int fd, int *remote_errno); | |
715 | ||
716 | int remote_hostio_unlink (inferior *inf, const char *filename, | |
717 | int *remote_errno); | |
718 | ||
719 | struct remote_state *get_remote_state (); | |
720 | ||
721 | long get_remote_packet_size (void); | |
722 | long get_memory_packet_size (struct memory_packet_config *config); | |
723 | ||
724 | long get_memory_write_packet_size (); | |
725 | long get_memory_read_packet_size (); | |
726 | ||
727 | char *append_pending_thread_resumptions (char *p, char *endp, | |
728 | ptid_t ptid); | |
d9f719f1 | 729 | static void open_1 (const char *name, int from_tty, int extended_p); |
f6ac5f3d | 730 | void start_remote (int from_tty, int extended_p); |
00431a78 | 731 | void remote_detach_1 (struct inferior *inf, int from_tty); |
6b8edb51 PA |
732 | |
733 | char *append_resumption (char *p, char *endp, | |
734 | ptid_t ptid, int step, gdb_signal siggnal); | |
735 | int remote_resume_with_vcont (ptid_t ptid, int step, | |
736 | gdb_signal siggnal); | |
737 | ||
738 | void add_current_inferior_and_thread (char *wait_status); | |
739 | ||
740 | ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status, | |
741 | int options); | |
742 | ptid_t wait_as (ptid_t ptid, target_waitstatus *status, | |
743 | int options); | |
744 | ||
745 | ptid_t process_stop_reply (struct stop_reply *stop_reply, | |
746 | target_waitstatus *status); | |
747 | ||
748 | void remote_notice_new_inferior (ptid_t currthread, int executing); | |
749 | ||
750 | void process_initial_stop_replies (int from_tty); | |
751 | ||
00431a78 | 752 | thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing); |
6b8edb51 PA |
753 | |
754 | void btrace_sync_conf (const btrace_config *conf); | |
755 | ||
756 | void remote_btrace_maybe_reopen (); | |
757 | ||
758 | void remove_new_fork_children (threads_listing_context *context); | |
759 | void kill_new_fork_children (int pid); | |
760 | void discard_pending_stop_replies (struct inferior *inf); | |
761 | int stop_reply_queue_length (); | |
762 | ||
763 | void check_pending_events_prevent_wildcard_vcont | |
764 | (int *may_global_wildcard_vcont); | |
765 | ||
766 | void discard_pending_stop_replies_in_queue (); | |
767 | struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid); | |
768 | struct stop_reply *queued_stop_reply (ptid_t ptid); | |
769 | int peek_stop_reply (ptid_t ptid); | |
bb277751 | 770 | void remote_parse_stop_reply (const char *buf, stop_reply *event); |
6b8edb51 PA |
771 | |
772 | void remote_stop_ns (ptid_t ptid); | |
773 | void remote_interrupt_as (); | |
774 | void remote_interrupt_ns (); | |
775 | ||
776 | char *remote_get_noisy_reply (); | |
777 | int remote_query_attached (int pid); | |
9ab8741a | 778 | inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached, |
6b8edb51 PA |
779 | int try_open_exec); |
780 | ||
781 | ptid_t remote_current_thread (ptid_t oldpid); | |
782 | ptid_t get_current_thread (char *wait_status); | |
783 | ||
784 | void set_thread (ptid_t ptid, int gen); | |
785 | void set_general_thread (ptid_t ptid); | |
786 | void set_continue_thread (ptid_t ptid); | |
787 | void set_general_process (); | |
788 | ||
789 | char *write_ptid (char *buf, const char *endbuf, ptid_t ptid); | |
790 | ||
791 | int remote_unpack_thread_info_response (char *pkt, threadref *expectedref, | |
792 | gdb_ext_thread_info *info); | |
793 | int remote_get_threadinfo (threadref *threadid, int fieldset, | |
794 | gdb_ext_thread_info *info); | |
795 | ||
796 | int parse_threadlist_response (char *pkt, int result_limit, | |
797 | threadref *original_echo, | |
798 | threadref *resultlist, | |
799 | int *doneflag); | |
800 | int remote_get_threadlist (int startflag, threadref *nextthread, | |
801 | int result_limit, int *done, int *result_count, | |
802 | threadref *threadlist); | |
803 | ||
804 | int remote_threadlist_iterator (rmt_thread_action stepfunction, | |
805 | void *context, int looplimit); | |
806 | ||
807 | int remote_get_threads_with_ql (threads_listing_context *context); | |
808 | int remote_get_threads_with_qxfer (threads_listing_context *context); | |
809 | int remote_get_threads_with_qthreadinfo (threads_listing_context *context); | |
810 | ||
811 | void extended_remote_restart (); | |
812 | ||
813 | void get_offsets (); | |
814 | ||
815 | void remote_check_symbols (); | |
816 | ||
817 | void remote_supported_packet (const struct protocol_feature *feature, | |
818 | enum packet_support support, | |
819 | const char *argument); | |
820 | ||
821 | void remote_query_supported (); | |
822 | ||
823 | void remote_packet_size (const protocol_feature *feature, | |
824 | packet_support support, const char *value); | |
825 | ||
826 | void remote_serial_quit_handler (); | |
827 | ||
828 | void remote_detach_pid (int pid); | |
829 | ||
830 | void remote_vcont_probe (); | |
831 | ||
832 | void remote_resume_with_hc (ptid_t ptid, int step, | |
833 | gdb_signal siggnal); | |
834 | ||
835 | void send_interrupt_sequence (); | |
836 | void interrupt_query (); | |
837 | ||
838 | void remote_notif_get_pending_events (notif_client *nc); | |
839 | ||
840 | int fetch_register_using_p (struct regcache *regcache, | |
841 | packet_reg *reg); | |
842 | int send_g_packet (); | |
843 | void process_g_packet (struct regcache *regcache); | |
844 | void fetch_registers_using_g (struct regcache *regcache); | |
845 | int store_register_using_P (const struct regcache *regcache, | |
846 | packet_reg *reg); | |
847 | void store_registers_using_G (const struct regcache *regcache); | |
848 | ||
849 | void set_remote_traceframe (); | |
850 | ||
851 | void check_binary_download (CORE_ADDR addr); | |
852 | ||
853 | target_xfer_status remote_write_bytes_aux (const char *header, | |
854 | CORE_ADDR memaddr, | |
855 | const gdb_byte *myaddr, | |
856 | ULONGEST len_units, | |
857 | int unit_size, | |
858 | ULONGEST *xfered_len_units, | |
859 | char packet_format, | |
860 | int use_length); | |
861 | ||
862 | target_xfer_status remote_write_bytes (CORE_ADDR memaddr, | |
863 | const gdb_byte *myaddr, ULONGEST len, | |
864 | int unit_size, ULONGEST *xfered_len); | |
865 | ||
866 | target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, | |
867 | ULONGEST len_units, | |
868 | int unit_size, ULONGEST *xfered_len_units); | |
869 | ||
870 | target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf, | |
871 | ULONGEST memaddr, | |
872 | ULONGEST len, | |
873 | int unit_size, | |
874 | ULONGEST *xfered_len); | |
875 | ||
876 | target_xfer_status remote_read_bytes (CORE_ADDR memaddr, | |
877 | gdb_byte *myaddr, ULONGEST len, | |
878 | int unit_size, | |
879 | ULONGEST *xfered_len); | |
880 | ||
881 | packet_result remote_send_printf (const char *format, ...) | |
882 | ATTRIBUTE_PRINTF (2, 3); | |
883 | ||
884 | target_xfer_status remote_flash_write (ULONGEST address, | |
885 | ULONGEST length, ULONGEST *xfered_len, | |
886 | const gdb_byte *data); | |
887 | ||
888 | int readchar (int timeout); | |
889 | ||
890 | void remote_serial_write (const char *str, int len); | |
891 | ||
892 | int putpkt (const char *buf); | |
893 | int putpkt_binary (const char *buf, int cnt); | |
894 | ||
8d64371b TT |
895 | int putpkt (const gdb::char_vector &buf) |
896 | { | |
897 | return putpkt (buf.data ()); | |
898 | } | |
899 | ||
6b8edb51 | 900 | void skip_frame (); |
8d64371b TT |
901 | long read_frame (gdb::char_vector *buf_p); |
902 | void getpkt (gdb::char_vector *buf, int forever); | |
903 | int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever, | |
6b8edb51 | 904 | int expecting_notif, int *is_notif); |
8d64371b TT |
905 | int getpkt_sane (gdb::char_vector *buf, int forever); |
906 | int getpkt_or_notif_sane (gdb::char_vector *buf, int forever, | |
6b8edb51 PA |
907 | int *is_notif); |
908 | int remote_vkill (int pid); | |
909 | void remote_kill_k (); | |
910 | ||
911 | void extended_remote_disable_randomization (int val); | |
912 | int extended_remote_run (const std::string &args); | |
913 | ||
914 | void send_environment_packet (const char *action, | |
915 | const char *packet, | |
916 | const char *value); | |
917 | ||
918 | void extended_remote_environment_support (); | |
3c69da40 | 919 | void extended_remote_set_inferior_cwd (); |
80152258 | 920 | |
3c69da40 PA |
921 | target_xfer_status remote_write_qxfer (const char *object_name, |
922 | const char *annex, | |
923 | const gdb_byte *writebuf, | |
924 | ULONGEST offset, LONGEST len, | |
925 | ULONGEST *xfered_len, | |
926 | struct packet_config *packet); | |
43c3a0e4 | 927 | |
3c69da40 PA |
928 | target_xfer_status remote_read_qxfer (const char *object_name, |
929 | const char *annex, | |
930 | gdb_byte *readbuf, ULONGEST offset, | |
931 | LONGEST len, | |
932 | ULONGEST *xfered_len, | |
933 | struct packet_config *packet); | |
43c3a0e4 | 934 | |
3c69da40 | 935 | void push_stop_reply (struct stop_reply *new_event); |
43c3a0e4 | 936 | |
3c69da40 | 937 | bool vcont_r_supported (); |
43c3a0e4 | 938 | |
3c69da40 | 939 | void packet_command (const char *args, int from_tty); |
43c3a0e4 | 940 | |
3c69da40 | 941 | private: /* data fields */ |
43c3a0e4 | 942 | |
3c69da40 PA |
943 | /* The remote state. Don't reference this directly. Use the |
944 | get_remote_state method instead. */ | |
945 | remote_state m_remote_state; | |
43c3a0e4 PA |
946 | }; |
947 | ||
3c69da40 PA |
948 | static const target_info extended_remote_target_info = { |
949 | "extended-remote", | |
950 | N_("Extended remote serial target in gdb-specific protocol"), | |
951 | remote_doc | |
952 | }; | |
ea9c271d | 953 | |
3c69da40 PA |
954 | /* Set up the extended remote target by extending the standard remote |
955 | target and adding to it. */ | |
956 | ||
957 | class extended_remote_target final : public remote_target | |
ea9c271d | 958 | { |
9d6eea31 | 959 | public: |
3c69da40 PA |
960 | const target_info &info () const override |
961 | { return extended_remote_target_info; } | |
9d6eea31 | 962 | |
3c69da40 PA |
963 | /* Open an extended-remote connection. */ |
964 | static void open (const char *, int); | |
de44f5a7 | 965 | |
3c69da40 PA |
966 | bool can_create_inferior () override { return true; } |
967 | void create_inferior (const char *, const std::string &, | |
968 | char **, int) override; | |
9d6eea31 | 969 | |
3c69da40 | 970 | void detach (inferior *, int) override; |
9d6eea31 | 971 | |
3c69da40 PA |
972 | bool can_attach () override { return true; } |
973 | void attach (const char *, int) override; | |
be2a5f71 | 974 | |
3c69da40 PA |
975 | void post_attach (int) override; |
976 | bool supports_disable_randomization () override; | |
977 | }; | |
1e51243a | 978 | |
3c69da40 | 979 | /* Per-program-space data key. */ |
7b4a314f TT |
980 | static const struct program_space_key<char, gdb::xfree_deleter<char>> |
981 | remote_pspace_data; | |
2d717e4f | 982 | |
3c69da40 PA |
983 | /* The variable registered as the control variable used by the |
984 | remote exec-file commands. While the remote exec-file setting is | |
985 | per-program-space, the set/show machinery uses this as the | |
986 | location of the remote exec-file value. */ | |
987 | static char *remote_exec_file_var; | |
a6f3e723 | 988 | |
3c69da40 PA |
989 | /* The size to align memory write packets, when practical. The protocol |
990 | does not guarantee any alignment, and gdb will generate short | |
991 | writes and unaligned writes, but even as a best-effort attempt this | |
992 | can improve bulk transfers. For instance, if a write is misaligned | |
993 | relative to the target's data bus, the stub may need to make an extra | |
994 | round trip fetching data from the target. This doesn't make a | |
995 | huge difference, but it's easy to do, so we try to be helpful. | |
82f73884 | 996 | |
3c69da40 PA |
997 | The alignment chosen is arbitrary; usually data bus width is |
998 | important here, not the possibly larger cache line size. */ | |
999 | enum { REMOTE_ALIGN_WRITES = 16 }; | |
82f73884 | 1000 | |
3c69da40 | 1001 | /* Prototypes for local functions. */ |
74531fed | 1002 | |
3c69da40 | 1003 | static int hexnumlen (ULONGEST num); |
782b2b07 | 1004 | |
3c69da40 | 1005 | static int stubhex (int ch); |
5d93a237 | 1006 | |
3c69da40 | 1007 | static int hexnumstr (char *, ULONGEST); |
048094ac | 1008 | |
3c69da40 | 1009 | static int hexnumnstr (char *, ULONGEST, int); |
47f8a51d | 1010 | |
3c69da40 | 1011 | static CORE_ADDR remote_address_masked (CORE_ADDR); |
262e1174 | 1012 | |
3c69da40 | 1013 | static void print_packet (const char *); |
747dc59d | 1014 | |
3c69da40 | 1015 | static int stub_unpack_int (char *buff, int fieldlength); |
5e4a05c4 | 1016 | |
3c69da40 | 1017 | struct packet_config; |
b73be471 | 1018 | |
3c69da40 | 1019 | static void show_packet_config_cmd (struct packet_config *config); |
280ceea3 | 1020 | |
3c69da40 PA |
1021 | static void show_remote_protocol_packet_cmd (struct ui_file *file, |
1022 | int from_tty, | |
1023 | struct cmd_list_element *c, | |
1024 | const char *value); | |
8e88304f | 1025 | |
3c69da40 | 1026 | static ptid_t read_ptid (const char *buf, const char **obuf); |
3a00c802 | 1027 | |
3c69da40 | 1028 | static void remote_async_inferior_event_handler (gdb_client_data); |
b80fafe3 | 1029 | |
eefce37f | 1030 | static bool remote_read_description_p (struct target_ops *target); |
88b496c3 | 1031 | |
05be00a8 | 1032 | static void remote_console_output (const char *msg); |
5965e028 | 1033 | |
3c69da40 | 1034 | static void remote_btrace_reset (remote_state *rs); |
f4abbc16 | 1035 | |
5b6d1e4f | 1036 | static void remote_unpush_and_throw (remote_target *target); |
15a201c8 | 1037 | |
3c69da40 | 1038 | /* For "remote". */ |
80152258 | 1039 | |
3c69da40 | 1040 | static struct cmd_list_element *remote_cmdlist; |
9d6eea31 | 1041 | |
3c69da40 | 1042 | /* For "set remote" and "show remote". */ |
6b8edb51 | 1043 | |
3c69da40 PA |
1044 | static struct cmd_list_element *remote_set_cmdlist; |
1045 | static struct cmd_list_element *remote_show_cmdlist; | |
6b8edb51 | 1046 | |
3c69da40 | 1047 | /* Controls whether GDB is willing to use range stepping. */ |
6b8edb51 | 1048 | |
491144b5 | 1049 | static bool use_range_stepping = true; |
3c69da40 | 1050 | |
7aabaf9d SM |
1051 | /* Private data that we'll store in (struct thread_info)->priv. */ |
1052 | struct remote_thread_info : public private_thread_info | |
dc146f7c | 1053 | { |
7aabaf9d SM |
1054 | std::string extra; |
1055 | std::string name; | |
1056 | int core = -1; | |
799a2abe | 1057 | |
f6327dcb KB |
1058 | /* Thread handle, perhaps a pthread_t or thread_t value, stored as a |
1059 | sequence of bytes. */ | |
7aabaf9d | 1060 | gdb::byte_vector thread_handle; |
f6327dcb | 1061 | |
799a2abe | 1062 | /* Whether the target stopped for a breakpoint/watchpoint. */ |
7aabaf9d | 1063 | enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON; |
799a2abe PA |
1064 | |
1065 | /* This is set to the data address of the access causing the target | |
1066 | to stop for a watchpoint. */ | |
7aabaf9d | 1067 | CORE_ADDR watch_data_address = 0; |
85ad3aaf PA |
1068 | |
1069 | /* Fields used by the vCont action coalescing implemented in | |
1070 | remote_resume / remote_commit_resume. remote_resume stores each | |
1071 | thread's last resume request in these fields, so that a later | |
1072 | remote_commit_resume knows which is the proper action for this | |
1073 | thread to include in the vCont packet. */ | |
1074 | ||
1075 | /* True if the last target_resume call for this thread was a step | |
1076 | request, false if a continue request. */ | |
7aabaf9d | 1077 | int last_resume_step = 0; |
85ad3aaf PA |
1078 | |
1079 | /* The signal specified in the last target_resume call for this | |
1080 | thread. */ | |
7aabaf9d | 1081 | gdb_signal last_resume_sig = GDB_SIGNAL_0; |
85ad3aaf PA |
1082 | |
1083 | /* Whether this thread was already vCont-resumed on the remote | |
1084 | side. */ | |
7aabaf9d | 1085 | int vcont_resumed = 0; |
dc146f7c VP |
1086 | }; |
1087 | ||
de44f5a7 | 1088 | remote_state::remote_state () |
8d64371b | 1089 | : buf (400) |
de44f5a7 | 1090 | { |
de44f5a7 PA |
1091 | } |
1092 | ||
1093 | remote_state::~remote_state () | |
1094 | { | |
1095 | xfree (this->last_pass_packet); | |
1096 | xfree (this->last_program_signals_packet); | |
de44f5a7 PA |
1097 | xfree (this->finished_object); |
1098 | xfree (this->finished_annex); | |
cf792862 TT |
1099 | } |
1100 | ||
35b1e5cc SS |
1101 | /* Utility: generate error from an incoming stub packet. */ |
1102 | static void | |
1103 | trace_error (char *buf) | |
1104 | { | |
1105 | if (*buf++ != 'E') | |
1106 | return; /* not an error msg */ | |
1107 | switch (*buf) | |
1108 | { | |
1109 | case '1': /* malformed packet error */ | |
1110 | if (*++buf == '0') /* general case: */ | |
1111 | error (_("remote.c: error in outgoing packet.")); | |
1112 | else | |
1113 | error (_("remote.c: error in outgoing packet at field #%ld."), | |
1114 | strtol (buf, NULL, 16)); | |
35b1e5cc SS |
1115 | default: |
1116 | error (_("Target returns error code '%s'."), buf); | |
1117 | } | |
1118 | } | |
1119 | ||
1120 | /* Utility: wait for reply from stub, while accepting "O" packets. */ | |
b6bb3468 | 1121 | |
6b8edb51 PA |
1122 | char * |
1123 | remote_target::remote_get_noisy_reply () | |
35b1e5cc | 1124 | { |
b6bb3468 PA |
1125 | struct remote_state *rs = get_remote_state (); |
1126 | ||
35b1e5cc SS |
1127 | do /* Loop on reply from remote stub. */ |
1128 | { | |
1129 | char *buf; | |
a744cf53 | 1130 | |
0df8b418 | 1131 | QUIT; /* Allow user to bail out with ^C. */ |
8d64371b TT |
1132 | getpkt (&rs->buf, 0); |
1133 | buf = rs->buf.data (); | |
ad91cd99 | 1134 | if (buf[0] == 'E') |
35b1e5cc | 1135 | trace_error (buf); |
61012eef | 1136 | else if (startswith (buf, "qRelocInsn:")) |
dde08ee1 PA |
1137 | { |
1138 | ULONGEST ul; | |
1139 | CORE_ADDR from, to, org_to; | |
256642e8 | 1140 | const char *p, *pp; |
dde08ee1 | 1141 | int adjusted_size = 0; |
7556d4a4 | 1142 | int relocated = 0; |
dde08ee1 PA |
1143 | |
1144 | p = buf + strlen ("qRelocInsn:"); | |
1145 | pp = unpack_varlen_hex (p, &ul); | |
1146 | if (*pp != ';') | |
cb91c06a | 1147 | error (_("invalid qRelocInsn packet: %s"), buf); |
dde08ee1 PA |
1148 | from = ul; |
1149 | ||
1150 | p = pp + 1; | |
a9cbf802 | 1151 | unpack_varlen_hex (p, &ul); |
dde08ee1 PA |
1152 | to = ul; |
1153 | ||
1154 | org_to = to; | |
1155 | ||
a70b8144 | 1156 | try |
dde08ee1 | 1157 | { |
f5656ead | 1158 | gdbarch_relocate_instruction (target_gdbarch (), &to, from); |
7556d4a4 | 1159 | relocated = 1; |
dde08ee1 | 1160 | } |
230d2906 | 1161 | catch (const gdb_exception &ex) |
7556d4a4 PA |
1162 | { |
1163 | if (ex.error == MEMORY_ERROR) | |
1164 | { | |
1165 | /* Propagate memory errors silently back to the | |
1166 | target. The stub may have limited the range of | |
1167 | addresses we can write to, for example. */ | |
1168 | } | |
1169 | else | |
1170 | { | |
1171 | /* Something unexpectedly bad happened. Be verbose | |
1172 | so we can tell what, and propagate the error back | |
1173 | to the stub, so it doesn't get stuck waiting for | |
1174 | a response. */ | |
1175 | exception_fprintf (gdb_stderr, ex, | |
1176 | _("warning: relocating instruction: ")); | |
1177 | } | |
1178 | putpkt ("E01"); | |
1179 | } | |
1180 | ||
1181 | if (relocated) | |
dde08ee1 PA |
1182 | { |
1183 | adjusted_size = to - org_to; | |
1184 | ||
8d64371b | 1185 | xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size); |
dde08ee1 PA |
1186 | putpkt (buf); |
1187 | } | |
dde08ee1 | 1188 | } |
ad91cd99 | 1189 | else if (buf[0] == 'O' && buf[1] != 'K') |
35b1e5cc SS |
1190 | remote_console_output (buf + 1); /* 'O' message from stub */ |
1191 | else | |
0df8b418 | 1192 | return buf; /* Here's the actual reply. */ |
35b1e5cc SS |
1193 | } |
1194 | while (1); | |
1195 | } | |
3c3bea1c | 1196 | |
9d6eea31 PA |
1197 | struct remote_arch_state * |
1198 | remote_state::get_remote_arch_state (struct gdbarch *gdbarch) | |
d01949b6 | 1199 | { |
43c3a0e4 PA |
1200 | remote_arch_state *rsa; |
1201 | ||
1202 | auto it = this->m_arch_states.find (gdbarch); | |
1203 | if (it == this->m_arch_states.end ()) | |
9d6eea31 | 1204 | { |
43c3a0e4 PA |
1205 | auto p = this->m_arch_states.emplace (std::piecewise_construct, |
1206 | std::forward_as_tuple (gdbarch), | |
1207 | std::forward_as_tuple (gdbarch)); | |
1208 | rsa = &p.first->second; | |
9d6eea31 PA |
1209 | |
1210 | /* Make sure that the packet buffer is plenty big enough for | |
1211 | this architecture. */ | |
8d64371b TT |
1212 | if (this->buf.size () < rsa->remote_packet_size) |
1213 | this->buf.resize (2 * rsa->remote_packet_size); | |
9d6eea31 | 1214 | } |
43c3a0e4 PA |
1215 | else |
1216 | rsa = &it->second; | |
1217 | ||
1218 | return rsa; | |
d01949b6 AC |
1219 | } |
1220 | ||
0b83947e DJ |
1221 | /* Fetch the global remote target state. */ |
1222 | ||
6b8edb51 PA |
1223 | remote_state * |
1224 | remote_target::get_remote_state () | |
0b83947e DJ |
1225 | { |
1226 | /* Make sure that the remote architecture state has been | |
1227 | initialized, because doing so might reallocate rs->buf. Any | |
1228 | function which calls getpkt also needs to be mindful of changes | |
1229 | to rs->buf, but this call limits the number of places which run | |
1230 | into trouble. */ | |
3c69da40 | 1231 | m_remote_state.get_remote_arch_state (target_gdbarch ()); |
0b83947e | 1232 | |
3c69da40 | 1233 | return &m_remote_state; |
0b83947e DJ |
1234 | } |
1235 | ||
94585166 DB |
1236 | /* Fetch the remote exec-file from the current program space. */ |
1237 | ||
1238 | static const char * | |
1239 | get_remote_exec_file (void) | |
1240 | { | |
1241 | char *remote_exec_file; | |
1242 | ||
7b4a314f | 1243 | remote_exec_file = remote_pspace_data.get (current_program_space); |
94585166 DB |
1244 | if (remote_exec_file == NULL) |
1245 | return ""; | |
1246 | ||
1247 | return remote_exec_file; | |
1248 | } | |
1249 | ||
1250 | /* Set the remote exec file for PSPACE. */ | |
1251 | ||
1252 | static void | |
1253 | set_pspace_remote_exec_file (struct program_space *pspace, | |
7b4a314f | 1254 | const char *remote_exec_file) |
94585166 | 1255 | { |
7b4a314f | 1256 | char *old_file = remote_pspace_data.get (pspace); |
94585166 DB |
1257 | |
1258 | xfree (old_file); | |
7b4a314f | 1259 | remote_pspace_data.set (pspace, xstrdup (remote_exec_file)); |
94585166 DB |
1260 | } |
1261 | ||
1262 | /* The "set/show remote exec-file" set command hook. */ | |
1263 | ||
1264 | static void | |
eb4c3f4a | 1265 | set_remote_exec_file (const char *ignored, int from_tty, |
94585166 DB |
1266 | struct cmd_list_element *c) |
1267 | { | |
1268 | gdb_assert (remote_exec_file_var != NULL); | |
1269 | set_pspace_remote_exec_file (current_program_space, remote_exec_file_var); | |
1270 | } | |
1271 | ||
1272 | /* The "set/show remote exec-file" show command hook. */ | |
1273 | ||
1274 | static void | |
1275 | show_remote_exec_file (struct ui_file *file, int from_tty, | |
1276 | struct cmd_list_element *cmd, const char *value) | |
1277 | { | |
acdf84a6 | 1278 | fprintf_filtered (file, "%s\n", get_remote_exec_file ()); |
94585166 DB |
1279 | } |
1280 | ||
c21236dc PA |
1281 | static int |
1282 | map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs) | |
d01949b6 | 1283 | { |
74ca34ce | 1284 | int regnum, num_remote_regs, offset; |
74ca34ce | 1285 | struct packet_reg **remote_regs; |
ea9c271d | 1286 | |
4a22f64d | 1287 | for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++) |
ad10f812 | 1288 | { |
c21236dc | 1289 | struct packet_reg *r = ®s[regnum]; |
baef701f | 1290 | |
4a22f64d | 1291 | if (register_size (gdbarch, regnum) == 0) |
baef701f DJ |
1292 | /* Do not try to fetch zero-sized (placeholder) registers. */ |
1293 | r->pnum = -1; | |
1294 | else | |
1295 | r->pnum = gdbarch_remote_register_number (gdbarch, regnum); | |
1296 | ||
b323314b | 1297 | r->regnum = regnum; |
74ca34ce DJ |
1298 | } |
1299 | ||
1300 | /* Define the g/G packet format as the contents of each register | |
1301 | with a remote protocol number, in order of ascending protocol | |
1302 | number. */ | |
1303 | ||
224c3ddb | 1304 | remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch)); |
f57d151a | 1305 | for (num_remote_regs = 0, regnum = 0; |
4a22f64d | 1306 | regnum < gdbarch_num_regs (gdbarch); |
f57d151a | 1307 | regnum++) |
c21236dc PA |
1308 | if (regs[regnum].pnum != -1) |
1309 | remote_regs[num_remote_regs++] = ®s[regnum]; | |
7d58c67d | 1310 | |
39ef2f62 CB |
1311 | std::sort (remote_regs, remote_regs + num_remote_regs, |
1312 | [] (const packet_reg *a, const packet_reg *b) | |
1313 | { return a->pnum < b->pnum; }); | |
74ca34ce DJ |
1314 | |
1315 | for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++) | |
1316 | { | |
1317 | remote_regs[regnum]->in_g_packet = 1; | |
1318 | remote_regs[regnum]->offset = offset; | |
4a22f64d | 1319 | offset += register_size (gdbarch, remote_regs[regnum]->regnum); |
ad10f812 AC |
1320 | } |
1321 | ||
c21236dc PA |
1322 | return offset; |
1323 | } | |
1324 | ||
1325 | /* Given the architecture described by GDBARCH, return the remote | |
1326 | protocol register's number and the register's offset in the g/G | |
1327 | packets of GDB register REGNUM, in PNUM and POFFSET respectively. | |
1328 | If the target does not have a mapping for REGNUM, return false, | |
1329 | otherwise, return true. */ | |
1330 | ||
1331 | int | |
1332 | remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum, | |
1333 | int *pnum, int *poffset) | |
1334 | { | |
c21236dc PA |
1335 | gdb_assert (regnum < gdbarch_num_regs (gdbarch)); |
1336 | ||
b80406ac | 1337 | std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch)); |
c21236dc | 1338 | |
b80406ac | 1339 | map_regcache_remote_table (gdbarch, regs.data ()); |
c21236dc PA |
1340 | |
1341 | *pnum = regs[regnum].pnum; | |
1342 | *poffset = regs[regnum].offset; | |
1343 | ||
c21236dc PA |
1344 | return *pnum != -1; |
1345 | } | |
1346 | ||
9d6eea31 | 1347 | remote_arch_state::remote_arch_state (struct gdbarch *gdbarch) |
c21236dc | 1348 | { |
c21236dc PA |
1349 | /* Use the architecture to build a regnum<->pnum table, which will be |
1350 | 1:1 unless a feature set specifies otherwise. */ | |
9d6eea31 | 1351 | this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ()); |
c21236dc | 1352 | |
74ca34ce DJ |
1353 | /* Record the maximum possible size of the g packet - it may turn out |
1354 | to be smaller. */ | |
9d6eea31 PA |
1355 | this->sizeof_g_packet |
1356 | = map_regcache_remote_table (gdbarch, this->regs.get ()); | |
74ca34ce | 1357 | |
0df8b418 | 1358 | /* Default maximum number of characters in a packet body. Many |
d01949b6 AC |
1359 | remote stubs have a hardwired buffer size of 400 bytes |
1360 | (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used | |
1361 | as the maximum packet-size to ensure that the packet and an extra | |
1362 | NUL character can always fit in the buffer. This stops GDB | |
1363 | trashing stubs that try to squeeze an extra NUL into what is | |
ea9c271d | 1364 | already a full buffer (As of 1999-12-04 that was most stubs). */ |
9d6eea31 | 1365 | this->remote_packet_size = 400 - 1; |
d01949b6 | 1366 | |
ea9c271d | 1367 | /* This one is filled in when a ``g'' packet is received. */ |
9d6eea31 | 1368 | this->actual_register_packet_size = 0; |
ea9c271d DJ |
1369 | |
1370 | /* Should rsa->sizeof_g_packet needs more space than the | |
0df8b418 MS |
1371 | default, adjust the size accordingly. Remember that each byte is |
1372 | encoded as two characters. 32 is the overhead for the packet | |
1373 | header / footer. NOTE: cagney/1999-10-26: I suspect that 8 | |
d01949b6 | 1374 | (``$NN:G...#NN'') is a better guess, the below has been padded a |
23860348 | 1375 | little. */ |
9d6eea31 PA |
1376 | if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2)) |
1377 | this->remote_packet_size = (this->sizeof_g_packet * 2 + 32); | |
ea9c271d DJ |
1378 | } |
1379 | ||
6b8edb51 PA |
1380 | /* Get a pointer to the current remote target. If not connected to a |
1381 | remote target, return NULL. */ | |
1382 | ||
1383 | static remote_target * | |
1384 | get_current_remote_target () | |
1385 | { | |
5b6d1e4f | 1386 | target_ops *proc_target = current_inferior ()->process_target (); |
6b8edb51 PA |
1387 | return dynamic_cast<remote_target *> (proc_target); |
1388 | } | |
1389 | ||
ea9c271d DJ |
1390 | /* Return the current allowed size of a remote packet. This is |
1391 | inferred from the current architecture, and should be used to | |
1392 | limit the length of outgoing packets. */ | |
6b8edb51 PA |
1393 | long |
1394 | remote_target::get_remote_packet_size () | |
ea9c271d | 1395 | { |
be2a5f71 | 1396 | struct remote_state *rs = get_remote_state (); |
9d6eea31 | 1397 | remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ()); |
ea9c271d | 1398 | |
be2a5f71 DJ |
1399 | if (rs->explicit_packet_size) |
1400 | return rs->explicit_packet_size; | |
1401 | ||
ea9c271d | 1402 | return rsa->remote_packet_size; |
d01949b6 AC |
1403 | } |
1404 | ||
ad10f812 | 1405 | static struct packet_reg * |
5cd63fda PA |
1406 | packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa, |
1407 | long regnum) | |
ad10f812 | 1408 | { |
5cd63fda | 1409 | if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch)) |
b323314b AC |
1410 | return NULL; |
1411 | else | |
ad10f812 | 1412 | { |
ea9c271d | 1413 | struct packet_reg *r = &rsa->regs[regnum]; |
a744cf53 | 1414 | |
b323314b AC |
1415 | gdb_assert (r->regnum == regnum); |
1416 | return r; | |
ad10f812 | 1417 | } |
ad10f812 AC |
1418 | } |
1419 | ||
1420 | static struct packet_reg * | |
5cd63fda PA |
1421 | packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa, |
1422 | LONGEST pnum) | |
ad10f812 | 1423 | { |
b323314b | 1424 | int i; |
a744cf53 | 1425 | |
5cd63fda | 1426 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
ad10f812 | 1427 | { |
ea9c271d | 1428 | struct packet_reg *r = &rsa->regs[i]; |
a744cf53 | 1429 | |
b323314b AC |
1430 | if (r->pnum == pnum) |
1431 | return r; | |
ad10f812 AC |
1432 | } |
1433 | return NULL; | |
d01949b6 AC |
1434 | } |
1435 | ||
9a7071a8 JB |
1436 | /* Allow the user to specify what sequence to send to the remote |
1437 | when he requests a program interruption: Although ^C is usually | |
1438 | what remote systems expect (this is the default, here), it is | |
1439 | sometimes preferable to send a break. On other systems such | |
1440 | as the Linux kernel, a break followed by g, which is Magic SysRq g | |
1441 | is required in order to interrupt the execution. */ | |
1442 | const char interrupt_sequence_control_c[] = "Ctrl-C"; | |
1443 | const char interrupt_sequence_break[] = "BREAK"; | |
1444 | const char interrupt_sequence_break_g[] = "BREAK-g"; | |
40478521 | 1445 | static const char *const interrupt_sequence_modes[] = |
9a7071a8 JB |
1446 | { |
1447 | interrupt_sequence_control_c, | |
1448 | interrupt_sequence_break, | |
1449 | interrupt_sequence_break_g, | |
1450 | NULL | |
1451 | }; | |
1452 | static const char *interrupt_sequence_mode = interrupt_sequence_control_c; | |
1453 | ||
1454 | static void | |
1455 | show_interrupt_sequence (struct ui_file *file, int from_tty, | |
1456 | struct cmd_list_element *c, | |
1457 | const char *value) | |
1458 | { | |
1459 | if (interrupt_sequence_mode == interrupt_sequence_control_c) | |
1460 | fprintf_filtered (file, | |
1461 | _("Send the ASCII ETX character (Ctrl-c) " | |
1462 | "to the remote target to interrupt the " | |
1463 | "execution of the program.\n")); | |
1464 | else if (interrupt_sequence_mode == interrupt_sequence_break) | |
1465 | fprintf_filtered (file, | |
1466 | _("send a break signal to the remote target " | |
1467 | "to interrupt the execution of the program.\n")); | |
1468 | else if (interrupt_sequence_mode == interrupt_sequence_break_g) | |
1469 | fprintf_filtered (file, | |
1470 | _("Send a break signal and 'g' a.k.a. Magic SysRq g to " | |
1471 | "the remote target to interrupt the execution " | |
1472 | "of Linux kernel.\n")); | |
1473 | else | |
1474 | internal_error (__FILE__, __LINE__, | |
1475 | _("Invalid value for interrupt_sequence_mode: %s."), | |
1476 | interrupt_sequence_mode); | |
1477 | } | |
6426a772 | 1478 | |
9a7071a8 JB |
1479 | /* This boolean variable specifies whether interrupt_sequence is sent |
1480 | to the remote target when gdb connects to it. | |
1481 | This is mostly needed when you debug the Linux kernel: The Linux kernel | |
1482 | expects BREAK g which is Magic SysRq g for connecting gdb. */ | |
491144b5 | 1483 | static bool interrupt_on_connect = false; |
c906108c | 1484 | |
9a7071a8 JB |
1485 | /* This variable is used to implement the "set/show remotebreak" commands. |
1486 | Since these commands are now deprecated in favor of "set/show remote | |
1487 | interrupt-sequence", it no longer has any effect on the code. */ | |
491144b5 | 1488 | static bool remote_break; |
c906108c | 1489 | |
9a7071a8 | 1490 | static void |
eb4c3f4a | 1491 | set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c) |
9a7071a8 JB |
1492 | { |
1493 | if (remote_break) | |
1494 | interrupt_sequence_mode = interrupt_sequence_break; | |
1495 | else | |
1496 | interrupt_sequence_mode = interrupt_sequence_control_c; | |
1497 | } | |
1498 | ||
1499 | static void | |
1500 | show_remotebreak (struct ui_file *file, int from_tty, | |
1501 | struct cmd_list_element *c, | |
1502 | const char *value) | |
1503 | { | |
1504 | } | |
1505 | ||
c906108c SS |
1506 | /* This variable sets the number of bits in an address that are to be |
1507 | sent in a memory ("M" or "m") packet. Normally, after stripping | |
0df8b418 | 1508 | leading zeros, the entire address would be sent. This variable |
c906108c SS |
1509 | restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The |
1510 | initial implementation of remote.c restricted the address sent in | |
1511 | memory packets to ``host::sizeof long'' bytes - (typically 32 | |
1512 | bits). Consequently, for 64 bit targets, the upper 32 bits of an | |
1513 | address was never sent. Since fixing this bug may cause a break in | |
85102364 | 1514 | some remote targets this variable is principally provided to |
23860348 | 1515 | facilitate backward compatibility. */ |
c906108c | 1516 | |
883b9c6c | 1517 | static unsigned int remote_address_size; |
c906108c | 1518 | |
11cf8741 | 1519 | \f |
11cf8741 | 1520 | /* User configurable variables for the number of characters in a |
ea9c271d DJ |
1521 | memory read/write packet. MIN (rsa->remote_packet_size, |
1522 | rsa->sizeof_g_packet) is the default. Some targets need smaller | |
24b06219 | 1523 | values (fifo overruns, et.al.) and some users need larger values |
ad10f812 AC |
1524 | (speed up transfers). The variables ``preferred_*'' (the user |
1525 | request), ``current_*'' (what was actually set) and ``forced_*'' | |
23860348 | 1526 | (Positive - a soft limit, negative - a hard limit). */ |
11cf8741 JM |
1527 | |
1528 | struct memory_packet_config | |
1529 | { | |
a121b7c1 | 1530 | const char *name; |
11cf8741 JM |
1531 | long size; |
1532 | int fixed_p; | |
1533 | }; | |
1534 | ||
cc0be08f PA |
1535 | /* The default max memory-write-packet-size, when the setting is |
1536 | "fixed". The 16k is historical. (It came from older GDB's using | |
1537 | alloca for buffers and the knowledge (folklore?) that some hosts | |
1538 | don't cope very well with large alloca calls.) */ | |
1539 | #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384 | |
a5c0808e PA |
1540 | |
1541 | /* The minimum remote packet size for memory transfers. Ensures we | |
1542 | can write at least one byte. */ | |
1543 | #define MIN_MEMORY_PACKET_SIZE 20 | |
1544 | ||
cc0be08f PA |
1545 | /* Get the memory packet size, assuming it is fixed. */ |
1546 | ||
1547 | static long | |
1548 | get_fixed_memory_packet_size (struct memory_packet_config *config) | |
1549 | { | |
1550 | gdb_assert (config->fixed_p); | |
1551 | ||
1552 | if (config->size <= 0) | |
1553 | return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED; | |
1554 | else | |
1555 | return config->size; | |
1556 | } | |
1557 | ||
11cf8741 JM |
1558 | /* Compute the current size of a read/write packet. Since this makes |
1559 | use of ``actual_register_packet_size'' the computation is dynamic. */ | |
1560 | ||
6b8edb51 PA |
1561 | long |
1562 | remote_target::get_memory_packet_size (struct memory_packet_config *config) | |
11cf8741 | 1563 | { |
d01949b6 | 1564 | struct remote_state *rs = get_remote_state (); |
9d6eea31 | 1565 | remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ()); |
ea9c271d | 1566 | |
11cf8741 JM |
1567 | long what_they_get; |
1568 | if (config->fixed_p) | |
cc0be08f | 1569 | what_they_get = get_fixed_memory_packet_size (config); |
11cf8741 JM |
1570 | else |
1571 | { | |
ea9c271d | 1572 | what_they_get = get_remote_packet_size (); |
23860348 | 1573 | /* Limit the packet to the size specified by the user. */ |
11cf8741 JM |
1574 | if (config->size > 0 |
1575 | && what_they_get > config->size) | |
1576 | what_they_get = config->size; | |
be2a5f71 DJ |
1577 | |
1578 | /* Limit it to the size of the targets ``g'' response unless we have | |
1579 | permission from the stub to use a larger packet size. */ | |
1580 | if (rs->explicit_packet_size == 0 | |
1581 | && rsa->actual_register_packet_size > 0 | |
1582 | && what_they_get > rsa->actual_register_packet_size) | |
1583 | what_they_get = rsa->actual_register_packet_size; | |
11cf8741 | 1584 | } |
a5c0808e PA |
1585 | if (what_they_get < MIN_MEMORY_PACKET_SIZE) |
1586 | what_they_get = MIN_MEMORY_PACKET_SIZE; | |
6d820c5c DJ |
1587 | |
1588 | /* Make sure there is room in the global buffer for this packet | |
1589 | (including its trailing NUL byte). */ | |
8d64371b TT |
1590 | if (rs->buf.size () < what_they_get + 1) |
1591 | rs->buf.resize (2 * what_they_get); | |
6d820c5c | 1592 | |
11cf8741 JM |
1593 | return what_they_get; |
1594 | } | |
1595 | ||
0df8b418 | 1596 | /* Update the size of a read/write packet. If they user wants |
23860348 | 1597 | something really big then do a sanity check. */ |
11cf8741 JM |
1598 | |
1599 | static void | |
ac88e2de | 1600 | set_memory_packet_size (const char *args, struct memory_packet_config *config) |
11cf8741 JM |
1601 | { |
1602 | int fixed_p = config->fixed_p; | |
1603 | long size = config->size; | |
a744cf53 | 1604 | |
11cf8741 | 1605 | if (args == NULL) |
8a3fe4f8 | 1606 | error (_("Argument required (integer, `fixed' or `limited').")); |
11cf8741 JM |
1607 | else if (strcmp (args, "hard") == 0 |
1608 | || strcmp (args, "fixed") == 0) | |
1609 | fixed_p = 1; | |
1610 | else if (strcmp (args, "soft") == 0 | |
1611 | || strcmp (args, "limit") == 0) | |
1612 | fixed_p = 0; | |
1613 | else | |
1614 | { | |
1615 | char *end; | |
a744cf53 | 1616 | |
11cf8741 JM |
1617 | size = strtoul (args, &end, 0); |
1618 | if (args == end) | |
8a3fe4f8 | 1619 | error (_("Invalid %s (bad syntax)."), config->name); |
a5c0808e PA |
1620 | |
1621 | /* Instead of explicitly capping the size of a packet to or | |
1622 | disallowing it, the user is allowed to set the size to | |
1623 | something arbitrarily large. */ | |
11cf8741 | 1624 | } |
a5c0808e | 1625 | |
23860348 | 1626 | /* Extra checks? */ |
11cf8741 JM |
1627 | if (fixed_p && !config->fixed_p) |
1628 | { | |
cc0be08f PA |
1629 | /* So that the query shows the correct value. */ |
1630 | long query_size = (size <= 0 | |
1631 | ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED | |
1632 | : size); | |
1633 | ||
e2e0b3e5 AC |
1634 | if (! query (_("The target may not be able to correctly handle a %s\n" |
1635 | "of %ld bytes. Change the packet size? "), | |
cc0be08f | 1636 | config->name, query_size)) |
8a3fe4f8 | 1637 | error (_("Packet size not changed.")); |
11cf8741 | 1638 | } |
23860348 | 1639 | /* Update the config. */ |
11cf8741 JM |
1640 | config->fixed_p = fixed_p; |
1641 | config->size = size; | |
1642 | } | |
1643 | ||
1644 | static void | |
1645 | show_memory_packet_size (struct memory_packet_config *config) | |
1646 | { | |
cc0be08f PA |
1647 | if (config->size == 0) |
1648 | printf_filtered (_("The %s is 0 (default). "), config->name); | |
1649 | else | |
1650 | printf_filtered (_("The %s is %ld. "), config->name, config->size); | |
11cf8741 | 1651 | if (config->fixed_p) |
a3f17187 | 1652 | printf_filtered (_("Packets are fixed at %ld bytes.\n"), |
cc0be08f | 1653 | get_fixed_memory_packet_size (config)); |
11cf8741 | 1654 | else |
cc0be08f | 1655 | { |
6b8edb51 | 1656 | remote_target *remote = get_current_remote_target (); |
cc0be08f | 1657 | |
6b8edb51 | 1658 | if (remote != NULL) |
cc0be08f | 1659 | printf_filtered (_("Packets are limited to %ld bytes.\n"), |
6b8edb51 | 1660 | remote->get_memory_packet_size (config)); |
cc0be08f PA |
1661 | else |
1662 | puts_filtered ("The actual limit will be further reduced " | |
1663 | "dependent on the target.\n"); | |
1664 | } | |
11cf8741 JM |
1665 | } |
1666 | ||
5b6d1e4f | 1667 | /* FIXME: needs to be per-remote-target. */ |
11cf8741 JM |
1668 | static struct memory_packet_config memory_write_packet_config = |
1669 | { | |
1670 | "memory-write-packet-size", | |
1671 | }; | |
1672 | ||
1673 | static void | |
ac88e2de | 1674 | set_memory_write_packet_size (const char *args, int from_tty) |
11cf8741 JM |
1675 | { |
1676 | set_memory_packet_size (args, &memory_write_packet_config); | |
1677 | } | |
1678 | ||
1679 | static void | |
ac88e2de | 1680 | show_memory_write_packet_size (const char *args, int from_tty) |
11cf8741 JM |
1681 | { |
1682 | show_memory_packet_size (&memory_write_packet_config); | |
1683 | } | |
1684 | ||
055303e2 AB |
1685 | /* Show the number of hardware watchpoints that can be used. */ |
1686 | ||
1687 | static void | |
1688 | show_hardware_watchpoint_limit (struct ui_file *file, int from_tty, | |
1689 | struct cmd_list_element *c, | |
1690 | const char *value) | |
1691 | { | |
1692 | fprintf_filtered (file, _("The maximum number of target hardware " | |
1693 | "watchpoints is %s.\n"), value); | |
1694 | } | |
1695 | ||
1696 | /* Show the length limit (in bytes) for hardware watchpoints. */ | |
1697 | ||
1698 | static void | |
1699 | show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty, | |
1700 | struct cmd_list_element *c, | |
1701 | const char *value) | |
1702 | { | |
1703 | fprintf_filtered (file, _("The maximum length (in bytes) of a target " | |
1704 | "hardware watchpoint is %s.\n"), value); | |
1705 | } | |
1706 | ||
1707 | /* Show the number of hardware breakpoints that can be used. */ | |
1708 | ||
1709 | static void | |
1710 | show_hardware_breakpoint_limit (struct ui_file *file, int from_tty, | |
1711 | struct cmd_list_element *c, | |
1712 | const char *value) | |
1713 | { | |
1714 | fprintf_filtered (file, _("The maximum number of target hardware " | |
1715 | "breakpoints is %s.\n"), value); | |
1716 | } | |
1717 | ||
6cc8564b LM |
1718 | /* Controls the maximum number of characters to display in the debug output |
1719 | for each remote packet. The remaining characters are omitted. */ | |
1720 | ||
1721 | static int remote_packet_max_chars = 512; | |
1722 | ||
1723 | /* Show the maximum number of characters to display for each remote packet | |
1724 | when remote debugging is enabled. */ | |
1725 | ||
1726 | static void | |
1727 | show_remote_packet_max_chars (struct ui_file *file, int from_tty, | |
1728 | struct cmd_list_element *c, | |
1729 | const char *value) | |
1730 | { | |
1731 | fprintf_filtered (file, _("Number of remote packet characters to " | |
1732 | "display is %s.\n"), value); | |
1733 | } | |
1734 | ||
6b8edb51 PA |
1735 | long |
1736 | remote_target::get_memory_write_packet_size () | |
11cf8741 JM |
1737 | { |
1738 | return get_memory_packet_size (&memory_write_packet_config); | |
1739 | } | |
1740 | ||
5b6d1e4f | 1741 | /* FIXME: needs to be per-remote-target. */ |
11cf8741 JM |
1742 | static struct memory_packet_config memory_read_packet_config = |
1743 | { | |
1744 | "memory-read-packet-size", | |
1745 | }; | |
1746 | ||
1747 | static void | |
ac88e2de | 1748 | set_memory_read_packet_size (const char *args, int from_tty) |
11cf8741 JM |
1749 | { |
1750 | set_memory_packet_size (args, &memory_read_packet_config); | |
1751 | } | |
1752 | ||
1753 | static void | |
ac88e2de | 1754 | show_memory_read_packet_size (const char *args, int from_tty) |
11cf8741 JM |
1755 | { |
1756 | show_memory_packet_size (&memory_read_packet_config); | |
1757 | } | |
1758 | ||
6b8edb51 PA |
1759 | long |
1760 | remote_target::get_memory_read_packet_size () | |
11cf8741 JM |
1761 | { |
1762 | long size = get_memory_packet_size (&memory_read_packet_config); | |
a744cf53 | 1763 | |
11cf8741 JM |
1764 | /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an |
1765 | extra buffer size argument before the memory read size can be | |
ea9c271d DJ |
1766 | increased beyond this. */ |
1767 | if (size > get_remote_packet_size ()) | |
1768 | size = get_remote_packet_size (); | |
11cf8741 JM |
1769 | return size; |
1770 | } | |
1771 | ||
11cf8741 | 1772 | \f |
5a2468f5 | 1773 | |
5a2468f5 JM |
1774 | struct packet_config |
1775 | { | |
bb572ddd DJ |
1776 | const char *name; |
1777 | const char *title; | |
4082afcc PA |
1778 | |
1779 | /* If auto, GDB auto-detects support for this packet or feature, | |
1780 | either through qSupported, or by trying the packet and looking | |
1781 | at the response. If true, GDB assumes the target supports this | |
ca4f7f8b PA |
1782 | packet. If false, the packet is disabled. Configs that don't |
1783 | have an associated command always have this set to auto. */ | |
7f19b9a2 | 1784 | enum auto_boolean detect; |
4082afcc PA |
1785 | |
1786 | /* Does the target support this packet? */ | |
5a2468f5 JM |
1787 | enum packet_support support; |
1788 | }; | |
1789 | ||
4082afcc PA |
1790 | static enum packet_support packet_config_support (struct packet_config *config); |
1791 | static enum packet_support packet_support (int packet); | |
5a2468f5 JM |
1792 | |
1793 | static void | |
fba45db2 | 1794 | show_packet_config_cmd (struct packet_config *config) |
5a2468f5 | 1795 | { |
a121b7c1 | 1796 | const char *support = "internal-error"; |
a744cf53 | 1797 | |
4082afcc | 1798 | switch (packet_config_support (config)) |
5a2468f5 JM |
1799 | { |
1800 | case PACKET_ENABLE: | |
1801 | support = "enabled"; | |
1802 | break; | |
1803 | case PACKET_DISABLE: | |
1804 | support = "disabled"; | |
1805 | break; | |
1806 | case PACKET_SUPPORT_UNKNOWN: | |
1807 | support = "unknown"; | |
1808 | break; | |
1809 | } | |
1810 | switch (config->detect) | |
1811 | { | |
7f19b9a2 | 1812 | case AUTO_BOOLEAN_AUTO: |
3e43a32a MS |
1813 | printf_filtered (_("Support for the `%s' packet " |
1814 | "is auto-detected, currently %s.\n"), | |
37a105a1 | 1815 | config->name, support); |
5a2468f5 | 1816 | break; |
7f19b9a2 AC |
1817 | case AUTO_BOOLEAN_TRUE: |
1818 | case AUTO_BOOLEAN_FALSE: | |
37a105a1 DJ |
1819 | printf_filtered (_("Support for the `%s' packet is currently %s.\n"), |
1820 | config->name, support); | |
8e248173 | 1821 | break; |
5a2468f5 JM |
1822 | } |
1823 | } | |
1824 | ||
1825 | static void | |
bb572ddd DJ |
1826 | add_packet_config_cmd (struct packet_config *config, const char *name, |
1827 | const char *title, int legacy) | |
d471ea57 | 1828 | { |
5a2468f5 JM |
1829 | char *set_doc; |
1830 | char *show_doc; | |
d471ea57 | 1831 | char *cmd_name; |
3ed07be4 | 1832 | |
5a2468f5 JM |
1833 | config->name = name; |
1834 | config->title = title; | |
590042fc | 1835 | set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.", |
b435e160 | 1836 | name, title); |
3e43a32a | 1837 | show_doc = xstrprintf ("Show current use of remote " |
590042fc | 1838 | "protocol `%s' (%s) packet.", |
b435e160 | 1839 | name, title); |
d471ea57 | 1840 | /* set/show TITLE-packet {auto,on,off} */ |
b435e160 | 1841 | cmd_name = xstrprintf ("%s-packet", title); |
e9e68a56 | 1842 | add_setshow_auto_boolean_cmd (cmd_name, class_obscure, |
3e43a32a MS |
1843 | &config->detect, set_doc, |
1844 | show_doc, NULL, /* help_doc */ | |
4082afcc | 1845 | NULL, |
bb572ddd DJ |
1846 | show_remote_protocol_packet_cmd, |
1847 | &remote_set_cmdlist, &remote_show_cmdlist); | |
1eefb858 TT |
1848 | /* The command code copies the documentation strings. */ |
1849 | xfree (set_doc); | |
1850 | xfree (show_doc); | |
23860348 | 1851 | /* set/show remote NAME-packet {auto,on,off} -- legacy. */ |
d471ea57 AC |
1852 | if (legacy) |
1853 | { | |
1854 | char *legacy_name; | |
a744cf53 | 1855 | |
b435e160 | 1856 | legacy_name = xstrprintf ("%s-packet", name); |
d471ea57 | 1857 | add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, |
bb572ddd | 1858 | &remote_set_cmdlist); |
d471ea57 | 1859 | add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, |
bb572ddd | 1860 | &remote_show_cmdlist); |
d471ea57 | 1861 | } |
5a2468f5 JM |
1862 | } |
1863 | ||
d471ea57 | 1864 | static enum packet_result |
a76d924d | 1865 | packet_check_result (const char *buf) |
5a2468f5 | 1866 | { |
d471ea57 | 1867 | if (buf[0] != '\0') |
5a2468f5 | 1868 | { |
d471ea57 | 1869 | /* The stub recognized the packet request. Check that the |
23860348 | 1870 | operation succeeded. */ |
a76d924d DJ |
1871 | if (buf[0] == 'E' |
1872 | && isxdigit (buf[1]) && isxdigit (buf[2]) | |
1873 | && buf[3] == '\0') | |
85102364 | 1874 | /* "Enn" - definitely an error. */ |
a76d924d DJ |
1875 | return PACKET_ERROR; |
1876 | ||
1877 | /* Always treat "E." as an error. This will be used for | |
1878 | more verbose error messages, such as E.memtypes. */ | |
1879 | if (buf[0] == 'E' && buf[1] == '.') | |
1880 | return PACKET_ERROR; | |
1881 | ||
1882 | /* The packet may or may not be OK. Just assume it is. */ | |
1883 | return PACKET_OK; | |
1884 | } | |
1885 | else | |
1886 | /* The stub does not support the packet. */ | |
1887 | return PACKET_UNKNOWN; | |
1888 | } | |
1889 | ||
8d64371b TT |
1890 | static enum packet_result |
1891 | packet_check_result (const gdb::char_vector &buf) | |
1892 | { | |
1893 | return packet_check_result (buf.data ()); | |
1894 | } | |
1895 | ||
a76d924d DJ |
1896 | static enum packet_result |
1897 | packet_ok (const char *buf, struct packet_config *config) | |
1898 | { | |
1899 | enum packet_result result; | |
1900 | ||
4082afcc PA |
1901 | if (config->detect != AUTO_BOOLEAN_TRUE |
1902 | && config->support == PACKET_DISABLE) | |
1903 | internal_error (__FILE__, __LINE__, | |
1904 | _("packet_ok: attempt to use a disabled packet")); | |
1905 | ||
a76d924d DJ |
1906 | result = packet_check_result (buf); |
1907 | switch (result) | |
1908 | { | |
1909 | case PACKET_OK: | |
1910 | case PACKET_ERROR: | |
1911 | /* The stub recognized the packet request. */ | |
4082afcc | 1912 | if (config->support == PACKET_SUPPORT_UNKNOWN) |
d471ea57 | 1913 | { |
d471ea57 AC |
1914 | if (remote_debug) |
1915 | fprintf_unfiltered (gdb_stdlog, | |
4082afcc PA |
1916 | "Packet %s (%s) is supported\n", |
1917 | config->name, config->title); | |
d471ea57 | 1918 | config->support = PACKET_ENABLE; |
d471ea57 | 1919 | } |
a76d924d DJ |
1920 | break; |
1921 | case PACKET_UNKNOWN: | |
23860348 | 1922 | /* The stub does not support the packet. */ |
4082afcc PA |
1923 | if (config->detect == AUTO_BOOLEAN_AUTO |
1924 | && config->support == PACKET_ENABLE) | |
d471ea57 | 1925 | { |
4082afcc PA |
1926 | /* If the stub previously indicated that the packet was |
1927 | supported then there is a protocol error. */ | |
1928 | error (_("Protocol error: %s (%s) conflicting enabled responses."), | |
1929 | config->name, config->title); | |
1930 | } | |
1931 | else if (config->detect == AUTO_BOOLEAN_TRUE) | |
1932 | { | |
1933 | /* The user set it wrong. */ | |
1934 | error (_("Enabled packet %s (%s) not recognized by stub"), | |
1935 | config->name, config->title); | |
d471ea57 | 1936 | } |
4082afcc PA |
1937 | |
1938 | if (remote_debug) | |
1939 | fprintf_unfiltered (gdb_stdlog, | |
1940 | "Packet %s (%s) is NOT supported\n", | |
1941 | config->name, config->title); | |
1942 | config->support = PACKET_DISABLE; | |
a76d924d | 1943 | break; |
5a2468f5 | 1944 | } |
a76d924d DJ |
1945 | |
1946 | return result; | |
5a2468f5 JM |
1947 | } |
1948 | ||
8d64371b TT |
1949 | static enum packet_result |
1950 | packet_ok (const gdb::char_vector &buf, struct packet_config *config) | |
1951 | { | |
1952 | return packet_ok (buf.data (), config); | |
1953 | } | |
1954 | ||
444abaca DJ |
1955 | enum { |
1956 | PACKET_vCont = 0, | |
1957 | PACKET_X, | |
1958 | PACKET_qSymbol, | |
1959 | PACKET_P, | |
1960 | PACKET_p, | |
1961 | PACKET_Z0, | |
1962 | PACKET_Z1, | |
1963 | PACKET_Z2, | |
1964 | PACKET_Z3, | |
1965 | PACKET_Z4, | |
15a201c8 | 1966 | PACKET_vFile_setfs, |
a6b151f1 DJ |
1967 | PACKET_vFile_open, |
1968 | PACKET_vFile_pread, | |
1969 | PACKET_vFile_pwrite, | |
1970 | PACKET_vFile_close, | |
1971 | PACKET_vFile_unlink, | |
b9e7b9c3 | 1972 | PACKET_vFile_readlink, |
0a93529c | 1973 | PACKET_vFile_fstat, |
0876f84a | 1974 | PACKET_qXfer_auxv, |
23181151 | 1975 | PACKET_qXfer_features, |
c78fa86a | 1976 | PACKET_qXfer_exec_file, |
cfa9d6d9 | 1977 | PACKET_qXfer_libraries, |
2268b414 | 1978 | PACKET_qXfer_libraries_svr4, |
fd79ecee | 1979 | PACKET_qXfer_memory_map, |
07e059b5 | 1980 | PACKET_qXfer_osdata, |
dc146f7c | 1981 | PACKET_qXfer_threads, |
0fb4aa4b | 1982 | PACKET_qXfer_statictrace_read, |
b3b9301e | 1983 | PACKET_qXfer_traceframe_info, |
169081d0 | 1984 | PACKET_qXfer_uib, |
711e434b | 1985 | PACKET_qGetTIBAddr, |
444abaca | 1986 | PACKET_qGetTLSAddr, |
be2a5f71 | 1987 | PACKET_qSupported, |
bd3eecc3 | 1988 | PACKET_qTStatus, |
89be2091 | 1989 | PACKET_QPassSignals, |
82075af2 | 1990 | PACKET_QCatchSyscalls, |
9b224c5e | 1991 | PACKET_QProgramSignals, |
bc3b087d | 1992 | PACKET_QSetWorkingDir, |
aefd8b33 | 1993 | PACKET_QStartupWithShell, |
0a2dde4a SDJ |
1994 | PACKET_QEnvironmentHexEncoded, |
1995 | PACKET_QEnvironmentReset, | |
1996 | PACKET_QEnvironmentUnset, | |
936d2992 | 1997 | PACKET_qCRC, |
08388c79 | 1998 | PACKET_qSearch_memory, |
2d717e4f DJ |
1999 | PACKET_vAttach, |
2000 | PACKET_vRun, | |
a6f3e723 | 2001 | PACKET_QStartNoAckMode, |
82f73884 | 2002 | PACKET_vKill, |
4aa995e1 PA |
2003 | PACKET_qXfer_siginfo_read, |
2004 | PACKET_qXfer_siginfo_write, | |
0b16c5cf | 2005 | PACKET_qAttached, |
4082afcc PA |
2006 | |
2007 | /* Support for conditional tracepoints. */ | |
782b2b07 | 2008 | PACKET_ConditionalTracepoints, |
4082afcc PA |
2009 | |
2010 | /* Support for target-side breakpoint conditions. */ | |
3788aec7 | 2011 | PACKET_ConditionalBreakpoints, |
4082afcc PA |
2012 | |
2013 | /* Support for target-side breakpoint commands. */ | |
d3ce09f5 | 2014 | PACKET_BreakpointCommands, |
4082afcc PA |
2015 | |
2016 | /* Support for fast tracepoints. */ | |
7a697b8d | 2017 | PACKET_FastTracepoints, |
4082afcc PA |
2018 | |
2019 | /* Support for static tracepoints. */ | |
0fb4aa4b | 2020 | PACKET_StaticTracepoints, |
4082afcc PA |
2021 | |
2022 | /* Support for installing tracepoints while a trace experiment is | |
2023 | running. */ | |
1e4d1764 | 2024 | PACKET_InstallInTrace, |
4082afcc | 2025 | |
40ab02ce MS |
2026 | PACKET_bc, |
2027 | PACKET_bs, | |
409873ef | 2028 | PACKET_TracepointSource, |
d914c394 | 2029 | PACKET_QAllow, |
78d85199 | 2030 | PACKET_qXfer_fdpic, |
03583c20 | 2031 | PACKET_QDisableRandomization, |
d1feda86 | 2032 | PACKET_QAgent, |
f6f899bf | 2033 | PACKET_QTBuffer_size, |
9accd112 MM |
2034 | PACKET_Qbtrace_off, |
2035 | PACKET_Qbtrace_bts, | |
b20a6524 | 2036 | PACKET_Qbtrace_pt, |
9accd112 | 2037 | PACKET_qXfer_btrace, |
4082afcc PA |
2038 | |
2039 | /* Support for the QNonStop packet. */ | |
2040 | PACKET_QNonStop, | |
2041 | ||
65706a29 PA |
2042 | /* Support for the QThreadEvents packet. */ |
2043 | PACKET_QThreadEvents, | |
2044 | ||
4082afcc PA |
2045 | /* Support for multi-process extensions. */ |
2046 | PACKET_multiprocess_feature, | |
2047 | ||
2048 | /* Support for enabling and disabling tracepoints while a trace | |
2049 | experiment is running. */ | |
2050 | PACKET_EnableDisableTracepoints_feature, | |
2051 | ||
2052 | /* Support for collecting strings using the tracenz bytecode. */ | |
2053 | PACKET_tracenz_feature, | |
2054 | ||
2055 | /* Support for continuing to run a trace experiment while GDB is | |
2056 | disconnected. */ | |
2057 | PACKET_DisconnectedTracing_feature, | |
2058 | ||
2059 | /* Support for qXfer:libraries-svr4:read with a non-empty annex. */ | |
2060 | PACKET_augmented_libraries_svr4_read_feature, | |
2061 | ||
f4abbc16 MM |
2062 | /* Support for the qXfer:btrace-conf:read packet. */ |
2063 | PACKET_qXfer_btrace_conf, | |
2064 | ||
d33501a5 MM |
2065 | /* Support for the Qbtrace-conf:bts:size packet. */ |
2066 | PACKET_Qbtrace_conf_bts_size, | |
2067 | ||
f7e6eed5 PA |
2068 | /* Support for swbreak+ feature. */ |
2069 | PACKET_swbreak_feature, | |
2070 | ||
2071 | /* Support for hwbreak+ feature. */ | |
2072 | PACKET_hwbreak_feature, | |
2073 | ||
89245bc0 DB |
2074 | /* Support for fork events. */ |
2075 | PACKET_fork_event_feature, | |
2076 | ||
2077 | /* Support for vfork events. */ | |
2078 | PACKET_vfork_event_feature, | |
2079 | ||
b20a6524 MM |
2080 | /* Support for the Qbtrace-conf:pt:size packet. */ |
2081 | PACKET_Qbtrace_conf_pt_size, | |
2082 | ||
94585166 DB |
2083 | /* Support for exec events. */ |
2084 | PACKET_exec_event_feature, | |
2085 | ||
750ce8d1 YQ |
2086 | /* Support for query supported vCont actions. */ |
2087 | PACKET_vContSupported, | |
2088 | ||
de979965 PA |
2089 | /* Support remote CTRL-C. */ |
2090 | PACKET_vCtrlC, | |
2091 | ||
f2faf941 PA |
2092 | /* Support TARGET_WAITKIND_NO_RESUMED. */ |
2093 | PACKET_no_resumed, | |
2094 | ||
444abaca DJ |
2095 | PACKET_MAX |
2096 | }; | |
506fb367 | 2097 | |
5b6d1e4f PA |
2098 | /* FIXME: needs to be per-remote-target. Ignoring this for now, |
2099 | assuming all remote targets are the same server (thus all support | |
2100 | the same packets). */ | |
444abaca | 2101 | static struct packet_config remote_protocol_packets[PACKET_MAX]; |
dc8acb97 | 2102 | |
f7e6eed5 PA |
2103 | /* Returns the packet's corresponding "set remote foo-packet" command |
2104 | state. See struct packet_config for more details. */ | |
2105 | ||
2106 | static enum auto_boolean | |
2107 | packet_set_cmd_state (int packet) | |
2108 | { | |
2109 | return remote_protocol_packets[packet].detect; | |
2110 | } | |
2111 | ||
4082afcc PA |
2112 | /* Returns whether a given packet or feature is supported. This takes |
2113 | into account the state of the corresponding "set remote foo-packet" | |
2114 | command, which may be used to bypass auto-detection. */ | |
dc8acb97 | 2115 | |
4082afcc PA |
2116 | static enum packet_support |
2117 | packet_config_support (struct packet_config *config) | |
2118 | { | |
2119 | switch (config->detect) | |
444abaca | 2120 | { |
4082afcc PA |
2121 | case AUTO_BOOLEAN_TRUE: |
2122 | return PACKET_ENABLE; | |
2123 | case AUTO_BOOLEAN_FALSE: | |
2124 | return PACKET_DISABLE; | |
2125 | case AUTO_BOOLEAN_AUTO: | |
2126 | return config->support; | |
2127 | default: | |
2128 | gdb_assert_not_reached (_("bad switch")); | |
444abaca | 2129 | } |
4082afcc PA |
2130 | } |
2131 | ||
2132 | /* Same as packet_config_support, but takes the packet's enum value as | |
2133 | argument. */ | |
2134 | ||
2135 | static enum packet_support | |
2136 | packet_support (int packet) | |
2137 | { | |
2138 | struct packet_config *config = &remote_protocol_packets[packet]; | |
2139 | ||
2140 | return packet_config_support (config); | |
dc8acb97 MS |
2141 | } |
2142 | ||
5a2468f5 | 2143 | static void |
444abaca DJ |
2144 | show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty, |
2145 | struct cmd_list_element *c, | |
2146 | const char *value) | |
5a2468f5 | 2147 | { |
444abaca | 2148 | struct packet_config *packet; |
5a2468f5 | 2149 | |
444abaca DJ |
2150 | for (packet = remote_protocol_packets; |
2151 | packet < &remote_protocol_packets[PACKET_MAX]; | |
2152 | packet++) | |
2153 | { | |
2154 | if (&packet->detect == c->var) | |
2155 | { | |
2156 | show_packet_config_cmd (packet); | |
2157 | return; | |
2158 | } | |
2159 | } | |
9b20d036 | 2160 | internal_error (__FILE__, __LINE__, _("Could not find config for %s"), |
444abaca | 2161 | c->name); |
5a2468f5 JM |
2162 | } |
2163 | ||
d471ea57 AC |
2164 | /* Should we try one of the 'Z' requests? */ |
2165 | ||
2166 | enum Z_packet_type | |
2167 | { | |
2168 | Z_PACKET_SOFTWARE_BP, | |
2169 | Z_PACKET_HARDWARE_BP, | |
2170 | Z_PACKET_WRITE_WP, | |
2171 | Z_PACKET_READ_WP, | |
2172 | Z_PACKET_ACCESS_WP, | |
2173 | NR_Z_PACKET_TYPES | |
2174 | }; | |
96baa820 | 2175 | |
d471ea57 | 2176 | /* For compatibility with older distributions. Provide a ``set remote |
23860348 | 2177 | Z-packet ...'' command that updates all the Z packet types. */ |
d471ea57 | 2178 | |
7f19b9a2 | 2179 | static enum auto_boolean remote_Z_packet_detect; |
96baa820 JM |
2180 | |
2181 | static void | |
eb4c3f4a | 2182 | set_remote_protocol_Z_packet_cmd (const char *args, int from_tty, |
fba45db2 | 2183 | struct cmd_list_element *c) |
96baa820 | 2184 | { |
d471ea57 | 2185 | int i; |
a744cf53 | 2186 | |
d471ea57 | 2187 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) |
4082afcc | 2188 | remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect; |
96baa820 JM |
2189 | } |
2190 | ||
2191 | static void | |
08546159 AC |
2192 | show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty, |
2193 | struct cmd_list_element *c, | |
2194 | const char *value) | |
96baa820 | 2195 | { |
d471ea57 | 2196 | int i; |
a744cf53 | 2197 | |
d471ea57 AC |
2198 | for (i = 0; i < NR_Z_PACKET_TYPES; i++) |
2199 | { | |
444abaca | 2200 | show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]); |
d471ea57 | 2201 | } |
96baa820 JM |
2202 | } |
2203 | ||
4082afcc PA |
2204 | /* Returns true if the multi-process extensions are in effect. */ |
2205 | ||
2206 | static int | |
2207 | remote_multi_process_p (struct remote_state *rs) | |
2208 | { | |
2209 | return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE; | |
2210 | } | |
2211 | ||
de0d863e DB |
2212 | /* Returns true if fork events are supported. */ |
2213 | ||
2214 | static int | |
2215 | remote_fork_event_p (struct remote_state *rs) | |
2216 | { | |
2217 | return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE; | |
2218 | } | |
2219 | ||
c269dbdb DB |
2220 | /* Returns true if vfork events are supported. */ |
2221 | ||
2222 | static int | |
2223 | remote_vfork_event_p (struct remote_state *rs) | |
2224 | { | |
2225 | return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE; | |
2226 | } | |
2227 | ||
d46addbb DB |
2228 | /* Returns true if exec events are supported. */ |
2229 | ||
2230 | static int | |
2231 | remote_exec_event_p (struct remote_state *rs) | |
2232 | { | |
2233 | return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE; | |
2234 | } | |
2235 | ||
cbb8991c DB |
2236 | /* Insert fork catchpoint target routine. If fork events are enabled |
2237 | then return success, nothing more to do. */ | |
2238 | ||
f6ac5f3d PA |
2239 | int |
2240 | remote_target::insert_fork_catchpoint (int pid) | |
cbb8991c DB |
2241 | { |
2242 | struct remote_state *rs = get_remote_state (); | |
2243 | ||
2244 | return !remote_fork_event_p (rs); | |
2245 | } | |
2246 | ||
2247 | /* Remove fork catchpoint target routine. Nothing to do, just | |
2248 | return success. */ | |
2249 | ||
f6ac5f3d PA |
2250 | int |
2251 | remote_target::remove_fork_catchpoint (int pid) | |
cbb8991c DB |
2252 | { |
2253 | return 0; | |
2254 | } | |
2255 | ||
2256 | /* Insert vfork catchpoint target routine. If vfork events are enabled | |
2257 | then return success, nothing more to do. */ | |
2258 | ||
f6ac5f3d PA |
2259 | int |
2260 | remote_target::insert_vfork_catchpoint (int pid) | |
cbb8991c DB |
2261 | { |
2262 | struct remote_state *rs = get_remote_state (); | |
2263 | ||
2264 | return !remote_vfork_event_p (rs); | |
2265 | } | |
2266 | ||
2267 | /* Remove vfork catchpoint target routine. Nothing to do, just | |
2268 | return success. */ | |
2269 | ||
f6ac5f3d PA |
2270 | int |
2271 | remote_target::remove_vfork_catchpoint (int pid) | |
cbb8991c DB |
2272 | { |
2273 | return 0; | |
2274 | } | |
2275 | ||
d46addbb DB |
2276 | /* Insert exec catchpoint target routine. If exec events are |
2277 | enabled, just return success. */ | |
2278 | ||
f6ac5f3d PA |
2279 | int |
2280 | remote_target::insert_exec_catchpoint (int pid) | |
d46addbb DB |
2281 | { |
2282 | struct remote_state *rs = get_remote_state (); | |
2283 | ||
2284 | return !remote_exec_event_p (rs); | |
2285 | } | |
2286 | ||
2287 | /* Remove exec catchpoint target routine. Nothing to do, just | |
2288 | return success. */ | |
2289 | ||
f6ac5f3d PA |
2290 | int |
2291 | remote_target::remove_exec_catchpoint (int pid) | |
d46addbb DB |
2292 | { |
2293 | return 0; | |
2294 | } | |
2295 | ||
c906108c SS |
2296 | \f |
2297 | ||
ffdd69cf TT |
2298 | /* Take advantage of the fact that the TID field is not used, to tag |
2299 | special ptids with it set to != 0. */ | |
2300 | static const ptid_t magic_null_ptid (42000, -1, 1); | |
2301 | static const ptid_t not_sent_ptid (42000, -2, 1); | |
2302 | static const ptid_t any_thread_ptid (42000, 0, 1); | |
79d7f229 | 2303 | |
0b16c5cf PA |
2304 | /* Find out if the stub attached to PID (and hence GDB should offer to |
2305 | detach instead of killing it when bailing out). */ | |
2306 | ||
6b8edb51 PA |
2307 | int |
2308 | remote_target::remote_query_attached (int pid) | |
0b16c5cf PA |
2309 | { |
2310 | struct remote_state *rs = get_remote_state (); | |
bba74b36 | 2311 | size_t size = get_remote_packet_size (); |
0b16c5cf | 2312 | |
4082afcc | 2313 | if (packet_support (PACKET_qAttached) == PACKET_DISABLE) |
0b16c5cf PA |
2314 | return 0; |
2315 | ||
2316 | if (remote_multi_process_p (rs)) | |
8d64371b | 2317 | xsnprintf (rs->buf.data (), size, "qAttached:%x", pid); |
0b16c5cf | 2318 | else |
8d64371b | 2319 | xsnprintf (rs->buf.data (), size, "qAttached"); |
0b16c5cf PA |
2320 | |
2321 | putpkt (rs->buf); | |
8d64371b | 2322 | getpkt (&rs->buf, 0); |
0b16c5cf PA |
2323 | |
2324 | switch (packet_ok (rs->buf, | |
1554e9be | 2325 | &remote_protocol_packets[PACKET_qAttached])) |
0b16c5cf PA |
2326 | { |
2327 | case PACKET_OK: | |
8d64371b | 2328 | if (strcmp (rs->buf.data (), "1") == 0) |
0b16c5cf PA |
2329 | return 1; |
2330 | break; | |
2331 | case PACKET_ERROR: | |
8d64371b | 2332 | warning (_("Remote failure reply: %s"), rs->buf.data ()); |
0b16c5cf PA |
2333 | break; |
2334 | case PACKET_UNKNOWN: | |
2335 | break; | |
2336 | } | |
2337 | ||
2338 | return 0; | |
2339 | } | |
2340 | ||
49c62f2e PA |
2341 | /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID |
2342 | has been invented by GDB, instead of reported by the target. Since | |
2343 | we can be connected to a remote system before before knowing about | |
2344 | any inferior, mark the target with execution when we find the first | |
2345 | inferior. If ATTACHED is 1, then we had just attached to this | |
2346 | inferior. If it is 0, then we just created this inferior. If it | |
2347 | is -1, then try querying the remote stub to find out if it had | |
1b6e6f5c GB |
2348 | attached to the inferior or not. If TRY_OPEN_EXEC is true then |
2349 | attempt to open this inferior's executable as the main executable | |
2350 | if no main executable is open already. */ | |
1941c569 | 2351 | |
6b8edb51 | 2352 | inferior * |
9ab8741a | 2353 | remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached, |
6b8edb51 | 2354 | int try_open_exec) |
1941c569 | 2355 | { |
1941c569 PA |
2356 | struct inferior *inf; |
2357 | ||
0b16c5cf PA |
2358 | /* Check whether this process we're learning about is to be |
2359 | considered attached, or if is to be considered to have been | |
2360 | spawned by the stub. */ | |
2361 | if (attached == -1) | |
2362 | attached = remote_query_attached (pid); | |
2363 | ||
f5656ead | 2364 | if (gdbarch_has_global_solist (target_gdbarch ())) |
6c95b8df PA |
2365 | { |
2366 | /* If the target shares code across all inferiors, then every | |
2367 | attach adds a new inferior. */ | |
2368 | inf = add_inferior (pid); | |
2369 | ||
2370 | /* ... and every inferior is bound to the same program space. | |
2371 | However, each inferior may still have its own address | |
2372 | space. */ | |
2373 | inf->aspace = maybe_new_address_space (); | |
2374 | inf->pspace = current_program_space; | |
2375 | } | |
2376 | else | |
2377 | { | |
2378 | /* In the traditional debugging scenario, there's a 1-1 match | |
2379 | between program/address spaces. We simply bind the inferior | |
2380 | to the program space's address space. */ | |
2381 | inf = current_inferior (); | |
78f2c40a PA |
2382 | |
2383 | /* However, if the current inferior is already bound to a | |
2384 | process, find some other empty inferior. */ | |
2385 | if (inf->pid != 0) | |
2386 | { | |
2387 | inf = nullptr; | |
2388 | for (inferior *it : all_inferiors ()) | |
2389 | if (it->pid == 0) | |
2390 | { | |
2391 | inf = it; | |
2392 | break; | |
2393 | } | |
2394 | } | |
2395 | if (inf == nullptr) | |
2396 | { | |
2397 | /* Since all inferiors were already bound to a process, add | |
2398 | a new inferior. */ | |
2399 | inf = add_inferior_with_spaces (); | |
2400 | } | |
2401 | switch_to_inferior_no_thread (inf); | |
5b6d1e4f | 2402 | push_target (this); |
6c95b8df PA |
2403 | inferior_appeared (inf, pid); |
2404 | } | |
1941c569 | 2405 | |
0b16c5cf | 2406 | inf->attach_flag = attached; |
49c62f2e | 2407 | inf->fake_pid_p = fake_pid_p; |
0b16c5cf | 2408 | |
1b6e6f5c GB |
2409 | /* If no main executable is currently open then attempt to |
2410 | open the file that was executed to create this inferior. */ | |
835205d0 | 2411 | if (try_open_exec && get_exec_file (0) == NULL) |
bb805577 | 2412 | exec_file_locate_attach (pid, 0, 1); |
1b6e6f5c | 2413 | |
a2fedca9 PW |
2414 | /* Check for exec file mismatch, and let the user solve it. */ |
2415 | validate_exec_file (1); | |
2416 | ||
1941c569 PA |
2417 | return inf; |
2418 | } | |
2419 | ||
7aabaf9d | 2420 | static remote_thread_info *get_remote_thread_info (thread_info *thread); |
5b6d1e4f PA |
2421 | static remote_thread_info *get_remote_thread_info (remote_target *target, |
2422 | ptid_t ptid); | |
85ad3aaf | 2423 | |
1941c569 PA |
2424 | /* Add thread PTID to GDB's thread list. Tag it as executing/running |
2425 | according to RUNNING. */ | |
2426 | ||
00431a78 | 2427 | thread_info * |
6b8edb51 | 2428 | remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing) |
c906108c | 2429 | { |
b7ea362b | 2430 | struct remote_state *rs = get_remote_state (); |
85ad3aaf | 2431 | struct thread_info *thread; |
b7ea362b PA |
2432 | |
2433 | /* GDB historically didn't pull threads in the initial connection | |
2434 | setup. If the remote target doesn't even have a concept of | |
2435 | threads (e.g., a bare-metal target), even if internally we | |
2436 | consider that a single-threaded target, mentioning a new thread | |
2437 | might be confusing to the user. Be silent then, preserving the | |
2438 | age old behavior. */ | |
2439 | if (rs->starting_up) | |
5b6d1e4f | 2440 | thread = add_thread_silent (this, ptid); |
b7ea362b | 2441 | else |
5b6d1e4f | 2442 | thread = add_thread (this, ptid); |
1941c569 | 2443 | |
7aabaf9d | 2444 | get_remote_thread_info (thread)->vcont_resumed = executing; |
5b6d1e4f PA |
2445 | set_executing (this, ptid, executing); |
2446 | set_running (this, ptid, running); | |
00431a78 PA |
2447 | |
2448 | return thread; | |
1941c569 PA |
2449 | } |
2450 | ||
2451 | /* Come here when we learn about a thread id from the remote target. | |
2452 | It may be the first time we hear about such thread, so take the | |
2453 | opportunity to add it to GDB's thread list. In case this is the | |
2454 | first time we're noticing its corresponding inferior, add it to | |
0d5b594f PA |
2455 | GDB's inferior list as well. EXECUTING indicates whether the |
2456 | thread is (internally) executing or stopped. */ | |
1941c569 | 2457 | |
6b8edb51 PA |
2458 | void |
2459 | remote_target::remote_notice_new_inferior (ptid_t currthread, int executing) | |
1941c569 | 2460 | { |
0d5b594f PA |
2461 | /* In non-stop mode, we assume new found threads are (externally) |
2462 | running until proven otherwise with a stop reply. In all-stop, | |
2463 | we can only get here if all threads are stopped. */ | |
2464 | int running = target_is_non_stop_p () ? 1 : 0; | |
2465 | ||
c906108c SS |
2466 | /* If this is a new thread, add it to GDB's thread list. |
2467 | If we leave it up to WFI to do this, bad things will happen. */ | |
82f73884 | 2468 | |
5b6d1e4f | 2469 | thread_info *tp = find_thread_ptid (this, currthread); |
00431a78 | 2470 | if (tp != NULL && tp->state == THREAD_EXITED) |
82f73884 PA |
2471 | { |
2472 | /* We're seeing an event on a thread id we knew had exited. | |
2473 | This has to be a new thread reusing the old id. Add it. */ | |
0d5b594f | 2474 | remote_add_thread (currthread, running, executing); |
82f73884 PA |
2475 | return; |
2476 | } | |
2477 | ||
5b6d1e4f | 2478 | if (!in_thread_list (this, currthread)) |
c0a2216e | 2479 | { |
1941c569 | 2480 | struct inferior *inf = NULL; |
e99b03dc | 2481 | int pid = currthread.pid (); |
1941c569 | 2482 | |
0e998d96 | 2483 | if (inferior_ptid.is_pid () |
e99b03dc | 2484 | && pid == inferior_ptid.pid ()) |
c0a2216e PA |
2485 | { |
2486 | /* inferior_ptid has no thread member yet. This can happen | |
2487 | with the vAttach -> remote_wait,"TAAthread:" path if the | |
2488 | stub doesn't support qC. This is the first stop reported | |
2489 | after an attach, so this is the main thread. Update the | |
2490 | ptid in the thread list. */ | |
5b6d1e4f PA |
2491 | if (in_thread_list (this, ptid_t (pid))) |
2492 | thread_change_ptid (this, inferior_ptid, currthread); | |
bad34192 PA |
2493 | else |
2494 | { | |
0d5b594f | 2495 | remote_add_thread (currthread, running, executing); |
bad34192 PA |
2496 | inferior_ptid = currthread; |
2497 | } | |
dc146f7c | 2498 | return; |
c0a2216e | 2499 | } |
82f73884 | 2500 | |
d7e15655 | 2501 | if (magic_null_ptid == inferior_ptid) |
c0a2216e PA |
2502 | { |
2503 | /* inferior_ptid is not set yet. This can happen with the | |
2504 | vRun -> remote_wait,"TAAthread:" path if the stub | |
2505 | doesn't support qC. This is the first stop reported | |
2506 | after an attach, so this is the main thread. Update the | |
2507 | ptid in the thread list. */ | |
5b6d1e4f | 2508 | thread_change_ptid (this, inferior_ptid, currthread); |
82f73884 | 2509 | return; |
c0a2216e | 2510 | } |
82f73884 | 2511 | |
29c87f7f PA |
2512 | /* When connecting to a target remote, or to a target |
2513 | extended-remote which already was debugging an inferior, we | |
2514 | may not know about it yet. Add it before adding its child | |
2515 | thread, so notifications are emitted in a sensible order. */ | |
5b6d1e4f | 2516 | if (find_inferior_pid (this, currthread.pid ()) == NULL) |
49c62f2e PA |
2517 | { |
2518 | struct remote_state *rs = get_remote_state (); | |
9ab8741a | 2519 | bool fake_pid_p = !remote_multi_process_p (rs); |
49c62f2e PA |
2520 | |
2521 | inf = remote_add_inferior (fake_pid_p, | |
e99b03dc | 2522 | currthread.pid (), -1, 1); |
49c62f2e | 2523 | } |
29c87f7f | 2524 | |
82f73884 | 2525 | /* This is really a new thread. Add it. */ |
00431a78 PA |
2526 | thread_info *new_thr |
2527 | = remote_add_thread (currthread, running, executing); | |
1941c569 PA |
2528 | |
2529 | /* If we found a new inferior, let the common code do whatever | |
2530 | it needs to with it (e.g., read shared libraries, insert | |
b7ea362b PA |
2531 | breakpoints), unless we're just setting up an all-stop |
2532 | connection. */ | |
1941c569 | 2533 | if (inf != NULL) |
b7ea362b PA |
2534 | { |
2535 | struct remote_state *rs = get_remote_state (); | |
2536 | ||
6efcd9a8 | 2537 | if (!rs->starting_up) |
00431a78 | 2538 | notice_new_inferior (new_thr, executing, 0); |
b7ea362b | 2539 | } |
c0a2216e | 2540 | } |
c906108c SS |
2541 | } |
2542 | ||
85ad3aaf | 2543 | /* Return THREAD's private thread data, creating it if necessary. */ |
dc146f7c | 2544 | |
7aabaf9d SM |
2545 | static remote_thread_info * |
2546 | get_remote_thread_info (thread_info *thread) | |
dc146f7c | 2547 | { |
85ad3aaf | 2548 | gdb_assert (thread != NULL); |
dc146f7c | 2549 | |
85ad3aaf | 2550 | if (thread->priv == NULL) |
7aabaf9d | 2551 | thread->priv.reset (new remote_thread_info); |
dc146f7c | 2552 | |
7aabaf9d | 2553 | return static_cast<remote_thread_info *> (thread->priv.get ()); |
85ad3aaf PA |
2554 | } |
2555 | ||
5b6d1e4f PA |
2556 | /* Return PTID's private thread data, creating it if necessary. */ |
2557 | ||
7aabaf9d | 2558 | static remote_thread_info * |
5b6d1e4f | 2559 | get_remote_thread_info (remote_target *target, ptid_t ptid) |
85ad3aaf | 2560 | { |
5b6d1e4f | 2561 | thread_info *thr = find_thread_ptid (target, ptid); |
00431a78 | 2562 | return get_remote_thread_info (thr); |
dc146f7c VP |
2563 | } |
2564 | ||
74531fed PA |
2565 | /* Call this function as a result of |
2566 | 1) A halt indication (T packet) containing a thread id | |
2567 | 2) A direct query of currthread | |
0df8b418 | 2568 | 3) Successful execution of set thread */ |
74531fed PA |
2569 | |
2570 | static void | |
47f8a51d | 2571 | record_currthread (struct remote_state *rs, ptid_t currthread) |
74531fed | 2572 | { |
47f8a51d | 2573 | rs->general_thread = currthread; |
74531fed PA |
2574 | } |
2575 | ||
89be2091 DJ |
2576 | /* If 'QPassSignals' is supported, tell the remote stub what signals |
2577 | it can simply pass through to the inferior without reporting. */ | |
2578 | ||
f6ac5f3d | 2579 | void |
adc6a863 | 2580 | remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals) |
89be2091 | 2581 | { |
4082afcc | 2582 | if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE) |
89be2091 DJ |
2583 | { |
2584 | char *pass_packet, *p; | |
adc6a863 | 2585 | int count = 0; |
747dc59d | 2586 | struct remote_state *rs = get_remote_state (); |
89be2091 | 2587 | |
adc6a863 PA |
2588 | gdb_assert (pass_signals.size () < 256); |
2589 | for (size_t i = 0; i < pass_signals.size (); i++) | |
89be2091 | 2590 | { |
2455069d | 2591 | if (pass_signals[i]) |
89be2091 DJ |
2592 | count++; |
2593 | } | |
224c3ddb | 2594 | pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1); |
89be2091 DJ |
2595 | strcpy (pass_packet, "QPassSignals:"); |
2596 | p = pass_packet + strlen (pass_packet); | |
adc6a863 | 2597 | for (size_t i = 0; i < pass_signals.size (); i++) |
89be2091 | 2598 | { |
2455069d | 2599 | if (pass_signals[i]) |
89be2091 DJ |
2600 | { |
2601 | if (i >= 16) | |
2602 | *p++ = tohex (i >> 4); | |
2603 | *p++ = tohex (i & 15); | |
2604 | if (count) | |
2605 | *p++ = ';'; | |
2606 | else | |
2607 | break; | |
2608 | count--; | |
2609 | } | |
2610 | } | |
2611 | *p = 0; | |
747dc59d | 2612 | if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet)) |
89be2091 | 2613 | { |
89be2091 | 2614 | putpkt (pass_packet); |
8d64371b | 2615 | getpkt (&rs->buf, 0); |
8dc5b319 | 2616 | packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]); |
747dc59d TT |
2617 | if (rs->last_pass_packet) |
2618 | xfree (rs->last_pass_packet); | |
2619 | rs->last_pass_packet = pass_packet; | |
89be2091 DJ |
2620 | } |
2621 | else | |
2622 | xfree (pass_packet); | |
2623 | } | |
2624 | } | |
2625 | ||
82075af2 JS |
2626 | /* If 'QCatchSyscalls' is supported, tell the remote stub |
2627 | to report syscalls to GDB. */ | |
2628 | ||
f6ac5f3d PA |
2629 | int |
2630 | remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count, | |
2631 | gdb::array_view<const int> syscall_counts) | |
82075af2 | 2632 | { |
b80406ac | 2633 | const char *catch_packet; |
82075af2 JS |
2634 | enum packet_result result; |
2635 | int n_sysno = 0; | |
2636 | ||
2637 | if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE) | |
2638 | { | |
2639 | /* Not supported. */ | |
2640 | return 1; | |
2641 | } | |
2642 | ||
649a140c | 2643 | if (needed && any_count == 0) |
82075af2 | 2644 | { |
649a140c PA |
2645 | /* Count how many syscalls are to be caught. */ |
2646 | for (size_t i = 0; i < syscall_counts.size (); i++) | |
82075af2 | 2647 | { |
649a140c | 2648 | if (syscall_counts[i] != 0) |
82075af2 JS |
2649 | n_sysno++; |
2650 | } | |
2651 | } | |
2652 | ||
2653 | if (remote_debug) | |
2654 | { | |
2655 | fprintf_unfiltered (gdb_stdlog, | |
2656 | "remote_set_syscall_catchpoint " | |
2657 | "pid %d needed %d any_count %d n_sysno %d\n", | |
2658 | pid, needed, any_count, n_sysno); | |
2659 | } | |
2660 | ||
1b81856f | 2661 | std::string built_packet; |
82075af2 JS |
2662 | if (needed) |
2663 | { | |
2664 | /* Prepare a packet with the sysno list, assuming max 8+1 | |
2665 | characters for a sysno. If the resulting packet size is too | |
2666 | big, fallback on the non-selective packet. */ | |
2667 | const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1; | |
1b81856f PA |
2668 | built_packet.reserve (maxpktsz); |
2669 | built_packet = "QCatchSyscalls:1"; | |
649a140c | 2670 | if (any_count == 0) |
82075af2 | 2671 | { |
649a140c PA |
2672 | /* Add in each syscall to be caught. */ |
2673 | for (size_t i = 0; i < syscall_counts.size (); i++) | |
82075af2 | 2674 | { |
649a140c PA |
2675 | if (syscall_counts[i] != 0) |
2676 | string_appendf (built_packet, ";%zx", i); | |
82075af2 JS |
2677 | } |
2678 | } | |
1b81856f | 2679 | if (built_packet.size () > get_remote_packet_size ()) |
82075af2 JS |
2680 | { |
2681 | /* catch_packet too big. Fallback to less efficient | |
2682 | non selective mode, with GDB doing the filtering. */ | |
b80406ac | 2683 | catch_packet = "QCatchSyscalls:1"; |
82075af2 | 2684 | } |
b80406ac | 2685 | else |
1b81856f | 2686 | catch_packet = built_packet.c_str (); |
82075af2 JS |
2687 | } |
2688 | else | |
b80406ac | 2689 | catch_packet = "QCatchSyscalls:0"; |
82075af2 | 2690 | |
b80406ac | 2691 | struct remote_state *rs = get_remote_state (); |
82075af2 | 2692 | |
b80406ac | 2693 | putpkt (catch_packet); |
8d64371b | 2694 | getpkt (&rs->buf, 0); |
b80406ac TT |
2695 | result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]); |
2696 | if (result == PACKET_OK) | |
2697 | return 0; | |
2698 | else | |
2699 | return -1; | |
82075af2 JS |
2700 | } |
2701 | ||
9b224c5e PA |
2702 | /* If 'QProgramSignals' is supported, tell the remote stub what |
2703 | signals it should pass through to the inferior when detaching. */ | |
2704 | ||
f6ac5f3d | 2705 | void |
adc6a863 | 2706 | remote_target::program_signals (gdb::array_view<const unsigned char> signals) |
9b224c5e | 2707 | { |
4082afcc | 2708 | if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE) |
9b224c5e PA |
2709 | { |
2710 | char *packet, *p; | |
adc6a863 | 2711 | int count = 0; |
5e4a05c4 | 2712 | struct remote_state *rs = get_remote_state (); |
9b224c5e | 2713 | |
adc6a863 PA |
2714 | gdb_assert (signals.size () < 256); |
2715 | for (size_t i = 0; i < signals.size (); i++) | |
9b224c5e PA |
2716 | { |
2717 | if (signals[i]) | |
2718 | count++; | |
2719 | } | |
224c3ddb | 2720 | packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1); |
9b224c5e PA |
2721 | strcpy (packet, "QProgramSignals:"); |
2722 | p = packet + strlen (packet); | |
adc6a863 | 2723 | for (size_t i = 0; i < signals.size (); i++) |
9b224c5e PA |
2724 | { |
2725 | if (signal_pass_state (i)) | |
2726 | { | |
2727 | if (i >= 16) | |
2728 | *p++ = tohex (i >> 4); | |
2729 | *p++ = tohex (i & 15); | |
2730 | if (count) | |
2731 | *p++ = ';'; | |
2732 | else | |
2733 | break; | |
2734 | count--; | |
2735 | } | |
2736 | } | |
2737 | *p = 0; | |
5e4a05c4 TT |
2738 | if (!rs->last_program_signals_packet |
2739 | || strcmp (rs->last_program_signals_packet, packet) != 0) | |
9b224c5e | 2740 | { |
9b224c5e | 2741 | putpkt (packet); |
8d64371b | 2742 | getpkt (&rs->buf, 0); |
8dc5b319 | 2743 | packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]); |
5e4a05c4 TT |
2744 | xfree (rs->last_program_signals_packet); |
2745 | rs->last_program_signals_packet = packet; | |
9b224c5e PA |
2746 | } |
2747 | else | |
2748 | xfree (packet); | |
2749 | } | |
2750 | } | |
2751 | ||
79d7f229 PA |
2752 | /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is |
2753 | MINUS_ONE_PTID, set the thread to -1, so the stub returns the | |
2754 | thread. If GEN is set, set the general thread, if not, then set | |
2755 | the step/continue thread. */ | |
6b8edb51 PA |
2756 | void |
2757 | remote_target::set_thread (ptid_t ptid, int gen) | |
c906108c | 2758 | { |
d01949b6 | 2759 | struct remote_state *rs = get_remote_state (); |
47f8a51d | 2760 | ptid_t state = gen ? rs->general_thread : rs->continue_thread; |
8d64371b TT |
2761 | char *buf = rs->buf.data (); |
2762 | char *endbuf = buf + get_remote_packet_size (); | |
c906108c | 2763 | |
d7e15655 | 2764 | if (state == ptid) |
c906108c SS |
2765 | return; |
2766 | ||
79d7f229 PA |
2767 | *buf++ = 'H'; |
2768 | *buf++ = gen ? 'g' : 'c'; | |
d7e15655 | 2769 | if (ptid == magic_null_ptid) |
79d7f229 | 2770 | xsnprintf (buf, endbuf - buf, "0"); |
d7e15655 | 2771 | else if (ptid == any_thread_ptid) |
79d7f229 | 2772 | xsnprintf (buf, endbuf - buf, "0"); |
d7e15655 | 2773 | else if (ptid == minus_one_ptid) |
79d7f229 PA |
2774 | xsnprintf (buf, endbuf - buf, "-1"); |
2775 | else | |
82f73884 | 2776 | write_ptid (buf, endbuf, ptid); |
79d7f229 | 2777 | putpkt (rs->buf); |
8d64371b | 2778 | getpkt (&rs->buf, 0); |
c906108c | 2779 | if (gen) |
47f8a51d | 2780 | rs->general_thread = ptid; |
c906108c | 2781 | else |
47f8a51d | 2782 | rs->continue_thread = ptid; |
c906108c | 2783 | } |
79d7f229 | 2784 | |
6b8edb51 PA |
2785 | void |
2786 | remote_target::set_general_thread (ptid_t ptid) | |
79d7f229 PA |
2787 | { |
2788 | set_thread (ptid, 1); | |
2789 | } | |
2790 | ||
6b8edb51 PA |
2791 | void |
2792 | remote_target::set_continue_thread (ptid_t ptid) | |
79d7f229 PA |
2793 | { |
2794 | set_thread (ptid, 0); | |
2795 | } | |
2796 | ||
3c9c4b83 PA |
2797 | /* Change the remote current process. Which thread within the process |
2798 | ends up selected isn't important, as long as it is the same process | |
2799 | as what INFERIOR_PTID points to. | |
2800 | ||
2801 | This comes from that fact that there is no explicit notion of | |
2802 | "selected process" in the protocol. The selected process for | |
2803 | general operations is the process the selected general thread | |
2804 | belongs to. */ | |
2805 | ||
6b8edb51 PA |
2806 | void |
2807 | remote_target::set_general_process () | |
3c9c4b83 PA |
2808 | { |
2809 | struct remote_state *rs = get_remote_state (); | |
2810 | ||
2811 | /* If the remote can't handle multiple processes, don't bother. */ | |
8020350c | 2812 | if (!remote_multi_process_p (rs)) |
3c9c4b83 PA |
2813 | return; |
2814 | ||
2815 | /* We only need to change the remote current thread if it's pointing | |
2816 | at some other process. */ | |
e99b03dc | 2817 | if (rs->general_thread.pid () != inferior_ptid.pid ()) |
3c9c4b83 PA |
2818 | set_general_thread (inferior_ptid); |
2819 | } | |
2820 | ||
c906108c | 2821 | \f |
7d1a114c PA |
2822 | /* Return nonzero if this is the main thread that we made up ourselves |
2823 | to model non-threaded targets as single-threaded. */ | |
c906108c SS |
2824 | |
2825 | static int | |
f6ac5f3d | 2826 | remote_thread_always_alive (ptid_t ptid) |
c906108c | 2827 | { |
d7e15655 | 2828 | if (ptid == magic_null_ptid) |
c0a2216e PA |
2829 | /* The main thread is always alive. */ |
2830 | return 1; | |
2831 | ||
e38504b3 | 2832 | if (ptid.pid () != 0 && ptid.lwp () == 0) |
c0a2216e PA |
2833 | /* The main thread is always alive. This can happen after a |
2834 | vAttach, if the remote side doesn't support | |
2835 | multi-threading. */ | |
2836 | return 1; | |
2837 | ||
7d1a114c PA |
2838 | return 0; |
2839 | } | |
2840 | ||
2841 | /* Return nonzero if the thread PTID is still alive on the remote | |
2842 | system. */ | |
2843 | ||
57810aa7 | 2844 | bool |
f6ac5f3d | 2845 | remote_target::thread_alive (ptid_t ptid) |
7d1a114c PA |
2846 | { |
2847 | struct remote_state *rs = get_remote_state (); | |
2848 | char *p, *endp; | |
2849 | ||
2850 | /* Check if this is a thread that we made up ourselves to model | |
2851 | non-threaded targets as single-threaded. */ | |
f6ac5f3d | 2852 | if (remote_thread_always_alive (ptid)) |
7d1a114c PA |
2853 | return 1; |
2854 | ||
8d64371b TT |
2855 | p = rs->buf.data (); |
2856 | endp = p + get_remote_packet_size (); | |
82f73884 PA |
2857 | |
2858 | *p++ = 'T'; | |
2859 | write_ptid (p, endp, ptid); | |
2860 | ||
2e9f7625 | 2861 | putpkt (rs->buf); |
8d64371b | 2862 | getpkt (&rs->buf, 0); |
2e9f7625 | 2863 | return (rs->buf[0] == 'O' && rs->buf[1] == 'K'); |
c906108c SS |
2864 | } |
2865 | ||
79efa585 SM |
2866 | /* Return a pointer to a thread name if we know it and NULL otherwise. |
2867 | The thread_info object owns the memory for the name. */ | |
2868 | ||
f6ac5f3d PA |
2869 | const char * |
2870 | remote_target::thread_name (struct thread_info *info) | |
79efa585 SM |
2871 | { |
2872 | if (info->priv != NULL) | |
a9334058 SM |
2873 | { |
2874 | const std::string &name = get_remote_thread_info (info)->name; | |
2875 | return !name.empty () ? name.c_str () : NULL; | |
2876 | } | |
79efa585 SM |
2877 | |
2878 | return NULL; | |
2879 | } | |
2880 | ||
c906108c SS |
2881 | /* About these extended threadlist and threadinfo packets. They are |
2882 | variable length packets but, the fields within them are often fixed | |
30baf67b | 2883 | length. They are redundant enough to send over UDP as is the |
c906108c SS |
2884 | remote protocol in general. There is a matching unit test module |
2885 | in libstub. */ | |
2886 | ||
23860348 | 2887 | /* WARNING: This threadref data structure comes from the remote O.S., |
0df8b418 | 2888 | libstub protocol encoding, and remote.c. It is not particularly |
23860348 | 2889 | changable. */ |
cce74817 JM |
2890 | |
2891 | /* Right now, the internal structure is int. We want it to be bigger. | |
0df8b418 | 2892 | Plan to fix this. */ |
cce74817 | 2893 | |
23860348 | 2894 | typedef int gdb_threadref; /* Internal GDB thread reference. */ |
cce74817 | 2895 | |
9d1f7ab2 | 2896 | /* gdb_ext_thread_info is an internal GDB data structure which is |
cfde0993 | 2897 | equivalent to the reply of the remote threadinfo packet. */ |
cce74817 JM |
2898 | |
2899 | struct gdb_ext_thread_info | |
c5aa993b | 2900 | { |
23860348 | 2901 | threadref threadid; /* External form of thread reference. */ |
2bc416ba | 2902 | int active; /* Has state interesting to GDB? |
23860348 | 2903 | regs, stack. */ |
2bc416ba | 2904 | char display[256]; /* Brief state display, name, |
cedea757 | 2905 | blocked/suspended. */ |
23860348 | 2906 | char shortname[32]; /* To be used to name threads. */ |
2bc416ba | 2907 | char more_display[256]; /* Long info, statistics, queue depth, |
23860348 | 2908 | whatever. */ |
c5aa993b | 2909 | }; |
cce74817 JM |
2910 | |
2911 | /* The volume of remote transfers can be limited by submitting | |
2912 | a mask containing bits specifying the desired information. | |
2913 | Use a union of these values as the 'selection' parameter to | |
0df8b418 | 2914 | get_thread_info. FIXME: Make these TAG names more thread specific. */ |
cce74817 JM |
2915 | |
2916 | #define TAG_THREADID 1 | |
2917 | #define TAG_EXISTS 2 | |
2918 | #define TAG_DISPLAY 4 | |
2919 | #define TAG_THREADNAME 8 | |
c5aa993b | 2920 | #define TAG_MOREDISPLAY 16 |
cce74817 | 2921 | |
23860348 | 2922 | #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2) |
c906108c | 2923 | |
a14ed312 | 2924 | static char *unpack_nibble (char *buf, int *val); |
cce74817 | 2925 | |
a14ed312 | 2926 | static char *unpack_byte (char *buf, int *value); |
cce74817 | 2927 | |
a14ed312 | 2928 | static char *pack_int (char *buf, int value); |
cce74817 | 2929 | |
a14ed312 | 2930 | static char *unpack_int (char *buf, int *value); |
cce74817 | 2931 | |
a14ed312 | 2932 | static char *unpack_string (char *src, char *dest, int length); |
cce74817 | 2933 | |
23860348 | 2934 | static char *pack_threadid (char *pkt, threadref *id); |
cce74817 | 2935 | |
23860348 | 2936 | static char *unpack_threadid (char *inbuf, threadref *id); |
cce74817 | 2937 | |
23860348 | 2938 | void int_to_threadref (threadref *id, int value); |
cce74817 | 2939 | |
23860348 | 2940 | static int threadref_to_int (threadref *ref); |
cce74817 | 2941 | |
23860348 | 2942 | static void copy_threadref (threadref *dest, threadref *src); |
cce74817 | 2943 | |
23860348 | 2944 | static int threadmatch (threadref *dest, threadref *src); |
cce74817 | 2945 | |
2bc416ba | 2946 | static char *pack_threadinfo_request (char *pkt, int mode, |
23860348 | 2947 | threadref *id); |
cce74817 | 2948 | |
a14ed312 KB |
2949 | static char *pack_threadlist_request (char *pkt, int startflag, |
2950 | int threadcount, | |
23860348 | 2951 | threadref *nextthread); |
cce74817 | 2952 | |
23860348 | 2953 | static int remote_newthread_step (threadref *ref, void *context); |
cce74817 | 2954 | |
82f73884 PA |
2955 | |
2956 | /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the | |
2957 | buffer we're allowed to write to. Returns | |
2958 | BUF+CHARACTERS_WRITTEN. */ | |
2959 | ||
6b8edb51 PA |
2960 | char * |
2961 | remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid) | |
82f73884 PA |
2962 | { |
2963 | int pid, tid; | |
2964 | struct remote_state *rs = get_remote_state (); | |
2965 | ||
2966 | if (remote_multi_process_p (rs)) | |
2967 | { | |
e99b03dc | 2968 | pid = ptid.pid (); |
82f73884 PA |
2969 | if (pid < 0) |
2970 | buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid); | |
2971 | else | |
2972 | buf += xsnprintf (buf, endbuf - buf, "p%x.", pid); | |
2973 | } | |
e38504b3 | 2974 | tid = ptid.lwp (); |
82f73884 PA |
2975 | if (tid < 0) |
2976 | buf += xsnprintf (buf, endbuf - buf, "-%x", -tid); | |
2977 | else | |
2978 | buf += xsnprintf (buf, endbuf - buf, "%x", tid); | |
2979 | ||
2980 | return buf; | |
2981 | } | |
2982 | ||
256642e8 PA |
2983 | /* Extract a PTID from BUF. If non-null, OBUF is set to one past the |
2984 | last parsed char. Returns null_ptid if no thread id is found, and | |
2985 | throws an error if the thread id has an invalid format. */ | |
82f73884 PA |
2986 | |
2987 | static ptid_t | |
256642e8 | 2988 | read_ptid (const char *buf, const char **obuf) |
82f73884 | 2989 | { |
256642e8 PA |
2990 | const char *p = buf; |
2991 | const char *pp; | |
82f73884 | 2992 | ULONGEST pid = 0, tid = 0; |
82f73884 PA |
2993 | |
2994 | if (*p == 'p') | |
2995 | { | |
2996 | /* Multi-process ptid. */ | |
2997 | pp = unpack_varlen_hex (p + 1, &pid); | |
2998 | if (*pp != '.') | |
b37520b6 | 2999 | error (_("invalid remote ptid: %s"), p); |
82f73884 PA |
3000 | |
3001 | p = pp; | |
3002 | pp = unpack_varlen_hex (p + 1, &tid); | |
3003 | if (obuf) | |
3004 | *obuf = pp; | |
fd79271b | 3005 | return ptid_t (pid, tid, 0); |
82f73884 PA |
3006 | } |
3007 | ||
3008 | /* No multi-process. Just a tid. */ | |
3009 | pp = unpack_varlen_hex (p, &tid); | |
3010 | ||
c9f35b34 KB |
3011 | /* Return null_ptid when no thread id is found. */ |
3012 | if (p == pp) | |
3013 | { | |
3014 | if (obuf) | |
3015 | *obuf = pp; | |
3016 | return null_ptid; | |
3017 | } | |
3018 | ||
82f73884 | 3019 | /* Since the stub is not sending a process id, then default to |
ca19bf23 PA |
3020 | what's in inferior_ptid, unless it's null at this point. If so, |
3021 | then since there's no way to know the pid of the reported | |
3022 | threads, use the magic number. */ | |
d7e15655 | 3023 | if (inferior_ptid == null_ptid) |
e99b03dc | 3024 | pid = magic_null_ptid.pid (); |
ca19bf23 | 3025 | else |
e99b03dc | 3026 | pid = inferior_ptid.pid (); |
82f73884 PA |
3027 | |
3028 | if (obuf) | |
3029 | *obuf = pp; | |
fd79271b | 3030 | return ptid_t (pid, tid, 0); |
82f73884 PA |
3031 | } |
3032 | ||
c906108c | 3033 | static int |
fba45db2 | 3034 | stubhex (int ch) |
c906108c SS |
3035 | { |
3036 | if (ch >= 'a' && ch <= 'f') | |
3037 | return ch - 'a' + 10; | |
3038 | if (ch >= '0' && ch <= '9') | |
3039 | return ch - '0'; | |
3040 | if (ch >= 'A' && ch <= 'F') | |
3041 | return ch - 'A' + 10; | |
3042 | return -1; | |
3043 | } | |
3044 | ||
3045 | static int | |
fba45db2 | 3046 | stub_unpack_int (char *buff, int fieldlength) |
c906108c SS |
3047 | { |
3048 | int nibble; | |
3049 | int retval = 0; | |
3050 | ||
3051 | while (fieldlength) | |
3052 | { | |
3053 | nibble = stubhex (*buff++); | |
3054 | retval |= nibble; | |
3055 | fieldlength--; | |
3056 | if (fieldlength) | |
3057 | retval = retval << 4; | |
3058 | } | |
3059 | return retval; | |
3060 | } | |
3061 | ||
c906108c | 3062 | static char * |
fba45db2 | 3063 | unpack_nibble (char *buf, int *val) |
c906108c | 3064 | { |
b7589f7d | 3065 | *val = fromhex (*buf++); |
c906108c SS |
3066 | return buf; |
3067 | } | |
3068 | ||
c906108c | 3069 | static char * |
fba45db2 | 3070 | unpack_byte (char *buf, int *value) |
c906108c SS |
3071 | { |
3072 | *value = stub_unpack_int (buf, 2); | |
3073 | return buf + 2; | |
3074 | } | |
3075 | ||
3076 | static char * | |
fba45db2 | 3077 | pack_int (char *buf, int value) |
c906108c SS |
3078 | { |
3079 | buf = pack_hex_byte (buf, (value >> 24) & 0xff); | |
3080 | buf = pack_hex_byte (buf, (value >> 16) & 0xff); | |
3081 | buf = pack_hex_byte (buf, (value >> 8) & 0x0ff); | |
3082 | buf = pack_hex_byte (buf, (value & 0xff)); | |
3083 | return buf; | |
3084 | } | |
3085 | ||
3086 | static char * | |
fba45db2 | 3087 | unpack_int (char *buf, int *value) |
c906108c SS |
3088 | { |
3089 | *value = stub_unpack_int (buf, 8); | |
3090 | return buf + 8; | |
3091 | } | |
3092 | ||
23860348 | 3093 | #if 0 /* Currently unused, uncomment when needed. */ |
a14ed312 | 3094 | static char *pack_string (char *pkt, char *string); |
c906108c SS |
3095 | |
3096 | static char * | |
fba45db2 | 3097 | pack_string (char *pkt, char *string) |
c906108c SS |
3098 | { |
3099 | char ch; | |
3100 | int len; | |
3101 | ||
3102 | len = strlen (string); | |
3103 | if (len > 200) | |
23860348 | 3104 | len = 200; /* Bigger than most GDB packets, junk??? */ |
c906108c SS |
3105 | pkt = pack_hex_byte (pkt, len); |
3106 | while (len-- > 0) | |
3107 | { | |
3108 | ch = *string++; | |
3109 | if ((ch == '\0') || (ch == '#')) | |
23860348 | 3110 | ch = '*'; /* Protect encapsulation. */ |
c906108c SS |
3111 | *pkt++ = ch; |
3112 | } | |
3113 | return pkt; | |
3114 | } | |
3115 | #endif /* 0 (unused) */ | |
3116 | ||
3117 | static char * | |
fba45db2 | 3118 | unpack_string (char *src, char *dest, int length) |
c906108c SS |
3119 | { |
3120 | while (length--) | |
3121 | *dest++ = *src++; | |
3122 | *dest = '\0'; | |
3123 | return src; | |
3124 | } | |
3125 | ||
3126 | static char * | |
fba45db2 | 3127 | pack_threadid (char *pkt, threadref *id) |
c906108c SS |
3128 | { |
3129 | char *limit; | |
3130 | unsigned char *altid; | |
3131 | ||
3132 | altid = (unsigned char *) id; | |
3133 | limit = pkt + BUF_THREAD_ID_SIZE; | |
3134 | while (pkt < limit) | |
3135 | pkt = pack_hex_byte (pkt, *altid++); | |
3136 | return pkt; | |
3137 | } | |
3138 | ||
3139 | ||
3140 | static char * | |
fba45db2 | 3141 | unpack_threadid (char *inbuf, threadref *id) |
c906108c SS |
3142 | { |
3143 | char *altref; | |
3144 | char *limit = inbuf + BUF_THREAD_ID_SIZE; | |
3145 | int x, y; | |
3146 | ||
3147 | altref = (char *) id; | |
3148 | ||
3149 | while (inbuf < limit) | |
3150 | { | |
3151 | x = stubhex (*inbuf++); | |
3152 | y = stubhex (*inbuf++); | |
3153 | *altref++ = (x << 4) | y; | |
3154 | } | |
3155 | return inbuf; | |
3156 | } | |
3157 | ||
3158 | /* Externally, threadrefs are 64 bits but internally, they are still | |
0df8b418 | 3159 | ints. This is due to a mismatch of specifications. We would like |
c906108c SS |
3160 | to use 64bit thread references internally. This is an adapter |
3161 | function. */ | |
3162 | ||
3163 | void | |
fba45db2 | 3164 | int_to_threadref (threadref *id, int value) |
c906108c SS |
3165 | { |
3166 | unsigned char *scan; | |
3167 | ||
3168 | scan = (unsigned char *) id; | |
3169 | { | |
3170 | int i = 4; | |
3171 | while (i--) | |
3172 | *scan++ = 0; | |
3173 | } | |
3174 | *scan++ = (value >> 24) & 0xff; | |
3175 | *scan++ = (value >> 16) & 0xff; | |
3176 | *scan++ = (value >> 8) & 0xff; | |
3177 | *scan++ = (value & 0xff); | |
3178 | } | |
3179 | ||
3180 | static int | |
fba45db2 | 3181 | threadref_to_int (threadref *ref) |
c906108c SS |
3182 | { |
3183 | int i, value = 0; | |
3184 | unsigned char *scan; | |
3185 | ||
cfd77fa1 | 3186 | scan = *ref; |
c906108c SS |
3187 | scan += 4; |
3188 | i = 4; | |
3189 | while (i-- > 0) | |
3190 | value = (value << 8) | ((*scan++) & 0xff); | |
3191 | return value; | |
3192 | } | |
3193 | ||
3194 | static void | |
fba45db2 | 3195 | copy_threadref (threadref *dest, threadref *src) |
c906108c SS |
3196 | { |
3197 | int i; | |
3198 | unsigned char *csrc, *cdest; | |
3199 | ||
3200 | csrc = (unsigned char *) src; | |
3201 | cdest = (unsigned char *) dest; | |
3202 | i = 8; | |
3203 | while (i--) | |
3204 | *cdest++ = *csrc++; | |
3205 | } | |
3206 | ||
3207 | static int | |
fba45db2 | 3208 | threadmatch (threadref *dest, threadref *src) |
c906108c | 3209 | { |
23860348 | 3210 | /* Things are broken right now, so just assume we got a match. */ |
c906108c SS |
3211 | #if 0 |
3212 | unsigned char *srcp, *destp; | |
3213 | int i, result; | |
3214 | srcp = (char *) src; | |
3215 | destp = (char *) dest; | |
3216 | ||
3217 | result = 1; | |
3218 | while (i-- > 0) | |
3219 | result &= (*srcp++ == *destp++) ? 1 : 0; | |
3220 | return result; | |
3221 | #endif | |
3222 | return 1; | |
3223 | } | |
3224 | ||
3225 | /* | |
c5aa993b JM |
3226 | threadid:1, # always request threadid |
3227 | context_exists:2, | |
3228 | display:4, | |
3229 | unique_name:8, | |
3230 | more_display:16 | |
3231 | */ | |
c906108c SS |
3232 | |
3233 | /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */ | |
3234 | ||
3235 | static char * | |
fba45db2 | 3236 | pack_threadinfo_request (char *pkt, int mode, threadref *id) |
c906108c | 3237 | { |
23860348 MS |
3238 | *pkt++ = 'q'; /* Info Query */ |
3239 | *pkt++ = 'P'; /* process or thread info */ | |
3240 | pkt = pack_int (pkt, mode); /* mode */ | |
c906108c | 3241 | pkt = pack_threadid (pkt, id); /* threadid */ |
23860348 | 3242 | *pkt = '\0'; /* terminate */ |
c906108c SS |
3243 | return pkt; |
3244 | } | |
3245 | ||
23860348 | 3246 | /* These values tag the fields in a thread info response packet. */ |
c906108c | 3247 | /* Tagging the fields allows us to request specific fields and to |
23860348 | 3248 | add more fields as time goes by. */ |
c906108c | 3249 | |
23860348 | 3250 | #define TAG_THREADID 1 /* Echo the thread identifier. */ |
c5aa993b | 3251 | #define TAG_EXISTS 2 /* Is this process defined enough to |
23860348 | 3252 | fetch registers and its stack? */ |
c5aa993b | 3253 | #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */ |
23860348 | 3254 | #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */ |
802188a7 | 3255 | #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about |
23860348 | 3256 | the process. */ |
c906108c | 3257 | |
6b8edb51 PA |
3258 | int |
3259 | remote_target::remote_unpack_thread_info_response (char *pkt, | |
3260 | threadref *expectedref, | |
3261 | gdb_ext_thread_info *info) | |
c906108c | 3262 | { |
d01949b6 | 3263 | struct remote_state *rs = get_remote_state (); |
c906108c | 3264 | int mask, length; |
cfd77fa1 | 3265 | int tag; |
c906108c | 3266 | threadref ref; |
8d64371b | 3267 | char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */ |
c906108c SS |
3268 | int retval = 1; |
3269 | ||
23860348 | 3270 | /* info->threadid = 0; FIXME: implement zero_threadref. */ |
c906108c SS |
3271 | info->active = 0; |
3272 | info->display[0] = '\0'; | |
3273 | info->shortname[0] = '\0'; | |
3274 | info->more_display[0] = '\0'; | |
3275 | ||
23860348 MS |
3276 | /* Assume the characters indicating the packet type have been |
3277 | stripped. */ | |
c906108c SS |
3278 | pkt = unpack_int (pkt, &mask); /* arg mask */ |
3279 | pkt = unpack_threadid (pkt, &ref); | |
3280 | ||
3281 | if (mask == 0) | |
8a3fe4f8 | 3282 | warning (_("Incomplete response to threadinfo request.")); |
c906108c | 3283 | if (!threadmatch (&ref, expectedref)) |
23860348 | 3284 | { /* This is an answer to a different request. */ |
8a3fe4f8 | 3285 | warning (_("ERROR RMT Thread info mismatch.")); |
c906108c SS |
3286 | return 0; |
3287 | } | |
3288 | copy_threadref (&info->threadid, &ref); | |
3289 | ||
405feb71 | 3290 | /* Loop on tagged fields , try to bail if something goes wrong. */ |
c906108c | 3291 | |
23860348 MS |
3292 | /* Packets are terminated with nulls. */ |
3293 | while ((pkt < limit) && mask && *pkt) | |
c906108c SS |
3294 | { |
3295 | pkt = unpack_int (pkt, &tag); /* tag */ | |
23860348 MS |
3296 | pkt = unpack_byte (pkt, &length); /* length */ |
3297 | if (!(tag & mask)) /* Tags out of synch with mask. */ | |
c906108c | 3298 | { |
8a3fe4f8 | 3299 | warning (_("ERROR RMT: threadinfo tag mismatch.")); |
c906108c SS |
3300 | retval = 0; |
3301 | break; | |
3302 | } | |
3303 | if (tag == TAG_THREADID) | |
3304 | { | |
3305 | if (length != 16) | |
3306 | { | |
8a3fe4f8 | 3307 | warning (_("ERROR RMT: length of threadid is not 16.")); |
c906108c SS |
3308 | retval = 0; |
3309 | break; | |
3310 | } | |
3311 | pkt = unpack_threadid (pkt, &ref); | |
3312 | mask = mask & ~TAG_THREADID; | |
3313 | continue; | |
3314 | } | |
3315 | if (tag == TAG_EXISTS) | |
3316 | { | |
3317 | info->active = stub_unpack_int (pkt, length); | |
3318 | pkt += length; | |
3319 | mask = mask & ~(TAG_EXISTS); | |
3320 | if (length > 8) | |
3321 | { | |
8a3fe4f8 | 3322 | warning (_("ERROR RMT: 'exists' length too long.")); |
c906108c SS |
3323 | retval = 0; |
3324 | break; | |
3325 | } | |
3326 | continue; | |
3327 | } | |
3328 | if (tag == TAG_THREADNAME) | |
3329 | { | |
3330 | pkt = unpack_string (pkt, &info->shortname[0], length); | |
3331 | mask = mask & ~TAG_THREADNAME; | |
3332 | continue; | |
3333 | } | |
3334 | if (tag == TAG_DISPLAY) | |
3335 | { | |
3336 | pkt = unpack_string (pkt, &info->display[0], length); | |
3337 | mask = mask & ~TAG_DISPLAY; | |
3338 | continue; | |
3339 | } | |
3340 | if (tag == TAG_MOREDISPLAY) | |
3341 | { | |
3342 | pkt = unpack_string (pkt, &info->more_display[0], length); | |
3343 | mask = mask & ~TAG_MOREDISPLAY; | |
3344 | continue; | |
3345 | } | |
8a3fe4f8 | 3346 | warning (_("ERROR RMT: unknown thread info tag.")); |
23860348 | 3347 | break; /* Not a tag we know about. */ |
c906108c SS |
3348 | } |
3349 | return retval; | |
3350 | } | |
3351 | ||
6b8edb51 PA |
3352 | int |
3353 | remote_target::remote_get_threadinfo (threadref *threadid, | |
3354 | int fieldset, | |
3355 | gdb_ext_thread_info *info) | |
c906108c | 3356 | { |
d01949b6 | 3357 | struct remote_state *rs = get_remote_state (); |
c906108c | 3358 | int result; |
c906108c | 3359 | |
8d64371b | 3360 | pack_threadinfo_request (rs->buf.data (), fieldset, threadid); |
2e9f7625 | 3361 | putpkt (rs->buf); |
8d64371b | 3362 | getpkt (&rs->buf, 0); |
3084dd77 PA |
3363 | |
3364 | if (rs->buf[0] == '\0') | |
3365 | return 0; | |
3366 | ||
8d64371b | 3367 | result = remote_unpack_thread_info_response (&rs->buf[2], |
23860348 | 3368 | threadid, info); |
c906108c SS |
3369 | return result; |
3370 | } | |
3371 | ||
c906108c SS |
3372 | /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */ |
3373 | ||
3374 | static char * | |
fba45db2 KB |
3375 | pack_threadlist_request (char *pkt, int startflag, int threadcount, |
3376 | threadref *nextthread) | |
c906108c SS |
3377 | { |
3378 | *pkt++ = 'q'; /* info query packet */ | |
3379 | *pkt++ = 'L'; /* Process LIST or threadLIST request */ | |
23860348 | 3380 | pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */ |
c906108c SS |
3381 | pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */ |
3382 | pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */ | |
3383 | *pkt = '\0'; | |
3384 | return pkt; | |
3385 | } | |
3386 | ||
3387 | /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */ | |
3388 | ||
6b8edb51 PA |
3389 | int |
3390 | remote_target::parse_threadlist_response (char *pkt, int result_limit, | |
3391 | threadref *original_echo, | |
3392 | threadref *resultlist, | |
3393 | int *doneflag) | |
c906108c | 3394 | { |
d01949b6 | 3395 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
3396 | char *limit; |
3397 | int count, resultcount, done; | |
3398 | ||
3399 | resultcount = 0; | |
3400 | /* Assume the 'q' and 'M chars have been stripped. */ | |
8d64371b | 3401 | limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE); |
23860348 | 3402 | /* done parse past here */ |
c906108c SS |
3403 | pkt = unpack_byte (pkt, &count); /* count field */ |
3404 | pkt = unpack_nibble (pkt, &done); | |
3405 | /* The first threadid is the argument threadid. */ | |
3406 | pkt = unpack_threadid (pkt, original_echo); /* should match query packet */ | |
3407 | while ((count-- > 0) && (pkt < limit)) | |
3408 | { | |
3409 | pkt = unpack_threadid (pkt, resultlist++); | |
3410 | if (resultcount++ >= result_limit) | |
3411 | break; | |
3412 | } | |
3413 | if (doneflag) | |
3414 | *doneflag = done; | |
3415 | return resultcount; | |
3416 | } | |
3417 | ||
6dc54d91 PA |
3418 | /* Fetch the next batch of threads from the remote. Returns -1 if the |
3419 | qL packet is not supported, 0 on error and 1 on success. */ | |
3420 | ||
6b8edb51 PA |
3421 | int |
3422 | remote_target::remote_get_threadlist (int startflag, threadref *nextthread, | |
3423 | int result_limit, int *done, int *result_count, | |
3424 | threadref *threadlist) | |
c906108c | 3425 | { |
d01949b6 | 3426 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
3427 | int result = 1; |
3428 | ||
405feb71 | 3429 | /* Truncate result limit to be smaller than the packet size. */ |
3e43a32a MS |
3430 | if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) |
3431 | >= get_remote_packet_size ()) | |
ea9c271d | 3432 | result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2; |
c906108c | 3433 | |
8d64371b TT |
3434 | pack_threadlist_request (rs->buf.data (), startflag, result_limit, |
3435 | nextthread); | |
6d820c5c | 3436 | putpkt (rs->buf); |
8d64371b TT |
3437 | getpkt (&rs->buf, 0); |
3438 | if (rs->buf[0] == '\0') | |
6dc54d91 PA |
3439 | { |
3440 | /* Packet not supported. */ | |
3441 | return -1; | |
3442 | } | |
3443 | ||
3444 | *result_count = | |
8d64371b | 3445 | parse_threadlist_response (&rs->buf[2], result_limit, |
6dc54d91 | 3446 | &rs->echo_nextthread, threadlist, done); |
c906108c | 3447 | |
0d031856 | 3448 | if (!threadmatch (&rs->echo_nextthread, nextthread)) |
c906108c | 3449 | { |
23860348 | 3450 | /* FIXME: This is a good reason to drop the packet. */ |
405feb71 TV |
3451 | /* Possibly, there is a duplicate response. */ |
3452 | /* Possibilities : | |
c906108c SS |
3453 | retransmit immediatly - race conditions |
3454 | retransmit after timeout - yes | |
3455 | exit | |
3456 | wait for packet, then exit | |
3457 | */ | |
8a3fe4f8 | 3458 | warning (_("HMM: threadlist did not echo arg thread, dropping it.")); |
23860348 | 3459 | return 0; /* I choose simply exiting. */ |
c906108c SS |
3460 | } |
3461 | if (*result_count <= 0) | |
3462 | { | |
3463 | if (*done != 1) | |
3464 | { | |
8a3fe4f8 | 3465 | warning (_("RMT ERROR : failed to get remote thread list.")); |
c906108c SS |
3466 | result = 0; |
3467 | } | |
3468 | return result; /* break; */ | |
3469 | } | |
3470 | if (*result_count > result_limit) | |
3471 | { | |
3472 | *result_count = 0; | |
8a3fe4f8 | 3473 | warning (_("RMT ERROR: threadlist response longer than requested.")); |
c906108c SS |
3474 | return 0; |
3475 | } | |
3476 | return result; | |
3477 | } | |
3478 | ||
6dc54d91 PA |
3479 | /* Fetch the list of remote threads, with the qL packet, and call |
3480 | STEPFUNCTION for each thread found. Stops iterating and returns 1 | |
3481 | if STEPFUNCTION returns true. Stops iterating and returns 0 if the | |
3482 | STEPFUNCTION returns false. If the packet is not supported, | |
3483 | returns -1. */ | |
c906108c | 3484 | |
6b8edb51 PA |
3485 | int |
3486 | remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction, | |
3487 | void *context, int looplimit) | |
c906108c | 3488 | { |
0d031856 | 3489 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
3490 | int done, i, result_count; |
3491 | int startflag = 1; | |
3492 | int result = 1; | |
3493 | int loopcount = 0; | |
c906108c SS |
3494 | |
3495 | done = 0; | |
3496 | while (!done) | |
3497 | { | |
3498 | if (loopcount++ > looplimit) | |
3499 | { | |
3500 | result = 0; | |
8a3fe4f8 | 3501 | warning (_("Remote fetch threadlist -infinite loop-.")); |
c906108c SS |
3502 | break; |
3503 | } | |
6dc54d91 PA |
3504 | result = remote_get_threadlist (startflag, &rs->nextthread, |
3505 | MAXTHREADLISTRESULTS, | |
3506 | &done, &result_count, | |
3507 | rs->resultthreadlist); | |
3508 | if (result <= 0) | |
3509 | break; | |
23860348 | 3510 | /* Clear for later iterations. */ |
c906108c SS |
3511 | startflag = 0; |
3512 | /* Setup to resume next batch of thread references, set nextthread. */ | |
3513 | if (result_count >= 1) | |
0d031856 TT |
3514 | copy_threadref (&rs->nextthread, |
3515 | &rs->resultthreadlist[result_count - 1]); | |
c906108c SS |
3516 | i = 0; |
3517 | while (result_count--) | |
6dc54d91 PA |
3518 | { |
3519 | if (!(*stepfunction) (&rs->resultthreadlist[i++], context)) | |
3520 | { | |
3521 | result = 0; | |
3522 | break; | |
3523 | } | |
3524 | } | |
c906108c SS |
3525 | } |
3526 | return result; | |
3527 | } | |
3528 | ||
6dc54d91 PA |
3529 | /* A thread found on the remote target. */ |
3530 | ||
21fe1c75 | 3531 | struct thread_item |
6dc54d91 | 3532 | { |
21fe1c75 SM |
3533 | explicit thread_item (ptid_t ptid_) |
3534 | : ptid (ptid_) | |
3535 | {} | |
3536 | ||
3537 | thread_item (thread_item &&other) = default; | |
3538 | thread_item &operator= (thread_item &&other) = default; | |
3539 | ||
3540 | DISABLE_COPY_AND_ASSIGN (thread_item); | |
3541 | ||
6dc54d91 PA |
3542 | /* The thread's PTID. */ |
3543 | ptid_t ptid; | |
3544 | ||
21fe1c75 SM |
3545 | /* The thread's extra info. */ |
3546 | std::string extra; | |
6dc54d91 | 3547 | |
21fe1c75 SM |
3548 | /* The thread's name. */ |
3549 | std::string name; | |
79efa585 | 3550 | |
6dc54d91 | 3551 | /* The core the thread was running on. -1 if not known. */ |
21fe1c75 | 3552 | int core = -1; |
f6327dcb KB |
3553 | |
3554 | /* The thread handle associated with the thread. */ | |
21fe1c75 | 3555 | gdb::byte_vector thread_handle; |
21fe1c75 | 3556 | }; |
6dc54d91 PA |
3557 | |
3558 | /* Context passed around to the various methods listing remote | |
3559 | threads. As new threads are found, they're added to the ITEMS | |
3560 | vector. */ | |
3561 | ||
3562 | struct threads_listing_context | |
3563 | { | |
21fe1c75 SM |
3564 | /* Return true if this object contains an entry for a thread with ptid |
3565 | PTID. */ | |
6dc54d91 | 3566 | |
21fe1c75 SM |
3567 | bool contains_thread (ptid_t ptid) const |
3568 | { | |
3569 | auto match_ptid = [&] (const thread_item &item) | |
3570 | { | |
3571 | return item.ptid == ptid; | |
3572 | }; | |
80134cf5 | 3573 | |
21fe1c75 SM |
3574 | auto it = std::find_if (this->items.begin (), |
3575 | this->items.end (), | |
3576 | match_ptid); | |
80134cf5 | 3577 | |
21fe1c75 SM |
3578 | return it != this->items.end (); |
3579 | } | |
80134cf5 | 3580 | |
21fe1c75 | 3581 | /* Remove the thread with ptid PTID. */ |
80134cf5 | 3582 | |
21fe1c75 SM |
3583 | void remove_thread (ptid_t ptid) |
3584 | { | |
3585 | auto match_ptid = [&] (const thread_item &item) | |
3586 | { | |
3587 | return item.ptid == ptid; | |
3588 | }; | |
cbb8991c | 3589 | |
21fe1c75 SM |
3590 | auto it = std::remove_if (this->items.begin (), |
3591 | this->items.end (), | |
3592 | match_ptid); | |
cbb8991c | 3593 | |
21fe1c75 SM |
3594 | if (it != this->items.end ()) |
3595 | this->items.erase (it); | |
3596 | } | |
3597 | ||
3598 | /* The threads found on the remote target. */ | |
3599 | std::vector<thread_item> items; | |
3600 | }; | |
cbb8991c | 3601 | |
c906108c | 3602 | static int |
6dc54d91 | 3603 | remote_newthread_step (threadref *ref, void *data) |
c906108c | 3604 | { |
19ba03f4 SM |
3605 | struct threads_listing_context *context |
3606 | = (struct threads_listing_context *) data; | |
21fe1c75 SM |
3607 | int pid = inferior_ptid.pid (); |
3608 | int lwp = threadref_to_int (ref); | |
3609 | ptid_t ptid (pid, lwp); | |
6dc54d91 | 3610 | |
21fe1c75 | 3611 | context->items.emplace_back (ptid); |
6dc54d91 | 3612 | |
c906108c SS |
3613 | return 1; /* continue iterator */ |
3614 | } | |
3615 | ||
3616 | #define CRAZY_MAX_THREADS 1000 | |
3617 | ||
6b8edb51 PA |
3618 | ptid_t |
3619 | remote_target::remote_current_thread (ptid_t oldpid) | |
c906108c | 3620 | { |
d01949b6 | 3621 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
3622 | |
3623 | putpkt ("qC"); | |
8d64371b | 3624 | getpkt (&rs->buf, 0); |
2e9f7625 | 3625 | if (rs->buf[0] == 'Q' && rs->buf[1] == 'C') |
c9f35b34 | 3626 | { |
256642e8 | 3627 | const char *obuf; |
c9f35b34 KB |
3628 | ptid_t result; |
3629 | ||
3630 | result = read_ptid (&rs->buf[2], &obuf); | |
3631 | if (*obuf != '\0' && remote_debug) | |
3632 | fprintf_unfiltered (gdb_stdlog, | |
3633 | "warning: garbage in qC reply\n"); | |
3634 | ||
3635 | return result; | |
3636 | } | |
c906108c SS |
3637 | else |
3638 | return oldpid; | |
3639 | } | |
3640 | ||
6dc54d91 | 3641 | /* List remote threads using the deprecated qL packet. */ |
cce74817 | 3642 | |
6b8edb51 PA |
3643 | int |
3644 | remote_target::remote_get_threads_with_ql (threads_listing_context *context) | |
c906108c | 3645 | { |
6dc54d91 PA |
3646 | if (remote_threadlist_iterator (remote_newthread_step, context, |
3647 | CRAZY_MAX_THREADS) >= 0) | |
3648 | return 1; | |
3649 | ||
3650 | return 0; | |
c906108c SS |
3651 | } |
3652 | ||
dc146f7c VP |
3653 | #if defined(HAVE_LIBEXPAT) |
3654 | ||
dc146f7c VP |
3655 | static void |
3656 | start_thread (struct gdb_xml_parser *parser, | |
3657 | const struct gdb_xml_element *element, | |
4d0fdd9b SM |
3658 | void *user_data, |
3659 | std::vector<gdb_xml_value> &attributes) | |
dc146f7c | 3660 | { |
19ba03f4 SM |
3661 | struct threads_listing_context *data |
3662 | = (struct threads_listing_context *) user_data; | |
3d2c1d41 | 3663 | struct gdb_xml_value *attr; |
dc146f7c | 3664 | |
4d0fdd9b | 3665 | char *id = (char *) xml_find_attribute (attributes, "id")->value.get (); |
21fe1c75 SM |
3666 | ptid_t ptid = read_ptid (id, NULL); |
3667 | ||
3668 | data->items.emplace_back (ptid); | |
3669 | thread_item &item = data->items.back (); | |
dc146f7c | 3670 | |
3d2c1d41 PA |
3671 | attr = xml_find_attribute (attributes, "core"); |
3672 | if (attr != NULL) | |
4d0fdd9b | 3673 | item.core = *(ULONGEST *) attr->value.get (); |
dc146f7c | 3674 | |
79efa585 | 3675 | attr = xml_find_attribute (attributes, "name"); |
21fe1c75 | 3676 | if (attr != NULL) |
4d0fdd9b | 3677 | item.name = (const char *) attr->value.get (); |
79efa585 | 3678 | |
f6327dcb KB |
3679 | attr = xml_find_attribute (attributes, "handle"); |
3680 | if (attr != NULL) | |
4d0fdd9b | 3681 | item.thread_handle = hex2bin ((const char *) attr->value.get ()); |
dc146f7c VP |
3682 | } |
3683 | ||
3684 | static void | |
3685 | end_thread (struct gdb_xml_parser *parser, | |
3686 | const struct gdb_xml_element *element, | |
3687 | void *user_data, const char *body_text) | |
3688 | { | |
19ba03f4 SM |
3689 | struct threads_listing_context *data |
3690 | = (struct threads_listing_context *) user_data; | |
dc146f7c | 3691 | |
21fe1c75 SM |
3692 | if (body_text != NULL && *body_text != '\0') |
3693 | data->items.back ().extra = body_text; | |
dc146f7c VP |
3694 | } |
3695 | ||
3696 | const struct gdb_xml_attribute thread_attributes[] = { | |
3697 | { "id", GDB_XML_AF_NONE, NULL, NULL }, | |
3698 | { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL }, | |
79efa585 | 3699 | { "name", GDB_XML_AF_OPTIONAL, NULL, NULL }, |
f6327dcb | 3700 | { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL }, |
dc146f7c VP |
3701 | { NULL, GDB_XML_AF_NONE, NULL, NULL } |
3702 | }; | |
3703 | ||
3704 | const struct gdb_xml_element thread_children[] = { | |
3705 | { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } | |
3706 | }; | |
3707 | ||
3708 | const struct gdb_xml_element threads_children[] = { | |
3709 | { "thread", thread_attributes, thread_children, | |
3710 | GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL, | |
3711 | start_thread, end_thread }, | |
3712 | { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } | |
3713 | }; | |
3714 | ||
3715 | const struct gdb_xml_element threads_elements[] = { | |
3716 | { "threads", NULL, threads_children, | |
3717 | GDB_XML_EF_NONE, NULL, NULL }, | |
3718 | { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL } | |
3719 | }; | |
3720 | ||
3721 | #endif | |
3722 | ||
6dc54d91 | 3723 | /* List remote threads using qXfer:threads:read. */ |
9d1f7ab2 | 3724 | |
6b8edb51 PA |
3725 | int |
3726 | remote_target::remote_get_threads_with_qxfer (threads_listing_context *context) | |
0f71a2f6 | 3727 | { |
dc146f7c | 3728 | #if defined(HAVE_LIBEXPAT) |
4082afcc | 3729 | if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE) |
dc146f7c | 3730 | { |
9018be22 | 3731 | gdb::optional<gdb::char_vector> xml |
6b8edb51 | 3732 | = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL); |
efc0eabd | 3733 | |
9018be22 | 3734 | if (xml && (*xml)[0] != '\0') |
dc146f7c | 3735 | { |
6dc54d91 | 3736 | gdb_xml_parse_quick (_("threads"), "threads.dtd", |
9018be22 | 3737 | threads_elements, xml->data (), context); |
dc146f7c VP |
3738 | } |
3739 | ||
6dc54d91 | 3740 | return 1; |
dc146f7c VP |
3741 | } |
3742 | #endif | |
3743 | ||
6dc54d91 PA |
3744 | return 0; |
3745 | } | |
3746 | ||
3747 | /* List remote threads using qfThreadInfo/qsThreadInfo. */ | |
3748 | ||
6b8edb51 PA |
3749 | int |
3750 | remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context) | |
6dc54d91 PA |
3751 | { |
3752 | struct remote_state *rs = get_remote_state (); | |
3753 | ||
b80fafe3 | 3754 | if (rs->use_threadinfo_query) |
9d1f7ab2 | 3755 | { |
256642e8 | 3756 | const char *bufp; |
6dc54d91 | 3757 | |
9d1f7ab2 | 3758 | putpkt ("qfThreadInfo"); |
8d64371b TT |
3759 | getpkt (&rs->buf, 0); |
3760 | bufp = rs->buf.data (); | |
9d1f7ab2 | 3761 | if (bufp[0] != '\0') /* q packet recognized */ |
802188a7 | 3762 | { |
9d1f7ab2 MS |
3763 | while (*bufp++ == 'm') /* reply contains one or more TID */ |
3764 | { | |
3765 | do | |
3766 | { | |
21fe1c75 SM |
3767 | ptid_t ptid = read_ptid (bufp, &bufp); |
3768 | context->items.emplace_back (ptid); | |
9d1f7ab2 MS |
3769 | } |
3770 | while (*bufp++ == ','); /* comma-separated list */ | |
3771 | putpkt ("qsThreadInfo"); | |
8d64371b TT |
3772 | getpkt (&rs->buf, 0); |
3773 | bufp = rs->buf.data (); | |
9d1f7ab2 | 3774 | } |
6dc54d91 PA |
3775 | return 1; |
3776 | } | |
3777 | else | |
3778 | { | |
3779 | /* Packet not recognized. */ | |
3780 | rs->use_threadinfo_query = 0; | |
9d1f7ab2 MS |
3781 | } |
3782 | } | |
3783 | ||
6dc54d91 PA |
3784 | return 0; |
3785 | } | |
3786 | ||
e8032dde | 3787 | /* Implement the to_update_thread_list function for the remote |
6dc54d91 PA |
3788 | targets. */ |
3789 | ||
f6ac5f3d PA |
3790 | void |
3791 | remote_target::update_thread_list () | |
6dc54d91 | 3792 | { |
6dc54d91 | 3793 | struct threads_listing_context context; |
ab970af1 | 3794 | int got_list = 0; |
e8032dde | 3795 | |
6dc54d91 PA |
3796 | /* We have a few different mechanisms to fetch the thread list. Try |
3797 | them all, starting with the most preferred one first, falling | |
3798 | back to older methods. */ | |
6b8edb51 PA |
3799 | if (remote_get_threads_with_qxfer (&context) |
3800 | || remote_get_threads_with_qthreadinfo (&context) | |
3801 | || remote_get_threads_with_ql (&context)) | |
6dc54d91 | 3802 | { |
ab970af1 PA |
3803 | got_list = 1; |
3804 | ||
21fe1c75 | 3805 | if (context.items.empty () |
f6ac5f3d | 3806 | && remote_thread_always_alive (inferior_ptid)) |
7d1a114c PA |
3807 | { |
3808 | /* Some targets don't really support threads, but still | |
3809 | reply an (empty) thread list in response to the thread | |
3810 | listing packets, instead of replying "packet not | |
3811 | supported". Exit early so we don't delete the main | |
3812 | thread. */ | |
7d1a114c PA |
3813 | return; |
3814 | } | |
3815 | ||
ab970af1 PA |
3816 | /* CONTEXT now holds the current thread list on the remote |
3817 | target end. Delete GDB-side threads no longer found on the | |
3818 | target. */ | |
08036331 | 3819 | for (thread_info *tp : all_threads_safe ()) |
cbb8991c | 3820 | { |
5b6d1e4f PA |
3821 | if (tp->inf->process_target () != this) |
3822 | continue; | |
3823 | ||
21fe1c75 | 3824 | if (!context.contains_thread (tp->ptid)) |
ab970af1 PA |
3825 | { |
3826 | /* Not found. */ | |
00431a78 | 3827 | delete_thread (tp); |
ab970af1 | 3828 | } |
cbb8991c DB |
3829 | } |
3830 | ||
3831 | /* Remove any unreported fork child threads from CONTEXT so | |
3832 | that we don't interfere with follow fork, which is where | |
3833 | creation of such threads is handled. */ | |
3834 | remove_new_fork_children (&context); | |
74531fed | 3835 | |
ab970af1 | 3836 | /* And now add threads we don't know about yet to our list. */ |
21fe1c75 | 3837 | for (thread_item &item : context.items) |
6dc54d91 | 3838 | { |
21fe1c75 | 3839 | if (item.ptid != null_ptid) |
6dc54d91 | 3840 | { |
6dc54d91 | 3841 | /* In non-stop mode, we assume new found threads are |
0d5b594f PA |
3842 | executing until proven otherwise with a stop reply. |
3843 | In all-stop, we can only get here if all threads are | |
6dc54d91 | 3844 | stopped. */ |
0d5b594f | 3845 | int executing = target_is_non_stop_p () ? 1 : 0; |
6dc54d91 | 3846 | |
21fe1c75 | 3847 | remote_notice_new_inferior (item.ptid, executing); |
6dc54d91 | 3848 | |
5b6d1e4f | 3849 | thread_info *tp = find_thread_ptid (this, item.ptid); |
00431a78 | 3850 | remote_thread_info *info = get_remote_thread_info (tp); |
21fe1c75 | 3851 | info->core = item.core; |
7aabaf9d SM |
3852 | info->extra = std::move (item.extra); |
3853 | info->name = std::move (item.name); | |
3854 | info->thread_handle = std::move (item.thread_handle); | |
6dc54d91 PA |
3855 | } |
3856 | } | |
3857 | } | |
3858 | ||
ab970af1 PA |
3859 | if (!got_list) |
3860 | { | |
3861 | /* If no thread listing method is supported, then query whether | |
3862 | each known thread is alive, one by one, with the T packet. | |
3863 | If the target doesn't support threads at all, then this is a | |
3864 | no-op. See remote_thread_alive. */ | |
3865 | prune_threads (); | |
3866 | } | |
9d1f7ab2 MS |
3867 | } |
3868 | ||
802188a7 | 3869 | /* |
9d1f7ab2 MS |
3870 | * Collect a descriptive string about the given thread. |
3871 | * The target may say anything it wants to about the thread | |
3872 | * (typically info about its blocked / runnable state, name, etc.). | |
3873 | * This string will appear in the info threads display. | |
802188a7 | 3874 | * |
9d1f7ab2 MS |
3875 | * Optional: targets are not required to implement this function. |
3876 | */ | |
3877 | ||
f6ac5f3d PA |
3878 | const char * |
3879 | remote_target::extra_thread_info (thread_info *tp) | |
9d1f7ab2 | 3880 | { |
d01949b6 | 3881 | struct remote_state *rs = get_remote_state (); |
9d1f7ab2 MS |
3882 | int set; |
3883 | threadref id; | |
3884 | struct gdb_ext_thread_info threadinfo; | |
9d1f7ab2 | 3885 | |
5d93a237 | 3886 | if (rs->remote_desc == 0) /* paranoia */ |
8e65ff28 | 3887 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 3888 | _("remote_threads_extra_info")); |
9d1f7ab2 | 3889 | |
d7e15655 | 3890 | if (tp->ptid == magic_null_ptid |
e38504b3 | 3891 | || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0)) |
60e569b9 PA |
3892 | /* This is the main thread which was added by GDB. The remote |
3893 | server doesn't know about it. */ | |
3894 | return NULL; | |
3895 | ||
c76a8ea3 PA |
3896 | std::string &extra = get_remote_thread_info (tp)->extra; |
3897 | ||
3898 | /* If already have cached info, use it. */ | |
3899 | if (!extra.empty ()) | |
3900 | return extra.c_str (); | |
3901 | ||
4082afcc | 3902 | if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE) |
dc146f7c | 3903 | { |
c76a8ea3 PA |
3904 | /* If we're using qXfer:threads:read, then the extra info is |
3905 | included in the XML. So if we didn't have anything cached, | |
3906 | it's because there's really no extra info. */ | |
3907 | return NULL; | |
dc146f7c VP |
3908 | } |
3909 | ||
b80fafe3 | 3910 | if (rs->use_threadextra_query) |
9d1f7ab2 | 3911 | { |
8d64371b TT |
3912 | char *b = rs->buf.data (); |
3913 | char *endb = b + get_remote_packet_size (); | |
82f73884 PA |
3914 | |
3915 | xsnprintf (b, endb - b, "qThreadExtraInfo,"); | |
3916 | b += strlen (b); | |
3917 | write_ptid (b, endb, tp->ptid); | |
3918 | ||
2e9f7625 | 3919 | putpkt (rs->buf); |
8d64371b | 3920 | getpkt (&rs->buf, 0); |
2e9f7625 | 3921 | if (rs->buf[0] != 0) |
9d1f7ab2 | 3922 | { |
8d64371b TT |
3923 | extra.resize (strlen (rs->buf.data ()) / 2); |
3924 | hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ()); | |
c76a8ea3 | 3925 | return extra.c_str (); |
9d1f7ab2 | 3926 | } |
0f71a2f6 | 3927 | } |
9d1f7ab2 MS |
3928 | |
3929 | /* If the above query fails, fall back to the old method. */ | |
b80fafe3 | 3930 | rs->use_threadextra_query = 0; |
9d1f7ab2 MS |
3931 | set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME |
3932 | | TAG_MOREDISPLAY | TAG_DISPLAY; | |
e38504b3 | 3933 | int_to_threadref (&id, tp->ptid.lwp ()); |
9d1f7ab2 MS |
3934 | if (remote_get_threadinfo (&id, set, &threadinfo)) |
3935 | if (threadinfo.active) | |
0f71a2f6 | 3936 | { |
9d1f7ab2 | 3937 | if (*threadinfo.shortname) |
c76a8ea3 | 3938 | string_appendf (extra, " Name: %s", threadinfo.shortname); |
9d1f7ab2 | 3939 | if (*threadinfo.display) |
c76a8ea3 PA |
3940 | { |
3941 | if (!extra.empty ()) | |
3942 | extra += ','; | |
3943 | string_appendf (extra, " State: %s", threadinfo.display); | |
3944 | } | |
9d1f7ab2 | 3945 | if (*threadinfo.more_display) |
c5aa993b | 3946 | { |
c76a8ea3 PA |
3947 | if (!extra.empty ()) |
3948 | extra += ','; | |
3949 | string_appendf (extra, " Priority: %s", threadinfo.more_display); | |
c5aa993b | 3950 | } |
c76a8ea3 | 3951 | return extra.c_str (); |
0f71a2f6 | 3952 | } |
9d1f7ab2 | 3953 | return NULL; |
0f71a2f6 | 3954 | } |
c906108c | 3955 | \f |
c5aa993b | 3956 | |
f6ac5f3d PA |
3957 | bool |
3958 | remote_target::static_tracepoint_marker_at (CORE_ADDR addr, | |
3959 | struct static_tracepoint_marker *marker) | |
0fb4aa4b PA |
3960 | { |
3961 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 3962 | char *p = rs->buf.data (); |
0fb4aa4b | 3963 | |
bba74b36 | 3964 | xsnprintf (p, get_remote_packet_size (), "qTSTMat:"); |
0fb4aa4b PA |
3965 | p += strlen (p); |
3966 | p += hexnumstr (p, addr); | |
3967 | putpkt (rs->buf); | |
8d64371b TT |
3968 | getpkt (&rs->buf, 0); |
3969 | p = rs->buf.data (); | |
0fb4aa4b PA |
3970 | |
3971 | if (*p == 'E') | |
3972 | error (_("Remote failure reply: %s"), p); | |
3973 | ||
3974 | if (*p++ == 'm') | |
3975 | { | |
256642e8 | 3976 | parse_static_tracepoint_marker_definition (p, NULL, marker); |
5d9310c4 | 3977 | return true; |
0fb4aa4b PA |
3978 | } |
3979 | ||
5d9310c4 | 3980 | return false; |
0fb4aa4b PA |
3981 | } |
3982 | ||
f6ac5f3d PA |
3983 | std::vector<static_tracepoint_marker> |
3984 | remote_target::static_tracepoint_markers_by_strid (const char *strid) | |
0fb4aa4b PA |
3985 | { |
3986 | struct remote_state *rs = get_remote_state (); | |
5d9310c4 | 3987 | std::vector<static_tracepoint_marker> markers; |
256642e8 | 3988 | const char *p; |
5d9310c4 | 3989 | static_tracepoint_marker marker; |
0fb4aa4b PA |
3990 | |
3991 | /* Ask for a first packet of static tracepoint marker | |
3992 | definition. */ | |
3993 | putpkt ("qTfSTM"); | |
8d64371b TT |
3994 | getpkt (&rs->buf, 0); |
3995 | p = rs->buf.data (); | |
0fb4aa4b PA |
3996 | if (*p == 'E') |
3997 | error (_("Remote failure reply: %s"), p); | |
3998 | ||
0fb4aa4b PA |
3999 | while (*p++ == 'm') |
4000 | { | |
0fb4aa4b PA |
4001 | do |
4002 | { | |
5d9310c4 | 4003 | parse_static_tracepoint_marker_definition (p, &p, &marker); |
0fb4aa4b | 4004 | |
5d9310c4 SM |
4005 | if (strid == NULL || marker.str_id == strid) |
4006 | markers.push_back (std::move (marker)); | |
0fb4aa4b PA |
4007 | } |
4008 | while (*p++ == ','); /* comma-separated list */ | |
4009 | /* Ask for another packet of static tracepoint definition. */ | |
4010 | putpkt ("qTsSTM"); | |
8d64371b TT |
4011 | getpkt (&rs->buf, 0); |
4012 | p = rs->buf.data (); | |
0fb4aa4b PA |
4013 | } |
4014 | ||
0fb4aa4b PA |
4015 | return markers; |
4016 | } | |
4017 | ||
4018 | \f | |
10760264 JB |
4019 | /* Implement the to_get_ada_task_ptid function for the remote targets. */ |
4020 | ||
f6ac5f3d PA |
4021 | ptid_t |
4022 | remote_target::get_ada_task_ptid (long lwp, long thread) | |
10760264 | 4023 | { |
e99b03dc | 4024 | return ptid_t (inferior_ptid.pid (), lwp, 0); |
10760264 JB |
4025 | } |
4026 | \f | |
4027 | ||
24b06219 | 4028 | /* Restart the remote side; this is an extended protocol operation. */ |
c906108c | 4029 | |
6b8edb51 PA |
4030 | void |
4031 | remote_target::extended_remote_restart () | |
c906108c | 4032 | { |
d01949b6 | 4033 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
4034 | |
4035 | /* Send the restart command; for reasons I don't understand the | |
4036 | remote side really expects a number after the "R". */ | |
8d64371b | 4037 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0); |
6d820c5c | 4038 | putpkt (rs->buf); |
c906108c | 4039 | |
ad9a8f3f | 4040 | remote_fileio_reset (); |
c906108c SS |
4041 | } |
4042 | \f | |
4043 | /* Clean up connection to a remote debugger. */ | |
4044 | ||
f6ac5f3d PA |
4045 | void |
4046 | remote_target::close () | |
c906108c | 4047 | { |
048094ac | 4048 | /* Make sure we leave stdin registered in the event loop. */ |
f6ac5f3d | 4049 | terminal_ours (); |
ce5ce7ed | 4050 | |
6b8edb51 PA |
4051 | trace_reset_local_state (); |
4052 | ||
4053 | delete this; | |
4054 | } | |
4055 | ||
4056 | remote_target::~remote_target () | |
4057 | { | |
4058 | struct remote_state *rs = get_remote_state (); | |
4059 | ||
4060 | /* Check for NULL because we may get here with a partially | |
4061 | constructed target/connection. */ | |
4062 | if (rs->remote_desc == nullptr) | |
4063 | return; | |
4064 | ||
4065 | serial_close (rs->remote_desc); | |
4066 | ||
4067 | /* We are destroying the remote target, so we should discard | |
f48ff2a7 | 4068 | everything of this target. */ |
6b8edb51 | 4069 | discard_pending_stop_replies_in_queue (); |
74531fed | 4070 | |
6b8edb51 PA |
4071 | if (rs->remote_async_inferior_event_token) |
4072 | delete_async_event_handler (&rs->remote_async_inferior_event_token); | |
722247f1 | 4073 | |
97dfbadd | 4074 | delete rs->notif_state; |
c906108c SS |
4075 | } |
4076 | ||
23860348 | 4077 | /* Query the remote side for the text, data and bss offsets. */ |
c906108c | 4078 | |
6b8edb51 PA |
4079 | void |
4080 | remote_target::get_offsets () | |
c906108c | 4081 | { |
d01949b6 | 4082 | struct remote_state *rs = get_remote_state (); |
2e9f7625 | 4083 | char *buf; |
085dd6e6 | 4084 | char *ptr; |
31d99776 DJ |
4085 | int lose, num_segments = 0, do_sections, do_segments; |
4086 | CORE_ADDR text_addr, data_addr, bss_addr, segments[2]; | |
31d99776 DJ |
4087 | struct symfile_segment_data *data; |
4088 | ||
4089 | if (symfile_objfile == NULL) | |
4090 | return; | |
c906108c SS |
4091 | |
4092 | putpkt ("qOffsets"); | |
8d64371b TT |
4093 | getpkt (&rs->buf, 0); |
4094 | buf = rs->buf.data (); | |
c906108c SS |
4095 | |
4096 | if (buf[0] == '\000') | |
4097 | return; /* Return silently. Stub doesn't support | |
23860348 | 4098 | this command. */ |
c906108c SS |
4099 | if (buf[0] == 'E') |
4100 | { | |
8a3fe4f8 | 4101 | warning (_("Remote failure reply: %s"), buf); |
c906108c SS |
4102 | return; |
4103 | } | |
4104 | ||
4105 | /* Pick up each field in turn. This used to be done with scanf, but | |
4106 | scanf will make trouble if CORE_ADDR size doesn't match | |
4107 | conversion directives correctly. The following code will work | |
4108 | with any size of CORE_ADDR. */ | |
4109 | text_addr = data_addr = bss_addr = 0; | |
4110 | ptr = buf; | |
4111 | lose = 0; | |
4112 | ||
61012eef | 4113 | if (startswith (ptr, "Text=")) |
c906108c SS |
4114 | { |
4115 | ptr += 5; | |
4116 | /* Don't use strtol, could lose on big values. */ | |
4117 | while (*ptr && *ptr != ';') | |
4118 | text_addr = (text_addr << 4) + fromhex (*ptr++); | |
c906108c | 4119 | |
61012eef | 4120 | if (startswith (ptr, ";Data=")) |
31d99776 DJ |
4121 | { |
4122 | ptr += 6; | |
4123 | while (*ptr && *ptr != ';') | |
4124 | data_addr = (data_addr << 4) + fromhex (*ptr++); | |
4125 | } | |
4126 | else | |
4127 | lose = 1; | |
4128 | ||
61012eef | 4129 | if (!lose && startswith (ptr, ";Bss=")) |
31d99776 DJ |
4130 | { |
4131 | ptr += 5; | |
4132 | while (*ptr && *ptr != ';') | |
4133 | bss_addr = (bss_addr << 4) + fromhex (*ptr++); | |
c906108c | 4134 | |
31d99776 DJ |
4135 | if (bss_addr != data_addr) |
4136 | warning (_("Target reported unsupported offsets: %s"), buf); | |
4137 | } | |
4138 | else | |
4139 | lose = 1; | |
4140 | } | |
61012eef | 4141 | else if (startswith (ptr, "TextSeg=")) |
c906108c | 4142 | { |
31d99776 DJ |
4143 | ptr += 8; |
4144 | /* Don't use strtol, could lose on big values. */ | |
c906108c | 4145 | while (*ptr && *ptr != ';') |
31d99776 DJ |
4146 | text_addr = (text_addr << 4) + fromhex (*ptr++); |
4147 | num_segments = 1; | |
4148 | ||
61012eef | 4149 | if (startswith (ptr, ";DataSeg=")) |
31d99776 DJ |
4150 | { |
4151 | ptr += 9; | |
4152 | while (*ptr && *ptr != ';') | |
4153 | data_addr = (data_addr << 4) + fromhex (*ptr++); | |
4154 | num_segments++; | |
4155 | } | |
c906108c SS |
4156 | } |
4157 | else | |
4158 | lose = 1; | |
4159 | ||
4160 | if (lose) | |
8a3fe4f8 | 4161 | error (_("Malformed response to offset query, %s"), buf); |
31d99776 DJ |
4162 | else if (*ptr != '\0') |
4163 | warning (_("Target reported unsupported offsets: %s"), buf); | |
c906108c | 4164 | |
6a053cb1 | 4165 | section_offsets offs = symfile_objfile->section_offsets; |
c906108c | 4166 | |
31d99776 DJ |
4167 | data = get_symfile_segment_data (symfile_objfile->obfd); |
4168 | do_segments = (data != NULL); | |
4169 | do_sections = num_segments == 0; | |
c906108c | 4170 | |
28c32713 | 4171 | if (num_segments > 0) |
31d99776 | 4172 | { |
31d99776 DJ |
4173 | segments[0] = text_addr; |
4174 | segments[1] = data_addr; | |
4175 | } | |
28c32713 JB |
4176 | /* If we have two segments, we can still try to relocate everything |
4177 | by assuming that the .text and .data offsets apply to the whole | |
4178 | text and data segments. Convert the offsets given in the packet | |
4179 | to base addresses for symfile_map_offsets_to_segments. */ | |
4180 | else if (data && data->num_segments == 2) | |
4181 | { | |
4182 | segments[0] = data->segment_bases[0] + text_addr; | |
4183 | segments[1] = data->segment_bases[1] + data_addr; | |
4184 | num_segments = 2; | |
4185 | } | |
8d385431 DJ |
4186 | /* If the object file has only one segment, assume that it is text |
4187 | rather than data; main programs with no writable data are rare, | |
4188 | but programs with no code are useless. Of course the code might | |
4189 | have ended up in the data segment... to detect that we would need | |
4190 | the permissions here. */ | |
4191 | else if (data && data->num_segments == 1) | |
4192 | { | |
4193 | segments[0] = data->segment_bases[0] + text_addr; | |
4194 | num_segments = 1; | |
4195 | } | |
28c32713 JB |
4196 | /* There's no way to relocate by segment. */ |
4197 | else | |
4198 | do_segments = 0; | |
31d99776 DJ |
4199 | |
4200 | if (do_segments) | |
4201 | { | |
4202 | int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data, | |
4203 | offs, num_segments, segments); | |
4204 | ||
4205 | if (ret == 0 && !do_sections) | |
3e43a32a MS |
4206 | error (_("Can not handle qOffsets TextSeg " |
4207 | "response with this symbol file")); | |
31d99776 DJ |
4208 | |
4209 | if (ret > 0) | |
4210 | do_sections = 0; | |
4211 | } | |
c906108c | 4212 | |
9ef895d6 DJ |
4213 | if (data) |
4214 | free_symfile_segment_data (data); | |
31d99776 DJ |
4215 | |
4216 | if (do_sections) | |
4217 | { | |
6a053cb1 | 4218 | offs[SECT_OFF_TEXT (symfile_objfile)] = text_addr; |
31d99776 | 4219 | |
3e43a32a MS |
4220 | /* This is a temporary kludge to force data and bss to use the |
4221 | same offsets because that's what nlmconv does now. The real | |
4222 | solution requires changes to the stub and remote.c that I | |
4223 | don't have time to do right now. */ | |
31d99776 | 4224 | |
6a053cb1 TT |
4225 | offs[SECT_OFF_DATA (symfile_objfile)] = data_addr; |
4226 | offs[SECT_OFF_BSS (symfile_objfile)] = data_addr; | |
31d99776 | 4227 | } |
c906108c SS |
4228 | |
4229 | objfile_relocate (symfile_objfile, offs); | |
4230 | } | |
4231 | ||
9a7071a8 | 4232 | /* Send interrupt_sequence to remote target. */ |
6b8edb51 PA |
4233 | |
4234 | void | |
4235 | remote_target::send_interrupt_sequence () | |
9a7071a8 | 4236 | { |
5d93a237 TT |
4237 | struct remote_state *rs = get_remote_state (); |
4238 | ||
9a7071a8 | 4239 | if (interrupt_sequence_mode == interrupt_sequence_control_c) |
c33e31fd | 4240 | remote_serial_write ("\x03", 1); |
9a7071a8 | 4241 | else if (interrupt_sequence_mode == interrupt_sequence_break) |
5d93a237 | 4242 | serial_send_break (rs->remote_desc); |
9a7071a8 JB |
4243 | else if (interrupt_sequence_mode == interrupt_sequence_break_g) |
4244 | { | |
5d93a237 | 4245 | serial_send_break (rs->remote_desc); |
c33e31fd | 4246 | remote_serial_write ("g", 1); |
9a7071a8 JB |
4247 | } |
4248 | else | |
4249 | internal_error (__FILE__, __LINE__, | |
4250 | _("Invalid value for interrupt_sequence_mode: %s."), | |
4251 | interrupt_sequence_mode); | |
4252 | } | |
4253 | ||
3405876a PA |
4254 | |
4255 | /* If STOP_REPLY is a T stop reply, look for the "thread" register, | |
4256 | and extract the PTID. Returns NULL_PTID if not found. */ | |
4257 | ||
4258 | static ptid_t | |
4259 | stop_reply_extract_thread (char *stop_reply) | |
4260 | { | |
4261 | if (stop_reply[0] == 'T' && strlen (stop_reply) > 3) | |
4262 | { | |
256642e8 | 4263 | const char *p; |
3405876a PA |
4264 | |
4265 | /* Txx r:val ; r:val (...) */ | |
4266 | p = &stop_reply[3]; | |
4267 | ||
4268 | /* Look for "register" named "thread". */ | |
4269 | while (*p != '\0') | |
4270 | { | |
256642e8 | 4271 | const char *p1; |
3405876a PA |
4272 | |
4273 | p1 = strchr (p, ':'); | |
4274 | if (p1 == NULL) | |
4275 | return null_ptid; | |
4276 | ||
4277 | if (strncmp (p, "thread", p1 - p) == 0) | |
4278 | return read_ptid (++p1, &p); | |
4279 | ||
4280 | p1 = strchr (p, ';'); | |
4281 | if (p1 == NULL) | |
4282 | return null_ptid; | |
4283 | p1++; | |
4284 | ||
4285 | p = p1; | |
4286 | } | |
4287 | } | |
4288 | ||
4289 | return null_ptid; | |
4290 | } | |
4291 | ||
b7ea362b PA |
4292 | /* Determine the remote side's current thread. If we have a stop |
4293 | reply handy (in WAIT_STATUS), maybe it's a T stop reply with a | |
4294 | "thread" register we can extract the current thread from. If not, | |
4295 | ask the remote which is the current thread with qC. The former | |
4296 | method avoids a roundtrip. */ | |
4297 | ||
6b8edb51 PA |
4298 | ptid_t |
4299 | remote_target::get_current_thread (char *wait_status) | |
b7ea362b | 4300 | { |
6a49a997 | 4301 | ptid_t ptid = null_ptid; |
b7ea362b PA |
4302 | |
4303 | /* Note we don't use remote_parse_stop_reply as that makes use of | |
4304 | the target architecture, which we haven't yet fully determined at | |
4305 | this point. */ | |
4306 | if (wait_status != NULL) | |
4307 | ptid = stop_reply_extract_thread (wait_status); | |
d7e15655 | 4308 | if (ptid == null_ptid) |
b7ea362b PA |
4309 | ptid = remote_current_thread (inferior_ptid); |
4310 | ||
4311 | return ptid; | |
4312 | } | |
4313 | ||
49c62f2e PA |
4314 | /* Query the remote target for which is the current thread/process, |
4315 | add it to our tables, and update INFERIOR_PTID. The caller is | |
4316 | responsible for setting the state such that the remote end is ready | |
3405876a PA |
4317 | to return the current thread. |
4318 | ||
4319 | This function is called after handling the '?' or 'vRun' packets, | |
4320 | whose response is a stop reply from which we can also try | |
4321 | extracting the thread. If the target doesn't support the explicit | |
4322 | qC query, we infer the current thread from that stop reply, passed | |
4323 | in in WAIT_STATUS, which may be NULL. */ | |
49c62f2e | 4324 | |
6b8edb51 PA |
4325 | void |
4326 | remote_target::add_current_inferior_and_thread (char *wait_status) | |
49c62f2e PA |
4327 | { |
4328 | struct remote_state *rs = get_remote_state (); | |
9ab8741a | 4329 | bool fake_pid_p = false; |
49c62f2e PA |
4330 | |
4331 | inferior_ptid = null_ptid; | |
4332 | ||
b7ea362b | 4333 | /* Now, if we have thread information, update inferior_ptid. */ |
87215ad1 | 4334 | ptid_t curr_ptid = get_current_thread (wait_status); |
3405876a | 4335 | |
87215ad1 | 4336 | if (curr_ptid != null_ptid) |
49c62f2e PA |
4337 | { |
4338 | if (!remote_multi_process_p (rs)) | |
9ab8741a | 4339 | fake_pid_p = true; |
49c62f2e PA |
4340 | } |
4341 | else | |
4342 | { | |
4343 | /* Without this, some commands which require an active target | |
4344 | (such as kill) won't work. This variable serves (at least) | |
4345 | double duty as both the pid of the target process (if it has | |
4346 | such), and as a flag indicating that a target is active. */ | |
87215ad1 | 4347 | curr_ptid = magic_null_ptid; |
9ab8741a | 4348 | fake_pid_p = true; |
49c62f2e PA |
4349 | } |
4350 | ||
e99b03dc | 4351 | remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1); |
49c62f2e | 4352 | |
87215ad1 SDJ |
4353 | /* Add the main thread and switch to it. Don't try reading |
4354 | registers yet, since we haven't fetched the target description | |
4355 | yet. */ | |
5b6d1e4f | 4356 | thread_info *tp = add_thread_silent (this, curr_ptid); |
87215ad1 | 4357 | switch_to_thread_no_regs (tp); |
49c62f2e PA |
4358 | } |
4359 | ||
6efcd9a8 PA |
4360 | /* Print info about a thread that was found already stopped on |
4361 | connection. */ | |
4362 | ||
4363 | static void | |
4364 | print_one_stopped_thread (struct thread_info *thread) | |
4365 | { | |
4366 | struct target_waitstatus *ws = &thread->suspend.waitstatus; | |
4367 | ||
00431a78 | 4368 | switch_to_thread (thread); |
f2ffa92b | 4369 | thread->suspend.stop_pc = get_frame_pc (get_current_frame ()); |
6efcd9a8 PA |
4370 | set_current_sal_from_frame (get_current_frame ()); |
4371 | ||
4372 | thread->suspend.waitstatus_pending_p = 0; | |
4373 | ||
4374 | if (ws->kind == TARGET_WAITKIND_STOPPED) | |
4375 | { | |
4376 | enum gdb_signal sig = ws->value.sig; | |
4377 | ||
4378 | if (signal_print_state (sig)) | |
76727919 | 4379 | gdb::observers::signal_received.notify (sig); |
6efcd9a8 | 4380 | } |
76727919 | 4381 | gdb::observers::normal_stop.notify (NULL, 1); |
6efcd9a8 PA |
4382 | } |
4383 | ||
221e1a37 PA |
4384 | /* Process all initial stop replies the remote side sent in response |
4385 | to the ? packet. These indicate threads that were already stopped | |
4386 | on initial connection. We mark these threads as stopped and print | |
4387 | their current frame before giving the user the prompt. */ | |
4388 | ||
6b8edb51 PA |
4389 | void |
4390 | remote_target::process_initial_stop_replies (int from_tty) | |
221e1a37 PA |
4391 | { |
4392 | int pending_stop_replies = stop_reply_queue_length (); | |
6efcd9a8 PA |
4393 | struct thread_info *selected = NULL; |
4394 | struct thread_info *lowest_stopped = NULL; | |
4395 | struct thread_info *first = NULL; | |
221e1a37 PA |
4396 | |
4397 | /* Consume the initial pending events. */ | |
4398 | while (pending_stop_replies-- > 0) | |
4399 | { | |
4400 | ptid_t waiton_ptid = minus_one_ptid; | |
4401 | ptid_t event_ptid; | |
4402 | struct target_waitstatus ws; | |
4403 | int ignore_event = 0; | |
4404 | ||
4405 | memset (&ws, 0, sizeof (ws)); | |
4406 | event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG); | |
4407 | if (remote_debug) | |
4408 | print_target_wait_results (waiton_ptid, event_ptid, &ws); | |
4409 | ||
4410 | switch (ws.kind) | |
4411 | { | |
4412 | case TARGET_WAITKIND_IGNORE: | |
4413 | case TARGET_WAITKIND_NO_RESUMED: | |
4414 | case TARGET_WAITKIND_SIGNALLED: | |
4415 | case TARGET_WAITKIND_EXITED: | |
4416 | /* We shouldn't see these, but if we do, just ignore. */ | |
4417 | if (remote_debug) | |
4418 | fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n"); | |
4419 | ignore_event = 1; | |
4420 | break; | |
4421 | ||
4422 | case TARGET_WAITKIND_EXECD: | |
4423 | xfree (ws.value.execd_pathname); | |
4424 | break; | |
4425 | default: | |
4426 | break; | |
4427 | } | |
4428 | ||
4429 | if (ignore_event) | |
4430 | continue; | |
4431 | ||
5b6d1e4f | 4432 | thread_info *evthread = find_thread_ptid (this, event_ptid); |
221e1a37 PA |
4433 | |
4434 | if (ws.kind == TARGET_WAITKIND_STOPPED) | |
4435 | { | |
4436 | enum gdb_signal sig = ws.value.sig; | |
4437 | ||
4438 | /* Stubs traditionally report SIGTRAP as initial signal, | |
4439 | instead of signal 0. Suppress it. */ | |
4440 | if (sig == GDB_SIGNAL_TRAP) | |
4441 | sig = GDB_SIGNAL_0; | |
b926417a | 4442 | evthread->suspend.stop_signal = sig; |
6efcd9a8 PA |
4443 | ws.value.sig = sig; |
4444 | } | |
221e1a37 | 4445 | |
b926417a | 4446 | evthread->suspend.waitstatus = ws; |
6efcd9a8 PA |
4447 | |
4448 | if (ws.kind != TARGET_WAITKIND_STOPPED | |
4449 | || ws.value.sig != GDB_SIGNAL_0) | |
b926417a | 4450 | evthread->suspend.waitstatus_pending_p = 1; |
6efcd9a8 | 4451 | |
719546c4 SM |
4452 | set_executing (this, event_ptid, false); |
4453 | set_running (this, event_ptid, false); | |
b926417a | 4454 | get_remote_thread_info (evthread)->vcont_resumed = 0; |
6efcd9a8 PA |
4455 | } |
4456 | ||
4457 | /* "Notice" the new inferiors before anything related to | |
4458 | registers/memory. */ | |
5b6d1e4f | 4459 | for (inferior *inf : all_non_exited_inferiors (this)) |
6efcd9a8 | 4460 | { |
6efcd9a8 PA |
4461 | inf->needs_setup = 1; |
4462 | ||
4463 | if (non_stop) | |
4464 | { | |
08036331 | 4465 | thread_info *thread = any_live_thread_of_inferior (inf); |
00431a78 | 4466 | notice_new_inferior (thread, thread->state == THREAD_RUNNING, |
6efcd9a8 PA |
4467 | from_tty); |
4468 | } | |
4469 | } | |
4470 | ||
4471 | /* If all-stop on top of non-stop, pause all threads. Note this | |
4472 | records the threads' stop pc, so must be done after "noticing" | |
4473 | the inferiors. */ | |
4474 | if (!non_stop) | |
4475 | { | |
4476 | stop_all_threads (); | |
4477 | ||
4478 | /* If all threads of an inferior were already stopped, we | |
4479 | haven't setup the inferior yet. */ | |
5b6d1e4f | 4480 | for (inferior *inf : all_non_exited_inferiors (this)) |
6efcd9a8 | 4481 | { |
6efcd9a8 PA |
4482 | if (inf->needs_setup) |
4483 | { | |
08036331 | 4484 | thread_info *thread = any_live_thread_of_inferior (inf); |
6efcd9a8 PA |
4485 | switch_to_thread_no_regs (thread); |
4486 | setup_inferior (0); | |
4487 | } | |
4488 | } | |
221e1a37 | 4489 | } |
6efcd9a8 PA |
4490 | |
4491 | /* Now go over all threads that are stopped, and print their current | |
4492 | frame. If all-stop, then if there's a signalled thread, pick | |
4493 | that as current. */ | |
5b6d1e4f | 4494 | for (thread_info *thread : all_non_exited_threads (this)) |
6efcd9a8 | 4495 | { |
6efcd9a8 PA |
4496 | if (first == NULL) |
4497 | first = thread; | |
4498 | ||
4499 | if (!non_stop) | |
00431a78 | 4500 | thread->set_running (false); |
6efcd9a8 PA |
4501 | else if (thread->state != THREAD_STOPPED) |
4502 | continue; | |
4503 | ||
6efcd9a8 PA |
4504 | if (selected == NULL |
4505 | && thread->suspend.waitstatus_pending_p) | |
4506 | selected = thread; | |
4507 | ||
5d5658a1 PA |
4508 | if (lowest_stopped == NULL |
4509 | || thread->inf->num < lowest_stopped->inf->num | |
4510 | || thread->per_inf_num < lowest_stopped->per_inf_num) | |
6efcd9a8 PA |
4511 | lowest_stopped = thread; |
4512 | ||
4513 | if (non_stop) | |
4514 | print_one_stopped_thread (thread); | |
4515 | } | |
4516 | ||
4517 | /* In all-stop, we only print the status of one thread, and leave | |
4518 | others with their status pending. */ | |
4519 | if (!non_stop) | |
4520 | { | |
08036331 | 4521 | thread_info *thread = selected; |
6efcd9a8 PA |
4522 | if (thread == NULL) |
4523 | thread = lowest_stopped; | |
4524 | if (thread == NULL) | |
4525 | thread = first; | |
4526 | ||
4527 | print_one_stopped_thread (thread); | |
4528 | } | |
4529 | ||
4530 | /* For "info program". */ | |
08036331 | 4531 | thread_info *thread = inferior_thread (); |
6efcd9a8 | 4532 | if (thread->state == THREAD_STOPPED) |
5b6d1e4f | 4533 | set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus); |
221e1a37 PA |
4534 | } |
4535 | ||
048094ac PA |
4536 | /* Start the remote connection and sync state. */ |
4537 | ||
f6ac5f3d PA |
4538 | void |
4539 | remote_target::start_remote (int from_tty, int extended_p) | |
c906108c | 4540 | { |
c8d104ad PA |
4541 | struct remote_state *rs = get_remote_state (); |
4542 | struct packet_config *noack_config; | |
2d717e4f | 4543 | char *wait_status = NULL; |
8621d6a9 | 4544 | |
048094ac PA |
4545 | /* Signal other parts that we're going through the initial setup, |
4546 | and so things may not be stable yet. E.g., we don't try to | |
4547 | install tracepoints until we've relocated symbols. Also, a | |
4548 | Ctrl-C before we're connected and synced up can't interrupt the | |
4549 | target. Instead, it offers to drop the (potentially wedged) | |
4550 | connection. */ | |
4551 | rs->starting_up = 1; | |
4552 | ||
522002f9 | 4553 | QUIT; |
c906108c | 4554 | |
9a7071a8 JB |
4555 | if (interrupt_on_connect) |
4556 | send_interrupt_sequence (); | |
4557 | ||
57e12211 | 4558 | /* Ack any packet which the remote side has already sent. */ |
048094ac | 4559 | remote_serial_write ("+", 1); |
1e51243a | 4560 | |
c8d104ad PA |
4561 | /* The first packet we send to the target is the optional "supported |
4562 | packets" request. If the target can answer this, it will tell us | |
4563 | which later probes to skip. */ | |
4564 | remote_query_supported (); | |
4565 | ||
d914c394 | 4566 | /* If the stub wants to get a QAllow, compose one and send it. */ |
4082afcc | 4567 | if (packet_support (PACKET_QAllow) != PACKET_DISABLE) |
f6ac5f3d | 4568 | set_permissions (); |
d914c394 | 4569 | |
57809e5e JK |
4570 | /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any |
4571 | unknown 'v' packet with string "OK". "OK" gets interpreted by GDB | |
4572 | as a reply to known packet. For packet "vFile:setfs:" it is an | |
4573 | invalid reply and GDB would return error in | |
4574 | remote_hostio_set_filesystem, making remote files access impossible. | |
4575 | Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as | |
4576 | other "vFile" packets get correctly detected even on gdbserver < 7.7. */ | |
4577 | { | |
4578 | const char v_mustreplyempty[] = "vMustReplyEmpty"; | |
4579 | ||
4580 | putpkt (v_mustreplyempty); | |
8d64371b TT |
4581 | getpkt (&rs->buf, 0); |
4582 | if (strcmp (rs->buf.data (), "OK") == 0) | |
57809e5e | 4583 | remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE; |
8d64371b | 4584 | else if (strcmp (rs->buf.data (), "") != 0) |
57809e5e | 4585 | error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty, |
8d64371b | 4586 | rs->buf.data ()); |
57809e5e JK |
4587 | } |
4588 | ||
c8d104ad PA |
4589 | /* Next, we possibly activate noack mode. |
4590 | ||
4591 | If the QStartNoAckMode packet configuration is set to AUTO, | |
4592 | enable noack mode if the stub reported a wish for it with | |
4593 | qSupported. | |
4594 | ||
4595 | If set to TRUE, then enable noack mode even if the stub didn't | |
4596 | report it in qSupported. If the stub doesn't reply OK, the | |
4597 | session ends with an error. | |
4598 | ||
4599 | If FALSE, then don't activate noack mode, regardless of what the | |
4600 | stub claimed should be the default with qSupported. */ | |
4601 | ||
4602 | noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode]; | |
4082afcc | 4603 | if (packet_config_support (noack_config) != PACKET_DISABLE) |
c8d104ad PA |
4604 | { |
4605 | putpkt ("QStartNoAckMode"); | |
8d64371b | 4606 | getpkt (&rs->buf, 0); |
c8d104ad PA |
4607 | if (packet_ok (rs->buf, noack_config) == PACKET_OK) |
4608 | rs->noack_mode = 1; | |
4609 | } | |
4610 | ||
04bd08de | 4611 | if (extended_p) |
5fe04517 PA |
4612 | { |
4613 | /* Tell the remote that we are using the extended protocol. */ | |
4614 | putpkt ("!"); | |
8d64371b | 4615 | getpkt (&rs->buf, 0); |
5fe04517 PA |
4616 | } |
4617 | ||
9b224c5e PA |
4618 | /* Let the target know which signals it is allowed to pass down to |
4619 | the program. */ | |
4620 | update_signals_program_target (); | |
4621 | ||
d962ef82 DJ |
4622 | /* Next, if the target can specify a description, read it. We do |
4623 | this before anything involving memory or registers. */ | |
4624 | target_find_description (); | |
4625 | ||
6c95b8df PA |
4626 | /* Next, now that we know something about the target, update the |
4627 | address spaces in the program spaces. */ | |
4628 | update_address_spaces (); | |
4629 | ||
50c71eaf PA |
4630 | /* On OSs where the list of libraries is global to all |
4631 | processes, we fetch them early. */ | |
f5656ead | 4632 | if (gdbarch_has_global_solist (target_gdbarch ())) |
e696b3ad | 4633 | solib_add (NULL, from_tty, auto_solib_add); |
50c71eaf | 4634 | |
6efcd9a8 | 4635 | if (target_is_non_stop_p ()) |
74531fed | 4636 | { |
4082afcc | 4637 | if (packet_support (PACKET_QNonStop) != PACKET_ENABLE) |
3e43a32a MS |
4638 | error (_("Non-stop mode requested, but remote " |
4639 | "does not support non-stop")); | |
74531fed PA |
4640 | |
4641 | putpkt ("QNonStop:1"); | |
8d64371b | 4642 | getpkt (&rs->buf, 0); |
74531fed | 4643 | |
8d64371b TT |
4644 | if (strcmp (rs->buf.data (), "OK") != 0) |
4645 | error (_("Remote refused setting non-stop mode with: %s"), | |
4646 | rs->buf.data ()); | |
74531fed PA |
4647 | |
4648 | /* Find about threads and processes the stub is already | |
4649 | controlling. We default to adding them in the running state. | |
4650 | The '?' query below will then tell us about which threads are | |
4651 | stopped. */ | |
f6ac5f3d | 4652 | this->update_thread_list (); |
74531fed | 4653 | } |
4082afcc | 4654 | else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE) |
74531fed PA |
4655 | { |
4656 | /* Don't assume that the stub can operate in all-stop mode. | |
e6f3fa52 | 4657 | Request it explicitly. */ |
74531fed | 4658 | putpkt ("QNonStop:0"); |
8d64371b | 4659 | getpkt (&rs->buf, 0); |
74531fed | 4660 | |
8d64371b TT |
4661 | if (strcmp (rs->buf.data (), "OK") != 0) |
4662 | error (_("Remote refused setting all-stop mode with: %s"), | |
4663 | rs->buf.data ()); | |
74531fed PA |
4664 | } |
4665 | ||
a0743c90 YQ |
4666 | /* Upload TSVs regardless of whether the target is running or not. The |
4667 | remote stub, such as GDBserver, may have some predefined or builtin | |
4668 | TSVs, even if the target is not running. */ | |
f6ac5f3d | 4669 | if (get_trace_status (current_trace_status ()) != -1) |
a0743c90 YQ |
4670 | { |
4671 | struct uploaded_tsv *uploaded_tsvs = NULL; | |
4672 | ||
f6ac5f3d | 4673 | upload_trace_state_variables (&uploaded_tsvs); |
a0743c90 YQ |
4674 | merge_uploaded_trace_state_variables (&uploaded_tsvs); |
4675 | } | |
4676 | ||
2d717e4f DJ |
4677 | /* Check whether the target is running now. */ |
4678 | putpkt ("?"); | |
8d64371b | 4679 | getpkt (&rs->buf, 0); |
2d717e4f | 4680 | |
6efcd9a8 | 4681 | if (!target_is_non_stop_p ()) |
2d717e4f | 4682 | { |
74531fed | 4683 | if (rs->buf[0] == 'W' || rs->buf[0] == 'X') |
2d717e4f | 4684 | { |
04bd08de | 4685 | if (!extended_p) |
74531fed | 4686 | error (_("The target is not running (try extended-remote?)")); |
c35b1492 PA |
4687 | |
4688 | /* We're connected, but not running. Drop out before we | |
4689 | call start_remote. */ | |
e278ad5b | 4690 | rs->starting_up = 0; |
c35b1492 | 4691 | return; |
2d717e4f DJ |
4692 | } |
4693 | else | |
74531fed | 4694 | { |
74531fed | 4695 | /* Save the reply for later. */ |
8d64371b TT |
4696 | wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1); |
4697 | strcpy (wait_status, rs->buf.data ()); | |
74531fed PA |
4698 | } |
4699 | ||
b7ea362b | 4700 | /* Fetch thread list. */ |
e8032dde | 4701 | target_update_thread_list (); |
b7ea362b | 4702 | |
74531fed PA |
4703 | /* Let the stub know that we want it to return the thread. */ |
4704 | set_continue_thread (minus_one_ptid); | |
4705 | ||
5b6d1e4f | 4706 | if (thread_count (this) == 0) |
b7ea362b PA |
4707 | { |
4708 | /* Target has no concept of threads at all. GDB treats | |
4709 | non-threaded target as single-threaded; add a main | |
4710 | thread. */ | |
4711 | add_current_inferior_and_thread (wait_status); | |
4712 | } | |
4713 | else | |
4714 | { | |
4715 | /* We have thread information; select the thread the target | |
4716 | says should be current. If we're reconnecting to a | |
4717 | multi-threaded program, this will ideally be the thread | |
4718 | that last reported an event before GDB disconnected. */ | |
75c6c844 PA |
4719 | ptid_t curr_thread = get_current_thread (wait_status); |
4720 | if (curr_thread == null_ptid) | |
b7ea362b PA |
4721 | { |
4722 | /* Odd... The target was able to list threads, but not | |
4723 | tell us which thread was current (no "thread" | |
4724 | register in T stop reply?). Just pick the first | |
4725 | thread in the thread list then. */ | |
c9f35b34 KB |
4726 | |
4727 | if (remote_debug) | |
4728 | fprintf_unfiltered (gdb_stdlog, | |
4729 | "warning: couldn't determine remote " | |
4730 | "current thread; picking first in list.\n"); | |
4731 | ||
5b6d1e4f PA |
4732 | for (thread_info *tp : all_non_exited_threads (this, |
4733 | minus_one_ptid)) | |
75c6c844 PA |
4734 | { |
4735 | switch_to_thread (tp); | |
4736 | break; | |
4737 | } | |
b7ea362b | 4738 | } |
75c6c844 | 4739 | else |
5b6d1e4f | 4740 | switch_to_thread (find_thread_ptid (this, curr_thread)); |
b7ea362b | 4741 | } |
74531fed | 4742 | |
6e586cc5 YQ |
4743 | /* init_wait_for_inferior should be called before get_offsets in order |
4744 | to manage `inserted' flag in bp loc in a correct state. | |
4745 | breakpoint_init_inferior, called from init_wait_for_inferior, set | |
4746 | `inserted' flag to 0, while before breakpoint_re_set, called from | |
4747 | start_remote, set `inserted' flag to 1. In the initialization of | |
4748 | inferior, breakpoint_init_inferior should be called first, and then | |
4749 | breakpoint_re_set can be called. If this order is broken, state of | |
4750 | `inserted' flag is wrong, and cause some problems on breakpoint | |
4751 | manipulation. */ | |
4752 | init_wait_for_inferior (); | |
4753 | ||
74531fed PA |
4754 | get_offsets (); /* Get text, data & bss offsets. */ |
4755 | ||
d962ef82 DJ |
4756 | /* If we could not find a description using qXfer, and we know |
4757 | how to do it some other way, try again. This is not | |
4758 | supported for non-stop; it could be, but it is tricky if | |
4759 | there are no stopped threads when we connect. */ | |
f6ac5f3d | 4760 | if (remote_read_description_p (this) |
f5656ead | 4761 | && gdbarch_target_desc (target_gdbarch ()) == NULL) |
d962ef82 DJ |
4762 | { |
4763 | target_clear_description (); | |
4764 | target_find_description (); | |
4765 | } | |
4766 | ||
74531fed PA |
4767 | /* Use the previously fetched status. */ |
4768 | gdb_assert (wait_status != NULL); | |
8d64371b | 4769 | strcpy (rs->buf.data (), wait_status); |
74531fed PA |
4770 | rs->cached_wait_status = 1; |
4771 | ||
f6ac5f3d | 4772 | ::start_remote (from_tty); /* Initialize gdb process mechanisms. */ |
2d717e4f DJ |
4773 | } |
4774 | else | |
4775 | { | |
68c97600 PA |
4776 | /* Clear WFI global state. Do this before finding about new |
4777 | threads and inferiors, and setting the current inferior. | |
4778 | Otherwise we would clear the proceed status of the current | |
4779 | inferior when we want its stop_soon state to be preserved | |
4780 | (see notice_new_inferior). */ | |
4781 | init_wait_for_inferior (); | |
4782 | ||
74531fed PA |
4783 | /* In non-stop, we will either get an "OK", meaning that there |
4784 | are no stopped threads at this time; or, a regular stop | |
4785 | reply. In the latter case, there may be more than one thread | |
4786 | stopped --- we pull them all out using the vStopped | |
4787 | mechanism. */ | |
8d64371b | 4788 | if (strcmp (rs->buf.data (), "OK") != 0) |
74531fed | 4789 | { |
722247f1 | 4790 | struct notif_client *notif = ¬if_client_stop; |
2d717e4f | 4791 | |
722247f1 YQ |
4792 | /* remote_notif_get_pending_replies acks this one, and gets |
4793 | the rest out. */ | |
f48ff2a7 | 4794 | rs->notif_state->pending_event[notif_client_stop.id] |
8d64371b | 4795 | = remote_notif_parse (this, notif, rs->buf.data ()); |
722247f1 | 4796 | remote_notif_get_pending_events (notif); |
74531fed | 4797 | } |
2d717e4f | 4798 | |
5b6d1e4f | 4799 | if (thread_count (this) == 0) |
74531fed | 4800 | { |
04bd08de | 4801 | if (!extended_p) |
74531fed | 4802 | error (_("The target is not running (try extended-remote?)")); |
82f73884 | 4803 | |
c35b1492 PA |
4804 | /* We're connected, but not running. Drop out before we |
4805 | call start_remote. */ | |
e278ad5b | 4806 | rs->starting_up = 0; |
c35b1492 PA |
4807 | return; |
4808 | } | |
74531fed | 4809 | |
74531fed PA |
4810 | /* In non-stop mode, any cached wait status will be stored in |
4811 | the stop reply queue. */ | |
4812 | gdb_assert (wait_status == NULL); | |
f0223081 | 4813 | |
2455069d | 4814 | /* Report all signals during attach/startup. */ |
adc6a863 | 4815 | pass_signals ({}); |
221e1a37 PA |
4816 | |
4817 | /* If there are already stopped threads, mark them stopped and | |
4818 | report their stops before giving the prompt to the user. */ | |
6efcd9a8 | 4819 | process_initial_stop_replies (from_tty); |
221e1a37 PA |
4820 | |
4821 | if (target_can_async_p ()) | |
4822 | target_async (1); | |
74531fed | 4823 | } |
c8d104ad | 4824 | |
c8d104ad PA |
4825 | /* If we connected to a live target, do some additional setup. */ |
4826 | if (target_has_execution) | |
4827 | { | |
f4ccffad | 4828 | if (symfile_objfile) /* No use without a symbol-file. */ |
36d25514 | 4829 | remote_check_symbols (); |
c8d104ad | 4830 | } |
50c71eaf | 4831 | |
d5551862 SS |
4832 | /* Possibly the target has been engaged in a trace run started |
4833 | previously; find out where things are at. */ | |
f6ac5f3d | 4834 | if (get_trace_status (current_trace_status ()) != -1) |
d5551862 | 4835 | { |
00bf0b85 | 4836 | struct uploaded_tp *uploaded_tps = NULL; |
00bf0b85 | 4837 | |
00bf0b85 SS |
4838 | if (current_trace_status ()->running) |
4839 | printf_filtered (_("Trace is already running on the target.\n")); | |
4840 | ||
f6ac5f3d | 4841 | upload_tracepoints (&uploaded_tps); |
00bf0b85 SS |
4842 | |
4843 | merge_uploaded_tracepoints (&uploaded_tps); | |
d5551862 SS |
4844 | } |
4845 | ||
c0272db5 TW |
4846 | /* Possibly the target has been engaged in a btrace record started |
4847 | previously; find out where things are at. */ | |
4848 | remote_btrace_maybe_reopen (); | |
4849 | ||
1e51243a PA |
4850 | /* The thread and inferior lists are now synchronized with the |
4851 | target, our symbols have been relocated, and we're merged the | |
4852 | target's tracepoints with ours. We're done with basic start | |
4853 | up. */ | |
4854 | rs->starting_up = 0; | |
4855 | ||
a25a5a45 PA |
4856 | /* Maybe breakpoints are global and need to be inserted now. */ |
4857 | if (breakpoints_should_be_inserted_now ()) | |
50c71eaf | 4858 | insert_breakpoints (); |
c906108c SS |
4859 | } |
4860 | ||
121b3efd PA |
4861 | const char * |
4862 | remote_target::connection_string () | |
4863 | { | |
4864 | remote_state *rs = get_remote_state (); | |
4865 | ||
4866 | if (rs->remote_desc->name != NULL) | |
4867 | return rs->remote_desc->name; | |
4868 | else | |
4869 | return NULL; | |
4870 | } | |
4871 | ||
c906108c SS |
4872 | /* Open a connection to a remote debugger. |
4873 | NAME is the filename used for communication. */ | |
4874 | ||
f6ac5f3d PA |
4875 | void |
4876 | remote_target::open (const char *name, int from_tty) | |
c906108c | 4877 | { |
f6ac5f3d | 4878 | open_1 (name, from_tty, 0); |
43ff13b4 JM |
4879 | } |
4880 | ||
c906108c SS |
4881 | /* Open a connection to a remote debugger using the extended |
4882 | remote gdb protocol. NAME is the filename used for communication. */ | |
4883 | ||
f6ac5f3d PA |
4884 | void |
4885 | extended_remote_target::open (const char *name, int from_tty) | |
c906108c | 4886 | { |
f6ac5f3d | 4887 | open_1 (name, from_tty, 1 /*extended_p */); |
43ff13b4 JM |
4888 | } |
4889 | ||
ca4f7f8b PA |
4890 | /* Reset all packets back to "unknown support". Called when opening a |
4891 | new connection to a remote target. */ | |
c906108c | 4892 | |
d471ea57 | 4893 | static void |
ca4f7f8b | 4894 | reset_all_packet_configs_support (void) |
d471ea57 AC |
4895 | { |
4896 | int i; | |
a744cf53 | 4897 | |
444abaca | 4898 | for (i = 0; i < PACKET_MAX; i++) |
4082afcc | 4899 | remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN; |
d471ea57 AC |
4900 | } |
4901 | ||
ca4f7f8b PA |
4902 | /* Initialize all packet configs. */ |
4903 | ||
4904 | static void | |
4905 | init_all_packet_configs (void) | |
4906 | { | |
4907 | int i; | |
4908 | ||
4909 | for (i = 0; i < PACKET_MAX; i++) | |
4910 | { | |
4911 | remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO; | |
4912 | remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN; | |
4913 | } | |
4914 | } | |
4915 | ||
23860348 | 4916 | /* Symbol look-up. */ |
dc8acb97 | 4917 | |
6b8edb51 PA |
4918 | void |
4919 | remote_target::remote_check_symbols () | |
dc8acb97 | 4920 | { |
8d64371b | 4921 | char *tmp; |
dc8acb97 MS |
4922 | int end; |
4923 | ||
63154eca PA |
4924 | /* The remote side has no concept of inferiors that aren't running |
4925 | yet, it only knows about running processes. If we're connected | |
4926 | but our current inferior is not running, we should not invite the | |
4927 | remote target to request symbol lookups related to its | |
4928 | (unrelated) current process. */ | |
4929 | if (!target_has_execution) | |
4930 | return; | |
4931 | ||
4082afcc | 4932 | if (packet_support (PACKET_qSymbol) == PACKET_DISABLE) |
dc8acb97 MS |
4933 | return; |
4934 | ||
63154eca PA |
4935 | /* Make sure the remote is pointing at the right process. Note |
4936 | there's no way to select "no process". */ | |
3c9c4b83 PA |
4937 | set_general_process (); |
4938 | ||
6d820c5c DJ |
4939 | /* Allocate a message buffer. We can't reuse the input buffer in RS, |
4940 | because we need both at the same time. */ | |
66644cd3 | 4941 | gdb::char_vector msg (get_remote_packet_size ()); |
8d64371b | 4942 | gdb::char_vector reply (get_remote_packet_size ()); |
6d820c5c | 4943 | |
23860348 | 4944 | /* Invite target to request symbol lookups. */ |
dc8acb97 MS |
4945 | |
4946 | putpkt ("qSymbol::"); | |
8d64371b | 4947 | getpkt (&reply, 0); |
28170b88 | 4948 | packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]); |
dc8acb97 | 4949 | |
8d64371b | 4950 | while (startswith (reply.data (), "qSymbol:")) |
dc8acb97 | 4951 | { |
77e371c0 TT |
4952 | struct bound_minimal_symbol sym; |
4953 | ||
dc8acb97 | 4954 | tmp = &reply[8]; |
66644cd3 AB |
4955 | end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()), |
4956 | strlen (tmp) / 2); | |
dc8acb97 | 4957 | msg[end] = '\0'; |
66644cd3 | 4958 | sym = lookup_minimal_symbol (msg.data (), NULL, NULL); |
3b7344d5 | 4959 | if (sym.minsym == NULL) |
66644cd3 AB |
4960 | xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s", |
4961 | &reply[8]); | |
dc8acb97 | 4962 | else |
2bbe3cc1 | 4963 | { |
f5656ead | 4964 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
77e371c0 | 4965 | CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym); |
2bbe3cc1 DJ |
4966 | |
4967 | /* If this is a function address, return the start of code | |
4968 | instead of any data function descriptor. */ | |
f5656ead | 4969 | sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (), |
2bbe3cc1 | 4970 | sym_addr, |
8b88a78e | 4971 | current_top_target ()); |
2bbe3cc1 | 4972 | |
66644cd3 | 4973 | xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s", |
5af949e3 | 4974 | phex_nz (sym_addr, addr_size), &reply[8]); |
2bbe3cc1 | 4975 | } |
66644cd3 AB |
4976 | |
4977 | putpkt (msg.data ()); | |
8d64371b | 4978 | getpkt (&reply, 0); |
dc8acb97 MS |
4979 | } |
4980 | } | |
4981 | ||
9db8d71f | 4982 | static struct serial * |
baa336ce | 4983 | remote_serial_open (const char *name) |
9db8d71f DJ |
4984 | { |
4985 | static int udp_warning = 0; | |
4986 | ||
4987 | /* FIXME: Parsing NAME here is a hack. But we want to warn here instead | |
4988 | of in ser-tcp.c, because it is the remote protocol assuming that the | |
4989 | serial connection is reliable and not the serial connection promising | |
4990 | to be. */ | |
61012eef | 4991 | if (!udp_warning && startswith (name, "udp:")) |
9db8d71f | 4992 | { |
3e43a32a MS |
4993 | warning (_("The remote protocol may be unreliable over UDP.\n" |
4994 | "Some events may be lost, rendering further debugging " | |
4995 | "impossible.")); | |
9db8d71f DJ |
4996 | udp_warning = 1; |
4997 | } | |
4998 | ||
4999 | return serial_open (name); | |
5000 | } | |
5001 | ||
d914c394 SS |
5002 | /* Inform the target of our permission settings. The permission flags |
5003 | work without this, but if the target knows the settings, it can do | |
5004 | a couple things. First, it can add its own check, to catch cases | |
5005 | that somehow manage to get by the permissions checks in target | |
5006 | methods. Second, if the target is wired to disallow particular | |
5007 | settings (for instance, a system in the field that is not set up to | |
5008 | be able to stop at a breakpoint), it can object to any unavailable | |
5009 | permissions. */ | |
5010 | ||
5011 | void | |
f6ac5f3d | 5012 | remote_target::set_permissions () |
d914c394 SS |
5013 | { |
5014 | struct remote_state *rs = get_remote_state (); | |
5015 | ||
8d64371b | 5016 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:" |
bba74b36 YQ |
5017 | "WriteReg:%x;WriteMem:%x;" |
5018 | "InsertBreak:%x;InsertTrace:%x;" | |
5019 | "InsertFastTrace:%x;Stop:%x", | |
5020 | may_write_registers, may_write_memory, | |
5021 | may_insert_breakpoints, may_insert_tracepoints, | |
5022 | may_insert_fast_tracepoints, may_stop); | |
d914c394 | 5023 | putpkt (rs->buf); |
8d64371b | 5024 | getpkt (&rs->buf, 0); |
d914c394 SS |
5025 | |
5026 | /* If the target didn't like the packet, warn the user. Do not try | |
5027 | to undo the user's settings, that would just be maddening. */ | |
8d64371b TT |
5028 | if (strcmp (rs->buf.data (), "OK") != 0) |
5029 | warning (_("Remote refused setting permissions with: %s"), | |
5030 | rs->buf.data ()); | |
d914c394 SS |
5031 | } |
5032 | ||
be2a5f71 DJ |
5033 | /* This type describes each known response to the qSupported |
5034 | packet. */ | |
5035 | struct protocol_feature | |
5036 | { | |
5037 | /* The name of this protocol feature. */ | |
5038 | const char *name; | |
5039 | ||
5040 | /* The default for this protocol feature. */ | |
5041 | enum packet_support default_support; | |
5042 | ||
5043 | /* The function to call when this feature is reported, or after | |
5044 | qSupported processing if the feature is not supported. | |
5045 | The first argument points to this structure. The second | |
5046 | argument indicates whether the packet requested support be | |
5047 | enabled, disabled, or probed (or the default, if this function | |
5048 | is being called at the end of processing and this feature was | |
5049 | not reported). The third argument may be NULL; if not NULL, it | |
5050 | is a NUL-terminated string taken from the packet following | |
5051 | this feature's name and an equals sign. */ | |
6b8edb51 PA |
5052 | void (*func) (remote_target *remote, const struct protocol_feature *, |
5053 | enum packet_support, const char *); | |
be2a5f71 DJ |
5054 | |
5055 | /* The corresponding packet for this feature. Only used if | |
5056 | FUNC is remote_supported_packet. */ | |
5057 | int packet; | |
5058 | }; | |
5059 | ||
be2a5f71 | 5060 | static void |
6b8edb51 PA |
5061 | remote_supported_packet (remote_target *remote, |
5062 | const struct protocol_feature *feature, | |
be2a5f71 DJ |
5063 | enum packet_support support, |
5064 | const char *argument) | |
5065 | { | |
5066 | if (argument) | |
5067 | { | |
5068 | warning (_("Remote qSupported response supplied an unexpected value for" | |
5069 | " \"%s\"."), feature->name); | |
5070 | return; | |
5071 | } | |
5072 | ||
4082afcc | 5073 | remote_protocol_packets[feature->packet].support = support; |
be2a5f71 | 5074 | } |
be2a5f71 | 5075 | |
6b8edb51 PA |
5076 | void |
5077 | remote_target::remote_packet_size (const protocol_feature *feature, | |
5078 | enum packet_support support, const char *value) | |
be2a5f71 DJ |
5079 | { |
5080 | struct remote_state *rs = get_remote_state (); | |
5081 | ||
5082 | int packet_size; | |
5083 | char *value_end; | |
5084 | ||
5085 | if (support != PACKET_ENABLE) | |
5086 | return; | |
5087 | ||
5088 | if (value == NULL || *value == '\0') | |
5089 | { | |
5090 | warning (_("Remote target reported \"%s\" without a size."), | |
5091 | feature->name); | |
5092 | return; | |
5093 | } | |
5094 | ||
5095 | errno = 0; | |
5096 | packet_size = strtol (value, &value_end, 16); | |
5097 | if (errno != 0 || *value_end != '\0' || packet_size < 0) | |
5098 | { | |
5099 | warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."), | |
5100 | feature->name, value); | |
5101 | return; | |
5102 | } | |
5103 | ||
be2a5f71 DJ |
5104 | /* Record the new maximum packet size. */ |
5105 | rs->explicit_packet_size = packet_size; | |
5106 | } | |
5107 | ||
cb8c24b6 | 5108 | static void |
6b8edb51 PA |
5109 | remote_packet_size (remote_target *remote, const protocol_feature *feature, |
5110 | enum packet_support support, const char *value) | |
5111 | { | |
5112 | remote->remote_packet_size (feature, support, value); | |
5113 | } | |
5114 | ||
dc473cfb | 5115 | static const struct protocol_feature remote_protocol_features[] = { |
0876f84a | 5116 | { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 }, |
40e57cf2 | 5117 | { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet, |
fd79ecee | 5118 | PACKET_qXfer_auxv }, |
c78fa86a GB |
5119 | { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet, |
5120 | PACKET_qXfer_exec_file }, | |
23181151 DJ |
5121 | { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet, |
5122 | PACKET_qXfer_features }, | |
cfa9d6d9 DJ |
5123 | { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet, |
5124 | PACKET_qXfer_libraries }, | |
2268b414 JK |
5125 | { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet, |
5126 | PACKET_qXfer_libraries_svr4 }, | |
ced63ec0 | 5127 | { "augmented-libraries-svr4-read", PACKET_DISABLE, |
4082afcc | 5128 | remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature }, |
fd79ecee | 5129 | { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet, |
89be2091 | 5130 | PACKET_qXfer_memory_map }, |
07e059b5 VP |
5131 | { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet, |
5132 | PACKET_qXfer_osdata }, | |
dc146f7c VP |
5133 | { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet, |
5134 | PACKET_qXfer_threads }, | |
b3b9301e PA |
5135 | { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet, |
5136 | PACKET_qXfer_traceframe_info }, | |
89be2091 DJ |
5137 | { "QPassSignals", PACKET_DISABLE, remote_supported_packet, |
5138 | PACKET_QPassSignals }, | |
82075af2 JS |
5139 | { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet, |
5140 | PACKET_QCatchSyscalls }, | |
9b224c5e PA |
5141 | { "QProgramSignals", PACKET_DISABLE, remote_supported_packet, |
5142 | PACKET_QProgramSignals }, | |
bc3b087d SDJ |
5143 | { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet, |
5144 | PACKET_QSetWorkingDir }, | |
aefd8b33 SDJ |
5145 | { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet, |
5146 | PACKET_QStartupWithShell }, | |
0a2dde4a SDJ |
5147 | { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet, |
5148 | PACKET_QEnvironmentHexEncoded }, | |
5149 | { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet, | |
5150 | PACKET_QEnvironmentReset }, | |
5151 | { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet, | |
5152 | PACKET_QEnvironmentUnset }, | |
a6f3e723 SL |
5153 | { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet, |
5154 | PACKET_QStartNoAckMode }, | |
4082afcc PA |
5155 | { "multiprocess", PACKET_DISABLE, remote_supported_packet, |
5156 | PACKET_multiprocess_feature }, | |
5157 | { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop }, | |
4aa995e1 PA |
5158 | { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet, |
5159 | PACKET_qXfer_siginfo_read }, | |
5160 | { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet, | |
5161 | PACKET_qXfer_siginfo_write }, | |
4082afcc | 5162 | { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet, |
782b2b07 | 5163 | PACKET_ConditionalTracepoints }, |
4082afcc | 5164 | { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet, |
3788aec7 | 5165 | PACKET_ConditionalBreakpoints }, |
4082afcc | 5166 | { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet, |
d3ce09f5 | 5167 | PACKET_BreakpointCommands }, |
4082afcc | 5168 | { "FastTracepoints", PACKET_DISABLE, remote_supported_packet, |
7a697b8d | 5169 | PACKET_FastTracepoints }, |
4082afcc | 5170 | { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet, |
0fb4aa4b | 5171 | PACKET_StaticTracepoints }, |
4082afcc | 5172 | {"InstallInTrace", PACKET_DISABLE, remote_supported_packet, |
1e4d1764 | 5173 | PACKET_InstallInTrace}, |
4082afcc PA |
5174 | { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet, |
5175 | PACKET_DisconnectedTracing_feature }, | |
40ab02ce MS |
5176 | { "ReverseContinue", PACKET_DISABLE, remote_supported_packet, |
5177 | PACKET_bc }, | |
5178 | { "ReverseStep", PACKET_DISABLE, remote_supported_packet, | |
5179 | PACKET_bs }, | |
409873ef SS |
5180 | { "TracepointSource", PACKET_DISABLE, remote_supported_packet, |
5181 | PACKET_TracepointSource }, | |
d914c394 SS |
5182 | { "QAllow", PACKET_DISABLE, remote_supported_packet, |
5183 | PACKET_QAllow }, | |
4082afcc PA |
5184 | { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet, |
5185 | PACKET_EnableDisableTracepoints_feature }, | |
78d85199 YQ |
5186 | { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet, |
5187 | PACKET_qXfer_fdpic }, | |
169081d0 TG |
5188 | { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet, |
5189 | PACKET_qXfer_uib }, | |
03583c20 UW |
5190 | { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet, |
5191 | PACKET_QDisableRandomization }, | |
d1feda86 | 5192 | { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent}, |
f6f899bf HAQ |
5193 | { "QTBuffer:size", PACKET_DISABLE, |
5194 | remote_supported_packet, PACKET_QTBuffer_size}, | |
4082afcc | 5195 | { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature }, |
9accd112 MM |
5196 | { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off }, |
5197 | { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts }, | |
b20a6524 | 5198 | { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt }, |
9accd112 | 5199 | { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet, |
f4abbc16 MM |
5200 | PACKET_qXfer_btrace }, |
5201 | { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet, | |
d33501a5 MM |
5202 | PACKET_qXfer_btrace_conf }, |
5203 | { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet, | |
f7e6eed5 PA |
5204 | PACKET_Qbtrace_conf_bts_size }, |
5205 | { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature }, | |
0a93529c | 5206 | { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature }, |
89245bc0 DB |
5207 | { "fork-events", PACKET_DISABLE, remote_supported_packet, |
5208 | PACKET_fork_event_feature }, | |
5209 | { "vfork-events", PACKET_DISABLE, remote_supported_packet, | |
5210 | PACKET_vfork_event_feature }, | |
94585166 DB |
5211 | { "exec-events", PACKET_DISABLE, remote_supported_packet, |
5212 | PACKET_exec_event_feature }, | |
b20a6524 | 5213 | { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet, |
750ce8d1 | 5214 | PACKET_Qbtrace_conf_pt_size }, |
65706a29 PA |
5215 | { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported }, |
5216 | { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents }, | |
f2faf941 | 5217 | { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed }, |
be2a5f71 DJ |
5218 | }; |
5219 | ||
c8d5aac9 L |
5220 | static char *remote_support_xml; |
5221 | ||
5222 | /* Register string appended to "xmlRegisters=" in qSupported query. */ | |
5223 | ||
5224 | void | |
6e39997a | 5225 | register_remote_support_xml (const char *xml) |
c8d5aac9 L |
5226 | { |
5227 | #if defined(HAVE_LIBEXPAT) | |
5228 | if (remote_support_xml == NULL) | |
c4f7c687 | 5229 | remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL); |
c8d5aac9 L |
5230 | else |
5231 | { | |
5232 | char *copy = xstrdup (remote_support_xml + 13); | |
ca3a04f6 CB |
5233 | char *saveptr; |
5234 | char *p = strtok_r (copy, ",", &saveptr); | |
c8d5aac9 L |
5235 | |
5236 | do | |
5237 | { | |
5238 | if (strcmp (p, xml) == 0) | |
5239 | { | |
5240 | /* already there */ | |
5241 | xfree (copy); | |
5242 | return; | |
5243 | } | |
5244 | } | |
ca3a04f6 | 5245 | while ((p = strtok_r (NULL, ",", &saveptr)) != NULL); |
c8d5aac9 L |
5246 | xfree (copy); |
5247 | ||
94b0dee1 PA |
5248 | remote_support_xml = reconcat (remote_support_xml, |
5249 | remote_support_xml, ",", xml, | |
5250 | (char *) NULL); | |
c8d5aac9 L |
5251 | } |
5252 | #endif | |
5253 | } | |
5254 | ||
69b6ecb0 TT |
5255 | static void |
5256 | remote_query_supported_append (std::string *msg, const char *append) | |
c8d5aac9 | 5257 | { |
69b6ecb0 TT |
5258 | if (!msg->empty ()) |
5259 | msg->append (";"); | |
5260 | msg->append (append); | |
c8d5aac9 L |
5261 | } |
5262 | ||
6b8edb51 PA |
5263 | void |
5264 | remote_target::remote_query_supported () | |
be2a5f71 DJ |
5265 | { |
5266 | struct remote_state *rs = get_remote_state (); | |
5267 | char *next; | |
5268 | int i; | |
5269 | unsigned char seen [ARRAY_SIZE (remote_protocol_features)]; | |
5270 | ||
5271 | /* The packet support flags are handled differently for this packet | |
5272 | than for most others. We treat an error, a disabled packet, and | |
5273 | an empty response identically: any features which must be reported | |
5274 | to be used will be automatically disabled. An empty buffer | |
5275 | accomplishes this, since that is also the representation for a list | |
5276 | containing no features. */ | |
5277 | ||
5278 | rs->buf[0] = 0; | |
4082afcc | 5279 | if (packet_support (PACKET_qSupported) != PACKET_DISABLE) |
be2a5f71 | 5280 | { |
69b6ecb0 | 5281 | std::string q; |
c8d5aac9 | 5282 | |
73b8c1fd | 5283 | if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE) |
69b6ecb0 | 5284 | remote_query_supported_append (&q, "multiprocess+"); |
c8d5aac9 | 5285 | |
f7e6eed5 | 5286 | if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE) |
69b6ecb0 | 5287 | remote_query_supported_append (&q, "swbreak+"); |
f7e6eed5 | 5288 | if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE) |
69b6ecb0 | 5289 | remote_query_supported_append (&q, "hwbreak+"); |
f7e6eed5 | 5290 | |
69b6ecb0 | 5291 | remote_query_supported_append (&q, "qRelocInsn+"); |
dde08ee1 | 5292 | |
8020350c DB |
5293 | if (packet_set_cmd_state (PACKET_fork_event_feature) |
5294 | != AUTO_BOOLEAN_FALSE) | |
69b6ecb0 | 5295 | remote_query_supported_append (&q, "fork-events+"); |
8020350c DB |
5296 | if (packet_set_cmd_state (PACKET_vfork_event_feature) |
5297 | != AUTO_BOOLEAN_FALSE) | |
69b6ecb0 | 5298 | remote_query_supported_append (&q, "vfork-events+"); |
8020350c DB |
5299 | if (packet_set_cmd_state (PACKET_exec_event_feature) |
5300 | != AUTO_BOOLEAN_FALSE) | |
69b6ecb0 | 5301 | remote_query_supported_append (&q, "exec-events+"); |
89245bc0 | 5302 | |
750ce8d1 | 5303 | if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE) |
69b6ecb0 | 5304 | remote_query_supported_append (&q, "vContSupported+"); |
750ce8d1 | 5305 | |
65706a29 | 5306 | if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE) |
69b6ecb0 | 5307 | remote_query_supported_append (&q, "QThreadEvents+"); |
65706a29 | 5308 | |
f2faf941 | 5309 | if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE) |
69b6ecb0 | 5310 | remote_query_supported_append (&q, "no-resumed+"); |
f2faf941 | 5311 | |
b35d5edb PA |
5312 | /* Keep this one last to work around a gdbserver <= 7.10 bug in |
5313 | the qSupported:xmlRegisters=i386 handling. */ | |
7cc244de PA |
5314 | if (remote_support_xml != NULL |
5315 | && packet_support (PACKET_qXfer_features) != PACKET_DISABLE) | |
69b6ecb0 | 5316 | remote_query_supported_append (&q, remote_support_xml); |
82f73884 | 5317 | |
69b6ecb0 TT |
5318 | q = "qSupported:" + q; |
5319 | putpkt (q.c_str ()); | |
94b0dee1 | 5320 | |
8d64371b | 5321 | getpkt (&rs->buf, 0); |
be2a5f71 DJ |
5322 | |
5323 | /* If an error occured, warn, but do not return - just reset the | |
5324 | buffer to empty and go on to disable features. */ | |
5325 | if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported]) | |
5326 | == PACKET_ERROR) | |
5327 | { | |
8d64371b | 5328 | warning (_("Remote failure reply: %s"), rs->buf.data ()); |
be2a5f71 DJ |
5329 | rs->buf[0] = 0; |
5330 | } | |
5331 | } | |
5332 | ||
5333 | memset (seen, 0, sizeof (seen)); | |
5334 | ||
8d64371b | 5335 | next = rs->buf.data (); |
be2a5f71 DJ |
5336 | while (*next) |
5337 | { | |
5338 | enum packet_support is_supported; | |
5339 | char *p, *end, *name_end, *value; | |
5340 | ||
5341 | /* First separate out this item from the rest of the packet. If | |
5342 | there's another item after this, we overwrite the separator | |
5343 | (terminated strings are much easier to work with). */ | |
5344 | p = next; | |
5345 | end = strchr (p, ';'); | |
5346 | if (end == NULL) | |
5347 | { | |
5348 | end = p + strlen (p); | |
5349 | next = end; | |
5350 | } | |
5351 | else | |
5352 | { | |
89be2091 DJ |
5353 | *end = '\0'; |
5354 | next = end + 1; | |
5355 | ||
be2a5f71 DJ |
5356 | if (end == p) |
5357 | { | |
5358 | warning (_("empty item in \"qSupported\" response")); | |
5359 | continue; | |
5360 | } | |
be2a5f71 DJ |
5361 | } |
5362 | ||
5363 | name_end = strchr (p, '='); | |
5364 | if (name_end) | |
5365 | { | |
5366 | /* This is a name=value entry. */ | |
5367 | is_supported = PACKET_ENABLE; | |
5368 | value = name_end + 1; | |
5369 | *name_end = '\0'; | |
5370 | } | |
5371 | else | |
5372 | { | |
5373 | value = NULL; | |
5374 | switch (end[-1]) | |
5375 | { | |
5376 | case '+': | |
5377 | is_supported = PACKET_ENABLE; | |
5378 | break; | |
5379 | ||
5380 | case '-': | |
5381 | is_supported = PACKET_DISABLE; | |
5382 | break; | |
5383 | ||
5384 | case '?': | |
5385 | is_supported = PACKET_SUPPORT_UNKNOWN; | |
5386 | break; | |
5387 | ||
5388 | default: | |
3e43a32a MS |
5389 | warning (_("unrecognized item \"%s\" " |
5390 | "in \"qSupported\" response"), p); | |
be2a5f71 DJ |
5391 | continue; |
5392 | } | |
5393 | end[-1] = '\0'; | |
5394 | } | |
5395 | ||
5396 | for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++) | |
5397 | if (strcmp (remote_protocol_features[i].name, p) == 0) | |
5398 | { | |
5399 | const struct protocol_feature *feature; | |
5400 | ||
5401 | seen[i] = 1; | |
5402 | feature = &remote_protocol_features[i]; | |
6b8edb51 | 5403 | feature->func (this, feature, is_supported, value); |
be2a5f71 DJ |
5404 | break; |
5405 | } | |
5406 | } | |
5407 | ||
5408 | /* If we increased the packet size, make sure to increase the global | |
5409 | buffer size also. We delay this until after parsing the entire | |
5410 | qSupported packet, because this is the same buffer we were | |
5411 | parsing. */ | |
8d64371b TT |
5412 | if (rs->buf.size () < rs->explicit_packet_size) |
5413 | rs->buf.resize (rs->explicit_packet_size); | |
be2a5f71 DJ |
5414 | |
5415 | /* Handle the defaults for unmentioned features. */ | |
5416 | for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++) | |
5417 | if (!seen[i]) | |
5418 | { | |
5419 | const struct protocol_feature *feature; | |
5420 | ||
5421 | feature = &remote_protocol_features[i]; | |
6b8edb51 | 5422 | feature->func (this, feature, feature->default_support, NULL); |
be2a5f71 DJ |
5423 | } |
5424 | } | |
5425 | ||
048094ac PA |
5426 | /* Serial QUIT handler for the remote serial descriptor. |
5427 | ||
5428 | Defers handling a Ctrl-C until we're done with the current | |
5429 | command/response packet sequence, unless: | |
5430 | ||
5431 | - We're setting up the connection. Don't send a remote interrupt | |
5432 | request, as we're not fully synced yet. Quit immediately | |
5433 | instead. | |
5434 | ||
5435 | - The target has been resumed in the foreground | |
223ffa71 | 5436 | (target_terminal::is_ours is false) with a synchronous resume |
048094ac PA |
5437 | packet, and we're blocked waiting for the stop reply, thus a |
5438 | Ctrl-C should be immediately sent to the target. | |
5439 | ||
5440 | - We get a second Ctrl-C while still within the same serial read or | |
5441 | write. In that case the serial is seemingly wedged --- offer to | |
5442 | quit/disconnect. | |
5443 | ||
5444 | - We see a second Ctrl-C without target response, after having | |
5445 | previously interrupted the target. In that case the target/stub | |
5446 | is probably wedged --- offer to quit/disconnect. | |
5447 | */ | |
5448 | ||
6b8edb51 PA |
5449 | void |
5450 | remote_target::remote_serial_quit_handler () | |
048094ac PA |
5451 | { |
5452 | struct remote_state *rs = get_remote_state (); | |
5453 | ||
5454 | if (check_quit_flag ()) | |
5455 | { | |
5456 | /* If we're starting up, we're not fully synced yet. Quit | |
5457 | immediately. */ | |
5458 | if (rs->starting_up) | |
5459 | quit (); | |
5460 | else if (rs->got_ctrlc_during_io) | |
5461 | { | |
5462 | if (query (_("The target is not responding to GDB commands.\n" | |
5463 | "Stop debugging it? "))) | |
5b6d1e4f | 5464 | remote_unpush_and_throw (this); |
048094ac PA |
5465 | } |
5466 | /* If ^C has already been sent once, offer to disconnect. */ | |
223ffa71 | 5467 | else if (!target_terminal::is_ours () && rs->ctrlc_pending_p) |
048094ac PA |
5468 | interrupt_query (); |
5469 | /* All-stop protocol, and blocked waiting for stop reply. Send | |
5470 | an interrupt request. */ | |
223ffa71 | 5471 | else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply) |
e671cd59 | 5472 | target_interrupt (); |
048094ac PA |
5473 | else |
5474 | rs->got_ctrlc_during_io = 1; | |
5475 | } | |
5476 | } | |
5477 | ||
6b8edb51 PA |
5478 | /* The remote_target that is current while the quit handler is |
5479 | overridden with remote_serial_quit_handler. */ | |
5480 | static remote_target *curr_quit_handler_target; | |
5481 | ||
5482 | static void | |
5483 | remote_serial_quit_handler () | |
5484 | { | |
5485 | curr_quit_handler_target->remote_serial_quit_handler (); | |
5486 | } | |
5487 | ||
5b6d1e4f PA |
5488 | /* Remove the remote target from the target stack of each inferior |
5489 | that is using it. Upper targets depend on it so remove them | |
5490 | first. */ | |
78a095c3 JK |
5491 | |
5492 | static void | |
5b6d1e4f | 5493 | remote_unpush_target (remote_target *target) |
78a095c3 | 5494 | { |
5b6d1e4f PA |
5495 | /* We have to unpush the target from all inferiors, even those that |
5496 | aren't running. */ | |
5497 | scoped_restore_current_inferior restore_current_inferior; | |
5498 | ||
5499 | for (inferior *inf : all_inferiors (target)) | |
5500 | { | |
5501 | switch_to_inferior_no_thread (inf); | |
5502 | pop_all_targets_at_and_above (process_stratum); | |
5503 | generic_mourn_inferior (); | |
5504 | } | |
78a095c3 | 5505 | } |
be2a5f71 | 5506 | |
048094ac | 5507 | static void |
5b6d1e4f | 5508 | remote_unpush_and_throw (remote_target *target) |
048094ac | 5509 | { |
5b6d1e4f | 5510 | remote_unpush_target (target); |
048094ac PA |
5511 | throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target.")); |
5512 | } | |
5513 | ||
f6ac5f3d PA |
5514 | void |
5515 | remote_target::open_1 (const char *name, int from_tty, int extended_p) | |
c906108c | 5516 | { |
6b8edb51 | 5517 | remote_target *curr_remote = get_current_remote_target (); |
a6f3e723 | 5518 | |
c906108c | 5519 | if (name == 0) |
8a3fe4f8 | 5520 | error (_("To open a remote debug connection, you need to specify what\n" |
22e04375 | 5521 | "serial device is attached to the remote system\n" |
8a3fe4f8 | 5522 | "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).")); |
c906108c | 5523 | |
2d717e4f | 5524 | /* If we're connected to a running target, target_preopen will kill it. |
78a095c3 JK |
5525 | Ask this question first, before target_preopen has a chance to kill |
5526 | anything. */ | |
5b6d1e4f | 5527 | if (curr_remote != NULL && !target_has_execution) |
2d717e4f | 5528 | { |
78a095c3 JK |
5529 | if (from_tty |
5530 | && !query (_("Already connected to a remote target. Disconnect? "))) | |
2d717e4f DJ |
5531 | error (_("Still connected.")); |
5532 | } | |
5533 | ||
78a095c3 | 5534 | /* Here the possibly existing remote target gets unpushed. */ |
c906108c SS |
5535 | target_preopen (from_tty); |
5536 | ||
ad9a8f3f | 5537 | remote_fileio_reset (); |
1dd41f16 NS |
5538 | reopen_exec_file (); |
5539 | reread_symbols (); | |
5540 | ||
6b8edb51 PA |
5541 | remote_target *remote |
5542 | = (extended_p ? new extended_remote_target () : new remote_target ()); | |
5543 | target_ops_up target_holder (remote); | |
5544 | ||
5545 | remote_state *rs = remote->get_remote_state (); | |
5546 | ||
5547 | /* See FIXME above. */ | |
5548 | if (!target_async_permitted) | |
5549 | rs->wait_forever_enabled_p = 1; | |
5550 | ||
5d93a237 TT |
5551 | rs->remote_desc = remote_serial_open (name); |
5552 | if (!rs->remote_desc) | |
c906108c SS |
5553 | perror_with_name (name); |
5554 | ||
5555 | if (baud_rate != -1) | |
5556 | { | |
5d93a237 | 5557 | if (serial_setbaudrate (rs->remote_desc, baud_rate)) |
c906108c | 5558 | { |
9b74d5d3 KB |
5559 | /* The requested speed could not be set. Error out to |
5560 | top level after closing remote_desc. Take care to | |
5561 | set remote_desc to NULL to avoid closing remote_desc | |
5562 | more than once. */ | |
5d93a237 TT |
5563 | serial_close (rs->remote_desc); |
5564 | rs->remote_desc = NULL; | |
c906108c SS |
5565 | perror_with_name (name); |
5566 | } | |
5567 | } | |
5568 | ||
236af5e3 | 5569 | serial_setparity (rs->remote_desc, serial_parity); |
5d93a237 | 5570 | serial_raw (rs->remote_desc); |
c906108c SS |
5571 | |
5572 | /* If there is something sitting in the buffer we might take it as a | |
5573 | response to a command, which would be bad. */ | |
5d93a237 | 5574 | serial_flush_input (rs->remote_desc); |
c906108c SS |
5575 | |
5576 | if (from_tty) | |
5577 | { | |
5578 | puts_filtered ("Remote debugging using "); | |
5579 | puts_filtered (name); | |
5580 | puts_filtered ("\n"); | |
5581 | } | |
d9f719f1 | 5582 | |
6b8edb51 | 5583 | /* Switch to using the remote target now. */ |
dea57a62 | 5584 | push_target (std::move (target_holder)); |
c906108c | 5585 | |
74531fed | 5586 | /* Register extra event sources in the event loop. */ |
6b8edb51 | 5587 | rs->remote_async_inferior_event_token |
74531fed | 5588 | = create_async_event_handler (remote_async_inferior_event_handler, |
6b8edb51 PA |
5589 | remote); |
5590 | rs->notif_state = remote_notif_state_allocate (remote); | |
74531fed | 5591 | |
be2a5f71 DJ |
5592 | /* Reset the target state; these things will be queried either by |
5593 | remote_query_supported or as they are needed. */ | |
ca4f7f8b | 5594 | reset_all_packet_configs_support (); |
74531fed | 5595 | rs->cached_wait_status = 0; |
be2a5f71 | 5596 | rs->explicit_packet_size = 0; |
a6f3e723 | 5597 | rs->noack_mode = 0; |
82f73884 | 5598 | rs->extended = extended_p; |
e24a49d8 | 5599 | rs->waiting_for_stop_reply = 0; |
3a29589a | 5600 | rs->ctrlc_pending_p = 0; |
048094ac | 5601 | rs->got_ctrlc_during_io = 0; |
802188a7 | 5602 | |
47f8a51d TT |
5603 | rs->general_thread = not_sent_ptid; |
5604 | rs->continue_thread = not_sent_ptid; | |
262e1174 | 5605 | rs->remote_traceframe_number = -1; |
c906108c | 5606 | |
3a00c802 PA |
5607 | rs->last_resume_exec_dir = EXEC_FORWARD; |
5608 | ||
9d1f7ab2 | 5609 | /* Probe for ability to use "ThreadInfo" query, as required. */ |
b80fafe3 TT |
5610 | rs->use_threadinfo_query = 1; |
5611 | rs->use_threadextra_query = 1; | |
9d1f7ab2 | 5612 | |
dd194f6b | 5613 | rs->readahead_cache.invalidate (); |
80152258 | 5614 | |
c6ebd6cf | 5615 | if (target_async_permitted) |
92d1e331 | 5616 | { |
92d1e331 DJ |
5617 | /* FIXME: cagney/1999-09-23: During the initial connection it is |
5618 | assumed that the target is already ready and able to respond to | |
0df8b418 | 5619 | requests. Unfortunately remote_start_remote() eventually calls |
92d1e331 | 5620 | wait_for_inferior() with no timeout. wait_forever_enabled_p gets |
0df8b418 | 5621 | around this. Eventually a mechanism that allows |
92d1e331 | 5622 | wait_for_inferior() to expect/get timeouts will be |
23860348 | 5623 | implemented. */ |
6b8edb51 | 5624 | rs->wait_forever_enabled_p = 0; |
92d1e331 DJ |
5625 | } |
5626 | ||
23860348 | 5627 | /* First delete any symbols previously loaded from shared libraries. */ |
f78f6cf1 | 5628 | no_shared_libraries (NULL, 0); |
f78f6cf1 | 5629 | |
36918e70 | 5630 | /* Start the remote connection. If error() or QUIT, discard this |
165b8e33 AC |
5631 | target (we'd otherwise be in an inconsistent state) and then |
5632 | propogate the error on up the exception chain. This ensures that | |
5633 | the caller doesn't stumble along blindly assuming that the | |
5634 | function succeeded. The CLI doesn't have this problem but other | |
5635 | UI's, such as MI do. | |
36918e70 AC |
5636 | |
5637 | FIXME: cagney/2002-05-19: Instead of re-throwing the exception, | |
5638 | this function should return an error indication letting the | |
ce2826aa | 5639 | caller restore the previous state. Unfortunately the command |
36918e70 AC |
5640 | ``target remote'' is directly wired to this function making that |
5641 | impossible. On a positive note, the CLI side of this problem has | |
5642 | been fixed - the function set_cmd_context() makes it possible for | |
5643 | all the ``target ....'' commands to share a common callback | |
5644 | function. See cli-dump.c. */ | |
109c3e39 | 5645 | { |
2d717e4f | 5646 | |
a70b8144 | 5647 | try |
04bd08de | 5648 | { |
6b8edb51 | 5649 | remote->start_remote (from_tty, extended_p); |
04bd08de | 5650 | } |
230d2906 | 5651 | catch (const gdb_exception &ex) |
109c3e39 | 5652 | { |
c8d104ad PA |
5653 | /* Pop the partially set up target - unless something else did |
5654 | already before throwing the exception. */ | |
6b8edb51 | 5655 | if (ex.error != TARGET_CLOSE_ERROR) |
5b6d1e4f | 5656 | remote_unpush_target (remote); |
eedc3f4f | 5657 | throw; |
109c3e39 AC |
5658 | } |
5659 | } | |
c906108c | 5660 | |
6b8edb51 | 5661 | remote_btrace_reset (rs); |
f4abbc16 | 5662 | |
c6ebd6cf | 5663 | if (target_async_permitted) |
6b8edb51 | 5664 | rs->wait_forever_enabled_p = 1; |
43ff13b4 JM |
5665 | } |
5666 | ||
de0d863e DB |
5667 | /* Detach the specified process. */ |
5668 | ||
6b8edb51 PA |
5669 | void |
5670 | remote_target::remote_detach_pid (int pid) | |
de0d863e DB |
5671 | { |
5672 | struct remote_state *rs = get_remote_state (); | |
5673 | ||
4c7333b3 PA |
5674 | /* This should not be necessary, but the handling for D;PID in |
5675 | GDBserver versions prior to 8.2 incorrectly assumes that the | |
5676 | selected process points to the same process we're detaching, | |
5677 | leading to misbehavior (and possibly GDBserver crashing) when it | |
5678 | does not. Since it's easy and cheap, work around it by forcing | |
5679 | GDBserver to select GDB's current process. */ | |
5680 | set_general_process (); | |
5681 | ||
de0d863e | 5682 | if (remote_multi_process_p (rs)) |
8d64371b | 5683 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid); |
de0d863e | 5684 | else |
8d64371b | 5685 | strcpy (rs->buf.data (), "D"); |
de0d863e DB |
5686 | |
5687 | putpkt (rs->buf); | |
8d64371b | 5688 | getpkt (&rs->buf, 0); |
de0d863e DB |
5689 | |
5690 | if (rs->buf[0] == 'O' && rs->buf[1] == 'K') | |
5691 | ; | |
5692 | else if (rs->buf[0] == '\0') | |
5693 | error (_("Remote doesn't know how to detach")); | |
5694 | else | |
5695 | error (_("Can't detach process.")); | |
5696 | } | |
5697 | ||
5698 | /* This detaches a program to which we previously attached, using | |
5699 | inferior_ptid to identify the process. After this is done, GDB | |
5700 | can be used to debug some other program. We better not have left | |
5701 | any breakpoints in the target program or it'll die when it hits | |
5702 | one. */ | |
c906108c | 5703 | |
6b8edb51 | 5704 | void |
00431a78 | 5705 | remote_target::remote_detach_1 (inferior *inf, int from_tty) |
c906108c | 5706 | { |
e99b03dc | 5707 | int pid = inferior_ptid.pid (); |
d01949b6 | 5708 | struct remote_state *rs = get_remote_state (); |
de0d863e | 5709 | int is_fork_parent; |
c906108c | 5710 | |
2d717e4f DJ |
5711 | if (!target_has_execution) |
5712 | error (_("No process to detach from.")); | |
5713 | ||
0f48b757 | 5714 | target_announce_detach (from_tty); |
7cee1e54 | 5715 | |
c906108c | 5716 | /* Tell the remote target to detach. */ |
de0d863e | 5717 | remote_detach_pid (pid); |
82f73884 | 5718 | |
8020350c | 5719 | /* Exit only if this is the only active inferior. */ |
5b6d1e4f | 5720 | if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1) |
7cee1e54 | 5721 | puts_filtered (_("Ending remote debugging.\n")); |
82f73884 | 5722 | |
5b6d1e4f | 5723 | thread_info *tp = find_thread_ptid (this, inferior_ptid); |
00431a78 | 5724 | |
de0d863e DB |
5725 | /* Check to see if we are detaching a fork parent. Note that if we |
5726 | are detaching a fork child, tp == NULL. */ | |
5727 | is_fork_parent = (tp != NULL | |
5728 | && tp->pending_follow.kind == TARGET_WAITKIND_FORKED); | |
5729 | ||
5730 | /* If doing detach-on-fork, we don't mourn, because that will delete | |
5731 | breakpoints that should be available for the followed inferior. */ | |
5732 | if (!is_fork_parent) | |
f67c0c91 | 5733 | { |
249b5733 PA |
5734 | /* Save the pid as a string before mourning, since that will |
5735 | unpush the remote target, and we need the string after. */ | |
f2907e49 | 5736 | std::string infpid = target_pid_to_str (ptid_t (pid)); |
f67c0c91 SDJ |
5737 | |
5738 | target_mourn_inferior (inferior_ptid); | |
5739 | if (print_inferior_events) | |
5740 | printf_unfiltered (_("[Inferior %d (%s) detached]\n"), | |
5741 | inf->num, infpid.c_str ()); | |
5742 | } | |
de0d863e DB |
5743 | else |
5744 | { | |
5745 | inferior_ptid = null_ptid; | |
00431a78 | 5746 | detach_inferior (current_inferior ()); |
de0d863e | 5747 | } |
2d717e4f DJ |
5748 | } |
5749 | ||
f6ac5f3d PA |
5750 | void |
5751 | remote_target::detach (inferior *inf, int from_tty) | |
2d717e4f | 5752 | { |
00431a78 | 5753 | remote_detach_1 (inf, from_tty); |
2d717e4f DJ |
5754 | } |
5755 | ||
f6ac5f3d PA |
5756 | void |
5757 | extended_remote_target::detach (inferior *inf, int from_tty) | |
2d717e4f | 5758 | { |
00431a78 | 5759 | remote_detach_1 (inf, from_tty); |
de0d863e DB |
5760 | } |
5761 | ||
5762 | /* Target follow-fork function for remote targets. On entry, and | |
5763 | at return, the current inferior is the fork parent. | |
5764 | ||
5765 | Note that although this is currently only used for extended-remote, | |
5766 | it is named remote_follow_fork in anticipation of using it for the | |
5767 | remote target as well. */ | |
5768 | ||
f6ac5f3d PA |
5769 | int |
5770 | remote_target::follow_fork (int follow_child, int detach_fork) | |
de0d863e DB |
5771 | { |
5772 | struct remote_state *rs = get_remote_state (); | |
c269dbdb | 5773 | enum target_waitkind kind = inferior_thread ()->pending_follow.kind; |
de0d863e | 5774 | |
c269dbdb DB |
5775 | if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs)) |
5776 | || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs))) | |
de0d863e DB |
5777 | { |
5778 | /* When following the parent and detaching the child, we detach | |
5779 | the child here. For the case of following the child and | |
5780 | detaching the parent, the detach is done in the target- | |
5781 | independent follow fork code in infrun.c. We can't use | |
5782 | target_detach when detaching an unfollowed child because | |
5783 | the client side doesn't know anything about the child. */ | |
5784 | if (detach_fork && !follow_child) | |
5785 | { | |
5786 | /* Detach the fork child. */ | |
5787 | ptid_t child_ptid; | |
5788 | pid_t child_pid; | |
5789 | ||
5790 | child_ptid = inferior_thread ()->pending_follow.value.related_pid; | |
e99b03dc | 5791 | child_pid = child_ptid.pid (); |
de0d863e DB |
5792 | |
5793 | remote_detach_pid (child_pid); | |
de0d863e DB |
5794 | } |
5795 | } | |
5796 | return 0; | |
c906108c SS |
5797 | } |
5798 | ||
94585166 DB |
5799 | /* Target follow-exec function for remote targets. Save EXECD_PATHNAME |
5800 | in the program space of the new inferior. On entry and at return the | |
5801 | current inferior is the exec'ing inferior. INF is the new exec'd | |
5802 | inferior, which may be the same as the exec'ing inferior unless | |
5803 | follow-exec-mode is "new". */ | |
5804 | ||
f6ac5f3d | 5805 | void |
4ca51187 | 5806 | remote_target::follow_exec (struct inferior *inf, const char *execd_pathname) |
94585166 DB |
5807 | { |
5808 | /* We know that this is a target file name, so if it has the "target:" | |
5809 | prefix we strip it off before saving it in the program space. */ | |
5810 | if (is_target_filename (execd_pathname)) | |
5811 | execd_pathname += strlen (TARGET_SYSROOT_PREFIX); | |
5812 | ||
5813 | set_pspace_remote_exec_file (inf->pspace, execd_pathname); | |
5814 | } | |
5815 | ||
6ad8ae5c DJ |
5816 | /* Same as remote_detach, but don't send the "D" packet; just disconnect. */ |
5817 | ||
f6ac5f3d PA |
5818 | void |
5819 | remote_target::disconnect (const char *args, int from_tty) | |
43ff13b4 | 5820 | { |
43ff13b4 | 5821 | if (args) |
2d717e4f | 5822 | error (_("Argument given to \"disconnect\" when remotely debugging.")); |
43ff13b4 | 5823 | |
8020350c | 5824 | /* Make sure we unpush even the extended remote targets. Calling |
5b6d1e4f PA |
5825 | target_mourn_inferior won't unpush, and |
5826 | remote_target::mourn_inferior won't unpush if there is more than | |
5827 | one inferior left. */ | |
5828 | remote_unpush_target (this); | |
2d717e4f | 5829 | |
43ff13b4 JM |
5830 | if (from_tty) |
5831 | puts_filtered ("Ending remote debugging.\n"); | |
5832 | } | |
5833 | ||
2d717e4f DJ |
5834 | /* Attach to the process specified by ARGS. If FROM_TTY is non-zero, |
5835 | be chatty about it. */ | |
5836 | ||
f6ac5f3d PA |
5837 | void |
5838 | extended_remote_target::attach (const char *args, int from_tty) | |
2d717e4f DJ |
5839 | { |
5840 | struct remote_state *rs = get_remote_state (); | |
be86555c | 5841 | int pid; |
96ef3384 | 5842 | char *wait_status = NULL; |
2d717e4f | 5843 | |
74164c56 | 5844 | pid = parse_pid_to_attach (args); |
2d717e4f | 5845 | |
74164c56 JK |
5846 | /* Remote PID can be freely equal to getpid, do not check it here the same |
5847 | way as in other targets. */ | |
2d717e4f | 5848 | |
4082afcc | 5849 | if (packet_support (PACKET_vAttach) == PACKET_DISABLE) |
2d717e4f DJ |
5850 | error (_("This target does not support attaching to a process")); |
5851 | ||
7cee1e54 PA |
5852 | if (from_tty) |
5853 | { | |
d9fa87f4 | 5854 | const char *exec_file = get_exec_file (0); |
7cee1e54 PA |
5855 | |
5856 | if (exec_file) | |
5857 | printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file, | |
a068643d | 5858 | target_pid_to_str (ptid_t (pid)).c_str ()); |
7cee1e54 PA |
5859 | else |
5860 | printf_unfiltered (_("Attaching to %s\n"), | |
a068643d | 5861 | target_pid_to_str (ptid_t (pid)).c_str ()); |
7cee1e54 PA |
5862 | } |
5863 | ||
8d64371b | 5864 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid); |
2d717e4f | 5865 | putpkt (rs->buf); |
8d64371b | 5866 | getpkt (&rs->buf, 0); |
2d717e4f | 5867 | |
4082afcc PA |
5868 | switch (packet_ok (rs->buf, |
5869 | &remote_protocol_packets[PACKET_vAttach])) | |
2d717e4f | 5870 | { |
4082afcc | 5871 | case PACKET_OK: |
6efcd9a8 | 5872 | if (!target_is_non_stop_p ()) |
74531fed PA |
5873 | { |
5874 | /* Save the reply for later. */ | |
8d64371b TT |
5875 | wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1); |
5876 | strcpy (wait_status, rs->buf.data ()); | |
74531fed | 5877 | } |
8d64371b | 5878 | else if (strcmp (rs->buf.data (), "OK") != 0) |
74531fed | 5879 | error (_("Attaching to %s failed with: %s"), |
a068643d | 5880 | target_pid_to_str (ptid_t (pid)).c_str (), |
8d64371b | 5881 | rs->buf.data ()); |
4082afcc PA |
5882 | break; |
5883 | case PACKET_UNKNOWN: | |
5884 | error (_("This target does not support attaching to a process")); | |
5885 | default: | |
50fa3001 SDJ |
5886 | error (_("Attaching to %s failed"), |
5887 | target_pid_to_str (ptid_t (pid)).c_str ()); | |
2d717e4f | 5888 | } |
2d717e4f | 5889 | |
9ab8741a | 5890 | set_current_inferior (remote_add_inferior (false, pid, 1, 0)); |
bad34192 | 5891 | |
f2907e49 | 5892 | inferior_ptid = ptid_t (pid); |
79d7f229 | 5893 | |
6efcd9a8 | 5894 | if (target_is_non_stop_p ()) |
bad34192 PA |
5895 | { |
5896 | struct thread_info *thread; | |
79d7f229 | 5897 | |
bad34192 | 5898 | /* Get list of threads. */ |
f6ac5f3d | 5899 | update_thread_list (); |
82f73884 | 5900 | |
00431a78 | 5901 | thread = first_thread_of_inferior (current_inferior ()); |
bad34192 PA |
5902 | if (thread) |
5903 | inferior_ptid = thread->ptid; | |
5904 | else | |
f2907e49 | 5905 | inferior_ptid = ptid_t (pid); |
bad34192 PA |
5906 | |
5907 | /* Invalidate our notion of the remote current thread. */ | |
47f8a51d | 5908 | record_currthread (rs, minus_one_ptid); |
bad34192 | 5909 | } |
74531fed | 5910 | else |
bad34192 PA |
5911 | { |
5912 | /* Now, if we have thread information, update inferior_ptid. */ | |
5913 | inferior_ptid = remote_current_thread (inferior_ptid); | |
5914 | ||
5915 | /* Add the main thread to the thread list. */ | |
5b6d1e4f | 5916 | thread_info *thr = add_thread_silent (this, inferior_ptid); |
00aecdcf PA |
5917 | /* Don't consider the thread stopped until we've processed the |
5918 | saved stop reply. */ | |
5b6d1e4f | 5919 | set_executing (this, thr->ptid, true); |
bad34192 | 5920 | } |
c0a2216e | 5921 | |
96ef3384 UW |
5922 | /* Next, if the target can specify a description, read it. We do |
5923 | this before anything involving memory or registers. */ | |
5924 | target_find_description (); | |
5925 | ||
6efcd9a8 | 5926 | if (!target_is_non_stop_p ()) |
74531fed PA |
5927 | { |
5928 | /* Use the previously fetched status. */ | |
5929 | gdb_assert (wait_status != NULL); | |
5930 | ||
5931 | if (target_can_async_p ()) | |
5932 | { | |
722247f1 | 5933 | struct notif_event *reply |
6b8edb51 | 5934 | = remote_notif_parse (this, ¬if_client_stop, wait_status); |
74531fed | 5935 | |
722247f1 | 5936 | push_stop_reply ((struct stop_reply *) reply); |
74531fed | 5937 | |
6a3753b3 | 5938 | target_async (1); |
74531fed PA |
5939 | } |
5940 | else | |
5941 | { | |
5942 | gdb_assert (wait_status != NULL); | |
8d64371b | 5943 | strcpy (rs->buf.data (), wait_status); |
74531fed PA |
5944 | rs->cached_wait_status = 1; |
5945 | } | |
5946 | } | |
5947 | else | |
5948 | gdb_assert (wait_status == NULL); | |
2d717e4f DJ |
5949 | } |
5950 | ||
b9c1d481 AS |
5951 | /* Implementation of the to_post_attach method. */ |
5952 | ||
f6ac5f3d PA |
5953 | void |
5954 | extended_remote_target::post_attach (int pid) | |
b9c1d481 | 5955 | { |
6efcd9a8 PA |
5956 | /* Get text, data & bss offsets. */ |
5957 | get_offsets (); | |
5958 | ||
b9c1d481 AS |
5959 | /* In certain cases GDB might not have had the chance to start |
5960 | symbol lookup up until now. This could happen if the debugged | |
5961 | binary is not using shared libraries, the vsyscall page is not | |
5962 | present (on Linux) and the binary itself hadn't changed since the | |
5963 | debugging process was started. */ | |
5964 | if (symfile_objfile != NULL) | |
5965 | remote_check_symbols(); | |
5966 | } | |
5967 | ||
c906108c | 5968 | \f |
506fb367 DJ |
5969 | /* Check for the availability of vCont. This function should also check |
5970 | the response. */ | |
c906108c | 5971 | |
6b8edb51 PA |
5972 | void |
5973 | remote_target::remote_vcont_probe () | |
c906108c | 5974 | { |
6b8edb51 | 5975 | remote_state *rs = get_remote_state (); |
2e9f7625 | 5976 | char *buf; |
6d820c5c | 5977 | |
8d64371b | 5978 | strcpy (rs->buf.data (), "vCont?"); |
2e9f7625 | 5979 | putpkt (rs->buf); |
8d64371b TT |
5980 | getpkt (&rs->buf, 0); |
5981 | buf = rs->buf.data (); | |
c906108c | 5982 | |
506fb367 | 5983 | /* Make sure that the features we assume are supported. */ |
61012eef | 5984 | if (startswith (buf, "vCont")) |
506fb367 DJ |
5985 | { |
5986 | char *p = &buf[5]; | |
750ce8d1 | 5987 | int support_c, support_C; |
506fb367 | 5988 | |
750ce8d1 YQ |
5989 | rs->supports_vCont.s = 0; |
5990 | rs->supports_vCont.S = 0; | |
506fb367 DJ |
5991 | support_c = 0; |
5992 | support_C = 0; | |
d458bd84 | 5993 | rs->supports_vCont.t = 0; |
c1e36e3e | 5994 | rs->supports_vCont.r = 0; |
506fb367 DJ |
5995 | while (p && *p == ';') |
5996 | { | |
5997 | p++; | |
5998 | if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0)) | |
750ce8d1 | 5999 | rs->supports_vCont.s = 1; |
506fb367 | 6000 | else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0)) |
750ce8d1 | 6001 | rs->supports_vCont.S = 1; |
506fb367 DJ |
6002 | else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0)) |
6003 | support_c = 1; | |
6004 | else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0)) | |
6005 | support_C = 1; | |
74531fed | 6006 | else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0)) |
d458bd84 | 6007 | rs->supports_vCont.t = 1; |
c1e36e3e PA |
6008 | else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0)) |
6009 | rs->supports_vCont.r = 1; | |
506fb367 DJ |
6010 | |
6011 | p = strchr (p, ';'); | |
6012 | } | |
c906108c | 6013 | |
750ce8d1 YQ |
6014 | /* If c, and C are not all supported, we can't use vCont. Clearing |
6015 | BUF will make packet_ok disable the packet. */ | |
6016 | if (!support_c || !support_C) | |
506fb367 DJ |
6017 | buf[0] = 0; |
6018 | } | |
c906108c | 6019 | |
8d64371b | 6020 | packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]); |
5b6d1e4f | 6021 | rs->supports_vCont_probed = true; |
506fb367 | 6022 | } |
c906108c | 6023 | |
0d8f58ca PA |
6024 | /* Helper function for building "vCont" resumptions. Write a |
6025 | resumption to P. ENDP points to one-passed-the-end of the buffer | |
6026 | we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The | |
6027 | thread to be resumed is PTID; STEP and SIGGNAL indicate whether the | |
6028 | resumed thread should be single-stepped and/or signalled. If PTID | |
6029 | equals minus_one_ptid, then all threads are resumed; if PTID | |
6030 | represents a process, then all threads of the process are resumed; | |
6031 | the thread to be stepped and/or signalled is given in the global | |
6032 | INFERIOR_PTID. */ | |
6033 | ||
6b8edb51 PA |
6034 | char * |
6035 | remote_target::append_resumption (char *p, char *endp, | |
6036 | ptid_t ptid, int step, gdb_signal siggnal) | |
0d8f58ca PA |
6037 | { |
6038 | struct remote_state *rs = get_remote_state (); | |
6039 | ||
a493e3e2 | 6040 | if (step && siggnal != GDB_SIGNAL_0) |
0d8f58ca | 6041 | p += xsnprintf (p, endp - p, ";S%02x", siggnal); |
c1e36e3e PA |
6042 | else if (step |
6043 | /* GDB is willing to range step. */ | |
6044 | && use_range_stepping | |
6045 | /* Target supports range stepping. */ | |
6046 | && rs->supports_vCont.r | |
6047 | /* We don't currently support range stepping multiple | |
6048 | threads with a wildcard (though the protocol allows it, | |
6049 | so stubs shouldn't make an active effort to forbid | |
6050 | it). */ | |
0e998d96 | 6051 | && !(remote_multi_process_p (rs) && ptid.is_pid ())) |
c1e36e3e PA |
6052 | { |
6053 | struct thread_info *tp; | |
6054 | ||
d7e15655 | 6055 | if (ptid == minus_one_ptid) |
c1e36e3e PA |
6056 | { |
6057 | /* If we don't know about the target thread's tid, then | |
6058 | we're resuming magic_null_ptid (see caller). */ | |
5b6d1e4f | 6059 | tp = find_thread_ptid (this, magic_null_ptid); |
c1e36e3e PA |
6060 | } |
6061 | else | |
5b6d1e4f | 6062 | tp = find_thread_ptid (this, ptid); |
c1e36e3e PA |
6063 | gdb_assert (tp != NULL); |
6064 | ||
6065 | if (tp->control.may_range_step) | |
6066 | { | |
6067 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; | |
6068 | ||
6069 | p += xsnprintf (p, endp - p, ";r%s,%s", | |
6070 | phex_nz (tp->control.step_range_start, | |
6071 | addr_size), | |
6072 | phex_nz (tp->control.step_range_end, | |
6073 | addr_size)); | |
6074 | } | |
6075 | else | |
6076 | p += xsnprintf (p, endp - p, ";s"); | |
6077 | } | |
0d8f58ca PA |
6078 | else if (step) |
6079 | p += xsnprintf (p, endp - p, ";s"); | |
a493e3e2 | 6080 | else if (siggnal != GDB_SIGNAL_0) |
0d8f58ca PA |
6081 | p += xsnprintf (p, endp - p, ";C%02x", siggnal); |
6082 | else | |
6083 | p += xsnprintf (p, endp - p, ";c"); | |
6084 | ||
0e998d96 | 6085 | if (remote_multi_process_p (rs) && ptid.is_pid ()) |
0d8f58ca PA |
6086 | { |
6087 | ptid_t nptid; | |
6088 | ||
6089 | /* All (-1) threads of process. */ | |
e99b03dc | 6090 | nptid = ptid_t (ptid.pid (), -1, 0); |
0d8f58ca PA |
6091 | |
6092 | p += xsnprintf (p, endp - p, ":"); | |
6093 | p = write_ptid (p, endp, nptid); | |
6094 | } | |
d7e15655 | 6095 | else if (ptid != minus_one_ptid) |
0d8f58ca PA |
6096 | { |
6097 | p += xsnprintf (p, endp - p, ":"); | |
6098 | p = write_ptid (p, endp, ptid); | |
6099 | } | |
6100 | ||
6101 | return p; | |
6102 | } | |
6103 | ||
799a2abe PA |
6104 | /* Clear the thread's private info on resume. */ |
6105 | ||
6106 | static void | |
6107 | resume_clear_thread_private_info (struct thread_info *thread) | |
6108 | { | |
6109 | if (thread->priv != NULL) | |
6110 | { | |
7aabaf9d SM |
6111 | remote_thread_info *priv = get_remote_thread_info (thread); |
6112 | ||
6113 | priv->stop_reason = TARGET_STOPPED_BY_NO_REASON; | |
6114 | priv->watch_data_address = 0; | |
799a2abe PA |
6115 | } |
6116 | } | |
6117 | ||
e5ef252a PA |
6118 | /* Append a vCont continue-with-signal action for threads that have a |
6119 | non-zero stop signal. */ | |
6120 | ||
6b8edb51 PA |
6121 | char * |
6122 | remote_target::append_pending_thread_resumptions (char *p, char *endp, | |
6123 | ptid_t ptid) | |
e5ef252a | 6124 | { |
5b6d1e4f | 6125 | for (thread_info *thread : all_non_exited_threads (this, ptid)) |
08036331 | 6126 | if (inferior_ptid != thread->ptid |
70509625 | 6127 | && thread->suspend.stop_signal != GDB_SIGNAL_0) |
e5ef252a PA |
6128 | { |
6129 | p = append_resumption (p, endp, thread->ptid, | |
6130 | 0, thread->suspend.stop_signal); | |
6131 | thread->suspend.stop_signal = GDB_SIGNAL_0; | |
799a2abe | 6132 | resume_clear_thread_private_info (thread); |
e5ef252a PA |
6133 | } |
6134 | ||
6135 | return p; | |
6136 | } | |
6137 | ||
7b68ffbb PA |
6138 | /* Set the target running, using the packets that use Hc |
6139 | (c/s/C/S). */ | |
6140 | ||
6b8edb51 PA |
6141 | void |
6142 | remote_target::remote_resume_with_hc (ptid_t ptid, int step, | |
6143 | gdb_signal siggnal) | |
7b68ffbb PA |
6144 | { |
6145 | struct remote_state *rs = get_remote_state (); | |
7b68ffbb PA |
6146 | char *buf; |
6147 | ||
6148 | rs->last_sent_signal = siggnal; | |
6149 | rs->last_sent_step = step; | |
6150 | ||
6151 | /* The c/s/C/S resume packets use Hc, so set the continue | |
6152 | thread. */ | |
d7e15655 | 6153 | if (ptid == minus_one_ptid) |
7b68ffbb PA |
6154 | set_continue_thread (any_thread_ptid); |
6155 | else | |
6156 | set_continue_thread (ptid); | |
6157 | ||
5b6d1e4f | 6158 | for (thread_info *thread : all_non_exited_threads (this)) |
7b68ffbb PA |
6159 | resume_clear_thread_private_info (thread); |
6160 | ||
8d64371b | 6161 | buf = rs->buf.data (); |
6b8edb51 | 6162 | if (::execution_direction == EXEC_REVERSE) |
7b68ffbb PA |
6163 | { |
6164 | /* We don't pass signals to the target in reverse exec mode. */ | |
6165 | if (info_verbose && siggnal != GDB_SIGNAL_0) | |
6166 | warning (_(" - Can't pass signal %d to target in reverse: ignored."), | |
6167 | siggnal); | |
6168 | ||
6169 | if (step && packet_support (PACKET_bs) == PACKET_DISABLE) | |
6170 | error (_("Remote reverse-step not supported.")); | |
6171 | if (!step && packet_support (PACKET_bc) == PACKET_DISABLE) | |
6172 | error (_("Remote reverse-continue not supported.")); | |
6173 | ||
6174 | strcpy (buf, step ? "bs" : "bc"); | |
6175 | } | |
6176 | else if (siggnal != GDB_SIGNAL_0) | |
6177 | { | |
6178 | buf[0] = step ? 'S' : 'C'; | |
6179 | buf[1] = tohex (((int) siggnal >> 4) & 0xf); | |
6180 | buf[2] = tohex (((int) siggnal) & 0xf); | |
6181 | buf[3] = '\0'; | |
6182 | } | |
6183 | else | |
6184 | strcpy (buf, step ? "s" : "c"); | |
6185 | ||
6186 | putpkt (buf); | |
6187 | } | |
6188 | ||
506fb367 DJ |
6189 | /* Resume the remote inferior by using a "vCont" packet. The thread |
6190 | to be resumed is PTID; STEP and SIGGNAL indicate whether the | |
79d7f229 PA |
6191 | resumed thread should be single-stepped and/or signalled. If PTID |
6192 | equals minus_one_ptid, then all threads are resumed; the thread to | |
6193 | be stepped and/or signalled is given in the global INFERIOR_PTID. | |
6194 | This function returns non-zero iff it resumes the inferior. | |
44eaed12 | 6195 | |
7b68ffbb PA |
6196 | This function issues a strict subset of all possible vCont commands |
6197 | at the moment. */ | |
44eaed12 | 6198 | |
6b8edb51 PA |
6199 | int |
6200 | remote_target::remote_resume_with_vcont (ptid_t ptid, int step, | |
6201 | enum gdb_signal siggnal) | |
506fb367 DJ |
6202 | { |
6203 | struct remote_state *rs = get_remote_state (); | |
82f73884 PA |
6204 | char *p; |
6205 | char *endp; | |
44eaed12 | 6206 | |
7b68ffbb | 6207 | /* No reverse execution actions defined for vCont. */ |
6b8edb51 | 6208 | if (::execution_direction == EXEC_REVERSE) |
7b68ffbb PA |
6209 | return 0; |
6210 | ||
4082afcc | 6211 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN) |
6b8edb51 | 6212 | remote_vcont_probe (); |
44eaed12 | 6213 | |
4082afcc | 6214 | if (packet_support (PACKET_vCont) == PACKET_DISABLE) |
6d820c5c | 6215 | return 0; |
44eaed12 | 6216 | |
8d64371b TT |
6217 | p = rs->buf.data (); |
6218 | endp = p + get_remote_packet_size (); | |
82f73884 | 6219 | |
506fb367 DJ |
6220 | /* If we could generate a wider range of packets, we'd have to worry |
6221 | about overflowing BUF. Should there be a generic | |
6222 | "multi-part-packet" packet? */ | |
6223 | ||
0d8f58ca PA |
6224 | p += xsnprintf (p, endp - p, "vCont"); |
6225 | ||
d7e15655 | 6226 | if (ptid == magic_null_ptid) |
c906108c | 6227 | { |
79d7f229 PA |
6228 | /* MAGIC_NULL_PTID means that we don't have any active threads, |
6229 | so we don't have any TID numbers the inferior will | |
6230 | understand. Make sure to only send forms that do not specify | |
6231 | a TID. */ | |
a9cbf802 | 6232 | append_resumption (p, endp, minus_one_ptid, step, siggnal); |
506fb367 | 6233 | } |
d7e15655 | 6234 | else if (ptid == minus_one_ptid || ptid.is_pid ()) |
506fb367 | 6235 | { |
0d8f58ca PA |
6236 | /* Resume all threads (of all processes, or of a single |
6237 | process), with preference for INFERIOR_PTID. This assumes | |
6238 | inferior_ptid belongs to the set of all threads we are about | |
6239 | to resume. */ | |
a493e3e2 | 6240 | if (step || siggnal != GDB_SIGNAL_0) |
82f73884 | 6241 | { |
0d8f58ca PA |
6242 | /* Step inferior_ptid, with or without signal. */ |
6243 | p = append_resumption (p, endp, inferior_ptid, step, siggnal); | |
82f73884 | 6244 | } |
0d8f58ca | 6245 | |
e5ef252a PA |
6246 | /* Also pass down any pending signaled resumption for other |
6247 | threads not the current. */ | |
6248 | p = append_pending_thread_resumptions (p, endp, ptid); | |
6249 | ||
0d8f58ca | 6250 | /* And continue others without a signal. */ |
a493e3e2 | 6251 | append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0); |
c906108c SS |
6252 | } |
6253 | else | |
506fb367 DJ |
6254 | { |
6255 | /* Scheduler locking; resume only PTID. */ | |
a9cbf802 | 6256 | append_resumption (p, endp, ptid, step, siggnal); |
506fb367 | 6257 | } |
c906108c | 6258 | |
8d64371b | 6259 | gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ()); |
82f73884 | 6260 | putpkt (rs->buf); |
506fb367 | 6261 | |
6efcd9a8 | 6262 | if (target_is_non_stop_p ()) |
74531fed PA |
6263 | { |
6264 | /* In non-stop, the stub replies to vCont with "OK". The stop | |
6265 | reply will be reported asynchronously by means of a `%Stop' | |
6266 | notification. */ | |
8d64371b TT |
6267 | getpkt (&rs->buf, 0); |
6268 | if (strcmp (rs->buf.data (), "OK") != 0) | |
6269 | error (_("Unexpected vCont reply in non-stop mode: %s"), | |
6270 | rs->buf.data ()); | |
74531fed PA |
6271 | } |
6272 | ||
506fb367 | 6273 | return 1; |
c906108c | 6274 | } |
43ff13b4 | 6275 | |
506fb367 DJ |
6276 | /* Tell the remote machine to resume. */ |
6277 | ||
f6ac5f3d PA |
6278 | void |
6279 | remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal) | |
43ff13b4 | 6280 | { |
d01949b6 | 6281 | struct remote_state *rs = get_remote_state (); |
43ff13b4 | 6282 | |
85ad3aaf PA |
6283 | /* When connected in non-stop mode, the core resumes threads |
6284 | individually. Resuming remote threads directly in target_resume | |
6285 | would thus result in sending one packet per thread. Instead, to | |
6286 | minimize roundtrip latency, here we just store the resume | |
6287 | request; the actual remote resumption will be done in | |
6288 | target_commit_resume / remote_commit_resume, where we'll be able | |
6289 | to do vCont action coalescing. */ | |
f6ac5f3d | 6290 | if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE) |
85ad3aaf | 6291 | { |
7aabaf9d | 6292 | remote_thread_info *remote_thr; |
85ad3aaf | 6293 | |
d7e15655 | 6294 | if (minus_one_ptid == ptid || ptid.is_pid ()) |
5b6d1e4f | 6295 | remote_thr = get_remote_thread_info (this, inferior_ptid); |
85ad3aaf | 6296 | else |
5b6d1e4f | 6297 | remote_thr = get_remote_thread_info (this, ptid); |
7aabaf9d | 6298 | |
85ad3aaf PA |
6299 | remote_thr->last_resume_step = step; |
6300 | remote_thr->last_resume_sig = siggnal; | |
6301 | return; | |
6302 | } | |
6303 | ||
722247f1 YQ |
6304 | /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN |
6305 | (explained in remote-notif.c:handle_notification) so | |
6306 | remote_notif_process is not called. We need find a place where | |
6307 | it is safe to start a 'vNotif' sequence. It is good to do it | |
6308 | before resuming inferior, because inferior was stopped and no RSP | |
6309 | traffic at that moment. */ | |
6efcd9a8 | 6310 | if (!target_is_non_stop_p ()) |
5965e028 | 6311 | remote_notif_process (rs->notif_state, ¬if_client_stop); |
722247f1 | 6312 | |
f6ac5f3d | 6313 | rs->last_resume_exec_dir = ::execution_direction; |
3a00c802 | 6314 | |
7b68ffbb PA |
6315 | /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */ |
6316 | if (!remote_resume_with_vcont (ptid, step, siggnal)) | |
6b8edb51 | 6317 | remote_resume_with_hc (ptid, step, siggnal); |
43ff13b4 | 6318 | |
2acceee2 | 6319 | /* We are about to start executing the inferior, let's register it |
0df8b418 MS |
6320 | with the event loop. NOTE: this is the one place where all the |
6321 | execution commands end up. We could alternatively do this in each | |
23860348 | 6322 | of the execution commands in infcmd.c. */ |
2acceee2 JM |
6323 | /* FIXME: ezannoni 1999-09-28: We may need to move this out of here |
6324 | into infcmd.c in order to allow inferior function calls to work | |
23860348 | 6325 | NOT asynchronously. */ |
362646f5 | 6326 | if (target_can_async_p ()) |
6a3753b3 | 6327 | target_async (1); |
e24a49d8 PA |
6328 | |
6329 | /* We've just told the target to resume. The remote server will | |
6330 | wait for the inferior to stop, and then send a stop reply. In | |
6331 | the mean time, we can't start another command/query ourselves | |
74531fed PA |
6332 | because the stub wouldn't be ready to process it. This applies |
6333 | only to the base all-stop protocol, however. In non-stop (which | |
6334 | only supports vCont), the stub replies with an "OK", and is | |
6335 | immediate able to process further serial input. */ | |
6efcd9a8 | 6336 | if (!target_is_non_stop_p ()) |
74531fed | 6337 | rs->waiting_for_stop_reply = 1; |
43ff13b4 | 6338 | } |
85ad3aaf | 6339 | |
85ad3aaf PA |
6340 | static int is_pending_fork_parent_thread (struct thread_info *thread); |
6341 | ||
6342 | /* Private per-inferior info for target remote processes. */ | |
6343 | ||
089354bb | 6344 | struct remote_inferior : public private_inferior |
85ad3aaf PA |
6345 | { |
6346 | /* Whether we can send a wildcard vCont for this process. */ | |
089354bb | 6347 | bool may_wildcard_vcont = true; |
85ad3aaf PA |
6348 | }; |
6349 | ||
089354bb SM |
6350 | /* Get the remote private inferior data associated to INF. */ |
6351 | ||
6352 | static remote_inferior * | |
6353 | get_remote_inferior (inferior *inf) | |
6354 | { | |
6355 | if (inf->priv == NULL) | |
6356 | inf->priv.reset (new remote_inferior); | |
6357 | ||
6358 | return static_cast<remote_inferior *> (inf->priv.get ()); | |
6359 | } | |
6360 | ||
f5db4863 | 6361 | /* Class used to track the construction of a vCont packet in the |
85ad3aaf PA |
6362 | outgoing packet buffer. This is used to send multiple vCont |
6363 | packets if we have more actions than would fit a single packet. */ | |
6364 | ||
f5db4863 | 6365 | class vcont_builder |
85ad3aaf | 6366 | { |
f5db4863 | 6367 | public: |
6b8edb51 PA |
6368 | explicit vcont_builder (remote_target *remote) |
6369 | : m_remote (remote) | |
f5db4863 PA |
6370 | { |
6371 | restart (); | |
6372 | } | |
6373 | ||
6374 | void flush (); | |
6375 | void push_action (ptid_t ptid, bool step, gdb_signal siggnal); | |
6376 | ||
6377 | private: | |
6378 | void restart (); | |
6379 | ||
6b8edb51 PA |
6380 | /* The remote target. */ |
6381 | remote_target *m_remote; | |
6382 | ||
85ad3aaf PA |
6383 | /* Pointer to the first action. P points here if no action has been |
6384 | appended yet. */ | |
f5db4863 | 6385 | char *m_first_action; |
85ad3aaf PA |
6386 | |
6387 | /* Where the next action will be appended. */ | |
f5db4863 | 6388 | char *m_p; |
85ad3aaf PA |
6389 | |
6390 | /* The end of the buffer. Must never write past this. */ | |
f5db4863 | 6391 | char *m_endp; |
85ad3aaf PA |
6392 | }; |
6393 | ||
6394 | /* Prepare the outgoing buffer for a new vCont packet. */ | |
6395 | ||
f5db4863 PA |
6396 | void |
6397 | vcont_builder::restart () | |
85ad3aaf | 6398 | { |
6b8edb51 | 6399 | struct remote_state *rs = m_remote->get_remote_state (); |
85ad3aaf | 6400 | |
8d64371b TT |
6401 | m_p = rs->buf.data (); |
6402 | m_endp = m_p + m_remote->get_remote_packet_size (); | |
f5db4863 PA |
6403 | m_p += xsnprintf (m_p, m_endp - m_p, "vCont"); |
6404 | m_first_action = m_p; | |
85ad3aaf PA |
6405 | } |
6406 | ||
6407 | /* If the vCont packet being built has any action, send it to the | |
6408 | remote end. */ | |
6409 | ||
f5db4863 PA |
6410 | void |
6411 | vcont_builder::flush () | |
85ad3aaf PA |
6412 | { |
6413 | struct remote_state *rs; | |
6414 | ||
f5db4863 | 6415 | if (m_p == m_first_action) |
85ad3aaf PA |
6416 | return; |
6417 | ||
6b8edb51 PA |
6418 | rs = m_remote->get_remote_state (); |
6419 | m_remote->putpkt (rs->buf); | |
8d64371b TT |
6420 | m_remote->getpkt (&rs->buf, 0); |
6421 | if (strcmp (rs->buf.data (), "OK") != 0) | |
6422 | error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ()); | |
85ad3aaf PA |
6423 | } |
6424 | ||
6425 | /* The largest action is range-stepping, with its two addresses. This | |
6426 | is more than sufficient. If a new, bigger action is created, it'll | |
6427 | quickly trigger a failed assertion in append_resumption (and we'll | |
6428 | just bump this). */ | |
6429 | #define MAX_ACTION_SIZE 200 | |
6430 | ||
6431 | /* Append a new vCont action in the outgoing packet being built. If | |
6432 | the action doesn't fit the packet along with previous actions, push | |
6433 | what we've got so far to the remote end and start over a new vCont | |
6434 | packet (with the new action). */ | |
6435 | ||
f5db4863 PA |
6436 | void |
6437 | vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal) | |
85ad3aaf PA |
6438 | { |
6439 | char buf[MAX_ACTION_SIZE + 1]; | |
85ad3aaf | 6440 | |
6b8edb51 PA |
6441 | char *endp = m_remote->append_resumption (buf, buf + sizeof (buf), |
6442 | ptid, step, siggnal); | |
85ad3aaf PA |
6443 | |
6444 | /* Check whether this new action would fit in the vCont packet along | |
6445 | with previous actions. If not, send what we've got so far and | |
6446 | start a new vCont packet. */ | |
f5db4863 PA |
6447 | size_t rsize = endp - buf; |
6448 | if (rsize > m_endp - m_p) | |
85ad3aaf | 6449 | { |
f5db4863 PA |
6450 | flush (); |
6451 | restart (); | |
85ad3aaf PA |
6452 | |
6453 | /* Should now fit. */ | |
f5db4863 | 6454 | gdb_assert (rsize <= m_endp - m_p); |
85ad3aaf PA |
6455 | } |
6456 | ||
f5db4863 PA |
6457 | memcpy (m_p, buf, rsize); |
6458 | m_p += rsize; | |
6459 | *m_p = '\0'; | |
85ad3aaf PA |
6460 | } |
6461 | ||
6462 | /* to_commit_resume implementation. */ | |
6463 | ||
f6ac5f3d PA |
6464 | void |
6465 | remote_target::commit_resume () | |
85ad3aaf | 6466 | { |
85ad3aaf PA |
6467 | int any_process_wildcard; |
6468 | int may_global_wildcard_vcont; | |
85ad3aaf PA |
6469 | |
6470 | /* If connected in all-stop mode, we'd send the remote resume | |
6471 | request directly from remote_resume. Likewise if | |
6472 | reverse-debugging, as there are no defined vCont actions for | |
6473 | reverse execution. */ | |
f6ac5f3d | 6474 | if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE) |
85ad3aaf PA |
6475 | return; |
6476 | ||
6477 | /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1") | |
6478 | instead of resuming all threads of each process individually. | |
6479 | However, if any thread of a process must remain halted, we can't | |
6480 | send wildcard resumes and must send one action per thread. | |
6481 | ||
6482 | Care must be taken to not resume threads/processes the server | |
6483 | side already told us are stopped, but the core doesn't know about | |
6484 | yet, because the events are still in the vStopped notification | |
6485 | queue. For example: | |
6486 | ||
6487 | #1 => vCont s:p1.1;c | |
6488 | #2 <= OK | |
6489 | #3 <= %Stopped T05 p1.1 | |
6490 | #4 => vStopped | |
6491 | #5 <= T05 p1.2 | |
6492 | #6 => vStopped | |
6493 | #7 <= OK | |
6494 | #8 (infrun handles the stop for p1.1 and continues stepping) | |
6495 | #9 => vCont s:p1.1;c | |
6496 | ||
6497 | The last vCont above would resume thread p1.2 by mistake, because | |
6498 | the server has no idea that the event for p1.2 had not been | |
6499 | handled yet. | |
6500 | ||
6501 | The server side must similarly ignore resume actions for the | |
6502 | thread that has a pending %Stopped notification (and any other | |
6503 | threads with events pending), until GDB acks the notification | |
6504 | with vStopped. Otherwise, e.g., the following case is | |
6505 | mishandled: | |
6506 | ||
6507 | #1 => g (or any other packet) | |
6508 | #2 <= [registers] | |
6509 | #3 <= %Stopped T05 p1.2 | |
6510 | #4 => vCont s:p1.1;c | |
6511 | #5 <= OK | |
6512 | ||
6513 | Above, the server must not resume thread p1.2. GDB can't know | |
6514 | that p1.2 stopped until it acks the %Stopped notification, and | |
6515 | since from GDB's perspective all threads should be running, it | |
6516 | sends a "c" action. | |
6517 | ||
6518 | Finally, special care must also be given to handling fork/vfork | |
6519 | events. A (v)fork event actually tells us that two processes | |
6520 | stopped -- the parent and the child. Until we follow the fork, | |
6521 | we must not resume the child. Therefore, if we have a pending | |
6522 | fork follow, we must not send a global wildcard resume action | |
6523 | (vCont;c). We can still send process-wide wildcards though. */ | |
6524 | ||
6525 | /* Start by assuming a global wildcard (vCont;c) is possible. */ | |
6526 | may_global_wildcard_vcont = 1; | |
6527 | ||
6528 | /* And assume every process is individually wildcard-able too. */ | |
5b6d1e4f | 6529 | for (inferior *inf : all_non_exited_inferiors (this)) |
85ad3aaf | 6530 | { |
089354bb SM |
6531 | remote_inferior *priv = get_remote_inferior (inf); |
6532 | ||
6533 | priv->may_wildcard_vcont = true; | |
85ad3aaf PA |
6534 | } |
6535 | ||
6536 | /* Check for any pending events (not reported or processed yet) and | |
6537 | disable process and global wildcard resumes appropriately. */ | |
6538 | check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont); | |
6539 | ||
5b6d1e4f | 6540 | for (thread_info *tp : all_non_exited_threads (this)) |
85ad3aaf PA |
6541 | { |
6542 | /* If a thread of a process is not meant to be resumed, then we | |
6543 | can't wildcard that process. */ | |
6544 | if (!tp->executing) | |
6545 | { | |
089354bb | 6546 | get_remote_inferior (tp->inf)->may_wildcard_vcont = false; |
85ad3aaf PA |
6547 | |
6548 | /* And if we can't wildcard a process, we can't wildcard | |
6549 | everything either. */ | |
6550 | may_global_wildcard_vcont = 0; | |
6551 | continue; | |
6552 | } | |
6553 | ||
6554 | /* If a thread is the parent of an unfollowed fork, then we | |
6555 | can't do a global wildcard, as that would resume the fork | |
6556 | child. */ | |
6557 | if (is_pending_fork_parent_thread (tp)) | |
6558 | may_global_wildcard_vcont = 0; | |
6559 | } | |
6560 | ||
6561 | /* Now let's build the vCont packet(s). Actions must be appended | |
6562 | from narrower to wider scopes (thread -> process -> global). If | |
6563 | we end up with too many actions for a single packet vcont_builder | |
6564 | flushes the current vCont packet to the remote side and starts a | |
6565 | new one. */ | |
6b8edb51 | 6566 | struct vcont_builder vcont_builder (this); |
85ad3aaf PA |
6567 | |
6568 | /* Threads first. */ | |
5b6d1e4f | 6569 | for (thread_info *tp : all_non_exited_threads (this)) |
85ad3aaf | 6570 | { |
7aabaf9d | 6571 | remote_thread_info *remote_thr = get_remote_thread_info (tp); |
85ad3aaf PA |
6572 | |
6573 | if (!tp->executing || remote_thr->vcont_resumed) | |
6574 | continue; | |
6575 | ||
6576 | gdb_assert (!thread_is_in_step_over_chain (tp)); | |
6577 | ||
6578 | if (!remote_thr->last_resume_step | |
6579 | && remote_thr->last_resume_sig == GDB_SIGNAL_0 | |
089354bb | 6580 | && get_remote_inferior (tp->inf)->may_wildcard_vcont) |
85ad3aaf PA |
6581 | { |
6582 | /* We'll send a wildcard resume instead. */ | |
6583 | remote_thr->vcont_resumed = 1; | |
6584 | continue; | |
6585 | } | |
6586 | ||
f5db4863 | 6587 | vcont_builder.push_action (tp->ptid, |
85ad3aaf PA |
6588 | remote_thr->last_resume_step, |
6589 | remote_thr->last_resume_sig); | |
6590 | remote_thr->vcont_resumed = 1; | |
6591 | } | |
6592 | ||
6593 | /* Now check whether we can send any process-wide wildcard. This is | |
6594 | to avoid sending a global wildcard in the case nothing is | |
6595 | supposed to be resumed. */ | |
6596 | any_process_wildcard = 0; | |
6597 | ||
5b6d1e4f | 6598 | for (inferior *inf : all_non_exited_inferiors (this)) |
85ad3aaf | 6599 | { |
089354bb | 6600 | if (get_remote_inferior (inf)->may_wildcard_vcont) |
85ad3aaf PA |
6601 | { |
6602 | any_process_wildcard = 1; | |
6603 | break; | |
6604 | } | |
6605 | } | |
6606 | ||
6607 | if (any_process_wildcard) | |
6608 | { | |
6609 | /* If all processes are wildcard-able, then send a single "c" | |
6610 | action, otherwise, send an "all (-1) threads of process" | |
6611 | continue action for each running process, if any. */ | |
6612 | if (may_global_wildcard_vcont) | |
6613 | { | |
f5db4863 PA |
6614 | vcont_builder.push_action (minus_one_ptid, |
6615 | false, GDB_SIGNAL_0); | |
85ad3aaf PA |
6616 | } |
6617 | else | |
6618 | { | |
5b6d1e4f | 6619 | for (inferior *inf : all_non_exited_inferiors (this)) |
85ad3aaf | 6620 | { |
089354bb | 6621 | if (get_remote_inferior (inf)->may_wildcard_vcont) |
85ad3aaf | 6622 | { |
f2907e49 | 6623 | vcont_builder.push_action (ptid_t (inf->pid), |
f5db4863 | 6624 | false, GDB_SIGNAL_0); |
85ad3aaf PA |
6625 | } |
6626 | } | |
6627 | } | |
6628 | } | |
6629 | ||
f5db4863 | 6630 | vcont_builder.flush (); |
85ad3aaf PA |
6631 | } |
6632 | ||
c906108c | 6633 | \f |
43ff13b4 | 6634 | |
74531fed PA |
6635 | /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote |
6636 | thread, all threads of a remote process, or all threads of all | |
6637 | processes. */ | |
6638 | ||
6b8edb51 PA |
6639 | void |
6640 | remote_target::remote_stop_ns (ptid_t ptid) | |
74531fed PA |
6641 | { |
6642 | struct remote_state *rs = get_remote_state (); | |
8d64371b TT |
6643 | char *p = rs->buf.data (); |
6644 | char *endp = p + get_remote_packet_size (); | |
74531fed | 6645 | |
5b6d1e4f PA |
6646 | /* FIXME: This supports_vCont_probed check is a workaround until |
6647 | packet_support is per-connection. */ | |
6648 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN | |
6649 | || !rs->supports_vCont_probed) | |
6b8edb51 | 6650 | remote_vcont_probe (); |
74531fed | 6651 | |
d458bd84 | 6652 | if (!rs->supports_vCont.t) |
74531fed PA |
6653 | error (_("Remote server does not support stopping threads")); |
6654 | ||
d7e15655 | 6655 | if (ptid == minus_one_ptid |
0e998d96 | 6656 | || (!remote_multi_process_p (rs) && ptid.is_pid ())) |
74531fed PA |
6657 | p += xsnprintf (p, endp - p, "vCont;t"); |
6658 | else | |
6659 | { | |
6660 | ptid_t nptid; | |
6661 | ||
74531fed PA |
6662 | p += xsnprintf (p, endp - p, "vCont;t:"); |
6663 | ||
0e998d96 | 6664 | if (ptid.is_pid ()) |
74531fed | 6665 | /* All (-1) threads of process. */ |
e99b03dc | 6666 | nptid = ptid_t (ptid.pid (), -1, 0); |
74531fed PA |
6667 | else |
6668 | { | |
6669 | /* Small optimization: if we already have a stop reply for | |
6670 | this thread, no use in telling the stub we want this | |
6671 | stopped. */ | |
6672 | if (peek_stop_reply (ptid)) | |
6673 | return; | |
6674 | ||
6675 | nptid = ptid; | |
6676 | } | |
6677 | ||
a9cbf802 | 6678 | write_ptid (p, endp, nptid); |
74531fed PA |
6679 | } |
6680 | ||
6681 | /* In non-stop, we get an immediate OK reply. The stop reply will | |
6682 | come in asynchronously by notification. */ | |
6683 | putpkt (rs->buf); | |
8d64371b TT |
6684 | getpkt (&rs->buf, 0); |
6685 | if (strcmp (rs->buf.data (), "OK") != 0) | |
a068643d | 6686 | error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (), |
8d64371b | 6687 | rs->buf.data ()); |
74531fed PA |
6688 | } |
6689 | ||
bfedc46a PA |
6690 | /* All-stop version of target_interrupt. Sends a break or a ^C to |
6691 | interrupt the remote target. It is undefined which thread of which | |
6692 | process reports the interrupt. */ | |
74531fed | 6693 | |
6b8edb51 PA |
6694 | void |
6695 | remote_target::remote_interrupt_as () | |
74531fed PA |
6696 | { |
6697 | struct remote_state *rs = get_remote_state (); | |
6698 | ||
3a29589a DJ |
6699 | rs->ctrlc_pending_p = 1; |
6700 | ||
74531fed PA |
6701 | /* If the inferior is stopped already, but the core didn't know |
6702 | about it yet, just ignore the request. The cached wait status | |
6703 | will be collected in remote_wait. */ | |
6704 | if (rs->cached_wait_status) | |
6705 | return; | |
6706 | ||
9a7071a8 JB |
6707 | /* Send interrupt_sequence to remote target. */ |
6708 | send_interrupt_sequence (); | |
74531fed PA |
6709 | } |
6710 | ||
de979965 PA |
6711 | /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt |
6712 | the remote target. It is undefined which thread of which process | |
e42de8c7 PA |
6713 | reports the interrupt. Throws an error if the packet is not |
6714 | supported by the server. */ | |
de979965 | 6715 | |
6b8edb51 PA |
6716 | void |
6717 | remote_target::remote_interrupt_ns () | |
de979965 PA |
6718 | { |
6719 | struct remote_state *rs = get_remote_state (); | |
8d64371b TT |
6720 | char *p = rs->buf.data (); |
6721 | char *endp = p + get_remote_packet_size (); | |
de979965 PA |
6722 | |
6723 | xsnprintf (p, endp - p, "vCtrlC"); | |
6724 | ||
6725 | /* In non-stop, we get an immediate OK reply. The stop reply will | |
6726 | come in asynchronously by notification. */ | |
6727 | putpkt (rs->buf); | |
8d64371b | 6728 | getpkt (&rs->buf, 0); |
de979965 PA |
6729 | |
6730 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC])) | |
6731 | { | |
6732 | case PACKET_OK: | |
6733 | break; | |
6734 | case PACKET_UNKNOWN: | |
e42de8c7 | 6735 | error (_("No support for interrupting the remote target.")); |
de979965 | 6736 | case PACKET_ERROR: |
8d64371b | 6737 | error (_("Interrupting target failed: %s"), rs->buf.data ()); |
de979965 | 6738 | } |
de979965 PA |
6739 | } |
6740 | ||
bfedc46a | 6741 | /* Implement the to_stop function for the remote targets. */ |
74531fed | 6742 | |
f6ac5f3d PA |
6743 | void |
6744 | remote_target::stop (ptid_t ptid) | |
c906108c | 6745 | { |
7a292a7a | 6746 | if (remote_debug) |
0f71a2f6 | 6747 | fprintf_unfiltered (gdb_stdlog, "remote_stop called\n"); |
c906108c | 6748 | |
6efcd9a8 | 6749 | if (target_is_non_stop_p ()) |
74531fed | 6750 | remote_stop_ns (ptid); |
c906108c | 6751 | else |
bfedc46a PA |
6752 | { |
6753 | /* We don't currently have a way to transparently pause the | |
6754 | remote target in all-stop mode. Interrupt it instead. */ | |
de979965 | 6755 | remote_interrupt_as (); |
bfedc46a PA |
6756 | } |
6757 | } | |
6758 | ||
6759 | /* Implement the to_interrupt function for the remote targets. */ | |
6760 | ||
f6ac5f3d PA |
6761 | void |
6762 | remote_target::interrupt () | |
bfedc46a PA |
6763 | { |
6764 | if (remote_debug) | |
6765 | fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n"); | |
6766 | ||
e42de8c7 PA |
6767 | if (target_is_non_stop_p ()) |
6768 | remote_interrupt_ns (); | |
bfedc46a | 6769 | else |
e42de8c7 | 6770 | remote_interrupt_as (); |
c906108c SS |
6771 | } |
6772 | ||
93692b58 PA |
6773 | /* Implement the to_pass_ctrlc function for the remote targets. */ |
6774 | ||
f6ac5f3d PA |
6775 | void |
6776 | remote_target::pass_ctrlc () | |
93692b58 PA |
6777 | { |
6778 | struct remote_state *rs = get_remote_state (); | |
6779 | ||
6780 | if (remote_debug) | |
6781 | fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n"); | |
6782 | ||
6783 | /* If we're starting up, we're not fully synced yet. Quit | |
6784 | immediately. */ | |
6785 | if (rs->starting_up) | |
6786 | quit (); | |
6787 | /* If ^C has already been sent once, offer to disconnect. */ | |
6788 | else if (rs->ctrlc_pending_p) | |
6789 | interrupt_query (); | |
6790 | else | |
e671cd59 | 6791 | target_interrupt (); |
93692b58 PA |
6792 | } |
6793 | ||
c906108c SS |
6794 | /* Ask the user what to do when an interrupt is received. */ |
6795 | ||
6b8edb51 PA |
6796 | void |
6797 | remote_target::interrupt_query () | |
c906108c | 6798 | { |
abc56d60 | 6799 | struct remote_state *rs = get_remote_state (); |
c906108c | 6800 | |
abc56d60 | 6801 | if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p) |
74531fed | 6802 | { |
abc56d60 PA |
6803 | if (query (_("The target is not responding to interrupt requests.\n" |
6804 | "Stop debugging it? "))) | |
74531fed | 6805 | { |
5b6d1e4f | 6806 | remote_unpush_target (this); |
abc56d60 | 6807 | throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target.")); |
74531fed PA |
6808 | } |
6809 | } | |
abc56d60 PA |
6810 | else |
6811 | { | |
6812 | if (query (_("Interrupted while waiting for the program.\n" | |
6813 | "Give up waiting? "))) | |
6814 | quit (); | |
6815 | } | |
c906108c SS |
6816 | } |
6817 | ||
6426a772 JM |
6818 | /* Enable/disable target terminal ownership. Most targets can use |
6819 | terminal groups to control terminal ownership. Remote targets are | |
6820 | different in that explicit transfer of ownership to/from GDB/target | |
23860348 | 6821 | is required. */ |
6426a772 | 6822 | |
f6ac5f3d PA |
6823 | void |
6824 | remote_target::terminal_inferior () | |
6426a772 | 6825 | { |
6426a772 JM |
6826 | /* NOTE: At this point we could also register our selves as the |
6827 | recipient of all input. Any characters typed could then be | |
23860348 | 6828 | passed on down to the target. */ |
6426a772 JM |
6829 | } |
6830 | ||
f6ac5f3d PA |
6831 | void |
6832 | remote_target::terminal_ours () | |
6426a772 | 6833 | { |
6426a772 JM |
6834 | } |
6835 | ||
176a6961 | 6836 | static void |
05be00a8 | 6837 | remote_console_output (const char *msg) |
c906108c | 6838 | { |
05be00a8 | 6839 | const char *p; |
c906108c | 6840 | |
c5aa993b | 6841 | for (p = msg; p[0] && p[1]; p += 2) |
c906108c SS |
6842 | { |
6843 | char tb[2]; | |
6844 | char c = fromhex (p[0]) * 16 + fromhex (p[1]); | |
a744cf53 | 6845 | |
c906108c SS |
6846 | tb[0] = c; |
6847 | tb[1] = 0; | |
43ff13b4 | 6848 | fputs_unfiltered (tb, gdb_stdtarg); |
c906108c | 6849 | } |
00db5b94 PA |
6850 | gdb_flush (gdb_stdtarg); |
6851 | } | |
74531fed | 6852 | |
32603266 | 6853 | struct stop_reply : public notif_event |
74531fed | 6854 | { |
32603266 | 6855 | ~stop_reply (); |
74531fed | 6856 | |
722247f1 | 6857 | /* The identifier of the thread about this event */ |
74531fed PA |
6858 | ptid_t ptid; |
6859 | ||
340e3c99 | 6860 | /* The remote state this event is associated with. When the remote |
bcc75809 YQ |
6861 | connection, represented by a remote_state object, is closed, |
6862 | all the associated stop_reply events should be released. */ | |
6863 | struct remote_state *rs; | |
6864 | ||
74531fed PA |
6865 | struct target_waitstatus ws; |
6866 | ||
5cd63fda PA |
6867 | /* The architecture associated with the expedited registers. */ |
6868 | gdbarch *arch; | |
6869 | ||
15148d6a PA |
6870 | /* Expedited registers. This makes remote debugging a bit more |
6871 | efficient for those targets that provide critical registers as | |
6872 | part of their normal status mechanism (as another roundtrip to | |
6873 | fetch them is avoided). */ | |
32603266 | 6874 | std::vector<cached_reg_t> regcache; |
74531fed | 6875 | |
f7e6eed5 PA |
6876 | enum target_stop_reason stop_reason; |
6877 | ||
74531fed PA |
6878 | CORE_ADDR watch_data_address; |
6879 | ||
dc146f7c | 6880 | int core; |
32603266 | 6881 | }; |
c906108c | 6882 | |
221e1a37 PA |
6883 | /* Return the length of the stop reply queue. */ |
6884 | ||
6b8edb51 PA |
6885 | int |
6886 | remote_target::stop_reply_queue_length () | |
221e1a37 | 6887 | { |
6b8edb51 | 6888 | remote_state *rs = get_remote_state (); |
953edf2b | 6889 | return rs->stop_reply_queue.size (); |
221e1a37 PA |
6890 | } |
6891 | ||
cb8c24b6 | 6892 | static void |
6b8edb51 | 6893 | remote_notif_stop_parse (remote_target *remote, |
bb277751 | 6894 | struct notif_client *self, const char *buf, |
722247f1 YQ |
6895 | struct notif_event *event) |
6896 | { | |
6b8edb51 | 6897 | remote->remote_parse_stop_reply (buf, (struct stop_reply *) event); |
722247f1 YQ |
6898 | } |
6899 | ||
6900 | static void | |
6b8edb51 | 6901 | remote_notif_stop_ack (remote_target *remote, |
bb277751 | 6902 | struct notif_client *self, const char *buf, |
722247f1 YQ |
6903 | struct notif_event *event) |
6904 | { | |
6905 | struct stop_reply *stop_reply = (struct stop_reply *) event; | |
6906 | ||
6907 | /* acknowledge */ | |
6b8edb51 | 6908 | putpkt (remote, self->ack_command); |
722247f1 YQ |
6909 | |
6910 | if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE) | |
6b8edb51 | 6911 | { |
722247f1 YQ |
6912 | /* We got an unknown stop reply. */ |
6913 | error (_("Unknown stop reply")); | |
6b8edb51 | 6914 | } |
722247f1 | 6915 | |
6b8edb51 | 6916 | remote->push_stop_reply (stop_reply); |
722247f1 YQ |
6917 | } |
6918 | ||
6919 | static int | |
6b8edb51 PA |
6920 | remote_notif_stop_can_get_pending_events (remote_target *remote, |
6921 | struct notif_client *self) | |
722247f1 YQ |
6922 | { |
6923 | /* We can't get pending events in remote_notif_process for | |
6924 | notification stop, and we have to do this in remote_wait_ns | |
6925 | instead. If we fetch all queued events from stub, remote stub | |
6926 | may exit and we have no chance to process them back in | |
6927 | remote_wait_ns. */ | |
6b8edb51 PA |
6928 | remote_state *rs = remote->get_remote_state (); |
6929 | mark_async_event_handler (rs->remote_async_inferior_event_token); | |
722247f1 YQ |
6930 | return 0; |
6931 | } | |
6932 | ||
32603266 | 6933 | stop_reply::~stop_reply () |
722247f1 | 6934 | { |
32603266 TT |
6935 | for (cached_reg_t ® : regcache) |
6936 | xfree (reg.data); | |
722247f1 YQ |
6937 | } |
6938 | ||
32603266 TT |
6939 | static notif_event_up |
6940 | remote_notif_stop_alloc_reply () | |
722247f1 | 6941 | { |
32603266 | 6942 | return notif_event_up (new struct stop_reply ()); |
722247f1 YQ |
6943 | } |
6944 | ||
6945 | /* A client of notification Stop. */ | |
6946 | ||
6947 | struct notif_client notif_client_stop = | |
6948 | { | |
6949 | "Stop", | |
6950 | "vStopped", | |
6951 | remote_notif_stop_parse, | |
6952 | remote_notif_stop_ack, | |
6953 | remote_notif_stop_can_get_pending_events, | |
6954 | remote_notif_stop_alloc_reply, | |
f48ff2a7 | 6955 | REMOTE_NOTIF_STOP, |
722247f1 YQ |
6956 | }; |
6957 | ||
85ad3aaf | 6958 | /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains |
cbb8991c DB |
6959 | the pid of the process that owns the threads we want to check, or |
6960 | -1 if we want to check all threads. */ | |
6961 | ||
6962 | static int | |
6963 | is_pending_fork_parent (struct target_waitstatus *ws, int event_pid, | |
6964 | ptid_t thread_ptid) | |
6965 | { | |
6966 | if (ws->kind == TARGET_WAITKIND_FORKED | |
6967 | || ws->kind == TARGET_WAITKIND_VFORKED) | |
6968 | { | |
e99b03dc | 6969 | if (event_pid == -1 || event_pid == thread_ptid.pid ()) |
cbb8991c DB |
6970 | return 1; |
6971 | } | |
6972 | ||
6973 | return 0; | |
6974 | } | |
6975 | ||
85ad3aaf PA |
6976 | /* Return the thread's pending status used to determine whether the |
6977 | thread is a fork parent stopped at a fork event. */ | |
6978 | ||
6979 | static struct target_waitstatus * | |
6980 | thread_pending_fork_status (struct thread_info *thread) | |
6981 | { | |
6982 | if (thread->suspend.waitstatus_pending_p) | |
6983 | return &thread->suspend.waitstatus; | |
6984 | else | |
6985 | return &thread->pending_follow; | |
6986 | } | |
6987 | ||
6988 | /* Determine if THREAD is a pending fork parent thread. */ | |
6989 | ||
6990 | static int | |
6991 | is_pending_fork_parent_thread (struct thread_info *thread) | |
6992 | { | |
6993 | struct target_waitstatus *ws = thread_pending_fork_status (thread); | |
6994 | int pid = -1; | |
6995 | ||
6996 | return is_pending_fork_parent (ws, pid, thread->ptid); | |
6997 | } | |
6998 | ||
cbb8991c DB |
6999 | /* If CONTEXT contains any fork child threads that have not been |
7000 | reported yet, remove them from the CONTEXT list. If such a | |
7001 | thread exists it is because we are stopped at a fork catchpoint | |
7002 | and have not yet called follow_fork, which will set up the | |
7003 | host-side data structures for the new process. */ | |
7004 | ||
6b8edb51 PA |
7005 | void |
7006 | remote_target::remove_new_fork_children (threads_listing_context *context) | |
cbb8991c | 7007 | { |
cbb8991c DB |
7008 | int pid = -1; |
7009 | struct notif_client *notif = ¬if_client_stop; | |
cbb8991c DB |
7010 | |
7011 | /* For any threads stopped at a fork event, remove the corresponding | |
7012 | fork child threads from the CONTEXT list. */ | |
5b6d1e4f | 7013 | for (thread_info *thread : all_non_exited_threads (this)) |
cbb8991c | 7014 | { |
85ad3aaf | 7015 | struct target_waitstatus *ws = thread_pending_fork_status (thread); |
cbb8991c DB |
7016 | |
7017 | if (is_pending_fork_parent (ws, pid, thread->ptid)) | |
21fe1c75 | 7018 | context->remove_thread (ws->value.related_pid); |
cbb8991c DB |
7019 | } |
7020 | ||
7021 | /* Check for any pending fork events (not reported or processed yet) | |
7022 | in process PID and remove those fork child threads from the | |
7023 | CONTEXT list as well. */ | |
7024 | remote_notif_get_pending_events (notif); | |
953edf2b TT |
7025 | for (auto &event : get_remote_state ()->stop_reply_queue) |
7026 | if (event->ws.kind == TARGET_WAITKIND_FORKED | |
7027 | || event->ws.kind == TARGET_WAITKIND_VFORKED | |
7028 | || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED) | |
7029 | context->remove_thread (event->ws.value.related_pid); | |
85ad3aaf PA |
7030 | } |
7031 | ||
7032 | /* Check whether any event pending in the vStopped queue would prevent | |
7033 | a global or process wildcard vCont action. Clear | |
7034 | *may_global_wildcard if we can't do a global wildcard (vCont;c), | |
7035 | and clear the event inferior's may_wildcard_vcont flag if we can't | |
7036 | do a process-wide wildcard resume (vCont;c:pPID.-1). */ | |
7037 | ||
6b8edb51 PA |
7038 | void |
7039 | remote_target::check_pending_events_prevent_wildcard_vcont | |
7040 | (int *may_global_wildcard) | |
85ad3aaf PA |
7041 | { |
7042 | struct notif_client *notif = ¬if_client_stop; | |
7043 | ||
7044 | remote_notif_get_pending_events (notif); | |
953edf2b TT |
7045 | for (auto &event : get_remote_state ()->stop_reply_queue) |
7046 | { | |
7047 | if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED | |
7048 | || event->ws.kind == TARGET_WAITKIND_NO_HISTORY) | |
7049 | continue; | |
85ad3aaf | 7050 | |
953edf2b TT |
7051 | if (event->ws.kind == TARGET_WAITKIND_FORKED |
7052 | || event->ws.kind == TARGET_WAITKIND_VFORKED) | |
7053 | *may_global_wildcard = 0; | |
722247f1 | 7054 | |
5b6d1e4f | 7055 | struct inferior *inf = find_inferior_ptid (this, event->ptid); |
722247f1 | 7056 | |
953edf2b TT |
7057 | /* This may be the first time we heard about this process. |
7058 | Regardless, we must not do a global wildcard resume, otherwise | |
7059 | we'd resume this process too. */ | |
7060 | *may_global_wildcard = 0; | |
7061 | if (inf != NULL) | |
7062 | get_remote_inferior (inf)->may_wildcard_vcont = false; | |
722247f1 | 7063 | } |
722247f1 YQ |
7064 | } |
7065 | ||
f48ff2a7 | 7066 | /* Discard all pending stop replies of inferior INF. */ |
c906108c | 7067 | |
6b8edb51 PA |
7068 | void |
7069 | remote_target::discard_pending_stop_replies (struct inferior *inf) | |
c906108c | 7070 | { |
f48ff2a7 YQ |
7071 | struct stop_reply *reply; |
7072 | struct remote_state *rs = get_remote_state (); | |
7073 | struct remote_notif_state *rns = rs->notif_state; | |
7074 | ||
7075 | /* This function can be notified when an inferior exists. When the | |
7076 | target is not remote, the notification state is NULL. */ | |
7077 | if (rs->remote_desc == NULL) | |
7078 | return; | |
7079 | ||
7080 | reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id]; | |
c906108c | 7081 | |
74531fed | 7082 | /* Discard the in-flight notification. */ |
e99b03dc | 7083 | if (reply != NULL && reply->ptid.pid () == inf->pid) |
74531fed | 7084 | { |
32603266 | 7085 | delete reply; |
f48ff2a7 | 7086 | rns->pending_event[notif_client_stop.id] = NULL; |
74531fed | 7087 | } |
c906108c | 7088 | |
74531fed PA |
7089 | /* Discard the stop replies we have already pulled with |
7090 | vStopped. */ | |
953edf2b TT |
7091 | auto iter = std::remove_if (rs->stop_reply_queue.begin (), |
7092 | rs->stop_reply_queue.end (), | |
7093 | [=] (const stop_reply_up &event) | |
7094 | { | |
7095 | return event->ptid.pid () == inf->pid; | |
7096 | }); | |
7097 | rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ()); | |
bcc75809 YQ |
7098 | } |
7099 | ||
7100 | /* Discard the stop replies for RS in stop_reply_queue. */ | |
f48ff2a7 | 7101 | |
6b8edb51 PA |
7102 | void |
7103 | remote_target::discard_pending_stop_replies_in_queue () | |
f48ff2a7 | 7104 | { |
6b8edb51 | 7105 | remote_state *rs = get_remote_state (); |
f48ff2a7 | 7106 | |
f48ff2a7 YQ |
7107 | /* Discard the stop replies we have already pulled with |
7108 | vStopped. */ | |
953edf2b TT |
7109 | auto iter = std::remove_if (rs->stop_reply_queue.begin (), |
7110 | rs->stop_reply_queue.end (), | |
7111 | [=] (const stop_reply_up &event) | |
7112 | { | |
7113 | return event->rs == rs; | |
7114 | }); | |
7115 | rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ()); | |
74531fed | 7116 | } |
43ff13b4 | 7117 | |
722247f1 YQ |
7118 | /* Remove the first reply in 'stop_reply_queue' which matches |
7119 | PTID. */ | |
2e9f7625 | 7120 | |
6b8edb51 PA |
7121 | struct stop_reply * |
7122 | remote_target::remote_notif_remove_queued_reply (ptid_t ptid) | |
74531fed | 7123 | { |
953edf2b | 7124 | remote_state *rs = get_remote_state (); |
722247f1 | 7125 | |
953edf2b TT |
7126 | auto iter = std::find_if (rs->stop_reply_queue.begin (), |
7127 | rs->stop_reply_queue.end (), | |
7128 | [=] (const stop_reply_up &event) | |
7129 | { | |
7130 | return event->ptid.matches (ptid); | |
7131 | }); | |
7132 | struct stop_reply *result; | |
7133 | if (iter == rs->stop_reply_queue.end ()) | |
7134 | result = nullptr; | |
7135 | else | |
7136 | { | |
7137 | result = iter->release (); | |
7138 | rs->stop_reply_queue.erase (iter); | |
7139 | } | |
722247f1 | 7140 | |
722247f1 YQ |
7141 | if (notif_debug) |
7142 | fprintf_unfiltered (gdb_stdlog, | |
7143 | "notif: discard queued event: 'Stop' in %s\n", | |
a068643d | 7144 | target_pid_to_str (ptid).c_str ()); |
a744cf53 | 7145 | |
953edf2b | 7146 | return result; |
74531fed | 7147 | } |
75c99385 | 7148 | |
74531fed PA |
7149 | /* Look for a queued stop reply belonging to PTID. If one is found, |
7150 | remove it from the queue, and return it. Returns NULL if none is | |
7151 | found. If there are still queued events left to process, tell the | |
7152 | event loop to get back to target_wait soon. */ | |
e24a49d8 | 7153 | |
6b8edb51 PA |
7154 | struct stop_reply * |
7155 | remote_target::queued_stop_reply (ptid_t ptid) | |
74531fed | 7156 | { |
953edf2b | 7157 | remote_state *rs = get_remote_state (); |
722247f1 | 7158 | struct stop_reply *r = remote_notif_remove_queued_reply (ptid); |
74531fed | 7159 | |
953edf2b | 7160 | if (!rs->stop_reply_queue.empty ()) |
6b8edb51 | 7161 | { |
6b8edb51 PA |
7162 | /* There's still at least an event left. */ |
7163 | mark_async_event_handler (rs->remote_async_inferior_event_token); | |
7164 | } | |
74531fed | 7165 | |
722247f1 | 7166 | return r; |
74531fed PA |
7167 | } |
7168 | ||
7169 | /* Push a fully parsed stop reply in the stop reply queue. Since we | |
7170 | know that we now have at least one queued event left to pass to the | |
7171 | core side, tell the event loop to get back to target_wait soon. */ | |
7172 | ||
6b8edb51 PA |
7173 | void |
7174 | remote_target::push_stop_reply (struct stop_reply *new_event) | |
74531fed | 7175 | { |
6b8edb51 | 7176 | remote_state *rs = get_remote_state (); |
953edf2b | 7177 | rs->stop_reply_queue.push_back (stop_reply_up (new_event)); |
74531fed | 7178 | |
722247f1 YQ |
7179 | if (notif_debug) |
7180 | fprintf_unfiltered (gdb_stdlog, | |
7181 | "notif: push 'Stop' %s to queue %d\n", | |
a068643d | 7182 | target_pid_to_str (new_event->ptid).c_str (), |
953edf2b | 7183 | int (rs->stop_reply_queue.size ())); |
74531fed | 7184 | |
6b8edb51 | 7185 | mark_async_event_handler (rs->remote_async_inferior_event_token); |
74531fed PA |
7186 | } |
7187 | ||
7188 | /* Returns true if we have a stop reply for PTID. */ | |
7189 | ||
6b8edb51 PA |
7190 | int |
7191 | remote_target::peek_stop_reply (ptid_t ptid) | |
74531fed | 7192 | { |
6b8edb51 | 7193 | remote_state *rs = get_remote_state (); |
953edf2b TT |
7194 | for (auto &event : rs->stop_reply_queue) |
7195 | if (ptid == event->ptid | |
7196 | && event->ws.kind == TARGET_WAITKIND_STOPPED) | |
7197 | return 1; | |
7198 | return 0; | |
74531fed PA |
7199 | } |
7200 | ||
26d56a93 SL |
7201 | /* Helper for remote_parse_stop_reply. Return nonzero if the substring |
7202 | starting with P and ending with PEND matches PREFIX. */ | |
7203 | ||
7204 | static int | |
7205 | strprefix (const char *p, const char *pend, const char *prefix) | |
7206 | { | |
7207 | for ( ; p < pend; p++, prefix++) | |
7208 | if (*p != *prefix) | |
7209 | return 0; | |
7210 | return *prefix == '\0'; | |
7211 | } | |
7212 | ||
74531fed PA |
7213 | /* Parse the stop reply in BUF. Either the function succeeds, and the |
7214 | result is stored in EVENT, or throws an error. */ | |
7215 | ||
6b8edb51 | 7216 | void |
bb277751 | 7217 | remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event) |
74531fed | 7218 | { |
5cd63fda | 7219 | remote_arch_state *rsa = NULL; |
74531fed | 7220 | ULONGEST addr; |
256642e8 | 7221 | const char *p; |
94585166 | 7222 | int skipregs = 0; |
74531fed PA |
7223 | |
7224 | event->ptid = null_ptid; | |
bcc75809 | 7225 | event->rs = get_remote_state (); |
74531fed PA |
7226 | event->ws.kind = TARGET_WAITKIND_IGNORE; |
7227 | event->ws.value.integer = 0; | |
f7e6eed5 | 7228 | event->stop_reason = TARGET_STOPPED_BY_NO_REASON; |
32603266 | 7229 | event->regcache.clear (); |
dc146f7c | 7230 | event->core = -1; |
74531fed PA |
7231 | |
7232 | switch (buf[0]) | |
7233 | { | |
7234 | case 'T': /* Status with PC, SP, FP, ... */ | |
cea39f65 MS |
7235 | /* Expedited reply, containing Signal, {regno, reg} repeat. */ |
7236 | /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where | |
7237 | ss = signal number | |
7238 | n... = register number | |
7239 | r... = register contents | |
7240 | */ | |
7241 | ||
7242 | p = &buf[3]; /* after Txx */ | |
7243 | while (*p) | |
7244 | { | |
256642e8 | 7245 | const char *p1; |
cea39f65 | 7246 | int fieldsize; |
43ff13b4 | 7247 | |
1f10ba14 PA |
7248 | p1 = strchr (p, ':'); |
7249 | if (p1 == NULL) | |
7250 | error (_("Malformed packet(a) (missing colon): %s\n\ | |
7251 | Packet: '%s'\n"), | |
7252 | p, buf); | |
7253 | if (p == p1) | |
7254 | error (_("Malformed packet(a) (missing register number): %s\n\ | |
7255 | Packet: '%s'\n"), | |
7256 | p, buf); | |
3c3bea1c | 7257 | |
1f10ba14 PA |
7258 | /* Some "registers" are actually extended stop information. |
7259 | Note if you're adding a new entry here: GDB 7.9 and | |
7260 | earlier assume that all register "numbers" that start | |
7261 | with an hex digit are real register numbers. Make sure | |
7262 | the server only sends such a packet if it knows the | |
7263 | client understands it. */ | |
c8e38a49 | 7264 | |
26d56a93 | 7265 | if (strprefix (p, p1, "thread")) |
1f10ba14 | 7266 | event->ptid = read_ptid (++p1, &p); |
82075af2 JS |
7267 | else if (strprefix (p, p1, "syscall_entry")) |
7268 | { | |
7269 | ULONGEST sysno; | |
7270 | ||
7271 | event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY; | |
7272 | p = unpack_varlen_hex (++p1, &sysno); | |
7273 | event->ws.value.syscall_number = (int) sysno; | |
7274 | } | |
7275 | else if (strprefix (p, p1, "syscall_return")) | |
7276 | { | |
7277 | ULONGEST sysno; | |
7278 | ||
7279 | event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN; | |
7280 | p = unpack_varlen_hex (++p1, &sysno); | |
7281 | event->ws.value.syscall_number = (int) sysno; | |
7282 | } | |
26d56a93 SL |
7283 | else if (strprefix (p, p1, "watch") |
7284 | || strprefix (p, p1, "rwatch") | |
7285 | || strprefix (p, p1, "awatch")) | |
cea39f65 | 7286 | { |
f7e6eed5 | 7287 | event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT; |
1f10ba14 PA |
7288 | p = unpack_varlen_hex (++p1, &addr); |
7289 | event->watch_data_address = (CORE_ADDR) addr; | |
cea39f65 | 7290 | } |
26d56a93 | 7291 | else if (strprefix (p, p1, "swbreak")) |
f7e6eed5 PA |
7292 | { |
7293 | event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT; | |
7294 | ||
7295 | /* Make sure the stub doesn't forget to indicate support | |
7296 | with qSupported. */ | |
7297 | if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE) | |
7298 | error (_("Unexpected swbreak stop reason")); | |
7299 | ||
7300 | /* The value part is documented as "must be empty", | |
7301 | though we ignore it, in case we ever decide to make | |
7302 | use of it in a backward compatible way. */ | |
8424cc97 | 7303 | p = strchrnul (p1 + 1, ';'); |
f7e6eed5 | 7304 | } |
26d56a93 | 7305 | else if (strprefix (p, p1, "hwbreak")) |
f7e6eed5 PA |
7306 | { |
7307 | event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT; | |
7308 | ||
7309 | /* Make sure the stub doesn't forget to indicate support | |
7310 | with qSupported. */ | |
7311 | if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE) | |
7312 | error (_("Unexpected hwbreak stop reason")); | |
7313 | ||
7314 | /* See above. */ | |
8424cc97 | 7315 | p = strchrnul (p1 + 1, ';'); |
f7e6eed5 | 7316 | } |
26d56a93 | 7317 | else if (strprefix (p, p1, "library")) |
cea39f65 | 7318 | { |
1f10ba14 | 7319 | event->ws.kind = TARGET_WAITKIND_LOADED; |
8424cc97 | 7320 | p = strchrnul (p1 + 1, ';'); |
1f10ba14 | 7321 | } |
26d56a93 | 7322 | else if (strprefix (p, p1, "replaylog")) |
1f10ba14 PA |
7323 | { |
7324 | event->ws.kind = TARGET_WAITKIND_NO_HISTORY; | |
7325 | /* p1 will indicate "begin" or "end", but it makes | |
7326 | no difference for now, so ignore it. */ | |
8424cc97 | 7327 | p = strchrnul (p1 + 1, ';'); |
1f10ba14 | 7328 | } |
26d56a93 | 7329 | else if (strprefix (p, p1, "core")) |
1f10ba14 PA |
7330 | { |
7331 | ULONGEST c; | |
a744cf53 | 7332 | |
1f10ba14 PA |
7333 | p = unpack_varlen_hex (++p1, &c); |
7334 | event->core = c; | |
cea39f65 | 7335 | } |
26d56a93 | 7336 | else if (strprefix (p, p1, "fork")) |
de0d863e DB |
7337 | { |
7338 | event->ws.value.related_pid = read_ptid (++p1, &p); | |
7339 | event->ws.kind = TARGET_WAITKIND_FORKED; | |
7340 | } | |
26d56a93 | 7341 | else if (strprefix (p, p1, "vfork")) |
c269dbdb DB |
7342 | { |
7343 | event->ws.value.related_pid = read_ptid (++p1, &p); | |
7344 | event->ws.kind = TARGET_WAITKIND_VFORKED; | |
7345 | } | |
26d56a93 | 7346 | else if (strprefix (p, p1, "vforkdone")) |
c269dbdb DB |
7347 | { |
7348 | event->ws.kind = TARGET_WAITKIND_VFORK_DONE; | |
8424cc97 | 7349 | p = strchrnul (p1 + 1, ';'); |
c269dbdb | 7350 | } |
6ab24463 | 7351 | else if (strprefix (p, p1, "exec")) |
94585166 DB |
7352 | { |
7353 | ULONGEST ignored; | |
94585166 DB |
7354 | int pathlen; |
7355 | ||
7356 | /* Determine the length of the execd pathname. */ | |
7357 | p = unpack_varlen_hex (++p1, &ignored); | |
7358 | pathlen = (p - p1) / 2; | |
7359 | ||
7360 | /* Save the pathname for event reporting and for | |
7361 | the next run command. */ | |
c6321f19 TT |
7362 | gdb::unique_xmalloc_ptr<char[]> pathname |
7363 | ((char *) xmalloc (pathlen + 1)); | |
7364 | hex2bin (p1, (gdb_byte *) pathname.get (), pathlen); | |
94585166 DB |
7365 | pathname[pathlen] = '\0'; |
7366 | ||
7367 | /* This is freed during event handling. */ | |
c6321f19 | 7368 | event->ws.value.execd_pathname = pathname.release (); |
94585166 DB |
7369 | event->ws.kind = TARGET_WAITKIND_EXECD; |
7370 | ||
7371 | /* Skip the registers included in this packet, since | |
7372 | they may be for an architecture different from the | |
7373 | one used by the original program. */ | |
7374 | skipregs = 1; | |
7375 | } | |
65706a29 PA |
7376 | else if (strprefix (p, p1, "create")) |
7377 | { | |
7378 | event->ws.kind = TARGET_WAITKIND_THREAD_CREATED; | |
8424cc97 | 7379 | p = strchrnul (p1 + 1, ';'); |
65706a29 | 7380 | } |
cea39f65 MS |
7381 | else |
7382 | { | |
1f10ba14 | 7383 | ULONGEST pnum; |
256642e8 | 7384 | const char *p_temp; |
1f10ba14 | 7385 | |
94585166 DB |
7386 | if (skipregs) |
7387 | { | |
8424cc97 | 7388 | p = strchrnul (p1 + 1, ';'); |
94585166 DB |
7389 | p++; |
7390 | continue; | |
7391 | } | |
7392 | ||
1f10ba14 PA |
7393 | /* Maybe a real ``P'' register number. */ |
7394 | p_temp = unpack_varlen_hex (p, &pnum); | |
7395 | /* If the first invalid character is the colon, we got a | |
7396 | register number. Otherwise, it's an unknown stop | |
7397 | reason. */ | |
7398 | if (p_temp == p1) | |
7399 | { | |
5cd63fda PA |
7400 | /* If we haven't parsed the event's thread yet, find |
7401 | it now, in order to find the architecture of the | |
7402 | reported expedited registers. */ | |
7403 | if (event->ptid == null_ptid) | |
7404 | { | |
7405 | const char *thr = strstr (p1 + 1, ";thread:"); | |
7406 | if (thr != NULL) | |
7407 | event->ptid = read_ptid (thr + strlen (";thread:"), | |
7408 | NULL); | |
7409 | else | |
3cada740 PA |
7410 | { |
7411 | /* Either the current thread hasn't changed, | |
7412 | or the inferior is not multi-threaded. | |
7413 | The event must be for the thread we last | |
7414 | set as (or learned as being) current. */ | |
7415 | event->ptid = event->rs->general_thread; | |
7416 | } | |
5cd63fda PA |
7417 | } |
7418 | ||
7419 | if (rsa == NULL) | |
7420 | { | |
5b6d1e4f PA |
7421 | inferior *inf |
7422 | = (event->ptid == null_ptid | |
7423 | ? NULL | |
7424 | : find_inferior_ptid (this, event->ptid)); | |
5cd63fda PA |
7425 | /* If this is the first time we learn anything |
7426 | about this process, skip the registers | |
7427 | included in this packet, since we don't yet | |
7428 | know which architecture to use to parse them. | |
7429 | We'll determine the architecture later when | |
7430 | we process the stop reply and retrieve the | |
7431 | target description, via | |
7432 | remote_notice_new_inferior -> | |
7433 | post_create_inferior. */ | |
7434 | if (inf == NULL) | |
7435 | { | |
7436 | p = strchrnul (p1 + 1, ';'); | |
7437 | p++; | |
7438 | continue; | |
7439 | } | |
7440 | ||
7441 | event->arch = inf->gdbarch; | |
9d6eea31 | 7442 | rsa = event->rs->get_remote_arch_state (event->arch); |
5cd63fda PA |
7443 | } |
7444 | ||
7445 | packet_reg *reg | |
7446 | = packet_reg_from_pnum (event->arch, rsa, pnum); | |
1f10ba14 | 7447 | cached_reg_t cached_reg; |
43ff13b4 | 7448 | |
1f10ba14 PA |
7449 | if (reg == NULL) |
7450 | error (_("Remote sent bad register number %s: %s\n\ | |
8a3fe4f8 | 7451 | Packet: '%s'\n"), |
1f10ba14 | 7452 | hex_string (pnum), p, buf); |
c8e38a49 | 7453 | |
1f10ba14 | 7454 | cached_reg.num = reg->regnum; |
d1dff226 | 7455 | cached_reg.data = (gdb_byte *) |
5cd63fda | 7456 | xmalloc (register_size (event->arch, reg->regnum)); |
4100683b | 7457 | |
1f10ba14 PA |
7458 | p = p1 + 1; |
7459 | fieldsize = hex2bin (p, cached_reg.data, | |
5cd63fda | 7460 | register_size (event->arch, reg->regnum)); |
1f10ba14 | 7461 | p += 2 * fieldsize; |
5cd63fda | 7462 | if (fieldsize < register_size (event->arch, reg->regnum)) |
1f10ba14 | 7463 | warning (_("Remote reply is too short: %s"), buf); |
74531fed | 7464 | |
32603266 | 7465 | event->regcache.push_back (cached_reg); |
1f10ba14 PA |
7466 | } |
7467 | else | |
7468 | { | |
7469 | /* Not a number. Silently skip unknown optional | |
7470 | info. */ | |
8424cc97 | 7471 | p = strchrnul (p1 + 1, ';'); |
1f10ba14 | 7472 | } |
cea39f65 | 7473 | } |
c8e38a49 | 7474 | |
cea39f65 MS |
7475 | if (*p != ';') |
7476 | error (_("Remote register badly formatted: %s\nhere: %s"), | |
7477 | buf, p); | |
7478 | ++p; | |
7479 | } | |
5b5596ff PA |
7480 | |
7481 | if (event->ws.kind != TARGET_WAITKIND_IGNORE) | |
7482 | break; | |
7483 | ||
c8e38a49 PA |
7484 | /* fall through */ |
7485 | case 'S': /* Old style status, just signal only. */ | |
3a09da41 PA |
7486 | { |
7487 | int sig; | |
7488 | ||
7489 | event->ws.kind = TARGET_WAITKIND_STOPPED; | |
7490 | sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]); | |
7491 | if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST) | |
7492 | event->ws.value.sig = (enum gdb_signal) sig; | |
7493 | else | |
7494 | event->ws.value.sig = GDB_SIGNAL_UNKNOWN; | |
7495 | } | |
c8e38a49 | 7496 | break; |
65706a29 PA |
7497 | case 'w': /* Thread exited. */ |
7498 | { | |
65706a29 PA |
7499 | ULONGEST value; |
7500 | ||
7501 | event->ws.kind = TARGET_WAITKIND_THREAD_EXITED; | |
7502 | p = unpack_varlen_hex (&buf[1], &value); | |
7503 | event->ws.value.integer = value; | |
7504 | if (*p != ';') | |
7505 | error (_("stop reply packet badly formatted: %s"), buf); | |
974eac9d | 7506 | event->ptid = read_ptid (++p, NULL); |
65706a29 PA |
7507 | break; |
7508 | } | |
c8e38a49 PA |
7509 | case 'W': /* Target exited. */ |
7510 | case 'X': | |
7511 | { | |
c8e38a49 | 7512 | ULONGEST value; |
82f73884 | 7513 | |
c8e38a49 PA |
7514 | /* GDB used to accept only 2 hex chars here. Stubs should |
7515 | only send more if they detect GDB supports multi-process | |
7516 | support. */ | |
7517 | p = unpack_varlen_hex (&buf[1], &value); | |
82f73884 | 7518 | |
c8e38a49 PA |
7519 | if (buf[0] == 'W') |
7520 | { | |
7521 | /* The remote process exited. */ | |
74531fed PA |
7522 | event->ws.kind = TARGET_WAITKIND_EXITED; |
7523 | event->ws.value.integer = value; | |
c8e38a49 PA |
7524 | } |
7525 | else | |
7526 | { | |
7527 | /* The remote process exited with a signal. */ | |
74531fed | 7528 | event->ws.kind = TARGET_WAITKIND_SIGNALLED; |
3a09da41 PA |
7529 | if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST) |
7530 | event->ws.value.sig = (enum gdb_signal) value; | |
7531 | else | |
7532 | event->ws.value.sig = GDB_SIGNAL_UNKNOWN; | |
c8e38a49 | 7533 | } |
82f73884 | 7534 | |
e7af6c70 TBA |
7535 | /* If no process is specified, return null_ptid, and let the |
7536 | caller figure out the right process to use. */ | |
7537 | int pid = 0; | |
c8e38a49 PA |
7538 | if (*p == '\0') |
7539 | ; | |
7540 | else if (*p == ';') | |
7541 | { | |
7542 | p++; | |
7543 | ||
0b24eb2d | 7544 | if (*p == '\0') |
82f73884 | 7545 | ; |
61012eef | 7546 | else if (startswith (p, "process:")) |
82f73884 | 7547 | { |
c8e38a49 | 7548 | ULONGEST upid; |
a744cf53 | 7549 | |
c8e38a49 PA |
7550 | p += sizeof ("process:") - 1; |
7551 | unpack_varlen_hex (p, &upid); | |
7552 | pid = upid; | |
82f73884 PA |
7553 | } |
7554 | else | |
7555 | error (_("unknown stop reply packet: %s"), buf); | |
43ff13b4 | 7556 | } |
c8e38a49 PA |
7557 | else |
7558 | error (_("unknown stop reply packet: %s"), buf); | |
f2907e49 | 7559 | event->ptid = ptid_t (pid); |
74531fed PA |
7560 | } |
7561 | break; | |
f2faf941 PA |
7562 | case 'N': |
7563 | event->ws.kind = TARGET_WAITKIND_NO_RESUMED; | |
7564 | event->ptid = minus_one_ptid; | |
7565 | break; | |
74531fed PA |
7566 | } |
7567 | ||
d7e15655 | 7568 | if (target_is_non_stop_p () && event->ptid == null_ptid) |
74531fed PA |
7569 | error (_("No process or thread specified in stop reply: %s"), buf); |
7570 | } | |
7571 | ||
722247f1 YQ |
7572 | /* When the stub wants to tell GDB about a new notification reply, it |
7573 | sends a notification (%Stop, for example). Those can come it at | |
7574 | any time, hence, we have to make sure that any pending | |
7575 | putpkt/getpkt sequence we're making is finished, before querying | |
7576 | the stub for more events with the corresponding ack command | |
7577 | (vStopped, for example). E.g., if we started a vStopped sequence | |
7578 | immediately upon receiving the notification, something like this | |
7579 | could happen: | |
74531fed PA |
7580 | |
7581 | 1.1) --> Hg 1 | |
7582 | 1.2) <-- OK | |
7583 | 1.3) --> g | |
7584 | 1.4) <-- %Stop | |
7585 | 1.5) --> vStopped | |
7586 | 1.6) <-- (registers reply to step #1.3) | |
7587 | ||
7588 | Obviously, the reply in step #1.6 would be unexpected to a vStopped | |
7589 | query. | |
7590 | ||
796cb314 | 7591 | To solve this, whenever we parse a %Stop notification successfully, |
74531fed PA |
7592 | we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on |
7593 | doing whatever we were doing: | |
7594 | ||
7595 | 2.1) --> Hg 1 | |
7596 | 2.2) <-- OK | |
7597 | 2.3) --> g | |
7598 | 2.4) <-- %Stop | |
7599 | <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN> | |
7600 | 2.5) <-- (registers reply to step #2.3) | |
7601 | ||
85102364 | 7602 | Eventually after step #2.5, we return to the event loop, which |
74531fed PA |
7603 | notices there's an event on the |
7604 | REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the | |
7605 | associated callback --- the function below. At this point, we're | |
7606 | always safe to start a vStopped sequence. : | |
7607 | ||
7608 | 2.6) --> vStopped | |
7609 | 2.7) <-- T05 thread:2 | |
7610 | 2.8) --> vStopped | |
7611 | 2.9) --> OK | |
7612 | */ | |
7613 | ||
722247f1 | 7614 | void |
6b8edb51 | 7615 | remote_target::remote_notif_get_pending_events (notif_client *nc) |
74531fed PA |
7616 | { |
7617 | struct remote_state *rs = get_remote_state (); | |
74531fed | 7618 | |
f48ff2a7 | 7619 | if (rs->notif_state->pending_event[nc->id] != NULL) |
74531fed | 7620 | { |
722247f1 YQ |
7621 | if (notif_debug) |
7622 | fprintf_unfiltered (gdb_stdlog, | |
7623 | "notif: process: '%s' ack pending event\n", | |
7624 | nc->name); | |
74531fed | 7625 | |
722247f1 | 7626 | /* acknowledge */ |
8d64371b TT |
7627 | nc->ack (this, nc, rs->buf.data (), |
7628 | rs->notif_state->pending_event[nc->id]); | |
f48ff2a7 | 7629 | rs->notif_state->pending_event[nc->id] = NULL; |
74531fed PA |
7630 | |
7631 | while (1) | |
7632 | { | |
8d64371b TT |
7633 | getpkt (&rs->buf, 0); |
7634 | if (strcmp (rs->buf.data (), "OK") == 0) | |
74531fed PA |
7635 | break; |
7636 | else | |
8d64371b | 7637 | remote_notif_ack (this, nc, rs->buf.data ()); |
74531fed PA |
7638 | } |
7639 | } | |
722247f1 YQ |
7640 | else |
7641 | { | |
7642 | if (notif_debug) | |
7643 | fprintf_unfiltered (gdb_stdlog, | |
7644 | "notif: process: '%s' no pending reply\n", | |
7645 | nc->name); | |
7646 | } | |
74531fed PA |
7647 | } |
7648 | ||
6b8edb51 PA |
7649 | /* Wrapper around remote_target::remote_notif_get_pending_events to |
7650 | avoid having to export the whole remote_target class. */ | |
7651 | ||
7652 | void | |
7653 | remote_notif_get_pending_events (remote_target *remote, notif_client *nc) | |
7654 | { | |
7655 | remote->remote_notif_get_pending_events (nc); | |
7656 | } | |
7657 | ||
74531fed PA |
7658 | /* Called when it is decided that STOP_REPLY holds the info of the |
7659 | event that is to be returned to the core. This function always | |
7660 | destroys STOP_REPLY. */ | |
7661 | ||
6b8edb51 PA |
7662 | ptid_t |
7663 | remote_target::process_stop_reply (struct stop_reply *stop_reply, | |
7664 | struct target_waitstatus *status) | |
74531fed PA |
7665 | { |
7666 | ptid_t ptid; | |
7667 | ||
7668 | *status = stop_reply->ws; | |
7669 | ptid = stop_reply->ptid; | |
7670 | ||
7671 | /* If no thread/process was reported by the stub, assume the current | |
7672 | inferior. */ | |
d7e15655 | 7673 | if (ptid == null_ptid) |
74531fed PA |
7674 | ptid = inferior_ptid; |
7675 | ||
5f3563ea | 7676 | if (status->kind != TARGET_WAITKIND_EXITED |
f2faf941 PA |
7677 | && status->kind != TARGET_WAITKIND_SIGNALLED |
7678 | && status->kind != TARGET_WAITKIND_NO_RESUMED) | |
74531fed | 7679 | { |
5f3563ea | 7680 | /* Expedited registers. */ |
32603266 | 7681 | if (!stop_reply->regcache.empty ()) |
5f3563ea | 7682 | { |
217f1f79 | 7683 | struct regcache *regcache |
5b6d1e4f | 7684 | = get_thread_arch_regcache (this, ptid, stop_reply->arch); |
5f3563ea | 7685 | |
32603266 TT |
7686 | for (cached_reg_t ® : stop_reply->regcache) |
7687 | { | |
7688 | regcache->raw_supply (reg.num, reg.data); | |
7689 | xfree (reg.data); | |
7690 | } | |
d1dff226 | 7691 | |
32603266 | 7692 | stop_reply->regcache.clear (); |
5f3563ea | 7693 | } |
74531fed | 7694 | |
1941c569 | 7695 | remote_notice_new_inferior (ptid, 0); |
5b6d1e4f | 7696 | remote_thread_info *remote_thr = get_remote_thread_info (this, ptid); |
799a2abe PA |
7697 | remote_thr->core = stop_reply->core; |
7698 | remote_thr->stop_reason = stop_reply->stop_reason; | |
7699 | remote_thr->watch_data_address = stop_reply->watch_data_address; | |
85ad3aaf | 7700 | remote_thr->vcont_resumed = 0; |
74531fed PA |
7701 | } |
7702 | ||
32603266 | 7703 | delete stop_reply; |
74531fed PA |
7704 | return ptid; |
7705 | } | |
7706 | ||
7707 | /* The non-stop mode version of target_wait. */ | |
7708 | ||
6b8edb51 PA |
7709 | ptid_t |
7710 | remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options) | |
74531fed PA |
7711 | { |
7712 | struct remote_state *rs = get_remote_state (); | |
74531fed PA |
7713 | struct stop_reply *stop_reply; |
7714 | int ret; | |
fee9eda9 | 7715 | int is_notif = 0; |
74531fed PA |
7716 | |
7717 | /* If in non-stop mode, get out of getpkt even if a | |
7718 | notification is received. */ | |
7719 | ||
8d64371b | 7720 | ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif); |
74531fed PA |
7721 | while (1) |
7722 | { | |
fee9eda9 | 7723 | if (ret != -1 && !is_notif) |
74531fed PA |
7724 | switch (rs->buf[0]) |
7725 | { | |
7726 | case 'E': /* Error of some sort. */ | |
7727 | /* We're out of sync with the target now. Did it continue | |
7728 | or not? We can't tell which thread it was in non-stop, | |
7729 | so just ignore this. */ | |
8d64371b | 7730 | warning (_("Remote failure reply: %s"), rs->buf.data ()); |
74531fed PA |
7731 | break; |
7732 | case 'O': /* Console output. */ | |
8d64371b | 7733 | remote_console_output (&rs->buf[1]); |
74531fed PA |
7734 | break; |
7735 | default: | |
8d64371b | 7736 | warning (_("Invalid remote reply: %s"), rs->buf.data ()); |
74531fed PA |
7737 | break; |
7738 | } | |
7739 | ||
7740 | /* Acknowledge a pending stop reply that may have arrived in the | |
7741 | mean time. */ | |
f48ff2a7 | 7742 | if (rs->notif_state->pending_event[notif_client_stop.id] != NULL) |
722247f1 | 7743 | remote_notif_get_pending_events (¬if_client_stop); |
74531fed PA |
7744 | |
7745 | /* If indeed we noticed a stop reply, we're done. */ | |
7746 | stop_reply = queued_stop_reply (ptid); | |
7747 | if (stop_reply != NULL) | |
7748 | return process_stop_reply (stop_reply, status); | |
7749 | ||
47608cb1 | 7750 | /* Still no event. If we're just polling for an event, then |
74531fed | 7751 | return to the event loop. */ |
47608cb1 | 7752 | if (options & TARGET_WNOHANG) |
74531fed PA |
7753 | { |
7754 | status->kind = TARGET_WAITKIND_IGNORE; | |
7755 | return minus_one_ptid; | |
7756 | } | |
7757 | ||
47608cb1 | 7758 | /* Otherwise do a blocking wait. */ |
8d64371b | 7759 | ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif); |
74531fed PA |
7760 | } |
7761 | } | |
7762 | ||
31ba933e PA |
7763 | /* Return the first resumed thread. */ |
7764 | ||
7765 | static ptid_t | |
5b6d1e4f | 7766 | first_remote_resumed_thread (remote_target *target) |
31ba933e | 7767 | { |
5b6d1e4f | 7768 | for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid)) |
31ba933e PA |
7769 | if (tp->resumed) |
7770 | return tp->ptid; | |
7771 | return null_ptid; | |
7772 | } | |
7773 | ||
74531fed PA |
7774 | /* Wait until the remote machine stops, then return, storing status in |
7775 | STATUS just as `wait' would. */ | |
7776 | ||
6b8edb51 PA |
7777 | ptid_t |
7778 | remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options) | |
74531fed PA |
7779 | { |
7780 | struct remote_state *rs = get_remote_state (); | |
74531fed | 7781 | ptid_t event_ptid = null_ptid; |
cea39f65 | 7782 | char *buf; |
74531fed PA |
7783 | struct stop_reply *stop_reply; |
7784 | ||
47608cb1 PA |
7785 | again: |
7786 | ||
74531fed PA |
7787 | status->kind = TARGET_WAITKIND_IGNORE; |
7788 | status->value.integer = 0; | |
7789 | ||
7790 | stop_reply = queued_stop_reply (ptid); | |
7791 | if (stop_reply != NULL) | |
7792 | return process_stop_reply (stop_reply, status); | |
7793 | ||
7794 | if (rs->cached_wait_status) | |
7795 | /* Use the cached wait status, but only once. */ | |
7796 | rs->cached_wait_status = 0; | |
7797 | else | |
7798 | { | |
7799 | int ret; | |
722247f1 | 7800 | int is_notif; |
567420d1 | 7801 | int forever = ((options & TARGET_WNOHANG) == 0 |
6b8edb51 | 7802 | && rs->wait_forever_enabled_p); |
567420d1 PA |
7803 | |
7804 | if (!rs->waiting_for_stop_reply) | |
7805 | { | |
7806 | status->kind = TARGET_WAITKIND_NO_RESUMED; | |
7807 | return minus_one_ptid; | |
7808 | } | |
74531fed | 7809 | |
74531fed PA |
7810 | /* FIXME: cagney/1999-09-27: If we're in async mode we should |
7811 | _never_ wait for ever -> test on target_is_async_p(). | |
7812 | However, before we do that we need to ensure that the caller | |
7813 | knows how to take the target into/out of async mode. */ | |
8d64371b | 7814 | ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif); |
722247f1 YQ |
7815 | |
7816 | /* GDB gets a notification. Return to core as this event is | |
7817 | not interesting. */ | |
7818 | if (ret != -1 && is_notif) | |
7819 | return minus_one_ptid; | |
567420d1 PA |
7820 | |
7821 | if (ret == -1 && (options & TARGET_WNOHANG) != 0) | |
7822 | return minus_one_ptid; | |
74531fed PA |
7823 | } |
7824 | ||
8d64371b | 7825 | buf = rs->buf.data (); |
74531fed | 7826 | |
3a29589a DJ |
7827 | /* Assume that the target has acknowledged Ctrl-C unless we receive |
7828 | an 'F' or 'O' packet. */ | |
7829 | if (buf[0] != 'F' && buf[0] != 'O') | |
7830 | rs->ctrlc_pending_p = 0; | |
7831 | ||
74531fed PA |
7832 | switch (buf[0]) |
7833 | { | |
7834 | case 'E': /* Error of some sort. */ | |
7835 | /* We're out of sync with the target now. Did it continue or | |
7836 | not? Not is more likely, so report a stop. */ | |
29090fb6 LM |
7837 | rs->waiting_for_stop_reply = 0; |
7838 | ||
74531fed PA |
7839 | warning (_("Remote failure reply: %s"), buf); |
7840 | status->kind = TARGET_WAITKIND_STOPPED; | |
a493e3e2 | 7841 | status->value.sig = GDB_SIGNAL_0; |
74531fed PA |
7842 | break; |
7843 | case 'F': /* File-I/O request. */ | |
e42e5352 YQ |
7844 | /* GDB may access the inferior memory while handling the File-I/O |
7845 | request, but we don't want GDB accessing memory while waiting | |
7846 | for a stop reply. See the comments in putpkt_binary. Set | |
7847 | waiting_for_stop_reply to 0 temporarily. */ | |
7848 | rs->waiting_for_stop_reply = 0; | |
6b8edb51 | 7849 | remote_fileio_request (this, buf, rs->ctrlc_pending_p); |
3a29589a | 7850 | rs->ctrlc_pending_p = 0; |
e42e5352 YQ |
7851 | /* GDB handled the File-I/O request, and the target is running |
7852 | again. Keep waiting for events. */ | |
7853 | rs->waiting_for_stop_reply = 1; | |
74531fed | 7854 | break; |
f2faf941 | 7855 | case 'N': case 'T': case 'S': case 'X': case 'W': |
74531fed | 7856 | { |
29090fb6 LM |
7857 | /* There is a stop reply to handle. */ |
7858 | rs->waiting_for_stop_reply = 0; | |
7859 | ||
7860 | stop_reply | |
6b8edb51 PA |
7861 | = (struct stop_reply *) remote_notif_parse (this, |
7862 | ¬if_client_stop, | |
8d64371b | 7863 | rs->buf.data ()); |
74531fed | 7864 | |
74531fed | 7865 | event_ptid = process_stop_reply (stop_reply, status); |
c8e38a49 PA |
7866 | break; |
7867 | } | |
7868 | case 'O': /* Console output. */ | |
7869 | remote_console_output (buf + 1); | |
c8e38a49 PA |
7870 | break; |
7871 | case '\0': | |
b73be471 | 7872 | if (rs->last_sent_signal != GDB_SIGNAL_0) |
c8e38a49 PA |
7873 | { |
7874 | /* Zero length reply means that we tried 'S' or 'C' and the | |
7875 | remote system doesn't support it. */ | |
223ffa71 | 7876 | target_terminal::ours_for_output (); |
c8e38a49 PA |
7877 | printf_filtered |
7878 | ("Can't send signals to this remote system. %s not sent.\n", | |
b73be471 TT |
7879 | gdb_signal_to_name (rs->last_sent_signal)); |
7880 | rs->last_sent_signal = GDB_SIGNAL_0; | |
223ffa71 | 7881 | target_terminal::inferior (); |
c8e38a49 | 7882 | |
f5c4fcd9 TT |
7883 | strcpy (buf, rs->last_sent_step ? "s" : "c"); |
7884 | putpkt (buf); | |
c8e38a49 | 7885 | break; |
43ff13b4 | 7886 | } |
86a73007 | 7887 | /* fallthrough */ |
c8e38a49 PA |
7888 | default: |
7889 | warning (_("Invalid remote reply: %s"), buf); | |
c8e38a49 | 7890 | break; |
43ff13b4 | 7891 | } |
c8e38a49 | 7892 | |
f2faf941 PA |
7893 | if (status->kind == TARGET_WAITKIND_NO_RESUMED) |
7894 | return minus_one_ptid; | |
7895 | else if (status->kind == TARGET_WAITKIND_IGNORE) | |
47608cb1 PA |
7896 | { |
7897 | /* Nothing interesting happened. If we're doing a non-blocking | |
7898 | poll, we're done. Otherwise, go back to waiting. */ | |
7899 | if (options & TARGET_WNOHANG) | |
7900 | return minus_one_ptid; | |
7901 | else | |
7902 | goto again; | |
7903 | } | |
74531fed PA |
7904 | else if (status->kind != TARGET_WAITKIND_EXITED |
7905 | && status->kind != TARGET_WAITKIND_SIGNALLED) | |
82f73884 | 7906 | { |
d7e15655 | 7907 | if (event_ptid != null_ptid) |
47f8a51d | 7908 | record_currthread (rs, event_ptid); |
82f73884 | 7909 | else |
5b6d1e4f | 7910 | event_ptid = first_remote_resumed_thread (this); |
43ff13b4 | 7911 | } |
74531fed | 7912 | else |
e7af6c70 TBA |
7913 | { |
7914 | /* A process exit. Invalidate our notion of current thread. */ | |
7915 | record_currthread (rs, minus_one_ptid); | |
7916 | /* It's possible that the packet did not include a pid. */ | |
7917 | if (event_ptid == null_ptid) | |
5b6d1e4f | 7918 | event_ptid = first_remote_resumed_thread (this); |
e7af6c70 TBA |
7919 | /* EVENT_PTID could still be NULL_PTID. Double-check. */ |
7920 | if (event_ptid == null_ptid) | |
7921 | event_ptid = magic_null_ptid; | |
7922 | } | |
79d7f229 | 7923 | |
82f73884 | 7924 | return event_ptid; |
43ff13b4 JM |
7925 | } |
7926 | ||
74531fed PA |
7927 | /* Wait until the remote machine stops, then return, storing status in |
7928 | STATUS just as `wait' would. */ | |
7929 | ||
f6ac5f3d PA |
7930 | ptid_t |
7931 | remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options) | |
c8e38a49 PA |
7932 | { |
7933 | ptid_t event_ptid; | |
7934 | ||
6efcd9a8 | 7935 | if (target_is_non_stop_p ()) |
6b8edb51 | 7936 | event_ptid = wait_ns (ptid, status, options); |
74531fed | 7937 | else |
6b8edb51 | 7938 | event_ptid = wait_as (ptid, status, options); |
c8e38a49 | 7939 | |
d9d41e78 | 7940 | if (target_is_async_p ()) |
c8e38a49 | 7941 | { |
6b8edb51 PA |
7942 | remote_state *rs = get_remote_state (); |
7943 | ||
74531fed PA |
7944 | /* If there are are events left in the queue tell the event loop |
7945 | to return here. */ | |
953edf2b | 7946 | if (!rs->stop_reply_queue.empty ()) |
6b8edb51 | 7947 | mark_async_event_handler (rs->remote_async_inferior_event_token); |
c8e38a49 | 7948 | } |
c8e38a49 PA |
7949 | |
7950 | return event_ptid; | |
7951 | } | |
7952 | ||
74ca34ce | 7953 | /* Fetch a single register using a 'p' packet. */ |
c906108c | 7954 | |
6b8edb51 PA |
7955 | int |
7956 | remote_target::fetch_register_using_p (struct regcache *regcache, | |
7957 | packet_reg *reg) | |
b96ec7ac | 7958 | { |
ac7936df | 7959 | struct gdbarch *gdbarch = regcache->arch (); |
b96ec7ac | 7960 | struct remote_state *rs = get_remote_state (); |
2e9f7625 | 7961 | char *buf, *p; |
9890e433 | 7962 | gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum)); |
b96ec7ac AC |
7963 | int i; |
7964 | ||
4082afcc | 7965 | if (packet_support (PACKET_p) == PACKET_DISABLE) |
74ca34ce DJ |
7966 | return 0; |
7967 | ||
7968 | if (reg->pnum == -1) | |
7969 | return 0; | |
7970 | ||
8d64371b | 7971 | p = rs->buf.data (); |
fcad0fa4 | 7972 | *p++ = 'p'; |
74ca34ce | 7973 | p += hexnumstr (p, reg->pnum); |
fcad0fa4 | 7974 | *p++ = '\0'; |
1f4437a4 | 7975 | putpkt (rs->buf); |
8d64371b | 7976 | getpkt (&rs->buf, 0); |
3f9a994c | 7977 | |
8d64371b | 7978 | buf = rs->buf.data (); |
2e9f7625 | 7979 | |
8d64371b | 7980 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p])) |
74ca34ce DJ |
7981 | { |
7982 | case PACKET_OK: | |
7983 | break; | |
7984 | case PACKET_UNKNOWN: | |
7985 | return 0; | |
7986 | case PACKET_ERROR: | |
27a9c0bf | 7987 | error (_("Could not fetch register \"%s\"; remote failure reply '%s'"), |
ac7936df | 7988 | gdbarch_register_name (regcache->arch (), |
27a9c0bf MS |
7989 | reg->regnum), |
7990 | buf); | |
74ca34ce | 7991 | } |
3f9a994c JB |
7992 | |
7993 | /* If this register is unfetchable, tell the regcache. */ | |
7994 | if (buf[0] == 'x') | |
8480adf2 | 7995 | { |
73e1c03f | 7996 | regcache->raw_supply (reg->regnum, NULL); |
8480adf2 | 7997 | return 1; |
b96ec7ac | 7998 | } |
b96ec7ac | 7999 | |
3f9a994c JB |
8000 | /* Otherwise, parse and supply the value. */ |
8001 | p = buf; | |
8002 | i = 0; | |
8003 | while (p[0] != 0) | |
8004 | { | |
8005 | if (p[1] == 0) | |
74ca34ce | 8006 | error (_("fetch_register_using_p: early buf termination")); |
3f9a994c JB |
8007 | |
8008 | regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]); | |
8009 | p += 2; | |
8010 | } | |
73e1c03f | 8011 | regcache->raw_supply (reg->regnum, regp); |
3f9a994c | 8012 | return 1; |
b96ec7ac AC |
8013 | } |
8014 | ||
74ca34ce DJ |
8015 | /* Fetch the registers included in the target's 'g' packet. */ |
8016 | ||
6b8edb51 PA |
8017 | int |
8018 | remote_target::send_g_packet () | |
c906108c | 8019 | { |
d01949b6 | 8020 | struct remote_state *rs = get_remote_state (); |
cea39f65 | 8021 | int buf_len; |
c906108c | 8022 | |
8d64371b | 8023 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "g"); |
b75abf5b | 8024 | putpkt (rs->buf); |
8d64371b | 8025 | getpkt (&rs->buf, 0); |
b75abf5b AK |
8026 | if (packet_check_result (rs->buf) == PACKET_ERROR) |
8027 | error (_("Could not read registers; remote failure reply '%s'"), | |
8d64371b | 8028 | rs->buf.data ()); |
c906108c | 8029 | |
29709017 DJ |
8030 | /* We can get out of synch in various cases. If the first character |
8031 | in the buffer is not a hex character, assume that has happened | |
8032 | and try to fetch another packet to read. */ | |
8033 | while ((rs->buf[0] < '0' || rs->buf[0] > '9') | |
8034 | && (rs->buf[0] < 'A' || rs->buf[0] > 'F') | |
8035 | && (rs->buf[0] < 'a' || rs->buf[0] > 'f') | |
8036 | && rs->buf[0] != 'x') /* New: unavailable register value. */ | |
8037 | { | |
8038 | if (remote_debug) | |
8039 | fprintf_unfiltered (gdb_stdlog, | |
8040 | "Bad register packet; fetching a new packet\n"); | |
8d64371b | 8041 | getpkt (&rs->buf, 0); |
29709017 DJ |
8042 | } |
8043 | ||
8d64371b | 8044 | buf_len = strlen (rs->buf.data ()); |
74ca34ce DJ |
8045 | |
8046 | /* Sanity check the received packet. */ | |
8047 | if (buf_len % 2 != 0) | |
8d64371b | 8048 | error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ()); |
29709017 DJ |
8049 | |
8050 | return buf_len / 2; | |
8051 | } | |
8052 | ||
6b8edb51 PA |
8053 | void |
8054 | remote_target::process_g_packet (struct regcache *regcache) | |
29709017 | 8055 | { |
ac7936df | 8056 | struct gdbarch *gdbarch = regcache->arch (); |
29709017 | 8057 | struct remote_state *rs = get_remote_state (); |
9d6eea31 | 8058 | remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch); |
29709017 DJ |
8059 | int i, buf_len; |
8060 | char *p; | |
8061 | char *regs; | |
8062 | ||
8d64371b | 8063 | buf_len = strlen (rs->buf.data ()); |
29709017 DJ |
8064 | |
8065 | /* Further sanity checks, with knowledge of the architecture. */ | |
74ca34ce | 8066 | if (buf_len > 2 * rsa->sizeof_g_packet) |
fc809827 | 8067 | error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d " |
8d64371b TT |
8068 | "bytes): %s"), |
8069 | rsa->sizeof_g_packet, buf_len / 2, | |
8070 | rs->buf.data ()); | |
74ca34ce DJ |
8071 | |
8072 | /* Save the size of the packet sent to us by the target. It is used | |
8073 | as a heuristic when determining the max size of packets that the | |
8074 | target can safely receive. */ | |
8075 | if (rsa->actual_register_packet_size == 0) | |
8076 | rsa->actual_register_packet_size = buf_len; | |
8077 | ||
8078 | /* If this is smaller than we guessed the 'g' packet would be, | |
8079 | update our records. A 'g' reply that doesn't include a register's | |
8080 | value implies either that the register is not available, or that | |
8081 | the 'p' packet must be used. */ | |
8082 | if (buf_len < 2 * rsa->sizeof_g_packet) | |
b323314b | 8083 | { |
9dc193c3 | 8084 | long sizeof_g_packet = buf_len / 2; |
74ca34ce | 8085 | |
4a22f64d | 8086 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
b96ec7ac | 8087 | { |
9dc193c3 LF |
8088 | long offset = rsa->regs[i].offset; |
8089 | long reg_size = register_size (gdbarch, i); | |
8090 | ||
74ca34ce DJ |
8091 | if (rsa->regs[i].pnum == -1) |
8092 | continue; | |
8093 | ||
9dc193c3 | 8094 | if (offset >= sizeof_g_packet) |
74ca34ce | 8095 | rsa->regs[i].in_g_packet = 0; |
9dc193c3 LF |
8096 | else if (offset + reg_size > sizeof_g_packet) |
8097 | error (_("Truncated register %d in remote 'g' packet"), i); | |
b96ec7ac | 8098 | else |
74ca34ce | 8099 | rsa->regs[i].in_g_packet = 1; |
b96ec7ac | 8100 | } |
9dc193c3 LF |
8101 | |
8102 | /* Looks valid enough, we can assume this is the correct length | |
8103 | for a 'g' packet. It's important not to adjust | |
8104 | rsa->sizeof_g_packet if we have truncated registers otherwise | |
8105 | this "if" won't be run the next time the method is called | |
8106 | with a packet of the same size and one of the internal errors | |
8107 | below will trigger instead. */ | |
8108 | rsa->sizeof_g_packet = sizeof_g_packet; | |
74ca34ce | 8109 | } |
b323314b | 8110 | |
224c3ddb | 8111 | regs = (char *) alloca (rsa->sizeof_g_packet); |
c906108c SS |
8112 | |
8113 | /* Unimplemented registers read as all bits zero. */ | |
ea9c271d | 8114 | memset (regs, 0, rsa->sizeof_g_packet); |
c906108c | 8115 | |
c906108c SS |
8116 | /* Reply describes registers byte by byte, each byte encoded as two |
8117 | hex characters. Suck them all up, then supply them to the | |
8118 | register cacheing/storage mechanism. */ | |
8119 | ||
8d64371b | 8120 | p = rs->buf.data (); |
ea9c271d | 8121 | for (i = 0; i < rsa->sizeof_g_packet; i++) |
c906108c | 8122 | { |
74ca34ce DJ |
8123 | if (p[0] == 0 || p[1] == 0) |
8124 | /* This shouldn't happen - we adjusted sizeof_g_packet above. */ | |
8125 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 8126 | _("unexpected end of 'g' packet reply")); |
74ca34ce | 8127 | |
c906108c | 8128 | if (p[0] == 'x' && p[1] == 'x') |
c5aa993b | 8129 | regs[i] = 0; /* 'x' */ |
c906108c SS |
8130 | else |
8131 | regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]); | |
8132 | p += 2; | |
8133 | } | |
8134 | ||
a744cf53 MS |
8135 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
8136 | { | |
8137 | struct packet_reg *r = &rsa->regs[i]; | |
9dc193c3 | 8138 | long reg_size = register_size (gdbarch, i); |
a744cf53 MS |
8139 | |
8140 | if (r->in_g_packet) | |
8141 | { | |
8d64371b | 8142 | if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ())) |
a744cf53 MS |
8143 | /* This shouldn't happen - we adjusted in_g_packet above. */ |
8144 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 8145 | _("unexpected end of 'g' packet reply")); |
a744cf53 MS |
8146 | else if (rs->buf[r->offset * 2] == 'x') |
8147 | { | |
8d64371b | 8148 | gdb_assert (r->offset * 2 < strlen (rs->buf.data ())); |
a744cf53 MS |
8149 | /* The register isn't available, mark it as such (at |
8150 | the same time setting the value to zero). */ | |
73e1c03f | 8151 | regcache->raw_supply (r->regnum, NULL); |
a744cf53 MS |
8152 | } |
8153 | else | |
73e1c03f | 8154 | regcache->raw_supply (r->regnum, regs + r->offset); |
a744cf53 MS |
8155 | } |
8156 | } | |
c906108c SS |
8157 | } |
8158 | ||
6b8edb51 PA |
8159 | void |
8160 | remote_target::fetch_registers_using_g (struct regcache *regcache) | |
29709017 DJ |
8161 | { |
8162 | send_g_packet (); | |
56be3814 | 8163 | process_g_packet (regcache); |
29709017 DJ |
8164 | } |
8165 | ||
e6e4e701 PA |
8166 | /* Make the remote selected traceframe match GDB's selected |
8167 | traceframe. */ | |
8168 | ||
6b8edb51 PA |
8169 | void |
8170 | remote_target::set_remote_traceframe () | |
e6e4e701 PA |
8171 | { |
8172 | int newnum; | |
262e1174 | 8173 | struct remote_state *rs = get_remote_state (); |
e6e4e701 | 8174 | |
262e1174 | 8175 | if (rs->remote_traceframe_number == get_traceframe_number ()) |
e6e4e701 PA |
8176 | return; |
8177 | ||
8178 | /* Avoid recursion, remote_trace_find calls us again. */ | |
262e1174 | 8179 | rs->remote_traceframe_number = get_traceframe_number (); |
e6e4e701 PA |
8180 | |
8181 | newnum = target_trace_find (tfind_number, | |
8182 | get_traceframe_number (), 0, 0, NULL); | |
8183 | ||
8184 | /* Should not happen. If it does, all bets are off. */ | |
8185 | if (newnum != get_traceframe_number ()) | |
8186 | warning (_("could not set remote traceframe")); | |
8187 | } | |
8188 | ||
f6ac5f3d PA |
8189 | void |
8190 | remote_target::fetch_registers (struct regcache *regcache, int regnum) | |
74ca34ce | 8191 | { |
ac7936df | 8192 | struct gdbarch *gdbarch = regcache->arch (); |
9d6eea31 PA |
8193 | struct remote_state *rs = get_remote_state (); |
8194 | remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch); | |
74ca34ce DJ |
8195 | int i; |
8196 | ||
e6e4e701 | 8197 | set_remote_traceframe (); |
222312d3 | 8198 | set_general_thread (regcache->ptid ()); |
74ca34ce DJ |
8199 | |
8200 | if (regnum >= 0) | |
8201 | { | |
5cd63fda | 8202 | packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum); |
a744cf53 | 8203 | |
74ca34ce DJ |
8204 | gdb_assert (reg != NULL); |
8205 | ||
8206 | /* If this register might be in the 'g' packet, try that first - | |
8207 | we are likely to read more than one register. If this is the | |
8208 | first 'g' packet, we might be overly optimistic about its | |
8209 | contents, so fall back to 'p'. */ | |
8210 | if (reg->in_g_packet) | |
8211 | { | |
56be3814 | 8212 | fetch_registers_using_g (regcache); |
74ca34ce DJ |
8213 | if (reg->in_g_packet) |
8214 | return; | |
8215 | } | |
8216 | ||
56be3814 | 8217 | if (fetch_register_using_p (regcache, reg)) |
74ca34ce DJ |
8218 | return; |
8219 | ||
8220 | /* This register is not available. */ | |
73e1c03f | 8221 | regcache->raw_supply (reg->regnum, NULL); |
74ca34ce DJ |
8222 | |
8223 | return; | |
8224 | } | |
8225 | ||
56be3814 | 8226 | fetch_registers_using_g (regcache); |
74ca34ce | 8227 | |
5cd63fda | 8228 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
74ca34ce | 8229 | if (!rsa->regs[i].in_g_packet) |
56be3814 | 8230 | if (!fetch_register_using_p (regcache, &rsa->regs[i])) |
74ca34ce DJ |
8231 | { |
8232 | /* This register is not available. */ | |
73e1c03f | 8233 | regcache->raw_supply (i, NULL); |
74ca34ce DJ |
8234 | } |
8235 | } | |
8236 | ||
c906108c SS |
8237 | /* Prepare to store registers. Since we may send them all (using a |
8238 | 'G' request), we have to read out the ones we don't want to change | |
8239 | first. */ | |
8240 | ||
f6ac5f3d PA |
8241 | void |
8242 | remote_target::prepare_to_store (struct regcache *regcache) | |
c906108c | 8243 | { |
9d6eea31 PA |
8244 | struct remote_state *rs = get_remote_state (); |
8245 | remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ()); | |
cf0e1e0d | 8246 | int i; |
cf0e1e0d | 8247 | |
c906108c | 8248 | /* Make sure the entire registers array is valid. */ |
4082afcc | 8249 | switch (packet_support (PACKET_P)) |
5a2468f5 JM |
8250 | { |
8251 | case PACKET_DISABLE: | |
8252 | case PACKET_SUPPORT_UNKNOWN: | |
cf0e1e0d | 8253 | /* Make sure all the necessary registers are cached. */ |
ac7936df | 8254 | for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++) |
ea9c271d | 8255 | if (rsa->regs[i].in_g_packet) |
0b47d985 | 8256 | regcache->raw_update (rsa->regs[i].regnum); |
5a2468f5 JM |
8257 | break; |
8258 | case PACKET_ENABLE: | |
8259 | break; | |
8260 | } | |
8261 | } | |
8262 | ||
ad10f812 | 8263 | /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF |
23860348 | 8264 | packet was not recognized. */ |
5a2468f5 | 8265 | |
6b8edb51 PA |
8266 | int |
8267 | remote_target::store_register_using_P (const struct regcache *regcache, | |
8268 | packet_reg *reg) | |
5a2468f5 | 8269 | { |
ac7936df | 8270 | struct gdbarch *gdbarch = regcache->arch (); |
d01949b6 | 8271 | struct remote_state *rs = get_remote_state (); |
5a2468f5 | 8272 | /* Try storing a single register. */ |
8d64371b | 8273 | char *buf = rs->buf.data (); |
9890e433 | 8274 | gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum)); |
5a2468f5 | 8275 | char *p; |
5a2468f5 | 8276 | |
4082afcc | 8277 | if (packet_support (PACKET_P) == PACKET_DISABLE) |
74ca34ce DJ |
8278 | return 0; |
8279 | ||
8280 | if (reg->pnum == -1) | |
8281 | return 0; | |
8282 | ||
ea9c271d | 8283 | xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0)); |
5a2468f5 | 8284 | p = buf + strlen (buf); |
34a79281 | 8285 | regcache->raw_collect (reg->regnum, regp); |
4a22f64d | 8286 | bin2hex (regp, p, register_size (gdbarch, reg->regnum)); |
1f4437a4 | 8287 | putpkt (rs->buf); |
8d64371b | 8288 | getpkt (&rs->buf, 0); |
5a2468f5 | 8289 | |
74ca34ce DJ |
8290 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P])) |
8291 | { | |
8292 | case PACKET_OK: | |
8293 | return 1; | |
8294 | case PACKET_ERROR: | |
27a9c0bf | 8295 | error (_("Could not write register \"%s\"; remote failure reply '%s'"), |
8d64371b | 8296 | gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ()); |
74ca34ce DJ |
8297 | case PACKET_UNKNOWN: |
8298 | return 0; | |
8299 | default: | |
8300 | internal_error (__FILE__, __LINE__, _("Bad result from packet_ok")); | |
8301 | } | |
c906108c SS |
8302 | } |
8303 | ||
23860348 MS |
8304 | /* Store register REGNUM, or all registers if REGNUM == -1, from the |
8305 | contents of the register cache buffer. FIXME: ignores errors. */ | |
c906108c | 8306 | |
6b8edb51 PA |
8307 | void |
8308 | remote_target::store_registers_using_G (const struct regcache *regcache) | |
c906108c | 8309 | { |
d01949b6 | 8310 | struct remote_state *rs = get_remote_state (); |
9d6eea31 | 8311 | remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ()); |
cfd77fa1 | 8312 | gdb_byte *regs; |
c906108c SS |
8313 | char *p; |
8314 | ||
193cb69f AC |
8315 | /* Extract all the registers in the regcache copying them into a |
8316 | local buffer. */ | |
8317 | { | |
b323314b | 8318 | int i; |
a744cf53 | 8319 | |
224c3ddb | 8320 | regs = (gdb_byte *) alloca (rsa->sizeof_g_packet); |
ea9c271d | 8321 | memset (regs, 0, rsa->sizeof_g_packet); |
ac7936df | 8322 | for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++) |
193cb69f | 8323 | { |
ea9c271d | 8324 | struct packet_reg *r = &rsa->regs[i]; |
a744cf53 | 8325 | |
b323314b | 8326 | if (r->in_g_packet) |
34a79281 | 8327 | regcache->raw_collect (r->regnum, regs + r->offset); |
193cb69f AC |
8328 | } |
8329 | } | |
c906108c SS |
8330 | |
8331 | /* Command describes registers byte by byte, | |
8332 | each byte encoded as two hex characters. */ | |
8d64371b | 8333 | p = rs->buf.data (); |
193cb69f | 8334 | *p++ = 'G'; |
74ca34ce | 8335 | bin2hex (regs, p, rsa->sizeof_g_packet); |
1f4437a4 | 8336 | putpkt (rs->buf); |
8d64371b | 8337 | getpkt (&rs->buf, 0); |
1f4437a4 | 8338 | if (packet_check_result (rs->buf) == PACKET_ERROR) |
27a9c0bf | 8339 | error (_("Could not write registers; remote failure reply '%s'"), |
8d64371b | 8340 | rs->buf.data ()); |
c906108c | 8341 | } |
74ca34ce DJ |
8342 | |
8343 | /* Store register REGNUM, or all registers if REGNUM == -1, from the contents | |
8344 | of the register cache buffer. FIXME: ignores errors. */ | |
8345 | ||
f6ac5f3d PA |
8346 | void |
8347 | remote_target::store_registers (struct regcache *regcache, int regnum) | |
74ca34ce | 8348 | { |
5cd63fda | 8349 | struct gdbarch *gdbarch = regcache->arch (); |
9d6eea31 PA |
8350 | struct remote_state *rs = get_remote_state (); |
8351 | remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch); | |
74ca34ce DJ |
8352 | int i; |
8353 | ||
e6e4e701 | 8354 | set_remote_traceframe (); |
222312d3 | 8355 | set_general_thread (regcache->ptid ()); |
74ca34ce DJ |
8356 | |
8357 | if (regnum >= 0) | |
8358 | { | |
5cd63fda | 8359 | packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum); |
a744cf53 | 8360 | |
74ca34ce DJ |
8361 | gdb_assert (reg != NULL); |
8362 | ||
8363 | /* Always prefer to store registers using the 'P' packet if | |
8364 | possible; we often change only a small number of registers. | |
8365 | Sometimes we change a larger number; we'd need help from a | |
8366 | higher layer to know to use 'G'. */ | |
56be3814 | 8367 | if (store_register_using_P (regcache, reg)) |
74ca34ce DJ |
8368 | return; |
8369 | ||
8370 | /* For now, don't complain if we have no way to write the | |
8371 | register. GDB loses track of unavailable registers too | |
8372 | easily. Some day, this may be an error. We don't have | |
0df8b418 | 8373 | any way to read the register, either... */ |
74ca34ce DJ |
8374 | if (!reg->in_g_packet) |
8375 | return; | |
8376 | ||
56be3814 | 8377 | store_registers_using_G (regcache); |
74ca34ce DJ |
8378 | return; |
8379 | } | |
8380 | ||
56be3814 | 8381 | store_registers_using_G (regcache); |
74ca34ce | 8382 | |
5cd63fda | 8383 | for (i = 0; i < gdbarch_num_regs (gdbarch); i++) |
74ca34ce | 8384 | if (!rsa->regs[i].in_g_packet) |
56be3814 | 8385 | if (!store_register_using_P (regcache, &rsa->regs[i])) |
74ca34ce DJ |
8386 | /* See above for why we do not issue an error here. */ |
8387 | continue; | |
8388 | } | |
c906108c SS |
8389 | \f |
8390 | ||
8391 | /* Return the number of hex digits in num. */ | |
8392 | ||
8393 | static int | |
fba45db2 | 8394 | hexnumlen (ULONGEST num) |
c906108c SS |
8395 | { |
8396 | int i; | |
8397 | ||
8398 | for (i = 0; num != 0; i++) | |
8399 | num >>= 4; | |
8400 | ||
325fac50 | 8401 | return std::max (i, 1); |
c906108c SS |
8402 | } |
8403 | ||
2df3850c | 8404 | /* Set BUF to the minimum number of hex digits representing NUM. */ |
c906108c SS |
8405 | |
8406 | static int | |
fba45db2 | 8407 | hexnumstr (char *buf, ULONGEST num) |
c906108c | 8408 | { |
c906108c | 8409 | int len = hexnumlen (num); |
a744cf53 | 8410 | |
2df3850c JM |
8411 | return hexnumnstr (buf, num, len); |
8412 | } | |
8413 | ||
c906108c | 8414 | |
2df3850c | 8415 | /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */ |
c906108c | 8416 | |
2df3850c | 8417 | static int |
fba45db2 | 8418 | hexnumnstr (char *buf, ULONGEST num, int width) |
2df3850c JM |
8419 | { |
8420 | int i; | |
8421 | ||
8422 | buf[width] = '\0'; | |
8423 | ||
8424 | for (i = width - 1; i >= 0; i--) | |
c906108c | 8425 | { |
c5aa993b | 8426 | buf[i] = "0123456789abcdef"[(num & 0xf)]; |
c906108c SS |
8427 | num >>= 4; |
8428 | } | |
8429 | ||
2df3850c | 8430 | return width; |
c906108c SS |
8431 | } |
8432 | ||
23860348 | 8433 | /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */ |
c906108c SS |
8434 | |
8435 | static CORE_ADDR | |
fba45db2 | 8436 | remote_address_masked (CORE_ADDR addr) |
c906108c | 8437 | { |
883b9c6c | 8438 | unsigned int address_size = remote_address_size; |
a744cf53 | 8439 | |
911c95a5 UW |
8440 | /* If "remoteaddresssize" was not set, default to target address size. */ |
8441 | if (!address_size) | |
f5656ead | 8442 | address_size = gdbarch_addr_bit (target_gdbarch ()); |
911c95a5 UW |
8443 | |
8444 | if (address_size > 0 | |
8445 | && address_size < (sizeof (ULONGEST) * 8)) | |
c906108c SS |
8446 | { |
8447 | /* Only create a mask when that mask can safely be constructed | |
23860348 | 8448 | in a ULONGEST variable. */ |
c906108c | 8449 | ULONGEST mask = 1; |
a744cf53 | 8450 | |
911c95a5 | 8451 | mask = (mask << address_size) - 1; |
c906108c SS |
8452 | addr &= mask; |
8453 | } | |
8454 | return addr; | |
8455 | } | |
8456 | ||
8457 | /* Determine whether the remote target supports binary downloading. | |
8458 | This is accomplished by sending a no-op memory write of zero length | |
8459 | to the target at the specified address. It does not suffice to send | |
23860348 MS |
8460 | the whole packet, since many stubs strip the eighth bit and |
8461 | subsequently compute a wrong checksum, which causes real havoc with | |
8462 | remote_write_bytes. | |
7a292a7a | 8463 | |
96baa820 | 8464 | NOTE: This can still lose if the serial line is not eight-bit |
0df8b418 | 8465 | clean. In cases like this, the user should clear "remote |
23860348 | 8466 | X-packet". */ |
96baa820 | 8467 | |
6b8edb51 PA |
8468 | void |
8469 | remote_target::check_binary_download (CORE_ADDR addr) | |
c906108c | 8470 | { |
d01949b6 | 8471 | struct remote_state *rs = get_remote_state (); |
24b06219 | 8472 | |
4082afcc | 8473 | switch (packet_support (PACKET_X)) |
c906108c | 8474 | { |
96baa820 JM |
8475 | case PACKET_DISABLE: |
8476 | break; | |
8477 | case PACKET_ENABLE: | |
8478 | break; | |
8479 | case PACKET_SUPPORT_UNKNOWN: | |
8480 | { | |
96baa820 | 8481 | char *p; |
802188a7 | 8482 | |
8d64371b | 8483 | p = rs->buf.data (); |
96baa820 JM |
8484 | *p++ = 'X'; |
8485 | p += hexnumstr (p, (ULONGEST) addr); | |
8486 | *p++ = ','; | |
8487 | p += hexnumstr (p, (ULONGEST) 0); | |
8488 | *p++ = ':'; | |
8489 | *p = '\0'; | |
802188a7 | 8490 | |
8d64371b TT |
8491 | putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ())); |
8492 | getpkt (&rs->buf, 0); | |
c906108c | 8493 | |
2e9f7625 | 8494 | if (rs->buf[0] == '\0') |
96baa820 JM |
8495 | { |
8496 | if (remote_debug) | |
8497 | fprintf_unfiltered (gdb_stdlog, | |
3e43a32a MS |
8498 | "binary downloading NOT " |
8499 | "supported by target\n"); | |
444abaca | 8500 | remote_protocol_packets[PACKET_X].support = PACKET_DISABLE; |
96baa820 JM |
8501 | } |
8502 | else | |
8503 | { | |
8504 | if (remote_debug) | |
8505 | fprintf_unfiltered (gdb_stdlog, | |
64b9b334 | 8506 | "binary downloading supported by target\n"); |
444abaca | 8507 | remote_protocol_packets[PACKET_X].support = PACKET_ENABLE; |
96baa820 JM |
8508 | } |
8509 | break; | |
8510 | } | |
c906108c SS |
8511 | } |
8512 | } | |
8513 | ||
124e13d9 SM |
8514 | /* Helper function to resize the payload in order to try to get a good |
8515 | alignment. We try to write an amount of data such that the next write will | |
8516 | start on an address aligned on REMOTE_ALIGN_WRITES. */ | |
8517 | ||
8518 | static int | |
8519 | align_for_efficient_write (int todo, CORE_ADDR memaddr) | |
8520 | { | |
8521 | return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr; | |
8522 | } | |
8523 | ||
c906108c SS |
8524 | /* Write memory data directly to the remote machine. |
8525 | This does not inform the data cache; the data cache uses this. | |
a76d924d | 8526 | HEADER is the starting part of the packet. |
c906108c SS |
8527 | MEMADDR is the address in the remote memory space. |
8528 | MYADDR is the address of the buffer in our space. | |
124e13d9 SM |
8529 | LEN_UNITS is the number of addressable units to write. |
8530 | UNIT_SIZE is the length in bytes of an addressable unit. | |
a76d924d DJ |
8531 | PACKET_FORMAT should be either 'X' or 'M', and indicates if we |
8532 | should send data as binary ('X'), or hex-encoded ('M'). | |
8533 | ||
8534 | The function creates packet of the form | |
8535 | <HEADER><ADDRESS>,<LENGTH>:<DATA> | |
8536 | ||
124e13d9 | 8537 | where encoding of <DATA> is terminated by PACKET_FORMAT. |
a76d924d DJ |
8538 | |
8539 | If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma | |
8540 | are omitted. | |
8541 | ||
9b409511 | 8542 | Return the transferred status, error or OK (an |
124e13d9 SM |
8543 | 'enum target_xfer_status' value). Save the number of addressable units |
8544 | transferred in *XFERED_LEN_UNITS. Only transfer a single packet. | |
8545 | ||
8546 | On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an | |
8547 | exchange between gdb and the stub could look like (?? in place of the | |
8548 | checksum): | |
8549 | ||
8550 | -> $m1000,4#?? | |
8551 | <- aaaabbbbccccdddd | |
8552 | ||
8553 | -> $M1000,3:eeeeffffeeee#?? | |
8554 | <- OK | |
8555 | ||
8556 | -> $m1000,4#?? | |
8557 | <- eeeeffffeeeedddd */ | |
c906108c | 8558 | |
6b8edb51 PA |
8559 | target_xfer_status |
8560 | remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr, | |
8561 | const gdb_byte *myaddr, | |
8562 | ULONGEST len_units, | |
8563 | int unit_size, | |
8564 | ULONGEST *xfered_len_units, | |
8565 | char packet_format, int use_length) | |
c906108c | 8566 | { |
6d820c5c | 8567 | struct remote_state *rs = get_remote_state (); |
cfd77fa1 | 8568 | char *p; |
a76d924d DJ |
8569 | char *plen = NULL; |
8570 | int plenlen = 0; | |
124e13d9 SM |
8571 | int todo_units; |
8572 | int units_written; | |
8573 | int payload_capacity_bytes; | |
8574 | int payload_length_bytes; | |
a76d924d DJ |
8575 | |
8576 | if (packet_format != 'X' && packet_format != 'M') | |
8577 | internal_error (__FILE__, __LINE__, | |
9b20d036 | 8578 | _("remote_write_bytes_aux: bad packet format")); |
c906108c | 8579 | |
124e13d9 | 8580 | if (len_units == 0) |
9b409511 | 8581 | return TARGET_XFER_EOF; |
b2182ed2 | 8582 | |
124e13d9 | 8583 | payload_capacity_bytes = get_memory_write_packet_size (); |
2bc416ba | 8584 | |
6d820c5c DJ |
8585 | /* The packet buffer will be large enough for the payload; |
8586 | get_memory_packet_size ensures this. */ | |
a76d924d | 8587 | rs->buf[0] = '\0'; |
c906108c | 8588 | |
a257b5bb | 8589 | /* Compute the size of the actual payload by subtracting out the |
0df8b418 MS |
8590 | packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */ |
8591 | ||
124e13d9 | 8592 | payload_capacity_bytes -= strlen ("$,:#NN"); |
a76d924d | 8593 | if (!use_length) |
0df8b418 | 8594 | /* The comma won't be used. */ |
124e13d9 SM |
8595 | payload_capacity_bytes += 1; |
8596 | payload_capacity_bytes -= strlen (header); | |
8597 | payload_capacity_bytes -= hexnumlen (memaddr); | |
c906108c | 8598 | |
a76d924d | 8599 | /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */ |
917317f4 | 8600 | |
8d64371b TT |
8601 | strcat (rs->buf.data (), header); |
8602 | p = rs->buf.data () + strlen (header); | |
a76d924d DJ |
8603 | |
8604 | /* Compute a best guess of the number of bytes actually transfered. */ | |
8605 | if (packet_format == 'X') | |
c906108c | 8606 | { |
23860348 | 8607 | /* Best guess at number of bytes that will fit. */ |
325fac50 PA |
8608 | todo_units = std::min (len_units, |
8609 | (ULONGEST) payload_capacity_bytes / unit_size); | |
a76d924d | 8610 | if (use_length) |
124e13d9 | 8611 | payload_capacity_bytes -= hexnumlen (todo_units); |
325fac50 | 8612 | todo_units = std::min (todo_units, payload_capacity_bytes / unit_size); |
a76d924d DJ |
8613 | } |
8614 | else | |
8615 | { | |
124e13d9 | 8616 | /* Number of bytes that will fit. */ |
325fac50 PA |
8617 | todo_units |
8618 | = std::min (len_units, | |
8619 | (ULONGEST) (payload_capacity_bytes / unit_size) / 2); | |
a76d924d | 8620 | if (use_length) |
124e13d9 | 8621 | payload_capacity_bytes -= hexnumlen (todo_units); |
325fac50 PA |
8622 | todo_units = std::min (todo_units, |
8623 | (payload_capacity_bytes / unit_size) / 2); | |
917317f4 | 8624 | } |
a76d924d | 8625 | |
124e13d9 | 8626 | if (todo_units <= 0) |
3de11b2e | 8627 | internal_error (__FILE__, __LINE__, |
405f8e94 | 8628 | _("minimum packet size too small to write data")); |
802188a7 | 8629 | |
6765f3e5 DJ |
8630 | /* If we already need another packet, then try to align the end |
8631 | of this packet to a useful boundary. */ | |
124e13d9 SM |
8632 | if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units) |
8633 | todo_units = align_for_efficient_write (todo_units, memaddr); | |
6765f3e5 | 8634 | |
a257b5bb | 8635 | /* Append "<memaddr>". */ |
917317f4 JM |
8636 | memaddr = remote_address_masked (memaddr); |
8637 | p += hexnumstr (p, (ULONGEST) memaddr); | |
a257b5bb | 8638 | |
a76d924d DJ |
8639 | if (use_length) |
8640 | { | |
8641 | /* Append ",". */ | |
8642 | *p++ = ','; | |
802188a7 | 8643 | |
124e13d9 SM |
8644 | /* Append the length and retain its location and size. It may need to be |
8645 | adjusted once the packet body has been created. */ | |
a76d924d | 8646 | plen = p; |
124e13d9 | 8647 | plenlen = hexnumstr (p, (ULONGEST) todo_units); |
a76d924d DJ |
8648 | p += plenlen; |
8649 | } | |
a257b5bb AC |
8650 | |
8651 | /* Append ":". */ | |
917317f4 JM |
8652 | *p++ = ':'; |
8653 | *p = '\0'; | |
802188a7 | 8654 | |
a257b5bb | 8655 | /* Append the packet body. */ |
a76d924d | 8656 | if (packet_format == 'X') |
917317f4 | 8657 | { |
917317f4 JM |
8658 | /* Binary mode. Send target system values byte by byte, in |
8659 | increasing byte addresses. Only escape certain critical | |
8660 | characters. */ | |
124e13d9 SM |
8661 | payload_length_bytes = |
8662 | remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p, | |
8663 | &units_written, payload_capacity_bytes); | |
6765f3e5 | 8664 | |
124e13d9 | 8665 | /* If not all TODO units fit, then we'll need another packet. Make |
9b7194bc DJ |
8666 | a second try to keep the end of the packet aligned. Don't do |
8667 | this if the packet is tiny. */ | |
124e13d9 | 8668 | if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES) |
6765f3e5 | 8669 | { |
124e13d9 SM |
8670 | int new_todo_units; |
8671 | ||
8672 | new_todo_units = align_for_efficient_write (units_written, memaddr); | |
8673 | ||
8674 | if (new_todo_units != units_written) | |
8675 | payload_length_bytes = | |
8676 | remote_escape_output (myaddr, new_todo_units, unit_size, | |
8677 | (gdb_byte *) p, &units_written, | |
8678 | payload_capacity_bytes); | |
6765f3e5 DJ |
8679 | } |
8680 | ||
124e13d9 SM |
8681 | p += payload_length_bytes; |
8682 | if (use_length && units_written < todo_units) | |
c906108c | 8683 | { |
802188a7 | 8684 | /* Escape chars have filled up the buffer prematurely, |
124e13d9 | 8685 | and we have actually sent fewer units than planned. |
917317f4 JM |
8686 | Fix-up the length field of the packet. Use the same |
8687 | number of characters as before. */ | |
124e13d9 SM |
8688 | plen += hexnumnstr (plen, (ULONGEST) units_written, |
8689 | plenlen); | |
917317f4 | 8690 | *plen = ':'; /* overwrite \0 from hexnumnstr() */ |
c906108c | 8691 | } |
a76d924d DJ |
8692 | } |
8693 | else | |
8694 | { | |
917317f4 JM |
8695 | /* Normal mode: Send target system values byte by byte, in |
8696 | increasing byte addresses. Each byte is encoded as a two hex | |
8697 | value. */ | |
124e13d9 SM |
8698 | p += 2 * bin2hex (myaddr, p, todo_units * unit_size); |
8699 | units_written = todo_units; | |
c906108c | 8700 | } |
802188a7 | 8701 | |
8d64371b TT |
8702 | putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ())); |
8703 | getpkt (&rs->buf, 0); | |
802188a7 | 8704 | |
2e9f7625 | 8705 | if (rs->buf[0] == 'E') |
00d84524 | 8706 | return TARGET_XFER_E_IO; |
802188a7 | 8707 | |
124e13d9 SM |
8708 | /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to |
8709 | send fewer units than we'd planned. */ | |
8710 | *xfered_len_units = (ULONGEST) units_written; | |
92ffd475 | 8711 | return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF; |
c906108c SS |
8712 | } |
8713 | ||
a76d924d DJ |
8714 | /* Write memory data directly to the remote machine. |
8715 | This does not inform the data cache; the data cache uses this. | |
8716 | MEMADDR is the address in the remote memory space. | |
8717 | MYADDR is the address of the buffer in our space. | |
8718 | LEN is the number of bytes. | |
8719 | ||
9b409511 YQ |
8720 | Return the transferred status, error or OK (an |
8721 | 'enum target_xfer_status' value). Save the number of bytes | |
8722 | transferred in *XFERED_LEN. Only transfer a single packet. */ | |
a76d924d | 8723 | |
6b8edb51 PA |
8724 | target_xfer_status |
8725 | remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, | |
8726 | ULONGEST len, int unit_size, | |
8727 | ULONGEST *xfered_len) | |
a76d924d | 8728 | { |
a121b7c1 | 8729 | const char *packet_format = NULL; |
a76d924d DJ |
8730 | |
8731 | /* Check whether the target supports binary download. */ | |
8732 | check_binary_download (memaddr); | |
8733 | ||
4082afcc | 8734 | switch (packet_support (PACKET_X)) |
a76d924d DJ |
8735 | { |
8736 | case PACKET_ENABLE: | |
8737 | packet_format = "X"; | |
8738 | break; | |
8739 | case PACKET_DISABLE: | |
8740 | packet_format = "M"; | |
8741 | break; | |
8742 | case PACKET_SUPPORT_UNKNOWN: | |
8743 | internal_error (__FILE__, __LINE__, | |
8744 | _("remote_write_bytes: bad internal state")); | |
8745 | default: | |
8746 | internal_error (__FILE__, __LINE__, _("bad switch")); | |
8747 | } | |
8748 | ||
8749 | return remote_write_bytes_aux (packet_format, | |
124e13d9 | 8750 | memaddr, myaddr, len, unit_size, xfered_len, |
9b409511 | 8751 | packet_format[0], 1); |
a76d924d DJ |
8752 | } |
8753 | ||
9217e74e YQ |
8754 | /* Read memory data directly from the remote machine. |
8755 | This does not use the data cache; the data cache uses this. | |
8756 | MEMADDR is the address in the remote memory space. | |
8757 | MYADDR is the address of the buffer in our space. | |
124e13d9 SM |
8758 | LEN_UNITS is the number of addressable memory units to read.. |
8759 | UNIT_SIZE is the length in bytes of an addressable unit. | |
9217e74e YQ |
8760 | |
8761 | Return the transferred status, error or OK (an | |
8762 | 'enum target_xfer_status' value). Save the number of bytes | |
124e13d9 SM |
8763 | transferred in *XFERED_LEN_UNITS. |
8764 | ||
8765 | See the comment of remote_write_bytes_aux for an example of | |
8766 | memory read/write exchange between gdb and the stub. */ | |
9217e74e | 8767 | |
6b8edb51 PA |
8768 | target_xfer_status |
8769 | remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, | |
8770 | ULONGEST len_units, | |
8771 | int unit_size, ULONGEST *xfered_len_units) | |
9217e74e YQ |
8772 | { |
8773 | struct remote_state *rs = get_remote_state (); | |
124e13d9 | 8774 | int buf_size_bytes; /* Max size of packet output buffer. */ |
9217e74e | 8775 | char *p; |
124e13d9 SM |
8776 | int todo_units; |
8777 | int decoded_bytes; | |
9217e74e | 8778 | |
124e13d9 | 8779 | buf_size_bytes = get_memory_read_packet_size (); |
9217e74e YQ |
8780 | /* The packet buffer will be large enough for the payload; |
8781 | get_memory_packet_size ensures this. */ | |
8782 | ||
124e13d9 | 8783 | /* Number of units that will fit. */ |
325fac50 PA |
8784 | todo_units = std::min (len_units, |
8785 | (ULONGEST) (buf_size_bytes / unit_size) / 2); | |
9217e74e YQ |
8786 | |
8787 | /* Construct "m"<memaddr>","<len>". */ | |
8788 | memaddr = remote_address_masked (memaddr); | |
8d64371b | 8789 | p = rs->buf.data (); |
9217e74e YQ |
8790 | *p++ = 'm'; |
8791 | p += hexnumstr (p, (ULONGEST) memaddr); | |
8792 | *p++ = ','; | |
124e13d9 | 8793 | p += hexnumstr (p, (ULONGEST) todo_units); |
9217e74e YQ |
8794 | *p = '\0'; |
8795 | putpkt (rs->buf); | |
8d64371b | 8796 | getpkt (&rs->buf, 0); |
9217e74e YQ |
8797 | if (rs->buf[0] == 'E' |
8798 | && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2]) | |
8799 | && rs->buf[3] == '\0') | |
8800 | return TARGET_XFER_E_IO; | |
8801 | /* Reply describes memory byte by byte, each byte encoded as two hex | |
8802 | characters. */ | |
8d64371b | 8803 | p = rs->buf.data (); |
124e13d9 | 8804 | decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size); |
9217e74e | 8805 | /* Return what we have. Let higher layers handle partial reads. */ |
124e13d9 | 8806 | *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size); |
92ffd475 | 8807 | return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF; |
9217e74e YQ |
8808 | } |
8809 | ||
b55fbac4 YQ |
8810 | /* Using the set of read-only target sections of remote, read live |
8811 | read-only memory. | |
8acf9577 YQ |
8812 | |
8813 | For interface/parameters/return description see target.h, | |
8814 | to_xfer_partial. */ | |
8815 | ||
6b8edb51 PA |
8816 | target_xfer_status |
8817 | remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf, | |
8818 | ULONGEST memaddr, | |
8819 | ULONGEST len, | |
8820 | int unit_size, | |
8821 | ULONGEST *xfered_len) | |
8acf9577 YQ |
8822 | { |
8823 | struct target_section *secp; | |
8824 | struct target_section_table *table; | |
8825 | ||
6b8edb51 | 8826 | secp = target_section_by_addr (this, memaddr); |
8acf9577 | 8827 | if (secp != NULL |
fd361982 | 8828 | && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY)) |
8acf9577 YQ |
8829 | { |
8830 | struct target_section *p; | |
8831 | ULONGEST memend = memaddr + len; | |
8832 | ||
6b8edb51 | 8833 | table = target_get_section_table (this); |
8acf9577 YQ |
8834 | |
8835 | for (p = table->sections; p < table->sections_end; p++) | |
8836 | { | |
8837 | if (memaddr >= p->addr) | |
8838 | { | |
8839 | if (memend <= p->endaddr) | |
8840 | { | |
8841 | /* Entire transfer is within this section. */ | |
124e13d9 | 8842 | return remote_read_bytes_1 (memaddr, readbuf, len, unit_size, |
b55fbac4 | 8843 | xfered_len); |
8acf9577 YQ |
8844 | } |
8845 | else if (memaddr >= p->endaddr) | |
8846 | { | |
8847 | /* This section ends before the transfer starts. */ | |
8848 | continue; | |
8849 | } | |
8850 | else | |
8851 | { | |
8852 | /* This section overlaps the transfer. Just do half. */ | |
8853 | len = p->endaddr - memaddr; | |
124e13d9 | 8854 | return remote_read_bytes_1 (memaddr, readbuf, len, unit_size, |
b55fbac4 | 8855 | xfered_len); |
8acf9577 YQ |
8856 | } |
8857 | } | |
8858 | } | |
8859 | } | |
8860 | ||
8861 | return TARGET_XFER_EOF; | |
8862 | } | |
8863 | ||
9217e74e YQ |
8864 | /* Similar to remote_read_bytes_1, but it reads from the remote stub |
8865 | first if the requested memory is unavailable in traceframe. | |
8866 | Otherwise, fall back to remote_read_bytes_1. */ | |
c906108c | 8867 | |
6b8edb51 PA |
8868 | target_xfer_status |
8869 | remote_target::remote_read_bytes (CORE_ADDR memaddr, | |
8870 | gdb_byte *myaddr, ULONGEST len, int unit_size, | |
8871 | ULONGEST *xfered_len) | |
c906108c | 8872 | { |
6b6aa828 | 8873 | if (len == 0) |
96c4f946 | 8874 | return TARGET_XFER_EOF; |
b2182ed2 | 8875 | |
8acf9577 YQ |
8876 | if (get_traceframe_number () != -1) |
8877 | { | |
a79b1bc6 | 8878 | std::vector<mem_range> available; |
8acf9577 YQ |
8879 | |
8880 | /* If we fail to get the set of available memory, then the | |
8881 | target does not support querying traceframe info, and so we | |
8882 | attempt reading from the traceframe anyway (assuming the | |
8883 | target implements the old QTro packet then). */ | |
8884 | if (traceframe_available_memory (&available, memaddr, len)) | |
8885 | { | |
a79b1bc6 | 8886 | if (available.empty () || available[0].start != memaddr) |
8acf9577 YQ |
8887 | { |
8888 | enum target_xfer_status res; | |
8889 | ||
8890 | /* Don't read into the traceframe's available | |
8891 | memory. */ | |
a79b1bc6 | 8892 | if (!available.empty ()) |
8acf9577 YQ |
8893 | { |
8894 | LONGEST oldlen = len; | |
8895 | ||
a79b1bc6 | 8896 | len = available[0].start - memaddr; |
8acf9577 YQ |
8897 | gdb_assert (len <= oldlen); |
8898 | } | |
8899 | ||
8acf9577 | 8900 | /* This goes through the topmost target again. */ |
6b8edb51 | 8901 | res = remote_xfer_live_readonly_partial (myaddr, memaddr, |
124e13d9 | 8902 | len, unit_size, xfered_len); |
8acf9577 YQ |
8903 | if (res == TARGET_XFER_OK) |
8904 | return TARGET_XFER_OK; | |
8905 | else | |
8906 | { | |
8907 | /* No use trying further, we know some memory starting | |
8908 | at MEMADDR isn't available. */ | |
8909 | *xfered_len = len; | |
92ffd475 PC |
8910 | return (*xfered_len != 0) ? |
8911 | TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF; | |
8acf9577 YQ |
8912 | } |
8913 | } | |
8914 | ||
8915 | /* Don't try to read more than how much is available, in | |
8916 | case the target implements the deprecated QTro packet to | |
8917 | cater for older GDBs (the target's knowledge of read-only | |
8918 | sections may be outdated by now). */ | |
a79b1bc6 | 8919 | len = available[0].length; |
8acf9577 YQ |
8920 | } |
8921 | } | |
8922 | ||
124e13d9 | 8923 | return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len); |
c906108c | 8924 | } |
74531fed | 8925 | |
c906108c | 8926 | \f |
c906108c | 8927 | |
a76d924d DJ |
8928 | /* Sends a packet with content determined by the printf format string |
8929 | FORMAT and the remaining arguments, then gets the reply. Returns | |
8930 | whether the packet was a success, a failure, or unknown. */ | |
8931 | ||
6b8edb51 PA |
8932 | packet_result |
8933 | remote_target::remote_send_printf (const char *format, ...) | |
a76d924d DJ |
8934 | { |
8935 | struct remote_state *rs = get_remote_state (); | |
8936 | int max_size = get_remote_packet_size (); | |
a76d924d | 8937 | va_list ap; |
a744cf53 | 8938 | |
a76d924d DJ |
8939 | va_start (ap, format); |
8940 | ||
8941 | rs->buf[0] = '\0'; | |
8d64371b | 8942 | int size = vsnprintf (rs->buf.data (), max_size, format, ap); |
33b031ce GB |
8943 | |
8944 | va_end (ap); | |
8945 | ||
8946 | if (size >= max_size) | |
9b20d036 | 8947 | internal_error (__FILE__, __LINE__, _("Too long remote packet.")); |
a76d924d DJ |
8948 | |
8949 | if (putpkt (rs->buf) < 0) | |
8950 | error (_("Communication problem with target.")); | |
8951 | ||
8952 | rs->buf[0] = '\0'; | |
8d64371b | 8953 | getpkt (&rs->buf, 0); |
a76d924d DJ |
8954 | |
8955 | return packet_check_result (rs->buf); | |
8956 | } | |
8957 | ||
a76d924d DJ |
8958 | /* Flash writing can take quite some time. We'll set |
8959 | effectively infinite timeout for flash operations. | |
8960 | In future, we'll need to decide on a better approach. */ | |
8961 | static const int remote_flash_timeout = 1000; | |
8962 | ||
f6ac5f3d PA |
8963 | void |
8964 | remote_target::flash_erase (ULONGEST address, LONGEST length) | |
a76d924d | 8965 | { |
f5656ead | 8966 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
a76d924d | 8967 | enum packet_result ret; |
2ec845e7 TT |
8968 | scoped_restore restore_timeout |
8969 | = make_scoped_restore (&remote_timeout, remote_flash_timeout); | |
a76d924d DJ |
8970 | |
8971 | ret = remote_send_printf ("vFlashErase:%s,%s", | |
5af949e3 | 8972 | phex (address, addr_size), |
a76d924d DJ |
8973 | phex (length, 4)); |
8974 | switch (ret) | |
8975 | { | |
8976 | case PACKET_UNKNOWN: | |
8977 | error (_("Remote target does not support flash erase")); | |
8978 | case PACKET_ERROR: | |
8979 | error (_("Error erasing flash with vFlashErase packet")); | |
8980 | default: | |
8981 | break; | |
8982 | } | |
a76d924d DJ |
8983 | } |
8984 | ||
6b8edb51 PA |
8985 | target_xfer_status |
8986 | remote_target::remote_flash_write (ULONGEST address, | |
8987 | ULONGEST length, ULONGEST *xfered_len, | |
8988 | const gdb_byte *data) | |
a76d924d | 8989 | { |
2ec845e7 TT |
8990 | scoped_restore restore_timeout |
8991 | = make_scoped_restore (&remote_timeout, remote_flash_timeout); | |
8992 | return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1, | |
8993 | xfered_len,'X', 0); | |
a76d924d DJ |
8994 | } |
8995 | ||
f6ac5f3d PA |
8996 | void |
8997 | remote_target::flash_done () | |
a76d924d | 8998 | { |
a76d924d | 8999 | int ret; |
a76d924d | 9000 | |
2ec845e7 TT |
9001 | scoped_restore restore_timeout |
9002 | = make_scoped_restore (&remote_timeout, remote_flash_timeout); | |
9003 | ||
a76d924d | 9004 | ret = remote_send_printf ("vFlashDone"); |
a76d924d DJ |
9005 | |
9006 | switch (ret) | |
9007 | { | |
9008 | case PACKET_UNKNOWN: | |
9009 | error (_("Remote target does not support vFlashDone")); | |
9010 | case PACKET_ERROR: | |
9011 | error (_("Error finishing flash operation")); | |
9012 | default: | |
9013 | break; | |
9014 | } | |
9015 | } | |
9016 | ||
f6ac5f3d PA |
9017 | void |
9018 | remote_target::files_info () | |
c906108c SS |
9019 | { |
9020 | puts_filtered ("Debugging a target over a serial line.\n"); | |
9021 | } | |
9022 | \f | |
9023 | /* Stuff for dealing with the packets which are part of this protocol. | |
9024 | See comment at top of file for details. */ | |
9025 | ||
1927e618 PA |
9026 | /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR |
9027 | error to higher layers. Called when a serial error is detected. | |
9028 | The exception message is STRING, followed by a colon and a blank, | |
d6cb50a2 JK |
9029 | the system error message for errno at function entry and final dot |
9030 | for output compatibility with throw_perror_with_name. */ | |
1927e618 PA |
9031 | |
9032 | static void | |
5b6d1e4f | 9033 | unpush_and_perror (remote_target *target, const char *string) |
1927e618 | 9034 | { |
d6cb50a2 | 9035 | int saved_errno = errno; |
1927e618 | 9036 | |
5b6d1e4f | 9037 | remote_unpush_target (target); |
d6cb50a2 JK |
9038 | throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string, |
9039 | safe_strerror (saved_errno)); | |
1927e618 PA |
9040 | } |
9041 | ||
048094ac PA |
9042 | /* Read a single character from the remote end. The current quit |
9043 | handler is overridden to avoid quitting in the middle of packet | |
9044 | sequence, as that would break communication with the remote server. | |
9045 | See remote_serial_quit_handler for more detail. */ | |
c906108c | 9046 | |
6b8edb51 PA |
9047 | int |
9048 | remote_target::readchar (int timeout) | |
c906108c SS |
9049 | { |
9050 | int ch; | |
5d93a237 | 9051 | struct remote_state *rs = get_remote_state (); |
048094ac | 9052 | |
2ec845e7 | 9053 | { |
6b8edb51 PA |
9054 | scoped_restore restore_quit_target |
9055 | = make_scoped_restore (&curr_quit_handler_target, this); | |
2ec845e7 | 9056 | scoped_restore restore_quit |
6b8edb51 | 9057 | = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler); |
c906108c | 9058 | |
2ec845e7 | 9059 | rs->got_ctrlc_during_io = 0; |
c906108c | 9060 | |
2ec845e7 | 9061 | ch = serial_readchar (rs->remote_desc, timeout); |
048094ac | 9062 | |
2ec845e7 TT |
9063 | if (rs->got_ctrlc_during_io) |
9064 | set_quit_flag (); | |
9065 | } | |
048094ac | 9066 | |
2acceee2 | 9067 | if (ch >= 0) |
0876f84a | 9068 | return ch; |
2acceee2 JM |
9069 | |
9070 | switch ((enum serial_rc) ch) | |
c906108c SS |
9071 | { |
9072 | case SERIAL_EOF: | |
5b6d1e4f | 9073 | remote_unpush_target (this); |
598d3636 | 9074 | throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed")); |
2acceee2 | 9075 | /* no return */ |
c906108c | 9076 | case SERIAL_ERROR: |
5b6d1e4f PA |
9077 | unpush_and_perror (this, _("Remote communication error. " |
9078 | "Target disconnected.")); | |
2acceee2 | 9079 | /* no return */ |
c906108c | 9080 | case SERIAL_TIMEOUT: |
2acceee2 | 9081 | break; |
c906108c | 9082 | } |
2acceee2 | 9083 | return ch; |
c906108c SS |
9084 | } |
9085 | ||
c33e31fd | 9086 | /* Wrapper for serial_write that closes the target and throws if |
048094ac PA |
9087 | writing fails. The current quit handler is overridden to avoid |
9088 | quitting in the middle of packet sequence, as that would break | |
9089 | communication with the remote server. See | |
9090 | remote_serial_quit_handler for more detail. */ | |
c33e31fd | 9091 | |
6b8edb51 PA |
9092 | void |
9093 | remote_target::remote_serial_write (const char *str, int len) | |
c33e31fd | 9094 | { |
5d93a237 | 9095 | struct remote_state *rs = get_remote_state (); |
048094ac | 9096 | |
6b8edb51 PA |
9097 | scoped_restore restore_quit_target |
9098 | = make_scoped_restore (&curr_quit_handler_target, this); | |
2ec845e7 | 9099 | scoped_restore restore_quit |
6b8edb51 | 9100 | = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler); |
048094ac PA |
9101 | |
9102 | rs->got_ctrlc_during_io = 0; | |
5d93a237 TT |
9103 | |
9104 | if (serial_write (rs->remote_desc, str, len)) | |
c33e31fd | 9105 | { |
5b6d1e4f PA |
9106 | unpush_and_perror (this, _("Remote communication error. " |
9107 | "Target disconnected.")); | |
c33e31fd | 9108 | } |
048094ac PA |
9109 | |
9110 | if (rs->got_ctrlc_during_io) | |
9111 | set_quit_flag (); | |
c33e31fd PA |
9112 | } |
9113 | ||
b3ced9ba PA |
9114 | /* Return a string representing an escaped version of BUF, of len N. |
9115 | E.g. \n is converted to \\n, \t to \\t, etc. */ | |
6e5abd65 | 9116 | |
b3ced9ba | 9117 | static std::string |
6e5abd65 PA |
9118 | escape_buffer (const char *buf, int n) |
9119 | { | |
d7e74731 | 9120 | string_file stb; |
6e5abd65 | 9121 | |
d7e74731 PA |
9122 | stb.putstrn (buf, n, '\\'); |
9123 | return std::move (stb.string ()); | |
6e5abd65 PA |
9124 | } |
9125 | ||
c906108c SS |
9126 | /* Display a null-terminated packet on stdout, for debugging, using C |
9127 | string notation. */ | |
9128 | ||
9129 | static void | |
baa336ce | 9130 | print_packet (const char *buf) |
c906108c SS |
9131 | { |
9132 | puts_filtered ("\""); | |
43e526b9 | 9133 | fputstr_filtered (buf, '"', gdb_stdout); |
c906108c SS |
9134 | puts_filtered ("\""); |
9135 | } | |
9136 | ||
9137 | int | |
6b8edb51 | 9138 | remote_target::putpkt (const char *buf) |
c906108c SS |
9139 | { |
9140 | return putpkt_binary (buf, strlen (buf)); | |
9141 | } | |
9142 | ||
6b8edb51 PA |
9143 | /* Wrapper around remote_target::putpkt to avoid exporting |
9144 | remote_target. */ | |
9145 | ||
9146 | int | |
9147 | putpkt (remote_target *remote, const char *buf) | |
9148 | { | |
9149 | return remote->putpkt (buf); | |
9150 | } | |
9151 | ||
c906108c | 9152 | /* Send a packet to the remote machine, with error checking. The data |
23860348 | 9153 | of the packet is in BUF. The string in BUF can be at most |
ea9c271d | 9154 | get_remote_packet_size () - 5 to account for the $, # and checksum, |
23860348 MS |
9155 | and for a possible /0 if we are debugging (remote_debug) and want |
9156 | to print the sent packet as a string. */ | |
c906108c | 9157 | |
6b8edb51 PA |
9158 | int |
9159 | remote_target::putpkt_binary (const char *buf, int cnt) | |
c906108c | 9160 | { |
2d717e4f | 9161 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
9162 | int i; |
9163 | unsigned char csum = 0; | |
b80406ac TT |
9164 | gdb::def_vector<char> data (cnt + 6); |
9165 | char *buf2 = data.data (); | |
085dd6e6 | 9166 | |
c906108c SS |
9167 | int ch; |
9168 | int tcount = 0; | |
9169 | char *p; | |
9170 | ||
e24a49d8 PA |
9171 | /* Catch cases like trying to read memory or listing threads while |
9172 | we're waiting for a stop reply. The remote server wouldn't be | |
9173 | ready to handle this request, so we'd hang and timeout. We don't | |
9174 | have to worry about this in synchronous mode, because in that | |
9175 | case it's not possible to issue a command while the target is | |
74531fed PA |
9176 | running. This is not a problem in non-stop mode, because in that |
9177 | case, the stub is always ready to process serial input. */ | |
6efcd9a8 PA |
9178 | if (!target_is_non_stop_p () |
9179 | && target_is_async_p () | |
9180 | && rs->waiting_for_stop_reply) | |
9597b22a DE |
9181 | { |
9182 | error (_("Cannot execute this command while the target is running.\n" | |
9183 | "Use the \"interrupt\" command to stop the target\n" | |
9184 | "and then try again.")); | |
9185 | } | |
e24a49d8 | 9186 | |
2d717e4f DJ |
9187 | /* We're sending out a new packet. Make sure we don't look at a |
9188 | stale cached response. */ | |
9189 | rs->cached_wait_status = 0; | |
9190 | ||
c906108c SS |
9191 | /* Copy the packet into buffer BUF2, encapsulating it |
9192 | and giving it a checksum. */ | |
9193 | ||
c906108c SS |
9194 | p = buf2; |
9195 | *p++ = '$'; | |
9196 | ||
9197 | for (i = 0; i < cnt; i++) | |
9198 | { | |
9199 | csum += buf[i]; | |
9200 | *p++ = buf[i]; | |
9201 | } | |
9202 | *p++ = '#'; | |
9203 | *p++ = tohex ((csum >> 4) & 0xf); | |
9204 | *p++ = tohex (csum & 0xf); | |
9205 | ||
9206 | /* Send it over and over until we get a positive ack. */ | |
9207 | ||
9208 | while (1) | |
9209 | { | |
9210 | int started_error_output = 0; | |
9211 | ||
9212 | if (remote_debug) | |
9213 | { | |
9214 | *p = '\0'; | |
b3ced9ba | 9215 | |
6f8976bf | 9216 | int len = (int) (p - buf2); |
6cc8564b LM |
9217 | int max_chars; |
9218 | ||
9219 | if (remote_packet_max_chars < 0) | |
9220 | max_chars = len; | |
9221 | else | |
9222 | max_chars = remote_packet_max_chars; | |
6f8976bf YQ |
9223 | |
9224 | std::string str | |
6cc8564b | 9225 | = escape_buffer (buf2, std::min (len, max_chars)); |
6f8976bf YQ |
9226 | |
9227 | fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ()); | |
9228 | ||
6cc8564b | 9229 | if (len > max_chars) |
567a3e54 | 9230 | fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]", |
6cc8564b | 9231 | len - max_chars); |
6f8976bf YQ |
9232 | |
9233 | fprintf_unfiltered (gdb_stdlog, "..."); | |
b3ced9ba | 9234 | |
0f71a2f6 | 9235 | gdb_flush (gdb_stdlog); |
c906108c | 9236 | } |
c33e31fd | 9237 | remote_serial_write (buf2, p - buf2); |
c906108c | 9238 | |
a6f3e723 SL |
9239 | /* If this is a no acks version of the remote protocol, send the |
9240 | packet and move on. */ | |
9241 | if (rs->noack_mode) | |
9242 | break; | |
9243 | ||
74531fed PA |
9244 | /* Read until either a timeout occurs (-2) or '+' is read. |
9245 | Handle any notification that arrives in the mean time. */ | |
c906108c SS |
9246 | while (1) |
9247 | { | |
9248 | ch = readchar (remote_timeout); | |
9249 | ||
c5aa993b | 9250 | if (remote_debug) |
c906108c SS |
9251 | { |
9252 | switch (ch) | |
9253 | { | |
9254 | case '+': | |
1216fa2c | 9255 | case '-': |
c906108c SS |
9256 | case SERIAL_TIMEOUT: |
9257 | case '$': | |
74531fed | 9258 | case '%': |
c906108c SS |
9259 | if (started_error_output) |
9260 | { | |
9261 | putchar_unfiltered ('\n'); | |
9262 | started_error_output = 0; | |
9263 | } | |
9264 | } | |
9265 | } | |
9266 | ||
9267 | switch (ch) | |
9268 | { | |
9269 | case '+': | |
9270 | if (remote_debug) | |
0f71a2f6 | 9271 | fprintf_unfiltered (gdb_stdlog, "Ack\n"); |
c906108c | 9272 | return 1; |
1216fa2c AC |
9273 | case '-': |
9274 | if (remote_debug) | |
9275 | fprintf_unfiltered (gdb_stdlog, "Nak\n"); | |
a17d146e | 9276 | /* FALLTHROUGH */ |
c906108c | 9277 | case SERIAL_TIMEOUT: |
c5aa993b | 9278 | tcount++; |
c906108c | 9279 | if (tcount > 3) |
b80406ac | 9280 | return 0; |
23860348 | 9281 | break; /* Retransmit buffer. */ |
c906108c SS |
9282 | case '$': |
9283 | { | |
40e3f985 | 9284 | if (remote_debug) |
2bc416ba | 9285 | fprintf_unfiltered (gdb_stdlog, |
23860348 | 9286 | "Packet instead of Ack, ignoring it\n"); |
d6f7abdf AC |
9287 | /* It's probably an old response sent because an ACK |
9288 | was lost. Gobble up the packet and ack it so it | |
9289 | doesn't get retransmitted when we resend this | |
9290 | packet. */ | |
6d820c5c | 9291 | skip_frame (); |
c33e31fd | 9292 | remote_serial_write ("+", 1); |
23860348 | 9293 | continue; /* Now, go look for +. */ |
c906108c | 9294 | } |
74531fed PA |
9295 | |
9296 | case '%': | |
9297 | { | |
9298 | int val; | |
9299 | ||
9300 | /* If we got a notification, handle it, and go back to looking | |
9301 | for an ack. */ | |
9302 | /* We've found the start of a notification. Now | |
9303 | collect the data. */ | |
8d64371b | 9304 | val = read_frame (&rs->buf); |
74531fed PA |
9305 | if (val >= 0) |
9306 | { | |
9307 | if (remote_debug) | |
9308 | { | |
8d64371b | 9309 | std::string str = escape_buffer (rs->buf.data (), val); |
6e5abd65 | 9310 | |
6e5abd65 PA |
9311 | fprintf_unfiltered (gdb_stdlog, |
9312 | " Notification received: %s\n", | |
b3ced9ba | 9313 | str.c_str ()); |
74531fed | 9314 | } |
8d64371b | 9315 | handle_notification (rs->notif_state, rs->buf.data ()); |
74531fed PA |
9316 | /* We're in sync now, rewait for the ack. */ |
9317 | tcount = 0; | |
9318 | } | |
9319 | else | |
9320 | { | |
9321 | if (remote_debug) | |
9322 | { | |
9323 | if (!started_error_output) | |
9324 | { | |
9325 | started_error_output = 1; | |
9326 | fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: "); | |
9327 | } | |
9328 | fputc_unfiltered (ch & 0177, gdb_stdlog); | |
8d64371b | 9329 | fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ()); |
74531fed PA |
9330 | } |
9331 | } | |
9332 | continue; | |
9333 | } | |
9334 | /* fall-through */ | |
c906108c SS |
9335 | default: |
9336 | if (remote_debug) | |
9337 | { | |
9338 | if (!started_error_output) | |
9339 | { | |
9340 | started_error_output = 1; | |
0f71a2f6 | 9341 | fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: "); |
c906108c | 9342 | } |
0f71a2f6 | 9343 | fputc_unfiltered (ch & 0177, gdb_stdlog); |
c906108c SS |
9344 | } |
9345 | continue; | |
9346 | } | |
23860348 | 9347 | break; /* Here to retransmit. */ |
c906108c SS |
9348 | } |
9349 | ||
9350 | #if 0 | |
9351 | /* This is wrong. If doing a long backtrace, the user should be | |
c5aa993b JM |
9352 | able to get out next time we call QUIT, without anything as |
9353 | violent as interrupt_query. If we want to provide a way out of | |
9354 | here without getting to the next QUIT, it should be based on | |
9355 | hitting ^C twice as in remote_wait. */ | |
c906108c SS |
9356 | if (quit_flag) |
9357 | { | |
9358 | quit_flag = 0; | |
9359 | interrupt_query (); | |
9360 | } | |
9361 | #endif | |
9362 | } | |
a5c0808e | 9363 | |
a6f3e723 | 9364 | return 0; |
c906108c SS |
9365 | } |
9366 | ||
6d820c5c DJ |
9367 | /* Come here after finding the start of a frame when we expected an |
9368 | ack. Do our best to discard the rest of this packet. */ | |
9369 | ||
6b8edb51 PA |
9370 | void |
9371 | remote_target::skip_frame () | |
6d820c5c DJ |
9372 | { |
9373 | int c; | |
9374 | ||
9375 | while (1) | |
9376 | { | |
9377 | c = readchar (remote_timeout); | |
9378 | switch (c) | |
9379 | { | |
9380 | case SERIAL_TIMEOUT: | |
9381 | /* Nothing we can do. */ | |
9382 | return; | |
9383 | case '#': | |
9384 | /* Discard the two bytes of checksum and stop. */ | |
9385 | c = readchar (remote_timeout); | |
9386 | if (c >= 0) | |
9387 | c = readchar (remote_timeout); | |
9388 | ||
9389 | return; | |
9390 | case '*': /* Run length encoding. */ | |
9391 | /* Discard the repeat count. */ | |
9392 | c = readchar (remote_timeout); | |
9393 | if (c < 0) | |
9394 | return; | |
9395 | break; | |
9396 | default: | |
9397 | /* A regular character. */ | |
9398 | break; | |
9399 | } | |
9400 | } | |
9401 | } | |
9402 | ||
c906108c | 9403 | /* Come here after finding the start of the frame. Collect the rest |
6d820c5c DJ |
9404 | into *BUF, verifying the checksum, length, and handling run-length |
9405 | compression. NUL terminate the buffer. If there is not enough room, | |
8d64371b | 9406 | expand *BUF. |
c906108c | 9407 | |
c2d11a7d JM |
9408 | Returns -1 on error, number of characters in buffer (ignoring the |
9409 | trailing NULL) on success. (could be extended to return one of the | |
23860348 | 9410 | SERIAL status indications). */ |
c2d11a7d | 9411 | |
6b8edb51 | 9412 | long |
8d64371b | 9413 | remote_target::read_frame (gdb::char_vector *buf_p) |
c906108c SS |
9414 | { |
9415 | unsigned char csum; | |
c2d11a7d | 9416 | long bc; |
c906108c | 9417 | int c; |
8d64371b | 9418 | char *buf = buf_p->data (); |
a6f3e723 | 9419 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
9420 | |
9421 | csum = 0; | |
c2d11a7d | 9422 | bc = 0; |
c906108c SS |
9423 | |
9424 | while (1) | |
9425 | { | |
9426 | c = readchar (remote_timeout); | |
c906108c SS |
9427 | switch (c) |
9428 | { | |
9429 | case SERIAL_TIMEOUT: | |
9430 | if (remote_debug) | |
0f71a2f6 | 9431 | fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog); |
c2d11a7d | 9432 | return -1; |
c906108c SS |
9433 | case '$': |
9434 | if (remote_debug) | |
0f71a2f6 JM |
9435 | fputs_filtered ("Saw new packet start in middle of old one\n", |
9436 | gdb_stdlog); | |
23860348 | 9437 | return -1; /* Start a new packet, count retries. */ |
c906108c SS |
9438 | case '#': |
9439 | { | |
9440 | unsigned char pktcsum; | |
e1b09194 AC |
9441 | int check_0 = 0; |
9442 | int check_1 = 0; | |
c906108c | 9443 | |
c2d11a7d | 9444 | buf[bc] = '\0'; |
c906108c | 9445 | |
e1b09194 AC |
9446 | check_0 = readchar (remote_timeout); |
9447 | if (check_0 >= 0) | |
9448 | check_1 = readchar (remote_timeout); | |
802188a7 | 9449 | |
e1b09194 AC |
9450 | if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT) |
9451 | { | |
9452 | if (remote_debug) | |
2bc416ba | 9453 | fputs_filtered ("Timeout in checksum, retrying\n", |
23860348 | 9454 | gdb_stdlog); |
e1b09194 AC |
9455 | return -1; |
9456 | } | |
9457 | else if (check_0 < 0 || check_1 < 0) | |
40e3f985 FN |
9458 | { |
9459 | if (remote_debug) | |
2bc416ba | 9460 | fputs_filtered ("Communication error in checksum\n", |
23860348 | 9461 | gdb_stdlog); |
40e3f985 FN |
9462 | return -1; |
9463 | } | |
c906108c | 9464 | |
a6f3e723 SL |
9465 | /* Don't recompute the checksum; with no ack packets we |
9466 | don't have any way to indicate a packet retransmission | |
9467 | is necessary. */ | |
9468 | if (rs->noack_mode) | |
9469 | return bc; | |
9470 | ||
e1b09194 | 9471 | pktcsum = (fromhex (check_0) << 4) | fromhex (check_1); |
c906108c | 9472 | if (csum == pktcsum) |
c2d11a7d | 9473 | return bc; |
c906108c | 9474 | |
c5aa993b | 9475 | if (remote_debug) |
c906108c | 9476 | { |
b3ced9ba | 9477 | std::string str = escape_buffer (buf, bc); |
6e5abd65 | 9478 | |
6e5abd65 | 9479 | fprintf_unfiltered (gdb_stdlog, |
3e43a32a MS |
9480 | "Bad checksum, sentsum=0x%x, " |
9481 | "csum=0x%x, buf=%s\n", | |
b3ced9ba | 9482 | pktcsum, csum, str.c_str ()); |
c906108c | 9483 | } |
c2d11a7d | 9484 | /* Number of characters in buffer ignoring trailing |
23860348 | 9485 | NULL. */ |
c2d11a7d | 9486 | return -1; |
c906108c | 9487 | } |
23860348 | 9488 | case '*': /* Run length encoding. */ |
c2c6d25f JM |
9489 | { |
9490 | int repeat; | |
c906108c | 9491 | |
a744cf53 | 9492 | csum += c; |
b4501125 AC |
9493 | c = readchar (remote_timeout); |
9494 | csum += c; | |
23860348 | 9495 | repeat = c - ' ' + 3; /* Compute repeat count. */ |
c906108c | 9496 | |
23860348 | 9497 | /* The character before ``*'' is repeated. */ |
c2d11a7d | 9498 | |
6d820c5c | 9499 | if (repeat > 0 && repeat <= 255 && bc > 0) |
c2c6d25f | 9500 | { |
8d64371b | 9501 | if (bc + repeat - 1 >= buf_p->size () - 1) |
6d820c5c DJ |
9502 | { |
9503 | /* Make some more room in the buffer. */ | |
8d64371b TT |
9504 | buf_p->resize (buf_p->size () + repeat); |
9505 | buf = buf_p->data (); | |
6d820c5c DJ |
9506 | } |
9507 | ||
c2d11a7d JM |
9508 | memset (&buf[bc], buf[bc - 1], repeat); |
9509 | bc += repeat; | |
c2c6d25f JM |
9510 | continue; |
9511 | } | |
9512 | ||
c2d11a7d | 9513 | buf[bc] = '\0'; |
6d820c5c | 9514 | printf_filtered (_("Invalid run length encoding: %s\n"), buf); |
c2d11a7d | 9515 | return -1; |
c2c6d25f | 9516 | } |
c906108c | 9517 | default: |
8d64371b | 9518 | if (bc >= buf_p->size () - 1) |
c906108c | 9519 | { |
6d820c5c | 9520 | /* Make some more room in the buffer. */ |
8d64371b TT |
9521 | buf_p->resize (buf_p->size () * 2); |
9522 | buf = buf_p->data (); | |
c906108c SS |
9523 | } |
9524 | ||
6d820c5c DJ |
9525 | buf[bc++] = c; |
9526 | csum += c; | |
9527 | continue; | |
c906108c SS |
9528 | } |
9529 | } | |
9530 | } | |
9531 | ||
ed2b7c17 TT |
9532 | /* Set this to the maximum number of seconds to wait instead of waiting forever |
9533 | in target_wait(). If this timer times out, then it generates an error and | |
9534 | the command is aborted. This replaces most of the need for timeouts in the | |
9535 | GDB test suite, and makes it possible to distinguish between a hung target | |
9536 | and one with slow communications. */ | |
9537 | ||
9538 | static int watchdog = 0; | |
9539 | static void | |
9540 | show_watchdog (struct ui_file *file, int from_tty, | |
9541 | struct cmd_list_element *c, const char *value) | |
9542 | { | |
9543 | fprintf_filtered (file, _("Watchdog timer is %s.\n"), value); | |
9544 | } | |
9545 | ||
c906108c | 9546 | /* Read a packet from the remote machine, with error checking, and |
8d64371b TT |
9547 | store it in *BUF. Resize *BUF if necessary to hold the result. If |
9548 | FOREVER, wait forever rather than timing out; this is used (in | |
9549 | synchronous mode) to wait for a target that is is executing user | |
9550 | code to stop. */ | |
d9fcf2fb JM |
9551 | /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we |
9552 | don't have to change all the calls to getpkt to deal with the | |
9553 | return value, because at the moment I don't know what the right | |
23860348 | 9554 | thing to do it for those. */ |
6b8edb51 | 9555 | |
c906108c | 9556 | void |
8d64371b | 9557 | remote_target::getpkt (gdb::char_vector *buf, int forever) |
d9fcf2fb | 9558 | { |
8d64371b | 9559 | getpkt_sane (buf, forever); |
d9fcf2fb JM |
9560 | } |
9561 | ||
9562 | ||
9563 | /* Read a packet from the remote machine, with error checking, and | |
8d64371b TT |
9564 | store it in *BUF. Resize *BUF if necessary to hold the result. If |
9565 | FOREVER, wait forever rather than timing out; this is used (in | |
9566 | synchronous mode) to wait for a target that is is executing user | |
9567 | code to stop. If FOREVER == 0, this function is allowed to time | |
9568 | out gracefully and return an indication of this to the caller. | |
9569 | Otherwise return the number of bytes read. If EXPECTING_NOTIF, | |
9570 | consider receiving a notification enough reason to return to the | |
9571 | caller. *IS_NOTIF is an output boolean that indicates whether *BUF | |
9572 | holds a notification or not (a regular packet). */ | |
74531fed | 9573 | |
6b8edb51 | 9574 | int |
8d64371b | 9575 | remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf, |
6b8edb51 PA |
9576 | int forever, int expecting_notif, |
9577 | int *is_notif) | |
c906108c | 9578 | { |
2d717e4f | 9579 | struct remote_state *rs = get_remote_state (); |
c906108c SS |
9580 | int c; |
9581 | int tries; | |
9582 | int timeout; | |
df4b58fe | 9583 | int val = -1; |
c906108c | 9584 | |
2d717e4f DJ |
9585 | /* We're reading a new response. Make sure we don't look at a |
9586 | previously cached response. */ | |
9587 | rs->cached_wait_status = 0; | |
9588 | ||
8d64371b | 9589 | strcpy (buf->data (), "timeout"); |
c906108c SS |
9590 | |
9591 | if (forever) | |
74531fed PA |
9592 | timeout = watchdog > 0 ? watchdog : -1; |
9593 | else if (expecting_notif) | |
9594 | timeout = 0; /* There should already be a char in the buffer. If | |
9595 | not, bail out. */ | |
c906108c SS |
9596 | else |
9597 | timeout = remote_timeout; | |
9598 | ||
9599 | #define MAX_TRIES 3 | |
9600 | ||
74531fed PA |
9601 | /* Process any number of notifications, and then return when |
9602 | we get a packet. */ | |
9603 | for (;;) | |
c906108c | 9604 | { |
d9c43928 | 9605 | /* If we get a timeout or bad checksum, retry up to MAX_TRIES |
74531fed PA |
9606 | times. */ |
9607 | for (tries = 1; tries <= MAX_TRIES; tries++) | |
c906108c | 9608 | { |
74531fed PA |
9609 | /* This can loop forever if the remote side sends us |
9610 | characters continuously, but if it pauses, we'll get | |
9611 | SERIAL_TIMEOUT from readchar because of timeout. Then | |
9612 | we'll count that as a retry. | |
9613 | ||
9614 | Note that even when forever is set, we will only wait | |
9615 | forever prior to the start of a packet. After that, we | |
9616 | expect characters to arrive at a brisk pace. They should | |
9617 | show up within remote_timeout intervals. */ | |
9618 | do | |
9619 | c = readchar (timeout); | |
9620 | while (c != SERIAL_TIMEOUT && c != '$' && c != '%'); | |
c906108c SS |
9621 | |
9622 | if (c == SERIAL_TIMEOUT) | |
9623 | { | |
74531fed PA |
9624 | if (expecting_notif) |
9625 | return -1; /* Don't complain, it's normal to not get | |
9626 | anything in this case. */ | |
9627 | ||
23860348 | 9628 | if (forever) /* Watchdog went off? Kill the target. */ |
c906108c | 9629 | { |
5b6d1e4f | 9630 | remote_unpush_target (this); |
598d3636 JK |
9631 | throw_error (TARGET_CLOSE_ERROR, |
9632 | _("Watchdog timeout has expired. " | |
9633 | "Target detached.")); | |
c906108c | 9634 | } |
c906108c | 9635 | if (remote_debug) |
0f71a2f6 | 9636 | fputs_filtered ("Timed out.\n", gdb_stdlog); |
c906108c | 9637 | } |
74531fed PA |
9638 | else |
9639 | { | |
9640 | /* We've found the start of a packet or notification. | |
9641 | Now collect the data. */ | |
8d64371b | 9642 | val = read_frame (buf); |
74531fed PA |
9643 | if (val >= 0) |
9644 | break; | |
9645 | } | |
9646 | ||
c33e31fd | 9647 | remote_serial_write ("-", 1); |
c906108c | 9648 | } |
c906108c | 9649 | |
74531fed PA |
9650 | if (tries > MAX_TRIES) |
9651 | { | |
9652 | /* We have tried hard enough, and just can't receive the | |
9653 | packet/notification. Give up. */ | |
9654 | printf_unfiltered (_("Ignoring packet error, continuing...\n")); | |
c906108c | 9655 | |
74531fed PA |
9656 | /* Skip the ack char if we're in no-ack mode. */ |
9657 | if (!rs->noack_mode) | |
c33e31fd | 9658 | remote_serial_write ("+", 1); |
74531fed PA |
9659 | return -1; |
9660 | } | |
c906108c | 9661 | |
74531fed PA |
9662 | /* If we got an ordinary packet, return that to our caller. */ |
9663 | if (c == '$') | |
c906108c SS |
9664 | { |
9665 | if (remote_debug) | |
43e526b9 | 9666 | { |
6cc8564b LM |
9667 | int max_chars; |
9668 | ||
9669 | if (remote_packet_max_chars < 0) | |
9670 | max_chars = val; | |
9671 | else | |
9672 | max_chars = remote_packet_max_chars; | |
9673 | ||
6f8976bf | 9674 | std::string str |
8d64371b | 9675 | = escape_buffer (buf->data (), |
6cc8564b | 9676 | std::min (val, max_chars)); |
6f8976bf YQ |
9677 | |
9678 | fprintf_unfiltered (gdb_stdlog, "Packet received: %s", | |
9679 | str.c_str ()); | |
9680 | ||
6cc8564b | 9681 | if (val > max_chars) |
567a3e54 | 9682 | fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]", |
6cc8564b | 9683 | val - max_chars); |
6e5abd65 | 9684 | |
6f8976bf | 9685 | fprintf_unfiltered (gdb_stdlog, "\n"); |
43e526b9 | 9686 | } |
a6f3e723 SL |
9687 | |
9688 | /* Skip the ack char if we're in no-ack mode. */ | |
9689 | if (!rs->noack_mode) | |
c33e31fd | 9690 | remote_serial_write ("+", 1); |
fee9eda9 YQ |
9691 | if (is_notif != NULL) |
9692 | *is_notif = 0; | |
0876f84a | 9693 | return val; |
c906108c SS |
9694 | } |
9695 | ||
74531fed PA |
9696 | /* If we got a notification, handle it, and go back to looking |
9697 | for a packet. */ | |
9698 | else | |
9699 | { | |
9700 | gdb_assert (c == '%'); | |
9701 | ||
9702 | if (remote_debug) | |
9703 | { | |
8d64371b | 9704 | std::string str = escape_buffer (buf->data (), val); |
6e5abd65 | 9705 | |
6e5abd65 PA |
9706 | fprintf_unfiltered (gdb_stdlog, |
9707 | " Notification received: %s\n", | |
b3ced9ba | 9708 | str.c_str ()); |
74531fed | 9709 | } |
fee9eda9 YQ |
9710 | if (is_notif != NULL) |
9711 | *is_notif = 1; | |
c906108c | 9712 | |
8d64371b | 9713 | handle_notification (rs->notif_state, buf->data ()); |
c906108c | 9714 | |
74531fed | 9715 | /* Notifications require no acknowledgement. */ |
a6f3e723 | 9716 | |
74531fed | 9717 | if (expecting_notif) |
fee9eda9 | 9718 | return val; |
74531fed PA |
9719 | } |
9720 | } | |
9721 | } | |
9722 | ||
6b8edb51 | 9723 | int |
8d64371b | 9724 | remote_target::getpkt_sane (gdb::char_vector *buf, int forever) |
74531fed | 9725 | { |
8d64371b | 9726 | return getpkt_or_notif_sane_1 (buf, forever, 0, NULL); |
74531fed PA |
9727 | } |
9728 | ||
6b8edb51 | 9729 | int |
8d64371b | 9730 | remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever, |
6b8edb51 | 9731 | int *is_notif) |
74531fed | 9732 | { |
8d64371b | 9733 | return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif); |
c906108c | 9734 | } |
74531fed | 9735 | |
cbb8991c DB |
9736 | /* Kill any new fork children of process PID that haven't been |
9737 | processed by follow_fork. */ | |
9738 | ||
6b8edb51 PA |
9739 | void |
9740 | remote_target::kill_new_fork_children (int pid) | |
cbb8991c | 9741 | { |
6b8edb51 | 9742 | remote_state *rs = get_remote_state (); |
cbb8991c | 9743 | struct notif_client *notif = ¬if_client_stop; |
cbb8991c DB |
9744 | |
9745 | /* Kill the fork child threads of any threads in process PID | |
9746 | that are stopped at a fork event. */ | |
5b6d1e4f | 9747 | for (thread_info *thread : all_non_exited_threads (this)) |
cbb8991c DB |
9748 | { |
9749 | struct target_waitstatus *ws = &thread->pending_follow; | |
9750 | ||
9751 | if (is_pending_fork_parent (ws, pid, thread->ptid)) | |
9752 | { | |
953edf2b | 9753 | int child_pid = ws->value.related_pid.pid (); |
cbb8991c DB |
9754 | int res; |
9755 | ||
6b8edb51 | 9756 | res = remote_vkill (child_pid); |
cbb8991c DB |
9757 | if (res != 0) |
9758 | error (_("Can't kill fork child process %d"), child_pid); | |
9759 | } | |
9760 | } | |
9761 | ||
9762 | /* Check for any pending fork events (not reported or processed yet) | |
9763 | in process PID and kill those fork child threads as well. */ | |
9764 | remote_notif_get_pending_events (notif); | |
953edf2b TT |
9765 | for (auto &event : rs->stop_reply_queue) |
9766 | if (is_pending_fork_parent (&event->ws, pid, event->ptid)) | |
9767 | { | |
9768 | int child_pid = event->ws.value.related_pid.pid (); | |
9769 | int res; | |
9770 | ||
9771 | res = remote_vkill (child_pid); | |
9772 | if (res != 0) | |
9773 | error (_("Can't kill fork child process %d"), child_pid); | |
9774 | } | |
cbb8991c DB |
9775 | } |
9776 | ||
c906108c | 9777 | \f |
8020350c DB |
9778 | /* Target hook to kill the current inferior. */ |
9779 | ||
f6ac5f3d PA |
9780 | void |
9781 | remote_target::kill () | |
43ff13b4 | 9782 | { |
8020350c | 9783 | int res = -1; |
e99b03dc | 9784 | int pid = inferior_ptid.pid (); |
8020350c | 9785 | struct remote_state *rs = get_remote_state (); |
0fdf84ca | 9786 | |
8020350c | 9787 | if (packet_support (PACKET_vKill) != PACKET_DISABLE) |
0fdf84ca | 9788 | { |
8020350c DB |
9789 | /* If we're stopped while forking and we haven't followed yet, |
9790 | kill the child task. We need to do this before killing the | |
9791 | parent task because if this is a vfork then the parent will | |
9792 | be sleeping. */ | |
6b8edb51 | 9793 | kill_new_fork_children (pid); |
8020350c | 9794 | |
6b8edb51 | 9795 | res = remote_vkill (pid); |
8020350c | 9796 | if (res == 0) |
0fdf84ca | 9797 | { |
bc1e6c81 | 9798 | target_mourn_inferior (inferior_ptid); |
0fdf84ca PA |
9799 | return; |
9800 | } | |
8020350c | 9801 | } |
0fdf84ca | 9802 | |
8020350c DB |
9803 | /* If we are in 'target remote' mode and we are killing the only |
9804 | inferior, then we will tell gdbserver to exit and unpush the | |
9805 | target. */ | |
9806 | if (res == -1 && !remote_multi_process_p (rs) | |
5b6d1e4f | 9807 | && number_of_live_inferiors (this) == 1) |
8020350c DB |
9808 | { |
9809 | remote_kill_k (); | |
9810 | ||
9811 | /* We've killed the remote end, we get to mourn it. If we are | |
9812 | not in extended mode, mourning the inferior also unpushes | |
9813 | remote_ops from the target stack, which closes the remote | |
9814 | connection. */ | |
bc1e6c81 | 9815 | target_mourn_inferior (inferior_ptid); |
8020350c DB |
9816 | |
9817 | return; | |
0fdf84ca | 9818 | } |
43ff13b4 | 9819 | |
8020350c | 9820 | error (_("Can't kill process")); |
43ff13b4 JM |
9821 | } |
9822 | ||
8020350c DB |
9823 | /* Send a kill request to the target using the 'vKill' packet. */ |
9824 | ||
6b8edb51 PA |
9825 | int |
9826 | remote_target::remote_vkill (int pid) | |
82f73884 | 9827 | { |
4082afcc | 9828 | if (packet_support (PACKET_vKill) == PACKET_DISABLE) |
82f73884 PA |
9829 | return -1; |
9830 | ||
6b8edb51 PA |
9831 | remote_state *rs = get_remote_state (); |
9832 | ||
82f73884 | 9833 | /* Tell the remote target to detach. */ |
8d64371b | 9834 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid); |
82f73884 | 9835 | putpkt (rs->buf); |
8d64371b | 9836 | getpkt (&rs->buf, 0); |
82f73884 | 9837 | |
4082afcc PA |
9838 | switch (packet_ok (rs->buf, |
9839 | &remote_protocol_packets[PACKET_vKill])) | |
9840 | { | |
9841 | case PACKET_OK: | |
9842 | return 0; | |
9843 | case PACKET_ERROR: | |
9844 | return 1; | |
9845 | case PACKET_UNKNOWN: | |
9846 | return -1; | |
9847 | default: | |
9848 | internal_error (__FILE__, __LINE__, _("Bad result from packet_ok")); | |
9849 | } | |
82f73884 PA |
9850 | } |
9851 | ||
8020350c DB |
9852 | /* Send a kill request to the target using the 'k' packet. */ |
9853 | ||
6b8edb51 PA |
9854 | void |
9855 | remote_target::remote_kill_k () | |
82f73884 | 9856 | { |
8020350c DB |
9857 | /* Catch errors so the user can quit from gdb even when we |
9858 | aren't on speaking terms with the remote system. */ | |
a70b8144 | 9859 | try |
82f73884 | 9860 | { |
82f73884 | 9861 | putpkt ("k"); |
82f73884 | 9862 | } |
230d2906 | 9863 | catch (const gdb_exception_error &ex) |
8020350c DB |
9864 | { |
9865 | if (ex.error == TARGET_CLOSE_ERROR) | |
9866 | { | |
9867 | /* If we got an (EOF) error that caused the target | |
9868 | to go away, then we're done, that's what we wanted. | |
9869 | "k" is susceptible to cause a premature EOF, given | |
9870 | that the remote server isn't actually required to | |
9871 | reply to "k", and it can happen that it doesn't | |
9872 | even get to reply ACK to the "k". */ | |
9873 | return; | |
9874 | } | |
82f73884 | 9875 | |
8020350c DB |
9876 | /* Otherwise, something went wrong. We didn't actually kill |
9877 | the target. Just propagate the exception, and let the | |
9878 | user or higher layers decide what to do. */ | |
eedc3f4f | 9879 | throw; |
8020350c | 9880 | } |
82f73884 PA |
9881 | } |
9882 | ||
f6ac5f3d PA |
9883 | void |
9884 | remote_target::mourn_inferior () | |
c906108c | 9885 | { |
8020350c | 9886 | struct remote_state *rs = get_remote_state (); |
ce5ce7ed | 9887 | |
9607784a PA |
9888 | /* We're no longer interested in notification events of an inferior |
9889 | that exited or was killed/detached. */ | |
9890 | discard_pending_stop_replies (current_inferior ()); | |
9891 | ||
8020350c | 9892 | /* In 'target remote' mode with one inferior, we close the connection. */ |
5b6d1e4f | 9893 | if (!rs->extended && number_of_live_inferiors (this) <= 1) |
8020350c | 9894 | { |
5b6d1e4f | 9895 | remote_unpush_target (this); |
8020350c DB |
9896 | return; |
9897 | } | |
c906108c | 9898 | |
e24a49d8 PA |
9899 | /* In case we got here due to an error, but we're going to stay |
9900 | connected. */ | |
9901 | rs->waiting_for_stop_reply = 0; | |
9902 | ||
dc1981d7 PA |
9903 | /* If the current general thread belonged to the process we just |
9904 | detached from or has exited, the remote side current general | |
9905 | thread becomes undefined. Considering a case like this: | |
9906 | ||
9907 | - We just got here due to a detach. | |
9908 | - The process that we're detaching from happens to immediately | |
9909 | report a global breakpoint being hit in non-stop mode, in the | |
9910 | same thread we had selected before. | |
9911 | - GDB attaches to this process again. | |
9912 | - This event happens to be the next event we handle. | |
9913 | ||
9914 | GDB would consider that the current general thread didn't need to | |
9915 | be set on the stub side (with Hg), since for all it knew, | |
9916 | GENERAL_THREAD hadn't changed. | |
9917 | ||
9918 | Notice that although in all-stop mode, the remote server always | |
9919 | sets the current thread to the thread reporting the stop event, | |
9920 | that doesn't happen in non-stop mode; in non-stop, the stub *must | |
9921 | not* change the current thread when reporting a breakpoint hit, | |
9922 | due to the decoupling of event reporting and event handling. | |
9923 | ||
9924 | To keep things simple, we always invalidate our notion of the | |
9925 | current thread. */ | |
47f8a51d | 9926 | record_currthread (rs, minus_one_ptid); |
dc1981d7 | 9927 | |
8020350c | 9928 | /* Call common code to mark the inferior as not running. */ |
48aa3c27 | 9929 | generic_mourn_inferior (); |
2d717e4f | 9930 | } |
c906108c | 9931 | |
57810aa7 | 9932 | bool |
f6ac5f3d | 9933 | extended_remote_target::supports_disable_randomization () |
03583c20 | 9934 | { |
4082afcc | 9935 | return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE; |
03583c20 UW |
9936 | } |
9937 | ||
6b8edb51 PA |
9938 | void |
9939 | remote_target::extended_remote_disable_randomization (int val) | |
03583c20 UW |
9940 | { |
9941 | struct remote_state *rs = get_remote_state (); | |
9942 | char *reply; | |
9943 | ||
8d64371b TT |
9944 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
9945 | "QDisableRandomization:%x", val); | |
03583c20 | 9946 | putpkt (rs->buf); |
b6bb3468 | 9947 | reply = remote_get_noisy_reply (); |
03583c20 UW |
9948 | if (*reply == '\0') |
9949 | error (_("Target does not support QDisableRandomization.")); | |
9950 | if (strcmp (reply, "OK") != 0) | |
9951 | error (_("Bogus QDisableRandomization reply from target: %s"), reply); | |
9952 | } | |
9953 | ||
6b8edb51 PA |
9954 | int |
9955 | remote_target::extended_remote_run (const std::string &args) | |
2d717e4f DJ |
9956 | { |
9957 | struct remote_state *rs = get_remote_state (); | |
2d717e4f | 9958 | int len; |
94585166 | 9959 | const char *remote_exec_file = get_remote_exec_file (); |
c906108c | 9960 | |
2d717e4f DJ |
9961 | /* If the user has disabled vRun support, or we have detected that |
9962 | support is not available, do not try it. */ | |
4082afcc | 9963 | if (packet_support (PACKET_vRun) == PACKET_DISABLE) |
2d717e4f | 9964 | return -1; |
424163ea | 9965 | |
8d64371b TT |
9966 | strcpy (rs->buf.data (), "vRun;"); |
9967 | len = strlen (rs->buf.data ()); | |
c906108c | 9968 | |
2d717e4f DJ |
9969 | if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ()) |
9970 | error (_("Remote file name too long for run packet")); | |
8d64371b | 9971 | len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len, |
9f1b45b0 | 9972 | strlen (remote_exec_file)); |
2d717e4f | 9973 | |
7c5ded6a | 9974 | if (!args.empty ()) |
2d717e4f | 9975 | { |
2d717e4f | 9976 | int i; |
2d717e4f | 9977 | |
773a1edc | 9978 | gdb_argv argv (args.c_str ()); |
2d717e4f DJ |
9979 | for (i = 0; argv[i] != NULL; i++) |
9980 | { | |
9981 | if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ()) | |
9982 | error (_("Argument list too long for run packet")); | |
9983 | rs->buf[len++] = ';'; | |
8d64371b | 9984 | len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len, |
9f1b45b0 | 9985 | strlen (argv[i])); |
2d717e4f | 9986 | } |
2d717e4f DJ |
9987 | } |
9988 | ||
9989 | rs->buf[len++] = '\0'; | |
9990 | ||
9991 | putpkt (rs->buf); | |
8d64371b | 9992 | getpkt (&rs->buf, 0); |
2d717e4f | 9993 | |
4082afcc | 9994 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun])) |
2d717e4f | 9995 | { |
4082afcc | 9996 | case PACKET_OK: |
3405876a | 9997 | /* We have a wait response. All is well. */ |
2d717e4f | 9998 | return 0; |
4082afcc PA |
9999 | case PACKET_UNKNOWN: |
10000 | return -1; | |
10001 | case PACKET_ERROR: | |
2d717e4f DJ |
10002 | if (remote_exec_file[0] == '\0') |
10003 | error (_("Running the default executable on the remote target failed; " | |
10004 | "try \"set remote exec-file\"?")); | |
10005 | else | |
10006 | error (_("Running \"%s\" on the remote target failed"), | |
10007 | remote_exec_file); | |
4082afcc PA |
10008 | default: |
10009 | gdb_assert_not_reached (_("bad switch")); | |
2d717e4f | 10010 | } |
c906108c SS |
10011 | } |
10012 | ||
0a2dde4a SDJ |
10013 | /* Helper function to send set/unset environment packets. ACTION is |
10014 | either "set" or "unset". PACKET is either "QEnvironmentHexEncoded" | |
10015 | or "QEnvironmentUnsetVariable". VALUE is the variable to be | |
10016 | sent. */ | |
10017 | ||
6b8edb51 PA |
10018 | void |
10019 | remote_target::send_environment_packet (const char *action, | |
10020 | const char *packet, | |
10021 | const char *value) | |
0a2dde4a | 10022 | { |
6b8edb51 PA |
10023 | remote_state *rs = get_remote_state (); |
10024 | ||
0a2dde4a SDJ |
10025 | /* Convert the environment variable to an hex string, which |
10026 | is the best format to be transmitted over the wire. */ | |
10027 | std::string encoded_value = bin2hex ((const gdb_byte *) value, | |
10028 | strlen (value)); | |
10029 | ||
8d64371b | 10030 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
0a2dde4a SDJ |
10031 | "%s:%s", packet, encoded_value.c_str ()); |
10032 | ||
10033 | putpkt (rs->buf); | |
8d64371b TT |
10034 | getpkt (&rs->buf, 0); |
10035 | if (strcmp (rs->buf.data (), "OK") != 0) | |
0a2dde4a SDJ |
10036 | warning (_("Unable to %s environment variable '%s' on remote."), |
10037 | action, value); | |
10038 | } | |
10039 | ||
10040 | /* Helper function to handle the QEnvironment* packets. */ | |
10041 | ||
6b8edb51 PA |
10042 | void |
10043 | remote_target::extended_remote_environment_support () | |
0a2dde4a | 10044 | { |
6b8edb51 PA |
10045 | remote_state *rs = get_remote_state (); |
10046 | ||
0a2dde4a SDJ |
10047 | if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE) |
10048 | { | |
10049 | putpkt ("QEnvironmentReset"); | |
8d64371b TT |
10050 | getpkt (&rs->buf, 0); |
10051 | if (strcmp (rs->buf.data (), "OK") != 0) | |
0a2dde4a SDJ |
10052 | warning (_("Unable to reset environment on remote.")); |
10053 | } | |
10054 | ||
10055 | gdb_environ *e = ¤t_inferior ()->environment; | |
10056 | ||
10057 | if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE) | |
10058 | for (const std::string &el : e->user_set_env ()) | |
6b8edb51 | 10059 | send_environment_packet ("set", "QEnvironmentHexEncoded", |
0a2dde4a SDJ |
10060 | el.c_str ()); |
10061 | ||
10062 | if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE) | |
10063 | for (const std::string &el : e->user_unset_env ()) | |
6b8edb51 | 10064 | send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ()); |
0a2dde4a SDJ |
10065 | } |
10066 | ||
bc3b087d SDJ |
10067 | /* Helper function to set the current working directory for the |
10068 | inferior in the remote target. */ | |
10069 | ||
6b8edb51 PA |
10070 | void |
10071 | remote_target::extended_remote_set_inferior_cwd () | |
bc3b087d SDJ |
10072 | { |
10073 | if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE) | |
10074 | { | |
10075 | const char *inferior_cwd = get_inferior_cwd (); | |
6b8edb51 | 10076 | remote_state *rs = get_remote_state (); |
bc3b087d SDJ |
10077 | |
10078 | if (inferior_cwd != NULL) | |
10079 | { | |
10080 | std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd, | |
10081 | strlen (inferior_cwd)); | |
10082 | ||
8d64371b | 10083 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
bc3b087d SDJ |
10084 | "QSetWorkingDir:%s", hexpath.c_str ()); |
10085 | } | |
10086 | else | |
10087 | { | |
10088 | /* An empty inferior_cwd means that the user wants us to | |
10089 | reset the remote server's inferior's cwd. */ | |
8d64371b | 10090 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
bc3b087d SDJ |
10091 | "QSetWorkingDir:"); |
10092 | } | |
10093 | ||
10094 | putpkt (rs->buf); | |
8d64371b | 10095 | getpkt (&rs->buf, 0); |
bc3b087d SDJ |
10096 | if (packet_ok (rs->buf, |
10097 | &remote_protocol_packets[PACKET_QSetWorkingDir]) | |
10098 | != PACKET_OK) | |
10099 | error (_("\ | |
10100 | Remote replied unexpectedly while setting the inferior's working\n\ | |
10101 | directory: %s"), | |
8d64371b | 10102 | rs->buf.data ()); |
bc3b087d SDJ |
10103 | |
10104 | } | |
10105 | } | |
10106 | ||
2d717e4f DJ |
10107 | /* In the extended protocol we want to be able to do things like |
10108 | "run" and have them basically work as expected. So we need | |
10109 | a special create_inferior function. We support changing the | |
10110 | executable file and the command line arguments, but not the | |
10111 | environment. */ | |
10112 | ||
f6ac5f3d PA |
10113 | void |
10114 | extended_remote_target::create_inferior (const char *exec_file, | |
10115 | const std::string &args, | |
10116 | char **env, int from_tty) | |
43ff13b4 | 10117 | { |
3405876a PA |
10118 | int run_worked; |
10119 | char *stop_reply; | |
10120 | struct remote_state *rs = get_remote_state (); | |
94585166 | 10121 | const char *remote_exec_file = get_remote_exec_file (); |
3405876a | 10122 | |
43ff13b4 | 10123 | /* If running asynchronously, register the target file descriptor |
23860348 | 10124 | with the event loop. */ |
75c99385 | 10125 | if (target_can_async_p ()) |
6a3753b3 | 10126 | target_async (1); |
43ff13b4 | 10127 | |
03583c20 | 10128 | /* Disable address space randomization if requested (and supported). */ |
f6ac5f3d | 10129 | if (supports_disable_randomization ()) |
03583c20 UW |
10130 | extended_remote_disable_randomization (disable_randomization); |
10131 | ||
aefd8b33 SDJ |
10132 | /* If startup-with-shell is on, we inform gdbserver to start the |
10133 | remote inferior using a shell. */ | |
10134 | if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE) | |
10135 | { | |
8d64371b | 10136 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
aefd8b33 SDJ |
10137 | "QStartupWithShell:%d", startup_with_shell ? 1 : 0); |
10138 | putpkt (rs->buf); | |
8d64371b TT |
10139 | getpkt (&rs->buf, 0); |
10140 | if (strcmp (rs->buf.data (), "OK") != 0) | |
aefd8b33 SDJ |
10141 | error (_("\ |
10142 | Remote replied unexpectedly while setting startup-with-shell: %s"), | |
8d64371b | 10143 | rs->buf.data ()); |
aefd8b33 SDJ |
10144 | } |
10145 | ||
6b8edb51 | 10146 | extended_remote_environment_support (); |
0a2dde4a | 10147 | |
6b8edb51 | 10148 | extended_remote_set_inferior_cwd (); |
bc3b087d | 10149 | |
43ff13b4 | 10150 | /* Now restart the remote server. */ |
3405876a PA |
10151 | run_worked = extended_remote_run (args) != -1; |
10152 | if (!run_worked) | |
2d717e4f DJ |
10153 | { |
10154 | /* vRun was not supported. Fail if we need it to do what the | |
10155 | user requested. */ | |
10156 | if (remote_exec_file[0]) | |
10157 | error (_("Remote target does not support \"set remote exec-file\"")); | |
7c5ded6a | 10158 | if (!args.empty ()) |
65e65158 | 10159 | error (_("Remote target does not support \"set args\" or run ARGS")); |
43ff13b4 | 10160 | |
2d717e4f DJ |
10161 | /* Fall back to "R". */ |
10162 | extended_remote_restart (); | |
10163 | } | |
424163ea | 10164 | |
3405876a | 10165 | /* vRun's success return is a stop reply. */ |
8d64371b | 10166 | stop_reply = run_worked ? rs->buf.data () : NULL; |
3405876a | 10167 | add_current_inferior_and_thread (stop_reply); |
c0a2216e | 10168 | |
2d717e4f DJ |
10169 | /* Get updated offsets, if the stub uses qOffsets. */ |
10170 | get_offsets (); | |
2d717e4f | 10171 | } |
c906108c | 10172 | \f |
c5aa993b | 10173 | |
b775012e LM |
10174 | /* Given a location's target info BP_TGT and the packet buffer BUF, output |
10175 | the list of conditions (in agent expression bytecode format), if any, the | |
10176 | target needs to evaluate. The output is placed into the packet buffer | |
bba74b36 | 10177 | started from BUF and ended at BUF_END. */ |
b775012e LM |
10178 | |
10179 | static int | |
10180 | remote_add_target_side_condition (struct gdbarch *gdbarch, | |
bba74b36 YQ |
10181 | struct bp_target_info *bp_tgt, char *buf, |
10182 | char *buf_end) | |
b775012e | 10183 | { |
3cde5c42 | 10184 | if (bp_tgt->conditions.empty ()) |
b775012e LM |
10185 | return 0; |
10186 | ||
10187 | buf += strlen (buf); | |
bba74b36 | 10188 | xsnprintf (buf, buf_end - buf, "%s", ";"); |
b775012e LM |
10189 | buf++; |
10190 | ||
83621223 | 10191 | /* Send conditions to the target. */ |
d538e36d | 10192 | for (agent_expr *aexpr : bp_tgt->conditions) |
b775012e | 10193 | { |
bba74b36 | 10194 | xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len); |
b775012e | 10195 | buf += strlen (buf); |
3cde5c42 | 10196 | for (int i = 0; i < aexpr->len; ++i) |
b775012e LM |
10197 | buf = pack_hex_byte (buf, aexpr->buf[i]); |
10198 | *buf = '\0'; | |
10199 | } | |
b775012e LM |
10200 | return 0; |
10201 | } | |
10202 | ||
d3ce09f5 SS |
10203 | static void |
10204 | remote_add_target_side_commands (struct gdbarch *gdbarch, | |
10205 | struct bp_target_info *bp_tgt, char *buf) | |
10206 | { | |
3cde5c42 | 10207 | if (bp_tgt->tcommands.empty ()) |
d3ce09f5 SS |
10208 | return; |
10209 | ||
10210 | buf += strlen (buf); | |
10211 | ||
10212 | sprintf (buf, ";cmds:%x,", bp_tgt->persist); | |
10213 | buf += strlen (buf); | |
10214 | ||
10215 | /* Concatenate all the agent expressions that are commands into the | |
10216 | cmds parameter. */ | |
df97be55 | 10217 | for (agent_expr *aexpr : bp_tgt->tcommands) |
d3ce09f5 SS |
10218 | { |
10219 | sprintf (buf, "X%x,", aexpr->len); | |
10220 | buf += strlen (buf); | |
3cde5c42 | 10221 | for (int i = 0; i < aexpr->len; ++i) |
d3ce09f5 SS |
10222 | buf = pack_hex_byte (buf, aexpr->buf[i]); |
10223 | *buf = '\0'; | |
10224 | } | |
d3ce09f5 SS |
10225 | } |
10226 | ||
8181d85f DJ |
10227 | /* Insert a breakpoint. On targets that have software breakpoint |
10228 | support, we ask the remote target to do the work; on targets | |
10229 | which don't, we insert a traditional memory breakpoint. */ | |
c906108c | 10230 | |
f6ac5f3d PA |
10231 | int |
10232 | remote_target::insert_breakpoint (struct gdbarch *gdbarch, | |
10233 | struct bp_target_info *bp_tgt) | |
c906108c | 10234 | { |
d471ea57 AC |
10235 | /* Try the "Z" s/w breakpoint packet if it is not already disabled. |
10236 | If it succeeds, then set the support to PACKET_ENABLE. If it | |
10237 | fails, and the user has explicitly requested the Z support then | |
23860348 | 10238 | report an error, otherwise, mark it disabled and go on. */ |
802188a7 | 10239 | |
4082afcc | 10240 | if (packet_support (PACKET_Z0) != PACKET_DISABLE) |
96baa820 | 10241 | { |
0d5ed153 | 10242 | CORE_ADDR addr = bp_tgt->reqstd_address; |
4fff2411 | 10243 | struct remote_state *rs; |
bba74b36 | 10244 | char *p, *endbuf; |
4fff2411 | 10245 | |
28439a30 PA |
10246 | /* Make sure the remote is pointing at the right process, if |
10247 | necessary. */ | |
10248 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
10249 | set_general_process (); | |
10250 | ||
4fff2411 | 10251 | rs = get_remote_state (); |
8d64371b TT |
10252 | p = rs->buf.data (); |
10253 | endbuf = p + get_remote_packet_size (); | |
802188a7 | 10254 | |
96baa820 JM |
10255 | *(p++) = 'Z'; |
10256 | *(p++) = '0'; | |
10257 | *(p++) = ','; | |
7c0f6dcc | 10258 | addr = (ULONGEST) remote_address_masked (addr); |
8181d85f | 10259 | p += hexnumstr (p, addr); |
579c6ad9 | 10260 | xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind); |
802188a7 | 10261 | |
f6ac5f3d | 10262 | if (supports_evaluation_of_breakpoint_conditions ()) |
bba74b36 | 10263 | remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf); |
b775012e | 10264 | |
f6ac5f3d | 10265 | if (can_run_breakpoint_commands ()) |
d3ce09f5 SS |
10266 | remote_add_target_side_commands (gdbarch, bp_tgt, p); |
10267 | ||
6d820c5c | 10268 | putpkt (rs->buf); |
8d64371b | 10269 | getpkt (&rs->buf, 0); |
96baa820 | 10270 | |
6d820c5c | 10271 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0])) |
96baa820 | 10272 | { |
d471ea57 AC |
10273 | case PACKET_ERROR: |
10274 | return -1; | |
10275 | case PACKET_OK: | |
10276 | return 0; | |
10277 | case PACKET_UNKNOWN: | |
10278 | break; | |
96baa820 JM |
10279 | } |
10280 | } | |
c906108c | 10281 | |
0000e5cc PA |
10282 | /* If this breakpoint has target-side commands but this stub doesn't |
10283 | support Z0 packets, throw error. */ | |
3cde5c42 | 10284 | if (!bp_tgt->tcommands.empty ()) |
0000e5cc PA |
10285 | throw_error (NOT_SUPPORTED_ERROR, _("\ |
10286 | Target doesn't support breakpoints that have target side commands.")); | |
10287 | ||
f6ac5f3d | 10288 | return memory_insert_breakpoint (this, gdbarch, bp_tgt); |
c906108c SS |
10289 | } |
10290 | ||
f6ac5f3d PA |
10291 | int |
10292 | remote_target::remove_breakpoint (struct gdbarch *gdbarch, | |
10293 | struct bp_target_info *bp_tgt, | |
10294 | enum remove_bp_reason reason) | |
c906108c | 10295 | { |
8181d85f | 10296 | CORE_ADDR addr = bp_tgt->placed_address; |
d01949b6 | 10297 | struct remote_state *rs = get_remote_state (); |
96baa820 | 10298 | |
4082afcc | 10299 | if (packet_support (PACKET_Z0) != PACKET_DISABLE) |
96baa820 | 10300 | { |
8d64371b TT |
10301 | char *p = rs->buf.data (); |
10302 | char *endbuf = p + get_remote_packet_size (); | |
802188a7 | 10303 | |
28439a30 PA |
10304 | /* Make sure the remote is pointing at the right process, if |
10305 | necessary. */ | |
10306 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
10307 | set_general_process (); | |
10308 | ||
96baa820 JM |
10309 | *(p++) = 'z'; |
10310 | *(p++) = '0'; | |
10311 | *(p++) = ','; | |
10312 | ||
8181d85f DJ |
10313 | addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address); |
10314 | p += hexnumstr (p, addr); | |
579c6ad9 | 10315 | xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind); |
802188a7 | 10316 | |
6d820c5c | 10317 | putpkt (rs->buf); |
8d64371b | 10318 | getpkt (&rs->buf, 0); |
96baa820 | 10319 | |
6d820c5c | 10320 | return (rs->buf[0] == 'E'); |
96baa820 JM |
10321 | } |
10322 | ||
f6ac5f3d | 10323 | return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason); |
c906108c SS |
10324 | } |
10325 | ||
f486487f | 10326 | static enum Z_packet_type |
d471ea57 AC |
10327 | watchpoint_to_Z_packet (int type) |
10328 | { | |
10329 | switch (type) | |
10330 | { | |
10331 | case hw_write: | |
bb858e6a | 10332 | return Z_PACKET_WRITE_WP; |
d471ea57 AC |
10333 | break; |
10334 | case hw_read: | |
bb858e6a | 10335 | return Z_PACKET_READ_WP; |
d471ea57 AC |
10336 | break; |
10337 | case hw_access: | |
bb858e6a | 10338 | return Z_PACKET_ACCESS_WP; |
d471ea57 AC |
10339 | break; |
10340 | default: | |
8e65ff28 | 10341 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 10342 | _("hw_bp_to_z: bad watchpoint type %d"), type); |
d471ea57 AC |
10343 | } |
10344 | } | |
10345 | ||
f6ac5f3d PA |
10346 | int |
10347 | remote_target::insert_watchpoint (CORE_ADDR addr, int len, | |
10348 | enum target_hw_bp_type type, struct expression *cond) | |
96baa820 | 10349 | { |
d01949b6 | 10350 | struct remote_state *rs = get_remote_state (); |
8d64371b | 10351 | char *endbuf = rs->buf.data () + get_remote_packet_size (); |
e514a9d6 | 10352 | char *p; |
d471ea57 | 10353 | enum Z_packet_type packet = watchpoint_to_Z_packet (type); |
96baa820 | 10354 | |
4082afcc | 10355 | if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE) |
85d721b8 | 10356 | return 1; |
802188a7 | 10357 | |
28439a30 PA |
10358 | /* Make sure the remote is pointing at the right process, if |
10359 | necessary. */ | |
10360 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
10361 | set_general_process (); | |
10362 | ||
8d64371b TT |
10363 | xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet); |
10364 | p = strchr (rs->buf.data (), '\0'); | |
96baa820 JM |
10365 | addr = remote_address_masked (addr); |
10366 | p += hexnumstr (p, (ULONGEST) addr); | |
bba74b36 | 10367 | xsnprintf (p, endbuf - p, ",%x", len); |
802188a7 | 10368 | |
6d820c5c | 10369 | putpkt (rs->buf); |
8d64371b | 10370 | getpkt (&rs->buf, 0); |
96baa820 | 10371 | |
6d820c5c | 10372 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet])) |
d471ea57 AC |
10373 | { |
10374 | case PACKET_ERROR: | |
d471ea57 | 10375 | return -1; |
85d721b8 PA |
10376 | case PACKET_UNKNOWN: |
10377 | return 1; | |
d471ea57 AC |
10378 | case PACKET_OK: |
10379 | return 0; | |
10380 | } | |
8e65ff28 | 10381 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 10382 | _("remote_insert_watchpoint: reached end of function")); |
96baa820 JM |
10383 | } |
10384 | ||
57810aa7 | 10385 | bool |
f6ac5f3d PA |
10386 | remote_target::watchpoint_addr_within_range (CORE_ADDR addr, |
10387 | CORE_ADDR start, int length) | |
283002cf MR |
10388 | { |
10389 | CORE_ADDR diff = remote_address_masked (addr - start); | |
10390 | ||
10391 | return diff < length; | |
10392 | } | |
10393 | ||
d471ea57 | 10394 | |
f6ac5f3d PA |
10395 | int |
10396 | remote_target::remove_watchpoint (CORE_ADDR addr, int len, | |
10397 | enum target_hw_bp_type type, struct expression *cond) | |
96baa820 | 10398 | { |
d01949b6 | 10399 | struct remote_state *rs = get_remote_state (); |
8d64371b | 10400 | char *endbuf = rs->buf.data () + get_remote_packet_size (); |
e514a9d6 | 10401 | char *p; |
d471ea57 AC |
10402 | enum Z_packet_type packet = watchpoint_to_Z_packet (type); |
10403 | ||
4082afcc | 10404 | if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE) |
5cffb350 | 10405 | return -1; |
802188a7 | 10406 | |
28439a30 PA |
10407 | /* Make sure the remote is pointing at the right process, if |
10408 | necessary. */ | |
10409 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
10410 | set_general_process (); | |
10411 | ||
8d64371b TT |
10412 | xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet); |
10413 | p = strchr (rs->buf.data (), '\0'); | |
96baa820 JM |
10414 | addr = remote_address_masked (addr); |
10415 | p += hexnumstr (p, (ULONGEST) addr); | |
bba74b36 | 10416 | xsnprintf (p, endbuf - p, ",%x", len); |
6d820c5c | 10417 | putpkt (rs->buf); |
8d64371b | 10418 | getpkt (&rs->buf, 0); |
96baa820 | 10419 | |
6d820c5c | 10420 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet])) |
d471ea57 AC |
10421 | { |
10422 | case PACKET_ERROR: | |
10423 | case PACKET_UNKNOWN: | |
10424 | return -1; | |
10425 | case PACKET_OK: | |
10426 | return 0; | |
10427 | } | |
8e65ff28 | 10428 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 10429 | _("remote_remove_watchpoint: reached end of function")); |
96baa820 JM |
10430 | } |
10431 | ||
3c3bea1c | 10432 | |
60fcc1c3 TT |
10433 | static int remote_hw_watchpoint_limit = -1; |
10434 | static int remote_hw_watchpoint_length_limit = -1; | |
10435 | static int remote_hw_breakpoint_limit = -1; | |
d471ea57 | 10436 | |
f6ac5f3d PA |
10437 | int |
10438 | remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len) | |
480a3f21 PW |
10439 | { |
10440 | if (remote_hw_watchpoint_length_limit == 0) | |
10441 | return 0; | |
10442 | else if (remote_hw_watchpoint_length_limit < 0) | |
10443 | return 1; | |
10444 | else if (len <= remote_hw_watchpoint_length_limit) | |
10445 | return 1; | |
10446 | else | |
10447 | return 0; | |
10448 | } | |
10449 | ||
f6ac5f3d PA |
10450 | int |
10451 | remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot) | |
96baa820 | 10452 | { |
3c3bea1c GS |
10453 | if (type == bp_hardware_breakpoint) |
10454 | { | |
10455 | if (remote_hw_breakpoint_limit == 0) | |
10456 | return 0; | |
501eef12 AC |
10457 | else if (remote_hw_breakpoint_limit < 0) |
10458 | return 1; | |
3c3bea1c GS |
10459 | else if (cnt <= remote_hw_breakpoint_limit) |
10460 | return 1; | |
10461 | } | |
10462 | else | |
10463 | { | |
10464 | if (remote_hw_watchpoint_limit == 0) | |
10465 | return 0; | |
501eef12 AC |
10466 | else if (remote_hw_watchpoint_limit < 0) |
10467 | return 1; | |
3c3bea1c GS |
10468 | else if (ot) |
10469 | return -1; | |
10470 | else if (cnt <= remote_hw_watchpoint_limit) | |
10471 | return 1; | |
10472 | } | |
10473 | return -1; | |
10474 | } | |
10475 | ||
f7e6eed5 PA |
10476 | /* The to_stopped_by_sw_breakpoint method of target remote. */ |
10477 | ||
57810aa7 | 10478 | bool |
f6ac5f3d | 10479 | remote_target::stopped_by_sw_breakpoint () |
f7e6eed5 | 10480 | { |
799a2abe | 10481 | struct thread_info *thread = inferior_thread (); |
f7e6eed5 | 10482 | |
799a2abe | 10483 | return (thread->priv != NULL |
7aabaf9d SM |
10484 | && (get_remote_thread_info (thread)->stop_reason |
10485 | == TARGET_STOPPED_BY_SW_BREAKPOINT)); | |
f7e6eed5 PA |
10486 | } |
10487 | ||
10488 | /* The to_supports_stopped_by_sw_breakpoint method of target | |
10489 | remote. */ | |
10490 | ||
57810aa7 | 10491 | bool |
f6ac5f3d | 10492 | remote_target::supports_stopped_by_sw_breakpoint () |
f7e6eed5 | 10493 | { |
f7e6eed5 PA |
10494 | return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE); |
10495 | } | |
10496 | ||
10497 | /* The to_stopped_by_hw_breakpoint method of target remote. */ | |
10498 | ||
57810aa7 | 10499 | bool |
f6ac5f3d | 10500 | remote_target::stopped_by_hw_breakpoint () |
f7e6eed5 | 10501 | { |
799a2abe | 10502 | struct thread_info *thread = inferior_thread (); |
f7e6eed5 | 10503 | |
799a2abe | 10504 | return (thread->priv != NULL |
7aabaf9d SM |
10505 | && (get_remote_thread_info (thread)->stop_reason |
10506 | == TARGET_STOPPED_BY_HW_BREAKPOINT)); | |
f7e6eed5 PA |
10507 | } |
10508 | ||
10509 | /* The to_supports_stopped_by_hw_breakpoint method of target | |
10510 | remote. */ | |
10511 | ||
57810aa7 | 10512 | bool |
f6ac5f3d | 10513 | remote_target::supports_stopped_by_hw_breakpoint () |
f7e6eed5 | 10514 | { |
f7e6eed5 PA |
10515 | return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE); |
10516 | } | |
10517 | ||
57810aa7 | 10518 | bool |
f6ac5f3d | 10519 | remote_target::stopped_by_watchpoint () |
3c3bea1c | 10520 | { |
799a2abe | 10521 | struct thread_info *thread = inferior_thread (); |
ee154bee | 10522 | |
799a2abe | 10523 | return (thread->priv != NULL |
7aabaf9d SM |
10524 | && (get_remote_thread_info (thread)->stop_reason |
10525 | == TARGET_STOPPED_BY_WATCHPOINT)); | |
3c3bea1c GS |
10526 | } |
10527 | ||
57810aa7 | 10528 | bool |
f6ac5f3d | 10529 | remote_target::stopped_data_address (CORE_ADDR *addr_p) |
3c3bea1c | 10530 | { |
799a2abe | 10531 | struct thread_info *thread = inferior_thread (); |
a744cf53 | 10532 | |
799a2abe | 10533 | if (thread->priv != NULL |
7aabaf9d SM |
10534 | && (get_remote_thread_info (thread)->stop_reason |
10535 | == TARGET_STOPPED_BY_WATCHPOINT)) | |
4aa7a7f5 | 10536 | { |
7aabaf9d | 10537 | *addr_p = get_remote_thread_info (thread)->watch_data_address; |
57810aa7 | 10538 | return true; |
4aa7a7f5 JJ |
10539 | } |
10540 | ||
57810aa7 | 10541 | return false; |
3c3bea1c GS |
10542 | } |
10543 | ||
10544 | ||
f6ac5f3d PA |
10545 | int |
10546 | remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch, | |
10547 | struct bp_target_info *bp_tgt) | |
3c3bea1c | 10548 | { |
0d5ed153 | 10549 | CORE_ADDR addr = bp_tgt->reqstd_address; |
4fff2411 | 10550 | struct remote_state *rs; |
bba74b36 | 10551 | char *p, *endbuf; |
dd61ec5c | 10552 | char *message; |
3c3bea1c | 10553 | |
4082afcc | 10554 | if (packet_support (PACKET_Z1) == PACKET_DISABLE) |
5cffb350 | 10555 | return -1; |
2bc416ba | 10556 | |
28439a30 PA |
10557 | /* Make sure the remote is pointing at the right process, if |
10558 | necessary. */ | |
10559 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
10560 | set_general_process (); | |
10561 | ||
4fff2411 | 10562 | rs = get_remote_state (); |
8d64371b TT |
10563 | p = rs->buf.data (); |
10564 | endbuf = p + get_remote_packet_size (); | |
4fff2411 | 10565 | |
96baa820 JM |
10566 | *(p++) = 'Z'; |
10567 | *(p++) = '1'; | |
10568 | *(p++) = ','; | |
802188a7 | 10569 | |
0d5ed153 | 10570 | addr = remote_address_masked (addr); |
96baa820 | 10571 | p += hexnumstr (p, (ULONGEST) addr); |
579c6ad9 | 10572 | xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind); |
96baa820 | 10573 | |
f6ac5f3d | 10574 | if (supports_evaluation_of_breakpoint_conditions ()) |
bba74b36 | 10575 | remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf); |
b775012e | 10576 | |
f6ac5f3d | 10577 | if (can_run_breakpoint_commands ()) |
d3ce09f5 SS |
10578 | remote_add_target_side_commands (gdbarch, bp_tgt, p); |
10579 | ||
6d820c5c | 10580 | putpkt (rs->buf); |
8d64371b | 10581 | getpkt (&rs->buf, 0); |
96baa820 | 10582 | |
6d820c5c | 10583 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1])) |
d471ea57 AC |
10584 | { |
10585 | case PACKET_ERROR: | |
dd61ec5c MW |
10586 | if (rs->buf[1] == '.') |
10587 | { | |
8d64371b | 10588 | message = strchr (&rs->buf[2], '.'); |
dd61ec5c | 10589 | if (message) |
0316657e | 10590 | error (_("Remote failure reply: %s"), message + 1); |
dd61ec5c MW |
10591 | } |
10592 | return -1; | |
d471ea57 AC |
10593 | case PACKET_UNKNOWN: |
10594 | return -1; | |
10595 | case PACKET_OK: | |
10596 | return 0; | |
10597 | } | |
8e65ff28 | 10598 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 10599 | _("remote_insert_hw_breakpoint: reached end of function")); |
96baa820 JM |
10600 | } |
10601 | ||
d471ea57 | 10602 | |
f6ac5f3d PA |
10603 | int |
10604 | remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch, | |
10605 | struct bp_target_info *bp_tgt) | |
96baa820 | 10606 | { |
8181d85f | 10607 | CORE_ADDR addr; |
d01949b6 | 10608 | struct remote_state *rs = get_remote_state (); |
8d64371b TT |
10609 | char *p = rs->buf.data (); |
10610 | char *endbuf = p + get_remote_packet_size (); | |
c8189ed1 | 10611 | |
4082afcc | 10612 | if (packet_support (PACKET_Z1) == PACKET_DISABLE) |
5cffb350 | 10613 | return -1; |
802188a7 | 10614 | |
28439a30 PA |
10615 | /* Make sure the remote is pointing at the right process, if |
10616 | necessary. */ | |
10617 | if (!gdbarch_has_global_breakpoints (target_gdbarch ())) | |
10618 | set_general_process (); | |
10619 | ||
96baa820 JM |
10620 | *(p++) = 'z'; |
10621 | *(p++) = '1'; | |
10622 | *(p++) = ','; | |
802188a7 | 10623 | |
8181d85f | 10624 | addr = remote_address_masked (bp_tgt->placed_address); |
96baa820 | 10625 | p += hexnumstr (p, (ULONGEST) addr); |
579c6ad9 | 10626 | xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind); |
96baa820 | 10627 | |
6d820c5c | 10628 | putpkt (rs->buf); |
8d64371b | 10629 | getpkt (&rs->buf, 0); |
802188a7 | 10630 | |
6d820c5c | 10631 | switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1])) |
d471ea57 AC |
10632 | { |
10633 | case PACKET_ERROR: | |
10634 | case PACKET_UNKNOWN: | |
10635 | return -1; | |
10636 | case PACKET_OK: | |
10637 | return 0; | |
10638 | } | |
8e65ff28 | 10639 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 10640 | _("remote_remove_hw_breakpoint: reached end of function")); |
96baa820 | 10641 | } |
96baa820 | 10642 | |
4a5e7a5b PA |
10643 | /* Verify memory using the "qCRC:" request. */ |
10644 | ||
f6ac5f3d PA |
10645 | int |
10646 | remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size) | |
4a5e7a5b PA |
10647 | { |
10648 | struct remote_state *rs = get_remote_state (); | |
10649 | unsigned long host_crc, target_crc; | |
10650 | char *tmp; | |
10651 | ||
936d2992 PA |
10652 | /* It doesn't make sense to use qCRC if the remote target is |
10653 | connected but not running. */ | |
10654 | if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE) | |
10655 | { | |
10656 | enum packet_result result; | |
28439a30 | 10657 | |
936d2992 PA |
10658 | /* Make sure the remote is pointing at the right process. */ |
10659 | set_general_process (); | |
4a5e7a5b | 10660 | |
936d2992 | 10661 | /* FIXME: assumes lma can fit into long. */ |
8d64371b | 10662 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx", |
936d2992 PA |
10663 | (long) lma, (long) size); |
10664 | putpkt (rs->buf); | |
4a5e7a5b | 10665 | |
936d2992 PA |
10666 | /* Be clever; compute the host_crc before waiting for target |
10667 | reply. */ | |
10668 | host_crc = xcrc32 (data, size, 0xffffffff); | |
10669 | ||
8d64371b | 10670 | getpkt (&rs->buf, 0); |
4a5e7a5b | 10671 | |
936d2992 PA |
10672 | result = packet_ok (rs->buf, |
10673 | &remote_protocol_packets[PACKET_qCRC]); | |
10674 | if (result == PACKET_ERROR) | |
10675 | return -1; | |
10676 | else if (result == PACKET_OK) | |
10677 | { | |
10678 | for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++) | |
10679 | target_crc = target_crc * 16 + fromhex (*tmp); | |
4a5e7a5b | 10680 | |
936d2992 PA |
10681 | return (host_crc == target_crc); |
10682 | } | |
10683 | } | |
4a5e7a5b | 10684 | |
f6ac5f3d | 10685 | return simple_verify_memory (this, data, lma, size); |
4a5e7a5b PA |
10686 | } |
10687 | ||
c906108c SS |
10688 | /* compare-sections command |
10689 | ||
10690 | With no arguments, compares each loadable section in the exec bfd | |
10691 | with the same memory range on the target, and reports mismatches. | |
4a5e7a5b | 10692 | Useful for verifying the image on the target against the exec file. */ |
e514a9d6 | 10693 | |
c906108c | 10694 | static void |
ac88e2de | 10695 | compare_sections_command (const char *args, int from_tty) |
c906108c SS |
10696 | { |
10697 | asection *s; | |
ce359b09 | 10698 | const char *sectname; |
c906108c SS |
10699 | bfd_size_type size; |
10700 | bfd_vma lma; | |
10701 | int matched = 0; | |
10702 | int mismatched = 0; | |
4a5e7a5b | 10703 | int res; |
95cf3b38 | 10704 | int read_only = 0; |
c906108c SS |
10705 | |
10706 | if (!exec_bfd) | |
8a3fe4f8 | 10707 | error (_("command cannot be used without an exec file")); |
c906108c | 10708 | |
95cf3b38 DT |
10709 | if (args != NULL && strcmp (args, "-r") == 0) |
10710 | { | |
10711 | read_only = 1; | |
10712 | args = NULL; | |
10713 | } | |
10714 | ||
c5aa993b | 10715 | for (s = exec_bfd->sections; s; s = s->next) |
c906108c SS |
10716 | { |
10717 | if (!(s->flags & SEC_LOAD)) | |
0df8b418 | 10718 | continue; /* Skip non-loadable section. */ |
c906108c | 10719 | |
95cf3b38 DT |
10720 | if (read_only && (s->flags & SEC_READONLY) == 0) |
10721 | continue; /* Skip writeable sections */ | |
10722 | ||
fd361982 | 10723 | size = bfd_section_size (s); |
c906108c | 10724 | if (size == 0) |
0df8b418 | 10725 | continue; /* Skip zero-length section. */ |
c906108c | 10726 | |
fd361982 | 10727 | sectname = bfd_section_name (s); |
c906108c | 10728 | if (args && strcmp (args, sectname) != 0) |
0df8b418 | 10729 | continue; /* Not the section selected by user. */ |
c906108c | 10730 | |
0df8b418 | 10731 | matched = 1; /* Do this section. */ |
c906108c | 10732 | lma = s->lma; |
c906108c | 10733 | |
b80406ac TT |
10734 | gdb::byte_vector sectdata (size); |
10735 | bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size); | |
c906108c | 10736 | |
b80406ac | 10737 | res = target_verify_memory (sectdata.data (), lma, size); |
4a5e7a5b PA |
10738 | |
10739 | if (res == -1) | |
5af949e3 | 10740 | error (_("target memory fault, section %s, range %s -- %s"), sectname, |
f5656ead TT |
10741 | paddress (target_gdbarch (), lma), |
10742 | paddress (target_gdbarch (), lma + size)); | |
c906108c | 10743 | |
5af949e3 | 10744 | printf_filtered ("Section %s, range %s -- %s: ", sectname, |
f5656ead TT |
10745 | paddress (target_gdbarch (), lma), |
10746 | paddress (target_gdbarch (), lma + size)); | |
4a5e7a5b | 10747 | if (res) |
c906108c SS |
10748 | printf_filtered ("matched.\n"); |
10749 | else | |
c5aa993b JM |
10750 | { |
10751 | printf_filtered ("MIS-MATCHED!\n"); | |
10752 | mismatched++; | |
10753 | } | |
c906108c SS |
10754 | } |
10755 | if (mismatched > 0) | |
936d2992 | 10756 | warning (_("One or more sections of the target image does not match\n\ |
8a3fe4f8 | 10757 | the loaded file\n")); |
c906108c | 10758 | if (args && !matched) |
a3f17187 | 10759 | printf_filtered (_("No loaded section named '%s'.\n"), args); |
c906108c SS |
10760 | } |
10761 | ||
0e7f50da UW |
10762 | /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET |
10763 | into remote target. The number of bytes written to the remote | |
10764 | target is returned, or -1 for error. */ | |
10765 | ||
6b8edb51 PA |
10766 | target_xfer_status |
10767 | remote_target::remote_write_qxfer (const char *object_name, | |
10768 | const char *annex, const gdb_byte *writebuf, | |
10769 | ULONGEST offset, LONGEST len, | |
10770 | ULONGEST *xfered_len, | |
10771 | struct packet_config *packet) | |
0e7f50da UW |
10772 | { |
10773 | int i, buf_len; | |
10774 | ULONGEST n; | |
0e7f50da UW |
10775 | struct remote_state *rs = get_remote_state (); |
10776 | int max_size = get_memory_write_packet_size (); | |
10777 | ||
7cc244de | 10778 | if (packet_config_support (packet) == PACKET_DISABLE) |
2ed4b548 | 10779 | return TARGET_XFER_E_IO; |
0e7f50da UW |
10780 | |
10781 | /* Insert header. */ | |
8d64371b | 10782 | i = snprintf (rs->buf.data (), max_size, |
0e7f50da UW |
10783 | "qXfer:%s:write:%s:%s:", |
10784 | object_name, annex ? annex : "", | |
10785 | phex_nz (offset, sizeof offset)); | |
10786 | max_size -= (i + 1); | |
10787 | ||
10788 | /* Escape as much data as fits into rs->buf. */ | |
10789 | buf_len = remote_escape_output | |
8d64371b | 10790 | (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size); |
0e7f50da | 10791 | |
8d64371b TT |
10792 | if (putpkt_binary (rs->buf.data (), i + buf_len) < 0 |
10793 | || getpkt_sane (&rs->buf, 0) < 0 | |
0e7f50da | 10794 | || packet_ok (rs->buf, packet) != PACKET_OK) |
2ed4b548 | 10795 | return TARGET_XFER_E_IO; |
0e7f50da | 10796 | |
8d64371b | 10797 | unpack_varlen_hex (rs->buf.data (), &n); |
9b409511 YQ |
10798 | |
10799 | *xfered_len = n; | |
92ffd475 | 10800 | return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF; |
0e7f50da UW |
10801 | } |
10802 | ||
0876f84a DJ |
10803 | /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet. |
10804 | Data at OFFSET, of up to LEN bytes, is read into READBUF; the | |
10805 | number of bytes read is returned, or 0 for EOF, or -1 for error. | |
10806 | The number of bytes read may be less than LEN without indicating an | |
10807 | EOF. PACKET is checked and updated to indicate whether the remote | |
10808 | target supports this object. */ | |
10809 | ||
6b8edb51 PA |
10810 | target_xfer_status |
10811 | remote_target::remote_read_qxfer (const char *object_name, | |
10812 | const char *annex, | |
10813 | gdb_byte *readbuf, ULONGEST offset, | |
10814 | LONGEST len, | |
10815 | ULONGEST *xfered_len, | |
10816 | struct packet_config *packet) | |
0876f84a | 10817 | { |
0876f84a | 10818 | struct remote_state *rs = get_remote_state (); |
0876f84a DJ |
10819 | LONGEST i, n, packet_len; |
10820 | ||
7cc244de | 10821 | if (packet_config_support (packet) == PACKET_DISABLE) |
2ed4b548 | 10822 | return TARGET_XFER_E_IO; |
0876f84a DJ |
10823 | |
10824 | /* Check whether we've cached an end-of-object packet that matches | |
10825 | this request. */ | |
8e88304f | 10826 | if (rs->finished_object) |
0876f84a | 10827 | { |
8e88304f TT |
10828 | if (strcmp (object_name, rs->finished_object) == 0 |
10829 | && strcmp (annex ? annex : "", rs->finished_annex) == 0 | |
10830 | && offset == rs->finished_offset) | |
9b409511 YQ |
10831 | return TARGET_XFER_EOF; |
10832 | ||
0876f84a DJ |
10833 | |
10834 | /* Otherwise, we're now reading something different. Discard | |
10835 | the cache. */ | |
8e88304f TT |
10836 | xfree (rs->finished_object); |
10837 | xfree (rs->finished_annex); | |
10838 | rs->finished_object = NULL; | |
10839 | rs->finished_annex = NULL; | |
0876f84a DJ |
10840 | } |
10841 | ||
10842 | /* Request only enough to fit in a single packet. The actual data | |
10843 | may not, since we don't know how much of it will need to be escaped; | |
10844 | the target is free to respond with slightly less data. We subtract | |
10845 | five to account for the response type and the protocol frame. */ | |
768adc05 | 10846 | n = std::min<LONGEST> (get_remote_packet_size () - 5, len); |
8d64371b TT |
10847 | snprintf (rs->buf.data (), get_remote_packet_size () - 4, |
10848 | "qXfer:%s:read:%s:%s,%s", | |
0876f84a DJ |
10849 | object_name, annex ? annex : "", |
10850 | phex_nz (offset, sizeof offset), | |
10851 | phex_nz (n, sizeof n)); | |
10852 | i = putpkt (rs->buf); | |
10853 | if (i < 0) | |
2ed4b548 | 10854 | return TARGET_XFER_E_IO; |
0876f84a DJ |
10855 | |
10856 | rs->buf[0] = '\0'; | |
8d64371b | 10857 | packet_len = getpkt_sane (&rs->buf, 0); |
0876f84a | 10858 | if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK) |
2ed4b548 | 10859 | return TARGET_XFER_E_IO; |
0876f84a DJ |
10860 | |
10861 | if (rs->buf[0] != 'l' && rs->buf[0] != 'm') | |
8d64371b | 10862 | error (_("Unknown remote qXfer reply: %s"), rs->buf.data ()); |
0876f84a DJ |
10863 | |
10864 | /* 'm' means there is (or at least might be) more data after this | |
10865 | batch. That does not make sense unless there's at least one byte | |
10866 | of data in this reply. */ | |
10867 | if (rs->buf[0] == 'm' && packet_len == 1) | |
10868 | error (_("Remote qXfer reply contained no data.")); | |
10869 | ||
10870 | /* Got some data. */ | |
8d64371b | 10871 | i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1, |
bc20a4af | 10872 | packet_len - 1, readbuf, n); |
0876f84a DJ |
10873 | |
10874 | /* 'l' is an EOF marker, possibly including a final block of data, | |
0e7f50da UW |
10875 | or possibly empty. If we have the final block of a non-empty |
10876 | object, record this fact to bypass a subsequent partial read. */ | |
10877 | if (rs->buf[0] == 'l' && offset + i > 0) | |
0876f84a | 10878 | { |
8e88304f TT |
10879 | rs->finished_object = xstrdup (object_name); |
10880 | rs->finished_annex = xstrdup (annex ? annex : ""); | |
10881 | rs->finished_offset = offset + i; | |
0876f84a DJ |
10882 | } |
10883 | ||
9b409511 YQ |
10884 | if (i == 0) |
10885 | return TARGET_XFER_EOF; | |
10886 | else | |
10887 | { | |
10888 | *xfered_len = i; | |
10889 | return TARGET_XFER_OK; | |
10890 | } | |
0876f84a DJ |
10891 | } |
10892 | ||
f6ac5f3d PA |
10893 | enum target_xfer_status |
10894 | remote_target::xfer_partial (enum target_object object, | |
10895 | const char *annex, gdb_byte *readbuf, | |
10896 | const gdb_byte *writebuf, ULONGEST offset, ULONGEST len, | |
10897 | ULONGEST *xfered_len) | |
c906108c | 10898 | { |
82f73884 | 10899 | struct remote_state *rs; |
c906108c | 10900 | int i; |
6d820c5c | 10901 | char *p2; |
1e3ff5ad | 10902 | char query_type; |
124e13d9 | 10903 | int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ()); |
c906108c | 10904 | |
e6e4e701 | 10905 | set_remote_traceframe (); |
82f73884 PA |
10906 | set_general_thread (inferior_ptid); |
10907 | ||
10908 | rs = get_remote_state (); | |
10909 | ||
b2182ed2 | 10910 | /* Handle memory using the standard memory routines. */ |
21e3b9b9 DJ |
10911 | if (object == TARGET_OBJECT_MEMORY) |
10912 | { | |
2d717e4f DJ |
10913 | /* If the remote target is connected but not running, we should |
10914 | pass this request down to a lower stratum (e.g. the executable | |
10915 | file). */ | |
10916 | if (!target_has_execution) | |
9b409511 | 10917 | return TARGET_XFER_EOF; |
2d717e4f | 10918 | |
21e3b9b9 | 10919 | if (writebuf != NULL) |
124e13d9 SM |
10920 | return remote_write_bytes (offset, writebuf, len, unit_size, |
10921 | xfered_len); | |
21e3b9b9 | 10922 | else |
6b8edb51 | 10923 | return remote_read_bytes (offset, readbuf, len, unit_size, |
124e13d9 | 10924 | xfered_len); |
21e3b9b9 DJ |
10925 | } |
10926 | ||
4aa995e1 PA |
10927 | /* Handle extra signal info using qxfer packets. */ |
10928 | if (object == TARGET_OBJECT_SIGNAL_INFO) | |
10929 | { | |
10930 | if (readbuf) | |
f6ac5f3d | 10931 | return remote_read_qxfer ("siginfo", annex, readbuf, offset, len, |
9b409511 | 10932 | xfered_len, &remote_protocol_packets |
4aa995e1 PA |
10933 | [PACKET_qXfer_siginfo_read]); |
10934 | else | |
f6ac5f3d | 10935 | return remote_write_qxfer ("siginfo", annex, |
9b409511 | 10936 | writebuf, offset, len, xfered_len, |
4aa995e1 PA |
10937 | &remote_protocol_packets |
10938 | [PACKET_qXfer_siginfo_write]); | |
10939 | } | |
10940 | ||
0fb4aa4b PA |
10941 | if (object == TARGET_OBJECT_STATIC_TRACE_DATA) |
10942 | { | |
10943 | if (readbuf) | |
f6ac5f3d | 10944 | return remote_read_qxfer ("statictrace", annex, |
9b409511 | 10945 | readbuf, offset, len, xfered_len, |
0fb4aa4b PA |
10946 | &remote_protocol_packets |
10947 | [PACKET_qXfer_statictrace_read]); | |
10948 | else | |
2ed4b548 | 10949 | return TARGET_XFER_E_IO; |
0fb4aa4b PA |
10950 | } |
10951 | ||
a76d924d DJ |
10952 | /* Only handle flash writes. */ |
10953 | if (writebuf != NULL) | |
10954 | { | |
a76d924d DJ |
10955 | switch (object) |
10956 | { | |
10957 | case TARGET_OBJECT_FLASH: | |
6b8edb51 | 10958 | return remote_flash_write (offset, len, xfered_len, |
9b409511 | 10959 | writebuf); |
a76d924d DJ |
10960 | |
10961 | default: | |
2ed4b548 | 10962 | return TARGET_XFER_E_IO; |
a76d924d DJ |
10963 | } |
10964 | } | |
4b8a223f | 10965 | |
1e3ff5ad AC |
10966 | /* Map pre-existing objects onto letters. DO NOT do this for new |
10967 | objects!!! Instead specify new query packets. */ | |
10968 | switch (object) | |
c906108c | 10969 | { |
1e3ff5ad AC |
10970 | case TARGET_OBJECT_AVR: |
10971 | query_type = 'R'; | |
10972 | break; | |
802188a7 RM |
10973 | |
10974 | case TARGET_OBJECT_AUXV: | |
0876f84a | 10975 | gdb_assert (annex == NULL); |
f6ac5f3d | 10976 | return remote_read_qxfer ("auxv", annex, readbuf, offset, len, |
9b409511 | 10977 | xfered_len, |
0876f84a | 10978 | &remote_protocol_packets[PACKET_qXfer_auxv]); |
802188a7 | 10979 | |
23181151 DJ |
10980 | case TARGET_OBJECT_AVAILABLE_FEATURES: |
10981 | return remote_read_qxfer | |
f6ac5f3d | 10982 | ("features", annex, readbuf, offset, len, xfered_len, |
23181151 DJ |
10983 | &remote_protocol_packets[PACKET_qXfer_features]); |
10984 | ||
cfa9d6d9 DJ |
10985 | case TARGET_OBJECT_LIBRARIES: |
10986 | return remote_read_qxfer | |
f6ac5f3d | 10987 | ("libraries", annex, readbuf, offset, len, xfered_len, |
cfa9d6d9 DJ |
10988 | &remote_protocol_packets[PACKET_qXfer_libraries]); |
10989 | ||
2268b414 JK |
10990 | case TARGET_OBJECT_LIBRARIES_SVR4: |
10991 | return remote_read_qxfer | |
f6ac5f3d | 10992 | ("libraries-svr4", annex, readbuf, offset, len, xfered_len, |
2268b414 JK |
10993 | &remote_protocol_packets[PACKET_qXfer_libraries_svr4]); |
10994 | ||
fd79ecee DJ |
10995 | case TARGET_OBJECT_MEMORY_MAP: |
10996 | gdb_assert (annex == NULL); | |
f6ac5f3d | 10997 | return remote_read_qxfer ("memory-map", annex, readbuf, offset, len, |
9b409511 | 10998 | xfered_len, |
fd79ecee DJ |
10999 | &remote_protocol_packets[PACKET_qXfer_memory_map]); |
11000 | ||
07e059b5 VP |
11001 | case TARGET_OBJECT_OSDATA: |
11002 | /* Should only get here if we're connected. */ | |
5d93a237 | 11003 | gdb_assert (rs->remote_desc); |
07e059b5 | 11004 | return remote_read_qxfer |
f6ac5f3d | 11005 | ("osdata", annex, readbuf, offset, len, xfered_len, |
07e059b5 VP |
11006 | &remote_protocol_packets[PACKET_qXfer_osdata]); |
11007 | ||
dc146f7c VP |
11008 | case TARGET_OBJECT_THREADS: |
11009 | gdb_assert (annex == NULL); | |
f6ac5f3d | 11010 | return remote_read_qxfer ("threads", annex, readbuf, offset, len, |
9b409511 | 11011 | xfered_len, |
dc146f7c VP |
11012 | &remote_protocol_packets[PACKET_qXfer_threads]); |
11013 | ||
b3b9301e PA |
11014 | case TARGET_OBJECT_TRACEFRAME_INFO: |
11015 | gdb_assert (annex == NULL); | |
11016 | return remote_read_qxfer | |
f6ac5f3d | 11017 | ("traceframe-info", annex, readbuf, offset, len, xfered_len, |
b3b9301e | 11018 | &remote_protocol_packets[PACKET_qXfer_traceframe_info]); |
78d85199 YQ |
11019 | |
11020 | case TARGET_OBJECT_FDPIC: | |
f6ac5f3d | 11021 | return remote_read_qxfer ("fdpic", annex, readbuf, offset, len, |
9b409511 | 11022 | xfered_len, |
78d85199 | 11023 | &remote_protocol_packets[PACKET_qXfer_fdpic]); |
169081d0 TG |
11024 | |
11025 | case TARGET_OBJECT_OPENVMS_UIB: | |
f6ac5f3d | 11026 | return remote_read_qxfer ("uib", annex, readbuf, offset, len, |
9b409511 | 11027 | xfered_len, |
169081d0 TG |
11028 | &remote_protocol_packets[PACKET_qXfer_uib]); |
11029 | ||
9accd112 | 11030 | case TARGET_OBJECT_BTRACE: |
f6ac5f3d | 11031 | return remote_read_qxfer ("btrace", annex, readbuf, offset, len, |
9b409511 | 11032 | xfered_len, |
9accd112 MM |
11033 | &remote_protocol_packets[PACKET_qXfer_btrace]); |
11034 | ||
f4abbc16 | 11035 | case TARGET_OBJECT_BTRACE_CONF: |
f6ac5f3d | 11036 | return remote_read_qxfer ("btrace-conf", annex, readbuf, offset, |
f4abbc16 MM |
11037 | len, xfered_len, |
11038 | &remote_protocol_packets[PACKET_qXfer_btrace_conf]); | |
11039 | ||
c78fa86a | 11040 | case TARGET_OBJECT_EXEC_FILE: |
f6ac5f3d | 11041 | return remote_read_qxfer ("exec-file", annex, readbuf, offset, |
c78fa86a GB |
11042 | len, xfered_len, |
11043 | &remote_protocol_packets[PACKET_qXfer_exec_file]); | |
11044 | ||
1e3ff5ad | 11045 | default: |
2ed4b548 | 11046 | return TARGET_XFER_E_IO; |
c906108c SS |
11047 | } |
11048 | ||
0df8b418 | 11049 | /* Minimum outbuf size is get_remote_packet_size (). If LEN is not |
24b06219 | 11050 | large enough let the caller deal with it. */ |
ea9c271d | 11051 | if (len < get_remote_packet_size ()) |
2ed4b548 | 11052 | return TARGET_XFER_E_IO; |
ea9c271d | 11053 | len = get_remote_packet_size (); |
1e3ff5ad | 11054 | |
23860348 | 11055 | /* Except for querying the minimum buffer size, target must be open. */ |
5d93a237 | 11056 | if (!rs->remote_desc) |
8a3fe4f8 | 11057 | error (_("remote query is only available after target open")); |
c906108c | 11058 | |
1e3ff5ad | 11059 | gdb_assert (annex != NULL); |
4b8a223f | 11060 | gdb_assert (readbuf != NULL); |
c906108c | 11061 | |
8d64371b | 11062 | p2 = rs->buf.data (); |
c906108c SS |
11063 | *p2++ = 'q'; |
11064 | *p2++ = query_type; | |
11065 | ||
23860348 MS |
11066 | /* We used one buffer char for the remote protocol q command and |
11067 | another for the query type. As the remote protocol encapsulation | |
11068 | uses 4 chars plus one extra in case we are debugging | |
11069 | (remote_debug), we have PBUFZIZ - 7 left to pack the query | |
11070 | string. */ | |
c906108c | 11071 | i = 0; |
ea9c271d | 11072 | while (annex[i] && (i < (get_remote_packet_size () - 8))) |
c906108c | 11073 | { |
1e3ff5ad AC |
11074 | /* Bad caller may have sent forbidden characters. */ |
11075 | gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#'); | |
11076 | *p2++ = annex[i]; | |
c906108c SS |
11077 | i++; |
11078 | } | |
1e3ff5ad AC |
11079 | *p2 = '\0'; |
11080 | gdb_assert (annex[i] == '\0'); | |
c906108c | 11081 | |
6d820c5c | 11082 | i = putpkt (rs->buf); |
c5aa993b | 11083 | if (i < 0) |
2ed4b548 | 11084 | return TARGET_XFER_E_IO; |
c906108c | 11085 | |
8d64371b TT |
11086 | getpkt (&rs->buf, 0); |
11087 | strcpy ((char *) readbuf, rs->buf.data ()); | |
c906108c | 11088 | |
9b409511 | 11089 | *xfered_len = strlen ((char *) readbuf); |
92ffd475 | 11090 | return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF; |
c906108c SS |
11091 | } |
11092 | ||
09c98b44 DB |
11093 | /* Implementation of to_get_memory_xfer_limit. */ |
11094 | ||
f6ac5f3d PA |
11095 | ULONGEST |
11096 | remote_target::get_memory_xfer_limit () | |
09c98b44 DB |
11097 | { |
11098 | return get_memory_write_packet_size (); | |
11099 | } | |
11100 | ||
f6ac5f3d PA |
11101 | int |
11102 | remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len, | |
11103 | const gdb_byte *pattern, ULONGEST pattern_len, | |
11104 | CORE_ADDR *found_addrp) | |
08388c79 | 11105 | { |
f5656ead | 11106 | int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8; |
08388c79 DE |
11107 | struct remote_state *rs = get_remote_state (); |
11108 | int max_size = get_memory_write_packet_size (); | |
11109 | struct packet_config *packet = | |
11110 | &remote_protocol_packets[PACKET_qSearch_memory]; | |
0df8b418 MS |
11111 | /* Number of packet bytes used to encode the pattern; |
11112 | this could be more than PATTERN_LEN due to escape characters. */ | |
08388c79 | 11113 | int escaped_pattern_len; |
0df8b418 | 11114 | /* Amount of pattern that was encodable in the packet. */ |
08388c79 DE |
11115 | int used_pattern_len; |
11116 | int i; | |
11117 | int found; | |
11118 | ULONGEST found_addr; | |
11119 | ||
7cc244de PA |
11120 | /* Don't go to the target if we don't have to. This is done before |
11121 | checking packet_config_support to avoid the possibility that a | |
11122 | success for this edge case means the facility works in | |
11123 | general. */ | |
08388c79 DE |
11124 | if (pattern_len > search_space_len) |
11125 | return 0; | |
11126 | if (pattern_len == 0) | |
11127 | { | |
11128 | *found_addrp = start_addr; | |
11129 | return 1; | |
11130 | } | |
11131 | ||
11132 | /* If we already know the packet isn't supported, fall back to the simple | |
11133 | way of searching memory. */ | |
11134 | ||
4082afcc | 11135 | if (packet_config_support (packet) == PACKET_DISABLE) |
08388c79 DE |
11136 | { |
11137 | /* Target doesn't provided special support, fall back and use the | |
11138 | standard support (copy memory and do the search here). */ | |
f6ac5f3d | 11139 | return simple_search_memory (this, start_addr, search_space_len, |
08388c79 DE |
11140 | pattern, pattern_len, found_addrp); |
11141 | } | |
11142 | ||
28439a30 PA |
11143 | /* Make sure the remote is pointing at the right process. */ |
11144 | set_general_process (); | |
11145 | ||
08388c79 | 11146 | /* Insert header. */ |
8d64371b | 11147 | i = snprintf (rs->buf.data (), max_size, |
08388c79 | 11148 | "qSearch:memory:%s;%s;", |
5af949e3 | 11149 | phex_nz (start_addr, addr_size), |
08388c79 DE |
11150 | phex_nz (search_space_len, sizeof (search_space_len))); |
11151 | max_size -= (i + 1); | |
11152 | ||
11153 | /* Escape as much data as fits into rs->buf. */ | |
11154 | escaped_pattern_len = | |
8d64371b TT |
11155 | remote_escape_output (pattern, pattern_len, 1, |
11156 | (gdb_byte *) rs->buf.data () + i, | |
08388c79 DE |
11157 | &used_pattern_len, max_size); |
11158 | ||
11159 | /* Bail if the pattern is too large. */ | |
11160 | if (used_pattern_len != pattern_len) | |
9b20d036 | 11161 | error (_("Pattern is too large to transmit to remote target.")); |
08388c79 | 11162 | |
8d64371b TT |
11163 | if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0 |
11164 | || getpkt_sane (&rs->buf, 0) < 0 | |
08388c79 DE |
11165 | || packet_ok (rs->buf, packet) != PACKET_OK) |
11166 | { | |
11167 | /* The request may not have worked because the command is not | |
11168 | supported. If so, fall back to the simple way. */ | |
7cc244de | 11169 | if (packet_config_support (packet) == PACKET_DISABLE) |
08388c79 | 11170 | { |
f6ac5f3d | 11171 | return simple_search_memory (this, start_addr, search_space_len, |
08388c79 DE |
11172 | pattern, pattern_len, found_addrp); |
11173 | } | |
11174 | return -1; | |
11175 | } | |
11176 | ||
11177 | if (rs->buf[0] == '0') | |
11178 | found = 0; | |
11179 | else if (rs->buf[0] == '1') | |
11180 | { | |
11181 | found = 1; | |
11182 | if (rs->buf[1] != ',') | |
8d64371b TT |
11183 | error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ()); |
11184 | unpack_varlen_hex (&rs->buf[2], &found_addr); | |
08388c79 DE |
11185 | *found_addrp = found_addr; |
11186 | } | |
11187 | else | |
8d64371b | 11188 | error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ()); |
08388c79 DE |
11189 | |
11190 | return found; | |
11191 | } | |
11192 | ||
f6ac5f3d PA |
11193 | void |
11194 | remote_target::rcmd (const char *command, struct ui_file *outbuf) | |
96baa820 | 11195 | { |
d01949b6 | 11196 | struct remote_state *rs = get_remote_state (); |
8d64371b | 11197 | char *p = rs->buf.data (); |
96baa820 | 11198 | |
5d93a237 | 11199 | if (!rs->remote_desc) |
8a3fe4f8 | 11200 | error (_("remote rcmd is only available after target open")); |
96baa820 | 11201 | |
23860348 | 11202 | /* Send a NULL command across as an empty command. */ |
7be570e7 JM |
11203 | if (command == NULL) |
11204 | command = ""; | |
11205 | ||
23860348 | 11206 | /* The query prefix. */ |
8d64371b TT |
11207 | strcpy (rs->buf.data (), "qRcmd,"); |
11208 | p = strchr (rs->buf.data (), '\0'); | |
96baa820 | 11209 | |
8d64371b | 11210 | if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/) |
3e43a32a | 11211 | > get_remote_packet_size ()) |
8a3fe4f8 | 11212 | error (_("\"monitor\" command ``%s'' is too long."), command); |
96baa820 | 11213 | |
23860348 | 11214 | /* Encode the actual command. */ |
a30bf1f1 | 11215 | bin2hex ((const gdb_byte *) command, p, strlen (command)); |
96baa820 | 11216 | |
6d820c5c | 11217 | if (putpkt (rs->buf) < 0) |
8a3fe4f8 | 11218 | error (_("Communication problem with target.")); |
96baa820 JM |
11219 | |
11220 | /* get/display the response */ | |
11221 | while (1) | |
11222 | { | |
2e9f7625 DJ |
11223 | char *buf; |
11224 | ||
00bf0b85 | 11225 | /* XXX - see also remote_get_noisy_reply(). */ |
5b37825d | 11226 | QUIT; /* Allow user to bail out with ^C. */ |
2e9f7625 | 11227 | rs->buf[0] = '\0'; |
8d64371b | 11228 | if (getpkt_sane (&rs->buf, 0) == -1) |
5b37825d PW |
11229 | { |
11230 | /* Timeout. Continue to (try to) read responses. | |
11231 | This is better than stopping with an error, assuming the stub | |
11232 | is still executing the (long) monitor command. | |
11233 | If needed, the user can interrupt gdb using C-c, obtaining | |
11234 | an effect similar to stop on timeout. */ | |
11235 | continue; | |
11236 | } | |
8d64371b | 11237 | buf = rs->buf.data (); |
96baa820 | 11238 | if (buf[0] == '\0') |
8a3fe4f8 | 11239 | error (_("Target does not support this command.")); |
96baa820 JM |
11240 | if (buf[0] == 'O' && buf[1] != 'K') |
11241 | { | |
23860348 | 11242 | remote_console_output (buf + 1); /* 'O' message from stub. */ |
96baa820 JM |
11243 | continue; |
11244 | } | |
11245 | if (strcmp (buf, "OK") == 0) | |
11246 | break; | |
7be570e7 JM |
11247 | if (strlen (buf) == 3 && buf[0] == 'E' |
11248 | && isdigit (buf[1]) && isdigit (buf[2])) | |
11249 | { | |
8a3fe4f8 | 11250 | error (_("Protocol error with Rcmd")); |
7be570e7 | 11251 | } |
96baa820 JM |
11252 | for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2) |
11253 | { | |
11254 | char c = (fromhex (p[0]) << 4) + fromhex (p[1]); | |
a744cf53 | 11255 | |
96baa820 JM |
11256 | fputc_unfiltered (c, outbuf); |
11257 | } | |
11258 | break; | |
11259 | } | |
11260 | } | |
11261 | ||
f6ac5f3d PA |
11262 | std::vector<mem_region> |
11263 | remote_target::memory_map () | |
fd79ecee | 11264 | { |
a664f67e | 11265 | std::vector<mem_region> result; |
9018be22 | 11266 | gdb::optional<gdb::char_vector> text |
8b88a78e | 11267 | = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL); |
fd79ecee DJ |
11268 | |
11269 | if (text) | |
9018be22 | 11270 | result = parse_memory_map (text->data ()); |
fd79ecee DJ |
11271 | |
11272 | return result; | |
11273 | } | |
11274 | ||
c906108c | 11275 | static void |
ac88e2de | 11276 | packet_command (const char *args, int from_tty) |
c906108c | 11277 | { |
6b8edb51 | 11278 | remote_target *remote = get_current_remote_target (); |
c906108c | 11279 | |
6b8edb51 | 11280 | if (remote == nullptr) |
8a3fe4f8 | 11281 | error (_("command can only be used with remote target")); |
c906108c | 11282 | |
6b8edb51 PA |
11283 | remote->packet_command (args, from_tty); |
11284 | } | |
11285 | ||
11286 | void | |
11287 | remote_target::packet_command (const char *args, int from_tty) | |
11288 | { | |
c5aa993b | 11289 | if (!args) |
8a3fe4f8 | 11290 | error (_("remote-packet command requires packet text as argument")); |
c906108c SS |
11291 | |
11292 | puts_filtered ("sending: "); | |
11293 | print_packet (args); | |
11294 | puts_filtered ("\n"); | |
11295 | putpkt (args); | |
11296 | ||
6b8edb51 PA |
11297 | remote_state *rs = get_remote_state (); |
11298 | ||
8d64371b | 11299 | getpkt (&rs->buf, 0); |
c906108c | 11300 | puts_filtered ("received: "); |
8d64371b | 11301 | print_packet (rs->buf.data ()); |
c906108c SS |
11302 | puts_filtered ("\n"); |
11303 | } | |
11304 | ||
11305 | #if 0 | |
23860348 | 11306 | /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */ |
c906108c | 11307 | |
a14ed312 | 11308 | static void display_thread_info (struct gdb_ext_thread_info *info); |
c906108c | 11309 | |
a14ed312 | 11310 | static void threadset_test_cmd (char *cmd, int tty); |
c906108c | 11311 | |
a14ed312 | 11312 | static void threadalive_test (char *cmd, int tty); |
c906108c | 11313 | |
a14ed312 | 11314 | static void threadlist_test_cmd (char *cmd, int tty); |
c906108c | 11315 | |
23860348 | 11316 | int get_and_display_threadinfo (threadref *ref); |
c906108c | 11317 | |
a14ed312 | 11318 | static void threadinfo_test_cmd (char *cmd, int tty); |
c906108c | 11319 | |
23860348 | 11320 | static int thread_display_step (threadref *ref, void *context); |
c906108c | 11321 | |
a14ed312 | 11322 | static void threadlist_update_test_cmd (char *cmd, int tty); |
c906108c | 11323 | |
a14ed312 | 11324 | static void init_remote_threadtests (void); |
c906108c | 11325 | |
23860348 | 11326 | #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */ |
c906108c SS |
11327 | |
11328 | static void | |
0b39b52e | 11329 | threadset_test_cmd (const char *cmd, int tty) |
c906108c SS |
11330 | { |
11331 | int sample_thread = SAMPLE_THREAD; | |
11332 | ||
a3f17187 | 11333 | printf_filtered (_("Remote threadset test\n")); |
79d7f229 | 11334 | set_general_thread (sample_thread); |
c906108c SS |
11335 | } |
11336 | ||
11337 | ||
11338 | static void | |
0b39b52e | 11339 | threadalive_test (const char *cmd, int tty) |
c906108c SS |
11340 | { |
11341 | int sample_thread = SAMPLE_THREAD; | |
e99b03dc | 11342 | int pid = inferior_ptid.pid (); |
fd79271b | 11343 | ptid_t ptid = ptid_t (pid, sample_thread, 0); |
c906108c | 11344 | |
79d7f229 | 11345 | if (remote_thread_alive (ptid)) |
c906108c SS |
11346 | printf_filtered ("PASS: Thread alive test\n"); |
11347 | else | |
11348 | printf_filtered ("FAIL: Thread alive test\n"); | |
11349 | } | |
11350 | ||
23860348 | 11351 | void output_threadid (char *title, threadref *ref); |
c906108c SS |
11352 | |
11353 | void | |
fba45db2 | 11354 | output_threadid (char *title, threadref *ref) |
c906108c SS |
11355 | { |
11356 | char hexid[20]; | |
11357 | ||
405feb71 | 11358 | pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */ |
c906108c SS |
11359 | hexid[16] = 0; |
11360 | printf_filtered ("%s %s\n", title, (&hexid[0])); | |
11361 | } | |
11362 | ||
11363 | static void | |
0b39b52e | 11364 | threadlist_test_cmd (const char *cmd, int tty) |
c906108c SS |
11365 | { |
11366 | int startflag = 1; | |
11367 | threadref nextthread; | |
11368 | int done, result_count; | |
11369 | threadref threadlist[3]; | |
11370 | ||
11371 | printf_filtered ("Remote Threadlist test\n"); | |
11372 | if (!remote_get_threadlist (startflag, &nextthread, 3, &done, | |
11373 | &result_count, &threadlist[0])) | |
11374 | printf_filtered ("FAIL: threadlist test\n"); | |
11375 | else | |
11376 | { | |
11377 | threadref *scan = threadlist; | |
11378 | threadref *limit = scan + result_count; | |
11379 | ||
11380 | while (scan < limit) | |
11381 | output_threadid (" thread ", scan++); | |
11382 | } | |
11383 | } | |
11384 | ||
11385 | void | |
fba45db2 | 11386 | display_thread_info (struct gdb_ext_thread_info *info) |
c906108c SS |
11387 | { |
11388 | output_threadid ("Threadid: ", &info->threadid); | |
11389 | printf_filtered ("Name: %s\n ", info->shortname); | |
11390 | printf_filtered ("State: %s\n", info->display); | |
11391 | printf_filtered ("other: %s\n\n", info->more_display); | |
11392 | } | |
11393 | ||
11394 | int | |
fba45db2 | 11395 | get_and_display_threadinfo (threadref *ref) |
c906108c SS |
11396 | { |
11397 | int result; | |
11398 | int set; | |
11399 | struct gdb_ext_thread_info threadinfo; | |
11400 | ||
11401 | set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME | |
11402 | | TAG_MOREDISPLAY | TAG_DISPLAY; | |
11403 | if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo))) | |
11404 | display_thread_info (&threadinfo); | |
11405 | return result; | |
11406 | } | |
11407 | ||
11408 | static void | |
0b39b52e | 11409 | threadinfo_test_cmd (const char *cmd, int tty) |
c906108c SS |
11410 | { |
11411 | int athread = SAMPLE_THREAD; | |
11412 | threadref thread; | |
11413 | int set; | |
11414 | ||
11415 | int_to_threadref (&thread, athread); | |
11416 | printf_filtered ("Remote Threadinfo test\n"); | |
11417 | if (!get_and_display_threadinfo (&thread)) | |
11418 | printf_filtered ("FAIL cannot get thread info\n"); | |
11419 | } | |
11420 | ||
11421 | static int | |
fba45db2 | 11422 | thread_display_step (threadref *ref, void *context) |
c906108c SS |
11423 | { |
11424 | /* output_threadid(" threadstep ",ref); *//* simple test */ | |
11425 | return get_and_display_threadinfo (ref); | |
11426 | } | |
11427 | ||
11428 | static void | |
0b39b52e | 11429 | threadlist_update_test_cmd (const char *cmd, int tty) |
c906108c SS |
11430 | { |
11431 | printf_filtered ("Remote Threadlist update test\n"); | |
11432 | remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS); | |
11433 | } | |
11434 | ||
11435 | static void | |
11436 | init_remote_threadtests (void) | |
11437 | { | |
3e43a32a MS |
11438 | add_com ("tlist", class_obscure, threadlist_test_cmd, |
11439 | _("Fetch and print the remote list of " | |
590042fc | 11440 | "thread identifiers, one pkt only.")); |
c906108c | 11441 | add_com ("tinfo", class_obscure, threadinfo_test_cmd, |
590042fc | 11442 | _("Fetch and display info about one thread.")); |
c906108c | 11443 | add_com ("tset", class_obscure, threadset_test_cmd, |
590042fc | 11444 | _("Test setting to a different thread.")); |
c906108c | 11445 | add_com ("tupd", class_obscure, threadlist_update_test_cmd, |
590042fc | 11446 | _("Iterate through updating all remote thread info.")); |
c906108c | 11447 | add_com ("talive", class_obscure, threadalive_test, |
590042fc | 11448 | _("Remote thread alive test.")); |
c906108c SS |
11449 | } |
11450 | ||
11451 | #endif /* 0 */ | |
11452 | ||
a068643d | 11453 | /* Convert a thread ID to a string. */ |
f3fb8c85 | 11454 | |
a068643d | 11455 | std::string |
f6ac5f3d | 11456 | remote_target::pid_to_str (ptid_t ptid) |
f3fb8c85 | 11457 | { |
82f73884 | 11458 | struct remote_state *rs = get_remote_state (); |
f3fb8c85 | 11459 | |
d7e15655 | 11460 | if (ptid == null_ptid) |
7cee1e54 | 11461 | return normal_pid_to_str (ptid); |
0e998d96 | 11462 | else if (ptid.is_pid ()) |
ecd0ada5 PA |
11463 | { |
11464 | /* Printing an inferior target id. */ | |
11465 | ||
11466 | /* When multi-process extensions are off, there's no way in the | |
11467 | remote protocol to know the remote process id, if there's any | |
11468 | at all. There's one exception --- when we're connected with | |
11469 | target extended-remote, and we manually attached to a process | |
11470 | with "attach PID". We don't record anywhere a flag that | |
11471 | allows us to distinguish that case from the case of | |
11472 | connecting with extended-remote and the stub already being | |
11473 | attached to a process, and reporting yes to qAttached, hence | |
11474 | no smart special casing here. */ | |
11475 | if (!remote_multi_process_p (rs)) | |
a068643d | 11476 | return "Remote target"; |
ecd0ada5 PA |
11477 | |
11478 | return normal_pid_to_str (ptid); | |
82f73884 | 11479 | } |
ecd0ada5 | 11480 | else |
79d7f229 | 11481 | { |
d7e15655 | 11482 | if (magic_null_ptid == ptid) |
a068643d | 11483 | return "Thread <main>"; |
8020350c | 11484 | else if (remote_multi_process_p (rs)) |
e38504b3 | 11485 | if (ptid.lwp () == 0) |
de0d863e DB |
11486 | return normal_pid_to_str (ptid); |
11487 | else | |
a068643d TT |
11488 | return string_printf ("Thread %d.%ld", |
11489 | ptid.pid (), ptid.lwp ()); | |
ecd0ada5 | 11490 | else |
a068643d | 11491 | return string_printf ("Thread %ld", ptid.lwp ()); |
79d7f229 | 11492 | } |
f3fb8c85 MS |
11493 | } |
11494 | ||
38691318 KB |
11495 | /* Get the address of the thread local variable in OBJFILE which is |
11496 | stored at OFFSET within the thread local storage for thread PTID. */ | |
11497 | ||
f6ac5f3d PA |
11498 | CORE_ADDR |
11499 | remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm, | |
11500 | CORE_ADDR offset) | |
38691318 | 11501 | { |
4082afcc | 11502 | if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE) |
38691318 KB |
11503 | { |
11504 | struct remote_state *rs = get_remote_state (); | |
8d64371b TT |
11505 | char *p = rs->buf.data (); |
11506 | char *endp = p + get_remote_packet_size (); | |
571dd617 | 11507 | enum packet_result result; |
38691318 KB |
11508 | |
11509 | strcpy (p, "qGetTLSAddr:"); | |
11510 | p += strlen (p); | |
82f73884 | 11511 | p = write_ptid (p, endp, ptid); |
38691318 KB |
11512 | *p++ = ','; |
11513 | p += hexnumstr (p, offset); | |
11514 | *p++ = ','; | |
11515 | p += hexnumstr (p, lm); | |
11516 | *p++ = '\0'; | |
11517 | ||
6d820c5c | 11518 | putpkt (rs->buf); |
8d64371b | 11519 | getpkt (&rs->buf, 0); |
3e43a32a MS |
11520 | result = packet_ok (rs->buf, |
11521 | &remote_protocol_packets[PACKET_qGetTLSAddr]); | |
571dd617 | 11522 | if (result == PACKET_OK) |
38691318 | 11523 | { |
b926417a | 11524 | ULONGEST addr; |
38691318 | 11525 | |
8d64371b | 11526 | unpack_varlen_hex (rs->buf.data (), &addr); |
b926417a | 11527 | return addr; |
38691318 | 11528 | } |
571dd617 | 11529 | else if (result == PACKET_UNKNOWN) |
109c3e39 AC |
11530 | throw_error (TLS_GENERIC_ERROR, |
11531 | _("Remote target doesn't support qGetTLSAddr packet")); | |
38691318 | 11532 | else |
109c3e39 AC |
11533 | throw_error (TLS_GENERIC_ERROR, |
11534 | _("Remote target failed to process qGetTLSAddr request")); | |
38691318 KB |
11535 | } |
11536 | else | |
109c3e39 AC |
11537 | throw_error (TLS_GENERIC_ERROR, |
11538 | _("TLS not supported or disabled on this target")); | |
38691318 KB |
11539 | /* Not reached. */ |
11540 | return 0; | |
11541 | } | |
11542 | ||
711e434b PM |
11543 | /* Provide thread local base, i.e. Thread Information Block address. |
11544 | Returns 1 if ptid is found and thread_local_base is non zero. */ | |
11545 | ||
57810aa7 | 11546 | bool |
f6ac5f3d | 11547 | remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr) |
711e434b | 11548 | { |
4082afcc | 11549 | if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE) |
711e434b PM |
11550 | { |
11551 | struct remote_state *rs = get_remote_state (); | |
8d64371b TT |
11552 | char *p = rs->buf.data (); |
11553 | char *endp = p + get_remote_packet_size (); | |
711e434b PM |
11554 | enum packet_result result; |
11555 | ||
11556 | strcpy (p, "qGetTIBAddr:"); | |
11557 | p += strlen (p); | |
11558 | p = write_ptid (p, endp, ptid); | |
11559 | *p++ = '\0'; | |
11560 | ||
11561 | putpkt (rs->buf); | |
8d64371b | 11562 | getpkt (&rs->buf, 0); |
711e434b PM |
11563 | result = packet_ok (rs->buf, |
11564 | &remote_protocol_packets[PACKET_qGetTIBAddr]); | |
11565 | if (result == PACKET_OK) | |
11566 | { | |
b926417a | 11567 | ULONGEST val; |
8d64371b | 11568 | unpack_varlen_hex (rs->buf.data (), &val); |
711e434b | 11569 | if (addr) |
b926417a | 11570 | *addr = (CORE_ADDR) val; |
57810aa7 | 11571 | return true; |
711e434b PM |
11572 | } |
11573 | else if (result == PACKET_UNKNOWN) | |
11574 | error (_("Remote target doesn't support qGetTIBAddr packet")); | |
11575 | else | |
11576 | error (_("Remote target failed to process qGetTIBAddr request")); | |
11577 | } | |
11578 | else | |
11579 | error (_("qGetTIBAddr not supported or disabled on this target")); | |
11580 | /* Not reached. */ | |
57810aa7 | 11581 | return false; |
711e434b PM |
11582 | } |
11583 | ||
29709017 DJ |
11584 | /* Support for inferring a target description based on the current |
11585 | architecture and the size of a 'g' packet. While the 'g' packet | |
11586 | can have any size (since optional registers can be left off the | |
11587 | end), some sizes are easily recognizable given knowledge of the | |
11588 | approximate architecture. */ | |
11589 | ||
11590 | struct remote_g_packet_guess | |
11591 | { | |
eefce37f TT |
11592 | remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_) |
11593 | : bytes (bytes_), | |
11594 | tdesc (tdesc_) | |
11595 | { | |
11596 | } | |
11597 | ||
29709017 DJ |
11598 | int bytes; |
11599 | const struct target_desc *tdesc; | |
11600 | }; | |
29709017 | 11601 | |
eefce37f | 11602 | struct remote_g_packet_data : public allocate_on_obstack |
29709017 | 11603 | { |
eefce37f | 11604 | std::vector<remote_g_packet_guess> guesses; |
29709017 DJ |
11605 | }; |
11606 | ||
11607 | static struct gdbarch_data *remote_g_packet_data_handle; | |
11608 | ||
11609 | static void * | |
11610 | remote_g_packet_data_init (struct obstack *obstack) | |
11611 | { | |
eefce37f | 11612 | return new (obstack) remote_g_packet_data; |
29709017 DJ |
11613 | } |
11614 | ||
11615 | void | |
11616 | register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes, | |
11617 | const struct target_desc *tdesc) | |
11618 | { | |
11619 | struct remote_g_packet_data *data | |
19ba03f4 SM |
11620 | = ((struct remote_g_packet_data *) |
11621 | gdbarch_data (gdbarch, remote_g_packet_data_handle)); | |
29709017 DJ |
11622 | |
11623 | gdb_assert (tdesc != NULL); | |
11624 | ||
eefce37f TT |
11625 | for (const remote_g_packet_guess &guess : data->guesses) |
11626 | if (guess.bytes == bytes) | |
29709017 | 11627 | internal_error (__FILE__, __LINE__, |
9b20d036 | 11628 | _("Duplicate g packet description added for size %d"), |
29709017 DJ |
11629 | bytes); |
11630 | ||
eefce37f | 11631 | data->guesses.emplace_back (bytes, tdesc); |
29709017 DJ |
11632 | } |
11633 | ||
eefce37f TT |
11634 | /* Return true if remote_read_description would do anything on this target |
11635 | and architecture, false otherwise. */ | |
d962ef82 | 11636 | |
eefce37f | 11637 | static bool |
d962ef82 DJ |
11638 | remote_read_description_p (struct target_ops *target) |
11639 | { | |
11640 | struct remote_g_packet_data *data | |
19ba03f4 SM |
11641 | = ((struct remote_g_packet_data *) |
11642 | gdbarch_data (target_gdbarch (), remote_g_packet_data_handle)); | |
d962ef82 | 11643 | |
eefce37f | 11644 | return !data->guesses.empty (); |
d962ef82 DJ |
11645 | } |
11646 | ||
f6ac5f3d PA |
11647 | const struct target_desc * |
11648 | remote_target::read_description () | |
29709017 DJ |
11649 | { |
11650 | struct remote_g_packet_data *data | |
19ba03f4 SM |
11651 | = ((struct remote_g_packet_data *) |
11652 | gdbarch_data (target_gdbarch (), remote_g_packet_data_handle)); | |
29709017 | 11653 | |
d962ef82 DJ |
11654 | /* Do not try this during initial connection, when we do not know |
11655 | whether there is a running but stopped thread. */ | |
d7e15655 | 11656 | if (!target_has_execution || inferior_ptid == null_ptid) |
b6a8c27b | 11657 | return beneath ()->read_description (); |
d962ef82 | 11658 | |
eefce37f | 11659 | if (!data->guesses.empty ()) |
29709017 | 11660 | { |
29709017 DJ |
11661 | int bytes = send_g_packet (); |
11662 | ||
eefce37f TT |
11663 | for (const remote_g_packet_guess &guess : data->guesses) |
11664 | if (guess.bytes == bytes) | |
11665 | return guess.tdesc; | |
29709017 DJ |
11666 | |
11667 | /* We discard the g packet. A minor optimization would be to | |
11668 | hold on to it, and fill the register cache once we have selected | |
11669 | an architecture, but it's too tricky to do safely. */ | |
11670 | } | |
11671 | ||
b6a8c27b | 11672 | return beneath ()->read_description (); |
29709017 DJ |
11673 | } |
11674 | ||
a6b151f1 DJ |
11675 | /* Remote file transfer support. This is host-initiated I/O, not |
11676 | target-initiated; for target-initiated, see remote-fileio.c. */ | |
11677 | ||
11678 | /* If *LEFT is at least the length of STRING, copy STRING to | |
11679 | *BUFFER, update *BUFFER to point to the new end of the buffer, and | |
11680 | decrease *LEFT. Otherwise raise an error. */ | |
11681 | ||
11682 | static void | |
a121b7c1 | 11683 | remote_buffer_add_string (char **buffer, int *left, const char *string) |
a6b151f1 DJ |
11684 | { |
11685 | int len = strlen (string); | |
11686 | ||
11687 | if (len > *left) | |
11688 | error (_("Packet too long for target.")); | |
11689 | ||
11690 | memcpy (*buffer, string, len); | |
11691 | *buffer += len; | |
11692 | *left -= len; | |
11693 | ||
11694 | /* NUL-terminate the buffer as a convenience, if there is | |
11695 | room. */ | |
11696 | if (*left) | |
11697 | **buffer = '\0'; | |
11698 | } | |
11699 | ||
11700 | /* If *LEFT is large enough, hex encode LEN bytes from BYTES into | |
11701 | *BUFFER, update *BUFFER to point to the new end of the buffer, and | |
11702 | decrease *LEFT. Otherwise raise an error. */ | |
11703 | ||
11704 | static void | |
11705 | remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes, | |
11706 | int len) | |
11707 | { | |
11708 | if (2 * len > *left) | |
11709 | error (_("Packet too long for target.")); | |
11710 | ||
11711 | bin2hex (bytes, *buffer, len); | |
11712 | *buffer += 2 * len; | |
11713 | *left -= 2 * len; | |
11714 | ||
11715 | /* NUL-terminate the buffer as a convenience, if there is | |
11716 | room. */ | |
11717 | if (*left) | |
11718 | **buffer = '\0'; | |
11719 | } | |
11720 | ||
11721 | /* If *LEFT is large enough, convert VALUE to hex and add it to | |
11722 | *BUFFER, update *BUFFER to point to the new end of the buffer, and | |
11723 | decrease *LEFT. Otherwise raise an error. */ | |
11724 | ||
11725 | static void | |
11726 | remote_buffer_add_int (char **buffer, int *left, ULONGEST value) | |
11727 | { | |
11728 | int len = hexnumlen (value); | |
11729 | ||
11730 | if (len > *left) | |
11731 | error (_("Packet too long for target.")); | |
11732 | ||
11733 | hexnumstr (*buffer, value); | |
11734 | *buffer += len; | |
11735 | *left -= len; | |
11736 | ||
11737 | /* NUL-terminate the buffer as a convenience, if there is | |
11738 | room. */ | |
11739 | if (*left) | |
11740 | **buffer = '\0'; | |
11741 | } | |
11742 | ||
11743 | /* Parse an I/O result packet from BUFFER. Set RETCODE to the return | |
11744 | value, *REMOTE_ERRNO to the remote error number or zero if none | |
11745 | was included, and *ATTACHMENT to point to the start of the annex | |
11746 | if any. The length of the packet isn't needed here; there may | |
11747 | be NUL bytes in BUFFER, but they will be after *ATTACHMENT. | |
11748 | ||
11749 | Return 0 if the packet could be parsed, -1 if it could not. If | |
11750 | -1 is returned, the other variables may not be initialized. */ | |
11751 | ||
11752 | static int | |
11753 | remote_hostio_parse_result (char *buffer, int *retcode, | |
11754 | int *remote_errno, char **attachment) | |
11755 | { | |
11756 | char *p, *p2; | |
11757 | ||
11758 | *remote_errno = 0; | |
11759 | *attachment = NULL; | |
11760 | ||
11761 | if (buffer[0] != 'F') | |
11762 | return -1; | |
11763 | ||
11764 | errno = 0; | |
11765 | *retcode = strtol (&buffer[1], &p, 16); | |
11766 | if (errno != 0 || p == &buffer[1]) | |
11767 | return -1; | |
11768 | ||
11769 | /* Check for ",errno". */ | |
11770 | if (*p == ',') | |
11771 | { | |
11772 | errno = 0; | |
11773 | *remote_errno = strtol (p + 1, &p2, 16); | |
11774 | if (errno != 0 || p + 1 == p2) | |
11775 | return -1; | |
11776 | p = p2; | |
11777 | } | |
11778 | ||
11779 | /* Check for ";attachment". If there is no attachment, the | |
11780 | packet should end here. */ | |
11781 | if (*p == ';') | |
11782 | { | |
11783 | *attachment = p + 1; | |
11784 | return 0; | |
11785 | } | |
11786 | else if (*p == '\0') | |
11787 | return 0; | |
11788 | else | |
11789 | return -1; | |
11790 | } | |
11791 | ||
11792 | /* Send a prepared I/O packet to the target and read its response. | |
11793 | The prepared packet is in the global RS->BUF before this function | |
11794 | is called, and the answer is there when we return. | |
11795 | ||
11796 | COMMAND_BYTES is the length of the request to send, which may include | |
11797 | binary data. WHICH_PACKET is the packet configuration to check | |
11798 | before attempting a packet. If an error occurs, *REMOTE_ERRNO | |
11799 | is set to the error number and -1 is returned. Otherwise the value | |
11800 | returned by the function is returned. | |
11801 | ||
11802 | ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an | |
11803 | attachment is expected; an error will be reported if there's a | |
11804 | mismatch. If one is found, *ATTACHMENT will be set to point into | |
11805 | the packet buffer and *ATTACHMENT_LEN will be set to the | |
11806 | attachment's length. */ | |
11807 | ||
6b8edb51 PA |
11808 | int |
11809 | remote_target::remote_hostio_send_command (int command_bytes, int which_packet, | |
11810 | int *remote_errno, char **attachment, | |
11811 | int *attachment_len) | |
a6b151f1 DJ |
11812 | { |
11813 | struct remote_state *rs = get_remote_state (); | |
11814 | int ret, bytes_read; | |
11815 | char *attachment_tmp; | |
11816 | ||
20db9c52 | 11817 | if (packet_support (which_packet) == PACKET_DISABLE) |
a6b151f1 DJ |
11818 | { |
11819 | *remote_errno = FILEIO_ENOSYS; | |
11820 | return -1; | |
11821 | } | |
11822 | ||
8d64371b TT |
11823 | putpkt_binary (rs->buf.data (), command_bytes); |
11824 | bytes_read = getpkt_sane (&rs->buf, 0); | |
a6b151f1 DJ |
11825 | |
11826 | /* If it timed out, something is wrong. Don't try to parse the | |
11827 | buffer. */ | |
11828 | if (bytes_read < 0) | |
11829 | { | |
11830 | *remote_errno = FILEIO_EINVAL; | |
11831 | return -1; | |
11832 | } | |
11833 | ||
11834 | switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet])) | |
11835 | { | |
11836 | case PACKET_ERROR: | |
11837 | *remote_errno = FILEIO_EINVAL; | |
11838 | return -1; | |
11839 | case PACKET_UNKNOWN: | |
11840 | *remote_errno = FILEIO_ENOSYS; | |
11841 | return -1; | |
11842 | case PACKET_OK: | |
11843 | break; | |
11844 | } | |
11845 | ||
8d64371b | 11846 | if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno, |
a6b151f1 DJ |
11847 | &attachment_tmp)) |
11848 | { | |
11849 | *remote_errno = FILEIO_EINVAL; | |
11850 | return -1; | |
11851 | } | |
11852 | ||
11853 | /* Make sure we saw an attachment if and only if we expected one. */ | |
11854 | if ((attachment_tmp == NULL && attachment != NULL) | |
11855 | || (attachment_tmp != NULL && attachment == NULL)) | |
11856 | { | |
11857 | *remote_errno = FILEIO_EINVAL; | |
11858 | return -1; | |
11859 | } | |
11860 | ||
11861 | /* If an attachment was found, it must point into the packet buffer; | |
11862 | work out how many bytes there were. */ | |
11863 | if (attachment_tmp != NULL) | |
11864 | { | |
11865 | *attachment = attachment_tmp; | |
8d64371b | 11866 | *attachment_len = bytes_read - (*attachment - rs->buf.data ()); |
a6b151f1 DJ |
11867 | } |
11868 | ||
11869 | return ret; | |
11870 | } | |
11871 | ||
dd194f6b | 11872 | /* See declaration.h. */ |
80152258 | 11873 | |
dd194f6b PA |
11874 | void |
11875 | readahead_cache::invalidate () | |
80152258 | 11876 | { |
dd194f6b | 11877 | this->fd = -1; |
80152258 PA |
11878 | } |
11879 | ||
dd194f6b | 11880 | /* See declaration.h. */ |
80152258 | 11881 | |
dd194f6b PA |
11882 | void |
11883 | readahead_cache::invalidate_fd (int fd) | |
80152258 | 11884 | { |
dd194f6b PA |
11885 | if (this->fd == fd) |
11886 | this->fd = -1; | |
80152258 PA |
11887 | } |
11888 | ||
15a201c8 GB |
11889 | /* Set the filesystem remote_hostio functions that take FILENAME |
11890 | arguments will use. Return 0 on success, or -1 if an error | |
11891 | occurs (and set *REMOTE_ERRNO). */ | |
11892 | ||
6b8edb51 PA |
11893 | int |
11894 | remote_target::remote_hostio_set_filesystem (struct inferior *inf, | |
11895 | int *remote_errno) | |
15a201c8 GB |
11896 | { |
11897 | struct remote_state *rs = get_remote_state (); | |
11898 | int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid; | |
8d64371b | 11899 | char *p = rs->buf.data (); |
15a201c8 GB |
11900 | int left = get_remote_packet_size () - 1; |
11901 | char arg[9]; | |
11902 | int ret; | |
11903 | ||
11904 | if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE) | |
11905 | return 0; | |
11906 | ||
11907 | if (rs->fs_pid != -1 && required_pid == rs->fs_pid) | |
11908 | return 0; | |
11909 | ||
11910 | remote_buffer_add_string (&p, &left, "vFile:setfs:"); | |
11911 | ||
11912 | xsnprintf (arg, sizeof (arg), "%x", required_pid); | |
11913 | remote_buffer_add_string (&p, &left, arg); | |
11914 | ||
8d64371b | 11915 | ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs, |
15a201c8 GB |
11916 | remote_errno, NULL, NULL); |
11917 | ||
11918 | if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE) | |
11919 | return 0; | |
11920 | ||
11921 | if (ret == 0) | |
11922 | rs->fs_pid = required_pid; | |
11923 | ||
11924 | return ret; | |
11925 | } | |
11926 | ||
12e2a5fd | 11927 | /* Implementation of to_fileio_open. */ |
a6b151f1 | 11928 | |
6b8edb51 PA |
11929 | int |
11930 | remote_target::remote_hostio_open (inferior *inf, const char *filename, | |
11931 | int flags, int mode, int warn_if_slow, | |
11932 | int *remote_errno) | |
a6b151f1 DJ |
11933 | { |
11934 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 11935 | char *p = rs->buf.data (); |
a6b151f1 DJ |
11936 | int left = get_remote_packet_size () - 1; |
11937 | ||
4313b8c0 GB |
11938 | if (warn_if_slow) |
11939 | { | |
11940 | static int warning_issued = 0; | |
11941 | ||
11942 | printf_unfiltered (_("Reading %s from remote target...\n"), | |
11943 | filename); | |
11944 | ||
11945 | if (!warning_issued) | |
11946 | { | |
11947 | warning (_("File transfers from remote targets can be slow." | |
11948 | " Use \"set sysroot\" to access files locally" | |
11949 | " instead.")); | |
11950 | warning_issued = 1; | |
11951 | } | |
11952 | } | |
11953 | ||
15a201c8 GB |
11954 | if (remote_hostio_set_filesystem (inf, remote_errno) != 0) |
11955 | return -1; | |
11956 | ||
a6b151f1 DJ |
11957 | remote_buffer_add_string (&p, &left, "vFile:open:"); |
11958 | ||
11959 | remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename, | |
11960 | strlen (filename)); | |
11961 | remote_buffer_add_string (&p, &left, ","); | |
11962 | ||
11963 | remote_buffer_add_int (&p, &left, flags); | |
11964 | remote_buffer_add_string (&p, &left, ","); | |
11965 | ||
11966 | remote_buffer_add_int (&p, &left, mode); | |
11967 | ||
8d64371b | 11968 | return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open, |
a6b151f1 DJ |
11969 | remote_errno, NULL, NULL); |
11970 | } | |
11971 | ||
f6ac5f3d PA |
11972 | int |
11973 | remote_target::fileio_open (struct inferior *inf, const char *filename, | |
11974 | int flags, int mode, int warn_if_slow, | |
11975 | int *remote_errno) | |
11976 | { | |
6b8edb51 | 11977 | return remote_hostio_open (inf, filename, flags, mode, warn_if_slow, |
f6ac5f3d PA |
11978 | remote_errno); |
11979 | } | |
11980 | ||
12e2a5fd | 11981 | /* Implementation of to_fileio_pwrite. */ |
a6b151f1 | 11982 | |
6b8edb51 PA |
11983 | int |
11984 | remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len, | |
11985 | ULONGEST offset, int *remote_errno) | |
a6b151f1 DJ |
11986 | { |
11987 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 11988 | char *p = rs->buf.data (); |
a6b151f1 DJ |
11989 | int left = get_remote_packet_size (); |
11990 | int out_len; | |
11991 | ||
dd194f6b | 11992 | rs->readahead_cache.invalidate_fd (fd); |
80152258 | 11993 | |
a6b151f1 DJ |
11994 | remote_buffer_add_string (&p, &left, "vFile:pwrite:"); |
11995 | ||
11996 | remote_buffer_add_int (&p, &left, fd); | |
11997 | remote_buffer_add_string (&p, &left, ","); | |
11998 | ||
11999 | remote_buffer_add_int (&p, &left, offset); | |
12000 | remote_buffer_add_string (&p, &left, ","); | |
12001 | ||
124e13d9 | 12002 | p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len, |
8d64371b TT |
12003 | (get_remote_packet_size () |
12004 | - (p - rs->buf.data ()))); | |
a6b151f1 | 12005 | |
8d64371b | 12006 | return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite, |
a6b151f1 DJ |
12007 | remote_errno, NULL, NULL); |
12008 | } | |
12009 | ||
f6ac5f3d PA |
12010 | int |
12011 | remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len, | |
12012 | ULONGEST offset, int *remote_errno) | |
12013 | { | |
6b8edb51 | 12014 | return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno); |
f6ac5f3d PA |
12015 | } |
12016 | ||
80152258 PA |
12017 | /* Helper for the implementation of to_fileio_pread. Read the file |
12018 | from the remote side with vFile:pread. */ | |
a6b151f1 | 12019 | |
6b8edb51 PA |
12020 | int |
12021 | remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len, | |
12022 | ULONGEST offset, int *remote_errno) | |
a6b151f1 DJ |
12023 | { |
12024 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 12025 | char *p = rs->buf.data (); |
a6b151f1 DJ |
12026 | char *attachment; |
12027 | int left = get_remote_packet_size (); | |
12028 | int ret, attachment_len; | |
12029 | int read_len; | |
12030 | ||
12031 | remote_buffer_add_string (&p, &left, "vFile:pread:"); | |
12032 | ||
12033 | remote_buffer_add_int (&p, &left, fd); | |
12034 | remote_buffer_add_string (&p, &left, ","); | |
12035 | ||
12036 | remote_buffer_add_int (&p, &left, len); | |
12037 | remote_buffer_add_string (&p, &left, ","); | |
12038 | ||
12039 | remote_buffer_add_int (&p, &left, offset); | |
12040 | ||
8d64371b | 12041 | ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread, |
a6b151f1 DJ |
12042 | remote_errno, &attachment, |
12043 | &attachment_len); | |
12044 | ||
12045 | if (ret < 0) | |
12046 | return ret; | |
12047 | ||
bc20a4af | 12048 | read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len, |
a6b151f1 DJ |
12049 | read_buf, len); |
12050 | if (read_len != ret) | |
12051 | error (_("Read returned %d, but %d bytes."), ret, (int) read_len); | |
12052 | ||
12053 | return ret; | |
12054 | } | |
12055 | ||
dd194f6b | 12056 | /* See declaration.h. */ |
80152258 | 12057 | |
dd194f6b PA |
12058 | int |
12059 | readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len, | |
12060 | ULONGEST offset) | |
80152258 | 12061 | { |
dd194f6b PA |
12062 | if (this->fd == fd |
12063 | && this->offset <= offset | |
12064 | && offset < this->offset + this->bufsize) | |
80152258 | 12065 | { |
dd194f6b | 12066 | ULONGEST max = this->offset + this->bufsize; |
80152258 PA |
12067 | |
12068 | if (offset + len > max) | |
12069 | len = max - offset; | |
12070 | ||
dd194f6b | 12071 | memcpy (read_buf, this->buf + offset - this->offset, len); |
80152258 PA |
12072 | return len; |
12073 | } | |
12074 | ||
12075 | return 0; | |
12076 | } | |
12077 | ||
12078 | /* Implementation of to_fileio_pread. */ | |
12079 | ||
6b8edb51 PA |
12080 | int |
12081 | remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len, | |
12082 | ULONGEST offset, int *remote_errno) | |
80152258 PA |
12083 | { |
12084 | int ret; | |
12085 | struct remote_state *rs = get_remote_state (); | |
dd194f6b | 12086 | readahead_cache *cache = &rs->readahead_cache; |
80152258 | 12087 | |
dd194f6b | 12088 | ret = cache->pread (fd, read_buf, len, offset); |
80152258 PA |
12089 | if (ret > 0) |
12090 | { | |
12091 | cache->hit_count++; | |
12092 | ||
12093 | if (remote_debug) | |
12094 | fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n", | |
12095 | pulongest (cache->hit_count)); | |
12096 | return ret; | |
12097 | } | |
12098 | ||
12099 | cache->miss_count++; | |
12100 | if (remote_debug) | |
12101 | fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n", | |
12102 | pulongest (cache->miss_count)); | |
12103 | ||
12104 | cache->fd = fd; | |
12105 | cache->offset = offset; | |
12106 | cache->bufsize = get_remote_packet_size (); | |
224c3ddb | 12107 | cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize); |
80152258 | 12108 | |
6b8edb51 | 12109 | ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize, |
80152258 PA |
12110 | cache->offset, remote_errno); |
12111 | if (ret <= 0) | |
12112 | { | |
dd194f6b | 12113 | cache->invalidate_fd (fd); |
80152258 PA |
12114 | return ret; |
12115 | } | |
12116 | ||
12117 | cache->bufsize = ret; | |
dd194f6b | 12118 | return cache->pread (fd, read_buf, len, offset); |
80152258 PA |
12119 | } |
12120 | ||
f6ac5f3d PA |
12121 | int |
12122 | remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len, | |
12123 | ULONGEST offset, int *remote_errno) | |
12124 | { | |
6b8edb51 | 12125 | return remote_hostio_pread (fd, read_buf, len, offset, remote_errno); |
f6ac5f3d PA |
12126 | } |
12127 | ||
12e2a5fd | 12128 | /* Implementation of to_fileio_close. */ |
a6b151f1 | 12129 | |
6b8edb51 PA |
12130 | int |
12131 | remote_target::remote_hostio_close (int fd, int *remote_errno) | |
a6b151f1 DJ |
12132 | { |
12133 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 12134 | char *p = rs->buf.data (); |
a6b151f1 DJ |
12135 | int left = get_remote_packet_size () - 1; |
12136 | ||
dd194f6b | 12137 | rs->readahead_cache.invalidate_fd (fd); |
80152258 | 12138 | |
a6b151f1 DJ |
12139 | remote_buffer_add_string (&p, &left, "vFile:close:"); |
12140 | ||
12141 | remote_buffer_add_int (&p, &left, fd); | |
12142 | ||
8d64371b | 12143 | return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close, |
a6b151f1 DJ |
12144 | remote_errno, NULL, NULL); |
12145 | } | |
12146 | ||
f6ac5f3d PA |
12147 | int |
12148 | remote_target::fileio_close (int fd, int *remote_errno) | |
12149 | { | |
6b8edb51 | 12150 | return remote_hostio_close (fd, remote_errno); |
f6ac5f3d PA |
12151 | } |
12152 | ||
12e2a5fd | 12153 | /* Implementation of to_fileio_unlink. */ |
a6b151f1 | 12154 | |
6b8edb51 PA |
12155 | int |
12156 | remote_target::remote_hostio_unlink (inferior *inf, const char *filename, | |
12157 | int *remote_errno) | |
a6b151f1 DJ |
12158 | { |
12159 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 12160 | char *p = rs->buf.data (); |
a6b151f1 DJ |
12161 | int left = get_remote_packet_size () - 1; |
12162 | ||
15a201c8 GB |
12163 | if (remote_hostio_set_filesystem (inf, remote_errno) != 0) |
12164 | return -1; | |
12165 | ||
a6b151f1 DJ |
12166 | remote_buffer_add_string (&p, &left, "vFile:unlink:"); |
12167 | ||
12168 | remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename, | |
12169 | strlen (filename)); | |
12170 | ||
8d64371b | 12171 | return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink, |
a6b151f1 DJ |
12172 | remote_errno, NULL, NULL); |
12173 | } | |
12174 | ||
f6ac5f3d PA |
12175 | int |
12176 | remote_target::fileio_unlink (struct inferior *inf, const char *filename, | |
12177 | int *remote_errno) | |
12178 | { | |
6b8edb51 | 12179 | return remote_hostio_unlink (inf, filename, remote_errno); |
f6ac5f3d PA |
12180 | } |
12181 | ||
12e2a5fd | 12182 | /* Implementation of to_fileio_readlink. */ |
b9e7b9c3 | 12183 | |
f6ac5f3d PA |
12184 | gdb::optional<std::string> |
12185 | remote_target::fileio_readlink (struct inferior *inf, const char *filename, | |
12186 | int *remote_errno) | |
b9e7b9c3 UW |
12187 | { |
12188 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 12189 | char *p = rs->buf.data (); |
b9e7b9c3 UW |
12190 | char *attachment; |
12191 | int left = get_remote_packet_size (); | |
12192 | int len, attachment_len; | |
12193 | int read_len; | |
b9e7b9c3 | 12194 | |
15a201c8 | 12195 | if (remote_hostio_set_filesystem (inf, remote_errno) != 0) |
e0d3522b | 12196 | return {}; |
15a201c8 | 12197 | |
b9e7b9c3 UW |
12198 | remote_buffer_add_string (&p, &left, "vFile:readlink:"); |
12199 | ||
12200 | remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename, | |
12201 | strlen (filename)); | |
12202 | ||
8d64371b | 12203 | len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink, |
b9e7b9c3 UW |
12204 | remote_errno, &attachment, |
12205 | &attachment_len); | |
12206 | ||
12207 | if (len < 0) | |
e0d3522b | 12208 | return {}; |
b9e7b9c3 | 12209 | |
e0d3522b | 12210 | std::string ret (len, '\0'); |
b9e7b9c3 | 12211 | |
bc20a4af | 12212 | read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len, |
e0d3522b | 12213 | (gdb_byte *) &ret[0], len); |
b9e7b9c3 UW |
12214 | if (read_len != len) |
12215 | error (_("Readlink returned %d, but %d bytes."), len, read_len); | |
12216 | ||
b9e7b9c3 UW |
12217 | return ret; |
12218 | } | |
12219 | ||
12e2a5fd | 12220 | /* Implementation of to_fileio_fstat. */ |
0a93529c | 12221 | |
f6ac5f3d PA |
12222 | int |
12223 | remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno) | |
0a93529c GB |
12224 | { |
12225 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 12226 | char *p = rs->buf.data (); |
0a93529c GB |
12227 | int left = get_remote_packet_size (); |
12228 | int attachment_len, ret; | |
12229 | char *attachment; | |
12230 | struct fio_stat fst; | |
12231 | int read_len; | |
12232 | ||
464b0089 GB |
12233 | remote_buffer_add_string (&p, &left, "vFile:fstat:"); |
12234 | ||
12235 | remote_buffer_add_int (&p, &left, fd); | |
12236 | ||
8d64371b | 12237 | ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat, |
464b0089 GB |
12238 | remote_errno, &attachment, |
12239 | &attachment_len); | |
12240 | if (ret < 0) | |
0a93529c | 12241 | { |
464b0089 GB |
12242 | if (*remote_errno != FILEIO_ENOSYS) |
12243 | return ret; | |
12244 | ||
0a93529c GB |
12245 | /* Strictly we should return -1, ENOSYS here, but when |
12246 | "set sysroot remote:" was implemented in August 2008 | |
12247 | BFD's need for a stat function was sidestepped with | |
12248 | this hack. This was not remedied until March 2015 | |
12249 | so we retain the previous behavior to avoid breaking | |
12250 | compatibility. | |
12251 | ||
12252 | Note that the memset is a March 2015 addition; older | |
12253 | GDBs set st_size *and nothing else* so the structure | |
12254 | would have garbage in all other fields. This might | |
12255 | break something but retaining the previous behavior | |
12256 | here would be just too wrong. */ | |
12257 | ||
12258 | memset (st, 0, sizeof (struct stat)); | |
12259 | st->st_size = INT_MAX; | |
12260 | return 0; | |
12261 | } | |
12262 | ||
0a93529c GB |
12263 | read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len, |
12264 | (gdb_byte *) &fst, sizeof (fst)); | |
12265 | ||
12266 | if (read_len != ret) | |
12267 | error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len); | |
12268 | ||
12269 | if (read_len != sizeof (fst)) | |
12270 | error (_("vFile:fstat returned %d bytes, but expecting %d."), | |
12271 | read_len, (int) sizeof (fst)); | |
12272 | ||
12273 | remote_fileio_to_host_stat (&fst, st); | |
12274 | ||
12275 | return 0; | |
12276 | } | |
12277 | ||
12e2a5fd | 12278 | /* Implementation of to_filesystem_is_local. */ |
e3dd7556 | 12279 | |
57810aa7 | 12280 | bool |
f6ac5f3d | 12281 | remote_target::filesystem_is_local () |
e3dd7556 GB |
12282 | { |
12283 | /* Valgrind GDB presents itself as a remote target but works | |
12284 | on the local filesystem: it does not implement remote get | |
12285 | and users are not expected to set a sysroot. To handle | |
12286 | this case we treat the remote filesystem as local if the | |
12287 | sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub | |
12288 | does not support vFile:open. */ | |
a3be80c3 | 12289 | if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0) |
e3dd7556 GB |
12290 | { |
12291 | enum packet_support ps = packet_support (PACKET_vFile_open); | |
12292 | ||
12293 | if (ps == PACKET_SUPPORT_UNKNOWN) | |
12294 | { | |
12295 | int fd, remote_errno; | |
12296 | ||
12297 | /* Try opening a file to probe support. The supplied | |
12298 | filename is irrelevant, we only care about whether | |
12299 | the stub recognizes the packet or not. */ | |
6b8edb51 | 12300 | fd = remote_hostio_open (NULL, "just probing", |
4313b8c0 | 12301 | FILEIO_O_RDONLY, 0700, 0, |
e3dd7556 GB |
12302 | &remote_errno); |
12303 | ||
12304 | if (fd >= 0) | |
6b8edb51 | 12305 | remote_hostio_close (fd, &remote_errno); |
e3dd7556 GB |
12306 | |
12307 | ps = packet_support (PACKET_vFile_open); | |
12308 | } | |
12309 | ||
12310 | if (ps == PACKET_DISABLE) | |
12311 | { | |
12312 | static int warning_issued = 0; | |
12313 | ||
12314 | if (!warning_issued) | |
12315 | { | |
12316 | warning (_("remote target does not support file" | |
12317 | " transfer, attempting to access files" | |
12318 | " from local filesystem.")); | |
12319 | warning_issued = 1; | |
12320 | } | |
12321 | ||
57810aa7 | 12322 | return true; |
e3dd7556 GB |
12323 | } |
12324 | } | |
12325 | ||
57810aa7 | 12326 | return false; |
e3dd7556 GB |
12327 | } |
12328 | ||
a6b151f1 DJ |
12329 | static int |
12330 | remote_fileio_errno_to_host (int errnum) | |
12331 | { | |
12332 | switch (errnum) | |
12333 | { | |
12334 | case FILEIO_EPERM: | |
12335 | return EPERM; | |
12336 | case FILEIO_ENOENT: | |
12337 | return ENOENT; | |
12338 | case FILEIO_EINTR: | |
12339 | return EINTR; | |
12340 | case FILEIO_EIO: | |
12341 | return EIO; | |
12342 | case FILEIO_EBADF: | |
12343 | return EBADF; | |
12344 | case FILEIO_EACCES: | |
12345 | return EACCES; | |
12346 | case FILEIO_EFAULT: | |
12347 | return EFAULT; | |
12348 | case FILEIO_EBUSY: | |
12349 | return EBUSY; | |
12350 | case FILEIO_EEXIST: | |
12351 | return EEXIST; | |
12352 | case FILEIO_ENODEV: | |
12353 | return ENODEV; | |
12354 | case FILEIO_ENOTDIR: | |
12355 | return ENOTDIR; | |
12356 | case FILEIO_EISDIR: | |
12357 | return EISDIR; | |
12358 | case FILEIO_EINVAL: | |
12359 | return EINVAL; | |
12360 | case FILEIO_ENFILE: | |
12361 | return ENFILE; | |
12362 | case FILEIO_EMFILE: | |
12363 | return EMFILE; | |
12364 | case FILEIO_EFBIG: | |
12365 | return EFBIG; | |
12366 | case FILEIO_ENOSPC: | |
12367 | return ENOSPC; | |
12368 | case FILEIO_ESPIPE: | |
12369 | return ESPIPE; | |
12370 | case FILEIO_EROFS: | |
12371 | return EROFS; | |
12372 | case FILEIO_ENOSYS: | |
12373 | return ENOSYS; | |
12374 | case FILEIO_ENAMETOOLONG: | |
12375 | return ENAMETOOLONG; | |
12376 | } | |
12377 | return -1; | |
12378 | } | |
12379 | ||
12380 | static char * | |
12381 | remote_hostio_error (int errnum) | |
12382 | { | |
12383 | int host_error = remote_fileio_errno_to_host (errnum); | |
12384 | ||
12385 | if (host_error == -1) | |
12386 | error (_("Unknown remote I/O error %d"), errnum); | |
12387 | else | |
12388 | error (_("Remote I/O error: %s"), safe_strerror (host_error)); | |
12389 | } | |
12390 | ||
440b7aec PA |
12391 | /* A RAII wrapper around a remote file descriptor. */ |
12392 | ||
12393 | class scoped_remote_fd | |
a6b151f1 | 12394 | { |
440b7aec | 12395 | public: |
6b8edb51 PA |
12396 | scoped_remote_fd (remote_target *remote, int fd) |
12397 | : m_remote (remote), m_fd (fd) | |
440b7aec PA |
12398 | { |
12399 | } | |
a6b151f1 | 12400 | |
440b7aec PA |
12401 | ~scoped_remote_fd () |
12402 | { | |
12403 | if (m_fd != -1) | |
12404 | { | |
12405 | try | |
12406 | { | |
12407 | int remote_errno; | |
6b8edb51 | 12408 | m_remote->remote_hostio_close (m_fd, &remote_errno); |
440b7aec PA |
12409 | } |
12410 | catch (...) | |
12411 | { | |
12412 | /* Swallow exception before it escapes the dtor. If | |
12413 | something goes wrong, likely the connection is gone, | |
12414 | and there's nothing else that can be done. */ | |
12415 | } | |
12416 | } | |
12417 | } | |
12418 | ||
12419 | DISABLE_COPY_AND_ASSIGN (scoped_remote_fd); | |
12420 | ||
12421 | /* Release ownership of the file descriptor, and return it. */ | |
88a774b9 | 12422 | ATTRIBUTE_UNUSED_RESULT int release () noexcept |
440b7aec PA |
12423 | { |
12424 | int fd = m_fd; | |
12425 | m_fd = -1; | |
12426 | return fd; | |
12427 | } | |
12428 | ||
12429 | /* Return the owned file descriptor. */ | |
12430 | int get () const noexcept | |
12431 | { | |
12432 | return m_fd; | |
12433 | } | |
12434 | ||
12435 | private: | |
6b8edb51 PA |
12436 | /* The remote target. */ |
12437 | remote_target *m_remote; | |
12438 | ||
440b7aec PA |
12439 | /* The owned remote I/O file descriptor. */ |
12440 | int m_fd; | |
12441 | }; | |
a6b151f1 DJ |
12442 | |
12443 | void | |
12444 | remote_file_put (const char *local_file, const char *remote_file, int from_tty) | |
6b8edb51 PA |
12445 | { |
12446 | remote_target *remote = get_current_remote_target (); | |
12447 | ||
12448 | if (remote == nullptr) | |
12449 | error (_("command can only be used with remote target")); | |
12450 | ||
12451 | remote->remote_file_put (local_file, remote_file, from_tty); | |
12452 | } | |
12453 | ||
12454 | void | |
12455 | remote_target::remote_file_put (const char *local_file, const char *remote_file, | |
12456 | int from_tty) | |
a6b151f1 | 12457 | { |
440b7aec | 12458 | int retcode, remote_errno, bytes, io_size; |
a6b151f1 DJ |
12459 | int bytes_in_buffer; |
12460 | int saw_eof; | |
12461 | ULONGEST offset; | |
a6b151f1 | 12462 | |
d419f42d | 12463 | gdb_file_up file = gdb_fopen_cloexec (local_file, "rb"); |
a6b151f1 DJ |
12464 | if (file == NULL) |
12465 | perror_with_name (local_file); | |
a6b151f1 | 12466 | |
440b7aec | 12467 | scoped_remote_fd fd |
6b8edb51 PA |
12468 | (this, remote_hostio_open (NULL, |
12469 | remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT | |
12470 | | FILEIO_O_TRUNC), | |
12471 | 0700, 0, &remote_errno)); | |
440b7aec | 12472 | if (fd.get () == -1) |
a6b151f1 DJ |
12473 | remote_hostio_error (remote_errno); |
12474 | ||
12475 | /* Send up to this many bytes at once. They won't all fit in the | |
12476 | remote packet limit, so we'll transfer slightly fewer. */ | |
12477 | io_size = get_remote_packet_size (); | |
5ca3b260 | 12478 | gdb::byte_vector buffer (io_size); |
a6b151f1 | 12479 | |
a6b151f1 DJ |
12480 | bytes_in_buffer = 0; |
12481 | saw_eof = 0; | |
12482 | offset = 0; | |
12483 | while (bytes_in_buffer || !saw_eof) | |
12484 | { | |
12485 | if (!saw_eof) | |
12486 | { | |
5ca3b260 | 12487 | bytes = fread (buffer.data () + bytes_in_buffer, 1, |
3e43a32a | 12488 | io_size - bytes_in_buffer, |
d419f42d | 12489 | file.get ()); |
a6b151f1 DJ |
12490 | if (bytes == 0) |
12491 | { | |
d419f42d | 12492 | if (ferror (file.get ())) |
a6b151f1 DJ |
12493 | error (_("Error reading %s."), local_file); |
12494 | else | |
12495 | { | |
12496 | /* EOF. Unless there is something still in the | |
12497 | buffer from the last iteration, we are done. */ | |
12498 | saw_eof = 1; | |
12499 | if (bytes_in_buffer == 0) | |
12500 | break; | |
12501 | } | |
12502 | } | |
12503 | } | |
12504 | else | |
12505 | bytes = 0; | |
12506 | ||
12507 | bytes += bytes_in_buffer; | |
12508 | bytes_in_buffer = 0; | |
12509 | ||
5ca3b260 | 12510 | retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes, |
3e43a32a | 12511 | offset, &remote_errno); |
a6b151f1 DJ |
12512 | |
12513 | if (retcode < 0) | |
12514 | remote_hostio_error (remote_errno); | |
12515 | else if (retcode == 0) | |
12516 | error (_("Remote write of %d bytes returned 0!"), bytes); | |
12517 | else if (retcode < bytes) | |
12518 | { | |
12519 | /* Short write. Save the rest of the read data for the next | |
12520 | write. */ | |
12521 | bytes_in_buffer = bytes - retcode; | |
5ca3b260 | 12522 | memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer); |
a6b151f1 DJ |
12523 | } |
12524 | ||
12525 | offset += retcode; | |
12526 | } | |
12527 | ||
6b8edb51 | 12528 | if (remote_hostio_close (fd.release (), &remote_errno)) |
a6b151f1 DJ |
12529 | remote_hostio_error (remote_errno); |
12530 | ||
12531 | if (from_tty) | |
12532 | printf_filtered (_("Successfully sent file \"%s\".\n"), local_file); | |
a6b151f1 DJ |
12533 | } |
12534 | ||
12535 | void | |
12536 | remote_file_get (const char *remote_file, const char *local_file, int from_tty) | |
6b8edb51 PA |
12537 | { |
12538 | remote_target *remote = get_current_remote_target (); | |
12539 | ||
12540 | if (remote == nullptr) | |
12541 | error (_("command can only be used with remote target")); | |
12542 | ||
12543 | remote->remote_file_get (remote_file, local_file, from_tty); | |
12544 | } | |
12545 | ||
12546 | void | |
12547 | remote_target::remote_file_get (const char *remote_file, const char *local_file, | |
12548 | int from_tty) | |
a6b151f1 | 12549 | { |
440b7aec | 12550 | int remote_errno, bytes, io_size; |
a6b151f1 | 12551 | ULONGEST offset; |
a6b151f1 | 12552 | |
440b7aec | 12553 | scoped_remote_fd fd |
6b8edb51 PA |
12554 | (this, remote_hostio_open (NULL, |
12555 | remote_file, FILEIO_O_RDONLY, 0, 0, | |
12556 | &remote_errno)); | |
440b7aec | 12557 | if (fd.get () == -1) |
a6b151f1 DJ |
12558 | remote_hostio_error (remote_errno); |
12559 | ||
d419f42d | 12560 | gdb_file_up file = gdb_fopen_cloexec (local_file, "wb"); |
a6b151f1 DJ |
12561 | if (file == NULL) |
12562 | perror_with_name (local_file); | |
a6b151f1 DJ |
12563 | |
12564 | /* Send up to this many bytes at once. They won't all fit in the | |
12565 | remote packet limit, so we'll transfer slightly fewer. */ | |
12566 | io_size = get_remote_packet_size (); | |
5ca3b260 | 12567 | gdb::byte_vector buffer (io_size); |
a6b151f1 | 12568 | |
a6b151f1 DJ |
12569 | offset = 0; |
12570 | while (1) | |
12571 | { | |
5ca3b260 | 12572 | bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset, |
440b7aec | 12573 | &remote_errno); |
a6b151f1 DJ |
12574 | if (bytes == 0) |
12575 | /* Success, but no bytes, means end-of-file. */ | |
12576 | break; | |
12577 | if (bytes == -1) | |
12578 | remote_hostio_error (remote_errno); | |
12579 | ||
12580 | offset += bytes; | |
12581 | ||
5ca3b260 | 12582 | bytes = fwrite (buffer.data (), 1, bytes, file.get ()); |
a6b151f1 DJ |
12583 | if (bytes == 0) |
12584 | perror_with_name (local_file); | |
12585 | } | |
12586 | ||
6b8edb51 | 12587 | if (remote_hostio_close (fd.release (), &remote_errno)) |
a6b151f1 DJ |
12588 | remote_hostio_error (remote_errno); |
12589 | ||
12590 | if (from_tty) | |
12591 | printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file); | |
a6b151f1 DJ |
12592 | } |
12593 | ||
12594 | void | |
12595 | remote_file_delete (const char *remote_file, int from_tty) | |
12596 | { | |
6b8edb51 | 12597 | remote_target *remote = get_current_remote_target (); |
a6b151f1 | 12598 | |
6b8edb51 | 12599 | if (remote == nullptr) |
a6b151f1 DJ |
12600 | error (_("command can only be used with remote target")); |
12601 | ||
6b8edb51 PA |
12602 | remote->remote_file_delete (remote_file, from_tty); |
12603 | } | |
12604 | ||
12605 | void | |
12606 | remote_target::remote_file_delete (const char *remote_file, int from_tty) | |
12607 | { | |
12608 | int retcode, remote_errno; | |
12609 | ||
12610 | retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno); | |
a6b151f1 DJ |
12611 | if (retcode == -1) |
12612 | remote_hostio_error (remote_errno); | |
12613 | ||
12614 | if (from_tty) | |
12615 | printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file); | |
12616 | } | |
12617 | ||
12618 | static void | |
ac88e2de | 12619 | remote_put_command (const char *args, int from_tty) |
a6b151f1 | 12620 | { |
d1a41061 PP |
12621 | if (args == NULL) |
12622 | error_no_arg (_("file to put")); | |
12623 | ||
773a1edc | 12624 | gdb_argv argv (args); |
a6b151f1 DJ |
12625 | if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL) |
12626 | error (_("Invalid parameters to remote put")); | |
12627 | ||
12628 | remote_file_put (argv[0], argv[1], from_tty); | |
a6b151f1 DJ |
12629 | } |
12630 | ||
12631 | static void | |
ac88e2de | 12632 | remote_get_command (const char *args, int from_tty) |
a6b151f1 | 12633 | { |
d1a41061 PP |
12634 | if (args == NULL) |
12635 | error_no_arg (_("file to get")); | |
12636 | ||
773a1edc | 12637 | gdb_argv argv (args); |
a6b151f1 DJ |
12638 | if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL) |
12639 | error (_("Invalid parameters to remote get")); | |
12640 | ||
12641 | remote_file_get (argv[0], argv[1], from_tty); | |
a6b151f1 DJ |
12642 | } |
12643 | ||
12644 | static void | |
ac88e2de | 12645 | remote_delete_command (const char *args, int from_tty) |
a6b151f1 | 12646 | { |
d1a41061 PP |
12647 | if (args == NULL) |
12648 | error_no_arg (_("file to delete")); | |
12649 | ||
773a1edc | 12650 | gdb_argv argv (args); |
a6b151f1 DJ |
12651 | if (argv[0] == NULL || argv[1] != NULL) |
12652 | error (_("Invalid parameters to remote delete")); | |
12653 | ||
12654 | remote_file_delete (argv[0], from_tty); | |
a6b151f1 DJ |
12655 | } |
12656 | ||
12657 | static void | |
981a3fb3 | 12658 | remote_command (const char *args, int from_tty) |
a6b151f1 | 12659 | { |
635c7e8a | 12660 | help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout); |
a6b151f1 DJ |
12661 | } |
12662 | ||
57810aa7 | 12663 | bool |
f6ac5f3d | 12664 | remote_target::can_execute_reverse () |
b2175913 | 12665 | { |
4082afcc PA |
12666 | if (packet_support (PACKET_bs) == PACKET_ENABLE |
12667 | || packet_support (PACKET_bc) == PACKET_ENABLE) | |
57810aa7 | 12668 | return true; |
40ab02ce | 12669 | else |
57810aa7 | 12670 | return false; |
b2175913 MS |
12671 | } |
12672 | ||
57810aa7 | 12673 | bool |
f6ac5f3d | 12674 | remote_target::supports_non_stop () |
74531fed | 12675 | { |
57810aa7 | 12676 | return true; |
74531fed PA |
12677 | } |
12678 | ||
57810aa7 | 12679 | bool |
f6ac5f3d | 12680 | remote_target::supports_disable_randomization () |
03583c20 UW |
12681 | { |
12682 | /* Only supported in extended mode. */ | |
57810aa7 | 12683 | return false; |
03583c20 UW |
12684 | } |
12685 | ||
57810aa7 | 12686 | bool |
f6ac5f3d | 12687 | remote_target::supports_multi_process () |
8a305172 PA |
12688 | { |
12689 | struct remote_state *rs = get_remote_state (); | |
a744cf53 | 12690 | |
8020350c | 12691 | return remote_multi_process_p (rs); |
8a305172 PA |
12692 | } |
12693 | ||
70221824 | 12694 | static int |
f6ac5f3d | 12695 | remote_supports_cond_tracepoints () |
782b2b07 | 12696 | { |
4082afcc | 12697 | return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE; |
782b2b07 SS |
12698 | } |
12699 | ||
57810aa7 | 12700 | bool |
f6ac5f3d | 12701 | remote_target::supports_evaluation_of_breakpoint_conditions () |
3788aec7 | 12702 | { |
4082afcc | 12703 | return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE; |
3788aec7 LM |
12704 | } |
12705 | ||
70221824 | 12706 | static int |
f6ac5f3d | 12707 | remote_supports_fast_tracepoints () |
7a697b8d | 12708 | { |
4082afcc | 12709 | return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE; |
7a697b8d SS |
12710 | } |
12711 | ||
0fb4aa4b | 12712 | static int |
f6ac5f3d | 12713 | remote_supports_static_tracepoints () |
0fb4aa4b | 12714 | { |
4082afcc | 12715 | return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE; |
0fb4aa4b PA |
12716 | } |
12717 | ||
1e4d1764 | 12718 | static int |
f6ac5f3d | 12719 | remote_supports_install_in_trace () |
1e4d1764 | 12720 | { |
4082afcc | 12721 | return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE; |
1e4d1764 YQ |
12722 | } |
12723 | ||
57810aa7 | 12724 | bool |
f6ac5f3d | 12725 | remote_target::supports_enable_disable_tracepoint () |
d248b706 | 12726 | { |
4082afcc PA |
12727 | return (packet_support (PACKET_EnableDisableTracepoints_feature) |
12728 | == PACKET_ENABLE); | |
d248b706 KY |
12729 | } |
12730 | ||
57810aa7 | 12731 | bool |
f6ac5f3d | 12732 | remote_target::supports_string_tracing () |
3065dfb6 | 12733 | { |
4082afcc | 12734 | return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE; |
3065dfb6 SS |
12735 | } |
12736 | ||
57810aa7 | 12737 | bool |
f6ac5f3d | 12738 | remote_target::can_run_breakpoint_commands () |
d3ce09f5 | 12739 | { |
4082afcc | 12740 | return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE; |
d3ce09f5 SS |
12741 | } |
12742 | ||
f6ac5f3d PA |
12743 | void |
12744 | remote_target::trace_init () | |
35b1e5cc | 12745 | { |
b6bb3468 PA |
12746 | struct remote_state *rs = get_remote_state (); |
12747 | ||
35b1e5cc | 12748 | putpkt ("QTinit"); |
b6bb3468 | 12749 | remote_get_noisy_reply (); |
8d64371b | 12750 | if (strcmp (rs->buf.data (), "OK") != 0) |
35b1e5cc SS |
12751 | error (_("Target does not support this command.")); |
12752 | } | |
12753 | ||
409873ef SS |
12754 | /* Recursive routine to walk through command list including loops, and |
12755 | download packets for each command. */ | |
12756 | ||
6b8edb51 PA |
12757 | void |
12758 | remote_target::remote_download_command_source (int num, ULONGEST addr, | |
12759 | struct command_line *cmds) | |
409873ef SS |
12760 | { |
12761 | struct remote_state *rs = get_remote_state (); | |
12762 | struct command_line *cmd; | |
12763 | ||
12764 | for (cmd = cmds; cmd; cmd = cmd->next) | |
12765 | { | |
0df8b418 | 12766 | QUIT; /* Allow user to bail out with ^C. */ |
8d64371b | 12767 | strcpy (rs->buf.data (), "QTDPsrc:"); |
409873ef | 12768 | encode_source_string (num, addr, "cmd", cmd->line, |
8d64371b TT |
12769 | rs->buf.data () + strlen (rs->buf.data ()), |
12770 | rs->buf.size () - strlen (rs->buf.data ())); | |
409873ef | 12771 | putpkt (rs->buf); |
b6bb3468 | 12772 | remote_get_noisy_reply (); |
8d64371b | 12773 | if (strcmp (rs->buf.data (), "OK")) |
409873ef SS |
12774 | warning (_("Target does not support source download.")); |
12775 | ||
12776 | if (cmd->control_type == while_control | |
12777 | || cmd->control_type == while_stepping_control) | |
12778 | { | |
12973681 | 12779 | remote_download_command_source (num, addr, cmd->body_list_0.get ()); |
409873ef | 12780 | |
0df8b418 | 12781 | QUIT; /* Allow user to bail out with ^C. */ |
8d64371b | 12782 | strcpy (rs->buf.data (), "QTDPsrc:"); |
409873ef | 12783 | encode_source_string (num, addr, "cmd", "end", |
8d64371b TT |
12784 | rs->buf.data () + strlen (rs->buf.data ()), |
12785 | rs->buf.size () - strlen (rs->buf.data ())); | |
409873ef | 12786 | putpkt (rs->buf); |
b6bb3468 | 12787 | remote_get_noisy_reply (); |
8d64371b | 12788 | if (strcmp (rs->buf.data (), "OK")) |
409873ef SS |
12789 | warning (_("Target does not support source download.")); |
12790 | } | |
12791 | } | |
12792 | } | |
12793 | ||
f6ac5f3d PA |
12794 | void |
12795 | remote_target::download_tracepoint (struct bp_location *loc) | |
35b1e5cc SS |
12796 | { |
12797 | CORE_ADDR tpaddr; | |
409873ef | 12798 | char addrbuf[40]; |
b44ec619 SM |
12799 | std::vector<std::string> tdp_actions; |
12800 | std::vector<std::string> stepping_actions; | |
35b1e5cc | 12801 | char *pkt; |
e8ba3115 | 12802 | struct breakpoint *b = loc->owner; |
d9b3f62e | 12803 | struct tracepoint *t = (struct tracepoint *) b; |
b6bb3468 | 12804 | struct remote_state *rs = get_remote_state (); |
3df3a985 | 12805 | int ret; |
ff36536c | 12806 | const char *err_msg = _("Tracepoint packet too large for target."); |
3df3a985 PFC |
12807 | size_t size_left; |
12808 | ||
12809 | /* We use a buffer other than rs->buf because we'll build strings | |
12810 | across multiple statements, and other statements in between could | |
12811 | modify rs->buf. */ | |
12812 | gdb::char_vector buf (get_remote_packet_size ()); | |
35b1e5cc | 12813 | |
dc673c81 | 12814 | encode_actions_rsp (loc, &tdp_actions, &stepping_actions); |
e8ba3115 YQ |
12815 | |
12816 | tpaddr = loc->address; | |
12817 | sprintf_vma (addrbuf, tpaddr); | |
3df3a985 PFC |
12818 | ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x", |
12819 | b->number, addrbuf, /* address */ | |
12820 | (b->enable_state == bp_enabled ? 'E' : 'D'), | |
12821 | t->step_count, t->pass_count); | |
12822 | ||
12823 | if (ret < 0 || ret >= buf.size ()) | |
a7f25a84 | 12824 | error ("%s", err_msg); |
3df3a985 | 12825 | |
e8ba3115 YQ |
12826 | /* Fast tracepoints are mostly handled by the target, but we can |
12827 | tell the target how big of an instruction block should be moved | |
12828 | around. */ | |
12829 | if (b->type == bp_fast_tracepoint) | |
12830 | { | |
12831 | /* Only test for support at download time; we may not know | |
12832 | target capabilities at definition time. */ | |
12833 | if (remote_supports_fast_tracepoints ()) | |
35b1e5cc | 12834 | { |
6b940e6a PL |
12835 | if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr, |
12836 | NULL)) | |
3df3a985 PFC |
12837 | { |
12838 | size_left = buf.size () - strlen (buf.data ()); | |
12839 | ret = snprintf (buf.data () + strlen (buf.data ()), | |
12840 | size_left, ":F%x", | |
12841 | gdb_insn_length (loc->gdbarch, tpaddr)); | |
12842 | ||
12843 | if (ret < 0 || ret >= size_left) | |
a7f25a84 | 12844 | error ("%s", err_msg); |
3df3a985 | 12845 | } |
35b1e5cc | 12846 | else |
e8ba3115 YQ |
12847 | /* If it passed validation at definition but fails now, |
12848 | something is very wrong. */ | |
12849 | internal_error (__FILE__, __LINE__, | |
12850 | _("Fast tracepoint not " | |
12851 | "valid during download")); | |
35b1e5cc | 12852 | } |
e8ba3115 YQ |
12853 | else |
12854 | /* Fast tracepoints are functionally identical to regular | |
12855 | tracepoints, so don't take lack of support as a reason to | |
12856 | give up on the trace run. */ | |
12857 | warning (_("Target does not support fast tracepoints, " | |
12858 | "downloading %d as regular tracepoint"), b->number); | |
12859 | } | |
12860 | else if (b->type == bp_static_tracepoint) | |
12861 | { | |
12862 | /* Only test for support at download time; we may not know | |
12863 | target capabilities at definition time. */ | |
12864 | if (remote_supports_static_tracepoints ()) | |
0fb4aa4b | 12865 | { |
e8ba3115 | 12866 | struct static_tracepoint_marker marker; |
0fb4aa4b | 12867 | |
e8ba3115 | 12868 | if (target_static_tracepoint_marker_at (tpaddr, &marker)) |
3df3a985 PFC |
12869 | { |
12870 | size_left = buf.size () - strlen (buf.data ()); | |
12871 | ret = snprintf (buf.data () + strlen (buf.data ()), | |
12872 | size_left, ":S"); | |
12873 | ||
12874 | if (ret < 0 || ret >= size_left) | |
a7f25a84 | 12875 | error ("%s", err_msg); |
3df3a985 | 12876 | } |
0fb4aa4b | 12877 | else |
e8ba3115 | 12878 | error (_("Static tracepoint not valid during download")); |
0fb4aa4b | 12879 | } |
e8ba3115 YQ |
12880 | else |
12881 | /* Fast tracepoints are functionally identical to regular | |
12882 | tracepoints, so don't take lack of support as a reason | |
12883 | to give up on the trace run. */ | |
12884 | error (_("Target does not support static tracepoints")); | |
12885 | } | |
12886 | /* If the tracepoint has a conditional, make it into an agent | |
12887 | expression and append to the definition. */ | |
12888 | if (loc->cond) | |
12889 | { | |
12890 | /* Only test support at download time, we may not know target | |
12891 | capabilities at definition time. */ | |
12892 | if (remote_supports_cond_tracepoints ()) | |
35b1e5cc | 12893 | { |
3df3a985 PFC |
12894 | agent_expr_up aexpr = gen_eval_for_expr (tpaddr, |
12895 | loc->cond.get ()); | |
12896 | ||
12897 | size_left = buf.size () - strlen (buf.data ()); | |
12898 | ||
12899 | ret = snprintf (buf.data () + strlen (buf.data ()), | |
12900 | size_left, ":X%x,", aexpr->len); | |
12901 | ||
12902 | if (ret < 0 || ret >= size_left) | |
a7f25a84 | 12903 | error ("%s", err_msg); |
3df3a985 PFC |
12904 | |
12905 | size_left = buf.size () - strlen (buf.data ()); | |
12906 | ||
12907 | /* Two bytes to encode each aexpr byte, plus the terminating | |
12908 | null byte. */ | |
12909 | if (aexpr->len * 2 + 1 > size_left) | |
a7f25a84 | 12910 | error ("%s", err_msg); |
3df3a985 PFC |
12911 | |
12912 | pkt = buf.data () + strlen (buf.data ()); | |
12913 | ||
b44ec619 | 12914 | for (int ndx = 0; ndx < aexpr->len; ++ndx) |
e8ba3115 YQ |
12915 | pkt = pack_hex_byte (pkt, aexpr->buf[ndx]); |
12916 | *pkt = '\0'; | |
35b1e5cc | 12917 | } |
e8ba3115 YQ |
12918 | else |
12919 | warning (_("Target does not support conditional tracepoints, " | |
12920 | "ignoring tp %d cond"), b->number); | |
12921 | } | |
35b1e5cc | 12922 | |
d9b3f62e | 12923 | if (b->commands || *default_collect) |
3df3a985 PFC |
12924 | { |
12925 | size_left = buf.size () - strlen (buf.data ()); | |
12926 | ||
12927 | ret = snprintf (buf.data () + strlen (buf.data ()), | |
12928 | size_left, "-"); | |
12929 | ||
12930 | if (ret < 0 || ret >= size_left) | |
a7f25a84 | 12931 | error ("%s", err_msg); |
3df3a985 PFC |
12932 | } |
12933 | ||
12934 | putpkt (buf.data ()); | |
b6bb3468 | 12935 | remote_get_noisy_reply (); |
8d64371b | 12936 | if (strcmp (rs->buf.data (), "OK")) |
e8ba3115 | 12937 | error (_("Target does not support tracepoints.")); |
35b1e5cc | 12938 | |
e8ba3115 | 12939 | /* do_single_steps (t); */ |
b44ec619 SM |
12940 | for (auto action_it = tdp_actions.begin (); |
12941 | action_it != tdp_actions.end (); action_it++) | |
e8ba3115 | 12942 | { |
b44ec619 SM |
12943 | QUIT; /* Allow user to bail out with ^C. */ |
12944 | ||
aa6f3694 | 12945 | bool has_more = ((action_it + 1) != tdp_actions.end () |
b44ec619 SM |
12946 | || !stepping_actions.empty ()); |
12947 | ||
3df3a985 PFC |
12948 | ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c", |
12949 | b->number, addrbuf, /* address */ | |
12950 | action_it->c_str (), | |
12951 | has_more ? '-' : 0); | |
12952 | ||
12953 | if (ret < 0 || ret >= buf.size ()) | |
a7f25a84 | 12954 | error ("%s", err_msg); |
3df3a985 PFC |
12955 | |
12956 | putpkt (buf.data ()); | |
b44ec619 | 12957 | remote_get_noisy_reply (); |
8d64371b | 12958 | if (strcmp (rs->buf.data (), "OK")) |
b44ec619 | 12959 | error (_("Error on target while setting tracepoints.")); |
e8ba3115 | 12960 | } |
409873ef | 12961 | |
05abfc39 PFC |
12962 | for (auto action_it = stepping_actions.begin (); |
12963 | action_it != stepping_actions.end (); action_it++) | |
12964 | { | |
12965 | QUIT; /* Allow user to bail out with ^C. */ | |
12966 | ||
12967 | bool is_first = action_it == stepping_actions.begin (); | |
aa6f3694 | 12968 | bool has_more = (action_it + 1) != stepping_actions.end (); |
05abfc39 | 12969 | |
3df3a985 PFC |
12970 | ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s", |
12971 | b->number, addrbuf, /* address */ | |
12972 | is_first ? "S" : "", | |
12973 | action_it->c_str (), | |
12974 | has_more ? "-" : ""); | |
12975 | ||
12976 | if (ret < 0 || ret >= buf.size ()) | |
a7f25a84 | 12977 | error ("%s", err_msg); |
3df3a985 PFC |
12978 | |
12979 | putpkt (buf.data ()); | |
05abfc39 | 12980 | remote_get_noisy_reply (); |
8d64371b | 12981 | if (strcmp (rs->buf.data (), "OK")) |
05abfc39 PFC |
12982 | error (_("Error on target while setting tracepoints.")); |
12983 | } | |
b44ec619 | 12984 | |
4082afcc | 12985 | if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE) |
e8ba3115 | 12986 | { |
f00aae0f | 12987 | if (b->location != NULL) |
409873ef | 12988 | { |
3df3a985 PFC |
12989 | ret = snprintf (buf.data (), buf.size (), "QTDPsrc:"); |
12990 | ||
12991 | if (ret < 0 || ret >= buf.size ()) | |
a7f25a84 | 12992 | error ("%s", err_msg); |
3df3a985 | 12993 | |
f00aae0f | 12994 | encode_source_string (b->number, loc->address, "at", |
d28cd78a | 12995 | event_location_to_string (b->location.get ()), |
3df3a985 PFC |
12996 | buf.data () + strlen (buf.data ()), |
12997 | buf.size () - strlen (buf.data ())); | |
12998 | putpkt (buf.data ()); | |
b6bb3468 | 12999 | remote_get_noisy_reply (); |
8d64371b | 13000 | if (strcmp (rs->buf.data (), "OK")) |
e8ba3115 | 13001 | warning (_("Target does not support source download.")); |
409873ef | 13002 | } |
e8ba3115 YQ |
13003 | if (b->cond_string) |
13004 | { | |
3df3a985 PFC |
13005 | ret = snprintf (buf.data (), buf.size (), "QTDPsrc:"); |
13006 | ||
13007 | if (ret < 0 || ret >= buf.size ()) | |
a7f25a84 | 13008 | error ("%s", err_msg); |
3df3a985 | 13009 | |
e8ba3115 | 13010 | encode_source_string (b->number, loc->address, |
3df3a985 PFC |
13011 | "cond", b->cond_string, |
13012 | buf.data () + strlen (buf.data ()), | |
13013 | buf.size () - strlen (buf.data ())); | |
13014 | putpkt (buf.data ()); | |
b6bb3468 | 13015 | remote_get_noisy_reply (); |
8d64371b | 13016 | if (strcmp (rs->buf.data (), "OK")) |
e8ba3115 YQ |
13017 | warning (_("Target does not support source download.")); |
13018 | } | |
13019 | remote_download_command_source (b->number, loc->address, | |
13020 | breakpoint_commands (b)); | |
35b1e5cc | 13021 | } |
35b1e5cc SS |
13022 | } |
13023 | ||
57810aa7 | 13024 | bool |
f6ac5f3d | 13025 | remote_target::can_download_tracepoint () |
1e4d1764 | 13026 | { |
1e51243a PA |
13027 | struct remote_state *rs = get_remote_state (); |
13028 | struct trace_status *ts; | |
13029 | int status; | |
13030 | ||
13031 | /* Don't try to install tracepoints until we've relocated our | |
13032 | symbols, and fetched and merged the target's tracepoint list with | |
13033 | ours. */ | |
13034 | if (rs->starting_up) | |
57810aa7 | 13035 | return false; |
1e51243a PA |
13036 | |
13037 | ts = current_trace_status (); | |
f6ac5f3d | 13038 | status = get_trace_status (ts); |
1e4d1764 YQ |
13039 | |
13040 | if (status == -1 || !ts->running_known || !ts->running) | |
57810aa7 | 13041 | return false; |
1e4d1764 YQ |
13042 | |
13043 | /* If we are in a tracing experiment, but remote stub doesn't support | |
13044 | installing tracepoint in trace, we have to return. */ | |
13045 | if (!remote_supports_install_in_trace ()) | |
57810aa7 | 13046 | return false; |
1e4d1764 | 13047 | |
57810aa7 | 13048 | return true; |
1e4d1764 YQ |
13049 | } |
13050 | ||
13051 | ||
f6ac5f3d PA |
13052 | void |
13053 | remote_target::download_trace_state_variable (const trace_state_variable &tsv) | |
35b1e5cc SS |
13054 | { |
13055 | struct remote_state *rs = get_remote_state (); | |
00bf0b85 | 13056 | char *p; |
35b1e5cc | 13057 | |
8d64371b | 13058 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:", |
c252925c SM |
13059 | tsv.number, phex ((ULONGEST) tsv.initial_value, 8), |
13060 | tsv.builtin); | |
8d64371b TT |
13061 | p = rs->buf.data () + strlen (rs->buf.data ()); |
13062 | if ((p - rs->buf.data ()) + tsv.name.length () * 2 | |
13063 | >= get_remote_packet_size ()) | |
00bf0b85 | 13064 | error (_("Trace state variable name too long for tsv definition packet")); |
c252925c | 13065 | p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ()); |
00bf0b85 | 13066 | *p++ = '\0'; |
35b1e5cc | 13067 | putpkt (rs->buf); |
b6bb3468 | 13068 | remote_get_noisy_reply (); |
8d64371b | 13069 | if (rs->buf[0] == '\0') |
ad91cd99 | 13070 | error (_("Target does not support this command.")); |
8d64371b | 13071 | if (strcmp (rs->buf.data (), "OK") != 0) |
ad91cd99 | 13072 | error (_("Error on target while downloading trace state variable.")); |
35b1e5cc SS |
13073 | } |
13074 | ||
f6ac5f3d PA |
13075 | void |
13076 | remote_target::enable_tracepoint (struct bp_location *location) | |
d248b706 KY |
13077 | { |
13078 | struct remote_state *rs = get_remote_state (); | |
13079 | char addr_buf[40]; | |
13080 | ||
13081 | sprintf_vma (addr_buf, location->address); | |
8d64371b | 13082 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s", |
bba74b36 | 13083 | location->owner->number, addr_buf); |
d248b706 | 13084 | putpkt (rs->buf); |
b6bb3468 | 13085 | remote_get_noisy_reply (); |
8d64371b | 13086 | if (rs->buf[0] == '\0') |
d248b706 | 13087 | error (_("Target does not support enabling tracepoints while a trace run is ongoing.")); |
8d64371b | 13088 | if (strcmp (rs->buf.data (), "OK") != 0) |
d248b706 KY |
13089 | error (_("Error on target while enabling tracepoint.")); |
13090 | } | |
13091 | ||
f6ac5f3d PA |
13092 | void |
13093 | remote_target::disable_tracepoint (struct bp_location *location) | |
d248b706 KY |
13094 | { |
13095 | struct remote_state *rs = get_remote_state (); | |
13096 | char addr_buf[40]; | |
13097 | ||
13098 | sprintf_vma (addr_buf, location->address); | |
8d64371b | 13099 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s", |
bba74b36 | 13100 | location->owner->number, addr_buf); |
d248b706 | 13101 | putpkt (rs->buf); |
b6bb3468 | 13102 | remote_get_noisy_reply (); |
8d64371b | 13103 | if (rs->buf[0] == '\0') |
d248b706 | 13104 | error (_("Target does not support disabling tracepoints while a trace run is ongoing.")); |
8d64371b | 13105 | if (strcmp (rs->buf.data (), "OK") != 0) |
d248b706 KY |
13106 | error (_("Error on target while disabling tracepoint.")); |
13107 | } | |
13108 | ||
f6ac5f3d PA |
13109 | void |
13110 | remote_target::trace_set_readonly_regions () | |
35b1e5cc SS |
13111 | { |
13112 | asection *s; | |
13113 | bfd_size_type size; | |
608bcef2 | 13114 | bfd_vma vma; |
35b1e5cc | 13115 | int anysecs = 0; |
c2fa21f1 | 13116 | int offset = 0; |
35b1e5cc SS |
13117 | |
13118 | if (!exec_bfd) | |
13119 | return; /* No information to give. */ | |
13120 | ||
b6bb3468 PA |
13121 | struct remote_state *rs = get_remote_state (); |
13122 | ||
8d64371b TT |
13123 | strcpy (rs->buf.data (), "QTro"); |
13124 | offset = strlen (rs->buf.data ()); | |
35b1e5cc SS |
13125 | for (s = exec_bfd->sections; s; s = s->next) |
13126 | { | |
13127 | char tmp1[40], tmp2[40]; | |
c2fa21f1 | 13128 | int sec_length; |
35b1e5cc SS |
13129 | |
13130 | if ((s->flags & SEC_LOAD) == 0 || | |
0df8b418 | 13131 | /* (s->flags & SEC_CODE) == 0 || */ |
35b1e5cc SS |
13132 | (s->flags & SEC_READONLY) == 0) |
13133 | continue; | |
13134 | ||
13135 | anysecs = 1; | |
fd361982 AM |
13136 | vma = bfd_section_vma (s); |
13137 | size = bfd_section_size (s); | |
608bcef2 HZ |
13138 | sprintf_vma (tmp1, vma); |
13139 | sprintf_vma (tmp2, vma + size); | |
c2fa21f1 | 13140 | sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2); |
8d64371b | 13141 | if (offset + sec_length + 1 > rs->buf.size ()) |
c2fa21f1 | 13142 | { |
4082afcc | 13143 | if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE) |
864ac8a7 | 13144 | warning (_("\ |
c2fa21f1 HZ |
13145 | Too many sections for read-only sections definition packet.")); |
13146 | break; | |
13147 | } | |
8d64371b | 13148 | xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s", |
bba74b36 | 13149 | tmp1, tmp2); |
c2fa21f1 | 13150 | offset += sec_length; |
35b1e5cc SS |
13151 | } |
13152 | if (anysecs) | |
13153 | { | |
b6bb3468 | 13154 | putpkt (rs->buf); |
8d64371b | 13155 | getpkt (&rs->buf, 0); |
35b1e5cc SS |
13156 | } |
13157 | } | |
13158 | ||
f6ac5f3d PA |
13159 | void |
13160 | remote_target::trace_start () | |
35b1e5cc | 13161 | { |
b6bb3468 PA |
13162 | struct remote_state *rs = get_remote_state (); |
13163 | ||
35b1e5cc | 13164 | putpkt ("QTStart"); |
b6bb3468 | 13165 | remote_get_noisy_reply (); |
8d64371b | 13166 | if (rs->buf[0] == '\0') |
ad91cd99 | 13167 | error (_("Target does not support this command.")); |
8d64371b TT |
13168 | if (strcmp (rs->buf.data (), "OK") != 0) |
13169 | error (_("Bogus reply from target: %s"), rs->buf.data ()); | |
35b1e5cc SS |
13170 | } |
13171 | ||
f6ac5f3d PA |
13172 | int |
13173 | remote_target::get_trace_status (struct trace_status *ts) | |
35b1e5cc | 13174 | { |
953b98d1 | 13175 | /* Initialize it just to avoid a GCC false warning. */ |
f652de6f | 13176 | char *p = NULL; |
bd3eecc3 | 13177 | enum packet_result result; |
b6bb3468 | 13178 | struct remote_state *rs = get_remote_state (); |
bd3eecc3 | 13179 | |
4082afcc | 13180 | if (packet_support (PACKET_qTStatus) == PACKET_DISABLE) |
bd3eecc3 | 13181 | return -1; |
a744cf53 | 13182 | |
7b9a15e1 | 13183 | /* FIXME we need to get register block size some other way. */ |
5cd63fda | 13184 | trace_regblock_size |
9d6eea31 | 13185 | = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet; |
00bf0b85 | 13186 | |
049dc89b JK |
13187 | putpkt ("qTStatus"); |
13188 | ||
a70b8144 | 13189 | try |
67f41397 | 13190 | { |
b6bb3468 | 13191 | p = remote_get_noisy_reply (); |
67f41397 | 13192 | } |
230d2906 | 13193 | catch (const gdb_exception_error &ex) |
67f41397 | 13194 | { |
598d3636 JK |
13195 | if (ex.error != TARGET_CLOSE_ERROR) |
13196 | { | |
13197 | exception_fprintf (gdb_stderr, ex, "qTStatus: "); | |
13198 | return -1; | |
13199 | } | |
eedc3f4f | 13200 | throw; |
67f41397 | 13201 | } |
00bf0b85 | 13202 | |
bd3eecc3 PA |
13203 | result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]); |
13204 | ||
00bf0b85 | 13205 | /* If the remote target doesn't do tracing, flag it. */ |
bd3eecc3 | 13206 | if (result == PACKET_UNKNOWN) |
00bf0b85 | 13207 | return -1; |
35b1e5cc | 13208 | |
00bf0b85 | 13209 | /* We're working with a live target. */ |
f5911ea1 | 13210 | ts->filename = NULL; |
00bf0b85 | 13211 | |
00bf0b85 | 13212 | if (*p++ != 'T') |
8d64371b | 13213 | error (_("Bogus trace status reply from target: %s"), rs->buf.data ()); |
35b1e5cc | 13214 | |
84cebc4a YQ |
13215 | /* Function 'parse_trace_status' sets default value of each field of |
13216 | 'ts' at first, so we don't have to do it here. */ | |
00bf0b85 SS |
13217 | parse_trace_status (p, ts); |
13218 | ||
13219 | return ts->running; | |
35b1e5cc SS |
13220 | } |
13221 | ||
f6ac5f3d PA |
13222 | void |
13223 | remote_target::get_tracepoint_status (struct breakpoint *bp, | |
13224 | struct uploaded_tp *utp) | |
f196051f SS |
13225 | { |
13226 | struct remote_state *rs = get_remote_state (); | |
f196051f SS |
13227 | char *reply; |
13228 | struct bp_location *loc; | |
13229 | struct tracepoint *tp = (struct tracepoint *) bp; | |
bba74b36 | 13230 | size_t size = get_remote_packet_size (); |
f196051f SS |
13231 | |
13232 | if (tp) | |
13233 | { | |
c1fc2657 | 13234 | tp->hit_count = 0; |
f196051f | 13235 | tp->traceframe_usage = 0; |
c1fc2657 | 13236 | for (loc = tp->loc; loc; loc = loc->next) |
f196051f SS |
13237 | { |
13238 | /* If the tracepoint was never downloaded, don't go asking for | |
13239 | any status. */ | |
13240 | if (tp->number_on_target == 0) | |
13241 | continue; | |
8d64371b | 13242 | xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target, |
bba74b36 | 13243 | phex_nz (loc->address, 0)); |
f196051f | 13244 | putpkt (rs->buf); |
b6bb3468 | 13245 | reply = remote_get_noisy_reply (); |
f196051f SS |
13246 | if (reply && *reply) |
13247 | { | |
13248 | if (*reply == 'V') | |
13249 | parse_tracepoint_status (reply + 1, bp, utp); | |
13250 | } | |
13251 | } | |
13252 | } | |
13253 | else if (utp) | |
13254 | { | |
13255 | utp->hit_count = 0; | |
13256 | utp->traceframe_usage = 0; | |
8d64371b | 13257 | xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number, |
bba74b36 | 13258 | phex_nz (utp->addr, 0)); |
f196051f | 13259 | putpkt (rs->buf); |
b6bb3468 | 13260 | reply = remote_get_noisy_reply (); |
f196051f SS |
13261 | if (reply && *reply) |
13262 | { | |
13263 | if (*reply == 'V') | |
13264 | parse_tracepoint_status (reply + 1, bp, utp); | |
13265 | } | |
13266 | } | |
13267 | } | |
13268 | ||
f6ac5f3d PA |
13269 | void |
13270 | remote_target::trace_stop () | |
35b1e5cc | 13271 | { |
b6bb3468 PA |
13272 | struct remote_state *rs = get_remote_state (); |
13273 | ||
35b1e5cc | 13274 | putpkt ("QTStop"); |
b6bb3468 | 13275 | remote_get_noisy_reply (); |
8d64371b | 13276 | if (rs->buf[0] == '\0') |
ad91cd99 | 13277 | error (_("Target does not support this command.")); |
8d64371b TT |
13278 | if (strcmp (rs->buf.data (), "OK") != 0) |
13279 | error (_("Bogus reply from target: %s"), rs->buf.data ()); | |
35b1e5cc SS |
13280 | } |
13281 | ||
f6ac5f3d PA |
13282 | int |
13283 | remote_target::trace_find (enum trace_find_type type, int num, | |
13284 | CORE_ADDR addr1, CORE_ADDR addr2, | |
13285 | int *tpp) | |
35b1e5cc SS |
13286 | { |
13287 | struct remote_state *rs = get_remote_state (); | |
8d64371b | 13288 | char *endbuf = rs->buf.data () + get_remote_packet_size (); |
35b1e5cc SS |
13289 | char *p, *reply; |
13290 | int target_frameno = -1, target_tracept = -1; | |
13291 | ||
e6e4e701 PA |
13292 | /* Lookups other than by absolute frame number depend on the current |
13293 | trace selected, so make sure it is correct on the remote end | |
13294 | first. */ | |
13295 | if (type != tfind_number) | |
13296 | set_remote_traceframe (); | |
13297 | ||
8d64371b | 13298 | p = rs->buf.data (); |
35b1e5cc SS |
13299 | strcpy (p, "QTFrame:"); |
13300 | p = strchr (p, '\0'); | |
13301 | switch (type) | |
13302 | { | |
13303 | case tfind_number: | |
bba74b36 | 13304 | xsnprintf (p, endbuf - p, "%x", num); |
35b1e5cc SS |
13305 | break; |
13306 | case tfind_pc: | |
bba74b36 | 13307 | xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0)); |
35b1e5cc SS |
13308 | break; |
13309 | case tfind_tp: | |
bba74b36 | 13310 | xsnprintf (p, endbuf - p, "tdp:%x", num); |
35b1e5cc SS |
13311 | break; |
13312 | case tfind_range: | |
bba74b36 YQ |
13313 | xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0), |
13314 | phex_nz (addr2, 0)); | |
35b1e5cc SS |
13315 | break; |
13316 | case tfind_outside: | |
bba74b36 YQ |
13317 | xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0), |
13318 | phex_nz (addr2, 0)); | |
35b1e5cc SS |
13319 | break; |
13320 | default: | |
9b20d036 | 13321 | error (_("Unknown trace find type %d"), type); |
35b1e5cc SS |
13322 | } |
13323 | ||
13324 | putpkt (rs->buf); | |
b6bb3468 | 13325 | reply = remote_get_noisy_reply (); |
ad91cd99 PA |
13326 | if (*reply == '\0') |
13327 | error (_("Target does not support this command.")); | |
35b1e5cc SS |
13328 | |
13329 | while (reply && *reply) | |
13330 | switch (*reply) | |
13331 | { | |
13332 | case 'F': | |
f197e0f1 VP |
13333 | p = ++reply; |
13334 | target_frameno = (int) strtol (p, &reply, 16); | |
13335 | if (reply == p) | |
13336 | error (_("Unable to parse trace frame number")); | |
e6e4e701 PA |
13337 | /* Don't update our remote traceframe number cache on failure |
13338 | to select a remote traceframe. */ | |
f197e0f1 VP |
13339 | if (target_frameno == -1) |
13340 | return -1; | |
35b1e5cc SS |
13341 | break; |
13342 | case 'T': | |
f197e0f1 VP |
13343 | p = ++reply; |
13344 | target_tracept = (int) strtol (p, &reply, 16); | |
13345 | if (reply == p) | |
13346 | error (_("Unable to parse tracepoint number")); | |
35b1e5cc SS |
13347 | break; |
13348 | case 'O': /* "OK"? */ | |
13349 | if (reply[1] == 'K' && reply[2] == '\0') | |
13350 | reply += 2; | |
13351 | else | |
13352 | error (_("Bogus reply from target: %s"), reply); | |
13353 | break; | |
13354 | default: | |
13355 | error (_("Bogus reply from target: %s"), reply); | |
13356 | } | |
13357 | if (tpp) | |
13358 | *tpp = target_tracept; | |
e6e4e701 | 13359 | |
262e1174 | 13360 | rs->remote_traceframe_number = target_frameno; |
35b1e5cc SS |
13361 | return target_frameno; |
13362 | } | |
13363 | ||
57810aa7 | 13364 | bool |
f6ac5f3d | 13365 | remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val) |
35b1e5cc SS |
13366 | { |
13367 | struct remote_state *rs = get_remote_state (); | |
13368 | char *reply; | |
13369 | ULONGEST uval; | |
13370 | ||
e6e4e701 PA |
13371 | set_remote_traceframe (); |
13372 | ||
8d64371b | 13373 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum); |
35b1e5cc | 13374 | putpkt (rs->buf); |
b6bb3468 | 13375 | reply = remote_get_noisy_reply (); |
35b1e5cc SS |
13376 | if (reply && *reply) |
13377 | { | |
13378 | if (*reply == 'V') | |
13379 | { | |
13380 | unpack_varlen_hex (reply + 1, &uval); | |
13381 | *val = (LONGEST) uval; | |
57810aa7 | 13382 | return true; |
35b1e5cc SS |
13383 | } |
13384 | } | |
57810aa7 | 13385 | return false; |
35b1e5cc SS |
13386 | } |
13387 | ||
f6ac5f3d PA |
13388 | int |
13389 | remote_target::save_trace_data (const char *filename) | |
00bf0b85 SS |
13390 | { |
13391 | struct remote_state *rs = get_remote_state (); | |
13392 | char *p, *reply; | |
13393 | ||
8d64371b | 13394 | p = rs->buf.data (); |
00bf0b85 SS |
13395 | strcpy (p, "QTSave:"); |
13396 | p += strlen (p); | |
8d64371b TT |
13397 | if ((p - rs->buf.data ()) + strlen (filename) * 2 |
13398 | >= get_remote_packet_size ()) | |
00bf0b85 | 13399 | error (_("Remote file name too long for trace save packet")); |
9f1b45b0 | 13400 | p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename)); |
00bf0b85 SS |
13401 | *p++ = '\0'; |
13402 | putpkt (rs->buf); | |
b6bb3468 | 13403 | reply = remote_get_noisy_reply (); |
d6c5869f | 13404 | if (*reply == '\0') |
ad91cd99 PA |
13405 | error (_("Target does not support this command.")); |
13406 | if (strcmp (reply, "OK") != 0) | |
13407 | error (_("Bogus reply from target: %s"), reply); | |
00bf0b85 SS |
13408 | return 0; |
13409 | } | |
13410 | ||
13411 | /* This is basically a memory transfer, but needs to be its own packet | |
13412 | because we don't know how the target actually organizes its trace | |
13413 | memory, plus we want to be able to ask for as much as possible, but | |
13414 | not be unhappy if we don't get as much as we ask for. */ | |
13415 | ||
f6ac5f3d PA |
13416 | LONGEST |
13417 | remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) | |
00bf0b85 SS |
13418 | { |
13419 | struct remote_state *rs = get_remote_state (); | |
13420 | char *reply; | |
13421 | char *p; | |
13422 | int rslt; | |
13423 | ||
8d64371b | 13424 | p = rs->buf.data (); |
00bf0b85 SS |
13425 | strcpy (p, "qTBuffer:"); |
13426 | p += strlen (p); | |
13427 | p += hexnumstr (p, offset); | |
13428 | *p++ = ','; | |
13429 | p += hexnumstr (p, len); | |
13430 | *p++ = '\0'; | |
13431 | ||
13432 | putpkt (rs->buf); | |
b6bb3468 | 13433 | reply = remote_get_noisy_reply (); |
00bf0b85 SS |
13434 | if (reply && *reply) |
13435 | { | |
13436 | /* 'l' by itself means we're at the end of the buffer and | |
13437 | there is nothing more to get. */ | |
13438 | if (*reply == 'l') | |
13439 | return 0; | |
13440 | ||
13441 | /* Convert the reply into binary. Limit the number of bytes to | |
13442 | convert according to our passed-in buffer size, rather than | |
13443 | what was returned in the packet; if the target is | |
13444 | unexpectedly generous and gives us a bigger reply than we | |
13445 | asked for, we don't want to crash. */ | |
b6bb3468 | 13446 | rslt = hex2bin (reply, buf, len); |
00bf0b85 SS |
13447 | return rslt; |
13448 | } | |
13449 | ||
13450 | /* Something went wrong, flag as an error. */ | |
13451 | return -1; | |
13452 | } | |
13453 | ||
f6ac5f3d PA |
13454 | void |
13455 | remote_target::set_disconnected_tracing (int val) | |
35b1e5cc SS |
13456 | { |
13457 | struct remote_state *rs = get_remote_state (); | |
13458 | ||
4082afcc | 13459 | if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE) |
33da3f1c | 13460 | { |
ad91cd99 PA |
13461 | char *reply; |
13462 | ||
8d64371b TT |
13463 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
13464 | "QTDisconnected:%x", val); | |
33da3f1c | 13465 | putpkt (rs->buf); |
b6bb3468 | 13466 | reply = remote_get_noisy_reply (); |
ad91cd99 | 13467 | if (*reply == '\0') |
33da3f1c | 13468 | error (_("Target does not support this command.")); |
ad91cd99 PA |
13469 | if (strcmp (reply, "OK") != 0) |
13470 | error (_("Bogus reply from target: %s"), reply); | |
33da3f1c SS |
13471 | } |
13472 | else if (val) | |
13473 | warning (_("Target does not support disconnected tracing.")); | |
35b1e5cc SS |
13474 | } |
13475 | ||
f6ac5f3d PA |
13476 | int |
13477 | remote_target::core_of_thread (ptid_t ptid) | |
dc146f7c | 13478 | { |
5b6d1e4f | 13479 | thread_info *info = find_thread_ptid (this, ptid); |
a744cf53 | 13480 | |
7aabaf9d SM |
13481 | if (info != NULL && info->priv != NULL) |
13482 | return get_remote_thread_info (info)->core; | |
13483 | ||
dc146f7c VP |
13484 | return -1; |
13485 | } | |
13486 | ||
f6ac5f3d PA |
13487 | void |
13488 | remote_target::set_circular_trace_buffer (int val) | |
4daf5ac0 SS |
13489 | { |
13490 | struct remote_state *rs = get_remote_state (); | |
ad91cd99 | 13491 | char *reply; |
4daf5ac0 | 13492 | |
8d64371b TT |
13493 | xsnprintf (rs->buf.data (), get_remote_packet_size (), |
13494 | "QTBuffer:circular:%x", val); | |
4daf5ac0 | 13495 | putpkt (rs->buf); |
b6bb3468 | 13496 | reply = remote_get_noisy_reply (); |
ad91cd99 | 13497 | if (*reply == '\0') |
4daf5ac0 | 13498 | error (_("Target does not support this command.")); |
ad91cd99 PA |
13499 | if (strcmp (reply, "OK") != 0) |
13500 | error (_("Bogus reply from target: %s"), reply); | |
4daf5ac0 SS |
13501 | } |
13502 | ||
f6ac5f3d PA |
13503 | traceframe_info_up |
13504 | remote_target::traceframe_info () | |
b3b9301e | 13505 | { |
9018be22 | 13506 | gdb::optional<gdb::char_vector> text |
8b88a78e | 13507 | = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO, |
b7b030ad | 13508 | NULL); |
9018be22 SM |
13509 | if (text) |
13510 | return parse_traceframe_info (text->data ()); | |
b3b9301e PA |
13511 | |
13512 | return NULL; | |
13513 | } | |
13514 | ||
405f8e94 SS |
13515 | /* Handle the qTMinFTPILen packet. Returns the minimum length of |
13516 | instruction on which a fast tracepoint may be placed. Returns -1 | |
13517 | if the packet is not supported, and 0 if the minimum instruction | |
13518 | length is unknown. */ | |
13519 | ||
f6ac5f3d PA |
13520 | int |
13521 | remote_target::get_min_fast_tracepoint_insn_len () | |
405f8e94 SS |
13522 | { |
13523 | struct remote_state *rs = get_remote_state (); | |
13524 | char *reply; | |
13525 | ||
e886a173 PA |
13526 | /* If we're not debugging a process yet, the IPA can't be |
13527 | loaded. */ | |
13528 | if (!target_has_execution) | |
13529 | return 0; | |
13530 | ||
13531 | /* Make sure the remote is pointing at the right process. */ | |
13532 | set_general_process (); | |
13533 | ||
8d64371b | 13534 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen"); |
405f8e94 | 13535 | putpkt (rs->buf); |
b6bb3468 | 13536 | reply = remote_get_noisy_reply (); |
405f8e94 SS |
13537 | if (*reply == '\0') |
13538 | return -1; | |
13539 | else | |
13540 | { | |
13541 | ULONGEST min_insn_len; | |
13542 | ||
13543 | unpack_varlen_hex (reply, &min_insn_len); | |
13544 | ||
13545 | return (int) min_insn_len; | |
13546 | } | |
13547 | } | |
13548 | ||
f6ac5f3d PA |
13549 | void |
13550 | remote_target::set_trace_buffer_size (LONGEST val) | |
f6f899bf | 13551 | { |
4082afcc | 13552 | if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE) |
f6f899bf HAQ |
13553 | { |
13554 | struct remote_state *rs = get_remote_state (); | |
8d64371b TT |
13555 | char *buf = rs->buf.data (); |
13556 | char *endbuf = buf + get_remote_packet_size (); | |
f6f899bf HAQ |
13557 | enum packet_result result; |
13558 | ||
13559 | gdb_assert (val >= 0 || val == -1); | |
13560 | buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:"); | |
13561 | /* Send -1 as literal "-1" to avoid host size dependency. */ | |
13562 | if (val < 0) | |
13563 | { | |
13564 | *buf++ = '-'; | |
13565 | buf += hexnumstr (buf, (ULONGEST) -val); | |
13566 | } | |
13567 | else | |
13568 | buf += hexnumstr (buf, (ULONGEST) val); | |
13569 | ||
13570 | putpkt (rs->buf); | |
b6bb3468 | 13571 | remote_get_noisy_reply (); |
f6f899bf HAQ |
13572 | result = packet_ok (rs->buf, |
13573 | &remote_protocol_packets[PACKET_QTBuffer_size]); | |
13574 | ||
13575 | if (result != PACKET_OK) | |
8d64371b | 13576 | warning (_("Bogus reply from target: %s"), rs->buf.data ()); |
f6f899bf HAQ |
13577 | } |
13578 | } | |
13579 | ||
57810aa7 | 13580 | bool |
f6ac5f3d PA |
13581 | remote_target::set_trace_notes (const char *user, const char *notes, |
13582 | const char *stop_notes) | |
f196051f SS |
13583 | { |
13584 | struct remote_state *rs = get_remote_state (); | |
13585 | char *reply; | |
8d64371b TT |
13586 | char *buf = rs->buf.data (); |
13587 | char *endbuf = buf + get_remote_packet_size (); | |
f196051f SS |
13588 | int nbytes; |
13589 | ||
13590 | buf += xsnprintf (buf, endbuf - buf, "QTNotes:"); | |
13591 | if (user) | |
13592 | { | |
13593 | buf += xsnprintf (buf, endbuf - buf, "user:"); | |
9f1b45b0 | 13594 | nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user)); |
f196051f SS |
13595 | buf += 2 * nbytes; |
13596 | *buf++ = ';'; | |
13597 | } | |
13598 | if (notes) | |
13599 | { | |
13600 | buf += xsnprintf (buf, endbuf - buf, "notes:"); | |
9f1b45b0 | 13601 | nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes)); |
f196051f SS |
13602 | buf += 2 * nbytes; |
13603 | *buf++ = ';'; | |
13604 | } | |
13605 | if (stop_notes) | |
13606 | { | |
13607 | buf += xsnprintf (buf, endbuf - buf, "tstop:"); | |
9f1b45b0 | 13608 | nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes)); |
f196051f SS |
13609 | buf += 2 * nbytes; |
13610 | *buf++ = ';'; | |
13611 | } | |
13612 | /* Ensure the buffer is terminated. */ | |
13613 | *buf = '\0'; | |
13614 | ||
13615 | putpkt (rs->buf); | |
b6bb3468 | 13616 | reply = remote_get_noisy_reply (); |
f196051f | 13617 | if (*reply == '\0') |
57810aa7 | 13618 | return false; |
f196051f SS |
13619 | |
13620 | if (strcmp (reply, "OK") != 0) | |
13621 | error (_("Bogus reply from target: %s"), reply); | |
13622 | ||
57810aa7 | 13623 | return true; |
f196051f SS |
13624 | } |
13625 | ||
57810aa7 PA |
13626 | bool |
13627 | remote_target::use_agent (bool use) | |
d1feda86 | 13628 | { |
4082afcc | 13629 | if (packet_support (PACKET_QAgent) != PACKET_DISABLE) |
d1feda86 YQ |
13630 | { |
13631 | struct remote_state *rs = get_remote_state (); | |
13632 | ||
13633 | /* If the stub supports QAgent. */ | |
8d64371b | 13634 | xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use); |
d1feda86 | 13635 | putpkt (rs->buf); |
8d64371b | 13636 | getpkt (&rs->buf, 0); |
d1feda86 | 13637 | |
8d64371b | 13638 | if (strcmp (rs->buf.data (), "OK") == 0) |
d1feda86 | 13639 | { |
f6ac5f3d | 13640 | ::use_agent = use; |
57810aa7 | 13641 | return true; |
d1feda86 YQ |
13642 | } |
13643 | } | |
13644 | ||
57810aa7 | 13645 | return false; |
d1feda86 YQ |
13646 | } |
13647 | ||
57810aa7 | 13648 | bool |
f6ac5f3d | 13649 | remote_target::can_use_agent () |
d1feda86 | 13650 | { |
4082afcc | 13651 | return (packet_support (PACKET_QAgent) != PACKET_DISABLE); |
d1feda86 YQ |
13652 | } |
13653 | ||
9accd112 MM |
13654 | struct btrace_target_info |
13655 | { | |
13656 | /* The ptid of the traced thread. */ | |
13657 | ptid_t ptid; | |
f4abbc16 MM |
13658 | |
13659 | /* The obtained branch trace configuration. */ | |
13660 | struct btrace_config conf; | |
9accd112 MM |
13661 | }; |
13662 | ||
f4abbc16 MM |
13663 | /* Reset our idea of our target's btrace configuration. */ |
13664 | ||
13665 | static void | |
6b8edb51 | 13666 | remote_btrace_reset (remote_state *rs) |
f4abbc16 | 13667 | { |
f4abbc16 MM |
13668 | memset (&rs->btrace_config, 0, sizeof (rs->btrace_config)); |
13669 | } | |
13670 | ||
f4abbc16 MM |
13671 | /* Synchronize the configuration with the target. */ |
13672 | ||
6b8edb51 PA |
13673 | void |
13674 | remote_target::btrace_sync_conf (const btrace_config *conf) | |
f4abbc16 | 13675 | { |
d33501a5 MM |
13676 | struct packet_config *packet; |
13677 | struct remote_state *rs; | |
13678 | char *buf, *pos, *endbuf; | |
13679 | ||
13680 | rs = get_remote_state (); | |
8d64371b | 13681 | buf = rs->buf.data (); |
d33501a5 MM |
13682 | endbuf = buf + get_remote_packet_size (); |
13683 | ||
13684 | packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size]; | |
13685 | if (packet_config_support (packet) == PACKET_ENABLE | |
13686 | && conf->bts.size != rs->btrace_config.bts.size) | |
13687 | { | |
13688 | pos = buf; | |
13689 | pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name, | |
13690 | conf->bts.size); | |
13691 | ||
13692 | putpkt (buf); | |
8d64371b | 13693 | getpkt (&rs->buf, 0); |
d33501a5 MM |
13694 | |
13695 | if (packet_ok (buf, packet) == PACKET_ERROR) | |
13696 | { | |
13697 | if (buf[0] == 'E' && buf[1] == '.') | |
13698 | error (_("Failed to configure the BTS buffer size: %s"), buf + 2); | |
13699 | else | |
13700 | error (_("Failed to configure the BTS buffer size.")); | |
13701 | } | |
13702 | ||
13703 | rs->btrace_config.bts.size = conf->bts.size; | |
13704 | } | |
b20a6524 MM |
13705 | |
13706 | packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size]; | |
13707 | if (packet_config_support (packet) == PACKET_ENABLE | |
13708 | && conf->pt.size != rs->btrace_config.pt.size) | |
13709 | { | |
13710 | pos = buf; | |
13711 | pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name, | |
13712 | conf->pt.size); | |
13713 | ||
13714 | putpkt (buf); | |
8d64371b | 13715 | getpkt (&rs->buf, 0); |
b20a6524 MM |
13716 | |
13717 | if (packet_ok (buf, packet) == PACKET_ERROR) | |
13718 | { | |
13719 | if (buf[0] == 'E' && buf[1] == '.') | |
13720 | error (_("Failed to configure the trace buffer size: %s"), buf + 2); | |
13721 | else | |
13722 | error (_("Failed to configure the trace buffer size.")); | |
13723 | } | |
13724 | ||
13725 | rs->btrace_config.pt.size = conf->pt.size; | |
13726 | } | |
f4abbc16 MM |
13727 | } |
13728 | ||
13729 | /* Read the current thread's btrace configuration from the target and | |
13730 | store it into CONF. */ | |
13731 | ||
13732 | static void | |
13733 | btrace_read_config (struct btrace_config *conf) | |
13734 | { | |
9018be22 | 13735 | gdb::optional<gdb::char_vector> xml |
8b88a78e | 13736 | = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, ""); |
9018be22 SM |
13737 | if (xml) |
13738 | parse_xml_btrace_conf (conf, xml->data ()); | |
f4abbc16 MM |
13739 | } |
13740 | ||
c0272db5 TW |
13741 | /* Maybe reopen target btrace. */ |
13742 | ||
6b8edb51 PA |
13743 | void |
13744 | remote_target::remote_btrace_maybe_reopen () | |
c0272db5 TW |
13745 | { |
13746 | struct remote_state *rs = get_remote_state (); | |
c0272db5 | 13747 | int btrace_target_pushed = 0; |
15766370 | 13748 | #if !defined (HAVE_LIBIPT) |
c0272db5 | 13749 | int warned = 0; |
15766370 | 13750 | #endif |
c0272db5 | 13751 | |
aedbe3bb CM |
13752 | /* Don't bother walking the entirety of the remote thread list when |
13753 | we know the feature isn't supported by the remote. */ | |
13754 | if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE) | |
13755 | return; | |
13756 | ||
5ed8105e PA |
13757 | scoped_restore_current_thread restore_thread; |
13758 | ||
5b6d1e4f | 13759 | for (thread_info *tp : all_non_exited_threads (this)) |
c0272db5 TW |
13760 | { |
13761 | set_general_thread (tp->ptid); | |
13762 | ||
13763 | memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config)); | |
13764 | btrace_read_config (&rs->btrace_config); | |
13765 | ||
13766 | if (rs->btrace_config.format == BTRACE_FORMAT_NONE) | |
13767 | continue; | |
13768 | ||
13769 | #if !defined (HAVE_LIBIPT) | |
13770 | if (rs->btrace_config.format == BTRACE_FORMAT_PT) | |
13771 | { | |
13772 | if (!warned) | |
13773 | { | |
13774 | warned = 1; | |
c4e12631 MM |
13775 | warning (_("Target is recording using Intel Processor Trace " |
13776 | "but support was disabled at compile time.")); | |
c0272db5 TW |
13777 | } |
13778 | ||
13779 | continue; | |
13780 | } | |
13781 | #endif /* !defined (HAVE_LIBIPT) */ | |
13782 | ||
13783 | /* Push target, once, but before anything else happens. This way our | |
13784 | changes to the threads will be cleaned up by unpushing the target | |
13785 | in case btrace_read_config () throws. */ | |
13786 | if (!btrace_target_pushed) | |
13787 | { | |
13788 | btrace_target_pushed = 1; | |
13789 | record_btrace_push_target (); | |
13790 | printf_filtered (_("Target is recording using %s.\n"), | |
13791 | btrace_format_string (rs->btrace_config.format)); | |
13792 | } | |
13793 | ||
13794 | tp->btrace.target = XCNEW (struct btrace_target_info); | |
13795 | tp->btrace.target->ptid = tp->ptid; | |
13796 | tp->btrace.target->conf = rs->btrace_config; | |
13797 | } | |
c0272db5 TW |
13798 | } |
13799 | ||
9accd112 MM |
13800 | /* Enable branch tracing. */ |
13801 | ||
f6ac5f3d PA |
13802 | struct btrace_target_info * |
13803 | remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf) | |
9accd112 MM |
13804 | { |
13805 | struct btrace_target_info *tinfo = NULL; | |
b20a6524 | 13806 | struct packet_config *packet = NULL; |
9accd112 | 13807 | struct remote_state *rs = get_remote_state (); |
8d64371b TT |
13808 | char *buf = rs->buf.data (); |
13809 | char *endbuf = buf + get_remote_packet_size (); | |
9accd112 | 13810 | |
b20a6524 MM |
13811 | switch (conf->format) |
13812 | { | |
13813 | case BTRACE_FORMAT_BTS: | |
13814 | packet = &remote_protocol_packets[PACKET_Qbtrace_bts]; | |
13815 | break; | |
13816 | ||
13817 | case BTRACE_FORMAT_PT: | |
13818 | packet = &remote_protocol_packets[PACKET_Qbtrace_pt]; | |
13819 | break; | |
13820 | } | |
13821 | ||
13822 | if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE) | |
9accd112 MM |
13823 | error (_("Target does not support branch tracing.")); |
13824 | ||
f4abbc16 MM |
13825 | btrace_sync_conf (conf); |
13826 | ||
9accd112 MM |
13827 | set_general_thread (ptid); |
13828 | ||
13829 | buf += xsnprintf (buf, endbuf - buf, "%s", packet->name); | |
13830 | putpkt (rs->buf); | |
8d64371b | 13831 | getpkt (&rs->buf, 0); |
9accd112 MM |
13832 | |
13833 | if (packet_ok (rs->buf, packet) == PACKET_ERROR) | |
13834 | { | |
13835 | if (rs->buf[0] == 'E' && rs->buf[1] == '.') | |
13836 | error (_("Could not enable branch tracing for %s: %s"), | |
a068643d | 13837 | target_pid_to_str (ptid).c_str (), &rs->buf[2]); |
9accd112 MM |
13838 | else |
13839 | error (_("Could not enable branch tracing for %s."), | |
a068643d | 13840 | target_pid_to_str (ptid).c_str ()); |
9accd112 MM |
13841 | } |
13842 | ||
8d749320 | 13843 | tinfo = XCNEW (struct btrace_target_info); |
9accd112 MM |
13844 | tinfo->ptid = ptid; |
13845 | ||
f4abbc16 MM |
13846 | /* If we fail to read the configuration, we lose some information, but the |
13847 | tracing itself is not impacted. */ | |
a70b8144 | 13848 | try |
492d29ea PA |
13849 | { |
13850 | btrace_read_config (&tinfo->conf); | |
13851 | } | |
230d2906 | 13852 | catch (const gdb_exception_error &err) |
492d29ea PA |
13853 | { |
13854 | if (err.message != NULL) | |
3d6e9d23 | 13855 | warning ("%s", err.what ()); |
492d29ea | 13856 | } |
f4abbc16 | 13857 | |
9accd112 MM |
13858 | return tinfo; |
13859 | } | |
13860 | ||
13861 | /* Disable branch tracing. */ | |
13862 | ||
f6ac5f3d PA |
13863 | void |
13864 | remote_target::disable_btrace (struct btrace_target_info *tinfo) | |
9accd112 MM |
13865 | { |
13866 | struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off]; | |
13867 | struct remote_state *rs = get_remote_state (); | |
8d64371b TT |
13868 | char *buf = rs->buf.data (); |
13869 | char *endbuf = buf + get_remote_packet_size (); | |
9accd112 | 13870 | |
4082afcc | 13871 | if (packet_config_support (packet) != PACKET_ENABLE) |
9accd112 MM |
13872 | error (_("Target does not support branch tracing.")); |
13873 | ||
13874 | set_general_thread (tinfo->ptid); | |
13875 | ||
13876 | buf += xsnprintf (buf, endbuf - buf, "%s", packet->name); | |
13877 | putpkt (rs->buf); | |
8d64371b | 13878 | getpkt (&rs->buf, 0); |
9accd112 MM |
13879 | |
13880 | if (packet_ok (rs->buf, packet) == PACKET_ERROR) | |
13881 | { | |
13882 | if (rs->buf[0] == 'E' && rs->buf[1] == '.') | |
13883 | error (_("Could not disable branch tracing for %s: %s"), | |
a068643d | 13884 | target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]); |
9accd112 MM |
13885 | else |
13886 | error (_("Could not disable branch tracing for %s."), | |
a068643d | 13887 | target_pid_to_str (tinfo->ptid).c_str ()); |
9accd112 MM |
13888 | } |
13889 | ||
13890 | xfree (tinfo); | |
13891 | } | |
13892 | ||
13893 | /* Teardown branch tracing. */ | |
13894 | ||
f6ac5f3d PA |
13895 | void |
13896 | remote_target::teardown_btrace (struct btrace_target_info *tinfo) | |
9accd112 MM |
13897 | { |
13898 | /* We must not talk to the target during teardown. */ | |
13899 | xfree (tinfo); | |
13900 | } | |
13901 | ||
13902 | /* Read the branch trace. */ | |
13903 | ||
f6ac5f3d PA |
13904 | enum btrace_error |
13905 | remote_target::read_btrace (struct btrace_data *btrace, | |
13906 | struct btrace_target_info *tinfo, | |
13907 | enum btrace_read_type type) | |
9accd112 MM |
13908 | { |
13909 | struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace]; | |
9accd112 | 13910 | const char *annex; |
9accd112 | 13911 | |
4082afcc | 13912 | if (packet_config_support (packet) != PACKET_ENABLE) |
9accd112 MM |
13913 | error (_("Target does not support branch tracing.")); |
13914 | ||
13915 | #if !defined(HAVE_LIBEXPAT) | |
13916 | error (_("Cannot process branch tracing result. XML parsing not supported.")); | |
13917 | #endif | |
13918 | ||
13919 | switch (type) | |
13920 | { | |
864089d2 | 13921 | case BTRACE_READ_ALL: |
9accd112 MM |
13922 | annex = "all"; |
13923 | break; | |
864089d2 | 13924 | case BTRACE_READ_NEW: |
9accd112 MM |
13925 | annex = "new"; |
13926 | break; | |
969c39fb MM |
13927 | case BTRACE_READ_DELTA: |
13928 | annex = "delta"; | |
13929 | break; | |
9accd112 MM |
13930 | default: |
13931 | internal_error (__FILE__, __LINE__, | |
13932 | _("Bad branch tracing read type: %u."), | |
13933 | (unsigned int) type); | |
13934 | } | |
13935 | ||
9018be22 | 13936 | gdb::optional<gdb::char_vector> xml |
8b88a78e | 13937 | = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex); |
9018be22 | 13938 | if (!xml) |
969c39fb | 13939 | return BTRACE_ERR_UNKNOWN; |
9accd112 | 13940 | |
9018be22 | 13941 | parse_xml_btrace (btrace, xml->data ()); |
9accd112 | 13942 | |
969c39fb | 13943 | return BTRACE_ERR_NONE; |
9accd112 MM |
13944 | } |
13945 | ||
f6ac5f3d PA |
13946 | const struct btrace_config * |
13947 | remote_target::btrace_conf (const struct btrace_target_info *tinfo) | |
f4abbc16 MM |
13948 | { |
13949 | return &tinfo->conf; | |
13950 | } | |
13951 | ||
57810aa7 | 13952 | bool |
f6ac5f3d | 13953 | remote_target::augmented_libraries_svr4_read () |
ced63ec0 | 13954 | { |
4082afcc PA |
13955 | return (packet_support (PACKET_augmented_libraries_svr4_read_feature) |
13956 | == PACKET_ENABLE); | |
ced63ec0 GB |
13957 | } |
13958 | ||
9dd130a0 TT |
13959 | /* Implementation of to_load. */ |
13960 | ||
f6ac5f3d PA |
13961 | void |
13962 | remote_target::load (const char *name, int from_tty) | |
9dd130a0 TT |
13963 | { |
13964 | generic_load (name, from_tty); | |
13965 | } | |
13966 | ||
c78fa86a GB |
13967 | /* Accepts an integer PID; returns a string representing a file that |
13968 | can be opened on the remote side to get the symbols for the child | |
13969 | process. Returns NULL if the operation is not supported. */ | |
13970 | ||
f6ac5f3d PA |
13971 | char * |
13972 | remote_target::pid_to_exec_file (int pid) | |
c78fa86a | 13973 | { |
9018be22 | 13974 | static gdb::optional<gdb::char_vector> filename; |
835205d0 | 13975 | char *annex = NULL; |
c78fa86a GB |
13976 | |
13977 | if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE) | |
13978 | return NULL; | |
13979 | ||
5b6d1e4f | 13980 | inferior *inf = find_inferior_pid (this, pid); |
835205d0 GB |
13981 | if (inf == NULL) |
13982 | internal_error (__FILE__, __LINE__, | |
13983 | _("not currently attached to process %d"), pid); | |
13984 | ||
13985 | if (!inf->fake_pid_p) | |
13986 | { | |
13987 | const int annex_size = 9; | |
13988 | ||
224c3ddb | 13989 | annex = (char *) alloca (annex_size); |
835205d0 GB |
13990 | xsnprintf (annex, annex_size, "%x", pid); |
13991 | } | |
13992 | ||
8b88a78e | 13993 | filename = target_read_stralloc (current_top_target (), |
c78fa86a GB |
13994 | TARGET_OBJECT_EXEC_FILE, annex); |
13995 | ||
9018be22 | 13996 | return filename ? filename->data () : nullptr; |
c78fa86a GB |
13997 | } |
13998 | ||
750ce8d1 YQ |
13999 | /* Implement the to_can_do_single_step target_ops method. */ |
14000 | ||
f6ac5f3d PA |
14001 | int |
14002 | remote_target::can_do_single_step () | |
750ce8d1 YQ |
14003 | { |
14004 | /* We can only tell whether target supports single step or not by | |
14005 | supported s and S vCont actions if the stub supports vContSupported | |
14006 | feature. If the stub doesn't support vContSupported feature, | |
14007 | we have conservatively to think target doesn't supports single | |
14008 | step. */ | |
14009 | if (packet_support (PACKET_vContSupported) == PACKET_ENABLE) | |
14010 | { | |
14011 | struct remote_state *rs = get_remote_state (); | |
14012 | ||
14013 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN) | |
6b8edb51 | 14014 | remote_vcont_probe (); |
750ce8d1 YQ |
14015 | |
14016 | return rs->supports_vCont.s && rs->supports_vCont.S; | |
14017 | } | |
14018 | else | |
14019 | return 0; | |
14020 | } | |
14021 | ||
3a00c802 PA |
14022 | /* Implementation of the to_execution_direction method for the remote |
14023 | target. */ | |
14024 | ||
f6ac5f3d PA |
14025 | enum exec_direction_kind |
14026 | remote_target::execution_direction () | |
3a00c802 PA |
14027 | { |
14028 | struct remote_state *rs = get_remote_state (); | |
14029 | ||
14030 | return rs->last_resume_exec_dir; | |
14031 | } | |
14032 | ||
f6327dcb KB |
14033 | /* Return pointer to the thread_info struct which corresponds to |
14034 | THREAD_HANDLE (having length HANDLE_LEN). */ | |
14035 | ||
f6ac5f3d PA |
14036 | thread_info * |
14037 | remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle, | |
14038 | int handle_len, | |
14039 | inferior *inf) | |
f6327dcb | 14040 | { |
5b6d1e4f | 14041 | for (thread_info *tp : all_non_exited_threads (this)) |
f6327dcb | 14042 | { |
7aabaf9d | 14043 | remote_thread_info *priv = get_remote_thread_info (tp); |
f6327dcb KB |
14044 | |
14045 | if (tp->inf == inf && priv != NULL) | |
14046 | { | |
7aabaf9d | 14047 | if (handle_len != priv->thread_handle.size ()) |
f6327dcb | 14048 | error (_("Thread handle size mismatch: %d vs %zu (from remote)"), |
7aabaf9d SM |
14049 | handle_len, priv->thread_handle.size ()); |
14050 | if (memcmp (thread_handle, priv->thread_handle.data (), | |
f6327dcb KB |
14051 | handle_len) == 0) |
14052 | return tp; | |
14053 | } | |
14054 | } | |
14055 | ||
14056 | return NULL; | |
14057 | } | |
14058 | ||
3d6c6204 KB |
14059 | gdb::byte_vector |
14060 | remote_target::thread_info_to_thread_handle (struct thread_info *tp) | |
14061 | { | |
14062 | remote_thread_info *priv = get_remote_thread_info (tp); | |
14063 | return priv->thread_handle; | |
14064 | } | |
14065 | ||
57810aa7 | 14066 | bool |
f6ac5f3d | 14067 | remote_target::can_async_p () |
6426a772 | 14068 | { |
5d93a237 TT |
14069 | struct remote_state *rs = get_remote_state (); |
14070 | ||
3015c064 SM |
14071 | /* We don't go async if the user has explicitly prevented it with the |
14072 | "maint set target-async" command. */ | |
c6ebd6cf | 14073 | if (!target_async_permitted) |
57810aa7 | 14074 | return false; |
75c99385 | 14075 | |
23860348 | 14076 | /* We're async whenever the serial device is. */ |
5d93a237 | 14077 | return serial_can_async_p (rs->remote_desc); |
6426a772 JM |
14078 | } |
14079 | ||
57810aa7 | 14080 | bool |
f6ac5f3d | 14081 | remote_target::is_async_p () |
6426a772 | 14082 | { |
5d93a237 TT |
14083 | struct remote_state *rs = get_remote_state (); |
14084 | ||
c6ebd6cf | 14085 | if (!target_async_permitted) |
75c99385 | 14086 | /* We only enable async when the user specifically asks for it. */ |
57810aa7 | 14087 | return false; |
75c99385 | 14088 | |
23860348 | 14089 | /* We're async whenever the serial device is. */ |
5d93a237 | 14090 | return serial_is_async_p (rs->remote_desc); |
6426a772 JM |
14091 | } |
14092 | ||
2acceee2 JM |
14093 | /* Pass the SERIAL event on and up to the client. One day this code |
14094 | will be able to delay notifying the client of an event until the | |
23860348 | 14095 | point where an entire packet has been received. */ |
2acceee2 | 14096 | |
2acceee2 JM |
14097 | static serial_event_ftype remote_async_serial_handler; |
14098 | ||
6426a772 | 14099 | static void |
819cc324 | 14100 | remote_async_serial_handler (struct serial *scb, void *context) |
6426a772 | 14101 | { |
2acceee2 JM |
14102 | /* Don't propogate error information up to the client. Instead let |
14103 | the client find out about the error by querying the target. */ | |
6a3753b3 | 14104 | inferior_event_handler (INF_REG_EVENT, NULL); |
2acceee2 JM |
14105 | } |
14106 | ||
74531fed PA |
14107 | static void |
14108 | remote_async_inferior_event_handler (gdb_client_data data) | |
14109 | { | |
6b8edb51 | 14110 | inferior_event_handler (INF_REG_EVENT, data); |
74531fed PA |
14111 | } |
14112 | ||
5b6d1e4f PA |
14113 | int |
14114 | remote_target::async_wait_fd () | |
14115 | { | |
14116 | struct remote_state *rs = get_remote_state (); | |
14117 | return rs->remote_desc->fd; | |
14118 | } | |
14119 | ||
f6ac5f3d PA |
14120 | void |
14121 | remote_target::async (int enable) | |
2acceee2 | 14122 | { |
5d93a237 TT |
14123 | struct remote_state *rs = get_remote_state (); |
14124 | ||
6a3753b3 | 14125 | if (enable) |
2acceee2 | 14126 | { |
88b496c3 | 14127 | serial_async (rs->remote_desc, remote_async_serial_handler, rs); |
b7d2e916 PA |
14128 | |
14129 | /* If there are pending events in the stop reply queue tell the | |
14130 | event loop to process them. */ | |
953edf2b | 14131 | if (!rs->stop_reply_queue.empty ()) |
6b8edb51 | 14132 | mark_async_event_handler (rs->remote_async_inferior_event_token); |
6efcd9a8 PA |
14133 | /* For simplicity, below we clear the pending events token |
14134 | without remembering whether it is marked, so here we always | |
14135 | mark it. If there's actually no pending notification to | |
14136 | process, this ends up being a no-op (other than a spurious | |
14137 | event-loop wakeup). */ | |
14138 | if (target_is_non_stop_p ()) | |
14139 | mark_async_event_handler (rs->notif_state->get_pending_events_token); | |
2acceee2 JM |
14140 | } |
14141 | else | |
b7d2e916 PA |
14142 | { |
14143 | serial_async (rs->remote_desc, NULL, NULL); | |
6efcd9a8 PA |
14144 | /* If the core is disabling async, it doesn't want to be |
14145 | disturbed with target events. Clear all async event sources | |
14146 | too. */ | |
6b8edb51 | 14147 | clear_async_event_handler (rs->remote_async_inferior_event_token); |
6efcd9a8 PA |
14148 | if (target_is_non_stop_p ()) |
14149 | clear_async_event_handler (rs->notif_state->get_pending_events_token); | |
b7d2e916 | 14150 | } |
6426a772 JM |
14151 | } |
14152 | ||
65706a29 PA |
14153 | /* Implementation of the to_thread_events method. */ |
14154 | ||
f6ac5f3d PA |
14155 | void |
14156 | remote_target::thread_events (int enable) | |
65706a29 PA |
14157 | { |
14158 | struct remote_state *rs = get_remote_state (); | |
14159 | size_t size = get_remote_packet_size (); | |
65706a29 PA |
14160 | |
14161 | if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE) | |
14162 | return; | |
14163 | ||
8d64371b | 14164 | xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0); |
65706a29 | 14165 | putpkt (rs->buf); |
8d64371b | 14166 | getpkt (&rs->buf, 0); |
65706a29 PA |
14167 | |
14168 | switch (packet_ok (rs->buf, | |
14169 | &remote_protocol_packets[PACKET_QThreadEvents])) | |
14170 | { | |
14171 | case PACKET_OK: | |
8d64371b TT |
14172 | if (strcmp (rs->buf.data (), "OK") != 0) |
14173 | error (_("Remote refused setting thread events: %s"), rs->buf.data ()); | |
65706a29 PA |
14174 | break; |
14175 | case PACKET_ERROR: | |
8d64371b | 14176 | warning (_("Remote failure reply: %s"), rs->buf.data ()); |
65706a29 PA |
14177 | break; |
14178 | case PACKET_UNKNOWN: | |
14179 | break; | |
14180 | } | |
14181 | } | |
14182 | ||
5a2468f5 | 14183 | static void |
981a3fb3 | 14184 | set_remote_cmd (const char *args, int from_tty) |
5a2468f5 | 14185 | { |
635c7e8a | 14186 | help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout); |
5a2468f5 JM |
14187 | } |
14188 | ||
d471ea57 | 14189 | static void |
981a3fb3 | 14190 | show_remote_cmd (const char *args, int from_tty) |
d471ea57 | 14191 | { |
37a105a1 | 14192 | /* We can't just use cmd_show_list here, because we want to skip |
427c3a89 | 14193 | the redundant "show remote Z-packet" and the legacy aliases. */ |
37a105a1 | 14194 | struct cmd_list_element *list = remote_show_cmdlist; |
79a45e25 | 14195 | struct ui_out *uiout = current_uiout; |
37a105a1 | 14196 | |
2e783024 | 14197 | ui_out_emit_tuple tuple_emitter (uiout, "showlist"); |
37a105a1 DJ |
14198 | for (; list != NULL; list = list->next) |
14199 | if (strcmp (list->name, "Z-packet") == 0) | |
14200 | continue; | |
427c3a89 DJ |
14201 | else if (list->type == not_set_cmd) |
14202 | /* Alias commands are exactly like the original, except they | |
14203 | don't have the normal type. */ | |
14204 | continue; | |
14205 | else | |
37a105a1 | 14206 | { |
2e783024 | 14207 | ui_out_emit_tuple option_emitter (uiout, "option"); |
a744cf53 | 14208 | |
112e8700 SM |
14209 | uiout->field_string ("name", list->name); |
14210 | uiout->text (": "); | |
427c3a89 | 14211 | if (list->type == show_cmd) |
f5c4fcd9 | 14212 | do_show_command (NULL, from_tty, list); |
427c3a89 DJ |
14213 | else |
14214 | cmd_func (list, NULL, from_tty); | |
37a105a1 | 14215 | } |
d471ea57 | 14216 | } |
5a2468f5 | 14217 | |
0f71a2f6 | 14218 | |
23860348 | 14219 | /* Function to be called whenever a new objfile (shlib) is detected. */ |
dc8acb97 MS |
14220 | static void |
14221 | remote_new_objfile (struct objfile *objfile) | |
14222 | { | |
6b8edb51 | 14223 | remote_target *remote = get_current_remote_target (); |
5d93a237 | 14224 | |
6b8edb51 PA |
14225 | if (remote != NULL) /* Have a remote connection. */ |
14226 | remote->remote_check_symbols (); | |
dc8acb97 MS |
14227 | } |
14228 | ||
00bf0b85 SS |
14229 | /* Pull all the tracepoints defined on the target and create local |
14230 | data structures representing them. We don't want to create real | |
14231 | tracepoints yet, we don't want to mess up the user's existing | |
14232 | collection. */ | |
14233 | ||
f6ac5f3d PA |
14234 | int |
14235 | remote_target::upload_tracepoints (struct uploaded_tp **utpp) | |
d5551862 | 14236 | { |
00bf0b85 SS |
14237 | struct remote_state *rs = get_remote_state (); |
14238 | char *p; | |
d5551862 | 14239 | |
00bf0b85 SS |
14240 | /* Ask for a first packet of tracepoint definition. */ |
14241 | putpkt ("qTfP"); | |
8d64371b TT |
14242 | getpkt (&rs->buf, 0); |
14243 | p = rs->buf.data (); | |
00bf0b85 | 14244 | while (*p && *p != 'l') |
d5551862 | 14245 | { |
00bf0b85 SS |
14246 | parse_tracepoint_definition (p, utpp); |
14247 | /* Ask for another packet of tracepoint definition. */ | |
14248 | putpkt ("qTsP"); | |
8d64371b TT |
14249 | getpkt (&rs->buf, 0); |
14250 | p = rs->buf.data (); | |
d5551862 | 14251 | } |
00bf0b85 | 14252 | return 0; |
d5551862 SS |
14253 | } |
14254 | ||
f6ac5f3d PA |
14255 | int |
14256 | remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp) | |
d5551862 | 14257 | { |
00bf0b85 | 14258 | struct remote_state *rs = get_remote_state (); |
d5551862 | 14259 | char *p; |
d5551862 | 14260 | |
00bf0b85 SS |
14261 | /* Ask for a first packet of variable definition. */ |
14262 | putpkt ("qTfV"); | |
8d64371b TT |
14263 | getpkt (&rs->buf, 0); |
14264 | p = rs->buf.data (); | |
00bf0b85 | 14265 | while (*p && *p != 'l') |
d5551862 | 14266 | { |
00bf0b85 SS |
14267 | parse_tsv_definition (p, utsvp); |
14268 | /* Ask for another packet of variable definition. */ | |
14269 | putpkt ("qTsV"); | |
8d64371b TT |
14270 | getpkt (&rs->buf, 0); |
14271 | p = rs->buf.data (); | |
d5551862 | 14272 | } |
00bf0b85 | 14273 | return 0; |
d5551862 SS |
14274 | } |
14275 | ||
c1e36e3e PA |
14276 | /* The "set/show range-stepping" show hook. */ |
14277 | ||
14278 | static void | |
14279 | show_range_stepping (struct ui_file *file, int from_tty, | |
14280 | struct cmd_list_element *c, | |
14281 | const char *value) | |
14282 | { | |
14283 | fprintf_filtered (file, | |
14284 | _("Debugger's willingness to use range stepping " | |
14285 | "is %s.\n"), value); | |
14286 | } | |
14287 | ||
6b8edb51 PA |
14288 | /* Return true if the vCont;r action is supported by the remote |
14289 | stub. */ | |
14290 | ||
14291 | bool | |
14292 | remote_target::vcont_r_supported () | |
14293 | { | |
14294 | if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN) | |
14295 | remote_vcont_probe (); | |
14296 | ||
14297 | return (packet_support (PACKET_vCont) == PACKET_ENABLE | |
14298 | && get_remote_state ()->supports_vCont.r); | |
14299 | } | |
14300 | ||
c1e36e3e PA |
14301 | /* The "set/show range-stepping" set hook. */ |
14302 | ||
14303 | static void | |
eb4c3f4a | 14304 | set_range_stepping (const char *ignore_args, int from_tty, |
c1e36e3e PA |
14305 | struct cmd_list_element *c) |
14306 | { | |
6b8edb51 PA |
14307 | /* When enabling, check whether range stepping is actually supported |
14308 | by the target, and warn if not. */ | |
c1e36e3e PA |
14309 | if (use_range_stepping) |
14310 | { | |
6b8edb51 PA |
14311 | remote_target *remote = get_current_remote_target (); |
14312 | if (remote == NULL | |
14313 | || !remote->vcont_r_supported ()) | |
14314 | warning (_("Range stepping is not supported by the current target")); | |
c1e36e3e PA |
14315 | } |
14316 | } | |
14317 | ||
6c265988 | 14318 | void _initialize_remote (); |
c906108c | 14319 | void |
6c265988 | 14320 | _initialize_remote () |
c906108c | 14321 | { |
9a7071a8 | 14322 | struct cmd_list_element *cmd; |
6f937416 | 14323 | const char *cmd_name; |
ea9c271d | 14324 | |
0f71a2f6 | 14325 | /* architecture specific data */ |
29709017 DJ |
14326 | remote_g_packet_data_handle = |
14327 | gdbarch_data_register_pre_init (remote_g_packet_data_init); | |
d01949b6 | 14328 | |
d9f719f1 PA |
14329 | add_target (remote_target_info, remote_target::open); |
14330 | add_target (extended_remote_target_info, extended_remote_target::open); | |
cce74817 | 14331 | |
dc8acb97 | 14332 | /* Hook into new objfile notification. */ |
76727919 | 14333 | gdb::observers::new_objfile.attach (remote_new_objfile); |
dc8acb97 | 14334 | |
c906108c SS |
14335 | #if 0 |
14336 | init_remote_threadtests (); | |
14337 | #endif | |
14338 | ||
23860348 | 14339 | /* set/show remote ... */ |
d471ea57 | 14340 | |
1bedd215 | 14341 | add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\ |
590042fc | 14342 | Remote protocol specific variables.\n\ |
5a2468f5 | 14343 | Configure various remote-protocol specific variables such as\n\ |
590042fc | 14344 | the packets being used."), |
cff3e48b | 14345 | &remote_set_cmdlist, "set remote ", |
23860348 | 14346 | 0 /* allow-unknown */, &setlist); |
1bedd215 | 14347 | add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\ |
590042fc | 14348 | Remote protocol specific variables.\n\ |
5a2468f5 | 14349 | Configure various remote-protocol specific variables such as\n\ |
590042fc | 14350 | the packets being used."), |
cff3e48b | 14351 | &remote_show_cmdlist, "show remote ", |
23860348 | 14352 | 0 /* allow-unknown */, &showlist); |
5a2468f5 | 14353 | |
1a966eab AC |
14354 | add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\ |
14355 | Compare section data on target to the exec file.\n\ | |
95cf3b38 DT |
14356 | Argument is a single section name (default: all loaded sections).\n\ |
14357 | To compare only read-only loaded sections, specify the -r option."), | |
c906108c SS |
14358 | &cmdlist); |
14359 | ||
1a966eab AC |
14360 | add_cmd ("packet", class_maintenance, packet_command, _("\ |
14361 | Send an arbitrary packet to a remote target.\n\ | |
c906108c SS |
14362 | maintenance packet TEXT\n\ |
14363 | If GDB is talking to an inferior via the GDB serial protocol, then\n\ | |
14364 | this command sends the string TEXT to the inferior, and displays the\n\ | |
14365 | response packet. GDB supplies the initial `$' character, and the\n\ | |
1a966eab | 14366 | terminating `#' character and checksum."), |
c906108c SS |
14367 | &maintenancelist); |
14368 | ||
7915a72c AC |
14369 | add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\ |
14370 | Set whether to send break if interrupted."), _("\ | |
14371 | Show whether to send break if interrupted."), _("\ | |
14372 | If set, a break, instead of a cntrl-c, is sent to the remote target."), | |
9a7071a8 | 14373 | set_remotebreak, show_remotebreak, |
e707bbc2 | 14374 | &setlist, &showlist); |
9a7071a8 JB |
14375 | cmd_name = "remotebreak"; |
14376 | cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1); | |
14377 | deprecate_cmd (cmd, "set remote interrupt-sequence"); | |
14378 | cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */ | |
14379 | cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1); | |
14380 | deprecate_cmd (cmd, "show remote interrupt-sequence"); | |
14381 | ||
14382 | add_setshow_enum_cmd ("interrupt-sequence", class_support, | |
3e43a32a MS |
14383 | interrupt_sequence_modes, &interrupt_sequence_mode, |
14384 | _("\ | |
9a7071a8 JB |
14385 | Set interrupt sequence to remote target."), _("\ |
14386 | Show interrupt sequence to remote target."), _("\ | |
14387 | Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."), | |
14388 | NULL, show_interrupt_sequence, | |
14389 | &remote_set_cmdlist, | |
14390 | &remote_show_cmdlist); | |
14391 | ||
14392 | add_setshow_boolean_cmd ("interrupt-on-connect", class_support, | |
14393 | &interrupt_on_connect, _("\ | |
590042fc PW |
14394 | Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\ |
14395 | Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\ | |
9a7071a8 JB |
14396 | If set, interrupt sequence is sent to remote target."), |
14397 | NULL, NULL, | |
14398 | &remote_set_cmdlist, &remote_show_cmdlist); | |
c906108c | 14399 | |
23860348 | 14400 | /* Install commands for configuring memory read/write packets. */ |
11cf8741 | 14401 | |
1a966eab AC |
14402 | add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\ |
14403 | Set the maximum number of bytes per memory write packet (deprecated)."), | |
11cf8741 | 14404 | &setlist); |
1a966eab AC |
14405 | add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\ |
14406 | Show the maximum number of bytes per memory write packet (deprecated)."), | |
11cf8741 JM |
14407 | &showlist); |
14408 | add_cmd ("memory-write-packet-size", no_class, | |
1a966eab AC |
14409 | set_memory_write_packet_size, _("\ |
14410 | Set the maximum number of bytes per memory-write packet.\n\ | |
14411 | Specify the number of bytes in a packet or 0 (zero) for the\n\ | |
14412 | default packet size. The actual limit is further reduced\n\ | |
14413 | dependent on the target. Specify ``fixed'' to disable the\n\ | |
14414 | further restriction and ``limit'' to enable that restriction."), | |
11cf8741 JM |
14415 | &remote_set_cmdlist); |
14416 | add_cmd ("memory-read-packet-size", no_class, | |
1a966eab AC |
14417 | set_memory_read_packet_size, _("\ |
14418 | Set the maximum number of bytes per memory-read packet.\n\ | |
14419 | Specify the number of bytes in a packet or 0 (zero) for the\n\ | |
14420 | default packet size. The actual limit is further reduced\n\ | |
14421 | dependent on the target. Specify ``fixed'' to disable the\n\ | |
14422 | further restriction and ``limit'' to enable that restriction."), | |
11cf8741 JM |
14423 | &remote_set_cmdlist); |
14424 | add_cmd ("memory-write-packet-size", no_class, | |
14425 | show_memory_write_packet_size, | |
1a966eab | 14426 | _("Show the maximum number of bytes per memory-write packet."), |
11cf8741 JM |
14427 | &remote_show_cmdlist); |
14428 | add_cmd ("memory-read-packet-size", no_class, | |
14429 | show_memory_read_packet_size, | |
1a966eab | 14430 | _("Show the maximum number of bytes per memory-read packet."), |
11cf8741 | 14431 | &remote_show_cmdlist); |
c906108c | 14432 | |
055303e2 | 14433 | add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class, |
7915a72c AC |
14434 | &remote_hw_watchpoint_limit, _("\ |
14435 | Set the maximum number of target hardware watchpoints."), _("\ | |
14436 | Show the maximum number of target hardware watchpoints."), _("\ | |
055303e2 AB |
14437 | Specify \"unlimited\" for unlimited hardware watchpoints."), |
14438 | NULL, show_hardware_watchpoint_limit, | |
14439 | &remote_set_cmdlist, | |
14440 | &remote_show_cmdlist); | |
14441 | add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit", | |
14442 | no_class, | |
480a3f21 PW |
14443 | &remote_hw_watchpoint_length_limit, _("\ |
14444 | Set the maximum length (in bytes) of a target hardware watchpoint."), _("\ | |
14445 | Show the maximum length (in bytes) of a target hardware watchpoint."), _("\ | |
055303e2 AB |
14446 | Specify \"unlimited\" to allow watchpoints of unlimited size."), |
14447 | NULL, show_hardware_watchpoint_length_limit, | |
480a3f21 | 14448 | &remote_set_cmdlist, &remote_show_cmdlist); |
055303e2 | 14449 | add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class, |
7915a72c AC |
14450 | &remote_hw_breakpoint_limit, _("\ |
14451 | Set the maximum number of target hardware breakpoints."), _("\ | |
14452 | Show the maximum number of target hardware breakpoints."), _("\ | |
055303e2 AB |
14453 | Specify \"unlimited\" for unlimited hardware breakpoints."), |
14454 | NULL, show_hardware_breakpoint_limit, | |
b3f42336 | 14455 | &remote_set_cmdlist, &remote_show_cmdlist); |
501eef12 | 14456 | |
1b493192 PA |
14457 | add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure, |
14458 | &remote_address_size, _("\ | |
4d28ad1e AC |
14459 | Set the maximum size of the address (in bits) in a memory packet."), _("\ |
14460 | Show the maximum size of the address (in bits) in a memory packet."), NULL, | |
1b493192 PA |
14461 | NULL, |
14462 | NULL, /* FIXME: i18n: */ | |
14463 | &setlist, &showlist); | |
c906108c | 14464 | |
ca4f7f8b PA |
14465 | init_all_packet_configs (); |
14466 | ||
444abaca | 14467 | add_packet_config_cmd (&remote_protocol_packets[PACKET_X], |
bb572ddd | 14468 | "X", "binary-download", 1); |
0f71a2f6 | 14469 | |
444abaca | 14470 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont], |
bb572ddd | 14471 | "vCont", "verbose-resume", 0); |
506fb367 | 14472 | |
89be2091 DJ |
14473 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals], |
14474 | "QPassSignals", "pass-signals", 0); | |
14475 | ||
82075af2 JS |
14476 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls], |
14477 | "QCatchSyscalls", "catch-syscalls", 0); | |
14478 | ||
9b224c5e PA |
14479 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals], |
14480 | "QProgramSignals", "program-signals", 0); | |
14481 | ||
bc3b087d SDJ |
14482 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir], |
14483 | "QSetWorkingDir", "set-working-dir", 0); | |
14484 | ||
aefd8b33 SDJ |
14485 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell], |
14486 | "QStartupWithShell", "startup-with-shell", 0); | |
14487 | ||
0a2dde4a SDJ |
14488 | add_packet_config_cmd (&remote_protocol_packets |
14489 | [PACKET_QEnvironmentHexEncoded], | |
14490 | "QEnvironmentHexEncoded", "environment-hex-encoded", | |
14491 | 0); | |
14492 | ||
14493 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset], | |
14494 | "QEnvironmentReset", "environment-reset", | |
14495 | 0); | |
14496 | ||
14497 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset], | |
14498 | "QEnvironmentUnset", "environment-unset", | |
14499 | 0); | |
14500 | ||
444abaca | 14501 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol], |
bb572ddd | 14502 | "qSymbol", "symbol-lookup", 0); |
dc8acb97 | 14503 | |
444abaca | 14504 | add_packet_config_cmd (&remote_protocol_packets[PACKET_P], |
bb572ddd | 14505 | "P", "set-register", 1); |
d471ea57 | 14506 | |
444abaca | 14507 | add_packet_config_cmd (&remote_protocol_packets[PACKET_p], |
bb572ddd | 14508 | "p", "fetch-register", 1); |
b96ec7ac | 14509 | |
444abaca | 14510 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0], |
bb572ddd | 14511 | "Z0", "software-breakpoint", 0); |
d471ea57 | 14512 | |
444abaca | 14513 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1], |
bb572ddd | 14514 | "Z1", "hardware-breakpoint", 0); |
d471ea57 | 14515 | |
444abaca | 14516 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2], |
bb572ddd | 14517 | "Z2", "write-watchpoint", 0); |
d471ea57 | 14518 | |
444abaca | 14519 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3], |
bb572ddd | 14520 | "Z3", "read-watchpoint", 0); |
d471ea57 | 14521 | |
444abaca | 14522 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4], |
bb572ddd | 14523 | "Z4", "access-watchpoint", 0); |
d471ea57 | 14524 | |
0876f84a DJ |
14525 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv], |
14526 | "qXfer:auxv:read", "read-aux-vector", 0); | |
802188a7 | 14527 | |
c78fa86a GB |
14528 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file], |
14529 | "qXfer:exec-file:read", "pid-to-exec-file", 0); | |
14530 | ||
23181151 DJ |
14531 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features], |
14532 | "qXfer:features:read", "target-features", 0); | |
14533 | ||
cfa9d6d9 DJ |
14534 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries], |
14535 | "qXfer:libraries:read", "library-info", 0); | |
14536 | ||
2268b414 JK |
14537 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4], |
14538 | "qXfer:libraries-svr4:read", "library-info-svr4", 0); | |
14539 | ||
fd79ecee DJ |
14540 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map], |
14541 | "qXfer:memory-map:read", "memory-map", 0); | |
14542 | ||
07e059b5 VP |
14543 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata], |
14544 | "qXfer:osdata:read", "osdata", 0); | |
14545 | ||
dc146f7c VP |
14546 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads], |
14547 | "qXfer:threads:read", "threads", 0); | |
14548 | ||
4aa995e1 PA |
14549 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read], |
14550 | "qXfer:siginfo:read", "read-siginfo-object", 0); | |
14551 | ||
14552 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write], | |
14553 | "qXfer:siginfo:write", "write-siginfo-object", 0); | |
14554 | ||
b3b9301e PA |
14555 | add_packet_config_cmd |
14556 | (&remote_protocol_packets[PACKET_qXfer_traceframe_info], | |
eb9fe518 | 14557 | "qXfer:traceframe-info:read", "traceframe-info", 0); |
b3b9301e | 14558 | |
169081d0 TG |
14559 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib], |
14560 | "qXfer:uib:read", "unwind-info-block", 0); | |
14561 | ||
444abaca | 14562 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr], |
38691318 | 14563 | "qGetTLSAddr", "get-thread-local-storage-address", |
38691318 KB |
14564 | 0); |
14565 | ||
711e434b PM |
14566 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr], |
14567 | "qGetTIBAddr", "get-thread-information-block-address", | |
14568 | 0); | |
14569 | ||
40ab02ce MS |
14570 | add_packet_config_cmd (&remote_protocol_packets[PACKET_bc], |
14571 | "bc", "reverse-continue", 0); | |
14572 | ||
14573 | add_packet_config_cmd (&remote_protocol_packets[PACKET_bs], | |
14574 | "bs", "reverse-step", 0); | |
14575 | ||
be2a5f71 DJ |
14576 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported], |
14577 | "qSupported", "supported-packets", 0); | |
14578 | ||
08388c79 DE |
14579 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory], |
14580 | "qSearch:memory", "search-memory", 0); | |
14581 | ||
bd3eecc3 PA |
14582 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus], |
14583 | "qTStatus", "trace-status", 0); | |
14584 | ||
15a201c8 GB |
14585 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs], |
14586 | "vFile:setfs", "hostio-setfs", 0); | |
14587 | ||
a6b151f1 DJ |
14588 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open], |
14589 | "vFile:open", "hostio-open", 0); | |
14590 | ||
14591 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread], | |
14592 | "vFile:pread", "hostio-pread", 0); | |
14593 | ||
14594 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite], | |
14595 | "vFile:pwrite", "hostio-pwrite", 0); | |
14596 | ||
14597 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close], | |
14598 | "vFile:close", "hostio-close", 0); | |
14599 | ||
14600 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink], | |
14601 | "vFile:unlink", "hostio-unlink", 0); | |
14602 | ||
b9e7b9c3 UW |
14603 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink], |
14604 | "vFile:readlink", "hostio-readlink", 0); | |
14605 | ||
0a93529c GB |
14606 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat], |
14607 | "vFile:fstat", "hostio-fstat", 0); | |
14608 | ||
2d717e4f DJ |
14609 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach], |
14610 | "vAttach", "attach", 0); | |
14611 | ||
14612 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun], | |
14613 | "vRun", "run", 0); | |
14614 | ||
a6f3e723 SL |
14615 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode], |
14616 | "QStartNoAckMode", "noack", 0); | |
14617 | ||
82f73884 PA |
14618 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill], |
14619 | "vKill", "kill", 0); | |
14620 | ||
0b16c5cf PA |
14621 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached], |
14622 | "qAttached", "query-attached", 0); | |
14623 | ||
782b2b07 | 14624 | add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints], |
3e43a32a MS |
14625 | "ConditionalTracepoints", |
14626 | "conditional-tracepoints", 0); | |
3788aec7 LM |
14627 | |
14628 | add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints], | |
14629 | "ConditionalBreakpoints", | |
14630 | "conditional-breakpoints", 0); | |
14631 | ||
d3ce09f5 SS |
14632 | add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands], |
14633 | "BreakpointCommands", | |
14634 | "breakpoint-commands", 0); | |
14635 | ||
7a697b8d SS |
14636 | add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints], |
14637 | "FastTracepoints", "fast-tracepoints", 0); | |
782b2b07 | 14638 | |
409873ef SS |
14639 | add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource], |
14640 | "TracepointSource", "TracepointSource", 0); | |
14641 | ||
d914c394 SS |
14642 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow], |
14643 | "QAllow", "allow", 0); | |
14644 | ||
0fb4aa4b PA |
14645 | add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints], |
14646 | "StaticTracepoints", "static-tracepoints", 0); | |
14647 | ||
1e4d1764 YQ |
14648 | add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace], |
14649 | "InstallInTrace", "install-in-trace", 0); | |
14650 | ||
0fb4aa4b PA |
14651 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read], |
14652 | "qXfer:statictrace:read", "read-sdata-object", 0); | |
14653 | ||
78d85199 YQ |
14654 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic], |
14655 | "qXfer:fdpic:read", "read-fdpic-loadmap", 0); | |
14656 | ||
03583c20 UW |
14657 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization], |
14658 | "QDisableRandomization", "disable-randomization", 0); | |
14659 | ||
d1feda86 YQ |
14660 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent], |
14661 | "QAgent", "agent", 0); | |
14662 | ||
f6f899bf HAQ |
14663 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size], |
14664 | "QTBuffer:size", "trace-buffer-size", 0); | |
14665 | ||
9accd112 MM |
14666 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off], |
14667 | "Qbtrace:off", "disable-btrace", 0); | |
14668 | ||
14669 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts], | |
b20a6524 MM |
14670 | "Qbtrace:bts", "enable-btrace-bts", 0); |
14671 | ||
14672 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt], | |
14673 | "Qbtrace:pt", "enable-btrace-pt", 0); | |
9accd112 MM |
14674 | |
14675 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace], | |
14676 | "qXfer:btrace", "read-btrace", 0); | |
14677 | ||
f4abbc16 MM |
14678 | add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf], |
14679 | "qXfer:btrace-conf", "read-btrace-conf", 0); | |
14680 | ||
d33501a5 MM |
14681 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size], |
14682 | "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0); | |
14683 | ||
73b8c1fd PA |
14684 | add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature], |
14685 | "multiprocess-feature", "multiprocess-feature", 0); | |
14686 | ||
f7e6eed5 PA |
14687 | add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature], |
14688 | "swbreak-feature", "swbreak-feature", 0); | |
14689 | ||
14690 | add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature], | |
14691 | "hwbreak-feature", "hwbreak-feature", 0); | |
14692 | ||
89245bc0 DB |
14693 | add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature], |
14694 | "fork-event-feature", "fork-event-feature", 0); | |
14695 | ||
14696 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature], | |
14697 | "vfork-event-feature", "vfork-event-feature", 0); | |
14698 | ||
b20a6524 MM |
14699 | add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size], |
14700 | "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0); | |
14701 | ||
750ce8d1 YQ |
14702 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported], |
14703 | "vContSupported", "verbose-resume-supported", 0); | |
14704 | ||
94585166 DB |
14705 | add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature], |
14706 | "exec-event-feature", "exec-event-feature", 0); | |
14707 | ||
de979965 PA |
14708 | add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC], |
14709 | "vCtrlC", "ctrl-c", 0); | |
14710 | ||
65706a29 PA |
14711 | add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents], |
14712 | "QThreadEvents", "thread-events", 0); | |
14713 | ||
f2faf941 PA |
14714 | add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed], |
14715 | "N stop reply", "no-resumed-stop-reply", 0); | |
14716 | ||
0b736949 DB |
14717 | /* Assert that we've registered "set remote foo-packet" commands |
14718 | for all packet configs. */ | |
ca4f7f8b PA |
14719 | { |
14720 | int i; | |
14721 | ||
14722 | for (i = 0; i < PACKET_MAX; i++) | |
14723 | { | |
14724 | /* Ideally all configs would have a command associated. Some | |
14725 | still don't though. */ | |
14726 | int excepted; | |
14727 | ||
14728 | switch (i) | |
14729 | { | |
14730 | case PACKET_QNonStop: | |
ca4f7f8b PA |
14731 | case PACKET_EnableDisableTracepoints_feature: |
14732 | case PACKET_tracenz_feature: | |
14733 | case PACKET_DisconnectedTracing_feature: | |
14734 | case PACKET_augmented_libraries_svr4_read_feature: | |
936d2992 PA |
14735 | case PACKET_qCRC: |
14736 | /* Additions to this list need to be well justified: | |
14737 | pre-existing packets are OK; new packets are not. */ | |
ca4f7f8b PA |
14738 | excepted = 1; |
14739 | break; | |
14740 | default: | |
14741 | excepted = 0; | |
14742 | break; | |
14743 | } | |
14744 | ||
14745 | /* This catches both forgetting to add a config command, and | |
14746 | forgetting to remove a packet from the exception list. */ | |
14747 | gdb_assert (excepted == (remote_protocol_packets[i].name == NULL)); | |
14748 | } | |
14749 | } | |
14750 | ||
37a105a1 DJ |
14751 | /* Keep the old ``set remote Z-packet ...'' working. Each individual |
14752 | Z sub-packet has its own set and show commands, but users may | |
14753 | have sets to this variable in their .gdbinit files (or in their | |
14754 | documentation). */ | |
e9e68a56 | 14755 | add_setshow_auto_boolean_cmd ("Z-packet", class_obscure, |
7915a72c | 14756 | &remote_Z_packet_detect, _("\ |
590042fc PW |
14757 | Set use of remote protocol `Z' packets."), _("\ |
14758 | Show use of remote protocol `Z' packets."), _("\ | |
3b64bf98 | 14759 | When set, GDB will attempt to use the remote breakpoint and watchpoint\n\ |
7915a72c | 14760 | packets."), |
e9e68a56 | 14761 | set_remote_protocol_Z_packet_cmd, |
3e43a32a MS |
14762 | show_remote_protocol_Z_packet_cmd, |
14763 | /* FIXME: i18n: Use of remote protocol | |
14764 | `Z' packets is %s. */ | |
e9e68a56 | 14765 | &remote_set_cmdlist, &remote_show_cmdlist); |
449092f6 | 14766 | |
a6b151f1 | 14767 | add_prefix_cmd ("remote", class_files, remote_command, _("\ |
590042fc | 14768 | Manipulate files on the remote system.\n\ |
a6b151f1 DJ |
14769 | Transfer files to and from the remote target system."), |
14770 | &remote_cmdlist, "remote ", | |
14771 | 0 /* allow-unknown */, &cmdlist); | |
14772 | ||
14773 | add_cmd ("put", class_files, remote_put_command, | |
14774 | _("Copy a local file to the remote system."), | |
14775 | &remote_cmdlist); | |
14776 | ||
14777 | add_cmd ("get", class_files, remote_get_command, | |
14778 | _("Copy a remote file to the local system."), | |
14779 | &remote_cmdlist); | |
14780 | ||
14781 | add_cmd ("delete", class_files, remote_delete_command, | |
14782 | _("Delete a remote file."), | |
14783 | &remote_cmdlist); | |
14784 | ||
2d717e4f | 14785 | add_setshow_string_noescape_cmd ("exec-file", class_files, |
94585166 | 14786 | &remote_exec_file_var, _("\ |
590042fc PW |
14787 | Set the remote pathname for \"run\"."), _("\ |
14788 | Show the remote pathname for \"run\"."), NULL, | |
94585166 DB |
14789 | set_remote_exec_file, |
14790 | show_remote_exec_file, | |
14791 | &remote_set_cmdlist, | |
14792 | &remote_show_cmdlist); | |
2d717e4f | 14793 | |
c1e36e3e PA |
14794 | add_setshow_boolean_cmd ("range-stepping", class_run, |
14795 | &use_range_stepping, _("\ | |
14796 | Enable or disable range stepping."), _("\ | |
14797 | Show whether target-assisted range stepping is enabled."), _("\ | |
14798 | If on, and the target supports it, when stepping a source line, GDB\n\ | |
14799 | tells the target to step the corresponding range of addresses itself instead\n\ | |
14800 | of issuing multiple single-steps. This speeds up source level\n\ | |
14801 | stepping. If off, GDB always issues single-steps, even if range\n\ | |
14802 | stepping is supported by the target. The default is on."), | |
14803 | set_range_stepping, | |
14804 | show_range_stepping, | |
14805 | &setlist, | |
14806 | &showlist); | |
14807 | ||
ed2b7c17 TT |
14808 | add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\ |
14809 | Set watchdog timer."), _("\ | |
14810 | Show watchdog timer."), _("\ | |
14811 | When non-zero, this timeout is used instead of waiting forever for a target\n\ | |
14812 | to finish a low-level step or continue operation. If the specified amount\n\ | |
14813 | of time passes without a response from the target, an error occurs."), | |
14814 | NULL, | |
14815 | show_watchdog, | |
14816 | &setlist, &showlist); | |
14817 | ||
6cc8564b LM |
14818 | add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class, |
14819 | &remote_packet_max_chars, _("\ | |
14820 | Set the maximum number of characters to display for each remote packet."), _("\ | |
14821 | Show the maximum number of characters to display for each remote packet."), _("\ | |
14822 | Specify \"unlimited\" to display all the characters."), | |
14823 | NULL, show_remote_packet_max_chars, | |
14824 | &setdebuglist, &showdebuglist); | |
14825 | ||
449092f6 CV |
14826 | /* Eventually initialize fileio. See fileio.c */ |
14827 | initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist); | |
c906108c | 14828 | } |