PageRenderTime 62ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/drivers/misc/kgdbts.c

https://bitbucket.org/jordonwu/android_kernel_andypad
C | 1120 lines | 799 code | 121 blank | 200 comment | 128 complexity | adfc378eb5aea48d3d832c06cbc7cd40 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
  1. /*
  2. * kgdbts is a test suite for kgdb for the sole purpose of validating
  3. * that key pieces of the kgdb internals are working properly such as
  4. * HW/SW breakpoints, single stepping, and NMI.
  5. *
  6. * Created by: Jason Wessel <jason.wessel@windriver.com>
  7. *
  8. * Copyright (c) 2008 Wind River Systems, Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. * See the GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. /* Information about the kgdb test suite.
  24. * -------------------------------------
  25. *
  26. * The kgdb test suite is designed as a KGDB I/O module which
  27. * simulates the communications that a debugger would have with kgdb.
  28. * The tests are broken up in to a line by line and referenced here as
  29. * a "get" which is kgdb requesting input and "put" which is kgdb
  30. * sending a response.
  31. *
  32. * The kgdb suite can be invoked from the kernel command line
  33. * arguments system or executed dynamically at run time. The test
  34. * suite uses the variable "kgdbts" to obtain the information about
  35. * which tests to run and to configure the verbosity level. The
  36. * following are the various characters you can use with the kgdbts=
  37. * line:
  38. *
  39. * When using the "kgdbts=" you only choose one of the following core
  40. * test types:
  41. * A = Run all the core tests silently
  42. * V1 = Run all the core tests with minimal output
  43. * V2 = Run all the core tests in debug mode
  44. *
  45. * You can also specify optional tests:
  46. * N## = Go to sleep with interrupts of for ## seconds
  47. * to test the HW NMI watchdog
  48. * F## = Break at do_fork for ## iterations
  49. * S## = Break at sys_open for ## iterations
  50. * I## = Run the single step test ## iterations
  51. *
  52. * NOTE: that the do_fork and sys_open tests are mutually exclusive.
  53. *
  54. * To invoke the kgdb test suite from boot you use a kernel start
  55. * argument as follows:
  56. * kgdbts=V1 kgdbwait
  57. * Or if you wanted to perform the NMI test for 6 seconds and do_fork
  58. * test for 100 forks, you could use:
  59. * kgdbts=V1N6F100 kgdbwait
  60. *
  61. * The test suite can also be invoked at run time with:
  62. * echo kgdbts=V1N6F100 > /sys/module/kgdbts/parameters/kgdbts
  63. * Or as another example:
  64. * echo kgdbts=V2 > /sys/module/kgdbts/parameters/kgdbts
  65. *
  66. * When developing a new kgdb arch specific implementation or
  67. * using these tests for the purpose of regression testing,
  68. * several invocations are required.
  69. *
  70. * 1) Boot with the test suite enabled by using the kernel arguments
  71. * "kgdbts=V1F100 kgdbwait"
  72. * ## If kgdb arch specific implementation has NMI use
  73. * "kgdbts=V1N6F100
  74. *
  75. * 2) After the system boot run the basic test.
  76. * echo kgdbts=V1 > /sys/module/kgdbts/parameters/kgdbts
  77. *
  78. * 3) Run the concurrency tests. It is best to use n+1
  79. * while loops where n is the number of cpus you have
  80. * in your system. The example below uses only two
  81. * loops.
  82. *
  83. * ## This tests break points on sys_open
  84. * while [ 1 ] ; do find / > /dev/null 2>&1 ; done &
  85. * while [ 1 ] ; do find / > /dev/null 2>&1 ; done &
  86. * echo kgdbts=V1S10000 > /sys/module/kgdbts/parameters/kgdbts
  87. * fg # and hit control-c
  88. * fg # and hit control-c
  89. * ## This tests break points on do_fork
  90. * while [ 1 ] ; do date > /dev/null ; done &
  91. * while [ 1 ] ; do date > /dev/null ; done &
  92. * echo kgdbts=V1F1000 > /sys/module/kgdbts/parameters/kgdbts
  93. * fg # and hit control-c
  94. *
  95. */
  96. #include <linux/kernel.h>
  97. #include <linux/kgdb.h>
  98. #include <linux/ctype.h>
  99. #include <linux/uaccess.h>
  100. #include <linux/syscalls.h>
  101. #include <linux/nmi.h>
  102. #include <linux/delay.h>
  103. #include <linux/kthread.h>
  104. #define v1printk(a...) do { \
  105. if (verbose) \
  106. printk(KERN_INFO a); \
  107. } while (0)
  108. #define v2printk(a...) do { \
  109. if (verbose > 1) \
  110. printk(KERN_INFO a); \
  111. touch_nmi_watchdog(); \
  112. } while (0)
  113. #define eprintk(a...) do { \
  114. printk(KERN_ERR a); \
  115. WARN_ON(1); \
  116. } while (0)
  117. #define MAX_CONFIG_LEN 40
  118. static struct kgdb_io kgdbts_io_ops;
  119. static char get_buf[BUFMAX];
  120. static int get_buf_cnt;
  121. static char put_buf[BUFMAX];
  122. static int put_buf_cnt;
  123. static char scratch_buf[BUFMAX];
  124. static int verbose;
  125. static int repeat_test;
  126. static int test_complete;
  127. static int send_ack;
  128. static int final_ack;
  129. static int force_hwbrks;
  130. static int hwbreaks_ok;
  131. static int hw_break_val;
  132. static int hw_break_val2;
  133. #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_SPARC)
  134. static int arch_needs_sstep_emulation = 1;
  135. #else
  136. static int arch_needs_sstep_emulation;
  137. #endif
  138. static unsigned long sstep_addr;
  139. static int sstep_state;
  140. /* Storage for the registers, in GDB format. */
  141. static unsigned long kgdbts_gdb_regs[(NUMREGBYTES +
  142. sizeof(unsigned long) - 1) /
  143. sizeof(unsigned long)];
  144. static struct pt_regs kgdbts_regs;
  145. /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
  146. static int configured = -1;
  147. #ifdef CONFIG_KGDB_TESTS_BOOT_STRING
  148. static char config[MAX_CONFIG_LEN] = CONFIG_KGDB_TESTS_BOOT_STRING;
  149. #else
  150. static char config[MAX_CONFIG_LEN];
  151. #endif
  152. static struct kparam_string kps = {
  153. .string = config,
  154. .maxlen = MAX_CONFIG_LEN,
  155. };
  156. static void fill_get_buf(char *buf);
  157. struct test_struct {
  158. char *get;
  159. char *put;
  160. void (*get_handler)(char *);
  161. int (*put_handler)(char *, char *);
  162. };
  163. struct test_state {
  164. char *name;
  165. struct test_struct *tst;
  166. int idx;
  167. int (*run_test) (int, int);
  168. int (*validate_put) (char *);
  169. };
  170. static struct test_state ts;
  171. static int kgdbts_unreg_thread(void *ptr)
  172. {
  173. /* Wait until the tests are complete and then ungresiter the I/O
  174. * driver.
  175. */
  176. while (!final_ack)
  177. msleep_interruptible(1500);
  178. if (configured)
  179. kgdb_unregister_io_module(&kgdbts_io_ops);
  180. configured = 0;
  181. return 0;
  182. }
  183. /* This is noinline such that it can be used for a single location to
  184. * place a breakpoint
  185. */
  186. static noinline void kgdbts_break_test(void)
  187. {
  188. v2printk("kgdbts: breakpoint complete\n");
  189. }
  190. /* Lookup symbol info in the kernel */
  191. static unsigned long lookup_addr(char *arg)
  192. {
  193. unsigned long addr = 0;
  194. if (!strcmp(arg, "kgdbts_break_test"))
  195. addr = (unsigned long)kgdbts_break_test;
  196. else if (!strcmp(arg, "sys_open"))
  197. addr = (unsigned long)sys_open;
  198. else if (!strcmp(arg, "do_fork"))
  199. addr = (unsigned long)do_fork;
  200. else if (!strcmp(arg, "hw_break_val"))
  201. addr = (unsigned long)&hw_break_val;
  202. return addr;
  203. }
  204. static void break_helper(char *bp_type, char *arg, unsigned long vaddr)
  205. {
  206. unsigned long addr;
  207. if (arg)
  208. addr = lookup_addr(arg);
  209. else
  210. addr = vaddr;
  211. sprintf(scratch_buf, "%s,%lx,%i", bp_type, addr,
  212. BREAK_INSTR_SIZE);
  213. fill_get_buf(scratch_buf);
  214. }
  215. static void sw_break(char *arg)
  216. {
  217. break_helper(force_hwbrks ? "Z1" : "Z0", arg, 0);
  218. }
  219. static void sw_rem_break(char *arg)
  220. {
  221. break_helper(force_hwbrks ? "z1" : "z0", arg, 0);
  222. }
  223. static void hw_break(char *arg)
  224. {
  225. break_helper("Z1", arg, 0);
  226. }
  227. static void hw_rem_break(char *arg)
  228. {
  229. break_helper("z1", arg, 0);
  230. }
  231. static void hw_write_break(char *arg)
  232. {
  233. break_helper("Z2", arg, 0);
  234. }
  235. static void hw_rem_write_break(char *arg)
  236. {
  237. break_helper("z2", arg, 0);
  238. }
  239. static void hw_access_break(char *arg)
  240. {
  241. break_helper("Z4", arg, 0);
  242. }
  243. static void hw_rem_access_break(char *arg)
  244. {
  245. break_helper("z4", arg, 0);
  246. }
  247. static void hw_break_val_access(void)
  248. {
  249. hw_break_val2 = hw_break_val;
  250. }
  251. static void hw_break_val_write(void)
  252. {
  253. hw_break_val++;
  254. }
  255. static int check_and_rewind_pc(char *put_str, char *arg)
  256. {
  257. unsigned long addr = lookup_addr(arg);
  258. int offset = 0;
  259. kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
  260. NUMREGBYTES);
  261. gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
  262. v2printk("Stopped at IP: %lx\n", instruction_pointer(&kgdbts_regs));
  263. #ifdef CONFIG_X86
  264. /* On x86 a breakpoint stop requires it to be decremented */
  265. if (addr + 1 == kgdbts_regs.ip)
  266. offset = -1;
  267. #endif
  268. if (strcmp(arg, "silent") &&
  269. instruction_pointer(&kgdbts_regs) + offset != addr) {
  270. eprintk("kgdbts: BP mismatch %lx expected %lx\n",
  271. instruction_pointer(&kgdbts_regs) + offset, addr);
  272. return 1;
  273. }
  274. #ifdef CONFIG_X86
  275. /* On x86 adjust the instruction pointer if needed */
  276. kgdbts_regs.ip += offset;
  277. #endif
  278. return 0;
  279. }
  280. static int check_single_step(char *put_str, char *arg)
  281. {
  282. unsigned long addr = lookup_addr(arg);
  283. /*
  284. * From an arch indepent point of view the instruction pointer
  285. * should be on a different instruction
  286. */
  287. kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
  288. NUMREGBYTES);
  289. gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
  290. v2printk("Singlestep stopped at IP: %lx\n",
  291. instruction_pointer(&kgdbts_regs));
  292. if (instruction_pointer(&kgdbts_regs) == addr) {
  293. eprintk("kgdbts: SingleStep failed at %lx\n",
  294. instruction_pointer(&kgdbts_regs));
  295. return 1;
  296. }
  297. return 0;
  298. }
  299. static void write_regs(char *arg)
  300. {
  301. memset(scratch_buf, 0, sizeof(scratch_buf));
  302. scratch_buf[0] = 'G';
  303. pt_regs_to_gdb_regs(kgdbts_gdb_regs, &kgdbts_regs);
  304. kgdb_mem2hex((char *)kgdbts_gdb_regs, &scratch_buf[1], NUMREGBYTES);
  305. fill_get_buf(scratch_buf);
  306. }
  307. static void skip_back_repeat_test(char *arg)
  308. {
  309. int go_back = simple_strtol(arg, NULL, 10);
  310. repeat_test--;
  311. if (repeat_test <= 0)
  312. ts.idx++;
  313. else
  314. ts.idx -= go_back;
  315. fill_get_buf(ts.tst[ts.idx].get);
  316. }
  317. static int got_break(char *put_str, char *arg)
  318. {
  319. test_complete = 1;
  320. if (!strncmp(put_str+1, arg, 2)) {
  321. if (!strncmp(arg, "T0", 2))
  322. test_complete = 2;
  323. return 0;
  324. }
  325. return 1;
  326. }
  327. static void emul_sstep_get(char *arg)
  328. {
  329. if (!arch_needs_sstep_emulation) {
  330. fill_get_buf(arg);
  331. return;
  332. }
  333. switch (sstep_state) {
  334. case 0:
  335. v2printk("Emulate single step\n");
  336. /* Start by looking at the current PC */
  337. fill_get_buf("g");
  338. break;
  339. case 1:
  340. /* set breakpoint */
  341. break_helper("Z0", NULL, sstep_addr);
  342. break;
  343. case 2:
  344. /* Continue */
  345. fill_get_buf("c");
  346. break;
  347. case 3:
  348. /* Clear breakpoint */
  349. break_helper("z0", NULL, sstep_addr);
  350. break;
  351. default:
  352. eprintk("kgdbts: ERROR failed sstep get emulation\n");
  353. }
  354. sstep_state++;
  355. }
  356. static int emul_sstep_put(char *put_str, char *arg)
  357. {
  358. if (!arch_needs_sstep_emulation) {
  359. if (!strncmp(put_str+1, arg, 2))
  360. return 0;
  361. return 1;
  362. }
  363. switch (sstep_state) {
  364. case 1:
  365. /* validate the "g" packet to get the IP */
  366. kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
  367. NUMREGBYTES);
  368. gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
  369. v2printk("Stopped at IP: %lx\n",
  370. instruction_pointer(&kgdbts_regs));
  371. /* Want to stop at IP + break instruction size by default */
  372. sstep_addr = instruction_pointer(&kgdbts_regs) +
  373. BREAK_INSTR_SIZE;
  374. break;
  375. case 2:
  376. if (strncmp(put_str, "$OK", 3)) {
  377. eprintk("kgdbts: failed sstep break set\n");
  378. return 1;
  379. }
  380. break;
  381. case 3:
  382. if (strncmp(put_str, "$T0", 3)) {
  383. eprintk("kgdbts: failed continue sstep\n");
  384. return 1;
  385. }
  386. break;
  387. case 4:
  388. if (strncmp(put_str, "$OK", 3)) {
  389. eprintk("kgdbts: failed sstep break unset\n");
  390. return 1;
  391. }
  392. /* Single step is complete so continue on! */
  393. sstep_state = 0;
  394. return 0;
  395. default:
  396. eprintk("kgdbts: ERROR failed sstep put emulation\n");
  397. }
  398. /* Continue on the same test line until emulation is complete */
  399. ts.idx--;
  400. return 0;
  401. }
  402. static int final_ack_set(char *put_str, char *arg)
  403. {
  404. if (strncmp(put_str+1, arg, 2))
  405. return 1;
  406. final_ack = 1;
  407. return 0;
  408. }
  409. /*
  410. * Test to plant a breakpoint and detach, which should clear out the
  411. * breakpoint and restore the original instruction.
  412. */
  413. static struct test_struct plant_and_detach_test[] = {
  414. { "?", "S0*" }, /* Clear break points */
  415. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  416. { "D", "OK" }, /* Detach */
  417. { "", "" },
  418. };
  419. /*
  420. * Simple test to write in a software breakpoint, check for the
  421. * correct stop location and detach.
  422. */
  423. static struct test_struct sw_breakpoint_test[] = {
  424. { "?", "S0*" }, /* Clear break points */
  425. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  426. { "c", "T0*", }, /* Continue */
  427. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  428. { "write", "OK", write_regs },
  429. { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */
  430. { "D", "OK" }, /* Detach */
  431. { "D", "OK", NULL, got_break }, /* On success we made it here */
  432. { "", "" },
  433. };
  434. /*
  435. * Test a known bad memory read location to test the fault handler and
  436. * read bytes 1-8 at the bad address
  437. */
  438. static struct test_struct bad_read_test[] = {
  439. { "?", "S0*" }, /* Clear break points */
  440. { "m0,1", "E*" }, /* read 1 byte at address 1 */
  441. { "m0,2", "E*" }, /* read 1 byte at address 2 */
  442. { "m0,3", "E*" }, /* read 1 byte at address 3 */
  443. { "m0,4", "E*" }, /* read 1 byte at address 4 */
  444. { "m0,5", "E*" }, /* read 1 byte at address 5 */
  445. { "m0,6", "E*" }, /* read 1 byte at address 6 */
  446. { "m0,7", "E*" }, /* read 1 byte at address 7 */
  447. { "m0,8", "E*" }, /* read 1 byte at address 8 */
  448. { "D", "OK" }, /* Detach which removes all breakpoints and continues */
  449. { "", "" },
  450. };
  451. /*
  452. * Test for hitting a breakpoint, remove it, single step, plant it
  453. * again and detach.
  454. */
  455. static struct test_struct singlestep_break_test[] = {
  456. { "?", "S0*" }, /* Clear break points */
  457. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  458. { "c", "T0*", }, /* Continue */
  459. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  460. { "write", "OK", write_regs }, /* Write registers */
  461. { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */
  462. { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
  463. { "g", "kgdbts_break_test", NULL, check_single_step },
  464. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  465. { "c", "T0*", }, /* Continue */
  466. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  467. { "write", "OK", write_regs }, /* Write registers */
  468. { "D", "OK" }, /* Remove all breakpoints and continues */
  469. { "", "" },
  470. };
  471. /*
  472. * Test for hitting a breakpoint at do_fork for what ever the number
  473. * of iterations required by the variable repeat_test.
  474. */
  475. static struct test_struct do_fork_test[] = {
  476. { "?", "S0*" }, /* Clear break points */
  477. { "do_fork", "OK", sw_break, }, /* set sw breakpoint */
  478. { "c", "T0*", }, /* Continue */
  479. { "g", "do_fork", NULL, check_and_rewind_pc }, /* check location */
  480. { "write", "OK", write_regs }, /* Write registers */
  481. { "do_fork", "OK", sw_rem_break }, /*remove breakpoint */
  482. { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
  483. { "g", "do_fork", NULL, check_single_step },
  484. { "do_fork", "OK", sw_break, }, /* set sw breakpoint */
  485. { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */
  486. { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */
  487. { "", "" },
  488. };
  489. /* Test for hitting a breakpoint at sys_open for what ever the number
  490. * of iterations required by the variable repeat_test.
  491. */
  492. static struct test_struct sys_open_test[] = {
  493. { "?", "S0*" }, /* Clear break points */
  494. { "sys_open", "OK", sw_break, }, /* set sw breakpoint */
  495. { "c", "T0*", }, /* Continue */
  496. { "g", "sys_open", NULL, check_and_rewind_pc }, /* check location */
  497. { "write", "OK", write_regs }, /* Write registers */
  498. { "sys_open", "OK", sw_rem_break }, /*remove breakpoint */
  499. { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
  500. { "g", "sys_open", NULL, check_single_step },
  501. { "sys_open", "OK", sw_break, }, /* set sw breakpoint */
  502. { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */
  503. { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */
  504. { "", "" },
  505. };
  506. /*
  507. * Test for hitting a simple hw breakpoint
  508. */
  509. static struct test_struct hw_breakpoint_test[] = {
  510. { "?", "S0*" }, /* Clear break points */
  511. { "kgdbts_break_test", "OK", hw_break, }, /* set hw breakpoint */
  512. { "c", "T0*", }, /* Continue */
  513. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  514. { "write", "OK", write_regs },
  515. { "kgdbts_break_test", "OK", hw_rem_break }, /*remove breakpoint */
  516. { "D", "OK" }, /* Detach */
  517. { "D", "OK", NULL, got_break }, /* On success we made it here */
  518. { "", "" },
  519. };
  520. /*
  521. * Test for hitting a hw write breakpoint
  522. */
  523. static struct test_struct hw_write_break_test[] = {
  524. { "?", "S0*" }, /* Clear break points */
  525. { "hw_break_val", "OK", hw_write_break, }, /* set hw breakpoint */
  526. { "c", "T0*", NULL, got_break }, /* Continue */
  527. { "g", "silent", NULL, check_and_rewind_pc },
  528. { "write", "OK", write_regs },
  529. { "hw_break_val", "OK", hw_rem_write_break }, /*remove breakpoint */
  530. { "D", "OK" }, /* Detach */
  531. { "D", "OK", NULL, got_break }, /* On success we made it here */
  532. { "", "" },
  533. };
  534. /*
  535. * Test for hitting a hw access breakpoint
  536. */
  537. static struct test_struct hw_access_break_test[] = {
  538. { "?", "S0*" }, /* Clear break points */
  539. { "hw_break_val", "OK", hw_access_break, }, /* set hw breakpoint */
  540. { "c", "T0*", NULL, got_break }, /* Continue */
  541. { "g", "silent", NULL, check_and_rewind_pc },
  542. { "write", "OK", write_regs },
  543. { "hw_break_val", "OK", hw_rem_access_break }, /*remove breakpoint */
  544. { "D", "OK" }, /* Detach */
  545. { "D", "OK", NULL, got_break }, /* On success we made it here */
  546. { "", "" },
  547. };
  548. /*
  549. * Test for hitting a hw access breakpoint
  550. */
  551. static struct test_struct nmi_sleep_test[] = {
  552. { "?", "S0*" }, /* Clear break points */
  553. { "c", "T0*", NULL, got_break }, /* Continue */
  554. { "D", "OK" }, /* Detach */
  555. { "D", "OK", NULL, got_break }, /* On success we made it here */
  556. { "", "" },
  557. };
  558. static void fill_get_buf(char *buf)
  559. {
  560. unsigned char checksum = 0;
  561. int count = 0;
  562. char ch;
  563. strcpy(get_buf, "$");
  564. strcat(get_buf, buf);
  565. while ((ch = buf[count])) {
  566. checksum += ch;
  567. count++;
  568. }
  569. strcat(get_buf, "#");
  570. get_buf[count + 2] = hex_asc_hi(checksum);
  571. get_buf[count + 3] = hex_asc_lo(checksum);
  572. get_buf[count + 4] = '\0';
  573. v2printk("get%i: %s\n", ts.idx, get_buf);
  574. }
  575. static int validate_simple_test(char *put_str)
  576. {
  577. char *chk_str;
  578. if (ts.tst[ts.idx].put_handler)
  579. return ts.tst[ts.idx].put_handler(put_str,
  580. ts.tst[ts.idx].put);
  581. chk_str = ts.tst[ts.idx].put;
  582. if (*put_str == '$')
  583. put_str++;
  584. while (*chk_str != '\0' && *put_str != '\0') {
  585. /* If someone does a * to match the rest of the string, allow
  586. * it, or stop if the recieved string is complete.
  587. */
  588. if (*put_str == '#' || *chk_str == '*')
  589. return 0;
  590. if (*put_str != *chk_str)
  591. return 1;
  592. chk_str++;
  593. put_str++;
  594. }
  595. if (*chk_str == '\0' && (*put_str == '\0' || *put_str == '#'))
  596. return 0;
  597. return 1;
  598. }
  599. static int run_simple_test(int is_get_char, int chr)
  600. {
  601. int ret = 0;
  602. if (is_get_char) {
  603. /* Send an ACK on the get if a prior put completed and set the
  604. * send ack variable
  605. */
  606. if (send_ack) {
  607. send_ack = 0;
  608. return '+';
  609. }
  610. /* On the first get char, fill the transmit buffer and then
  611. * take from the get_string.
  612. */
  613. if (get_buf_cnt == 0) {
  614. if (ts.tst[ts.idx].get_handler)
  615. ts.tst[ts.idx].get_handler(ts.tst[ts.idx].get);
  616. else
  617. fill_get_buf(ts.tst[ts.idx].get);
  618. }
  619. if (get_buf[get_buf_cnt] == '\0') {
  620. eprintk("kgdbts: ERROR GET: EOB on '%s' at %i\n",
  621. ts.name, ts.idx);
  622. get_buf_cnt = 0;
  623. fill_get_buf("D");
  624. }
  625. ret = get_buf[get_buf_cnt];
  626. get_buf_cnt++;
  627. return ret;
  628. }
  629. /* This callback is a put char which is when kgdb sends data to
  630. * this I/O module.
  631. */
  632. if (ts.tst[ts.idx].get[0] == '\0' &&
  633. ts.tst[ts.idx].put[0] == '\0') {
  634. eprintk("kgdbts: ERROR: beyond end of test on"
  635. " '%s' line %i\n", ts.name, ts.idx);
  636. return 0;
  637. }
  638. if (put_buf_cnt >= BUFMAX) {
  639. eprintk("kgdbts: ERROR: put buffer overflow on"
  640. " '%s' line %i\n", ts.name, ts.idx);
  641. put_buf_cnt = 0;
  642. return 0;
  643. }
  644. /* Ignore everything until the first valid packet start '$' */
  645. if (put_buf_cnt == 0 && chr != '$')
  646. return 0;
  647. put_buf[put_buf_cnt] = chr;
  648. put_buf_cnt++;
  649. /* End of packet == #XX so look for the '#' */
  650. if (put_buf_cnt > 3 && put_buf[put_buf_cnt - 3] == '#') {
  651. put_buf[put_buf_cnt] = '\0';
  652. v2printk("put%i: %s\n", ts.idx, put_buf);
  653. /* Trigger check here */
  654. if (ts.validate_put && ts.validate_put(put_buf)) {
  655. eprintk("kgdbts: ERROR PUT: end of test "
  656. "buffer on '%s' line %i expected %s got %s\n",
  657. ts.name, ts.idx, ts.tst[ts.idx].put, put_buf);
  658. }
  659. ts.idx++;
  660. put_buf_cnt = 0;
  661. get_buf_cnt = 0;
  662. send_ack = 1;
  663. }
  664. return 0;
  665. }
  666. static void init_simple_test(void)
  667. {
  668. memset(&ts, 0, sizeof(ts));
  669. ts.run_test = run_simple_test;
  670. ts.validate_put = validate_simple_test;
  671. }
  672. static void run_plant_and_detach_test(int is_early)
  673. {
  674. char before[BREAK_INSTR_SIZE];
  675. char after[BREAK_INSTR_SIZE];
  676. probe_kernel_read(before, (char *)kgdbts_break_test,
  677. BREAK_INSTR_SIZE);
  678. init_simple_test();
  679. ts.tst = plant_and_detach_test;
  680. ts.name = "plant_and_detach_test";
  681. /* Activate test with initial breakpoint */
  682. if (!is_early)
  683. kgdb_breakpoint();
  684. probe_kernel_read(after, (char *)kgdbts_break_test,
  685. BREAK_INSTR_SIZE);
  686. if (memcmp(before, after, BREAK_INSTR_SIZE)) {
  687. printk(KERN_CRIT "kgdbts: ERROR kgdb corrupted memory\n");
  688. panic("kgdb memory corruption");
  689. }
  690. /* complete the detach test */
  691. if (!is_early)
  692. kgdbts_break_test();
  693. }
  694. static void run_breakpoint_test(int is_hw_breakpoint)
  695. {
  696. test_complete = 0;
  697. init_simple_test();
  698. if (is_hw_breakpoint) {
  699. ts.tst = hw_breakpoint_test;
  700. ts.name = "hw_breakpoint_test";
  701. } else {
  702. ts.tst = sw_breakpoint_test;
  703. ts.name = "sw_breakpoint_test";
  704. }
  705. /* Activate test with initial breakpoint */
  706. kgdb_breakpoint();
  707. /* run code with the break point in it */
  708. kgdbts_break_test();
  709. kgdb_breakpoint();
  710. if (test_complete)
  711. return;
  712. eprintk("kgdbts: ERROR %s test failed\n", ts.name);
  713. if (is_hw_breakpoint)
  714. hwbreaks_ok = 0;
  715. }
  716. static void run_hw_break_test(int is_write_test)
  717. {
  718. test_complete = 0;
  719. init_simple_test();
  720. if (is_write_test) {
  721. ts.tst = hw_write_break_test;
  722. ts.name = "hw_write_break_test";
  723. } else {
  724. ts.tst = hw_access_break_test;
  725. ts.name = "hw_access_break_test";
  726. }
  727. /* Activate test with initial breakpoint */
  728. kgdb_breakpoint();
  729. hw_break_val_access();
  730. if (is_write_test) {
  731. if (test_complete == 2) {
  732. eprintk("kgdbts: ERROR %s broke on access\n",
  733. ts.name);
  734. hwbreaks_ok = 0;
  735. }
  736. hw_break_val_write();
  737. }
  738. kgdb_breakpoint();
  739. if (test_complete == 1)
  740. return;
  741. eprintk("kgdbts: ERROR %s test failed\n", ts.name);
  742. hwbreaks_ok = 0;
  743. }
  744. static void run_nmi_sleep_test(int nmi_sleep)
  745. {
  746. unsigned long flags;
  747. init_simple_test();
  748. ts.tst = nmi_sleep_test;
  749. ts.name = "nmi_sleep_test";
  750. /* Activate test with initial breakpoint */
  751. kgdb_breakpoint();
  752. local_irq_save(flags);
  753. mdelay(nmi_sleep*1000);
  754. touch_nmi_watchdog();
  755. local_irq_restore(flags);
  756. if (test_complete != 2)
  757. eprintk("kgdbts: ERROR nmi_test did not hit nmi\n");
  758. kgdb_breakpoint();
  759. if (test_complete == 1)
  760. return;
  761. eprintk("kgdbts: ERROR %s test failed\n", ts.name);
  762. }
  763. static void run_bad_read_test(void)
  764. {
  765. init_simple_test();
  766. ts.tst = bad_read_test;
  767. ts.name = "bad_read_test";
  768. /* Activate test with initial breakpoint */
  769. kgdb_breakpoint();
  770. }
  771. static void run_do_fork_test(void)
  772. {
  773. init_simple_test();
  774. ts.tst = do_fork_test;
  775. ts.name = "do_fork_test";
  776. /* Activate test with initial breakpoint */
  777. kgdb_breakpoint();
  778. }
  779. static void run_sys_open_test(void)
  780. {
  781. init_simple_test();
  782. ts.tst = sys_open_test;
  783. ts.name = "sys_open_test";
  784. /* Activate test with initial breakpoint */
  785. kgdb_breakpoint();
  786. }
  787. static void run_singlestep_break_test(void)
  788. {
  789. init_simple_test();
  790. ts.tst = singlestep_break_test;
  791. ts.name = "singlestep_breakpoint_test";
  792. /* Activate test with initial breakpoint */
  793. kgdb_breakpoint();
  794. kgdbts_break_test();
  795. kgdbts_break_test();
  796. }
  797. static void kgdbts_run_tests(void)
  798. {
  799. char *ptr;
  800. int fork_test = 0;
  801. int do_sys_open_test = 0;
  802. int sstep_test = 1000;
  803. int nmi_sleep = 0;
  804. int i;
  805. ptr = strstr(config, "F");
  806. if (ptr)
  807. fork_test = simple_strtol(ptr + 1, NULL, 10);
  808. ptr = strstr(config, "S");
  809. if (ptr)
  810. do_sys_open_test = simple_strtol(ptr + 1, NULL, 10);
  811. ptr = strstr(config, "N");
  812. if (ptr)
  813. nmi_sleep = simple_strtol(ptr+1, NULL, 10);
  814. ptr = strstr(config, "I");
  815. if (ptr)
  816. sstep_test = simple_strtol(ptr+1, NULL, 10);
  817. /* required internal KGDB tests */
  818. v1printk("kgdbts:RUN plant and detach test\n");
  819. run_plant_and_detach_test(0);
  820. v1printk("kgdbts:RUN sw breakpoint test\n");
  821. run_breakpoint_test(0);
  822. v1printk("kgdbts:RUN bad memory access test\n");
  823. run_bad_read_test();
  824. v1printk("kgdbts:RUN singlestep test %i iterations\n", sstep_test);
  825. for (i = 0; i < sstep_test; i++) {
  826. run_singlestep_break_test();
  827. if (i % 100 == 0)
  828. v1printk("kgdbts:RUN singlestep [%i/%i]\n",
  829. i, sstep_test);
  830. }
  831. /* ===Optional tests=== */
  832. /* All HW break point tests */
  833. if (arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT) {
  834. hwbreaks_ok = 1;
  835. v1printk("kgdbts:RUN hw breakpoint test\n");
  836. run_breakpoint_test(1);
  837. v1printk("kgdbts:RUN hw write breakpoint test\n");
  838. run_hw_break_test(1);
  839. v1printk("kgdbts:RUN access write breakpoint test\n");
  840. run_hw_break_test(0);
  841. }
  842. if (nmi_sleep) {
  843. v1printk("kgdbts:RUN NMI sleep %i seconds test\n", nmi_sleep);
  844. run_nmi_sleep_test(nmi_sleep);
  845. }
  846. #ifdef CONFIG_DEBUG_RODATA
  847. /* Until there is an api to write to read-only text segments, use
  848. * HW breakpoints for the remainder of any tests, else print a
  849. * failure message if hw breakpoints do not work.
  850. */
  851. if (!(arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT && hwbreaks_ok)) {
  852. eprintk("kgdbts: HW breakpoints do not work,"
  853. "skipping remaining tests\n");
  854. return;
  855. }
  856. force_hwbrks = 1;
  857. #endif /* CONFIG_DEBUG_RODATA */
  858. /* If the do_fork test is run it will be the last test that is
  859. * executed because a kernel thread will be spawned at the very
  860. * end to unregister the debug hooks.
  861. */
  862. if (fork_test) {
  863. repeat_test = fork_test;
  864. printk(KERN_INFO "kgdbts:RUN do_fork for %i breakpoints\n",
  865. repeat_test);
  866. kthread_run(kgdbts_unreg_thread, NULL, "kgdbts_unreg");
  867. run_do_fork_test();
  868. return;
  869. }
  870. /* If the sys_open test is run it will be the last test that is
  871. * executed because a kernel thread will be spawned at the very
  872. * end to unregister the debug hooks.
  873. */
  874. if (do_sys_open_test) {
  875. repeat_test = do_sys_open_test;
  876. printk(KERN_INFO "kgdbts:RUN sys_open for %i breakpoints\n",
  877. repeat_test);
  878. kthread_run(kgdbts_unreg_thread, NULL, "kgdbts_unreg");
  879. run_sys_open_test();
  880. return;
  881. }
  882. /* Shutdown and unregister */
  883. kgdb_unregister_io_module(&kgdbts_io_ops);
  884. configured = 0;
  885. }
  886. static int kgdbts_option_setup(char *opt)
  887. {
  888. if (strlen(opt) > MAX_CONFIG_LEN) {
  889. printk(KERN_ERR "kgdbts: config string too long\n");
  890. return -ENOSPC;
  891. }
  892. strcpy(config, opt);
  893. verbose = 0;
  894. if (strstr(config, "V1"))
  895. verbose = 1;
  896. if (strstr(config, "V2"))
  897. verbose = 2;
  898. return 0;
  899. }
  900. __setup("kgdbts=", kgdbts_option_setup);
  901. static int configure_kgdbts(void)
  902. {
  903. int err = 0;
  904. if (!strlen(config) || isspace(config[0]))
  905. goto noconfig;
  906. err = kgdbts_option_setup(config);
  907. if (err)
  908. goto noconfig;
  909. final_ack = 0;
  910. run_plant_and_detach_test(1);
  911. err = kgdb_register_io_module(&kgdbts_io_ops);
  912. if (err) {
  913. configured = 0;
  914. return err;
  915. }
  916. configured = 1;
  917. kgdbts_run_tests();
  918. return err;
  919. noconfig:
  920. config[0] = 0;
  921. configured = 0;
  922. return err;
  923. }
  924. static int __init init_kgdbts(void)
  925. {
  926. /* Already configured? */
  927. if (configured == 1)
  928. return 0;
  929. return configure_kgdbts();
  930. }
  931. static void cleanup_kgdbts(void)
  932. {
  933. if (configured == 1)
  934. kgdb_unregister_io_module(&kgdbts_io_ops);
  935. }
  936. static int kgdbts_get_char(void)
  937. {
  938. int val = 0;
  939. if (ts.run_test)
  940. val = ts.run_test(1, 0);
  941. return val;
  942. }
  943. static void kgdbts_put_char(u8 chr)
  944. {
  945. if (ts.run_test)
  946. ts.run_test(0, chr);
  947. }
  948. static int param_set_kgdbts_var(const char *kmessage, struct kernel_param *kp)
  949. {
  950. int len = strlen(kmessage);
  951. if (len >= MAX_CONFIG_LEN) {
  952. printk(KERN_ERR "kgdbts: config string too long\n");
  953. return -ENOSPC;
  954. }
  955. /* Only copy in the string if the init function has not run yet */
  956. if (configured < 0) {
  957. strcpy(config, kmessage);
  958. return 0;
  959. }
  960. if (kgdb_connected) {
  961. printk(KERN_ERR
  962. "kgdbts: Cannot reconfigure while KGDB is connected.\n");
  963. return -EBUSY;
  964. }
  965. strcpy(config, kmessage);
  966. /* Chop out \n char as a result of echo */
  967. if (config[len - 1] == '\n')
  968. config[len - 1] = '\0';
  969. if (configured == 1)
  970. cleanup_kgdbts();
  971. /* Go and configure with the new params. */
  972. return configure_kgdbts();
  973. }
  974. static void kgdbts_pre_exp_handler(void)
  975. {
  976. /* Increment the module count when the debugger is active */
  977. if (!kgdb_connected)
  978. try_module_get(THIS_MODULE);
  979. }
  980. static void kgdbts_post_exp_handler(void)
  981. {
  982. /* decrement the module count when the debugger detaches */
  983. if (!kgdb_connected)
  984. module_put(THIS_MODULE);
  985. }
  986. static struct kgdb_io kgdbts_io_ops = {
  987. .name = "kgdbts",
  988. .read_char = kgdbts_get_char,
  989. .write_char = kgdbts_put_char,
  990. .pre_exception = kgdbts_pre_exp_handler,
  991. .post_exception = kgdbts_post_exp_handler,
  992. };
  993. module_init(init_kgdbts);
  994. module_exit(cleanup_kgdbts);
  995. module_param_call(kgdbts, param_set_kgdbts_var, param_get_string, &kps, 0644);
  996. MODULE_PARM_DESC(kgdbts, "<A|V1|V2>[F#|S#][N#]");
  997. MODULE_DESCRIPTION("KGDB Test Suite");
  998. MODULE_LICENSE("GPL");
  999. MODULE_AUTHOR("Wind River Systems, Inc.");