1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007-2010 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
11 * Copyright (C) 2011 by Broadcom Corporation *
12 * Evan Hunter - ehunter@broadcom.com *
14 * Copyright (C) ST-Ericsson SA 2011 *
15 * michel.jaouen@stericsson.com : smp minimum support *
17 * Copyright (C) 2013 Andes Technology *
18 * Hsiangkai Wang <hkwang@andestech.com> *
20 * Copyright (C) 2013 Franck Jullien *
21 * elec4fun@gmail.com *
23 * This program is free software; you can redistribute it and/or modify *
24 * it under the terms of the GNU General Public License as published by *
25 * the Free Software Foundation; either version 2 of the License, or *
26 * (at your option) any later version. *
28 * This program is distributed in the hope that it will be useful, *
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
31 * GNU General Public License for more details. *
33 * You should have received a copy of the GNU General Public License *
34 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
35 ***************************************************************************/
41 #include <target/breakpoints.h>
42 #include <target/target_request.h>
43 #include <target/register.h>
44 #include <target/target.h>
45 #include <target/target_type.h>
47 #include <flash/nor/core.h>
48 #include "gdb_server.h"
49 #include <target/image.h>
50 #include <jtag/jtag.h>
51 #include "rtos/rtos.h"
52 #include "target/smp.h"
56 * GDB server implementation.
58 * This implements the GDB Remote Serial Protocol, over TCP connections,
59 * giving GDB access to the JTAG or other hardware debugging facilities
60 * found in most modern embedded processors.
63 struct target_desc_format
{
65 uint32_t tdesc_length
;
68 /* private connection data for GDB */
69 struct gdb_connection
{
70 char buffer
[GDB_BUFFER_SIZE
];
74 enum target_state frontend_state
;
75 struct image
*vflash_image
;
79 /* set flag to true if you want the next stepi to return immediately.
80 * allowing GDB to pick up a fresh set of register values from the target
81 * without modifying the target state. */
83 /* We delay reporting memory write errors until next step/continue or memory
84 * write. This improves performance of gdb load significantly as the GDB packet
85 * can be replied immediately and a new GDB packet will be ready without delay
86 * (ca. 10% or so...). */
88 /* with extended-remote it seems we need to better emulate attach/detach.
89 * what this means is we reply with a W stop reply after a kill packet,
90 * normally we reply with a S reply via gdb_last_signal_packet.
91 * as a side note this behaviour only effects gdb > 6.8 */
93 /* temporarily used for target description support */
94 struct target_desc_format target_desc
;
95 /* temporarily used for thread list support */
100 #define _DEBUG_GDB_IO_
103 static struct gdb_connection
*current_gdb_connection
;
105 static int gdb_breakpoint_override
;
106 static enum breakpoint_type gdb_breakpoint_override_type
;
108 static int gdb_error(struct connection
*connection
, int retval
);
109 static char *gdb_port
;
110 static char *gdb_port_next
;
112 static void gdb_log_callback(void *priv
, const char *file
, unsigned line
,
113 const char *function
, const char *string
);
115 static void gdb_sig_halted(struct connection
*connection
);
117 /* number of gdb connections, mainly to suppress gdb related debugging spam
118 * in helper/log.c when no gdb connections are actually active */
119 int gdb_actual_connections
;
121 /* set if we are sending a memory map to gdb
122 * via qXfer:memory-map:read packet */
123 /* enabled by default*/
124 static int gdb_use_memory_map
= 1;
125 /* enabled by default*/
126 static int gdb_flash_program
= 1;
128 /* if set, data aborts cause an error to be reported in memory read packets
129 * see the code in gdb_read_memory_packet() for further explanations.
130 * Disabled by default.
132 static int gdb_report_data_abort
;
133 /* If set, errors when accessing registers are reported to gdb. Disabled by
135 static int gdb_report_register_access_error
;
137 /* set if we are sending target descriptions to gdb
138 * via qXfer:features:read packet */
139 /* enabled by default */
140 static int gdb_use_target_description
= 1;
142 /* current processing free-run type, used by file-I/O */
143 static char gdb_running_type
;
145 static int gdb_last_signal(struct target
*target
)
147 switch (target
->debug_reason
) {
148 case DBG_REASON_DBGRQ
:
149 return 0x2; /* SIGINT */
150 case DBG_REASON_BREAKPOINT
:
151 case DBG_REASON_WATCHPOINT
:
152 case DBG_REASON_WPTANDBKPT
:
153 return 0x05; /* SIGTRAP */
154 case DBG_REASON_SINGLESTEP
:
155 return 0x05; /* SIGTRAP */
156 case DBG_REASON_NOTHALTED
:
157 return 0x0; /* no signal... shouldn't happen */
159 LOG_USER("undefined debug reason %d - target needs reset",
160 target
->debug_reason
);
165 static int check_pending(struct connection
*connection
,
166 int timeout_s
, int *got_data
)
168 /* a non-blocking socket will block if there is 0 bytes available on the socket,
169 * but return with as many bytes as are available immediately
173 struct gdb_connection
*gdb_con
= connection
->priv
;
175 if (got_data
== NULL
)
179 if (gdb_con
->buf_cnt
> 0) {
185 FD_SET(connection
->fd
, &read_fds
);
187 tv
.tv_sec
= timeout_s
;
189 if (socket_select(connection
->fd
+ 1, &read_fds
, NULL
, NULL
, &tv
) == 0) {
190 /* This can typically be because a "monitor" command took too long
191 * before printing any progress messages
194 return ERROR_GDB_TIMEOUT
;
198 *got_data
= FD_ISSET(connection
->fd
, &read_fds
) != 0;
202 static int gdb_get_char_inner(struct connection
*connection
, int *next_char
)
204 struct gdb_connection
*gdb_con
= connection
->priv
;
205 int retval
= ERROR_OK
;
207 #ifdef _DEBUG_GDB_IO_
211 if (connection
->service
->type
!= CONNECTION_TCP
)
212 gdb_con
->buf_cnt
= read(connection
->fd
, gdb_con
->buffer
, GDB_BUFFER_SIZE
);
214 retval
= check_pending(connection
, 1, NULL
);
215 if (retval
!= ERROR_OK
)
217 gdb_con
->buf_cnt
= read_socket(connection
->fd
,
222 if (gdb_con
->buf_cnt
> 0)
224 if (gdb_con
->buf_cnt
== 0) {
225 gdb_con
->closed
= true;
226 return ERROR_SERVER_REMOTE_CLOSED
;
230 errno
= WSAGetLastError();
236 case WSAECONNABORTED
:
237 gdb_con
->closed
= true;
238 return ERROR_SERVER_REMOTE_CLOSED
;
240 gdb_con
->closed
= true;
241 return ERROR_SERVER_REMOTE_CLOSED
;
243 LOG_ERROR("read: %d", errno
);
252 gdb_con
->closed
= true;
253 return ERROR_SERVER_REMOTE_CLOSED
;
255 gdb_con
->closed
= true;
256 return ERROR_SERVER_REMOTE_CLOSED
;
258 LOG_ERROR("read: %s", strerror(errno
));
259 gdb_con
->closed
= true;
260 return ERROR_SERVER_REMOTE_CLOSED
;
265 #ifdef _DEBUG_GDB_IO_
266 debug_buffer
= strndup(gdb_con
->buffer
, gdb_con
->buf_cnt
);
267 LOG_DEBUG("received '%s'", debug_buffer
);
271 gdb_con
->buf_p
= gdb_con
->buffer
;
273 *next_char
= *(gdb_con
->buf_p
++);
274 if (gdb_con
->buf_cnt
> 0)
275 connection
->input_pending
= 1;
277 connection
->input_pending
= 0;
278 #ifdef _DEBUG_GDB_IO_
279 LOG_DEBUG("returned char '%c' (0x%2.2x)", *next_char
, *next_char
);
286 * The cool thing about this fn is that it allows buf_p and buf_cnt to be
287 * held in registers in the inner loop.
289 * For small caches and embedded systems this is important!
291 static inline int gdb_get_char_fast(struct connection
*connection
,
292 int *next_char
, char **buf_p
, int *buf_cnt
)
294 int retval
= ERROR_OK
;
296 if ((*buf_cnt
)-- > 0) {
297 *next_char
= **buf_p
;
300 connection
->input_pending
= 1;
302 connection
->input_pending
= 0;
304 #ifdef _DEBUG_GDB_IO_
305 LOG_DEBUG("returned char '%c' (0x%2.2x)", *next_char
, *next_char
);
311 struct gdb_connection
*gdb_con
= connection
->priv
;
312 gdb_con
->buf_p
= *buf_p
;
313 gdb_con
->buf_cnt
= *buf_cnt
;
314 retval
= gdb_get_char_inner(connection
, next_char
);
315 *buf_p
= gdb_con
->buf_p
;
316 *buf_cnt
= gdb_con
->buf_cnt
;
321 static int gdb_get_char(struct connection
*connection
, int *next_char
)
323 struct gdb_connection
*gdb_con
= connection
->priv
;
324 return gdb_get_char_fast(connection
, next_char
, &gdb_con
->buf_p
, &gdb_con
->buf_cnt
);
327 static int gdb_putback_char(struct connection
*connection
, int last_char
)
329 struct gdb_connection
*gdb_con
= connection
->priv
;
331 if (gdb_con
->buf_p
> gdb_con
->buffer
) {
332 *(--gdb_con
->buf_p
) = last_char
;
335 LOG_ERROR("BUG: couldn't put character back");
340 /* The only way we can detect that the socket is closed is the first time
341 * we write to it, we will fail. Subsequent write operations will
342 * succeed. Shudder! */
343 static int gdb_write(struct connection
*connection
, void *data
, int len
)
345 struct gdb_connection
*gdb_con
= connection
->priv
;
347 return ERROR_SERVER_REMOTE_CLOSED
;
349 if (connection_write(connection
, data
, len
) == len
)
351 gdb_con
->closed
= true;
352 return ERROR_SERVER_REMOTE_CLOSED
;
355 static int gdb_put_packet_inner(struct connection
*connection
,
356 char *buffer
, int len
)
359 unsigned char my_checksum
= 0;
360 #ifdef _DEBUG_GDB_IO_
365 struct gdb_connection
*gdb_con
= connection
->priv
;
367 for (i
= 0; i
< len
; i
++)
368 my_checksum
+= buffer
[i
];
370 #ifdef _DEBUG_GDB_IO_
372 * At this point we should have nothing in the input queue from GDB,
373 * however sometimes '-' is sent even though we've already received
374 * an ACK (+) for everything we've sent off.
378 retval
= check_pending(connection
, 0, &gotdata
);
379 if (retval
!= ERROR_OK
)
383 retval
= gdb_get_char(connection
, &reply
);
384 if (retval
!= ERROR_OK
)
387 /* fix a problem with some IAR tools */
388 gdb_putback_char(connection
, reply
);
389 LOG_DEBUG("Unexpected start of new packet");
393 LOG_WARNING("Discard unexpected char %c", reply
);
398 #ifdef _DEBUG_GDB_IO_
399 debug_buffer
= strndup(buffer
, len
);
400 LOG_DEBUG("sending packet '$%s#%2.2x'", debug_buffer
, my_checksum
);
404 char local_buffer
[1024];
405 local_buffer
[0] = '$';
406 if ((size_t)len
+ 4 <= sizeof(local_buffer
)) {
407 /* performance gain on smaller packets by only a single call to gdb_write() */
408 memcpy(local_buffer
+ 1, buffer
, len
++);
409 len
+= snprintf(local_buffer
+ len
, sizeof(local_buffer
) - len
, "#%02x", my_checksum
);
410 retval
= gdb_write(connection
, local_buffer
, len
);
411 if (retval
!= ERROR_OK
)
414 /* larger packets are transmitted directly from caller supplied buffer
415 * by several calls to gdb_write() to avoid dynamic allocation */
416 snprintf(local_buffer
+ 1, sizeof(local_buffer
) - 1, "#%02x", my_checksum
);
417 retval
= gdb_write(connection
, local_buffer
, 1);
418 if (retval
!= ERROR_OK
)
420 retval
= gdb_write(connection
, buffer
, len
);
421 if (retval
!= ERROR_OK
)
423 retval
= gdb_write(connection
, local_buffer
+ 1, 3);
424 if (retval
!= ERROR_OK
)
428 if (gdb_con
->noack_mode
)
431 retval
= gdb_get_char(connection
, &reply
);
432 if (retval
!= ERROR_OK
)
437 else if (reply
== '-') {
438 /* Stop sending output packets for now */
439 log_remove_callback(gdb_log_callback
, connection
);
440 LOG_WARNING("negative reply, retrying");
441 } else if (reply
== 0x3) {
443 retval
= gdb_get_char(connection
, &reply
);
444 if (retval
!= ERROR_OK
)
448 else if (reply
== '-') {
449 /* Stop sending output packets for now */
450 log_remove_callback(gdb_log_callback
, connection
);
451 LOG_WARNING("negative reply, retrying");
452 } else if (reply
== '$') {
453 LOG_ERROR("GDB missing ack(1) - assumed good");
454 gdb_putback_char(connection
, reply
);
457 LOG_ERROR("unknown character(1) 0x%2.2x in reply, dropping connection", reply
);
458 gdb_con
->closed
= true;
459 return ERROR_SERVER_REMOTE_CLOSED
;
461 } else if (reply
== '$') {
462 LOG_ERROR("GDB missing ack(2) - assumed good");
463 gdb_putback_char(connection
, reply
);
466 LOG_ERROR("unknown character(2) 0x%2.2x in reply, dropping connection",
468 gdb_con
->closed
= true;
469 return ERROR_SERVER_REMOTE_CLOSED
;
473 return ERROR_SERVER_REMOTE_CLOSED
;
478 int gdb_put_packet(struct connection
*connection
, char *buffer
, int len
)
480 struct gdb_connection
*gdb_con
= connection
->priv
;
481 gdb_con
->busy
= true;
482 int retval
= gdb_put_packet_inner(connection
, buffer
, len
);
483 gdb_con
->busy
= false;
485 /* we sent some data, reset timer for keep alive messages */
491 static inline int fetch_packet(struct connection
*connection
,
492 int *checksum_ok
, int noack
, int *len
, char *buffer
)
494 unsigned char my_checksum
= 0;
497 int retval
= ERROR_OK
;
499 struct gdb_connection
*gdb_con
= connection
->priv
;
504 /* move this over into local variables to use registers and give the
505 * more freedom to optimize */
506 char *buf_p
= gdb_con
->buf_p
;
507 int buf_cnt
= gdb_con
->buf_cnt
;
510 /* The common case is that we have an entire packet with no escape chars.
511 * We need to leave at least 2 bytes in the buffer to have
512 * gdb_get_char() update various bits and bobs correctly.
514 if ((buf_cnt
> 2) && ((buf_cnt
+ count
) < *len
)) {
515 /* The compiler will struggle a bit with constant propagation and
516 * aliasing, so we help it by showing that these values do not
517 * change inside the loop
521 int run
= buf_cnt
- 2;
527 if (character
== '#') {
528 /* Danger! character can be '#' when esc is
529 * used so we need an explicit boolean for done here. */
534 if (character
== '}') {
535 /* data transmitted in binary mode (X packet)
536 * uses 0x7d as escape character */
537 my_checksum
+= character
& 0xff;
540 my_checksum
+= character
& 0xff;
541 buffer
[count
++] = (character
^ 0x20) & 0xff;
543 my_checksum
+= character
& 0xff;
544 buffer
[count
++] = character
& 0xff;
553 LOG_ERROR("packet buffer too small");
554 retval
= ERROR_GDB_BUFFER_TOO_SMALL
;
558 retval
= gdb_get_char_fast(connection
, &character
, &buf_p
, &buf_cnt
);
559 if (retval
!= ERROR_OK
)
562 if (character
== '#')
565 if (character
== '}') {
566 /* data transmitted in binary mode (X packet)
567 * uses 0x7d as escape character */
568 my_checksum
+= character
& 0xff;
570 retval
= gdb_get_char_fast(connection
, &character
, &buf_p
, &buf_cnt
);
571 if (retval
!= ERROR_OK
)
574 my_checksum
+= character
& 0xff;
575 buffer
[count
++] = (character
^ 0x20) & 0xff;
577 my_checksum
+= character
& 0xff;
578 buffer
[count
++] = character
& 0xff;
582 gdb_con
->buf_p
= buf_p
;
583 gdb_con
->buf_cnt
= buf_cnt
;
585 if (retval
!= ERROR_OK
)
590 retval
= gdb_get_char(connection
, &character
);
591 if (retval
!= ERROR_OK
)
593 checksum
[0] = character
;
594 retval
= gdb_get_char(connection
, &character
);
595 if (retval
!= ERROR_OK
)
597 checksum
[1] = character
;
601 *checksum_ok
= (my_checksum
== strtoul(checksum
, NULL
, 16));
606 static int gdb_get_packet_inner(struct connection
*connection
,
607 char *buffer
, int *len
)
611 struct gdb_connection
*gdb_con
= connection
->priv
;
615 retval
= gdb_get_char(connection
, &character
);
616 if (retval
!= ERROR_OK
)
619 #ifdef _DEBUG_GDB_IO_
620 LOG_DEBUG("character: '%c'", character
);
627 /* According to the GDB documentation
628 * (https://sourceware.org/gdb/onlinedocs/gdb/Packet-Acknowledgment.html):
629 * "gdb sends a final `+` acknowledgment of the stub's `OK`
630 * response, which can be safely ignored by the stub."
631 * However OpenOCD server already is in noack mode at this
632 * point and instead of ignoring this it was emitting a
633 * warning. This code makes server ignore the first ACK
634 * that will be received after going into noack mode,
635 * warning only about subsequent ACK's. */
636 if (gdb_con
->noack_mode
> 1) {
637 LOG_WARNING("acknowledgment received, but no packet pending");
638 } else if (gdb_con
->noack_mode
) {
639 LOG_DEBUG("Received first acknowledgment after entering noack mode. Ignoring it.");
640 gdb_con
->noack_mode
= 2;
644 LOG_WARNING("negative acknowledgment, but no packet pending");
651 LOG_WARNING("ignoring character 0x%x", character
);
654 } while (character
!= '$');
657 /* explicit code expansion here to get faster inlined code in -O3 by not
658 * calculating checksum */
659 if (gdb_con
->noack_mode
) {
660 retval
= fetch_packet(connection
, &checksum_ok
, 1, len
, buffer
);
661 if (retval
!= ERROR_OK
)
664 retval
= fetch_packet(connection
, &checksum_ok
, 0, len
, buffer
);
665 if (retval
!= ERROR_OK
)
669 if (gdb_con
->noack_mode
) {
670 /* checksum is not checked in noack mode */
674 retval
= gdb_write(connection
, "+", 1);
675 if (retval
!= ERROR_OK
)
681 return ERROR_SERVER_REMOTE_CLOSED
;
686 static int gdb_get_packet(struct connection
*connection
, char *buffer
, int *len
)
688 struct gdb_connection
*gdb_con
= connection
->priv
;
689 gdb_con
->busy
= true;
690 int retval
= gdb_get_packet_inner(connection
, buffer
, len
);
691 gdb_con
->busy
= false;
695 static int gdb_output_con(struct connection
*connection
, const char *line
)
700 bin_size
= strlen(line
);
702 hex_buffer
= malloc(bin_size
* 2 + 2);
703 if (hex_buffer
== NULL
)
704 return ERROR_GDB_BUFFER_TOO_SMALL
;
707 size_t pkt_len
= hexify(hex_buffer
+ 1, (const uint8_t *)line
, bin_size
,
709 int retval
= gdb_put_packet(connection
, hex_buffer
, pkt_len
+ 1);
715 static int gdb_output(struct command_context
*context
, const char *line
)
717 /* this will be dumped to the log and also sent as an O packet if possible */
718 LOG_USER_N("%s", line
);
722 static void gdb_signal_reply(struct target
*target
, struct connection
*connection
)
724 struct gdb_connection
*gdb_connection
= connection
->priv
;
726 char stop_reason
[20];
727 char current_thread
[25];
731 rtos_update_threads(target
);
733 if (target
->debug_reason
== DBG_REASON_EXIT
) {
734 sig_reply_len
= snprintf(sig_reply
, sizeof(sig_reply
), "W00");
736 if (gdb_connection
->ctrl_c
) {
739 signal_var
= gdb_last_signal(target
);
741 stop_reason
[0] = '\0';
742 if (target
->debug_reason
== DBG_REASON_WATCHPOINT
) {
743 enum watchpoint_rw hit_wp_type
;
744 target_addr_t hit_wp_address
;
746 if (watchpoint_hit(target
, &hit_wp_type
, &hit_wp_address
) == ERROR_OK
) {
748 switch (hit_wp_type
) {
750 snprintf(stop_reason
, sizeof(stop_reason
),
751 "watch:%08" TARGET_PRIxADDR
";", hit_wp_address
);
754 snprintf(stop_reason
, sizeof(stop_reason
),
755 "rwatch:%08" TARGET_PRIxADDR
";", hit_wp_address
);
758 snprintf(stop_reason
, sizeof(stop_reason
),
759 "awatch:%08" TARGET_PRIxADDR
";", hit_wp_address
);
767 current_thread
[0] = '\0';
768 if (target
->rtos
!= NULL
) {
770 snprintf(current_thread
, sizeof(current_thread
), "thread:%016" PRIx64
";",
771 target
->rtos
->current_thread
);
772 target
->rtos
->current_threadid
= target
->rtos
->current_thread
;
773 target
->rtos
->gdb_target_for_threadid(connection
, target
->rtos
->current_threadid
, &ct
);
774 if (!gdb_connection
->ctrl_c
)
775 signal_var
= gdb_last_signal(ct
);
778 sig_reply_len
= snprintf(sig_reply
, sizeof(sig_reply
), "T%2.2x%s%s",
779 signal_var
, stop_reason
, current_thread
);
781 gdb_connection
->ctrl_c
= 0;
784 gdb_put_packet(connection
, sig_reply
, sig_reply_len
);
785 gdb_connection
->frontend_state
= TARGET_HALTED
;
788 static void gdb_fileio_reply(struct target
*target
, struct connection
*connection
)
790 struct gdb_connection
*gdb_connection
= connection
->priv
;
791 char fileio_command
[256];
793 bool program_exited
= false;
795 if (strcmp(target
->fileio_info
->identifier
, "open") == 0)
796 sprintf(fileio_command
, "F%s,%" PRIx32
"/%" PRIx32
",%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
797 target
->fileio_info
->param_1
,
798 target
->fileio_info
->param_2
,
799 target
->fileio_info
->param_3
,
800 target
->fileio_info
->param_4
);
801 else if (strcmp(target
->fileio_info
->identifier
, "close") == 0)
802 sprintf(fileio_command
, "F%s,%" PRIx32
, target
->fileio_info
->identifier
,
803 target
->fileio_info
->param_1
);
804 else if (strcmp(target
->fileio_info
->identifier
, "read") == 0)
805 sprintf(fileio_command
, "F%s,%" PRIx32
",%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
806 target
->fileio_info
->param_1
,
807 target
->fileio_info
->param_2
,
808 target
->fileio_info
->param_3
);
809 else if (strcmp(target
->fileio_info
->identifier
, "write") == 0)
810 sprintf(fileio_command
, "F%s,%" PRIx32
",%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
811 target
->fileio_info
->param_1
,
812 target
->fileio_info
->param_2
,
813 target
->fileio_info
->param_3
);
814 else if (strcmp(target
->fileio_info
->identifier
, "lseek") == 0)
815 sprintf(fileio_command
, "F%s,%" PRIx32
",%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
816 target
->fileio_info
->param_1
,
817 target
->fileio_info
->param_2
,
818 target
->fileio_info
->param_3
);
819 else if (strcmp(target
->fileio_info
->identifier
, "rename") == 0)
820 sprintf(fileio_command
, "F%s,%" PRIx32
"/%" PRIx32
",%" PRIx32
"/%" PRIx32
, target
->fileio_info
->identifier
,
821 target
->fileio_info
->param_1
,
822 target
->fileio_info
->param_2
,
823 target
->fileio_info
->param_3
,
824 target
->fileio_info
->param_4
);
825 else if (strcmp(target
->fileio_info
->identifier
, "unlink") == 0)
826 sprintf(fileio_command
, "F%s,%" PRIx32
"/%" PRIx32
, target
->fileio_info
->identifier
,
827 target
->fileio_info
->param_1
,
828 target
->fileio_info
->param_2
);
829 else if (strcmp(target
->fileio_info
->identifier
, "stat") == 0)
830 sprintf(fileio_command
, "F%s,%" PRIx32
"/%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
831 target
->fileio_info
->param_1
,
832 target
->fileio_info
->param_2
,
833 target
->fileio_info
->param_3
);
834 else if (strcmp(target
->fileio_info
->identifier
, "fstat") == 0)
835 sprintf(fileio_command
, "F%s,%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
836 target
->fileio_info
->param_1
,
837 target
->fileio_info
->param_2
);
838 else if (strcmp(target
->fileio_info
->identifier
, "gettimeofday") == 0)
839 sprintf(fileio_command
, "F%s,%" PRIx32
",%" PRIx32
, target
->fileio_info
->identifier
,
840 target
->fileio_info
->param_1
,
841 target
->fileio_info
->param_2
);
842 else if (strcmp(target
->fileio_info
->identifier
, "isatty") == 0)
843 sprintf(fileio_command
, "F%s,%" PRIx32
, target
->fileio_info
->identifier
,
844 target
->fileio_info
->param_1
);
845 else if (strcmp(target
->fileio_info
->identifier
, "system") == 0)
846 sprintf(fileio_command
, "F%s,%" PRIx32
"/%" PRIx32
, target
->fileio_info
->identifier
,
847 target
->fileio_info
->param_1
,
848 target
->fileio_info
->param_2
);
849 else if (strcmp(target
->fileio_info
->identifier
, "exit") == 0) {
850 /* If target hits exit syscall, report to GDB the program is terminated.
851 * In addition, let target run its own exit syscall handler. */
852 program_exited
= true;
853 sprintf(fileio_command
, "W%02" PRIx32
, target
->fileio_info
->param_1
);
855 LOG_DEBUG("Unknown syscall: %s", target
->fileio_info
->identifier
);
857 /* encounter unknown syscall, continue */
858 gdb_connection
->frontend_state
= TARGET_RUNNING
;
859 target_resume(target
, 1, 0x0, 0, 0);
863 command_len
= strlen(fileio_command
);
864 gdb_put_packet(connection
, fileio_command
, command_len
);
866 if (program_exited
) {
867 /* Use target_resume() to let target run its own exit syscall handler. */
868 gdb_connection
->frontend_state
= TARGET_RUNNING
;
869 target_resume(target
, 1, 0x0, 0, 0);
871 gdb_connection
->frontend_state
= TARGET_HALTED
;
872 rtos_update_threads(target
);
876 static void gdb_frontend_halted(struct target
*target
, struct connection
*connection
)
878 struct gdb_connection
*gdb_connection
= connection
->priv
;
880 /* In the GDB protocol when we are stepping or continuing execution,
881 * we have a lingering reply. Upon receiving a halted event
882 * when we have that lingering packet, we reply to the original
883 * step or continue packet.
885 * Executing monitor commands can bring the target in and
886 * out of the running state so we'll see lots of TARGET_EVENT_XXX
887 * that are to be ignored.
889 if (gdb_connection
->frontend_state
== TARGET_RUNNING
) {
890 /* stop forwarding log packets! */
891 log_remove_callback(gdb_log_callback
, connection
);
893 /* check fileio first */
894 if (target_get_gdb_fileio_info(target
, target
->fileio_info
) == ERROR_OK
)
895 gdb_fileio_reply(target
, connection
);
897 gdb_signal_reply(target
, connection
);
901 static int gdb_target_callback_event_handler(struct target
*target
,
902 enum target_event event
, void *priv
)
905 struct connection
*connection
= priv
;
906 struct gdb_service
*gdb_service
= connection
->service
->priv
;
908 if (gdb_service
->target
!= target
)
912 case TARGET_EVENT_GDB_HALT
:
913 gdb_frontend_halted(target
, connection
);
915 case TARGET_EVENT_HALTED
:
916 target_call_event_callbacks(target
, TARGET_EVENT_GDB_END
);
918 case TARGET_EVENT_GDB_FLASH_ERASE_START
:
919 retval
= jtag_execute_queue();
920 if (retval
!= ERROR_OK
)
930 static int gdb_new_connection(struct connection
*connection
)
932 struct gdb_connection
*gdb_connection
= malloc(sizeof(struct gdb_connection
));
933 struct target
*target
;
937 target
= get_target_from_connection(connection
);
938 connection
->priv
= gdb_connection
;
940 /* initialize gdb connection information */
941 gdb_connection
->buf_p
= gdb_connection
->buffer
;
942 gdb_connection
->buf_cnt
= 0;
943 gdb_connection
->ctrl_c
= 0;
944 gdb_connection
->frontend_state
= TARGET_HALTED
;
945 gdb_connection
->vflash_image
= NULL
;
946 gdb_connection
->closed
= false;
947 gdb_connection
->busy
= false;
948 gdb_connection
->noack_mode
= 0;
949 gdb_connection
->sync
= false;
950 gdb_connection
->mem_write_error
= false;
951 gdb_connection
->attached
= true;
952 gdb_connection
->target_desc
.tdesc
= NULL
;
953 gdb_connection
->target_desc
.tdesc_length
= 0;
954 gdb_connection
->thread_list
= NULL
;
956 /* send ACK to GDB for debug request */
957 gdb_write(connection
, "+", 1);
959 /* output goes through gdb connection */
960 command_set_output_handler(connection
->cmd_ctx
, gdb_output
, connection
);
962 /* we must remove all breakpoints registered to the target as a previous
963 * GDB session could leave dangling breakpoints if e.g. communication
966 breakpoint_clear_target(target
);
967 watchpoint_clear_target(target
);
970 /* clean previous rtos session if supported*/
971 if (target
->rtos
->type
->clean
)
972 target
->rtos
->type
->clean(target
);
975 rtos_update_threads(target
);
978 /* remove the initial ACK from the incoming buffer */
979 retval
= gdb_get_char(connection
, &initial_ack
);
980 if (retval
!= ERROR_OK
)
983 /* FIX!!!??? would we actually ever receive a + here???
986 if (initial_ack
!= '+')
987 gdb_putback_char(connection
, initial_ack
);
988 target_call_event_callbacks(target
, TARGET_EVENT_GDB_ATTACH
);
990 if (gdb_use_memory_map
) {
991 /* Connect must fail if the memory map can't be set up correctly.
993 * This will cause an auto_probe to be invoked, which is either
994 * a no-op or it will fail when the target isn't ready(e.g. not halted).
997 for (i
= 0; i
< flash_get_bank_count(); i
++) {
998 struct flash_bank
*p
;
999 p
= get_flash_bank_by_num_noprobe(i
);
1000 if (p
->target
!= target
)
1002 retval
= get_flash_bank_by_num(i
, &p
);
1003 if (retval
!= ERROR_OK
) {
1004 LOG_ERROR("Connect failed. Consider setting up a gdb-attach event for the target " \
1005 "to prepare target for GDB connect, or use 'gdb_memory_map disable'.");
1011 gdb_actual_connections
++;
1012 log_printf_lf(all_targets
->next
!= NULL
? LOG_LVL_INFO
: LOG_LVL_DEBUG
,
1013 __FILE__
, __LINE__
, __func__
,
1014 "New GDB Connection: %d, Target %s, state: %s",
1015 gdb_actual_connections
,
1016 target_name(target
),
1017 target_state_name(target
));
1019 /* DANGER! If we fail subsequently, we must remove this handler,
1020 * otherwise we occasionally see crashes as the timer can invoke the
1023 * register callback to be informed about target events */
1024 target_register_event_callback(gdb_target_callback_event_handler
, connection
);
1029 static int gdb_connection_closed(struct connection
*connection
)
1031 struct target
*target
;
1032 struct gdb_connection
*gdb_connection
= connection
->priv
;
1034 target
= get_target_from_connection(connection
);
1036 /* we're done forwarding messages. Tear down callback before
1037 * cleaning up connection.
1039 log_remove_callback(gdb_log_callback
, connection
);
1041 gdb_actual_connections
--;
1042 LOG_DEBUG("GDB Close, Target: %s, state: %s, gdb_actual_connections=%d",
1043 target_name(target
),
1044 target_state_name(target
),
1045 gdb_actual_connections
);
1047 /* see if an image built with vFlash commands is left */
1048 if (gdb_connection
->vflash_image
) {
1049 image_close(gdb_connection
->vflash_image
);
1050 free(gdb_connection
->vflash_image
);
1051 gdb_connection
->vflash_image
= NULL
;
1054 /* if this connection registered a debug-message receiver delete it */
1055 delete_debug_msg_receiver(connection
->cmd_ctx
, target
);
1057 if (connection
->priv
) {
1058 free(connection
->priv
);
1059 connection
->priv
= NULL
;
1061 LOG_ERROR("BUG: connection->priv == NULL");
1063 target_unregister_event_callback(gdb_target_callback_event_handler
, connection
);
1065 target_call_event_callbacks(target
, TARGET_EVENT_GDB_END
);
1067 target_call_event_callbacks(target
, TARGET_EVENT_GDB_DETACH
);
1072 static void gdb_send_error(struct connection
*connection
, uint8_t the_error
)
1075 snprintf(err
, 4, "E%2.2X", the_error
);
1076 gdb_put_packet(connection
, err
, 3);
1079 static int gdb_last_signal_packet(struct connection
*connection
,
1080 char const *packet
, int packet_size
)
1082 struct target
*target
= get_target_from_connection(connection
);
1083 struct gdb_connection
*gdb_con
= connection
->priv
;
1087 if (!gdb_con
->attached
) {
1088 /* if we are here we have received a kill packet
1089 * reply W stop reply otherwise gdb gets very unhappy */
1090 gdb_put_packet(connection
, "W00", 3);
1094 signal_var
= gdb_last_signal(target
);
1096 snprintf(sig_reply
, 4, "S%2.2x", signal_var
);
1097 gdb_put_packet(connection
, sig_reply
, 3);
1102 static inline int gdb_reg_pos(struct target
*target
, int pos
, int len
)
1104 if (target
->endianness
== TARGET_LITTLE_ENDIAN
)
1107 return len
- 1 - pos
;
1110 /* Convert register to string of bytes. NB! The # of bits in the
1111 * register might be non-divisible by 8(a byte), in which
1112 * case an entire byte is shown.
1114 * NB! the format on the wire is the target endianness
1116 * The format of reg->value is little endian
1119 static void gdb_str_to_target(struct target
*target
,
1120 char *tstr
, struct reg
*reg
)
1127 buf_len
= DIV_ROUND_UP(reg
->size
, 8);
1129 for (i
= 0; i
< buf_len
; i
++) {
1130 int j
= gdb_reg_pos(target
, i
, buf_len
);
1131 tstr
+= sprintf(tstr
, "%02x", buf
[j
]);
1135 /* copy over in register buffer */
1136 static void gdb_target_to_reg(struct target
*target
,
1137 char const *tstr
, int str_len
, uint8_t *bin
)
1140 LOG_ERROR("BUG: gdb value with uneven number of characters encountered");
1145 for (i
= 0; i
< str_len
; i
+= 2) {
1147 if (sscanf(tstr
+ i
, "%02x", &t
) != 1) {
1148 LOG_ERROR("BUG: unable to convert register value");
1152 int j
= gdb_reg_pos(target
, i
/2, str_len
/2);
1157 static int gdb_get_registers_packet(struct connection
*connection
,
1158 char const *packet
, int packet_size
)
1160 struct target
*target
= get_target_from_connection(connection
);
1161 struct reg
**reg_list
;
1164 int reg_packet_size
= 0;
1169 #ifdef _DEBUG_GDB_IO_
1173 if ((target
->rtos
!= NULL
) && (ERROR_OK
== rtos_get_gdb_reg_list(connection
)))
1176 retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
,
1178 if (retval
!= ERROR_OK
)
1179 return gdb_error(connection
, retval
);
1181 for (i
= 0; i
< reg_list_size
; i
++)
1182 reg_packet_size
+= DIV_ROUND_UP(reg_list
[i
]->size
, 8) * 2;
1184 assert(reg_packet_size
> 0);
1186 reg_packet
= malloc(reg_packet_size
+ 1); /* plus one for string termination null */
1187 if (reg_packet
== NULL
)
1190 reg_packet_p
= reg_packet
;
1192 for (i
= 0; i
< reg_list_size
; i
++) {
1193 if (!reg_list
[i
]->valid
) {
1194 retval
= reg_list
[i
]->type
->get(reg_list
[i
]);
1195 if (retval
!= ERROR_OK
&& gdb_report_register_access_error
) {
1196 LOG_DEBUG("Couldn't get register %s.", reg_list
[i
]->name
);
1199 return gdb_error(connection
, retval
);
1202 gdb_str_to_target(target
, reg_packet_p
, reg_list
[i
]);
1203 reg_packet_p
+= DIV_ROUND_UP(reg_list
[i
]->size
, 8) * 2;
1206 #ifdef _DEBUG_GDB_IO_
1208 char *reg_packet_p_debug
;
1209 reg_packet_p_debug
= strndup(reg_packet
, reg_packet_size
);
1210 LOG_DEBUG("reg_packet: %s", reg_packet_p_debug
);
1211 free(reg_packet_p_debug
);
1215 gdb_put_packet(connection
, reg_packet
, reg_packet_size
);
1223 static int gdb_set_registers_packet(struct connection
*connection
,
1224 char const *packet
, int packet_size
)
1226 struct target
*target
= get_target_from_connection(connection
);
1228 struct reg
**reg_list
;
1231 char const *packet_p
;
1233 #ifdef _DEBUG_GDB_IO_
1237 /* skip command character */
1241 if (packet_size
% 2) {
1242 LOG_WARNING("GDB set_registers packet with uneven characters received, dropping connection");
1243 return ERROR_SERVER_REMOTE_CLOSED
;
1246 retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
,
1248 if (retval
!= ERROR_OK
)
1249 return gdb_error(connection
, retval
);
1252 for (i
= 0; i
< reg_list_size
; i
++) {
1254 int chars
= (DIV_ROUND_UP(reg_list
[i
]->size
, 8) * 2);
1256 if (packet_p
+ chars
> packet
+ packet_size
)
1257 LOG_ERROR("BUG: register packet is too small for registers");
1259 bin_buf
= malloc(DIV_ROUND_UP(reg_list
[i
]->size
, 8));
1260 gdb_target_to_reg(target
, packet_p
, chars
, bin_buf
);
1262 retval
= reg_list
[i
]->type
->set(reg_list
[i
], bin_buf
);
1263 if (retval
!= ERROR_OK
&& gdb_report_register_access_error
) {
1264 LOG_DEBUG("Couldn't set register %s.", reg_list
[i
]->name
);
1267 return gdb_error(connection
, retval
);
1270 /* advance packet pointer */
1276 /* free struct reg *reg_list[] array allocated by get_gdb_reg_list */
1279 gdb_put_packet(connection
, "OK", 2);
1284 static int gdb_get_register_packet(struct connection
*connection
,
1285 char const *packet
, int packet_size
)
1287 struct target
*target
= get_target_from_connection(connection
);
1289 int reg_num
= strtoul(packet
+ 1, NULL
, 16);
1290 struct reg
**reg_list
;
1294 #ifdef _DEBUG_GDB_IO_
1298 retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
,
1300 if (retval
!= ERROR_OK
)
1301 return gdb_error(connection
, retval
);
1303 if (reg_list_size
<= reg_num
) {
1304 LOG_ERROR("gdb requested a non-existing register");
1305 return ERROR_SERVER_REMOTE_CLOSED
;
1308 if (!reg_list
[reg_num
]->valid
) {
1309 retval
= reg_list
[reg_num
]->type
->get(reg_list
[reg_num
]);
1310 if (retval
!= ERROR_OK
&& gdb_report_register_access_error
) {
1311 LOG_DEBUG("Couldn't get register %s.", reg_list
[reg_num
]->name
);
1313 return gdb_error(connection
, retval
);
1317 reg_packet
= malloc(DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8) * 2 + 1); /* plus one for string termination null */
1319 gdb_str_to_target(target
, reg_packet
, reg_list
[reg_num
]);
1321 gdb_put_packet(connection
, reg_packet
, DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8) * 2);
1329 static int gdb_set_register_packet(struct connection
*connection
,
1330 char const *packet
, int packet_size
)
1332 struct target
*target
= get_target_from_connection(connection
);
1335 int reg_num
= strtoul(packet
+ 1, &separator
, 16);
1336 struct reg
**reg_list
;
1342 retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
,
1344 if (retval
!= ERROR_OK
)
1345 return gdb_error(connection
, retval
);
1347 if (reg_list_size
<= reg_num
) {
1348 LOG_ERROR("gdb requested a non-existing register");
1349 return ERROR_SERVER_REMOTE_CLOSED
;
1352 if (*separator
!= '=') {
1353 LOG_ERROR("GDB 'set register packet', but no '=' following the register number");
1354 return ERROR_SERVER_REMOTE_CLOSED
;
1357 /* convert from GDB-string (target-endian) to hex-string (big-endian) */
1358 bin_buf
= malloc(DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8));
1359 int chars
= (DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8) * 2);
1361 if ((unsigned int)chars
!= strlen(separator
+ 1)) {
1362 LOG_ERROR("gdb sent a packet with wrong register size");
1364 return ERROR_SERVER_REMOTE_CLOSED
;
1367 gdb_target_to_reg(target
, separator
+ 1, chars
, bin_buf
);
1369 retval
= reg_list
[reg_num
]->type
->set(reg_list
[reg_num
], bin_buf
);
1370 if (retval
!= ERROR_OK
&& gdb_report_register_access_error
) {
1371 LOG_DEBUG("Couldn't set register %s.", reg_list
[reg_num
]->name
);
1374 return gdb_error(connection
, retval
);
1377 gdb_put_packet(connection
, "OK", 2);
1385 /* No attempt is made to translate the "retval" to
1386 * GDB speak. This has to be done at the calling
1387 * site as no mapping really exists.
1389 static int gdb_error(struct connection
*connection
, int retval
)
1391 LOG_DEBUG("Reporting %i to GDB as generic error", retval
);
1392 gdb_send_error(connection
, EFAULT
);
1396 /* We don't have to worry about the default 2 second timeout for GDB packets,
1397 * because GDB breaks up large memory reads into smaller reads.
1399 * 8191 bytes by the looks of it. Why 8191 bytes instead of 8192?????
1401 static int gdb_read_memory_packet(struct connection
*connection
,
1402 char const *packet
, int packet_size
)
1404 struct target
*target
= get_target_from_connection(connection
);
1412 int retval
= ERROR_OK
;
1414 /* skip command character */
1417 addr
= strtoull(packet
, &separator
, 16);
1419 if (*separator
!= ',') {
1420 LOG_ERROR("incomplete read memory packet received, dropping connection");
1421 return ERROR_SERVER_REMOTE_CLOSED
;
1424 len
= strtoul(separator
+ 1, NULL
, 16);
1427 LOG_WARNING("invalid read memory packet received (len == 0)");
1428 gdb_put_packet(connection
, NULL
, 0);
1432 buffer
= malloc(len
);
1434 LOG_DEBUG("addr: 0x%16.16" PRIx64
", len: 0x%8.8" PRIx32
"", addr
, len
);
1436 retval
= target_read_buffer(target
, addr
, len
, buffer
);
1438 if ((retval
!= ERROR_OK
) && !gdb_report_data_abort
) {
1439 /* TODO : Here we have to lie and send back all zero's lest stack traces won't work.
1440 * At some point this might be fixed in GDB, in which case this code can be removed.
1442 * OpenOCD developers are acutely aware of this problem, but there is nothing
1443 * gained by involving the user in this problem that hopefully will get resolved
1446 * http://sourceware.org/cgi-bin/gnatsweb.pl? \
1447 * cmd = view%20audit-trail&database = gdb&pr = 2395
1449 * For now, the default is to fix up things to make current GDB versions work.
1450 * This can be overwritten using the gdb_report_data_abort <'enable'|'disable'> command.
1452 memset(buffer
, 0, len
);
1456 if (retval
== ERROR_OK
) {
1457 hex_buffer
= malloc(len
* 2 + 1);
1459 size_t pkt_len
= hexify(hex_buffer
, buffer
, len
, len
* 2 + 1);
1461 gdb_put_packet(connection
, hex_buffer
, pkt_len
);
1465 retval
= gdb_error(connection
, retval
);
1472 static int gdb_write_memory_packet(struct connection
*connection
,
1473 char const *packet
, int packet_size
)
1475 struct target
*target
= get_target_from_connection(connection
);
1483 /* skip command character */
1486 addr
= strtoull(packet
, &separator
, 16);
1488 if (*separator
!= ',') {
1489 LOG_ERROR("incomplete write memory packet received, dropping connection");
1490 return ERROR_SERVER_REMOTE_CLOSED
;
1493 len
= strtoul(separator
+ 1, &separator
, 16);
1495 if (*(separator
++) != ':') {
1496 LOG_ERROR("incomplete write memory packet received, dropping connection");
1497 return ERROR_SERVER_REMOTE_CLOSED
;
1500 buffer
= malloc(len
);
1502 LOG_DEBUG("addr: 0x%" PRIx64
", len: 0x%8.8" PRIx32
"", addr
, len
);
1504 if (unhexify(buffer
, separator
, len
) != len
)
1505 LOG_ERROR("unable to decode memory packet");
1507 retval
= target_write_buffer(target
, addr
, len
, buffer
);
1509 if (retval
== ERROR_OK
)
1510 gdb_put_packet(connection
, "OK", 2);
1512 retval
= gdb_error(connection
, retval
);
1519 static int gdb_write_memory_binary_packet(struct connection
*connection
,
1520 char const *packet
, int packet_size
)
1522 struct target
*target
= get_target_from_connection(connection
);
1527 int retval
= ERROR_OK
;
1528 /* Packets larger than fast_limit bytes will be acknowledged instantly on
1529 * the assumption that we're in a download and it's important to go as fast
1531 uint32_t fast_limit
= 8;
1533 /* skip command character */
1536 addr
= strtoull(packet
, &separator
, 16);
1538 if (*separator
!= ',') {
1539 LOG_ERROR("incomplete write memory binary packet received, dropping connection");
1540 return ERROR_SERVER_REMOTE_CLOSED
;
1543 len
= strtoul(separator
+ 1, &separator
, 16);
1545 if (*(separator
++) != ':') {
1546 LOG_ERROR("incomplete write memory binary packet received, dropping connection");
1547 return ERROR_SERVER_REMOTE_CLOSED
;
1550 struct gdb_connection
*gdb_connection
= connection
->priv
;
1552 if (gdb_connection
->mem_write_error
)
1553 retval
= ERROR_FAIL
;
1555 if (retval
== ERROR_OK
) {
1556 if (len
>= fast_limit
) {
1557 /* By replying the packet *immediately* GDB will send us a new packet
1558 * while we write the last one to the target.
1559 * We only do this for larger writes, so that users who do something like:
1560 * p *((int*)0xdeadbeef)=8675309
1561 * will get immediate feedback that that write failed.
1563 gdb_put_packet(connection
, "OK", 2);
1566 retval
= gdb_error(connection
, retval
);
1567 /* now that we have reported the memory write error, we can clear the condition */
1568 gdb_connection
->mem_write_error
= false;
1569 if (retval
!= ERROR_OK
)
1574 LOG_DEBUG("addr: 0x%" PRIx64
", len: 0x%8.8" PRIx32
"", addr
, len
);
1576 retval
= target_write_buffer(target
, addr
, len
, (uint8_t *)separator
);
1577 if (retval
!= ERROR_OK
)
1578 gdb_connection
->mem_write_error
= true;
1581 if (len
< fast_limit
) {
1582 if (retval
!= ERROR_OK
) {
1583 gdb_error(connection
, retval
);
1584 gdb_connection
->mem_write_error
= false;
1586 gdb_put_packet(connection
, "OK", 2);
1593 static int gdb_step_continue_packet(struct connection
*connection
,
1594 char const *packet
, int packet_size
)
1596 struct target
*target
= get_target_from_connection(connection
);
1598 uint64_t address
= 0x0;
1599 int retval
= ERROR_OK
;
1603 if (packet_size
> 1)
1604 address
= strtoull(packet
+ 1, NULL
, 16);
1608 gdb_running_type
= packet
[0];
1609 if (packet
[0] == 'c') {
1610 LOG_DEBUG("continue");
1611 /* resume at current address, don't handle breakpoints, not debugging */
1612 retval
= target_resume(target
, current
, address
, 0, 0);
1613 } else if (packet
[0] == 's') {
1615 /* step at current or address, don't handle breakpoints */
1616 retval
= target_step(target
, current
, address
, 0);
1621 static int gdb_breakpoint_watchpoint_packet(struct connection
*connection
,
1622 char const *packet
, int packet_size
)
1624 struct target
*target
= get_target_from_connection(connection
);
1626 enum breakpoint_type bp_type
= BKPT_SOFT
/* dummy init to avoid warning */;
1627 enum watchpoint_rw wp_type
= WPT_READ
/* dummy init to avoid warning */;
1635 type
= strtoul(packet
+ 1, &separator
, 16);
1637 if (type
== 0) /* memory breakpoint */
1638 bp_type
= BKPT_SOFT
;
1639 else if (type
== 1) /* hardware breakpoint */
1640 bp_type
= BKPT_HARD
;
1641 else if (type
== 2) /* write watchpoint */
1642 wp_type
= WPT_WRITE
;
1643 else if (type
== 3) /* read watchpoint */
1645 else if (type
== 4) /* access watchpoint */
1646 wp_type
= WPT_ACCESS
;
1648 LOG_ERROR("invalid gdb watch/breakpoint type(%d), dropping connection", type
);
1649 return ERROR_SERVER_REMOTE_CLOSED
;
1652 if (gdb_breakpoint_override
&& ((bp_type
== BKPT_SOFT
) || (bp_type
== BKPT_HARD
)))
1653 bp_type
= gdb_breakpoint_override_type
;
1655 if (*separator
!= ',') {
1656 LOG_ERROR("incomplete breakpoint/watchpoint packet received, dropping connection");
1657 return ERROR_SERVER_REMOTE_CLOSED
;
1660 address
= strtoull(separator
+ 1, &separator
, 16);
1662 if (*separator
!= ',') {
1663 LOG_ERROR("incomplete breakpoint/watchpoint packet received, dropping connection");
1664 return ERROR_SERVER_REMOTE_CLOSED
;
1667 size
= strtoul(separator
+ 1, &separator
, 16);
1672 if (packet
[0] == 'Z') {
1673 retval
= breakpoint_add(target
, address
, size
, bp_type
);
1674 if (retval
!= ERROR_OK
) {
1675 retval
= gdb_error(connection
, retval
);
1676 if (retval
!= ERROR_OK
)
1679 gdb_put_packet(connection
, "OK", 2);
1681 breakpoint_remove(target
, address
);
1682 gdb_put_packet(connection
, "OK", 2);
1689 if (packet
[0] == 'Z') {
1690 retval
= watchpoint_add(target
, address
, size
, wp_type
, 0, 0xffffffffu
);
1691 if (retval
!= ERROR_OK
) {
1692 retval
= gdb_error(connection
, retval
);
1693 if (retval
!= ERROR_OK
)
1696 gdb_put_packet(connection
, "OK", 2);
1698 watchpoint_remove(target
, address
);
1699 gdb_put_packet(connection
, "OK", 2);
1710 /* print out a string and allocate more space as needed,
1711 * mainly used for XML at this point
1713 static void xml_printf(int *retval
, char **xml
, int *pos
, int *size
,
1714 const char *fmt
, ...)
1716 if (*retval
!= ERROR_OK
)
1721 if ((*xml
== NULL
) || (!first
)) {
1722 /* start by 0 to exercise all the code paths.
1723 * Need minimum 2 bytes to fit 1 char and 0 terminator. */
1725 *size
= *size
* 2 + 2;
1727 *xml
= realloc(*xml
, *size
);
1731 *retval
= ERROR_SERVER_REMOTE_CLOSED
;
1739 ret
= vsnprintf(*xml
+ *pos
, *size
- *pos
, fmt
, ap
);
1741 if ((ret
> 0) && ((ret
+ 1) < *size
- *pos
)) {
1745 /* there was just enough or not enough space, allocate more. */
1750 static int decode_xfer_read(char const *buf
, char **annex
, int *ofs
, unsigned int *len
)
1752 /* Locate the annex. */
1753 const char *annex_end
= strchr(buf
, ':');
1754 if (annex_end
== NULL
)
1757 /* After the read marker and annex, qXfer looks like a
1758 * traditional 'm' packet. */
1760 *ofs
= strtoul(annex_end
+ 1, &separator
, 16);
1762 if (*separator
!= ',')
1765 *len
= strtoul(separator
+ 1, NULL
, 16);
1767 /* Extract the annex if needed */
1768 if (annex
!= NULL
) {
1769 *annex
= strndup(buf
, annex_end
- buf
);
1777 static int compare_bank(const void *a
, const void *b
)
1779 struct flash_bank
*b1
, *b2
;
1780 b1
= *((struct flash_bank
**)a
);
1781 b2
= *((struct flash_bank
**)b
);
1783 if (b1
->base
== b2
->base
)
1785 else if (b1
->base
> b2
->base
)
1791 static int gdb_memory_map(struct connection
*connection
,
1792 char const *packet
, int packet_size
)
1794 /* We get away with only specifying flash here. Regions that are not
1795 * specified are treated as if we provided no memory map(if not we
1796 * could detect the holes and mark them as RAM).
1797 * Normally we only execute this code once, but no big deal if we
1798 * have to regenerate it a couple of times.
1801 struct target
*target
= get_target_from_connection(connection
);
1802 struct flash_bank
*p
;
1806 int retval
= ERROR_OK
;
1807 struct flash_bank
**banks
;
1811 uint32_t ram_start
= 0;
1813 int target_flash_banks
= 0;
1815 /* skip command character */
1818 offset
= strtoul(packet
, &separator
, 16);
1819 length
= strtoul(separator
+ 1, &separator
, 16);
1821 xml_printf(&retval
, &xml
, &pos
, &size
, "<memory-map>\n");
1823 /* Sort banks in ascending order. We need to report non-flash
1824 * memory as ram (or rather read/write) by default for GDB, since
1825 * it has no concept of non-cacheable read/write memory (i/o etc).
1827 * FIXME Most non-flash addresses are *NOT* RAM! Don't lie.
1828 * Current versions of GDB assume unlisted addresses are RAM...
1830 banks
= malloc(sizeof(struct flash_bank
*)*flash_get_bank_count());
1832 for (i
= 0; i
< flash_get_bank_count(); i
++) {
1833 p
= get_flash_bank_by_num_noprobe(i
);
1834 if (p
->target
!= target
)
1836 retval
= get_flash_bank_by_num(i
, &p
);
1837 if (retval
!= ERROR_OK
) {
1839 gdb_error(connection
, retval
);
1842 banks
[target_flash_banks
++] = p
;
1845 qsort(banks
, target_flash_banks
, sizeof(struct flash_bank
*),
1848 for (i
= 0; i
< target_flash_banks
; i
++) {
1850 unsigned sector_size
= 0;
1856 if (ram_start
< p
->base
)
1857 xml_printf(&retval
, &xml
, &pos
, &size
,
1858 "<memory type=\"ram\" start=\"0x%x\" "
1859 "length=\"0x%x\"/>\n",
1860 ram_start
, p
->base
- ram_start
);
1862 /* Report adjacent groups of same-size sectors. So for
1863 * example top boot CFI flash will list an initial region
1864 * with several large sectors (maybe 128KB) and several
1865 * smaller ones at the end (maybe 32KB). STR7 will have
1866 * regions with 8KB, 32KB, and 64KB sectors; etc.
1868 for (j
= 0; j
< p
->num_sectors
; j
++) {
1871 /* Maybe start a new group of sectors. */
1872 if (sector_size
== 0) {
1873 start
= p
->base
+ p
->sectors
[j
].offset
;
1874 xml_printf(&retval
, &xml
, &pos
, &size
,
1875 "<memory type=\"flash\" "
1878 sector_size
= p
->sectors
[j
].size
;
1881 /* Does this finish a group of sectors?
1882 * If not, continue an already-started group.
1884 if (j
== p
->num_sectors
- 1)
1885 group_len
= (p
->base
+ p
->size
) - start
;
1886 else if (p
->sectors
[j
+ 1].size
!= sector_size
)
1887 group_len
= p
->base
+ p
->sectors
[j
+ 1].offset
1892 xml_printf(&retval
, &xml
, &pos
, &size
,
1893 "length=\"0x%x\">\n"
1894 "<property name=\"blocksize\">"
1902 ram_start
= p
->base
+ p
->size
;
1906 xml_printf(&retval
, &xml
, &pos
, &size
,
1907 "<memory type=\"ram\" start=\"0x%x\" "
1908 "length=\"0x%x\"/>\n",
1909 ram_start
, 0-ram_start
);
1910 /* ELSE a flash chip could be at the very end of the 32 bit address
1911 * space, in which case ram_start will be precisely 0
1917 xml_printf(&retval
, &xml
, &pos
, &size
, "</memory-map>\n");
1919 if (retval
!= ERROR_OK
) {
1920 gdb_error(connection
, retval
);
1924 if (offset
+ length
> pos
)
1925 length
= pos
- offset
;
1927 char *t
= malloc(length
+ 1);
1929 memcpy(t
+ 1, xml
+ offset
, length
);
1930 gdb_put_packet(connection
, t
, length
+ 1);
1937 static const char *gdb_get_reg_type_name(enum reg_type type
)
1946 case REG_TYPE_INT16
:
1948 case REG_TYPE_INT32
:
1950 case REG_TYPE_INT64
:
1952 case REG_TYPE_INT128
:
1956 case REG_TYPE_UINT8
:
1958 case REG_TYPE_UINT16
:
1960 case REG_TYPE_UINT32
:
1962 case REG_TYPE_UINT64
:
1964 case REG_TYPE_UINT128
:
1966 case REG_TYPE_CODE_PTR
:
1968 case REG_TYPE_DATA_PTR
:
1970 case REG_TYPE_FLOAT
:
1972 case REG_TYPE_IEEE_SINGLE
:
1973 return "ieee_single";
1974 case REG_TYPE_IEEE_DOUBLE
:
1975 return "ieee_double";
1976 case REG_TYPE_ARCH_DEFINED
:
1977 return "int"; /* return arbitrary string to avoid compile warning. */
1980 return "int"; /* "int" as default value */
1983 static int lookup_add_arch_defined_types(char const **arch_defined_types_list
[], const char *type_id
,
1984 int *num_arch_defined_types
)
1986 int tbl_sz
= *num_arch_defined_types
;
1988 if (type_id
!= NULL
&& (strcmp(type_id
, ""))) {
1989 for (int j
= 0; j
< (tbl_sz
+ 1); j
++) {
1990 if (!((*arch_defined_types_list
)[j
])) {
1991 (*arch_defined_types_list
)[tbl_sz
++] = type_id
;
1992 *arch_defined_types_list
= realloc(*arch_defined_types_list
,
1993 sizeof(char *) * (tbl_sz
+ 1));
1994 (*arch_defined_types_list
)[tbl_sz
] = NULL
;
1995 *num_arch_defined_types
= tbl_sz
;
1998 if (!strcmp((*arch_defined_types_list
)[j
], type_id
))
2007 static int gdb_generate_reg_type_description(struct target
*target
,
2008 char **tdesc
, int *pos
, int *size
, struct reg_data_type
*type
,
2009 char const **arch_defined_types_list
[], int * num_arch_defined_types
)
2011 int retval
= ERROR_OK
;
2013 if (type
->type_class
== REG_TYPE_CLASS_VECTOR
) {
2014 struct reg_data_type
*data_type
= type
->reg_type_vector
->type
;
2015 if (data_type
->type
== REG_TYPE_ARCH_DEFINED
) {
2016 if (lookup_add_arch_defined_types(arch_defined_types_list
, data_type
->id
,
2017 num_arch_defined_types
))
2018 gdb_generate_reg_type_description(target
, tdesc
, pos
, size
, data_type
,
2019 arch_defined_types_list
,
2020 num_arch_defined_types
);
2022 /* <vector id="id" type="type" count="count"/> */
2023 xml_printf(&retval
, tdesc
, pos
, size
,
2024 "<vector id=\"%s\" type=\"%s\" count=\"%d\"/>\n",
2025 type
->id
, type
->reg_type_vector
->type
->id
,
2026 type
->reg_type_vector
->count
);
2028 } else if (type
->type_class
== REG_TYPE_CLASS_UNION
) {
2029 struct reg_data_type_union_field
*field
;
2030 field
= type
->reg_type_union
->fields
;
2031 while (field
!= NULL
) {
2032 struct reg_data_type
*data_type
= field
->type
;
2033 if (data_type
->type
== REG_TYPE_ARCH_DEFINED
) {
2034 if (lookup_add_arch_defined_types(arch_defined_types_list
, data_type
->id
,
2035 num_arch_defined_types
))
2036 gdb_generate_reg_type_description(target
, tdesc
, pos
, size
, data_type
,
2037 arch_defined_types_list
,
2038 num_arch_defined_types
);
2041 field
= field
->next
;
2044 * <field name="name" type="type"/> ...
2046 xml_printf(&retval
, tdesc
, pos
, size
,
2047 "<union id=\"%s\">\n",
2050 field
= type
->reg_type_union
->fields
;
2051 while (field
!= NULL
) {
2052 xml_printf(&retval
, tdesc
, pos
, size
,
2053 "<field name=\"%s\" type=\"%s\"/>\n",
2054 field
->name
, field
->type
->id
);
2056 field
= field
->next
;
2059 xml_printf(&retval
, tdesc
, pos
, size
,
2062 } else if (type
->type_class
== REG_TYPE_CLASS_STRUCT
) {
2063 struct reg_data_type_struct_field
*field
;
2064 field
= type
->reg_type_struct
->fields
;
2066 if (field
->use_bitfields
) {
2067 /* <struct id="id" size="size">
2068 * <field name="name" start="start" end="end"/> ...
2070 xml_printf(&retval
, tdesc
, pos
, size
,
2071 "<struct id=\"%s\" size=\"%d\">\n",
2072 type
->id
, type
->reg_type_struct
->size
);
2073 while (field
!= NULL
) {
2074 xml_printf(&retval
, tdesc
, pos
, size
,
2075 "<field name=\"%s\" start=\"%d\" end=\"%d\" type=\"%s\" />\n",
2076 field
->name
, field
->bitfield
->start
, field
->bitfield
->end
,
2077 gdb_get_reg_type_name(field
->bitfield
->type
));
2079 field
= field
->next
;
2082 while (field
!= NULL
) {
2083 struct reg_data_type
*data_type
= field
->type
;
2084 if (data_type
->type
== REG_TYPE_ARCH_DEFINED
) {
2085 if (lookup_add_arch_defined_types(arch_defined_types_list
, data_type
->id
,
2086 num_arch_defined_types
))
2087 gdb_generate_reg_type_description(target
, tdesc
, pos
, size
, data_type
,
2088 arch_defined_types_list
,
2089 num_arch_defined_types
);
2094 * <field name="name" type="type"/> ...
2096 xml_printf(&retval
, tdesc
, pos
, size
,
2097 "<struct id=\"%s\">\n",
2099 while (field
!= NULL
) {
2100 xml_printf(&retval
, tdesc
, pos
, size
,
2101 "<field name=\"%s\" type=\"%s\"/>\n",
2102 field
->name
, field
->type
->id
);
2104 field
= field
->next
;
2108 xml_printf(&retval
, tdesc
, pos
, size
,
2111 } else if (type
->type_class
== REG_TYPE_CLASS_FLAGS
) {
2112 /* <flags id="id" size="size">
2113 * <field name="name" start="start" end="end"/> ...
2115 xml_printf(&retval
, tdesc
, pos
, size
,
2116 "<flags id=\"%s\" size=\"%d\">\n",
2117 type
->id
, type
->reg_type_flags
->size
);
2119 struct reg_data_type_flags_field
*field
;
2120 field
= type
->reg_type_flags
->fields
;
2121 while (field
!= NULL
) {
2122 xml_printf(&retval
, tdesc
, pos
, size
,
2123 "<field name=\"%s\" start=\"%d\" end=\"%d\" type=\"%s\" />\n",
2124 field
->name
, field
->bitfield
->start
, field
->bitfield
->end
,
2125 gdb_get_reg_type_name(field
->bitfield
->type
));
2127 field
= field
->next
;
2130 xml_printf(&retval
, tdesc
, pos
, size
,
2138 /* Get a list of available target registers features. feature_list must
2139 * be freed by caller.
2141 static int get_reg_features_list(struct target
*target
, char const **feature_list
[], int *feature_list_size
,
2142 struct reg
**reg_list
, int reg_list_size
)
2146 /* Start with only one element */
2147 *feature_list
= calloc(1, sizeof(char *));
2149 for (int i
= 0; i
< reg_list_size
; i
++) {
2150 if (reg_list
[i
]->exist
== false)
2153 if (reg_list
[i
]->feature
!= NULL
2154 && reg_list
[i
]->feature
->name
!= NULL
2155 && (strcmp(reg_list
[i
]->feature
->name
, ""))) {
2156 /* We found a feature, check if the feature is already in the
2157 * table. If not, allocate a new entry for the table and
2158 * put the new feature in it.
2160 for (int j
= 0; j
< (tbl_sz
+ 1); j
++) {
2161 if (!((*feature_list
)[j
])) {
2162 (*feature_list
)[tbl_sz
++] = reg_list
[i
]->feature
->name
;
2163 *feature_list
= realloc(*feature_list
, sizeof(char *) * (tbl_sz
+ 1));
2164 (*feature_list
)[tbl_sz
] = NULL
;
2167 if (!strcmp((*feature_list
)[j
], reg_list
[i
]->feature
->name
))
2174 if (feature_list_size
)
2175 *feature_list_size
= tbl_sz
;
2180 static int gdb_generate_target_description(struct target
*target
, char **tdesc_out
)
2182 int retval
= ERROR_OK
;
2183 struct reg
**reg_list
= NULL
;
2185 char const **features
= NULL
;
2186 char const **arch_defined_types
= NULL
;
2187 int feature_list_size
= 0;
2188 int num_arch_defined_types
= 0;
2193 arch_defined_types
= calloc(1, sizeof(char *));
2195 retval
= target_get_gdb_reg_list(target
, ®_list
,
2196 ®_list_size
, REG_CLASS_ALL
);
2198 if (retval
!= ERROR_OK
) {
2199 LOG_ERROR("get register list failed");
2200 retval
= ERROR_FAIL
;
2204 if (reg_list_size
<= 0) {
2205 LOG_ERROR("get register list failed");
2206 retval
= ERROR_FAIL
;
2210 /* Get a list of available target registers features */
2211 retval
= get_reg_features_list(target
, &features
, &feature_list_size
, reg_list
, reg_list_size
);
2212 if (retval
!= ERROR_OK
) {
2213 LOG_ERROR("Can't get the registers feature list");
2214 retval
= ERROR_FAIL
;
2218 /* If we found some features associated with registers, create sections */
2219 int current_feature
= 0;
2221 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2222 "<?xml version=\"1.0\"?>\n"
2223 "<!DOCTYPE target SYSTEM \"gdb-target.dtd\">\n"
2224 "<target version=\"1.0\">\n");
2226 /* generate target description according to register list */
2227 if (features
!= NULL
) {
2228 while (features
[current_feature
]) {
2230 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2231 "<feature name=\"%s\">\n",
2232 features
[current_feature
]);
2235 for (i
= 0; i
< reg_list_size
; i
++) {
2237 if (reg_list
[i
]->exist
== false)
2240 if (strcmp(reg_list
[i
]->feature
->name
, features
[current_feature
]))
2243 const char *type_str
;
2244 if (reg_list
[i
]->reg_data_type
!= NULL
) {
2245 if (reg_list
[i
]->reg_data_type
->type
== REG_TYPE_ARCH_DEFINED
) {
2246 /* generate <type... first, if there are architecture-defined types. */
2247 if (lookup_add_arch_defined_types(&arch_defined_types
,
2248 reg_list
[i
]->reg_data_type
->id
,
2249 &num_arch_defined_types
))
2250 gdb_generate_reg_type_description(target
, &tdesc
, &pos
, &size
,
2251 reg_list
[i
]->reg_data_type
,
2252 &arch_defined_types
,
2253 &num_arch_defined_types
);
2255 type_str
= reg_list
[i
]->reg_data_type
->id
;
2257 /* predefined type */
2258 type_str
= gdb_get_reg_type_name(
2259 reg_list
[i
]->reg_data_type
->type
);
2262 /* Default type is "int" */
2266 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2267 "<reg name=\"%s\"", reg_list
[i
]->name
);
2268 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2269 " bitsize=\"%d\"", reg_list
[i
]->size
);
2270 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2271 " regnum=\"%d\"", reg_list
[i
]->number
);
2272 if (reg_list
[i
]->caller_save
)
2273 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2274 " save-restore=\"yes\"");
2276 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2277 " save-restore=\"no\"");
2279 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2280 " type=\"%s\"", type_str
);
2282 if (reg_list
[i
]->group
!= NULL
)
2283 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2284 " group=\"%s\"", reg_list
[i
]->group
);
2286 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2290 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2297 xml_printf(&retval
, &tdesc
, &pos
, &size
,
2303 free(arch_defined_types
);
2305 if (retval
== ERROR_OK
)
2313 static int gdb_get_target_description_chunk(struct target
*target
, struct target_desc_format
*target_desc
,
2314 char **chunk
, int32_t offset
, uint32_t length
)
2316 if (target_desc
== NULL
) {
2317 LOG_ERROR("Unable to Generate Target Description");
2321 char *tdesc
= target_desc
->tdesc
;
2322 uint32_t tdesc_length
= target_desc
->tdesc_length
;
2324 if (tdesc
== NULL
) {
2325 int retval
= gdb_generate_target_description(target
, &tdesc
);
2326 if (retval
!= ERROR_OK
) {
2327 LOG_ERROR("Unable to Generate Target Description");
2331 tdesc_length
= strlen(tdesc
);
2336 if (length
< (tdesc_length
- offset
))
2337 transfer_type
= 'm';
2339 transfer_type
= 'l';
2341 *chunk
= malloc(length
+ 2);
2342 if (*chunk
== NULL
) {
2343 LOG_ERROR("Unable to allocate memory");
2347 (*chunk
)[0] = transfer_type
;
2348 if (transfer_type
== 'm') {
2349 strncpy((*chunk
) + 1, tdesc
+ offset
, length
);
2350 (*chunk
)[1 + length
] = '\0';
2352 strncpy((*chunk
) + 1, tdesc
+ offset
, tdesc_length
- offset
);
2353 (*chunk
)[1 + (tdesc_length
- offset
)] = '\0';
2355 /* After gdb-server sends out last chunk, invalidate tdesc. */
2361 target_desc
->tdesc
= tdesc
;
2362 target_desc
->tdesc_length
= tdesc_length
;
2367 static int gdb_target_description_supported(struct target
*target
, int *supported
)
2369 int retval
= ERROR_OK
;
2370 struct reg
**reg_list
= NULL
;
2371 int reg_list_size
= 0;
2372 char const **features
= NULL
;
2373 int feature_list_size
= 0;
2375 retval
= target_get_gdb_reg_list(target
, ®_list
,
2376 ®_list_size
, REG_CLASS_ALL
);
2377 if (retval
!= ERROR_OK
) {
2378 LOG_ERROR("get register list failed");
2382 if (reg_list_size
<= 0) {
2383 LOG_ERROR("get register list failed");
2384 retval
= ERROR_FAIL
;
2388 /* Get a list of available target registers features */
2389 retval
= get_reg_features_list(target
, &features
, &feature_list_size
, reg_list
, reg_list_size
);
2390 if (retval
!= ERROR_OK
) {
2391 LOG_ERROR("Can't get the registers feature list");
2396 if (feature_list_size
)
2410 static int gdb_generate_thread_list(struct target
*target
, char **thread_list_out
)
2412 struct rtos
*rtos
= target
->rtos
;
2413 int retval
= ERROR_OK
;
2414 char *thread_list
= NULL
;
2418 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2419 "<?xml version=\"1.0\"?>\n"
2423 for (int i
= 0; i
< rtos
->thread_count
; i
++) {
2424 struct thread_detail
*thread_detail
= &rtos
->thread_details
[i
];
2426 if (!thread_detail
->exists
)
2429 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2430 "<thread id=\"%" PRIx64
"\">", thread_detail
->threadid
);
2432 if (thread_detail
->thread_name_str
!= NULL
)
2433 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2434 "Name: %s", thread_detail
->thread_name_str
);
2436 if (thread_detail
->extra_info_str
!= NULL
) {
2437 if (thread_detail
->thread_name_str
!= NULL
)
2438 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2440 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2441 thread_detail
->extra_info_str
);
2444 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2449 xml_printf(&retval
, &thread_list
, &pos
, &size
,
2452 if (retval
== ERROR_OK
)
2453 *thread_list_out
= thread_list
;
2460 static int gdb_get_thread_list_chunk(struct target
*target
, char **thread_list
,
2461 char **chunk
, int32_t offset
, uint32_t length
)
2463 if (*thread_list
== NULL
) {
2464 int retval
= gdb_generate_thread_list(target
, thread_list
);
2465 if (retval
!= ERROR_OK
) {
2466 LOG_ERROR("Unable to Generate Thread List");
2471 size_t thread_list_length
= strlen(*thread_list
);
2474 length
= MIN(length
, thread_list_length
- offset
);
2475 if (length
< (thread_list_length
- offset
))
2476 transfer_type
= 'm';
2478 transfer_type
= 'l';
2480 *chunk
= malloc(length
+ 2 + 3);
2481 /* Allocating extra 3 bytes prevents false positive valgrind report
2482 * of strlen(chunk) word access:
2483 * Invalid read of size 4
2484 * Address 0x4479934 is 44 bytes inside a block of size 45 alloc'd */
2485 if (*chunk
== NULL
) {
2486 LOG_ERROR("Unable to allocate memory");
2490 (*chunk
)[0] = transfer_type
;
2491 strncpy((*chunk
) + 1, (*thread_list
) + offset
, length
);
2492 (*chunk
)[1 + length
] = '\0';
2494 /* After gdb-server sends out last chunk, invalidate thread list. */
2495 if (transfer_type
== 'l') {
2497 *thread_list
= NULL
;
2503 static int gdb_query_packet(struct connection
*connection
,
2504 char const *packet
, int packet_size
)
2506 struct command_context
*cmd_ctx
= connection
->cmd_ctx
;
2507 struct gdb_connection
*gdb_connection
= connection
->priv
;
2508 struct target
*target
= get_target_from_connection(connection
);
2510 if (strncmp(packet
, "qRcmd,", 6) == 0) {
2511 if (packet_size
> 6) {
2513 cmd
= malloc((packet_size
- 6) / 2 + 1);
2514 size_t len
= unhexify((uint8_t *)cmd
, packet
+ 6, (packet_size
- 6) / 2);
2517 /* We want to print all debug output to GDB connection */
2518 log_add_callback(gdb_log_callback
, connection
);
2519 target_call_timer_callbacks_now();
2520 /* some commands need to know the GDB connection, make note of current
2521 * GDB connection. */
2522 current_gdb_connection
= gdb_connection
;
2523 command_run_line(cmd_ctx
, cmd
);
2524 current_gdb_connection
= NULL
;
2525 target_call_timer_callbacks_now();
2526 log_remove_callback(gdb_log_callback
, connection
);
2529 gdb_put_packet(connection
, "OK", 2);
2531 } else if (strncmp(packet
, "qCRC:", 5) == 0) {
2532 if (packet_size
> 5) {
2537 target_addr_t addr
= 0;
2540 /* skip command character */
2543 addr
= strtoull(packet
, &separator
, 16);
2545 if (*separator
!= ',') {
2546 LOG_ERROR("incomplete read memory packet received, dropping connection");
2547 return ERROR_SERVER_REMOTE_CLOSED
;
2550 len
= strtoul(separator
+ 1, NULL
, 16);
2552 retval
= target_checksum_memory(target
, addr
, len
, &checksum
);
2554 if (retval
== ERROR_OK
) {
2555 snprintf(gdb_reply
, 10, "C%8.8" PRIx32
"", checksum
);
2556 gdb_put_packet(connection
, gdb_reply
, 9);
2558 retval
= gdb_error(connection
, retval
);
2559 if (retval
!= ERROR_OK
)
2565 } else if (strncmp(packet
, "qSupported", 10) == 0) {
2566 /* we currently support packet size and qXfer:memory-map:read (if enabled)
2567 * qXfer:features:read is supported for some targets */
2568 int retval
= ERROR_OK
;
2569 char *buffer
= NULL
;
2572 int gdb_target_desc_supported
= 0;
2574 /* we need to test that the target supports target descriptions */
2575 retval
= gdb_target_description_supported(target
, &gdb_target_desc_supported
);
2576 if (retval
!= ERROR_OK
) {
2577 LOG_INFO("Failed detecting Target Description Support, disabling");
2578 gdb_target_desc_supported
= 0;
2581 /* support may be disabled globally */
2582 if (gdb_use_target_description
== 0) {
2583 if (gdb_target_desc_supported
)
2584 LOG_WARNING("Target Descriptions Supported, but disabled");
2585 gdb_target_desc_supported
= 0;
2592 "PacketSize=%x;qXfer:memory-map:read%c;qXfer:features:read%c;qXfer:threads:read+;QStartNoAckMode+;vContSupported+",
2593 (GDB_BUFFER_SIZE
- 1),
2594 ((gdb_use_memory_map
== 1) && (flash_get_bank_count() > 0)) ? '+' : '-',
2595 (gdb_target_desc_supported
== 1) ? '+' : '-');
2597 if (retval
!= ERROR_OK
) {
2598 gdb_send_error(connection
, 01);
2602 gdb_put_packet(connection
, buffer
, strlen(buffer
));
2606 } else if ((strncmp(packet
, "qXfer:memory-map:read::", 23) == 0)
2607 && (flash_get_bank_count() > 0))
2608 return gdb_memory_map(connection
, packet
, packet_size
);
2609 else if (strncmp(packet
, "qXfer:features:read:", 20) == 0) {
2611 int retval
= ERROR_OK
;
2614 unsigned int length
;
2616 /* skip command character */
2619 if (decode_xfer_read(packet
, NULL
, &offset
, &length
) < 0) {
2620 gdb_send_error(connection
, 01);
2624 /* Target should prepare correct target description for annex.
2625 * The first character of returned xml is 'm' or 'l'. 'm' for
2626 * there are *more* chunks to transfer. 'l' for it is the *last*
2627 * chunk of target description.
2629 retval
= gdb_get_target_description_chunk(target
, &gdb_connection
->target_desc
,
2630 &xml
, offset
, length
);
2631 if (retval
!= ERROR_OK
) {
2632 gdb_error(connection
, retval
);
2636 gdb_put_packet(connection
, xml
, strlen(xml
));
2640 } else if (strncmp(packet
, "qXfer:threads:read:", 19) == 0) {
2642 int retval
= ERROR_OK
;
2645 unsigned int length
;
2647 /* skip command character */
2650 if (decode_xfer_read(packet
, NULL
, &offset
, &length
) < 0) {
2651 gdb_send_error(connection
, 01);
2655 /* Target should prepare correct thread list for annex.
2656 * The first character of returned xml is 'm' or 'l'. 'm' for
2657 * there are *more* chunks to transfer. 'l' for it is the *last*
2658 * chunk of target description.
2660 retval
= gdb_get_thread_list_chunk(target
, &gdb_connection
->thread_list
,
2661 &xml
, offset
, length
);
2662 if (retval
!= ERROR_OK
) {
2663 gdb_error(connection
, retval
);
2667 gdb_put_packet(connection
, xml
, strlen(xml
));
2671 } else if (strncmp(packet
, "QStartNoAckMode", 15) == 0) {
2672 gdb_connection
->noack_mode
= 1;
2673 gdb_put_packet(connection
, "OK", 2);
2677 gdb_put_packet(connection
, "", 0);
2681 static bool gdb_handle_vcont_packet(struct connection
*connection
, const char *packet
, int packet_size
)
2683 struct gdb_connection
*gdb_connection
= connection
->priv
;
2684 struct target
*target
= get_target_from_connection(connection
);
2685 const char *parse
= packet
;
2688 /* query for vCont supported */
2689 if (parse
[0] == '?') {
2690 if (target
->type
->step
!= NULL
) {
2691 /* gdb doesn't accept c without C and s without S */
2692 gdb_put_packet(connection
, "vCont;c;C;s;S", 13);
2698 if (parse
[0] == ';') {
2703 /* simple case, a continue packet */
2704 if (parse
[0] == 'c') {
2705 LOG_DEBUG("target %s continue", target_name(target
));
2706 log_add_callback(gdb_log_callback
, connection
);
2707 retval
= target_resume(target
, 1, 0, 0, 0);
2708 if (retval
== ERROR_TARGET_NOT_HALTED
)
2709 LOG_INFO("target %s was not halted when resume was requested", target_name(target
));
2711 /* poll target in an attempt to make its internal state consistent */
2712 if (retval
!= ERROR_OK
) {
2713 retval
= target_poll(target
);
2714 if (retval
!= ERROR_OK
)
2715 LOG_DEBUG("error polling target %s after failed resume", target_name(target
));
2719 * We don't report errors to gdb here, move frontend_state to
2720 * TARGET_RUNNING to stay in sync with gdb's expectation of the
2723 gdb_connection
->frontend_state
= TARGET_RUNNING
;
2724 target_call_event_callbacks(target
, TARGET_EVENT_GDB_START
);
2729 /* single-step or step-over-breakpoint */
2730 if (parse
[0] == 's') {
2731 bool fake_step
= false;
2733 if (strncmp(parse
, "s:", 2) == 0) {
2734 struct target
*ct
= target
;
2742 thread_id
= strtoll(parse
, &endp
, 16);
2744 packet_size
-= endp
- parse
;
2748 if (target
->rtos
!= NULL
) {
2749 /* FIXME: why is this necessary? rtos state should be up-to-date here already! */
2750 rtos_update_threads(target
);
2752 target
->rtos
->gdb_target_for_threadid(connection
, thread_id
, &ct
);
2755 * check if the thread to be stepped is the current rtos thread
2756 * if not, we must fake the step
2758 if (target
->rtos
->current_thread
!= thread_id
)
2762 if (parse
[0] == ';') {
2766 if (parse
[0] == 'c') {
2770 /* check if thread-id follows */
2771 if (parse
[0] == ':') {
2776 tid
= strtoll(parse
, &endp
, 16);
2777 if (tid
== thread_id
) {
2779 * Special case: only step a single thread (core),
2780 * keep the other threads halted. Currently, only
2781 * aarch64 target understands it. Other target types don't
2782 * care (nobody checks the actual value of 'current')
2783 * and it doesn't really matter. This deserves
2784 * a symbolic constant and a formal interface documentation
2787 LOG_DEBUG("request to step current core only");
2788 /* uncomment after checking that indeed other targets are safe */
2795 LOG_DEBUG("target %s single-step thread %"PRIx64
, target_name(ct
), thread_id
);
2796 log_add_callback(gdb_log_callback
, connection
);
2797 target_call_event_callbacks(ct
, TARGET_EVENT_GDB_START
);
2800 * work around an annoying gdb behaviour: when the current thread
2801 * is changed in gdb, it assumes that the target can follow and also
2802 * make the thread current. This is an assumption that cannot hold
2803 * for a real target running a multi-threading OS. We just fake
2804 * the step to not trigger an internal error in gdb. See
2805 * https://sourceware.org/bugzilla/show_bug.cgi?id=22925 for details
2809 char sig_reply
[128];
2811 LOG_DEBUG("fake step thread %"PRIx64
, thread_id
);
2813 sig_reply_len
= snprintf(sig_reply
, sizeof(sig_reply
),
2814 "T05thread:%016"PRIx64
";", thread_id
);
2816 gdb_put_packet(connection
, sig_reply
, sig_reply_len
);
2817 log_remove_callback(gdb_log_callback
, connection
);
2822 /* support for gdb_sync command */
2823 if (gdb_connection
->sync
) {
2824 gdb_connection
->sync
= false;
2825 if (ct
->state
== TARGET_HALTED
) {
2826 LOG_WARNING("stepi ignored. GDB will now fetch the register state " \
2827 "from the target.");
2828 gdb_sig_halted(connection
);
2829 log_remove_callback(gdb_log_callback
, connection
);
2831 gdb_connection
->frontend_state
= TARGET_RUNNING
;
2835 retval
= target_step(ct
, current_pc
, 0, 0);
2836 if (retval
== ERROR_TARGET_NOT_HALTED
)
2837 LOG_INFO("target %s was not halted when step was requested", target_name(ct
));
2839 /* if step was successful send a reply back to gdb */
2840 if (retval
== ERROR_OK
) {
2841 retval
= target_poll(ct
);
2842 if (retval
!= ERROR_OK
)
2843 LOG_DEBUG("error polling target %s after successful step", target_name(ct
));
2844 /* send back signal information */
2845 gdb_signal_reply(ct
, connection
);
2846 /* stop forwarding log packets! */
2847 log_remove_callback(gdb_log_callback
, connection
);
2849 gdb_connection
->frontend_state
= TARGET_RUNNING
;
2851 LOG_ERROR("Unknown vCont packet");
2860 static int gdb_v_packet(struct connection
*connection
,
2861 char const *packet
, int packet_size
)
2863 struct gdb_connection
*gdb_connection
= connection
->priv
;
2864 struct target
*target
;
2867 target
= get_target_from_connection(connection
);
2869 if (strncmp(packet
, "vCont", 5) == 0) {
2875 handled
= gdb_handle_vcont_packet(connection
, packet
, packet_size
);
2877 gdb_put_packet(connection
, "", 0);
2882 /* if flash programming disabled - send a empty reply */
2884 if (gdb_flash_program
== 0) {
2885 gdb_put_packet(connection
, "", 0);
2889 if (strncmp(packet
, "vFlashErase:", 12) == 0) {
2891 unsigned long length
;
2893 char const *parse
= packet
+ 12;
2894 if (*parse
== '\0') {
2895 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2896 return ERROR_SERVER_REMOTE_CLOSED
;
2899 addr
= strtoul(parse
, (char **)&parse
, 16);
2901 if (*(parse
++) != ',' || *parse
== '\0') {
2902 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2903 return ERROR_SERVER_REMOTE_CLOSED
;
2906 length
= strtoul(parse
, (char **)&parse
, 16);
2908 if (*parse
!= '\0') {
2909 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2910 return ERROR_SERVER_REMOTE_CLOSED
;
2913 /* assume all sectors need erasing - stops any problems
2914 * when flash_write is called multiple times */
2917 /* perform any target specific operations before the erase */
2918 target_call_event_callbacks(target
,
2919 TARGET_EVENT_GDB_FLASH_ERASE_START
);
2921 /* vFlashErase:addr,length messages require region start and
2922 * end to be "block" aligned ... if padding is ever needed,
2923 * GDB will have become dangerously confused.
2925 result
= flash_erase_address_range(target
, false, addr
,
2928 /* perform any target specific operations after the erase */
2929 target_call_event_callbacks(target
,
2930 TARGET_EVENT_GDB_FLASH_ERASE_END
);
2933 if (result
!= ERROR_OK
) {
2934 /* GDB doesn't evaluate the actual error number returned,
2935 * treat a failed erase as an I/O error
2937 gdb_send_error(connection
, EIO
);
2938 LOG_ERROR("flash_erase returned %i", result
);
2940 gdb_put_packet(connection
, "OK", 2);
2945 if (strncmp(packet
, "vFlashWrite:", 12) == 0) {
2948 unsigned long length
;
2949 char const *parse
= packet
+ 12;
2951 if (*parse
== '\0') {
2952 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2953 return ERROR_SERVER_REMOTE_CLOSED
;
2955 addr
= strtoul(parse
, (char **)&parse
, 16);
2956 if (*(parse
++) != ':') {
2957 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2958 return ERROR_SERVER_REMOTE_CLOSED
;
2960 length
= packet_size
- (parse
- packet
);
2962 /* create a new image if there isn't already one */
2963 if (gdb_connection
->vflash_image
== NULL
) {
2964 gdb_connection
->vflash_image
= malloc(sizeof(struct image
));
2965 image_open(gdb_connection
->vflash_image
, "", "build");
2968 /* create new section with content from packet buffer */
2969 retval
= image_add_section(gdb_connection
->vflash_image
,
2970 addr
, length
, 0x0, (uint8_t const *)parse
);
2971 if (retval
!= ERROR_OK
)
2974 gdb_put_packet(connection
, "OK", 2);
2979 if (strncmp(packet
, "vFlashDone", 10) == 0) {
2982 /* process the flashing buffer. No need to erase as GDB
2983 * always issues a vFlashErase first. */
2984 target_call_event_callbacks(target
,
2985 TARGET_EVENT_GDB_FLASH_WRITE_START
);
2986 result
= flash_write(target
, gdb_connection
->vflash_image
,
2988 target_call_event_callbacks(target
,
2989 TARGET_EVENT_GDB_FLASH_WRITE_END
);
2990 if (result
!= ERROR_OK
) {
2991 if (result
== ERROR_FLASH_DST_OUT_OF_BANK
)
2992 gdb_put_packet(connection
, "E.memtype", 9);
2994 gdb_send_error(connection
, EIO
);
2996 LOG_DEBUG("wrote %u bytes from vFlash image to flash", (unsigned)written
);
2997 gdb_put_packet(connection
, "OK", 2);
3000 image_close(gdb_connection
->vflash_image
);
3001 free(gdb_connection
->vflash_image
);
3002 gdb_connection
->vflash_image
= NULL
;
3007 gdb_put_packet(connection
, "", 0);
3011 static int gdb_detach(struct connection
*connection
)
3013 target_call_event_callbacks(get_target_from_connection(connection
),
3014 TARGET_EVENT_GDB_DETACH
);
3016 return gdb_put_packet(connection
, "OK", 2);
3019 /* The format of 'F' response packet is
3020 * Fretcode,errno,Ctrl-C flag;call-specific attachment
3022 static int gdb_fileio_response_packet(struct connection
*connection
,
3023 char const *packet
, int packet_size
)
3025 struct target
*target
= get_target_from_connection(connection
);
3027 char *parsing_point
;
3028 int fileio_retcode
= strtoul(packet
+ 1, &separator
, 16);
3029 int fileio_errno
= 0;
3030 bool fileio_ctrl_c
= false;
3035 if (*separator
== ',') {
3036 parsing_point
= separator
+ 1;
3037 fileio_errno
= strtoul(parsing_point
, &separator
, 16);
3038 if (*separator
== ',') {
3039 if (*(separator
+ 1) == 'C') {
3040 /* TODO: process ctrl-c */
3041 fileio_ctrl_c
= true;
3046 LOG_DEBUG("File-I/O response, retcode: 0x%x, errno: 0x%x, ctrl-c: %s",
3047 fileio_retcode
, fileio_errno
, fileio_ctrl_c
? "true" : "false");
3049 retval
= target_gdb_fileio_end(target
, fileio_retcode
, fileio_errno
, fileio_ctrl_c
);
3050 if (retval
!= ERROR_OK
)
3053 /* After File-I/O ends, keep continue or step */
3054 if (gdb_running_type
== 'c')
3055 retval
= target_resume(target
, 1, 0x0, 0, 0);
3056 else if (gdb_running_type
== 's')
3057 retval
= target_step(target
, 1, 0x0, 0);
3059 retval
= ERROR_FAIL
;
3061 if (retval
!= ERROR_OK
)