gdbstub.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. /*
  2. * Copyright (c) 2020 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <device.h>
  7. #include <kernel.h>
  8. #include <logging/log.h>
  9. LOG_MODULE_REGISTER(gdbstub);
  10. #include <sys/util.h>
  11. #include <ctype.h>
  12. #include <stdbool.h>
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <string.h>
  16. #include <sys/types.h>
  17. #include "gdbstub_backend.h"
  18. #define GDB_PACKET_SIZE 256
  19. /* GDB remote serial protocol does not define errors value properly
  20. * and handle all error packets as the same the code error is not
  21. * used. There are informal values used by others gdbstub
  22. * implementation, like qemu. Lets use the same here.
  23. */
  24. #define GDB_ERROR_GENERAL "E01"
  25. #define GDB_ERROR_MEMORY "E14"
  26. #define GDB_ERROR_OVERFLOW "E22"
  27. /**
  28. * Add preamble and termination to the given data.
  29. *
  30. * It returns 0 if the packet was acknowledge, -1 otherwise.
  31. */
  32. static int gdb_send_packet(const uint8_t *data, size_t len)
  33. {
  34. uint8_t buf[2];
  35. uint8_t checksum = 0;
  36. /* Send packet start */
  37. z_gdb_putchar('$');
  38. /* Send packet data and calculate checksum */
  39. while (len-- > 0) {
  40. checksum += *data;
  41. z_gdb_putchar(*data++);
  42. }
  43. /* Send the checksum */
  44. z_gdb_putchar('#');
  45. if (bin2hex(&checksum, 1, buf, sizeof(buf)) == 0) {
  46. return -1;
  47. }
  48. z_gdb_putchar(buf[0]);
  49. z_gdb_putchar(buf[1]);
  50. if (z_gdb_getchar() == '+') {
  51. return 0;
  52. }
  53. /* Just got an invalid response */
  54. return -1;
  55. }
  56. /**
  57. * Receives a packet
  58. *
  59. * Return 0 in case of success, otherwise -1
  60. */
  61. static int gdb_get_packet(uint8_t *buf, size_t buf_len, size_t *len)
  62. {
  63. uint8_t ch = '0';
  64. uint8_t expected_checksum, checksum = 0;
  65. uint8_t checksum_buf[2];
  66. /* Wait for packet start */
  67. checksum = 0;
  68. /* wait for the start character, ignore the rest */
  69. while (ch != '$') {
  70. ch = z_gdb_getchar();
  71. }
  72. *len = 0;
  73. /* Read until receive # or the end of the buffer */
  74. while (*len < (buf_len - 1)) {
  75. ch = z_gdb_getchar();
  76. if (ch == '#') {
  77. break;
  78. }
  79. checksum += ch;
  80. buf[*len] = ch;
  81. (*len)++;
  82. }
  83. buf[*len] = '\0';
  84. /* Get checksum now */
  85. checksum_buf[0] = z_gdb_getchar();
  86. checksum_buf[1] = z_gdb_getchar();
  87. if (hex2bin(checksum_buf, 2, &expected_checksum, 1) == 0) {
  88. return -1;
  89. }
  90. /* Verify checksum */
  91. if (checksum != expected_checksum) {
  92. LOG_DBG("Bad checksum. Got 0x%x but was expecting: 0x%x",
  93. checksum, expected_checksum);
  94. /* NACK packet */
  95. z_gdb_putchar('-');
  96. return -1;
  97. }
  98. /* ACK packet */
  99. z_gdb_putchar('+');
  100. return 0;
  101. }
  102. /**
  103. * Read data from a given memory.
  104. *
  105. * Return 0 in case of success, otherwise -1
  106. */
  107. static int gdb_mem_read(uint8_t *buf, size_t buf_len,
  108. uintptr_t addr, size_t len)
  109. {
  110. uint8_t data;
  111. size_t pos, count = 0;
  112. if (len > buf_len) {
  113. return -1;
  114. }
  115. /* Read from system memory */
  116. for (pos = 0; pos < len; pos++) {
  117. data = *(uint8_t *)(addr + pos);
  118. count += bin2hex(&data, 1, buf + count, buf_len - count);
  119. }
  120. return count;
  121. }
  122. /**
  123. * Write data in a given memory.
  124. *
  125. * Return 0 in case of success, otherwise -1
  126. */
  127. static int gdb_mem_write(const uint8_t *buf, uintptr_t addr,
  128. size_t len)
  129. {
  130. uint8_t data;
  131. while (len > 0) {
  132. size_t ret = hex2bin(buf, 2, &data, sizeof(data));
  133. if (ret == 0) {
  134. return -1;
  135. }
  136. *(uint8_t *)addr = data;
  137. addr++;
  138. buf += 2;
  139. len--;
  140. }
  141. return 0;
  142. }
  143. /**
  144. * Send a exception packet "T <value>"
  145. */
  146. static int gdb_send_exception(uint8_t *buf, size_t len, uint8_t exception)
  147. {
  148. size_t size;
  149. *buf = 'T';
  150. size = bin2hex(&exception, 1, buf + 1, len - 1);
  151. if (size == 0) {
  152. return -1;
  153. }
  154. /* Related to 'T' */
  155. size++;
  156. return gdb_send_packet(buf, size);
  157. }
  158. /**
  159. * Synchronously communicate with gdb on the host
  160. */
  161. int z_gdb_main_loop(struct gdb_ctx *ctx, bool start)
  162. {
  163. uint8_t buf[GDB_PACKET_SIZE];
  164. enum loop_state {
  165. RECEIVING,
  166. CONTINUE,
  167. FAILED
  168. } state;
  169. state = RECEIVING;
  170. if (start == false) {
  171. gdb_send_exception(buf, sizeof(buf), ctx->exception);
  172. }
  173. #define CHECK_FAILURE(condition) \
  174. { \
  175. if ((condition)) { \
  176. state = FAILED; \
  177. break; \
  178. } \
  179. }
  180. #define CHECK_SYMBOL(c) \
  181. { \
  182. CHECK_FAILURE(ptr == NULL || *ptr != (c)); \
  183. ptr++; \
  184. }
  185. #define CHECK_INT(arg) \
  186. { \
  187. arg = strtol((const char *)ptr, (char **)&ptr, 16); \
  188. CHECK_FAILURE(ptr == NULL); \
  189. }
  190. while (state == RECEIVING) {
  191. uint8_t *ptr;
  192. size_t data_len, pkt_len;
  193. uintptr_t addr;
  194. int ret;
  195. ret = gdb_get_packet(buf, sizeof(buf), &pkt_len);
  196. CHECK_FAILURE(ret == -1);
  197. if (pkt_len == 0) {
  198. continue;
  199. }
  200. ptr = buf;
  201. switch (*ptr++) {
  202. /**
  203. * Read from the memory
  204. * Format: m addr,length
  205. */
  206. case 'm':
  207. CHECK_INT(addr);
  208. CHECK_SYMBOL(',');
  209. CHECK_INT(data_len);
  210. /* Read Memory */
  211. /*
  212. * GDB ask the guest to read parameters when
  213. * the user request backtrace. If the
  214. * parameter is a NULL pointer this will cause
  215. * a fault. Just send a packet informing that
  216. * this address is invalid
  217. */
  218. if (addr == 0L) {
  219. gdb_send_packet(GDB_ERROR_MEMORY, 3);
  220. break;
  221. }
  222. ret = gdb_mem_read(buf, sizeof(buf), addr, data_len);
  223. CHECK_FAILURE(ret == -1);
  224. gdb_send_packet(buf, ret);
  225. break;
  226. /**
  227. * Write to memory
  228. * Format: M addr,length:val
  229. */
  230. case 'M':
  231. CHECK_INT(addr);
  232. CHECK_SYMBOL(',');
  233. CHECK_INT(data_len);
  234. CHECK_SYMBOL(':');
  235. if (addr == 0L) {
  236. gdb_send_packet(GDB_ERROR_MEMORY, 3);
  237. break;
  238. }
  239. /* Write Memory */
  240. pkt_len = gdb_mem_write(ptr, addr, data_len);
  241. CHECK_FAILURE(pkt_len == -1);
  242. gdb_send_packet("OK", 2);
  243. break;
  244. /*
  245. * Continue ignoring the optional address
  246. * Format: c addr
  247. */
  248. case 'c':
  249. arch_gdb_continue();
  250. state = CONTINUE;
  251. break;
  252. /*
  253. * Step one instruction ignoring the optional address
  254. * s addr..addr
  255. */
  256. case 's':
  257. arch_gdb_step();
  258. state = CONTINUE;
  259. break;
  260. /*
  261. * Read all registers
  262. * Format: g
  263. */
  264. case 'g':
  265. pkt_len = bin2hex((const uint8_t *)&(ctx->registers),
  266. sizeof(ctx->registers), buf, sizeof(buf));
  267. CHECK_FAILURE(pkt_len == 0);
  268. gdb_send_packet(buf, pkt_len);
  269. break;
  270. /**
  271. * Write the value of the CPU registers
  272. * Fromat: G XX...
  273. */
  274. case 'G':
  275. pkt_len = hex2bin(ptr, pkt_len - 1,
  276. (uint8_t *)&(ctx->registers),
  277. sizeof(ctx->registers));
  278. CHECK_FAILURE(pkt_len == 0);
  279. gdb_send_packet("OK", 2);
  280. break;
  281. /**
  282. * Read the value of a register
  283. * Format: p n
  284. */
  285. case 'p':
  286. CHECK_INT(addr);
  287. CHECK_FAILURE(addr >= ARCH_GDB_NUM_REGISTERS);
  288. /* Read Register */
  289. pkt_len = bin2hex(
  290. (const uint8_t *)&(ctx->registers[addr]),
  291. sizeof(ctx->registers[addr]),
  292. buf, sizeof(buf));
  293. CHECK_FAILURE(pkt_len == 0);
  294. gdb_send_packet(buf, pkt_len);
  295. break;
  296. /**
  297. * Write data into a specific register
  298. * Format: P register=value
  299. */
  300. case 'P':
  301. CHECK_INT(addr);
  302. CHECK_SYMBOL('=');
  303. /*
  304. * GDB requires orig_eax that seems to be
  305. * Linux specific. Unfortunately if we just
  306. * return "E01" gdb will stop. So, we just
  307. * send "OK" and ignore it.
  308. */
  309. if (addr < ARCH_GDB_NUM_REGISTERS) {
  310. pkt_len = hex2bin(ptr, strlen(ptr),
  311. (uint8_t *)&(ctx->registers[addr]),
  312. sizeof(ctx->registers[addr]));
  313. CHECK_FAILURE(pkt_len == 0);
  314. }
  315. gdb_send_packet("OK", 2);
  316. break;
  317. /* What cause the pause */
  318. case '?':
  319. gdb_send_exception(buf, sizeof(buf),
  320. ctx->exception);
  321. break;
  322. /*
  323. * Not supported action
  324. */
  325. default:
  326. gdb_send_packet(NULL, 0);
  327. break;
  328. }
  329. }
  330. if (state == FAILED) {
  331. gdb_send_packet(GDB_ERROR_GENERAL, 3);
  332. return -1;
  333. }
  334. #undef CHECK_FAILURE
  335. #undef CHECK_INT
  336. #undef CHECK_SYMBOL
  337. return 0;
  338. }
  339. int gdb_init(const struct device *arg)
  340. {
  341. ARG_UNUSED(arg);
  342. if (z_gdb_backend_init() == -1) {
  343. LOG_ERR("Could not initialize gdbstub backend.");
  344. return -1;
  345. }
  346. arch_gdb_init();
  347. return 0;
  348. }
  349. SYS_INIT(gdb_init, PRE_KERNEL_2, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT);