build: remove warn_unused_result errors
[openocd/genbsdl.git] / src / server / gdb_server.c
blob222af47a0486ebc2dcab316d8d4a3429e9d94325
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007-2010 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
10 * *
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. *
15 * *
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. *
20 * *
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 ***************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
30 #include <target/breakpoints.h>
31 #include <target/target_request.h>
32 #include <target/register.h>
33 #include "server.h"
34 #include <flash/nor/core.h>
35 #include "gdb_server.h"
36 #include <target/image.h>
37 #include <jtag/jtag.h>
40 /**
41 * @file
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 */
50 struct gdb_connection
52 char buffer[GDB_BUFFER_SIZE];
53 char *buf_p;
54 int buf_cnt;
55 int ctrl_c;
56 enum target_state frontend_state;
57 struct image *vflash_image;
58 int closed;
59 int busy;
60 int noack_mode;
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. */
64 /* We delay reporting memory write errors until next step/continue or memory
65 * write. This improves performance of gdb load significantly as the GDB packet
66 * can be replied immediately and a new GDB packet will be ready without delay
67 * (ca. 10% or so...).
69 bool mem_write_error;
73 #if 0
74 #define _DEBUG_GDB_IO_
75 #endif
77 static struct gdb_connection *current_gdb_connection;
79 static int gdb_breakpoint_override;
80 static enum breakpoint_type gdb_breakpoint_override_type;
82 static int gdb_error(struct connection *connection, int retval);
83 static const char *gdb_port;
84 static const char *gdb_port_next;
85 static const char DIGITS[16] = "0123456789abcdef";
87 static void gdb_log_callback(void *priv, const char *file, unsigned line,
88 const char *function, const char *string);
90 /* number of gdb connections, mainly to suppress gdb related debugging spam
91 * in helper/log.c when no gdb connections are actually active */
92 int gdb_actual_connections;
94 /* set if we are sending a memory map to gdb
95 * via qXfer:memory-map:read packet */
96 /* enabled by default*/
97 static int gdb_use_memory_map = 1;
98 /* enabled by default*/
99 static int gdb_flash_program = 1;
101 /* if set, data aborts cause an error to be reported in memory read packets
102 * see the code in gdb_read_memory_packet() for further explanations.
103 * Disabled by default.
105 static int gdb_report_data_abort;
107 static int gdb_last_signal(struct target *target)
109 switch (target->debug_reason)
111 case DBG_REASON_DBGRQ:
112 return 0x2; /* SIGINT */
113 case DBG_REASON_BREAKPOINT:
114 case DBG_REASON_WATCHPOINT:
115 case DBG_REASON_WPTANDBKPT:
116 return 0x05; /* SIGTRAP */
117 case DBG_REASON_SINGLESTEP:
118 return 0x05; /* SIGTRAP */
119 case DBG_REASON_NOTHALTED:
120 return 0x0; /* no signal... shouldn't happen */
121 default:
122 LOG_USER("undefined debug reason %d - target needs reset", target->debug_reason);
123 return 0x0;
127 static int check_pending(struct connection *connection,
128 int timeout_s, int *got_data)
130 /* a non-blocking socket will block if there is 0 bytes available on the socket,
131 * but return with as many bytes as are available immediately
133 struct timeval tv;
134 fd_set read_fds;
135 struct gdb_connection *gdb_con = connection->priv;
136 int t;
137 if (got_data == NULL)
138 got_data=&t;
139 *got_data = 0;
141 if (gdb_con->buf_cnt > 0)
143 *got_data = 1;
144 return ERROR_OK;
147 FD_ZERO(&read_fds);
148 FD_SET(connection->fd, &read_fds);
150 tv.tv_sec = timeout_s;
151 tv.tv_usec = 0;
152 if (socket_select(connection->fd + 1, &read_fds, NULL, NULL, &tv) == 0)
154 /* This can typically be because a "monitor" command took too long
155 * before printing any progress messages
157 if (timeout_s > 0)
159 return ERROR_GDB_TIMEOUT;
160 } else
162 return ERROR_OK;
165 *got_data = FD_ISSET(connection->fd, &read_fds) != 0;
166 return ERROR_OK;
169 static int gdb_get_char_inner(struct connection *connection, int* next_char)
171 struct gdb_connection *gdb_con = connection->priv;
172 int retval = ERROR_OK;
174 #ifdef _DEBUG_GDB_IO_
175 char *debug_buffer;
176 #endif
177 for (;;)
179 if (connection->service->type != CONNECTION_TCP)
181 gdb_con->buf_cnt = read(connection->fd, gdb_con->buffer, GDB_BUFFER_SIZE);
183 else
185 retval = check_pending(connection, 1, NULL);
186 if (retval != ERROR_OK)
187 return retval;
188 gdb_con->buf_cnt = read_socket(connection->fd, gdb_con->buffer, GDB_BUFFER_SIZE);
191 if (gdb_con->buf_cnt > 0)
193 break;
195 if (gdb_con->buf_cnt == 0)
197 gdb_con->closed = 1;
198 return ERROR_SERVER_REMOTE_CLOSED;
201 #ifdef _WIN32
202 errno = WSAGetLastError();
204 switch (errno)
206 case WSAEWOULDBLOCK:
207 usleep(1000);
208 break;
209 case WSAECONNABORTED:
210 gdb_con->closed = 1;
211 return ERROR_SERVER_REMOTE_CLOSED;
212 case WSAECONNRESET:
213 gdb_con->closed = 1;
214 return ERROR_SERVER_REMOTE_CLOSED;
215 default:
216 LOG_ERROR("read: %d", errno);
217 exit(-1);
219 #else
220 switch (errno)
222 case EAGAIN:
223 usleep(1000);
224 break;
225 case ECONNABORTED:
226 gdb_con->closed = 1;
227 return ERROR_SERVER_REMOTE_CLOSED;
228 case ECONNRESET:
229 gdb_con->closed = 1;
230 return ERROR_SERVER_REMOTE_CLOSED;
231 default:
232 LOG_ERROR("read: %s", strerror(errno));
233 gdb_con->closed = 1;
234 return ERROR_SERVER_REMOTE_CLOSED;
236 #endif
239 #ifdef _DEBUG_GDB_IO_
240 debug_buffer = malloc(gdb_con->buf_cnt + 1);
241 memcpy(debug_buffer, gdb_con->buffer, gdb_con->buf_cnt);
242 debug_buffer[gdb_con->buf_cnt] = 0;
243 LOG_DEBUG("received '%s'", debug_buffer);
244 free(debug_buffer);
245 #endif
247 gdb_con->buf_p = gdb_con->buffer;
248 gdb_con->buf_cnt--;
249 *next_char = *(gdb_con->buf_p++);
250 if (gdb_con->buf_cnt > 0)
251 connection->input_pending = 1;
252 else
253 connection->input_pending = 0;
254 #ifdef _DEBUG_GDB_IO_
255 LOG_DEBUG("returned char '%c' (0x%2.2x)", *next_char, *next_char);
256 #endif
258 return retval;
262 * The cool thing about this fn is that it allows buf_p and buf_cnt to be
263 * held in registers in the inner loop.
265 * For small caches and embedded systems this is important!
267 static inline int gdb_get_char_fast(struct connection *connection, int* next_char, char **buf_p, int *buf_cnt)
269 int retval = ERROR_OK;
271 if ((*buf_cnt)-- > 0)
273 *next_char = **buf_p;
274 (*buf_p)++;
275 if (*buf_cnt > 0)
276 connection->input_pending = 1;
277 else
278 connection->input_pending = 0;
280 #ifdef _DEBUG_GDB_IO_
281 LOG_DEBUG("returned char '%c' (0x%2.2x)", *next_char, *next_char);
282 #endif
284 return ERROR_OK;
287 struct gdb_connection *gdb_con = connection->priv;
288 gdb_con->buf_p = *buf_p;
289 gdb_con->buf_cnt = *buf_cnt;
290 retval = gdb_get_char_inner(connection, next_char);
291 *buf_p = gdb_con->buf_p;
292 *buf_cnt = gdb_con->buf_cnt;
294 return retval;
298 static int gdb_get_char(struct connection *connection, int* next_char)
300 struct gdb_connection *gdb_con = connection->priv;
301 return gdb_get_char_fast(connection, next_char, &gdb_con->buf_p, &gdb_con->buf_cnt);
305 static int gdb_putback_char(struct connection *connection, int last_char)
307 struct gdb_connection *gdb_con = connection->priv;
309 if (gdb_con->buf_p > gdb_con->buffer)
311 *(--gdb_con->buf_p) = last_char;
312 gdb_con->buf_cnt++;
314 else
316 LOG_ERROR("BUG: couldn't put character back");
319 return ERROR_OK;
322 /* The only way we can detect that the socket is closed is the first time
323 * we write to it, we will fail. Subsequent write operations will
324 * succeed. Shudder! */
325 static int gdb_write(struct connection *connection, void *data, int len)
327 struct gdb_connection *gdb_con = connection->priv;
328 if (gdb_con->closed)
329 return ERROR_SERVER_REMOTE_CLOSED;
331 if (connection_write(connection, data, len) == len)
333 return ERROR_OK;
335 gdb_con->closed = 1;
336 return ERROR_SERVER_REMOTE_CLOSED;
339 static int gdb_put_packet_inner(struct connection *connection,
340 char *buffer, int len)
342 int i;
343 unsigned char my_checksum = 0;
344 #ifdef _DEBUG_GDB_IO_
345 char *debug_buffer;
346 #endif
347 int reply;
348 int retval;
349 struct gdb_connection *gdb_con = connection->priv;
351 for (i = 0; i < len; i++)
352 my_checksum += buffer[i];
354 #ifdef _DEBUG_GDB_IO_
356 * At this point we should have nothing in the input queue from GDB,
357 * however sometimes '-' is sent even though we've already received
358 * an ACK (+) for everything we've sent off.
360 int gotdata;
361 for (;;)
363 retval = check_pending(connection, 0, &gotdata);
364 if (retval != ERROR_OK)
365 return retval;
366 if (!gotdata)
367 break;
368 if ((retval = gdb_get_char(connection, &reply)) != ERROR_OK)
369 return retval;
370 if (reply == '$') {
371 /* fix a problem with some IAR tools */
372 gdb_putback_char(connection, reply);
373 LOG_DEBUG("Unexpected start of new packet");
374 break;
377 LOG_WARNING("Discard unexpected char %c", reply);
379 #endif
381 while (1)
383 #ifdef _DEBUG_GDB_IO_
384 debug_buffer = malloc(len + 1);
385 memcpy(debug_buffer, buffer, len);
386 debug_buffer[len] = 0;
387 LOG_DEBUG("sending packet '$%s#%2.2x'", debug_buffer, my_checksum);
388 free(debug_buffer);
389 #endif
391 char local_buffer[1024];
392 local_buffer[0] = '$';
393 if ((size_t)len + 4 <= sizeof(local_buffer))
395 /* performance gain on smaller packets by only a single call to gdb_write() */
396 memcpy(local_buffer + 1, buffer, len++);
397 local_buffer[len++] = '#';
398 local_buffer[len++] = DIGITS[(my_checksum >> 4) & 0xf];
399 local_buffer[len++] = DIGITS[my_checksum & 0xf];
400 if ((retval = gdb_write(connection, local_buffer, len)) != ERROR_OK)
402 return retval;
405 else
407 /* larger packets are transmitted directly from caller supplied buffer
408 by several calls to gdb_write() to avoid dynamic allocation */
409 local_buffer[1] = '#';
410 local_buffer[2] = DIGITS[(my_checksum >> 4) & 0xf];
411 local_buffer[3] = DIGITS[my_checksum & 0xf];
412 if ((retval = gdb_write(connection, local_buffer, 1)) != ERROR_OK)
414 return retval;
416 if ((retval = gdb_write(connection, buffer, len)) != ERROR_OK)
418 return retval;
420 if ((retval = gdb_write(connection, local_buffer + 1, 3)) != ERROR_OK)
422 return retval;
426 if (gdb_con->noack_mode)
427 break;
429 if ((retval = gdb_get_char(connection, &reply)) != ERROR_OK)
430 return retval;
432 if (reply == '+')
433 break;
434 else if (reply == '-')
436 /* Stop sending output packets for now */
437 log_remove_callback(gdb_log_callback, connection);
438 LOG_WARNING("negative reply, retrying");
440 else if (reply == 0x3)
442 gdb_con->ctrl_c = 1;
443 if ((retval = gdb_get_char(connection, &reply)) != ERROR_OK)
444 return retval;
445 if (reply == '+')
446 break;
447 else if (reply == '-')
449 /* Stop sending output packets for now */
450 log_remove_callback(gdb_log_callback, connection);
451 LOG_WARNING("negative reply, retrying");
453 else if (reply == '$') {
454 LOG_ERROR("GDB missing ack(1) - assumed good");
455 gdb_putback_char(connection, reply);
456 return ERROR_OK;
457 } else {
459 LOG_ERROR("unknown character(1) 0x%2.2x in reply, dropping connection", reply);
460 gdb_con->closed = 1;
461 return ERROR_SERVER_REMOTE_CLOSED;
464 else if (reply == '$') {
465 LOG_ERROR("GDB missing ack(2) - assumed good");
466 gdb_putback_char(connection, reply);
467 return ERROR_OK;
469 else
471 LOG_ERROR("unknown character(2) 0x%2.2x in reply, dropping connection", reply);
472 gdb_con->closed = 1;
473 return ERROR_SERVER_REMOTE_CLOSED;
476 if (gdb_con->closed)
477 return ERROR_SERVER_REMOTE_CLOSED;
479 return ERROR_OK;
482 static int gdb_put_packet(struct connection *connection, char *buffer, int len)
484 struct gdb_connection *gdb_con = connection->priv;
485 gdb_con->busy = 1;
486 int retval = gdb_put_packet_inner(connection, buffer, len);
487 gdb_con->busy = 0;
489 /* we sent some data, reset timer for keep alive messages */
490 kept_alive();
492 return retval;
495 static __inline__ int fetch_packet(struct connection *connection, int *checksum_ok, int noack, int *len, char *buffer)
497 unsigned char my_checksum = 0;
498 char checksum[3];
499 int character;
500 int retval = ERROR_OK;
502 struct gdb_connection *gdb_con = connection->priv;
503 my_checksum = 0;
504 int count = 0;
505 count = 0;
507 /* move this over into local variables to use registers and give the
508 * more freedom to optimize */
509 char *buf_p = gdb_con->buf_p;
510 int buf_cnt = gdb_con->buf_cnt;
512 for (;;)
514 /* The common case is that we have an entire packet with no escape chars.
515 * We need to leave at least 2 bytes in the buffer to have
516 * gdb_get_char() update various bits and bobs correctly.
518 if ((buf_cnt > 2) && ((buf_cnt + count) < *len))
520 /* The compiler will struggle a bit with constant propagation and
521 * aliasing, so we help it by showing that these values do not
522 * change inside the loop
524 int i;
525 char *buf = buf_p;
526 int run = buf_cnt - 2;
527 i = 0;
528 int done = 0;
529 while (i < run)
531 character = *buf++;
532 i++;
533 if (character == '#')
535 /* Danger! character can be '#' when esc is
536 * used so we need an explicit boolean for done here.
538 done = 1;
539 break;
542 if (character == '}')
544 /* data transmitted in binary mode (X packet)
545 * uses 0x7d as escape character */
546 my_checksum += character & 0xff;
547 character = *buf++;
548 i++;
549 my_checksum += character & 0xff;
550 buffer[count++] = (character ^ 0x20) & 0xff;
552 else
554 my_checksum += character & 0xff;
555 buffer[count++] = character & 0xff;
558 buf_p += i;
559 buf_cnt -= i;
560 if (done)
561 break;
563 if (count > *len)
565 LOG_ERROR("packet buffer too small");
566 retval = ERROR_GDB_BUFFER_TOO_SMALL;
567 break;
570 retval = gdb_get_char_fast(connection, &character, &buf_p, &buf_cnt);
571 if (retval != ERROR_OK)
572 break;
574 if (character == '#')
575 break;
577 if (character == '}')
579 /* data transmitted in binary mode (X packet)
580 * uses 0x7d as escape character */
581 my_checksum += character & 0xff;
583 retval = gdb_get_char_fast(connection, &character, &buf_p, &buf_cnt);
584 if (retval != ERROR_OK)
585 break;
587 my_checksum += character & 0xff;
588 buffer[count++] = (character ^ 0x20) & 0xff;
590 else
592 my_checksum += character & 0xff;
593 buffer[count++] = character & 0xff;
597 gdb_con->buf_p = buf_p;
598 gdb_con->buf_cnt = buf_cnt;
600 if (retval != ERROR_OK)
601 return retval;
603 *len = count;
605 if ((retval = gdb_get_char(connection, &character)) != ERROR_OK)
606 return retval;
607 checksum[0] = character;
608 if ((retval = gdb_get_char(connection, &character)) != ERROR_OK)
609 return retval;
610 checksum[1] = character;
611 checksum[2] = 0;
613 if (!noack)
615 *checksum_ok = (my_checksum == strtoul(checksum, NULL, 16));
618 return ERROR_OK;
621 static int gdb_get_packet_inner(struct connection *connection,
622 char *buffer, int *len)
624 int character;
625 int retval;
626 struct gdb_connection *gdb_con = connection->priv;
628 while (1)
632 if ((retval = gdb_get_char(connection, &character)) != ERROR_OK)
633 return retval;
635 #ifdef _DEBUG_GDB_IO_
636 LOG_DEBUG("character: '%c'", character);
637 #endif
639 switch (character)
641 case '$':
642 break;
643 case '+':
644 /* gdb sends a dummy ack '+' at every remote connect - see remote_start_remote (remote.c)
645 * in case anyone tries to debug why they receive this warning every time */
646 LOG_WARNING("acknowledgment received, but no packet pending");
647 break;
648 case '-':
649 LOG_WARNING("negative acknowledgment, but no packet pending");
650 break;
651 case 0x3:
652 gdb_con->ctrl_c = 1;
653 *len = 0;
654 return ERROR_OK;
655 default:
656 LOG_WARNING("ignoring character 0x%x", character);
657 break;
659 } while (character != '$');
663 int checksum_ok = 0;
664 /* explicit code expansion here to get faster inlined code in -O3 by not
665 * calculating checksum
667 if (gdb_con->noack_mode)
669 if ((retval = fetch_packet(connection, &checksum_ok, 1, len, buffer)) != ERROR_OK)
670 return retval;
671 } else
673 if ((retval = fetch_packet(connection, &checksum_ok, 0, len, buffer)) != ERROR_OK)
674 return retval;
677 if (gdb_con->noack_mode)
679 /* checksum is not checked in noack mode */
680 break;
682 if (checksum_ok)
684 if ((retval = gdb_write(connection, "+", 1)) != ERROR_OK)
686 return retval;
688 break;
691 if (gdb_con->closed)
692 return ERROR_SERVER_REMOTE_CLOSED;
694 return ERROR_OK;
697 static int gdb_get_packet(struct connection *connection, char *buffer, int *len)
699 struct gdb_connection *gdb_con = connection->priv;
700 gdb_con->busy = 1;
701 int retval = gdb_get_packet_inner(connection, buffer, len);
702 gdb_con->busy = 0;
703 return retval;
706 static int gdb_output_con(struct connection *connection, const char* line)
708 char *hex_buffer;
709 int i, bin_size;
711 bin_size = strlen(line);
713 hex_buffer = malloc(bin_size*2 + 2);
714 if (hex_buffer == NULL)
715 return ERROR_GDB_BUFFER_TOO_SMALL;
717 hex_buffer[0] = 'O';
718 for (i = 0; i < bin_size; i++)
719 snprintf(hex_buffer + 1 + i*2, 3, "%2.2x", line[i]);
720 hex_buffer[bin_size*2 + 1] = 0;
722 int retval = gdb_put_packet(connection, hex_buffer, bin_size*2 + 1);
724 free(hex_buffer);
725 return retval;
728 static int gdb_output(struct command_context *context, const char* line)
730 /* this will be dumped to the log and also sent as an O packet if possible */
731 LOG_USER_N("%s", line);
732 return ERROR_OK;
736 static void gdb_frontend_halted(struct target *target, struct connection *connection)
738 struct gdb_connection *gdb_connection = connection->priv;
740 /* In the GDB protocol when we are stepping or continuing execution,
741 * we have a lingering reply. Upon receiving a halted event
742 * when we have that lingering packet, we reply to the original
743 * step or continue packet.
745 * Executing monitor commands can bring the target in and
746 * out of the running state so we'll see lots of TARGET_EVENT_XXX
747 * that are to be ignored.
749 if (gdb_connection->frontend_state == TARGET_RUNNING)
751 char sig_reply[4];
752 int signal_var;
754 /* stop forwarding log packets! */
755 log_remove_callback(gdb_log_callback, connection);
757 if (gdb_connection->ctrl_c)
759 signal_var = 0x2;
760 gdb_connection->ctrl_c = 0;
762 else
764 signal_var = gdb_last_signal(target);
767 snprintf(sig_reply, 4, "T%2.2x", signal_var);
768 gdb_put_packet(connection, sig_reply, 3);
769 gdb_connection->frontend_state = TARGET_HALTED;
773 static int gdb_target_callback_event_handler(struct target *target,
774 enum target_event event, void *priv)
776 int retval;
777 struct connection *connection = priv;
779 target_handle_event(target, event);
780 switch (event)
782 case TARGET_EVENT_GDB_HALT:
783 gdb_frontend_halted(target, connection);
784 break;
785 case TARGET_EVENT_HALTED:
786 target_call_event_callbacks(target, TARGET_EVENT_GDB_END);
787 break;
788 case TARGET_EVENT_GDB_FLASH_ERASE_START:
789 target_handle_event(target, TARGET_EVENT_OLD_gdb_program_config);
790 if ((retval = jtag_execute_queue()) != ERROR_OK)
792 return retval;
794 break;
795 default:
796 break;
799 return ERROR_OK;
802 static int gdb_new_connection(struct connection *connection)
804 struct gdb_connection *gdb_connection = malloc(sizeof(struct gdb_connection));
805 struct gdb_service *gdb_service = connection->service->priv;
806 int retval;
807 int initial_ack;
809 connection->priv = gdb_connection;
811 /* initialize gdb connection information */
812 gdb_connection->buf_p = gdb_connection->buffer;
813 gdb_connection->buf_cnt = 0;
814 gdb_connection->ctrl_c = 0;
815 gdb_connection->frontend_state = TARGET_HALTED;
816 gdb_connection->vflash_image = NULL;
817 gdb_connection->closed = 0;
818 gdb_connection->busy = 0;
819 gdb_connection->noack_mode = 0;
820 gdb_connection->sync = true;
821 gdb_connection->mem_write_error = false;
823 /* send ACK to GDB for debug request */
824 gdb_write(connection, "+", 1);
826 /* output goes through gdb connection */
827 command_set_output_handler(connection->cmd_ctx, gdb_output, connection);
829 /* we must remove all breakpoints registered to the target as a previous
830 * GDB session could leave dangling breakpoints if e.g. communication
831 * timed out.
833 breakpoint_clear_target(gdb_service->target);
834 watchpoint_clear_target(gdb_service->target);
836 /* register callback to be informed about target events */
837 target_register_event_callback(gdb_target_callback_event_handler, connection);
839 /* remove the initial ACK from the incoming buffer */
840 if ((retval = gdb_get_char(connection, &initial_ack)) != ERROR_OK)
841 return retval;
843 /* FIX!!!??? would we actually ever receive a + here???
844 * Not observed.
846 if (initial_ack != '+')
847 gdb_putback_char(connection, initial_ack);
848 target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_ATTACH);
850 if (gdb_use_memory_map)
852 /* Connect must fail if the memory map can't be set up correctly.
854 * This will cause an auto_probe to be invoked, which is either
855 * a no-op or it will fail when the target isn't ready(e.g. not halted).
857 int i;
858 for (i = 0; i < flash_get_bank_count(); i++)
860 struct flash_bank *p;
861 retval = get_flash_bank_by_num(i, &p);
862 if (retval != ERROR_OK)
864 LOG_ERROR("Connect failed. Consider setting up a gdb-attach event for the target to prepare target for GDB connect.");
865 return retval;
870 gdb_actual_connections++;
871 LOG_DEBUG("New GDB Connection: %d, Target %s, state: %s",
872 gdb_actual_connections,
873 target_name(gdb_service->target),
874 target_state_name(gdb_service->target));
876 return ERROR_OK;
879 static int gdb_connection_closed(struct connection *connection)
881 struct gdb_service *gdb_service = connection->service->priv;
882 struct gdb_connection *gdb_connection = connection->priv;
884 /* we're done forwarding messages. Tear down callback before
885 * cleaning up connection.
887 log_remove_callback(gdb_log_callback, connection);
889 gdb_actual_connections--;
890 LOG_DEBUG("GDB Close, Target: %s, state: %s, gdb_actual_connections=%d",
891 target_name(gdb_service->target),
892 target_state_name(gdb_service->target),
893 gdb_actual_connections);
895 /* see if an image built with vFlash commands is left */
896 if (gdb_connection->vflash_image)
898 image_close(gdb_connection->vflash_image);
899 free(gdb_connection->vflash_image);
900 gdb_connection->vflash_image = NULL;
903 /* if this connection registered a debug-message receiver delete it */
904 delete_debug_msg_receiver(connection->cmd_ctx, gdb_service->target);
906 if (connection->priv)
908 free(connection->priv);
909 connection->priv = NULL;
911 else
913 LOG_ERROR("BUG: connection->priv == NULL");
917 target_unregister_event_callback(gdb_target_callback_event_handler, connection);
919 target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_END);
921 target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_DETACH);
923 return ERROR_OK;
926 static void gdb_send_error(struct connection *connection, uint8_t the_error)
928 char err[4];
929 snprintf(err, 4, "E%2.2X", the_error);
930 gdb_put_packet(connection, err, 3);
933 static int gdb_last_signal_packet(struct connection *connection,
934 struct target *target, char* packet, int packet_size)
936 char sig_reply[4];
937 int signal_var;
939 signal_var = gdb_last_signal(target);
941 snprintf(sig_reply, 4, "S%2.2x", signal_var);
942 gdb_put_packet(connection, sig_reply, 3);
944 return ERROR_OK;
947 static int gdb_reg_pos(struct target *target, int pos, int len)
949 if (target->endianness == TARGET_LITTLE_ENDIAN)
950 return pos;
951 else
952 return len - 1 - pos;
955 /* Convert register to string of bytes. NB! The # of bits in the
956 * register might be non-divisible by 8(a byte), in which
957 * case an entire byte is shown.
959 * NB! the format on the wire is the target endianness
961 * The format of reg->value is little endian
964 static void gdb_str_to_target(struct target *target,
965 char *tstr, struct reg *reg)
967 int i;
969 uint8_t *buf;
970 int buf_len;
971 buf = reg->value;
972 buf_len = DIV_ROUND_UP(reg->size, 8);
974 for (i = 0; i < buf_len; i++)
976 int j = gdb_reg_pos(target, i, buf_len);
977 tstr[i*2] = DIGITS[(buf[j]>>4) & 0xf];
978 tstr[i*2 + 1] = DIGITS[buf[j]&0xf];
982 static int hextoint(int c)
984 if (c>='0'&&c<='9')
986 return c-'0';
988 c = toupper(c);
989 if (c>='A'&&c<='F')
991 return c-'A'+10;
993 LOG_ERROR("BUG: invalid register value %08x", c);
994 return 0;
997 /* copy over in register buffer */
998 static void gdb_target_to_reg(struct target *target,
999 char *tstr, int str_len, uint8_t *bin)
1001 if (str_len % 2)
1003 LOG_ERROR("BUG: gdb value with uneven number of characters encountered");
1004 exit(-1);
1007 int i;
1008 for (i = 0; i < str_len; i += 2)
1010 uint8_t t = hextoint(tstr[i]) << 4;
1011 t |= hextoint(tstr[i + 1]);
1013 int j = gdb_reg_pos(target, i/2, str_len/2);
1014 bin[j] = t;
1018 static int gdb_get_registers_packet(struct connection *connection,
1019 struct target *target, char* packet, int packet_size)
1021 struct reg **reg_list;
1022 int reg_list_size;
1023 int retval;
1024 int reg_packet_size = 0;
1025 char *reg_packet;
1026 char *reg_packet_p;
1027 int i;
1029 #ifdef _DEBUG_GDB_IO_
1030 LOG_DEBUG("-");
1031 #endif
1033 if ((retval = target_get_gdb_reg_list(target, &reg_list, &reg_list_size)) != ERROR_OK)
1035 return gdb_error(connection, retval);
1038 for (i = 0; i < reg_list_size; i++)
1040 reg_packet_size += reg_list[i]->size;
1043 reg_packet = malloc(DIV_ROUND_UP(reg_packet_size, 8) * 2);
1044 reg_packet_p = reg_packet;
1046 for (i = 0; i < reg_list_size; i++)
1048 gdb_str_to_target(target, reg_packet_p, reg_list[i]);
1049 reg_packet_p += DIV_ROUND_UP(reg_list[i]->size, 8) * 2;
1052 #ifdef _DEBUG_GDB_IO_
1054 char *reg_packet_p;
1055 reg_packet_p = strndup(reg_packet, DIV_ROUND_UP(reg_packet_size, 8) * 2);
1056 LOG_DEBUG("reg_packet: %s", reg_packet_p);
1057 free(reg_packet_p);
1059 #endif
1061 gdb_put_packet(connection, reg_packet, DIV_ROUND_UP(reg_packet_size, 8) * 2);
1062 free(reg_packet);
1064 free(reg_list);
1066 return ERROR_OK;
1069 static int gdb_set_registers_packet(struct connection *connection,
1070 struct target *target, char *packet, int packet_size)
1072 int i;
1073 struct reg **reg_list;
1074 int reg_list_size;
1075 int retval;
1076 char *packet_p;
1078 #ifdef _DEBUG_GDB_IO_
1079 LOG_DEBUG("-");
1080 #endif
1082 /* skip command character */
1083 packet++;
1084 packet_size--;
1086 if (packet_size % 2)
1088 LOG_WARNING("GDB set_registers packet with uneven characters received, dropping connection");
1089 return ERROR_SERVER_REMOTE_CLOSED;
1092 if ((retval = target_get_gdb_reg_list(target, &reg_list, &reg_list_size)) != ERROR_OK)
1094 return gdb_error(connection, retval);
1097 packet_p = packet;
1098 for (i = 0; i < reg_list_size; i++)
1100 uint8_t *bin_buf;
1101 int chars = (DIV_ROUND_UP(reg_list[i]->size, 8) * 2);
1103 if (packet_p + chars > packet + packet_size)
1105 LOG_ERROR("BUG: register packet is too small for registers");
1108 bin_buf = malloc(DIV_ROUND_UP(reg_list[i]->size, 8));
1109 gdb_target_to_reg(target, packet_p, chars, bin_buf);
1111 reg_list[i]->type->set(reg_list[i], bin_buf);
1113 /* advance packet pointer */
1114 packet_p += chars;
1117 free(bin_buf);
1120 /* free struct reg *reg_list[] array allocated by get_gdb_reg_list */
1121 free(reg_list);
1123 gdb_put_packet(connection, "OK", 2);
1125 return ERROR_OK;
1128 static int gdb_get_register_packet(struct connection *connection,
1129 struct target *target, char *packet, int packet_size)
1131 char *reg_packet;
1132 int reg_num = strtoul(packet + 1, NULL, 16);
1133 struct reg **reg_list;
1134 int reg_list_size;
1135 int retval;
1137 #ifdef _DEBUG_GDB_IO_
1138 LOG_DEBUG("-");
1139 #endif
1141 if ((retval = target_get_gdb_reg_list(target, &reg_list, &reg_list_size)) != ERROR_OK)
1143 return gdb_error(connection, retval);
1146 if (reg_list_size <= reg_num)
1148 LOG_ERROR("gdb requested a non-existing register");
1149 exit(-1);
1152 reg_packet = malloc(DIV_ROUND_UP(reg_list[reg_num]->size, 8) * 2);
1154 gdb_str_to_target(target, reg_packet, reg_list[reg_num]);
1156 gdb_put_packet(connection, reg_packet, DIV_ROUND_UP(reg_list[reg_num]->size, 8) * 2);
1158 free(reg_list);
1159 free(reg_packet);
1161 return ERROR_OK;
1164 static int gdb_set_register_packet(struct connection *connection,
1165 struct target *target, char *packet, int packet_size)
1167 char *separator;
1168 uint8_t *bin_buf;
1169 int reg_num = strtoul(packet + 1, &separator, 16);
1170 struct reg **reg_list;
1171 int reg_list_size;
1172 int retval;
1174 LOG_DEBUG("-");
1176 if ((retval = target_get_gdb_reg_list(target, &reg_list, &reg_list_size)) != ERROR_OK)
1178 return gdb_error(connection, retval);
1181 if (reg_list_size < reg_num)
1183 LOG_ERROR("gdb requested a non-existing register");
1184 return ERROR_SERVER_REMOTE_CLOSED;
1187 if (*separator != '=')
1189 LOG_ERROR("GDB 'set register packet', but no '=' following the register number");
1190 return ERROR_SERVER_REMOTE_CLOSED;
1193 /* convert from GDB-string (target-endian) to hex-string (big-endian) */
1194 bin_buf = malloc(DIV_ROUND_UP(reg_list[reg_num]->size, 8));
1195 int chars = (DIV_ROUND_UP(reg_list[reg_num]->size, 8) * 2);
1197 /* fix!!! add some sanity checks on packet size here */
1199 gdb_target_to_reg(target, separator + 1, chars, bin_buf);
1201 reg_list[reg_num]->type->set(reg_list[reg_num], bin_buf);
1203 gdb_put_packet(connection, "OK", 2);
1205 free(bin_buf);
1206 free(reg_list);
1208 return ERROR_OK;
1211 /* No attempt is made to translate the "retval" to
1212 * GDB speak. This has to be done at the calling
1213 * site as no mapping really exists.
1215 static int gdb_error(struct connection *connection, int retval)
1217 LOG_DEBUG("Reporting %i to GDB as generic error", retval);
1218 gdb_send_error(connection, EFAULT);
1219 return ERROR_OK;
1222 /* We don't have to worry about the default 2 second timeout for GDB packets,
1223 * because GDB breaks up large memory reads into smaller reads.
1225 * 8191 bytes by the looks of it. Why 8191 bytes instead of 8192?????
1227 static int gdb_read_memory_packet(struct connection *connection,
1228 struct target *target, char *packet, int packet_size)
1230 char *separator;
1231 uint32_t addr = 0;
1232 uint32_t len = 0;
1234 uint8_t *buffer;
1235 char *hex_buffer;
1237 int retval = ERROR_OK;
1239 /* skip command character */
1240 packet++;
1242 addr = strtoul(packet, &separator, 16);
1244 if (*separator != ',')
1246 LOG_ERROR("incomplete read memory packet received, dropping connection");
1247 return ERROR_SERVER_REMOTE_CLOSED;
1250 len = strtoul(separator + 1, NULL, 16);
1252 buffer = malloc(len);
1254 LOG_DEBUG("addr: 0x%8.8" PRIx32 ", len: 0x%8.8" PRIx32 "", addr, len);
1256 retval = target_read_buffer(target, addr, len, buffer);
1258 if ((retval != ERROR_OK)&&!gdb_report_data_abort)
1260 /* TODO : Here we have to lie and send back all zero's lest stack traces won't work.
1261 * At some point this might be fixed in GDB, in which case this code can be removed.
1263 * OpenOCD developers are acutely aware of this problem, but there is nothing
1264 * gained by involving the user in this problem that hopefully will get resolved
1265 * eventually
1267 * http://sourceware.org/cgi-bin/gnatsweb.pl?cmd = view%20audit-trail&database = gdb&pr = 2395
1269 * For now, the default is to fix up things to make current GDB versions work.
1270 * This can be overwritten using the gdb_report_data_abort <'enable'|'disable'> command.
1272 memset(buffer, 0, len);
1273 retval = ERROR_OK;
1276 if (retval == ERROR_OK)
1278 hex_buffer = malloc(len * 2 + 1);
1280 uint32_t i;
1281 for (i = 0; i < len; i++)
1283 uint8_t t = buffer[i];
1284 hex_buffer[2 * i] = DIGITS[(t >> 4) & 0xf];
1285 hex_buffer[2 * i + 1] = DIGITS[t & 0xf];
1288 gdb_put_packet(connection, hex_buffer, len * 2);
1290 free(hex_buffer);
1292 else
1294 retval = gdb_error(connection, retval);
1297 free(buffer);
1299 return retval;
1302 static int gdb_write_memory_packet(struct connection *connection,
1303 struct target *target, char *packet, int packet_size)
1305 char *separator;
1306 uint32_t addr = 0;
1307 uint32_t len = 0;
1309 uint8_t *buffer;
1311 uint32_t i;
1312 int retval;
1314 /* skip command character */
1315 packet++;
1317 addr = strtoul(packet, &separator, 16);
1319 if (*separator != ',')
1321 LOG_ERROR("incomplete write memory packet received, dropping connection");
1322 return ERROR_SERVER_REMOTE_CLOSED;
1325 len = strtoul(separator + 1, &separator, 16);
1327 if (*(separator++) != ':')
1329 LOG_ERROR("incomplete write memory packet received, dropping connection");
1330 return ERROR_SERVER_REMOTE_CLOSED;
1333 buffer = malloc(len);
1335 LOG_DEBUG("addr: 0x%8.8" PRIx32 ", len: 0x%8.8" PRIx32 "", addr, len);
1337 for (i = 0; i < len; i++)
1339 uint32_t tmp;
1340 sscanf(separator + 2*i, "%2" SCNx32 , &tmp);
1341 buffer[i] = tmp;
1344 retval = target_write_buffer(target, addr, len, buffer);
1346 if (retval == ERROR_OK)
1348 gdb_put_packet(connection, "OK", 2);
1350 else
1352 retval = gdb_error(connection, retval);
1355 free(buffer);
1357 return retval;
1360 static int gdb_write_memory_binary_packet(struct connection *connection,
1361 struct target *target, char *packet, int packet_size)
1363 char *separator;
1364 uint32_t addr = 0;
1365 uint32_t len = 0;
1367 int retval = ERROR_OK;
1369 /* skip command character */
1370 packet++;
1372 addr = strtoul(packet, &separator, 16);
1374 if (*separator != ',')
1376 LOG_ERROR("incomplete write memory binary packet received, dropping connection");
1377 return ERROR_SERVER_REMOTE_CLOSED;
1380 len = strtoul(separator + 1, &separator, 16);
1382 if (*(separator++) != ':')
1384 LOG_ERROR("incomplete write memory binary packet received, dropping connection");
1385 return ERROR_SERVER_REMOTE_CLOSED;
1388 struct gdb_connection *gdb_connection = connection->priv;
1390 if (gdb_connection->mem_write_error)
1392 retval = ERROR_FAIL;
1393 /* now that we have reported the memory write error, we can clear the condition */
1394 gdb_connection->mem_write_error = false;
1397 /* By replying the packet *immediately* GDB will send us a new packet
1398 * while we write the last one to the target.
1400 if (retval == ERROR_OK)
1402 gdb_put_packet(connection, "OK", 2);
1404 else
1406 if ((retval = gdb_error(connection, retval)) != ERROR_OK)
1407 return retval;
1410 if (len)
1412 LOG_DEBUG("addr: 0x%8.8" PRIx32 ", len: 0x%8.8" PRIx32 "", addr, len);
1414 retval = target_write_buffer(target, addr, len, (uint8_t*)separator);
1415 if (retval != ERROR_OK)
1417 gdb_connection->mem_write_error = true;
1421 return ERROR_OK;
1424 static int gdb_step_continue_packet(struct connection *connection,
1425 struct target *target, char *packet, int packet_size)
1427 int current = 0;
1428 uint32_t address = 0x0;
1429 int retval = ERROR_OK;
1431 LOG_DEBUG("-");
1433 if (packet_size > 1)
1435 packet[packet_size] = 0;
1436 address = strtoul(packet + 1, NULL, 16);
1438 else
1440 current = 1;
1443 if (packet[0] == 'c')
1445 LOG_DEBUG("continue");
1446 target_handle_event(target, TARGET_EVENT_OLD_pre_resume);
1447 retval = target_resume(target, current, address, 0, 0); /* resume at current address, don't handle breakpoints, not debugging */
1449 else if (packet[0] == 's')
1451 LOG_DEBUG("step");
1452 /* step at current or address, don't handle breakpoints */
1453 retval = target_step(target, current, address, 0);
1455 return retval;
1458 static int gdb_breakpoint_watchpoint_packet(struct connection *connection,
1459 struct target *target, char *packet, int packet_size)
1461 int type;
1462 enum breakpoint_type bp_type = BKPT_SOFT /* dummy init to avoid warning */;
1463 enum watchpoint_rw wp_type = WPT_READ /* dummy init to avoid warning */;
1464 uint32_t address;
1465 uint32_t size;
1466 char *separator;
1467 int retval;
1469 LOG_DEBUG("-");
1471 type = strtoul(packet + 1, &separator, 16);
1473 if (type == 0) /* memory breakpoint */
1474 bp_type = BKPT_SOFT;
1475 else if (type == 1) /* hardware breakpoint */
1476 bp_type = BKPT_HARD;
1477 else if (type == 2) /* write watchpoint */
1478 wp_type = WPT_WRITE;
1479 else if (type == 3) /* read watchpoint */
1480 wp_type = WPT_READ;
1481 else if (type == 4) /* access watchpoint */
1482 wp_type = WPT_ACCESS;
1483 else
1485 LOG_ERROR("invalid gdb watch/breakpoint type(%d), dropping connection", type);
1486 return ERROR_SERVER_REMOTE_CLOSED;
1490 if (gdb_breakpoint_override && ((bp_type == BKPT_SOFT)||(bp_type == BKPT_HARD)))
1492 bp_type = gdb_breakpoint_override_type;
1495 if (*separator != ',')
1497 LOG_ERROR("incomplete breakpoint/watchpoint packet received, dropping connection");
1498 return ERROR_SERVER_REMOTE_CLOSED;
1501 address = strtoul(separator + 1, &separator, 16);
1503 if (*separator != ',')
1505 LOG_ERROR("incomplete breakpoint/watchpoint packet received, dropping connection");
1506 return ERROR_SERVER_REMOTE_CLOSED;
1509 size = strtoul(separator + 1, &separator, 16);
1511 switch (type)
1513 case 0:
1514 case 1:
1515 if (packet[0] == 'Z')
1517 if ((retval = breakpoint_add(target, address, size, bp_type)) != ERROR_OK)
1519 if ((retval = gdb_error(connection, retval)) != ERROR_OK)
1520 return retval;
1522 else
1524 gdb_put_packet(connection, "OK", 2);
1527 else
1529 breakpoint_remove(target, address);
1530 gdb_put_packet(connection, "OK", 2);
1532 break;
1533 case 2:
1534 case 3:
1535 case 4:
1537 if (packet[0] == 'Z')
1539 if ((retval = watchpoint_add(target, address, size, wp_type, 0, 0xffffffffu)) != ERROR_OK)
1541 if ((retval = gdb_error(connection, retval)) != ERROR_OK)
1542 return retval;
1544 else
1546 gdb_put_packet(connection, "OK", 2);
1549 else
1551 watchpoint_remove(target, address);
1552 gdb_put_packet(connection, "OK", 2);
1554 break;
1556 default:
1557 break;
1560 return ERROR_OK;
1563 /* print out a string and allocate more space as needed,
1564 * mainly used for XML at this point
1566 static void xml_printf(int *retval, char **xml, int *pos, int *size,
1567 const char *fmt, ...)
1569 if (*retval != ERROR_OK)
1571 return;
1573 int first = 1;
1575 for (;;)
1577 if ((*xml == NULL) || (!first))
1579 /* start by 0 to exercise all the code paths.
1580 * Need minimum 2 bytes to fit 1 char and 0 terminator. */
1582 *size = *size * 2 + 2;
1583 char *t = *xml;
1584 *xml = realloc(*xml, *size);
1585 if (*xml == NULL)
1587 if (t)
1588 free(t);
1589 *retval = ERROR_SERVER_REMOTE_CLOSED;
1590 return;
1594 va_list ap;
1595 int ret;
1596 va_start(ap, fmt);
1597 ret = vsnprintf(*xml + *pos, *size - *pos, fmt, ap);
1598 va_end(ap);
1599 if ((ret > 0) && ((ret + 1) < *size - *pos))
1601 *pos += ret;
1602 return;
1604 /* there was just enough or not enough space, allocate more. */
1605 first = 0;
1609 static int decode_xfer_read(char *buf, char **annex, int *ofs, unsigned int *len)
1611 char *separator;
1613 /* Extract and NUL-terminate the annex. */
1614 *annex = buf;
1615 while (*buf && *buf != ':')
1616 buf++;
1617 if (*buf == '\0')
1618 return -1;
1619 *buf++ = 0;
1621 /* After the read marker and annex, qXfer looks like a
1622 * traditional 'm' packet. */
1624 *ofs = strtoul(buf, &separator, 16);
1626 if (*separator != ',')
1627 return -1;
1629 *len = strtoul(separator + 1, NULL, 16);
1631 return 0;
1634 static int compare_bank (const void * a, const void * b)
1636 struct flash_bank *b1, *b2;
1637 b1=*((struct flash_bank **)a);
1638 b2=*((struct flash_bank **)b);
1640 if (b1->base == b2->base)
1642 return 0;
1643 } else if (b1->base > b2->base)
1645 return 1;
1646 } else
1648 return -1;
1652 static int gdb_memory_map(struct connection *connection,
1653 struct target *target, char *packet, int packet_size)
1655 /* We get away with only specifying flash here. Regions that are not
1656 * specified are treated as if we provided no memory map(if not we
1657 * could detect the holes and mark them as RAM).
1658 * Normally we only execute this code once, but no big deal if we
1659 * have to regenerate it a couple of times.
1662 struct flash_bank *p;
1663 char *xml = NULL;
1664 int size = 0;
1665 int pos = 0;
1666 int retval = ERROR_OK;
1667 struct flash_bank **banks;
1668 int offset;
1669 int length;
1670 char *separator;
1671 uint32_t ram_start = 0;
1672 int i;
1673 int target_flash_banks = 0;
1675 /* skip command character */
1676 packet += 23;
1678 offset = strtoul(packet, &separator, 16);
1679 length = strtoul(separator + 1, &separator, 16);
1681 xml_printf(&retval, &xml, &pos, &size, "<memory-map>\n");
1683 /* Sort banks in ascending order. We need to report non-flash
1684 * memory as ram (or rather read/write) by default for GDB, since
1685 * it has no concept of non-cacheable read/write memory (i/o etc).
1687 * FIXME Most non-flash addresses are *NOT* RAM! Don't lie.
1688 * Current versions of GDB assume unlisted addresses are RAM...
1690 banks = malloc(sizeof(struct flash_bank *)*flash_get_bank_count());
1692 for (i = 0; i < flash_get_bank_count(); i++) {
1693 retval = get_flash_bank_by_num(i, &p);
1694 if (retval != ERROR_OK)
1696 free(banks);
1697 gdb_error(connection, retval);
1698 return retval;
1700 if(p->target == target)
1701 banks[target_flash_banks++] = p;
1704 qsort(banks, target_flash_banks, sizeof(struct flash_bank *),
1705 compare_bank);
1707 for (i = 0; i < flash_get_bank_count(); i++) {
1708 int j;
1709 unsigned sector_size = 0;
1710 uint32_t start, end;
1712 p = banks[i];
1713 start = p->base;
1714 end = p->base + p->size;
1716 if (ram_start < p->base)
1717 xml_printf(&retval, &xml, &pos, &size,
1718 "<memory type=\"ram\" start=\"0x%x\" "
1719 "length=\"0x%x\"/>\n",
1720 ram_start, p->base - ram_start);
1722 /* Report adjacent groups of same-size sectors. So for
1723 * example top boot CFI flash will list an initial region
1724 * with several large sectors (maybe 128KB) and several
1725 * smaller ones at the end (maybe 32KB). STR7 will have
1726 * regions with 8KB, 32KB, and 64KB sectors; etc.
1728 for (j = 0; j < p->num_sectors; j++) {
1729 unsigned group_len;
1731 /* Maybe start a new group of sectors. */
1732 if (sector_size == 0) {
1733 start = p->base + p->sectors[j].offset;
1734 xml_printf(&retval, &xml, &pos, &size,
1735 "<memory type=\"flash\" "
1736 "start=\"0x%x\" ",
1737 start);
1738 sector_size = p->sectors[j].size;
1741 /* Does this finish a group of sectors?
1742 * If not, continue an already-started group.
1744 if (j == p->num_sectors -1)
1745 group_len = (p->base + p->size) - start;
1746 else if (p->sectors[j + 1].size != sector_size)
1747 group_len = p->base + p->sectors[j + 1].offset
1748 - start;
1749 else
1750 continue;
1752 xml_printf(&retval, &xml, &pos, &size,
1753 "length=\"0x%x\">\n"
1754 "<property name=\"blocksize\">"
1755 "0x%x</property>\n"
1756 "</memory>\n",
1757 group_len,
1758 sector_size);
1759 sector_size = 0;
1762 ram_start = p->base + p->size;
1765 if (ram_start != 0)
1766 xml_printf(&retval, &xml, &pos, &size,
1767 "<memory type=\"ram\" start=\"0x%x\" "
1768 "length=\"0x%x\"/>\n",
1769 ram_start, 0-ram_start);
1770 /* ELSE a flash chip could be at the very end of the 32 bit address
1771 * space, in which case ram_start will be precisely 0
1774 free(banks);
1775 banks = NULL;
1777 xml_printf(&retval, &xml, &pos, &size, "</memory-map>\n");
1779 if (retval != ERROR_OK) {
1780 gdb_error(connection, retval);
1781 return retval;
1784 if (offset + length > pos)
1785 length = pos - offset;
1787 char *t = malloc(length + 1);
1788 t[0] = 'l';
1789 memcpy(t + 1, xml + offset, length);
1790 gdb_put_packet(connection, t, length + 1);
1792 free(t);
1793 free(xml);
1794 return ERROR_OK;
1797 static int gdb_query_packet(struct connection *connection,
1798 struct target *target, char *packet, int packet_size)
1800 struct command_context *cmd_ctx = connection->cmd_ctx;
1801 struct gdb_connection *gdb_connection = connection->priv;
1803 if (strstr(packet, "qRcmd,"))
1805 if (packet_size > 6)
1807 char *cmd;
1808 int i;
1809 cmd = malloc((packet_size - 6)/2 + 1);
1810 for (i = 0; i < (packet_size - 6)/2; i++)
1812 uint32_t tmp;
1813 sscanf(packet + 6 + 2*i, "%2" SCNx32 , &tmp);
1814 cmd[i] = tmp;
1816 cmd[(packet_size - 6)/2] = 0x0;
1818 /* We want to print all debug output to GDB connection */
1819 log_add_callback(gdb_log_callback, connection);
1820 target_call_timer_callbacks_now();
1821 /* some commands need to know the GDB connection, make note of current
1822 * GDB connection. */
1823 current_gdb_connection = gdb_connection;
1824 command_run_line(cmd_ctx, cmd);
1825 current_gdb_connection = NULL;
1826 target_call_timer_callbacks_now();
1827 log_remove_callback(gdb_log_callback, connection);
1828 free(cmd);
1830 gdb_put_packet(connection, "OK", 2);
1831 return ERROR_OK;
1833 else if (strstr(packet, "qCRC:"))
1835 if (packet_size > 5)
1837 int retval;
1838 char gdb_reply[10];
1839 char *separator;
1840 uint32_t checksum;
1841 uint32_t addr = 0;
1842 uint32_t len = 0;
1844 /* skip command character */
1845 packet += 5;
1847 addr = strtoul(packet, &separator, 16);
1849 if (*separator != ',')
1851 LOG_ERROR("incomplete read memory packet received, dropping connection");
1852 return ERROR_SERVER_REMOTE_CLOSED;
1855 len = strtoul(separator + 1, NULL, 16);
1857 retval = target_checksum_memory(target, addr, len, &checksum);
1859 if (retval == ERROR_OK)
1861 snprintf(gdb_reply, 10, "C%8.8" PRIx32 "", checksum);
1862 gdb_put_packet(connection, gdb_reply, 9);
1864 else
1866 if ((retval = gdb_error(connection, retval)) != ERROR_OK)
1867 return retval;
1870 return ERROR_OK;
1873 else if (strstr(packet, "qSupported"))
1875 /* we currently support packet size and qXfer:memory-map:read (if enabled)
1876 * disable qXfer:features:read for the moment */
1877 int retval = ERROR_OK;
1878 char *buffer = NULL;
1879 int pos = 0;
1880 int size = 0;
1882 xml_printf(&retval, &buffer, &pos, &size,
1883 "PacketSize=%x;qXfer:memory-map:read%c;qXfer:features:read-;QStartNoAckMode+",
1884 (GDB_BUFFER_SIZE - 1), ((gdb_use_memory_map == 1) && (flash_get_bank_count() > 0)) ? '+' : '-');
1886 if (retval != ERROR_OK)
1888 gdb_send_error(connection, 01);
1889 return ERROR_OK;
1892 gdb_put_packet(connection, buffer, strlen(buffer));
1893 free(buffer);
1895 return ERROR_OK;
1897 else if (strstr(packet, "qXfer:memory-map:read::")
1898 && (flash_get_bank_count() > 0))
1899 return gdb_memory_map(connection, target, packet, packet_size);
1900 else if (strstr(packet, "qXfer:features:read:"))
1902 char *xml = NULL;
1903 int size = 0;
1904 int pos = 0;
1905 int retval = ERROR_OK;
1907 int offset;
1908 unsigned int length;
1909 char *annex;
1911 /* skip command character */
1912 packet += 20;
1914 if (decode_xfer_read(packet, &annex, &offset, &length) < 0)
1916 gdb_send_error(connection, 01);
1917 return ERROR_OK;
1920 if (strcmp(annex, "target.xml") != 0)
1922 gdb_send_error(connection, 01);
1923 return ERROR_OK;
1926 xml_printf(&retval, &xml, &pos, &size, \
1927 "l < target version=\"1.0\">\n < architecture > arm</architecture>\n</target>\n");
1929 if (retval != ERROR_OK)
1931 gdb_error(connection, retval);
1932 return retval;
1935 gdb_put_packet(connection, xml, strlen(xml));
1937 free(xml);
1938 return ERROR_OK;
1940 else if (strstr(packet, "QStartNoAckMode"))
1942 gdb_connection->noack_mode = 1;
1943 gdb_put_packet(connection, "OK", 2);
1944 return ERROR_OK;
1947 gdb_put_packet(connection, "", 0);
1948 return ERROR_OK;
1951 static int gdb_v_packet(struct connection *connection,
1952 struct target *target, char *packet, int packet_size)
1954 struct gdb_connection *gdb_connection = connection->priv;
1955 struct gdb_service *gdb_service = connection->service->priv;
1956 int result;
1958 /* if flash programming disabled - send a empty reply */
1960 if (gdb_flash_program == 0)
1962 gdb_put_packet(connection, "", 0);
1963 return ERROR_OK;
1966 if (strstr(packet, "vFlashErase:"))
1968 unsigned long addr;
1969 unsigned long length;
1971 char *parse = packet + 12;
1972 if (*parse == '\0')
1974 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
1975 return ERROR_SERVER_REMOTE_CLOSED;
1978 addr = strtoul(parse, &parse, 16);
1980 if (*(parse++) != ',' || *parse == '\0')
1982 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
1983 return ERROR_SERVER_REMOTE_CLOSED;
1986 length = strtoul(parse, &parse, 16);
1988 if (*parse != '\0')
1990 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
1991 return ERROR_SERVER_REMOTE_CLOSED;
1994 /* assume all sectors need erasing - stops any problems
1995 * when flash_write is called multiple times */
1996 flash_set_dirty();
1998 /* perform any target specific operations before the erase */
1999 target_call_event_callbacks(gdb_service->target,
2000 TARGET_EVENT_GDB_FLASH_ERASE_START);
2002 /* vFlashErase:addr,length messages require region start and
2003 * end to be "block" aligned ... if padding is ever needed,
2004 * GDB will have become dangerously confused.
2006 result = flash_erase_address_range(gdb_service->target,
2007 false, addr, length);
2009 /* perform any target specific operations after the erase */
2010 target_call_event_callbacks(gdb_service->target,
2011 TARGET_EVENT_GDB_FLASH_ERASE_END);
2013 /* perform erase */
2014 if (result != ERROR_OK)
2016 /* GDB doesn't evaluate the actual error number returned,
2017 * treat a failed erase as an I/O error
2019 gdb_send_error(connection, EIO);
2020 LOG_ERROR("flash_erase returned %i", result);
2022 else
2023 gdb_put_packet(connection, "OK", 2);
2025 return ERROR_OK;
2028 if (strstr(packet, "vFlashWrite:"))
2030 int retval;
2031 unsigned long addr;
2032 unsigned long length;
2033 char *parse = packet + 12;
2035 if (*parse == '\0')
2037 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2038 return ERROR_SERVER_REMOTE_CLOSED;
2040 addr = strtoul(parse, &parse, 16);
2041 if (*(parse++) != ':')
2043 LOG_ERROR("incomplete vFlashErase packet received, dropping connection");
2044 return ERROR_SERVER_REMOTE_CLOSED;
2046 length = packet_size - (parse - packet);
2048 /* create a new image if there isn't already one */
2049 if (gdb_connection->vflash_image == NULL)
2051 gdb_connection->vflash_image = malloc(sizeof(struct image));
2052 image_open(gdb_connection->vflash_image, "", "build");
2055 /* create new section with content from packet buffer */
2056 if ((retval = image_add_section(gdb_connection->vflash_image, addr, length, 0x0, (uint8_t*)parse)) != ERROR_OK)
2058 return retval;
2061 gdb_put_packet(connection, "OK", 2);
2063 return ERROR_OK;
2066 if (!strcmp(packet, "vFlashDone"))
2068 uint32_t written;
2070 /* process the flashing buffer. No need to erase as GDB
2071 * always issues a vFlashErase first. */
2072 target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_FLASH_WRITE_START);
2073 result = flash_write(gdb_service->target, gdb_connection->vflash_image, &written, 0);
2074 target_call_event_callbacks(gdb_service->target, TARGET_EVENT_GDB_FLASH_WRITE_END);
2075 if (result != ERROR_OK)
2077 if (result == ERROR_FLASH_DST_OUT_OF_BANK)
2078 gdb_put_packet(connection, "E.memtype", 9);
2079 else
2080 gdb_send_error(connection, EIO);
2082 else
2084 LOG_DEBUG("wrote %u bytes from vFlash image to flash", (unsigned)written);
2085 gdb_put_packet(connection, "OK", 2);
2088 image_close(gdb_connection->vflash_image);
2089 free(gdb_connection->vflash_image);
2090 gdb_connection->vflash_image = NULL;
2092 return ERROR_OK;
2095 gdb_put_packet(connection, "", 0);
2096 return ERROR_OK;
2099 static int gdb_detach(struct connection *connection, struct target *target)
2101 struct gdb_service *gdb_service = connection->service->priv;
2103 target_call_event_callbacks(gdb_service->target,
2104 TARGET_EVENT_GDB_DETACH);
2106 return gdb_put_packet(connection, "OK", 2);
2109 static void gdb_log_callback(void *priv, const char *file, unsigned line,
2110 const char *function, const char *string)
2112 struct connection *connection = priv;
2113 struct gdb_connection *gdb_con = connection->priv;
2115 if (gdb_con->busy)
2117 /* do not reply this using the O packet */
2118 return;
2121 gdb_output_con(connection, string);
2124 static void gdb_sig_halted(struct connection *connection)
2126 char sig_reply[4];
2127 snprintf(sig_reply, 4, "T%2.2x", 2);
2128 gdb_put_packet(connection, sig_reply, 3);
2132 static int gdb_input_inner(struct connection *connection)
2134 /* Do not allocate this on the stack */
2135 static char gdb_packet_buffer[GDB_BUFFER_SIZE];
2137 struct gdb_service *gdb_service = connection->service->priv;
2138 struct target *target = gdb_service->target;
2139 char *packet = gdb_packet_buffer;
2140 int packet_size;
2141 int retval;
2142 struct gdb_connection *gdb_con = connection->priv;
2143 static int extended_protocol = 0;
2145 /* drain input buffer. If one of the packets fail, then an error
2146 * packet is replied, if applicable.
2148 * This loop will terminate and the error code is returned.
2150 * The calling fn will check if this error is something that
2151 * can be recovered from, or if the connection must be closed.
2153 * If the error is recoverable, this fn is called again to
2154 * drain the rest of the buffer.
2158 packet_size = GDB_BUFFER_SIZE-1;
2159 retval = gdb_get_packet(connection, packet, &packet_size);
2160 if (retval != ERROR_OK)
2161 return retval;
2163 /* terminate with zero */
2164 packet[packet_size] = 0;
2166 if (LOG_LEVEL_IS(LOG_LVL_DEBUG)) {
2167 if (packet[0] == 'X') {
2168 // binary packets spew junk into the debug log stream
2169 char buf[ 50 ];
2170 int x;
2171 for (x = 0 ; (x < 49) && (packet[x] != ':') ; x++) {
2172 buf[x] = packet[x];
2174 buf[x] = 0;
2175 LOG_DEBUG("received packet: '%s:<binary-data>'", buf);
2176 } else {
2177 LOG_DEBUG("received packet: '%s'", packet);
2181 if (packet_size > 0)
2183 retval = ERROR_OK;
2184 switch (packet[0])
2186 case 'H':
2187 /* Hct... -- set thread
2188 * we don't have threads, send empty reply */
2189 gdb_put_packet(connection, NULL, 0);
2190 break;
2191 case 'q':
2192 case 'Q':
2193 retval = gdb_query_packet(connection,
2194 target, packet,
2195 packet_size);
2196 break;
2197 case 'g':
2198 retval = gdb_get_registers_packet(
2199 connection, target,
2200 packet, packet_size);
2201 break;
2202 case 'G':
2203 retval = gdb_set_registers_packet(
2204 connection, target,
2205 packet, packet_size);
2206 break;
2207 case 'p':
2208 retval = gdb_get_register_packet(
2209 connection, target,
2210 packet, packet_size);
2211 break;
2212 case 'P':
2213 retval = gdb_set_register_packet(
2214 connection, target,
2215 packet, packet_size);
2216 break;
2217 case 'm':
2218 retval = gdb_read_memory_packet(
2219 connection, target,
2220 packet, packet_size);
2221 break;
2222 case 'M':
2223 retval = gdb_write_memory_packet(
2224 connection, target,
2225 packet, packet_size);
2226 break;
2227 case 'z':
2228 case 'Z':
2229 retval = gdb_breakpoint_watchpoint_packet(connection, target, packet, packet_size);
2230 break;
2231 case '?':
2232 gdb_last_signal_packet(
2233 connection, target,
2234 packet, packet_size);
2235 break;
2236 case 'c':
2237 case 's':
2239 log_add_callback(gdb_log_callback, connection);
2241 if (gdb_con->mem_write_error)
2243 LOG_ERROR("Memory write failure!");
2245 /* now that we have reported the memory write error, we can clear the condition */
2246 gdb_con->mem_write_error = false;
2249 bool nostep = false;
2250 bool already_running = false;
2251 if (target->state == TARGET_RUNNING)
2253 LOG_WARNING("WARNING! The target is already running. "
2254 "All changes GDB did to registers will be discarded! "
2255 "Waiting for target to halt.");
2256 already_running = true;
2257 } else if (target->state != TARGET_HALTED)
2259 LOG_WARNING("The target is not in the halted nor running stated, stepi/continue ignored.");
2260 nostep = true;
2261 } else if ((packet[0] == 's') && gdb_con->sync)
2263 /* Hmm..... when you issue a continue in GDB, then a "stepi" is
2264 * sent by GDB first to OpenOCD, thus defeating the check to
2265 * make only the single stepping have the sync feature...
2267 nostep = true;
2268 LOG_WARNING("stepi ignored. GDB will now fetch the register state from the target.");
2270 gdb_con->sync = false;
2272 if (!already_running && nostep)
2274 /* Either the target isn't in the halted state, then we can't
2275 * step/continue. This might be early setup, etc.
2277 * Or we want to allow GDB to pick up a fresh set of
2278 * register values without modifying the target state.
2281 gdb_sig_halted(connection);
2283 /* stop forwarding log packets! */
2284 log_remove_callback(gdb_log_callback, connection);
2285 } else
2287 /* We're running/stepping, in which case we can
2288 * forward log output until the target is halted
2290 gdb_con->frontend_state = TARGET_RUNNING;
2291 target_call_event_callbacks(target, TARGET_EVENT_GDB_START);
2293 if (!already_running)
2295 /* Here we don't want packet processing to stop even if this fails,
2296 * so we use a local variable instead of retval. */
2297 retval = gdb_step_continue_packet(connection, target, packet, packet_size);
2298 if (retval != ERROR_OK)
2300 /* we'll never receive a halted condition... issue a false one.. */
2301 gdb_frontend_halted(target, connection);
2306 break;
2307 case 'v':
2308 retval = gdb_v_packet(
2309 connection, target,
2310 packet, packet_size);
2311 break;
2312 case 'D':
2313 retval = gdb_detach(connection, target);
2314 extended_protocol = 0;
2315 break;
2316 case 'X':
2317 retval = gdb_write_memory_binary_packet(
2318 connection, target,
2319 packet, packet_size);
2320 if (retval != ERROR_OK)
2321 return retval;
2322 break;
2323 case 'k':
2324 if (extended_protocol != 0)
2325 break;
2326 gdb_put_packet(connection, "OK", 2);
2327 return ERROR_SERVER_REMOTE_CLOSED;
2328 case '!':
2329 /* handle extended remote protocol */
2330 extended_protocol = 1;
2331 gdb_put_packet(connection, "OK", 2);
2332 break;
2333 case 'R':
2334 /* handle extended restart packet */
2335 breakpoint_clear_target(gdb_service->target);
2336 watchpoint_clear_target(gdb_service->target);
2337 command_run_linef(connection->cmd_ctx,
2338 "ocd_gdb_restart %s",
2339 target_name(target));
2340 break;
2341 default:
2342 /* ignore unknown packets */
2343 LOG_DEBUG("ignoring 0x%2.2x packet", packet[0]);
2344 gdb_put_packet(connection, NULL, 0);
2345 break;
2348 /* if a packet handler returned an error, exit input loop */
2349 if (retval != ERROR_OK)
2350 return retval;
2353 if (gdb_con->ctrl_c)
2355 if (target->state == TARGET_RUNNING)
2357 retval = target_halt(target);
2358 if (retval != ERROR_OK)
2360 target_call_event_callbacks(target, TARGET_EVENT_GDB_HALT);
2362 gdb_con->ctrl_c = 0;
2363 } else
2365 LOG_INFO("The target is not running when halt was requested, stopping GDB.");
2366 target_call_event_callbacks(target, TARGET_EVENT_GDB_HALT);
2370 } while (gdb_con->buf_cnt > 0);
2372 return ERROR_OK;
2375 static int gdb_input(struct connection *connection)
2377 int retval = gdb_input_inner(connection);
2378 struct gdb_connection *gdb_con = connection->priv;
2379 if (retval == ERROR_SERVER_REMOTE_CLOSED)
2380 return retval;
2382 /* logging does not propagate the error, yet can set the gdb_con->closed flag */
2383 if (gdb_con->closed)
2384 return ERROR_SERVER_REMOTE_CLOSED;
2386 /* we'll recover from any other errors(e.g. temporary timeouts, etc.) */
2387 return ERROR_OK;
2390 static int gdb_target_start(struct target *target, const char *port)
2392 struct gdb_service *gdb_service = malloc(sizeof(struct gdb_service));
2393 if (NULL == gdb_service)
2394 return -ENOMEM;
2396 gdb_service->target = target;
2398 return add_service("gdb",
2399 port, 1, &gdb_new_connection, &gdb_input,
2400 &gdb_connection_closed, gdb_service);
2403 static int gdb_target_add_one(struct target *target)
2405 int retval = gdb_target_start(target, gdb_port_next);
2406 if (retval == ERROR_OK)
2408 long portnumber;
2409 /* If we can parse the port number
2410 * then we increment the port number for the next target.
2412 char *end;
2413 portnumber = strtol(gdb_port_next, &end, 0);
2414 if (!*end)
2416 if (parse_long(gdb_port_next, &portnumber) == ERROR_OK)
2418 free((void *)gdb_port_next);
2419 gdb_port_next = alloc_printf("%d", portnumber+1);
2423 return retval;
2426 int gdb_target_add_all(struct target *target)
2428 if (NULL == target)
2430 LOG_WARNING("gdb services need one or more targets defined");
2431 return ERROR_OK;
2434 while (NULL != target)
2436 int retval = gdb_target_add_one(target);
2437 if (ERROR_OK != retval)
2438 return retval;
2440 target = target->next;
2443 return ERROR_OK;
2446 COMMAND_HANDLER(handle_gdb_sync_command)
2448 if (CMD_ARGC != 0)
2450 return ERROR_COMMAND_SYNTAX_ERROR;
2453 if (current_gdb_connection == NULL)
2455 command_print(CMD_CTX,
2456 "gdb_sync command can only be run from within gdb using \"monitor gdb_sync\"");
2457 return ERROR_FAIL;
2460 current_gdb_connection->sync = true;
2462 return ERROR_OK;
2465 /* daemon configuration command gdb_port */
2466 COMMAND_HANDLER(handle_gdb_port_command)
2468 int retval = CALL_COMMAND_HANDLER(server_pipe_command, &gdb_port);
2469 if (ERROR_OK == retval) {
2470 free((void*)gdb_port_next);
2471 gdb_port_next = strdup(gdb_port);
2473 return retval;
2476 COMMAND_HANDLER(handle_gdb_memory_map_command)
2478 if (CMD_ARGC != 1)
2479 return ERROR_COMMAND_SYNTAX_ERROR;
2481 COMMAND_PARSE_ENABLE(CMD_ARGV[0], gdb_use_memory_map);
2482 return ERROR_OK;
2485 COMMAND_HANDLER(handle_gdb_flash_program_command)
2487 if (CMD_ARGC != 1)
2488 return ERROR_COMMAND_SYNTAX_ERROR;
2490 COMMAND_PARSE_ENABLE(CMD_ARGV[0], gdb_flash_program);
2491 return ERROR_OK;
2494 COMMAND_HANDLER(handle_gdb_report_data_abort_command)
2496 if (CMD_ARGC != 1)
2497 return ERROR_COMMAND_SYNTAX_ERROR;
2499 COMMAND_PARSE_ENABLE(CMD_ARGV[0], gdb_report_data_abort);
2500 return ERROR_OK;
2503 /* gdb_breakpoint_override */
2504 COMMAND_HANDLER(handle_gdb_breakpoint_override_command)
2506 if (CMD_ARGC == 0)
2509 } else if (CMD_ARGC == 1)
2511 gdb_breakpoint_override = 1;
2512 if (strcmp(CMD_ARGV[0], "hard") == 0)
2514 gdb_breakpoint_override_type = BKPT_HARD;
2515 } else if (strcmp(CMD_ARGV[0], "soft") == 0)
2517 gdb_breakpoint_override_type = BKPT_SOFT;
2518 } else if (strcmp(CMD_ARGV[0], "disable") == 0)
2520 gdb_breakpoint_override = 0;
2522 } else
2524 return ERROR_COMMAND_SYNTAX_ERROR;
2526 if (gdb_breakpoint_override)
2528 LOG_USER("force %s breakpoints", (gdb_breakpoint_override_type == BKPT_HARD)?"hard":"soft");
2529 } else
2531 LOG_USER("breakpoint type is not overridden");
2534 return ERROR_OK;
2537 static const struct command_registration gdb_command_handlers[] = {
2539 .name = "gdb_sync",
2540 .handler = handle_gdb_sync_command,
2541 .mode = COMMAND_ANY,
2542 .help = "next stepi will return immediately allowing "
2543 "GDB to fetch register state without affecting "
2544 "target state",
2547 .name = "gdb_port",
2548 .handler = handle_gdb_port_command,
2549 .mode = COMMAND_ANY,
2550 .help = "Normally gdb listens to a TCP/IP port. Each subsequent GDB "
2551 "server listens for the next port number after the "
2552 "base port number specified. "
2553 "No arguments reports GDB port. \"pipe\" means listen to stdin "
2554 "output to stdout, an integer is base port number, \"disable\" disables "
2555 "port. Any other string is are interpreted as named pipe to listen to. "
2556 "Output pipe is the same name as input pipe, but with 'o' appended.",
2557 .usage = "[port_num]",
2560 .name = "gdb_memory_map",
2561 .handler = handle_gdb_memory_map_command,
2562 .mode = COMMAND_CONFIG,
2563 .help = "enable or disable memory map",
2564 .usage = "('enable'|'disable')"
2567 .name = "gdb_flash_program",
2568 .handler = handle_gdb_flash_program_command,
2569 .mode = COMMAND_CONFIG,
2570 .help = "enable or disable flash program",
2571 .usage = "('enable'|'disable')"
2574 .name = "gdb_report_data_abort",
2575 .handler = handle_gdb_report_data_abort_command,
2576 .mode = COMMAND_CONFIG,
2577 .help = "enable or disable reporting data aborts",
2578 .usage = "('enable'|'disable')"
2581 .name = "gdb_breakpoint_override",
2582 .handler = handle_gdb_breakpoint_override_command,
2583 .mode = COMMAND_ANY,
2584 .help = "Display or specify type of breakpoint "
2585 "to be used by gdb 'break' commands.",
2586 .usage = "('hard'|'soft'|'disable')"
2588 COMMAND_REGISTRATION_DONE
2591 int gdb_register_commands(struct command_context *cmd_ctx)
2593 gdb_port = strdup("3333");
2594 gdb_port_next = strdup("3333");
2595 return register_commands(cmd_ctx, NULL, gdb_command_handlers);