1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007-2009 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
30 #include <target/breakpoints.h>
31 #include <target/target_request.h>
32 #include <target/register.h>
34 #include <flash/nor/core.h>
35 #include "gdb_server.h"
36 #include <target/image.h>
37 #include <jtag/jtag.h>
42 * GDB server implementation.
44 * This implements the GDB Remote Serial Protocol, over TCP connections,
45 * giving GDB access to the JTAG or other hardware debugging facilities
46 * found in most modern embedded processors.
49 /* private connection data for GDB */
52 char buffer
[GDB_BUFFER_SIZE
];
56 enum target_state frontend_state
;
57 struct image
*vflash_image
;
61 bool sync
; /* set flag to true if you want the next stepi to return immediately.
62 allowing GDB to pick up a fresh set of register values from the target
63 without modifying the target state. */
69 #define _DEBUG_GDB_IO_
72 static struct gdb_connection
*current_gdb_connection
;
74 static int gdb_breakpoint_override
;
75 static enum breakpoint_type gdb_breakpoint_override_type
;
77 static int gdb_error(struct connection
*connection
, int retval
);
78 static unsigned short gdb_port
= 3333;
79 static unsigned short gdb_port_next
= 0;
80 static const char DIGITS
[16] = "0123456789abcdef";
82 static void gdb_log_callback(void *priv
, const char *file
, unsigned line
,
83 const char *function
, const char *string
);
85 /* number of gdb connections, mainly to suppress gdb related debugging spam
86 * in helper/log.c when no gdb connections are actually active */
87 int gdb_actual_connections
;
89 /* set if we are sending a memory map to gdb
90 * via qXfer:memory-map:read packet */
91 /* enabled by default*/
92 static int gdb_use_memory_map
= 1;
93 /* enabled by default*/
94 static int gdb_flash_program
= 1;
96 /* if set, data aborts cause an error to be reported in memory read packets
97 * see the code in gdb_read_memory_packet() for further explanations.
98 * Disabled by default.
100 static int gdb_report_data_abort
;
102 static int gdb_last_signal(struct target
*target
)
104 switch (target
->debug_reason
)
106 case DBG_REASON_DBGRQ
:
107 return 0x2; /* SIGINT */
108 case DBG_REASON_BREAKPOINT
:
109 case DBG_REASON_WATCHPOINT
:
110 case DBG_REASON_WPTANDBKPT
:
111 return 0x05; /* SIGTRAP */
112 case DBG_REASON_SINGLESTEP
:
113 return 0x05; /* SIGTRAP */
114 case DBG_REASON_NOTHALTED
:
115 return 0x0; /* no signal... shouldn't happen */
117 LOG_USER("undefined debug reason %d - target needs reset", target
->debug_reason
);
122 static int check_pending(struct connection
*connection
,
123 int timeout_s
, int *got_data
)
125 /* a non-blocking socket will block if there is 0 bytes available on the socket,
126 * but return with as many bytes as are available immediately
130 struct gdb_connection
*gdb_con
= connection
->priv
;
132 if (got_data
== NULL
)
136 if (gdb_con
->buf_cnt
> 0)
143 FD_SET(connection
->fd
, &read_fds
);
145 tv
.tv_sec
= timeout_s
;
147 if (socket_select(connection
->fd
+ 1, &read_fds
, NULL
, NULL
, &tv
) == 0)
149 /* This can typically be because a "monitor" command took too long
150 * before printing any progress messages
154 return ERROR_GDB_TIMEOUT
;
160 *got_data
= FD_ISSET(connection
->fd
, &read_fds
) != 0;
164 static int gdb_get_char_inner(struct connection
*connection
, int* next_char
)
166 struct gdb_connection
*gdb_con
= connection
->priv
;
167 int retval
= ERROR_OK
;
171 if (connection
->service
->type
== CONNECTION_PIPE
)
173 gdb_con
->buf_cnt
= read(connection
->fd
, gdb_con
->buffer
, GDB_BUFFER_SIZE
);
177 retval
= check_pending(connection
, 1, NULL
);
178 if (retval
!= ERROR_OK
)
180 gdb_con
->buf_cnt
= read_socket(connection
->fd
, gdb_con
->buffer
, GDB_BUFFER_SIZE
);
183 if (gdb_con
->buf_cnt
> 0)
187 if (gdb_con
->buf_cnt
== 0)
190 return ERROR_SERVER_REMOTE_CLOSED
;
194 errno
= WSAGetLastError();
201 case WSAECONNABORTED
:
203 return ERROR_SERVER_REMOTE_CLOSED
;
206 return ERROR_SERVER_REMOTE_CLOSED
;
208 LOG_ERROR("read: %d", errno
);
219 return ERROR_SERVER_REMOTE_CLOSED
;
222 return ERROR_SERVER_REMOTE_CLOSED
;
224 LOG_ERROR("read: %s", strerror(errno
));
226 return ERROR_SERVER_REMOTE_CLOSED
;
231 #ifdef _DEBUG_GDB_IO_
232 debug_buffer
= malloc(gdb_con
->buf_cnt
+ 1);
233 memcpy(debug_buffer
, gdb_con
->buffer
, gdb_con
->buf_cnt
);
234 debug_buffer
[gdb_con
->buf_cnt
] = 0;
235 LOG_DEBUG("received '%s'", debug_buffer
);
239 gdb_con
->buf_p
= gdb_con
->buffer
;
241 *next_char
= *(gdb_con
->buf_p
++);
242 if (gdb_con
->buf_cnt
> 0)
243 connection
->input_pending
= 1;
245 connection
->input_pending
= 0;
246 #ifdef _DEBUG_GDB_IO_
247 LOG_DEBUG("returned char '%c' (0x%2.2x)", *next_char
, *next_char
);
254 * The cool thing about this fn is that it allows buf_p and buf_cnt to be
255 * held in registers in the inner loop.
257 * For small caches and embedded systems this is important!
259 static inline int gdb_get_char_fast(struct connection
*connection
, int* next_char
, char **buf_p
, int *buf_cnt
)
261 int retval
= ERROR_OK
;
263 if ((*buf_cnt
)-- > 0)
265 *next_char
= **buf_p
;
268 connection
->input_pending
= 1;
270 connection
->input_pending
= 0;
272 #ifdef _DEBUG_GDB_IO_
273 LOG_DEBUG("returned char '%c' (0x%2.2x)", *next_char
, *next_char
);
279 struct gdb_connection
*gdb_con
= connection
->priv
;
280 gdb_con
->buf_p
= *buf_p
;
281 gdb_con
->buf_cnt
= *buf_cnt
;
282 retval
= gdb_get_char_inner(connection
, next_char
);
283 *buf_p
= gdb_con
->buf_p
;
284 *buf_cnt
= gdb_con
->buf_cnt
;
290 static int gdb_get_char(struct connection
*connection
, int* next_char
)
292 struct gdb_connection
*gdb_con
= connection
->priv
;
293 return gdb_get_char_fast(connection
, next_char
, &gdb_con
->buf_p
, &gdb_con
->buf_cnt
);
297 static int gdb_putback_char(struct connection
*connection
, int last_char
)
299 struct gdb_connection
*gdb_con
= connection
->priv
;
301 if (gdb_con
->buf_p
> gdb_con
->buffer
)
303 *(--gdb_con
->buf_p
) = last_char
;
308 LOG_ERROR("BUG: couldn't put character back");
314 /* The only way we can detect that the socket is closed is the first time
315 * we write to it, we will fail. Subsequent write operations will
316 * succeed. Shudder! */
317 static int gdb_write(struct connection
*connection
, void *data
, int len
)
319 struct gdb_connection
*gdb_con
= connection
->priv
;
321 return ERROR_SERVER_REMOTE_CLOSED
;
323 if (connection
->service
->type
== CONNECTION_PIPE
)
325 /* write to stdout */
326 if (write(STDOUT_FILENO
, data
, len
) == len
)
333 if (write_socket(connection
->fd
, data
, len
) == len
)
339 return ERROR_SERVER_REMOTE_CLOSED
;
342 static int gdb_put_packet_inner(struct connection
*connection
,
343 char *buffer
, int len
)
346 unsigned char my_checksum
= 0;
347 #ifdef _DEBUG_GDB_IO_
352 struct gdb_connection
*gdb_con
= connection
->priv
;
354 for (i
= 0; i
< len
; i
++)
355 my_checksum
+= buffer
[i
];
357 #ifdef _DEBUG_GDB_IO_
359 * At this point we should have nothing in the input queue from GDB,
360 * however sometimes '-' is sent even though we've already received
361 * an ACK (+) for everything we've sent off.
366 retval
= check_pending(connection
, 0, &gotdata
);
367 if (retval
!= ERROR_OK
)
371 if ((retval
= gdb_get_char(connection
, &reply
)) != ERROR_OK
)
374 /* fix a problem with some IAR tools */
375 gdb_putback_char(connection
, reply
);
376 LOG_DEBUG("Unexpected start of new packet");
380 LOG_WARNING("Discard unexpected char %c", reply
);
386 #ifdef _DEBUG_GDB_IO_
387 debug_buffer
= malloc(len
+ 1);
388 memcpy(debug_buffer
, buffer
, len
);
389 debug_buffer
[len
] = 0;
390 LOG_DEBUG("sending packet '$%s#%2.2x'", debug_buffer
, my_checksum
);
394 char local_buffer
[1024];
395 local_buffer
[0] = '$';
396 if ((size_t)len
+ 4 <= sizeof(local_buffer
))
398 /* performance gain on smaller packets by only a single call to gdb_write() */
399 memcpy(local_buffer
+ 1, buffer
, len
++);
400 local_buffer
[len
++] = '#';
401 local_buffer
[len
++] = DIGITS
[(my_checksum
>> 4) & 0xf];
402 local_buffer
[len
++] = DIGITS
[my_checksum
& 0xf];
403 if ((retval
= gdb_write(connection
, local_buffer
, len
)) != ERROR_OK
)
410 /* larger packets are transmitted directly from caller supplied buffer
411 by several calls to gdb_write() to avoid dynamic allocation */
412 local_buffer
[1] = '#';
413 local_buffer
[2] = DIGITS
[(my_checksum
>> 4) & 0xf];
414 local_buffer
[3] = DIGITS
[my_checksum
& 0xf];
415 if ((retval
= gdb_write(connection
, local_buffer
, 1)) != ERROR_OK
)
419 if ((retval
= gdb_write(connection
, buffer
, len
)) != ERROR_OK
)
423 if ((retval
= gdb_write(connection
, local_buffer
+ 1, 3)) != ERROR_OK
)
429 if (gdb_con
->noack_mode
)
432 if ((retval
= gdb_get_char(connection
, &reply
)) != ERROR_OK
)
437 else if (reply
== '-')
439 /* Stop sending output packets for now */
440 log_remove_callback(gdb_log_callback
, connection
);
441 LOG_WARNING("negative reply, retrying");
443 else if (reply
== 0x3)
446 if ((retval
= gdb_get_char(connection
, &reply
)) != ERROR_OK
)
450 else if (reply
== '-')
452 /* Stop sending output packets for now */
453 log_remove_callback(gdb_log_callback
, connection
);
454 LOG_WARNING("negative reply, retrying");
456 else if (reply
== '$') {
457 LOG_ERROR("GDB missing ack(1) - assumed good");
458 gdb_putback_char(connection
, reply
);
462 LOG_ERROR("unknown character(1) 0x%2.2x in reply, dropping connection", reply
);
464 return ERROR_SERVER_REMOTE_CLOSED
;
467 else if (reply
== '$') {
468 LOG_ERROR("GDB missing ack(2) - assumed good");
469 gdb_putback_char(connection
, reply
);
474 LOG_ERROR("unknown character(2) 0x%2.2x in reply, dropping connection", reply
);
476 return ERROR_SERVER_REMOTE_CLOSED
;
480 return ERROR_SERVER_REMOTE_CLOSED
;
485 static int gdb_put_packet(struct connection
*connection
, char *buffer
, int len
)
487 struct gdb_connection
*gdb_con
= connection
->priv
;
489 int retval
= gdb_put_packet_inner(connection
, buffer
, len
);
492 /* we sent some data, reset timer for keep alive messages */
498 static __inline__
int fetch_packet(struct connection
*connection
, int *checksum_ok
, int noack
, int *len
, char *buffer
)
500 unsigned char my_checksum
= 0;
503 int retval
= ERROR_OK
;
505 struct gdb_connection
*gdb_con
= connection
->priv
;
510 /* move this over into local variables to use registers and give the
511 * more freedom to optimize */
512 char *buf_p
= gdb_con
->buf_p
;
513 int buf_cnt
= gdb_con
->buf_cnt
;
517 /* The common case is that we have an entire packet with no escape chars.
518 * We need to leave at least 2 bytes in the buffer to have
519 * gdb_get_char() update various bits and bobs correctly.
521 if ((buf_cnt
> 2) && ((buf_cnt
+ count
) < *len
))
523 /* The compiler will struggle a bit with constant propagation and
524 * aliasing, so we help it by showing that these values do not
525 * change inside the loop
529 int run
= buf_cnt
- 2;
536 if (character
== '#')
538 /* Danger! character can be '#' when esc is
539 * used so we need an explicit boolean for done here.
545 if (character
== '}')
547 /* data transmitted in binary mode (X packet)
548 * uses 0x7d as escape character */
549 my_checksum
+= character
& 0xff;
552 my_checksum
+= character
& 0xff;
553 buffer
[count
++] = (character
^ 0x20) & 0xff;
557 my_checksum
+= character
& 0xff;
558 buffer
[count
++] = character
& 0xff;
568 LOG_ERROR("packet buffer too small");
569 retval
= ERROR_GDB_BUFFER_TOO_SMALL
;
573 retval
= gdb_get_char_fast(connection
, &character
, &buf_p
, &buf_cnt
);
574 if (retval
!= ERROR_OK
)
577 if (character
== '#')
580 if (character
== '}')
582 /* data transmitted in binary mode (X packet)
583 * uses 0x7d as escape character */
584 my_checksum
+= character
& 0xff;
586 retval
= gdb_get_char_fast(connection
, &character
, &buf_p
, &buf_cnt
);
587 if (retval
!= ERROR_OK
)
590 my_checksum
+= character
& 0xff;
591 buffer
[count
++] = (character
^ 0x20) & 0xff;
595 my_checksum
+= character
& 0xff;
596 buffer
[count
++] = character
& 0xff;
600 gdb_con
->buf_p
= buf_p
;
601 gdb_con
->buf_cnt
= buf_cnt
;
603 if (retval
!= ERROR_OK
)
608 if ((retval
= gdb_get_char(connection
, &character
)) != ERROR_OK
)
610 checksum
[0] = character
;
611 if ((retval
= gdb_get_char(connection
, &character
)) != ERROR_OK
)
613 checksum
[1] = character
;
618 *checksum_ok
= (my_checksum
== strtoul(checksum
, NULL
, 16));
624 static int gdb_get_packet_inner(struct connection
*connection
,
625 char *buffer
, int *len
)
629 struct gdb_connection
*gdb_con
= connection
->priv
;
635 if ((retval
= gdb_get_char(connection
, &character
)) != ERROR_OK
)
638 #ifdef _DEBUG_GDB_IO_
639 LOG_DEBUG("character: '%c'", character
);
647 /* gdb sends a dummy ack '+' at every remote connect - see remote_start_remote (remote.c)
648 * in case anyone tries to debug why they receive this warning every time */
649 LOG_WARNING("acknowledgment received, but no packet pending");
652 LOG_WARNING("negative acknowledgment, but no packet pending");
659 LOG_WARNING("ignoring character 0x%x", character
);
662 } while (character
!= '$');
667 /* explicit code expansion here to get faster inlined code in -O3 by not
668 * calculating checksum
670 if (gdb_con
->noack_mode
)
672 if ((retval
= fetch_packet(connection
, &checksum_ok
, 1, len
, buffer
)) != ERROR_OK
)
676 if ((retval
= fetch_packet(connection
, &checksum_ok
, 0, len
, buffer
)) != ERROR_OK
)
680 if (gdb_con
->noack_mode
)
682 /* checksum is not checked in noack mode */
687 if ((retval
= gdb_write(connection
, "+", 1)) != ERROR_OK
)
695 return ERROR_SERVER_REMOTE_CLOSED
;
700 static int gdb_get_packet(struct connection
*connection
, char *buffer
, int *len
)
702 struct gdb_connection
*gdb_con
= connection
->priv
;
704 int retval
= gdb_get_packet_inner(connection
, buffer
, len
);
709 static int gdb_output_con(struct connection
*connection
, const char* line
)
714 bin_size
= strlen(line
);
716 hex_buffer
= malloc(bin_size
*2 + 2);
717 if (hex_buffer
== NULL
)
718 return ERROR_GDB_BUFFER_TOO_SMALL
;
721 for (i
= 0; i
< bin_size
; i
++)
722 snprintf(hex_buffer
+ 1 + i
*2, 3, "%2.2x", line
[i
]);
723 hex_buffer
[bin_size
*2 + 1] = 0;
725 int retval
= gdb_put_packet(connection
, hex_buffer
, bin_size
*2 + 1);
731 static int gdb_output(struct command_context
*context
, const char* line
)
733 /* this will be dumped to the log and also sent as an O packet if possible */
734 LOG_USER_N("%s", line
);
739 static void gdb_frontend_halted(struct target
*target
, struct connection
*connection
)
741 struct gdb_connection
*gdb_connection
= connection
->priv
;
743 /* In the GDB protocol when we are stepping or continuing execution,
744 * we have a lingering reply. Upon receiving a halted event
745 * when we have that lingering packet, we reply to the original
746 * step or continue packet.
748 * Executing monitor commands can bring the target in and
749 * out of the running state so we'll see lots of TARGET_EVENT_XXX
750 * that are to be ignored.
752 if (gdb_connection
->frontend_state
== TARGET_RUNNING
)
757 /* stop forwarding log packets! */
758 log_remove_callback(gdb_log_callback
, connection
);
760 if (gdb_connection
->ctrl_c
)
763 gdb_connection
->ctrl_c
= 0;
767 signal
= gdb_last_signal(target
);
770 snprintf(sig_reply
, 4, "T%2.2x", signal
);
771 gdb_put_packet(connection
, sig_reply
, 3);
772 gdb_connection
->frontend_state
= TARGET_HALTED
;
776 static int gdb_target_callback_event_handler(struct target
*target
,
777 enum target_event event
, void *priv
)
780 struct connection
*connection
= priv
;
782 target_handle_event(target
, event
);
785 case TARGET_EVENT_GDB_HALT
:
786 gdb_frontend_halted(target
, connection
);
788 case TARGET_EVENT_HALTED
:
789 target_call_event_callbacks(target
, TARGET_EVENT_GDB_END
);
791 case TARGET_EVENT_GDB_FLASH_ERASE_START
:
792 target_handle_event(target
, TARGET_EVENT_OLD_gdb_program_config
);
793 if ((retval
= jtag_execute_queue()) != ERROR_OK
)
805 static int gdb_new_connection(struct connection
*connection
)
807 struct gdb_connection
*gdb_connection
= malloc(sizeof(struct gdb_connection
));
808 struct gdb_service
*gdb_service
= connection
->service
->priv
;
812 connection
->priv
= gdb_connection
;
814 /* initialize gdb connection information */
815 gdb_connection
->buf_p
= gdb_connection
->buffer
;
816 gdb_connection
->buf_cnt
= 0;
817 gdb_connection
->ctrl_c
= 0;
818 gdb_connection
->frontend_state
= TARGET_HALTED
;
819 gdb_connection
->vflash_image
= NULL
;
820 gdb_connection
->closed
= 0;
821 gdb_connection
->busy
= 0;
822 gdb_connection
->noack_mode
= 0;
823 gdb_connection
->sync
= true;
825 /* send ACK to GDB for debug request */
826 gdb_write(connection
, "+", 1);
828 /* output goes through gdb connection */
829 command_set_output_handler(connection
->cmd_ctx
, gdb_output
, connection
);
831 /* we must remove all breakpoints registered to the target as a previous
832 * GDB session could leave dangling breakpoints if e.g. communication
835 breakpoint_clear_target(gdb_service
->target
);
836 watchpoint_clear_target(gdb_service
->target
);
838 /* register callback to be informed about target events */
839 target_register_event_callback(gdb_target_callback_event_handler
, connection
);
841 /* remove the initial ACK from the incoming buffer */
842 if ((retval
= gdb_get_char(connection
, &initial_ack
)) != ERROR_OK
)
845 /* FIX!!!??? would we actually ever receive a + here???
848 if (initial_ack
!= '+')
849 gdb_putback_char(connection
, initial_ack
);
850 target_call_event_callbacks(gdb_service
->target
, TARGET_EVENT_GDB_ATTACH
);
852 gdb_actual_connections
++;
853 LOG_DEBUG("New GDB Connection: %d, Target %s, state: %s",
854 gdb_actual_connections
,
855 target_name(gdb_service
->target
),
856 target_state_name(gdb_service
->target
));
861 static int gdb_connection_closed(struct connection
*connection
)
863 struct gdb_service
*gdb_service
= connection
->service
->priv
;
864 struct gdb_connection
*gdb_connection
= connection
->priv
;
866 /* we're done forwarding messages. Tear down callback before
867 * cleaning up connection.
869 log_remove_callback(gdb_log_callback
, connection
);
871 gdb_actual_connections
--;
872 LOG_DEBUG("GDB Close, Target: %s, state: %s, gdb_actual_connections=%d",
873 target_name(gdb_service
->target
),
874 target_state_name(gdb_service
->target
),
875 gdb_actual_connections
);
877 /* see if an image built with vFlash commands is left */
878 if (gdb_connection
->vflash_image
)
880 image_close(gdb_connection
->vflash_image
);
881 free(gdb_connection
->vflash_image
);
882 gdb_connection
->vflash_image
= NULL
;
885 /* if this connection registered a debug-message receiver delete it */
886 delete_debug_msg_receiver(connection
->cmd_ctx
, gdb_service
->target
);
888 if (connection
->priv
)
890 free(connection
->priv
);
891 connection
->priv
= NULL
;
895 LOG_ERROR("BUG: connection->priv == NULL");
899 target_unregister_event_callback(gdb_target_callback_event_handler
, connection
);
901 target_call_event_callbacks(gdb_service
->target
, TARGET_EVENT_GDB_END
);
903 target_call_event_callbacks(gdb_service
->target
, TARGET_EVENT_GDB_DETACH
);
908 static void gdb_send_error(struct connection
*connection
, uint8_t the_error
)
911 snprintf(err
, 4, "E%2.2X", the_error
);
912 gdb_put_packet(connection
, err
, 3);
915 static int gdb_last_signal_packet(struct connection
*connection
,
916 struct target
*target
, char* packet
, int packet_size
)
921 signal
= gdb_last_signal(target
);
923 snprintf(sig_reply
, 4, "S%2.2x", signal
);
924 gdb_put_packet(connection
, sig_reply
, 3);
929 static int gdb_reg_pos(struct target
*target
, int pos
, int len
)
931 if (target
->endianness
== TARGET_LITTLE_ENDIAN
)
934 return len
- 1 - pos
;
937 /* Convert register to string of bytes. NB! The # of bits in the
938 * register might be non-divisible by 8(a byte), in which
939 * case an entire byte is shown.
941 * NB! the format on the wire is the target endianness
943 * The format of reg->value is little endian
946 static void gdb_str_to_target(struct target
*target
,
947 char *tstr
, struct reg
*reg
)
954 buf_len
= DIV_ROUND_UP(reg
->size
, 8);
956 for (i
= 0; i
< buf_len
; i
++)
958 int j
= gdb_reg_pos(target
, i
, buf_len
);
959 tstr
[i
*2] = DIGITS
[(buf
[j
]>>4) & 0xf];
960 tstr
[i
*2 + 1] = DIGITS
[buf
[j
]&0xf];
964 static int hextoint(int c
)
975 LOG_ERROR("BUG: invalid register value %08x", c
);
979 /* copy over in register buffer */
980 static void gdb_target_to_reg(struct target
*target
,
981 char *tstr
, int str_len
, uint8_t *bin
)
985 LOG_ERROR("BUG: gdb value with uneven number of characters encountered");
990 for (i
= 0; i
< str_len
; i
+= 2)
992 uint8_t t
= hextoint(tstr
[i
]) << 4;
993 t
|= hextoint(tstr
[i
+ 1]);
995 int j
= gdb_reg_pos(target
, i
/2, str_len
/2);
1000 static int gdb_get_registers_packet(struct connection
*connection
,
1001 struct target
*target
, char* packet
, int packet_size
)
1003 struct reg
**reg_list
;
1006 int reg_packet_size
= 0;
1011 #ifdef _DEBUG_GDB_IO_
1015 if ((retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
)) != ERROR_OK
)
1017 return gdb_error(connection
, retval
);
1020 for (i
= 0; i
< reg_list_size
; i
++)
1022 reg_packet_size
+= reg_list
[i
]->size
;
1025 reg_packet
= malloc(DIV_ROUND_UP(reg_packet_size
, 8) * 2);
1026 reg_packet_p
= reg_packet
;
1028 for (i
= 0; i
< reg_list_size
; i
++)
1030 gdb_str_to_target(target
, reg_packet_p
, reg_list
[i
]);
1031 reg_packet_p
+= DIV_ROUND_UP(reg_list
[i
]->size
, 8) * 2;
1034 #ifdef _DEBUG_GDB_IO_
1037 reg_packet_p
= strndup(reg_packet
, DIV_ROUND_UP(reg_packet_size
, 8) * 2);
1038 LOG_DEBUG("reg_packet: %s", reg_packet_p
);
1043 gdb_put_packet(connection
, reg_packet
, DIV_ROUND_UP(reg_packet_size
, 8) * 2);
1051 static int gdb_set_registers_packet(struct connection
*connection
,
1052 struct target
*target
, char *packet
, int packet_size
)
1055 struct reg
**reg_list
;
1060 #ifdef _DEBUG_GDB_IO_
1064 /* skip command character */
1068 if (packet_size
% 2)
1070 LOG_WARNING("GDB set_registers packet with uneven characters received, dropping connection");
1071 return ERROR_SERVER_REMOTE_CLOSED
;
1074 if ((retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
)) != ERROR_OK
)
1076 return gdb_error(connection
, retval
);
1080 for (i
= 0; i
< reg_list_size
; i
++)
1083 int chars
= (DIV_ROUND_UP(reg_list
[i
]->size
, 8) * 2);
1085 if (packet_p
+ chars
> packet
+ packet_size
)
1087 LOG_ERROR("BUG: register packet is too small for registers");
1090 bin_buf
= malloc(DIV_ROUND_UP(reg_list
[i
]->size
, 8));
1091 gdb_target_to_reg(target
, packet_p
, chars
, bin_buf
);
1093 reg_list
[i
]->type
->set(reg_list
[i
], bin_buf
);
1095 /* advance packet pointer */
1102 /* free struct reg *reg_list[] array allocated by get_gdb_reg_list */
1105 gdb_put_packet(connection
, "OK", 2);
1110 static int gdb_get_register_packet(struct connection
*connection
,
1111 struct target
*target
, char *packet
, int packet_size
)
1114 int reg_num
= strtoul(packet
+ 1, NULL
, 16);
1115 struct reg
**reg_list
;
1119 #ifdef _DEBUG_GDB_IO_
1123 if ((retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
)) != ERROR_OK
)
1125 return gdb_error(connection
, retval
);
1128 if (reg_list_size
<= reg_num
)
1130 LOG_ERROR("gdb requested a non-existing register");
1134 reg_packet
= malloc(DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8) * 2);
1136 gdb_str_to_target(target
, reg_packet
, reg_list
[reg_num
]);
1138 gdb_put_packet(connection
, reg_packet
, DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8) * 2);
1146 static int gdb_set_register_packet(struct connection
*connection
,
1147 struct target
*target
, char *packet
, int packet_size
)
1151 int reg_num
= strtoul(packet
+ 1, &separator
, 16);
1152 struct reg
**reg_list
;
1158 if ((retval
= target_get_gdb_reg_list(target
, ®_list
, ®_list_size
)) != ERROR_OK
)
1160 return gdb_error(connection
, retval
);
1163 if (reg_list_size
< reg_num
)
1165 LOG_ERROR("gdb requested a non-existing register");
1166 return ERROR_SERVER_REMOTE_CLOSED
;
1169 if (*separator
!= '=')
1171 LOG_ERROR("GDB 'set register packet', but no '=' following the register number");
1172 return ERROR_SERVER_REMOTE_CLOSED
;
1175 /* convert from GDB-string (target-endian) to hex-string (big-endian) */
1176 bin_buf
= malloc(DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8));
1177 int chars
= (DIV_ROUND_UP(reg_list
[reg_num
]->size
, 8) * 2);
1179 /* fix!!! add some sanity checks on packet size here */
1181 gdb_target_to_reg(target
, separator
+ 1, chars
, bin_buf
);
1183 reg_list
[reg_num
]->type
->set(reg_list
[reg_num
], bin_buf
);
1185 gdb_put_packet(connection
, "OK", 2);
1193 static int gdb_error(struct connection
*connection
, int retval
)
1197 case ERROR_TARGET_DATA_ABORT
:
1198 gdb_send_error(connection
, EIO
);
1200 case ERROR_TARGET_TRANSLATION_FAULT
:
1201 gdb_send_error(connection
, EFAULT
);
1203 case ERROR_TARGET_UNALIGNED_ACCESS
:
1204 gdb_send_error(connection
, EFAULT
);
1206 case ERROR_TARGET_NOT_HALTED
:
1207 gdb_send_error(connection
, EFAULT
);
1210 /* This could be that the target reset itself. */
1211 LOG_ERROR("unexpected error %i", retval
);
1212 gdb_send_error(connection
, EFAULT
);
1219 /* We don't have to worry about the default 2 second timeout for GDB packets,
1220 * because GDB breaks up large memory reads into smaller reads.
1222 * 8191 bytes by the looks of it. Why 8191 bytes instead of 8192?????
1224 static int gdb_read_memory_packet(struct connection
*connection
,
1225 struct target
*target
, char *packet
, int packet_size
)
1234 int retval
= ERROR_OK
;
1236 /* skip command character */
1239 addr
= strtoul(packet
, &separator
, 16);
1241 if (*separator
!= ',')
1243 LOG_ERROR("incomplete read memory packet received, dropping connection");
1244 return ERROR_SERVER_REMOTE_CLOSED
;
1247 len
= strtoul(separator
+ 1, NULL
, 16);
1249 buffer
= malloc(len
);
1251 LOG_DEBUG("addr: 0x%8.8" PRIx32
", len: 0x%8.8" PRIx32
"", addr
, len
);
1253 retval
= target_read_buffer(target
, addr
, len
, buffer
);
1255 if ((retval
!= ERROR_OK
)&&!gdb_report_data_abort
)
1257 /* TODO : Here we have to lie and send back all zero's lest stack traces won't work.
1258 * At some point this might be fixed in GDB, in which case this code can be removed.
1260 * OpenOCD developers are acutely aware of this problem, but there is nothing
1261 * gained by involving the user in this problem that hopefully will get resolved
1264 * http://sourceware.org/cgi-bin/gnatsweb.pl?cmd = view%20audit-trail&database = gdb&pr = 2395
1266 * For now, the default is to fix up things to make current GDB versions work.
1267 * This can be overwritten using the gdb_report_data_abort <'enable'|'disable'> command.
1269 memset(buffer
, 0, len
);
1273 if (retval
== ERROR_OK
)
1275 hex_buffer
= malloc(len
* 2 + 1);
1278 for (i
= 0; i
< len
; i
++)
1280 uint8_t t
= buffer
[i
];
1281 hex_buffer
[2 * i
] = DIGITS
[(t
>> 4) & 0xf];
1282 hex_buffer
[2 * i
+ 1] = DIGITS
[t
& 0xf];
1285 gdb_put_packet(connection
, hex_buffer
, len
* 2);
1291 retval
= gdb_error(connection
, retval
);
1299 static int gdb_write_memory_packet(struct connection
*connection
,
1300 struct target
*target
, char *packet
, int packet_size
)
1311 /* skip command character */
1314 addr
= strtoul(packet
, &separator
, 16);
1316 if (*separator
!= ',')
1318 LOG_ERROR("incomplete write memory packet received, dropping connection");
1319 return ERROR_SERVER_REMOTE_CLOSED
;
1322 len
= strtoul(separator
+ 1, &separator
, 16);
1324 if (*(separator
++) != ':')
1326 LOG_ERROR("incomplete write memory packet received, dropping connection");
1327 return ERROR_SERVER_REMOTE_CLOSED
;
1330 buffer
= malloc(len
);
1332 LOG_DEBUG("addr: 0x%8.8" PRIx32
", len: 0x%8.8" PRIx32
"", addr
, len
);
1334 for (i
= 0; i
< len
; i
++)
1337 sscanf(separator
+ 2*i
, "%2" SCNx32
, &tmp
);
1341 retval
= target_write_buffer(target
, addr
, len
, buffer
);
1343 if (retval
== ERROR_OK
)
1345 gdb_put_packet(connection
, "OK", 2);
1349 retval
= gdb_error(connection
, retval
);
1357 static int gdb_write_memory_binary_packet(struct connection
*connection
,
1358 struct target
*target
, char *packet
, int packet_size
)
1366 /* skip command character */
1369 addr
= strtoul(packet
, &separator
, 16);
1371 if (*separator
!= ',')
1373 LOG_ERROR("incomplete write memory binary packet received, dropping connection");
1374 return ERROR_SERVER_REMOTE_CLOSED
;
1377 len
= strtoul(separator
+ 1, &separator
, 16);
1379 if (*(separator
++) != ':')
1381 LOG_ERROR("incomplete write memory binary packet received, dropping connection");
1382 return ERROR_SERVER_REMOTE_CLOSED
;
1388 LOG_DEBUG("addr: 0x%8.8" PRIx32
", len: 0x%8.8" PRIx32
"", addr
, len
);
1390 retval
= target_write_buffer(target
, addr
, len
, (uint8_t*)separator
);
1393 if (retval
== ERROR_OK
)
1395 gdb_put_packet(connection
, "OK", 2);
1399 if ((retval
= gdb_error(connection
, retval
)) != ERROR_OK
)
1406 static int gdb_step_continue_packet(struct connection
*connection
,
1407 struct target
*target
, char *packet
, int packet_size
)
1410 uint32_t address
= 0x0;
1411 int retval
= ERROR_OK
;
1415 if (packet_size
> 1)
1417 packet
[packet_size
] = 0;
1418 address
= strtoul(packet
+ 1, NULL
, 16);
1425 if (packet
[0] == 'c')
1427 LOG_DEBUG("continue");
1428 target_handle_event(target
, TARGET_EVENT_OLD_pre_resume
);
1429 retval
= target_resume(target
, current
, address
, 0, 0); /* resume at current address, don't handle breakpoints, not debugging */
1431 else if (packet
[0] == 's')
1434 /* step at current or address, don't handle breakpoints */
1435 retval
= target_step(target
, current
, address
, 0);
1440 static int gdb_breakpoint_watchpoint_packet(struct connection
*connection
,
1441 struct target
*target
, char *packet
, int packet_size
)
1444 enum breakpoint_type bp_type
= BKPT_SOFT
/* dummy init to avoid warning */;
1445 enum watchpoint_rw wp_type
= WPT_READ
/* dummy init to avoid warning */;
1453 type
= strtoul(packet
+ 1, &separator
, 16);
1455 if (type
== 0) /* memory breakpoint */
1456 bp_type
= BKPT_SOFT
;
1457 else if (type
== 1) /* hardware breakpoint */
1458 bp_type
= BKPT_HARD
;
1459 else if (type
== 2) /* write watchpoint */
1460 wp_type
= WPT_WRITE
;
1461 else if (type
== 3) /* read watchpoint */
1463 else if (type
== 4) /* access watchpoint */
1464 wp_type
= WPT_ACCESS
;
1467 LOG_ERROR("invalid gdb watch/breakpoint type(%d), dropping connection", type
);
1468 return ERROR_SERVER_REMOTE_CLOSED
;
1472 if (gdb_breakpoint_override
&& ((bp_type
== BKPT_SOFT
)||(bp_type
== BKPT_HARD
)))
1474 bp_type
= gdb_breakpoint_override_type
;
1477 if (*separator
!= ',')
1479 LOG_ERROR("incomplete breakpoint/watchpoint packet received, dropping connection");
1480 return ERROR_SERVER_REMOTE_CLOSED
;
1483 address
= strtoul(separator
+ 1, &separator
, 16);
1485 if (*separator
!= ',')
1487 LOG_ERROR("incomplete breakpoint/watchpoint packet received, dropping connection");
1488 return ERROR_SERVER_REMOTE_CLOSED
;
1491 size
= strtoul(separator
+ 1, &separator
, 16);
1497 if (packet
[0] == 'Z')
1499 if ((retval
= breakpoint_add(target
, address
, size
, bp_type
)) != ERROR_OK
)
1501 if ((retval
= gdb_error(connection
, retval
)) != ERROR_OK
)
1506 gdb_put_packet(connection
, "OK", 2);
1511 breakpoint_remove(target
, address
);
1512 gdb_put_packet(connection
, "OK", 2);
1519 if (packet
[0] == 'Z')
1521 if ((retval
= watchpoint_add(target
, address
, size
, wp_type
, 0, 0xffffffffu
)) != ERROR_OK
)
1523 if ((retval
= gdb_error(connection
, retval
)) != ERROR_OK
)
1528 gdb_put_packet(connection
, "OK", 2);
1533 watchpoint_remove(target
, address
);
1534 gdb_put_packet(connection
, "OK", 2);
1545 /* print out a string and allocate more space as needed,
1546 * mainly used for XML at this point
1548 static void xml_printf(int *retval
, char **xml
, int *pos
, int *size
,
1549 const char *fmt
, ...)
1551 if (*retval
!= ERROR_OK
)
1559 if ((*xml
== NULL
) || (!first
))
1561 /* start by 0 to exercise all the code paths.
1562 * Need minimum 2 bytes to fit 1 char and 0 terminator. */
1564 *size
= *size
* 2 + 2;
1566 *xml
= realloc(*xml
, *size
);
1571 *retval
= ERROR_SERVER_REMOTE_CLOSED
;
1579 ret
= vsnprintf(*xml
+ *pos
, *size
- *pos
, fmt
, ap
);
1581 if ((ret
> 0) && ((ret
+ 1) < *size
- *pos
))
1586 /* there was just enough or not enough space, allocate more. */
1591 static int decode_xfer_read(char *buf
, char **annex
, int *ofs
, unsigned int *len
)
1595 /* Extract and NUL-terminate the annex. */
1597 while (*buf
&& *buf
!= ':')
1603 /* After the read marker and annex, qXfer looks like a
1604 * traditional 'm' packet. */
1606 *ofs
= strtoul(buf
, &separator
, 16);
1608 if (*separator
!= ',')
1611 *len
= strtoul(separator
+ 1, NULL
, 16);
1616 static int compare_bank (const void * a
, const void * b
)
1618 struct flash_bank
*b1
, *b2
;
1619 b1
=*((struct flash_bank
**)a
);
1620 b2
=*((struct flash_bank
**)b
);
1622 if (b1
->base
== b2
->base
)
1625 } else if (b1
->base
> b2
->base
)
1634 static int gdb_memory_map(struct connection
*connection
,
1635 struct target
*target
, char *packet
, int packet_size
)
1637 /* We get away with only specifying flash here. Regions that are not
1638 * specified are treated as if we provided no memory map(if not we
1639 * could detect the holes and mark them as RAM).
1640 * Normally we only execute this code once, but no big deal if we
1641 * have to regenerate it a couple of times.
1644 struct flash_bank
*p
;
1648 int retval
= ERROR_OK
;
1649 struct flash_bank
**banks
;
1653 uint32_t ram_start
= 0;
1656 /* skip command character */
1659 offset
= strtoul(packet
, &separator
, 16);
1660 length
= strtoul(separator
+ 1, &separator
, 16);
1662 xml_printf(&retval
, &xml
, &pos
, &size
, "<memory-map>\n");
1664 /* Sort banks in ascending order. We need to report non-flash
1665 * memory as ram (or rather read/write) by default for GDB, since
1666 * it has no concept of non-cacheable read/write memory (i/o etc).
1668 * FIXME Most non-flash addresses are *NOT* RAM! Don't lie.
1669 * Current versions of GDB assume unlisted addresses are RAM...
1671 banks
= malloc(sizeof(struct flash_bank
*)*flash_get_bank_count());
1673 for (i
= 0; i
< flash_get_bank_count(); i
++) {
1674 p
= get_flash_bank_by_num(i
);
1677 retval
= ERROR_FAIL
;
1678 gdb_send_error(connection
, retval
);
1684 qsort(banks
, flash_get_bank_count(), sizeof(struct flash_bank
*),
1687 for (i
= 0; i
< flash_get_bank_count(); i
++) {
1689 unsigned sector_size
= 0;
1690 uint32_t start
, end
;
1694 end
= p
->base
+ p
->size
;
1696 if (ram_start
< p
->base
)
1697 xml_printf(&retval
, &xml
, &pos
, &size
,
1698 "<memory type=\"ram\" start=\"0x%x\" "
1699 "length=\"0x%x\"/>\n",
1700 ram_start
, p
->base
- ram_start
);
1702 /* Report adjacent groups of same-size sectors. So for
1703 * example top boot CFI flash will list an initial region
1704 * with several large sectors (maybe 128KB) and several
1705 * smaller ones at the end (maybe 32KB). STR7 will have
1706 * regions with 8KB, 32KB, and 64KB sectors; etc.
1708 for (j
= 0; j
< p
->num_sectors
; j
++) {
1711 /* Maybe start a new group of sectors. */
1712 if (sector_size
== 0) {
1713 start
= p
->base
+ p
->sectors
[j
].offset
;
1714 xml_printf(&retval
, &xml
, &pos
, &size
,
1715 "<memory type=\"flash\" "
1718 sector_size
= p
->sectors
[j
].size
;
1721 /* Does this finish a group of sectors?
1722 * If not, continue an already-started group.
1724 if (j
== p
->num_sectors
-1)
1725 group_len
= (p
->base
+ p
->size
) - start
;
1726 else if (p
->sectors
[j
+ 1].size
!= sector_size
)
1727 group_len
= p
->base
+ p
->sectors
[j
+ 1].offset
1732 xml_printf(&retval
, &xml
, &pos
, &size
,
1733 "length=\"0x%x\">\n"
1734 "<property name=\"blocksize\">"
1742 ram_start
= p
->base
+ p
->size
;
1746 xml_printf(&retval
, &xml
, &pos
, &size
,
1747 "<memory type=\"ram\" start=\"0x%x\" "
1748 "length=\"0x%x\"/>\n",
1749 ram_start
, 0-ram_start
);
1750 /* ELSE a flash chip could be at the very end of the 32 bit address
1751 * space, in which case ram_start will be precisely 0
1757 xml_printf(&retval
, &xml
, &pos
, &size
, "</memory-map>\n");
1759 if (retval
!= ERROR_OK
) {
1760 gdb_send_error(connection
, retval
);
1764 if (offset
+ length
> pos
)
1765 length
= pos
- offset
;
1767 char *t
= malloc(length
+ 1);
1769 memcpy(t
+ 1, xml
+ offset
, length
);
1770 gdb_put_packet(connection
, t
, length
+ 1);
1777 static int gdb_query_packet(struct connection
*connection
,
1778 struct target
*target
, char *packet
, int packet_size
)
1780 struct command_context
*cmd_ctx
= connection
->cmd_ctx
;
1781 struct gdb_connection
*gdb_connection
= connection
->priv
;
1783 if (strstr(packet
, "qRcmd,"))
1785 if (packet_size
> 6)
1789 cmd
= malloc((packet_size
- 6)/2 + 1);
1790 for (i
= 0; i
< (packet_size
- 6)/2; i
++)
1793 sscanf(packet
+ 6 + 2*i
, "%2" SCNx32
, &tmp
);
1796 cmd
[(packet_size
- 6)/2] = 0x0;
1798 /* We want to print all debug output to GDB connection */
1799 log_add_callback(gdb_log_callback
, connection
);
1800 target_call_timer_callbacks_now();
1801 /* some commands need to know the GDB connection, make note of current
1802 * GDB connection. */
1803 current_gdb_connection
= gdb_connection
;
1804 command_run_line(cmd_ctx
, cmd
);
1805 current_gdb_connection
= NULL
;
1806 target_call_timer_callbacks_now();
1807 log_remove_callback(gdb_log_callback
, connection
);
1810 gdb_put_packet(connection
, "OK", 2);
1813 else if (strstr(packet
, "qCRC:"))
1815 if (packet_size
> 5)
1824 /* skip command character */
1827 addr
= strtoul(packet
, &separator
, 16);
1829 if (*separator
!= ',')
1831 LOG_ERROR("incomplete read memory packet received, dropping connection");
1832 return ERROR_SERVER_REMOTE_CLOSED
;
1835 len
= strtoul(separator
+ 1, NULL
, 16);
1837 retval
= target_checksum_memory(target
, addr
, len
, &checksum
);
1839 if (retval
== ERROR_OK
)
1841 snprintf(gdb_reply
, 10, "C%8.8" PRIx32
"", checksum
);
1842 gdb_put_packet(connection
, gdb_reply
, 9);
1846 if ((retval
= gdb_error(connection
, retval
)) != ERROR_OK
)
1853 else if (strstr(packet
, "qSupported"))
1855 /* we currently support packet size and qXfer:memory-map:read (if enabled)
1856 * disable qXfer:features:read for the moment */
1857 int retval
= ERROR_OK
;
1858 char *buffer
= NULL
;
1862 xml_printf(&retval
, &buffer
, &pos
, &size
,
1863 "PacketSize=%x;qXfer:memory-map:read%c;qXfer:features:read-;QStartNoAckMode+",
1864 (GDB_BUFFER_SIZE
- 1), ((gdb_use_memory_map
== 1) && (flash_get_bank_count() > 0)) ? '+' : '-');
1866 if (retval
!= ERROR_OK
)
1868 gdb_send_error(connection
, 01);
1872 gdb_put_packet(connection
, buffer
, strlen(buffer
));
1877 else if (strstr(packet
, "qXfer:memory-map:read::")
1878 && (flash_get_bank_count() > 0))
1879 return gdb_memory_map(connection
, target
, packet
, packet_size
);
1880 else if (strstr(packet
, "qXfer:features:read:"))
1885 int retval
= ERROR_OK
;
1888 unsigned int length
;
1891 /* skip command character */
1894 if (decode_xfer_read(packet
, &annex
, &offset
, &length
) < 0)
1896 gdb_send_error(connection
, 01);
1900 if (strcmp(annex
, "target.xml") != 0)
1902 gdb_send_error(connection
, 01);
1906 xml_printf(&retval
, &xml
, &pos
, &size
, \
1907 "l < target version=\"1.0\">\n < architecture > arm</architecture>\n</target>\n");
1909 if (retval
!= ERROR_OK
)
1911 gdb_send_error(connection
, retval
);
1915 gdb_put_packet(connection
, xml
, strlen(xml
));
1920 else if (strstr(packet
, "QStartNoAckMode"))
1922 gdb_connection
->noack_mode
= 1;
1923 gdb_put_packet(connection
, "OK", 2);
1927 gdb_put_packet(connection
, "", 0);
1931 static int gdb_v_packet(struct connection
*connection
,
1932 struct target
*target
, char *packet
, int packet_size
)
1934 struct gdb_connection
*gdb_connection
= connection
->priv
;
1935 struct gdb_service
*gdb_service
= connection
->service
->priv
;
1938 /* if flash programming disabled - send a empty reply */
1940 if (gdb_flash_program
== 0)
1942 gdb_put_packet(connection
, "", 0);
1946 if (strstr(packet
, "vFlashErase:"))
1949 unsigned long length
;
1951 char *parse
= packet
+ 12;
1954 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
1955 return ERROR_SERVER_REMOTE_CLOSED
;
1958 addr
= strtoul(parse
, &parse
, 16);
1960 if (*(parse
++) != ',' || *parse
== '\0')
1962 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
1963 return ERROR_SERVER_REMOTE_CLOSED
;
1966 length
= strtoul(parse
, &parse
, 16);
1970 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
1971 return ERROR_SERVER_REMOTE_CLOSED
;
1974 /* assume all sectors need erasing - stops any problems
1975 * when flash_write is called multiple times */
1978 /* perform any target specific operations before the erase */
1979 target_call_event_callbacks(gdb_service
->target
,
1980 TARGET_EVENT_GDB_FLASH_ERASE_START
);
1982 /* vFlashErase:addr,length messages require region start and
1983 * end to be "block" aligned ... if padding is ever needed,
1984 * GDB will have become dangerously confused.
1986 result
= flash_erase_address_range(gdb_service
->target
,
1987 false, addr
, length
);
1989 /* perform any target specific operations after the erase */
1990 target_call_event_callbacks(gdb_service
->target
,
1991 TARGET_EVENT_GDB_FLASH_ERASE_END
);
1994 if (result
!= ERROR_OK
)
1996 /* GDB doesn't evaluate the actual error number returned,
1997 * treat a failed erase as an I/O error
1999 gdb_send_error(connection
, EIO
);
2000 LOG_ERROR("flash_erase returned %i", result
);
2003 gdb_put_packet(connection
, "OK", 2);
2008 if (strstr(packet
, "vFlashWrite:"))
2012 unsigned long length
;
2013 char *parse
= packet
+ 12;
2017 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2018 return ERROR_SERVER_REMOTE_CLOSED
;
2020 addr
= strtoul(parse
, &parse
, 16);
2021 if (*(parse
++) != ':')
2023 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2024 return ERROR_SERVER_REMOTE_CLOSED
;
2026 length
= packet_size
- (parse
- packet
);
2028 /* create a new image if there isn't already one */
2029 if (gdb_connection
->vflash_image
== NULL
)
2031 gdb_connection
->vflash_image
= malloc(sizeof(struct image
));
2032 image_open(gdb_connection
->vflash_image
, "", "build");
2035 /* create new section with content from packet buffer */
2036 if ((retval
= image_add_section(gdb_connection
->vflash_image
, addr
, length
, 0x0, (uint8_t*)parse
)) != ERROR_OK
)
2041 gdb_put_packet(connection
, "OK", 2);
2046 if (!strcmp(packet
, "vFlashDone"))
2050 /* process the flashing buffer. No need to erase as GDB
2051 * always issues a vFlashErase first. */
2052 target_call_event_callbacks(gdb_service
->target
, TARGET_EVENT_GDB_FLASH_WRITE_START
);
2053 result
= flash_write(gdb_service
->target
, gdb_connection
->vflash_image
, &written
, 0);
2054 target_call_event_callbacks(gdb_service
->target
, TARGET_EVENT_GDB_FLASH_WRITE_END
);
2055 if (result
!= ERROR_OK
)
2057 if (result
== ERROR_FLASH_DST_OUT_OF_BANK
)
2058 gdb_put_packet(connection
, "E.memtype", 9);
2060 gdb_send_error(connection
, EIO
);
2064 LOG_DEBUG("wrote %u bytes from vFlash image to flash", (unsigned)written
);
2065 gdb_put_packet(connection
, "OK", 2);
2068 image_close(gdb_connection
->vflash_image
);
2069 free(gdb_connection
->vflash_image
);
2070 gdb_connection
->vflash_image
= NULL
;
2075 gdb_put_packet(connection
, "", 0);
2079 static int gdb_detach(struct connection
*connection
, struct target
*target
)
2081 struct gdb_service
*gdb_service
= connection
->service
->priv
;
2083 target_call_event_callbacks(gdb_service
->target
,
2084 TARGET_EVENT_GDB_DETACH
);
2086 return gdb_put_packet(connection
, "OK", 2);
2089 static void gdb_log_callback(void *priv
, const char *file
, unsigned line
,
2090 const char *function
, const char *string
)
2092 struct connection
*connection
= priv
;
2093 struct gdb_connection
*gdb_con
= connection
->priv
;
2097 /* do not reply this using the O packet */
2101 gdb_output_con(connection
, string
);
2104 static void gdb_sig_halted(struct connection
*connection
)
2107 snprintf(sig_reply
, 4, "T%2.2x", 2);
2108 gdb_put_packet(connection
, sig_reply
, 3);
2112 static int gdb_input_inner(struct connection
*connection
)
2114 /* Do not allocate this on the stack */
2115 static char gdb_packet_buffer
[GDB_BUFFER_SIZE
];
2117 struct gdb_service
*gdb_service
= connection
->service
->priv
;
2118 struct target
*target
= gdb_service
->target
;
2119 char *packet
= gdb_packet_buffer
;
2122 struct gdb_connection
*gdb_con
= connection
->priv
;
2123 static int extended_protocol
= 0;
2125 /* drain input buffer */
2128 packet_size
= GDB_BUFFER_SIZE
-1;
2129 retval
= gdb_get_packet(connection
, packet
, &packet_size
);
2130 if (retval
!= ERROR_OK
)
2133 /* terminate with zero */
2134 packet
[packet_size
] = 0;
2136 if (LOG_LEVEL_IS(LOG_LVL_DEBUG
)) {
2137 if (packet
[0] == 'X') {
2138 // binary packets spew junk into the debug log stream
2141 for (x
= 0 ; (x
< 49) && (packet
[x
] != ':') ; x
++) {
2145 LOG_DEBUG("received packet: '%s:<binary-data>'", buf
);
2147 LOG_DEBUG("received packet: '%s'", packet
);
2151 if (packet_size
> 0)
2157 /* Hct... -- set thread
2158 * we don't have threads, send empty reply */
2159 gdb_put_packet(connection
, NULL
, 0);
2163 retval
= gdb_query_packet(connection
,
2168 retval
= gdb_get_registers_packet(
2170 packet
, packet_size
);
2173 retval
= gdb_set_registers_packet(
2175 packet
, packet_size
);
2178 retval
= gdb_get_register_packet(
2180 packet
, packet_size
);
2183 retval
= gdb_set_register_packet(
2185 packet
, packet_size
);
2188 retval
= gdb_read_memory_packet(
2190 packet
, packet_size
);
2193 retval
= gdb_write_memory_packet(
2195 packet
, packet_size
);
2199 retval
= gdb_breakpoint_watchpoint_packet(connection
, target
, packet
, packet_size
);
2202 gdb_last_signal_packet(
2204 packet
, packet_size
);
2209 int retval
= ERROR_OK
;
2211 struct gdb_connection
*gdb_con
= connection
->priv
;
2212 log_add_callback(gdb_log_callback
, connection
);
2214 bool nostep
= false;
2215 bool already_running
= false;
2216 if (target
->state
== TARGET_RUNNING
)
2218 LOG_WARNING("WARNING! The target is already running. "
2219 "All changes GDB did to registers will be discarded! "
2220 "Waiting for target to halt.");
2221 already_running
= true;
2222 } else if (target
->state
!= TARGET_HALTED
)
2224 LOG_WARNING("The target is not in the halted nor running stated, stepi/continue ignored.");
2226 } else if ((packet
[0] == 's') && gdb_con
->sync
)
2228 /* Hmm..... when you issue a continue in GDB, then a "stepi" is
2229 * sent by GDB first to OpenOCD, thus defeating the check to
2230 * make only the single stepping have the sync feature...
2233 LOG_WARNING("stepi ignored. GDB will now fetch the register state from the target.");
2235 gdb_con
->sync
= false;
2237 if ((retval
!=ERROR_OK
) || (!already_running
&& nostep
))
2239 /* Either the target isn't in the halted state, then we can't
2240 * step/continue. This might be early setup, etc.
2242 * Or we want to allow GDB to pick up a fresh set of
2243 * register values without modifying the target state.
2246 gdb_sig_halted(connection
);
2248 /* stop forwarding log packets! */
2249 log_remove_callback(gdb_log_callback
, connection
);
2252 /* We're running/stepping, in which case we can
2253 * forward log output until the target is halted
2255 gdb_con
->frontend_state
= TARGET_RUNNING
;
2256 target_call_event_callbacks(target
, TARGET_EVENT_GDB_START
);
2258 if (!already_running
)
2260 int retval
= gdb_step_continue_packet(connection
, target
, packet
, packet_size
);
2261 if (retval
!= ERROR_OK
)
2263 /* we'll never receive a halted condition... issue a false one.. */
2264 gdb_frontend_halted(target
, connection
);
2271 retval
= gdb_v_packet(
2273 packet
, packet_size
);
2276 retval
= gdb_detach(connection
, target
);
2277 extended_protocol
= 0;
2280 retval
= gdb_write_memory_binary_packet(
2282 packet
, packet_size
);
2283 if (retval
!= ERROR_OK
)
2287 if (extended_protocol
!= 0)
2289 gdb_put_packet(connection
, "OK", 2);
2290 return ERROR_SERVER_REMOTE_CLOSED
;
2292 /* handle extended remote protocol */
2293 extended_protocol
= 1;
2294 gdb_put_packet(connection
, "OK", 2);
2297 /* handle extended restart packet */
2298 breakpoint_clear_target(gdb_service
->target
);
2299 watchpoint_clear_target(gdb_service
->target
);
2300 command_run_linef(connection
->cmd_ctx
,
2301 "ocd_gdb_restart %s",
2302 target_name(target
));
2305 /* ignore unknown packets */
2306 LOG_DEBUG("ignoring 0x%2.2x packet", packet
[0]);
2307 gdb_put_packet(connection
, NULL
, 0);
2311 /* if a packet handler returned an error, exit input loop */
2312 if (retval
!= ERROR_OK
)
2316 if (gdb_con
->ctrl_c
)
2318 if (target
->state
== TARGET_RUNNING
)
2320 retval
= target_halt(target
);
2321 if (retval
!= ERROR_OK
)
2323 target_call_event_callbacks(target
, TARGET_EVENT_GDB_HALT
);
2325 gdb_con
->ctrl_c
= 0;
2328 LOG_INFO("The target is not running when halt was requested, stopping GDB.");
2329 target_call_event_callbacks(target
, TARGET_EVENT_GDB_HALT
);
2333 } while (gdb_con
->buf_cnt
> 0);
2338 static int gdb_input(struct connection
*connection
)
2340 int retval
= gdb_input_inner(connection
);
2341 struct gdb_connection
*gdb_con
= connection
->priv
;
2342 if (retval
== ERROR_SERVER_REMOTE_CLOSED
)
2345 /* logging does not propagate the error, yet can set the gdb_con->closed flag */
2346 if (gdb_con
->closed
)
2347 return ERROR_SERVER_REMOTE_CLOSED
;
2349 /* we'll recover from any other errors(e.g. temporary timeouts, etc.) */
2353 static int gdb_target_start(struct target
*target
, uint16_t port
)
2355 bool use_pipes
= 0 == port
;
2356 struct gdb_service
*gdb_service
= malloc(sizeof(struct gdb_service
));
2357 if (NULL
== gdb_service
)
2360 gdb_service
->target
= target
;
2362 add_service("gdb", use_pipes
? CONNECTION_PIPE
: CONNECTION_TCP
,
2363 port
, 1, &gdb_new_connection
, &gdb_input
,
2364 &gdb_connection_closed
, gdb_service
);
2366 const char *name
= target_name(target
);
2368 LOG_DEBUG("gdb service for target '%s' using pipes", name
);
2370 LOG_DEBUG("gdb service for target '%s' on TCP port %u", name
, port
);
2374 static int gdb_target_add_one(struct target
*target
)
2376 if (gdb_port
== 0 && server_use_pipes
== 0)
2378 LOG_INFO("gdb port disabled");
2381 if (0 == gdb_port_next
)
2382 gdb_port_next
= gdb_port
;
2384 bool use_pipes
= server_use_pipes
;
2385 static bool server_started_with_pipes
= false;
2386 if (server_started_with_pipes
)
2388 LOG_WARNING("gdb service permits one target when using pipes");
2395 int e
= gdb_target_start(target
, use_pipes
? 0 : gdb_port_next
);
2398 server_started_with_pipes
|= use_pipes
;
2404 int gdb_target_add_all(struct target
*target
)
2408 LOG_WARNING("gdb services need one or more targets defined");
2412 while (NULL
!= target
)
2414 int retval
= gdb_target_add_one(target
);
2415 if (ERROR_OK
!= retval
)
2418 target
= target
->next
;
2424 COMMAND_HANDLER(handle_gdb_sync_command
)
2428 return ERROR_COMMAND_SYNTAX_ERROR
;
2431 if (current_gdb_connection
== NULL
)
2433 command_print(CMD_CTX
,
2434 "gdb_sync command can only be run from within gdb using \"monitor gdb_sync\"");
2438 current_gdb_connection
->sync
= true;
2443 /* daemon configuration command gdb_port */
2444 COMMAND_HANDLER(handle_gdb_port_command
)
2446 int retval
= CALL_COMMAND_HANDLER(server_port_command
, &gdb_port
);
2447 if (ERROR_OK
== retval
)
2448 gdb_port_next
= gdb_port
;
2452 COMMAND_HANDLER(handle_gdb_memory_map_command
)
2455 COMMAND_PARSE_ENABLE(CMD_ARGV
[0], gdb_use_memory_map
);
2457 return ERROR_COMMAND_SYNTAX_ERROR
;
2460 COMMAND_HANDLER(handle_gdb_flash_program_command
)
2463 COMMAND_PARSE_ENABLE(CMD_ARGV
[0], gdb_flash_program
);
2465 return ERROR_COMMAND_SYNTAX_ERROR
;
2468 COMMAND_HANDLER(handle_gdb_report_data_abort_command
)
2471 COMMAND_PARSE_ENABLE(CMD_ARGV
[0], gdb_report_data_abort
);
2473 return ERROR_COMMAND_SYNTAX_ERROR
;
2476 /* gdb_breakpoint_override */
2477 COMMAND_HANDLER(handle_gdb_breakpoint_override_command
)
2482 } else if (CMD_ARGC
== 1)
2484 gdb_breakpoint_override
= 1;
2485 if (strcmp(CMD_ARGV
[0], "hard") == 0)
2487 gdb_breakpoint_override_type
= BKPT_HARD
;
2488 } else if (strcmp(CMD_ARGV
[0], "soft") == 0)
2490 gdb_breakpoint_override_type
= BKPT_SOFT
;
2491 } else if (strcmp(CMD_ARGV
[0], "disable") == 0)
2493 gdb_breakpoint_override
= 0;
2497 return ERROR_COMMAND_SYNTAX_ERROR
;
2499 if (gdb_breakpoint_override
)
2501 LOG_USER("force %s breakpoints", (gdb_breakpoint_override_type
== BKPT_HARD
)?"hard":"soft");
2504 LOG_USER("breakpoint type is not overridden");
2510 static const struct command_registration gdb_command_handlers
[] = {
2513 .handler
= handle_gdb_sync_command
,
2514 .mode
= COMMAND_ANY
,
2515 .help
= "next stepi will return immediately allowing "
2516 "GDB to fetch register state without affecting "
2521 .handler
= handle_gdb_port_command
,
2522 .mode
= COMMAND_ANY
,
2523 .help
= "Display or specify base port on which to listen "
2524 "for incoming GDB connections. "
2525 "No arguments reports GDB port; zero disables.",
2526 .usage
= "[port_num]",
2529 .name
= "gdb_memory_map",
2530 .handler
= handle_gdb_memory_map_command
,
2531 .mode
= COMMAND_CONFIG
,
2532 .help
= "enable or disable memory map",
2533 .usage
= "('enable'|'disable')"
2536 .name
= "gdb_flash_program",
2537 .handler
= handle_gdb_flash_program_command
,
2538 .mode
= COMMAND_CONFIG
,
2539 .help
= "enable or disable flash program",
2540 .usage
= "('enable'|'disable')"
2543 .name
= "gdb_report_data_abort",
2544 .handler
= handle_gdb_report_data_abort_command
,
2545 .mode
= COMMAND_CONFIG
,
2546 .help
= "enable or disable reporting data aborts",
2547 .usage
= "('enable'|'disable')"
2550 .name
= "gdb_breakpoint_override",
2551 .handler
= handle_gdb_breakpoint_override_command
,
2552 .mode
= COMMAND_ANY
,
2553 .help
= "Display or specify type of breakpoint "
2554 "to be used by gdb 'break' commands.",
2555 .usage
= "('hard'|'soft'|'disable')"
2557 COMMAND_REGISTRATION_DONE
2560 int gdb_register_commands(struct command_context
*cmd_ctx
)
2562 return register_commands(cmd_ctx
, NULL
, gdb_command_handlers
);