kgdbts.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113
  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. unsigned long ip;
  259. int offset = 0;
  260. kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
  261. NUMREGBYTES);
  262. gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
  263. ip = instruction_pointer(&kgdbts_regs);
  264. v2printk("Stopped at IP: %lx\n", ip);
  265. #ifdef GDB_ADJUSTS_BREAK_OFFSET
  266. /* On some arches, a breakpoint stop requires it to be decremented */
  267. if (addr + BREAK_INSTR_SIZE == ip)
  268. offset = -BREAK_INSTR_SIZE;
  269. #endif
  270. if (strcmp(arg, "silent") && ip + offset != addr) {
  271. eprintk("kgdbts: BP mismatch %lx expected %lx\n",
  272. ip + offset, addr);
  273. return 1;
  274. }
  275. /* Readjust the instruction pointer if needed */
  276. instruction_pointer_set(&kgdbts_regs, ip + offset);
  277. return 0;
  278. }
  279. static int check_single_step(char *put_str, char *arg)
  280. {
  281. unsigned long addr = lookup_addr(arg);
  282. /*
  283. * From an arch indepent point of view the instruction pointer
  284. * should be on a different instruction
  285. */
  286. kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
  287. NUMREGBYTES);
  288. gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
  289. v2printk("Singlestep stopped at IP: %lx\n",
  290. instruction_pointer(&kgdbts_regs));
  291. if (instruction_pointer(&kgdbts_regs) == addr) {
  292. eprintk("kgdbts: SingleStep failed at %lx\n",
  293. instruction_pointer(&kgdbts_regs));
  294. return 1;
  295. }
  296. return 0;
  297. }
  298. static void write_regs(char *arg)
  299. {
  300. memset(scratch_buf, 0, sizeof(scratch_buf));
  301. scratch_buf[0] = 'G';
  302. pt_regs_to_gdb_regs(kgdbts_gdb_regs, &kgdbts_regs);
  303. kgdb_mem2hex((char *)kgdbts_gdb_regs, &scratch_buf[1], NUMREGBYTES);
  304. fill_get_buf(scratch_buf);
  305. }
  306. static void skip_back_repeat_test(char *arg)
  307. {
  308. int go_back = simple_strtol(arg, NULL, 10);
  309. repeat_test--;
  310. if (repeat_test <= 0)
  311. ts.idx++;
  312. else
  313. ts.idx -= go_back;
  314. fill_get_buf(ts.tst[ts.idx].get);
  315. }
  316. static int got_break(char *put_str, char *arg)
  317. {
  318. test_complete = 1;
  319. if (!strncmp(put_str+1, arg, 2)) {
  320. if (!strncmp(arg, "T0", 2))
  321. test_complete = 2;
  322. return 0;
  323. }
  324. return 1;
  325. }
  326. static void emul_sstep_get(char *arg)
  327. {
  328. if (!arch_needs_sstep_emulation) {
  329. fill_get_buf(arg);
  330. return;
  331. }
  332. switch (sstep_state) {
  333. case 0:
  334. v2printk("Emulate single step\n");
  335. /* Start by looking at the current PC */
  336. fill_get_buf("g");
  337. break;
  338. case 1:
  339. /* set breakpoint */
  340. break_helper("Z0", NULL, sstep_addr);
  341. break;
  342. case 2:
  343. /* Continue */
  344. fill_get_buf("c");
  345. break;
  346. case 3:
  347. /* Clear breakpoint */
  348. break_helper("z0", NULL, sstep_addr);
  349. break;
  350. default:
  351. eprintk("kgdbts: ERROR failed sstep get emulation\n");
  352. }
  353. sstep_state++;
  354. }
  355. static int emul_sstep_put(char *put_str, char *arg)
  356. {
  357. if (!arch_needs_sstep_emulation) {
  358. if (!strncmp(put_str+1, arg, 2))
  359. return 0;
  360. return 1;
  361. }
  362. switch (sstep_state) {
  363. case 1:
  364. /* validate the "g" packet to get the IP */
  365. kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
  366. NUMREGBYTES);
  367. gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
  368. v2printk("Stopped at IP: %lx\n",
  369. instruction_pointer(&kgdbts_regs));
  370. /* Want to stop at IP + break instruction size by default */
  371. sstep_addr = instruction_pointer(&kgdbts_regs) +
  372. BREAK_INSTR_SIZE;
  373. break;
  374. case 2:
  375. if (strncmp(put_str, "$OK", 3)) {
  376. eprintk("kgdbts: failed sstep break set\n");
  377. return 1;
  378. }
  379. break;
  380. case 3:
  381. if (strncmp(put_str, "$T0", 3)) {
  382. eprintk("kgdbts: failed continue sstep\n");
  383. return 1;
  384. }
  385. break;
  386. case 4:
  387. if (strncmp(put_str, "$OK", 3)) {
  388. eprintk("kgdbts: failed sstep break unset\n");
  389. return 1;
  390. }
  391. /* Single step is complete so continue on! */
  392. sstep_state = 0;
  393. return 0;
  394. default:
  395. eprintk("kgdbts: ERROR failed sstep put emulation\n");
  396. }
  397. /* Continue on the same test line until emulation is complete */
  398. ts.idx--;
  399. return 0;
  400. }
  401. static int final_ack_set(char *put_str, char *arg)
  402. {
  403. if (strncmp(put_str+1, arg, 2))
  404. return 1;
  405. final_ack = 1;
  406. return 0;
  407. }
  408. /*
  409. * Test to plant a breakpoint and detach, which should clear out the
  410. * breakpoint and restore the original instruction.
  411. */
  412. static struct test_struct plant_and_detach_test[] = {
  413. { "?", "S0*" }, /* Clear break points */
  414. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  415. { "D", "OK" }, /* Detach */
  416. { "", "" },
  417. };
  418. /*
  419. * Simple test to write in a software breakpoint, check for the
  420. * correct stop location and detach.
  421. */
  422. static struct test_struct sw_breakpoint_test[] = {
  423. { "?", "S0*" }, /* Clear break points */
  424. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  425. { "c", "T0*", }, /* Continue */
  426. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  427. { "write", "OK", write_regs },
  428. { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */
  429. { "D", "OK" }, /* Detach */
  430. { "D", "OK", NULL, got_break }, /* On success we made it here */
  431. { "", "" },
  432. };
  433. /*
  434. * Test a known bad memory read location to test the fault handler and
  435. * read bytes 1-8 at the bad address
  436. */
  437. static struct test_struct bad_read_test[] = {
  438. { "?", "S0*" }, /* Clear break points */
  439. { "m0,1", "E*" }, /* read 1 byte at address 1 */
  440. { "m0,2", "E*" }, /* read 1 byte at address 2 */
  441. { "m0,3", "E*" }, /* read 1 byte at address 3 */
  442. { "m0,4", "E*" }, /* read 1 byte at address 4 */
  443. { "m0,5", "E*" }, /* read 1 byte at address 5 */
  444. { "m0,6", "E*" }, /* read 1 byte at address 6 */
  445. { "m0,7", "E*" }, /* read 1 byte at address 7 */
  446. { "m0,8", "E*" }, /* read 1 byte at address 8 */
  447. { "D", "OK" }, /* Detach which removes all breakpoints and continues */
  448. { "", "" },
  449. };
  450. /*
  451. * Test for hitting a breakpoint, remove it, single step, plant it
  452. * again and detach.
  453. */
  454. static struct test_struct singlestep_break_test[] = {
  455. { "?", "S0*" }, /* Clear break points */
  456. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  457. { "c", "T0*", }, /* Continue */
  458. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  459. { "write", "OK", write_regs }, /* Write registers */
  460. { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */
  461. { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
  462. { "g", "kgdbts_break_test", NULL, check_single_step },
  463. { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
  464. { "c", "T0*", }, /* Continue */
  465. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  466. { "write", "OK", write_regs }, /* Write registers */
  467. { "D", "OK" }, /* Remove all breakpoints and continues */
  468. { "", "" },
  469. };
  470. /*
  471. * Test for hitting a breakpoint at do_fork for what ever the number
  472. * of iterations required by the variable repeat_test.
  473. */
  474. static struct test_struct do_fork_test[] = {
  475. { "?", "S0*" }, /* Clear break points */
  476. { "do_fork", "OK", sw_break, }, /* set sw breakpoint */
  477. { "c", "T0*", }, /* Continue */
  478. { "g", "do_fork", NULL, check_and_rewind_pc }, /* check location */
  479. { "write", "OK", write_regs }, /* Write registers */
  480. { "do_fork", "OK", sw_rem_break }, /*remove breakpoint */
  481. { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
  482. { "g", "do_fork", NULL, check_single_step },
  483. { "do_fork", "OK", sw_break, }, /* set sw breakpoint */
  484. { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */
  485. { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */
  486. { "", "" },
  487. };
  488. /* Test for hitting a breakpoint at sys_open for what ever the number
  489. * of iterations required by the variable repeat_test.
  490. */
  491. static struct test_struct sys_open_test[] = {
  492. { "?", "S0*" }, /* Clear break points */
  493. { "sys_open", "OK", sw_break, }, /* set sw breakpoint */
  494. { "c", "T0*", }, /* Continue */
  495. { "g", "sys_open", NULL, check_and_rewind_pc }, /* check location */
  496. { "write", "OK", write_regs }, /* Write registers */
  497. { "sys_open", "OK", sw_rem_break }, /*remove breakpoint */
  498. { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
  499. { "g", "sys_open", NULL, check_single_step },
  500. { "sys_open", "OK", sw_break, }, /* set sw breakpoint */
  501. { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */
  502. { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */
  503. { "", "" },
  504. };
  505. /*
  506. * Test for hitting a simple hw breakpoint
  507. */
  508. static struct test_struct hw_breakpoint_test[] = {
  509. { "?", "S0*" }, /* Clear break points */
  510. { "kgdbts_break_test", "OK", hw_break, }, /* set hw breakpoint */
  511. { "c", "T0*", }, /* Continue */
  512. { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
  513. { "write", "OK", write_regs },
  514. { "kgdbts_break_test", "OK", hw_rem_break }, /*remove breakpoint */
  515. { "D", "OK" }, /* Detach */
  516. { "D", "OK", NULL, got_break }, /* On success we made it here */
  517. { "", "" },
  518. };
  519. /*
  520. * Test for hitting a hw write breakpoint
  521. */
  522. static struct test_struct hw_write_break_test[] = {
  523. { "?", "S0*" }, /* Clear break points */
  524. { "hw_break_val", "OK", hw_write_break, }, /* set hw breakpoint */
  525. { "c", "T0*", NULL, got_break }, /* Continue */
  526. { "g", "silent", NULL, check_and_rewind_pc },
  527. { "write", "OK", write_regs },
  528. { "hw_break_val", "OK", hw_rem_write_break }, /*remove breakpoint */
  529. { "D", "OK" }, /* Detach */
  530. { "D", "OK", NULL, got_break }, /* On success we made it here */
  531. { "", "" },
  532. };
  533. /*
  534. * Test for hitting a hw access breakpoint
  535. */
  536. static struct test_struct hw_access_break_test[] = {
  537. { "?", "S0*" }, /* Clear break points */
  538. { "hw_break_val", "OK", hw_access_break, }, /* set hw breakpoint */
  539. { "c", "T0*", NULL, got_break }, /* Continue */
  540. { "g", "silent", NULL, check_and_rewind_pc },
  541. { "write", "OK", write_regs },
  542. { "hw_break_val", "OK", hw_rem_access_break }, /*remove breakpoint */
  543. { "D", "OK" }, /* Detach */
  544. { "D", "OK", NULL, got_break }, /* On success we made it here */
  545. { "", "" },
  546. };
  547. /*
  548. * Test for hitting a hw access breakpoint
  549. */
  550. static struct test_struct nmi_sleep_test[] = {
  551. { "?", "S0*" }, /* Clear break points */
  552. { "c", "T0*", NULL, got_break }, /* Continue */
  553. { "D", "OK" }, /* Detach */
  554. { "D", "OK", NULL, got_break }, /* On success we made it here */
  555. { "", "" },
  556. };
  557. static void fill_get_buf(char *buf)
  558. {
  559. unsigned char checksum = 0;
  560. int count = 0;
  561. char ch;
  562. strcpy(get_buf, "$");
  563. strcat(get_buf, buf);
  564. while ((ch = buf[count])) {
  565. checksum += ch;
  566. count++;
  567. }
  568. strcat(get_buf, "#");
  569. get_buf[count + 2] = hex_asc_hi(checksum);
  570. get_buf[count + 3] = hex_asc_lo(checksum);
  571. get_buf[count + 4] = '\0';
  572. v2printk("get%i: %s\n", ts.idx, get_buf);
  573. }
  574. static int validate_simple_test(char *put_str)
  575. {
  576. char *chk_str;
  577. if (ts.tst[ts.idx].put_handler)
  578. return ts.tst[ts.idx].put_handler(put_str,
  579. ts.tst[ts.idx].put);
  580. chk_str = ts.tst[ts.idx].put;
  581. if (*put_str == '$')
  582. put_str++;
  583. while (*chk_str != '\0' && *put_str != '\0') {
  584. /* If someone does a * to match the rest of the string, allow
  585. * it, or stop if the received string is complete.
  586. */
  587. if (*put_str == '#' || *chk_str == '*')
  588. return 0;
  589. if (*put_str != *chk_str)
  590. return 1;
  591. chk_str++;
  592. put_str++;
  593. }
  594. if (*chk_str == '\0' && (*put_str == '\0' || *put_str == '#'))
  595. return 0;
  596. return 1;
  597. }
  598. static int run_simple_test(int is_get_char, int chr)
  599. {
  600. int ret = 0;
  601. if (is_get_char) {
  602. /* Send an ACK on the get if a prior put completed and set the
  603. * send ack variable
  604. */
  605. if (send_ack) {
  606. send_ack = 0;
  607. return '+';
  608. }
  609. /* On the first get char, fill the transmit buffer and then
  610. * take from the get_string.
  611. */
  612. if (get_buf_cnt == 0) {
  613. if (ts.tst[ts.idx].get_handler)
  614. ts.tst[ts.idx].get_handler(ts.tst[ts.idx].get);
  615. else
  616. fill_get_buf(ts.tst[ts.idx].get);
  617. }
  618. if (get_buf[get_buf_cnt] == '\0') {
  619. eprintk("kgdbts: ERROR GET: EOB on '%s' at %i\n",
  620. ts.name, ts.idx);
  621. get_buf_cnt = 0;
  622. fill_get_buf("D");
  623. }
  624. ret = get_buf[get_buf_cnt];
  625. get_buf_cnt++;
  626. return ret;
  627. }
  628. /* This callback is a put char which is when kgdb sends data to
  629. * this I/O module.
  630. */
  631. if (ts.tst[ts.idx].get[0] == '\0' &&
  632. ts.tst[ts.idx].put[0] == '\0') {
  633. eprintk("kgdbts: ERROR: beyond end of test on"
  634. " '%s' line %i\n", ts.name, ts.idx);
  635. return 0;
  636. }
  637. if (put_buf_cnt >= BUFMAX) {
  638. eprintk("kgdbts: ERROR: put buffer overflow on"
  639. " '%s' line %i\n", ts.name, ts.idx);
  640. put_buf_cnt = 0;
  641. return 0;
  642. }
  643. /* Ignore everything until the first valid packet start '$' */
  644. if (put_buf_cnt == 0 && chr != '$')
  645. return 0;
  646. put_buf[put_buf_cnt] = chr;
  647. put_buf_cnt++;
  648. /* End of packet == #XX so look for the '#' */
  649. if (put_buf_cnt > 3 && put_buf[put_buf_cnt - 3] == '#') {
  650. if (put_buf_cnt >= BUFMAX) {
  651. eprintk("kgdbts: ERROR: put buffer overflow on"
  652. " '%s' line %i\n", ts.name, ts.idx);
  653. put_buf_cnt = 0;
  654. return 0;
  655. }
  656. put_buf[put_buf_cnt] = '\0';
  657. v2printk("put%i: %s\n", ts.idx, put_buf);
  658. /* Trigger check here */
  659. if (ts.validate_put && ts.validate_put(put_buf)) {
  660. eprintk("kgdbts: ERROR PUT: end of test "
  661. "buffer on '%s' line %i expected %s got %s\n",
  662. ts.name, ts.idx, ts.tst[ts.idx].put, put_buf);
  663. }
  664. ts.idx++;
  665. put_buf_cnt = 0;
  666. get_buf_cnt = 0;
  667. send_ack = 1;
  668. }
  669. return 0;
  670. }
  671. static void init_simple_test(void)
  672. {
  673. memset(&ts, 0, sizeof(ts));
  674. ts.run_test = run_simple_test;
  675. ts.validate_put = validate_simple_test;
  676. }
  677. static void run_plant_and_detach_test(int is_early)
  678. {
  679. char before[BREAK_INSTR_SIZE];
  680. char after[BREAK_INSTR_SIZE];
  681. probe_kernel_read(before, (char *)kgdbts_break_test,
  682. BREAK_INSTR_SIZE);
  683. init_simple_test();
  684. ts.tst = plant_and_detach_test;
  685. ts.name = "plant_and_detach_test";
  686. /* Activate test with initial breakpoint */
  687. if (!is_early)
  688. kgdb_breakpoint();
  689. probe_kernel_read(after, (char *)kgdbts_break_test,
  690. BREAK_INSTR_SIZE);
  691. if (memcmp(before, after, BREAK_INSTR_SIZE)) {
  692. printk(KERN_CRIT "kgdbts: ERROR kgdb corrupted memory\n");
  693. panic("kgdb memory corruption");
  694. }
  695. /* complete the detach test */
  696. if (!is_early)
  697. kgdbts_break_test();
  698. }
  699. static void run_breakpoint_test(int is_hw_breakpoint)
  700. {
  701. test_complete = 0;
  702. init_simple_test();
  703. if (is_hw_breakpoint) {
  704. ts.tst = hw_breakpoint_test;
  705. ts.name = "hw_breakpoint_test";
  706. } else {
  707. ts.tst = sw_breakpoint_test;
  708. ts.name = "sw_breakpoint_test";
  709. }
  710. /* Activate test with initial breakpoint */
  711. kgdb_breakpoint();
  712. /* run code with the break point in it */
  713. kgdbts_break_test();
  714. kgdb_breakpoint();
  715. if (test_complete)
  716. return;
  717. eprintk("kgdbts: ERROR %s test failed\n", ts.name);
  718. if (is_hw_breakpoint)
  719. hwbreaks_ok = 0;
  720. }
  721. static void run_hw_break_test(int is_write_test)
  722. {
  723. test_complete = 0;
  724. init_simple_test();
  725. if (is_write_test) {
  726. ts.tst = hw_write_break_test;
  727. ts.name = "hw_write_break_test";
  728. } else {
  729. ts.tst = hw_access_break_test;
  730. ts.name = "hw_access_break_test";
  731. }
  732. /* Activate test with initial breakpoint */
  733. kgdb_breakpoint();
  734. hw_break_val_access();
  735. if (is_write_test) {
  736. if (test_complete == 2) {
  737. eprintk("kgdbts: ERROR %s broke on access\n",
  738. ts.name);
  739. hwbreaks_ok = 0;
  740. }
  741. hw_break_val_write();
  742. }
  743. kgdb_breakpoint();
  744. if (test_complete == 1)
  745. return;
  746. eprintk("kgdbts: ERROR %s test failed\n", ts.name);
  747. hwbreaks_ok = 0;
  748. }
  749. static void run_nmi_sleep_test(int nmi_sleep)
  750. {
  751. unsigned long flags;
  752. init_simple_test();
  753. ts.tst = nmi_sleep_test;
  754. ts.name = "nmi_sleep_test";
  755. /* Activate test with initial breakpoint */
  756. kgdb_breakpoint();
  757. local_irq_save(flags);
  758. mdelay(nmi_sleep*1000);
  759. touch_nmi_watchdog();
  760. local_irq_restore(flags);
  761. if (test_complete != 2)
  762. eprintk("kgdbts: ERROR nmi_test did not hit nmi\n");
  763. kgdb_breakpoint();
  764. if (test_complete == 1)
  765. return;
  766. eprintk("kgdbts: ERROR %s test failed\n", ts.name);
  767. }
  768. static void run_bad_read_test(void)
  769. {
  770. init_simple_test();
  771. ts.tst = bad_read_test;
  772. ts.name = "bad_read_test";
  773. /* Activate test with initial breakpoint */
  774. kgdb_breakpoint();
  775. }
  776. static void run_do_fork_test(void)
  777. {
  778. init_simple_test();
  779. ts.tst = do_fork_test;
  780. ts.name = "do_fork_test";
  781. /* Activate test with initial breakpoint */
  782. kgdb_breakpoint();
  783. }
  784. static void run_sys_open_test(void)
  785. {
  786. init_simple_test();
  787. ts.tst = sys_open_test;
  788. ts.name = "sys_open_test";
  789. /* Activate test with initial breakpoint */
  790. kgdb_breakpoint();
  791. }
  792. static void run_singlestep_break_test(void)
  793. {
  794. init_simple_test();
  795. ts.tst = singlestep_break_test;
  796. ts.name = "singlestep_breakpoint_test";
  797. /* Activate test with initial breakpoint */
  798. kgdb_breakpoint();
  799. kgdbts_break_test();
  800. kgdbts_break_test();
  801. }
  802. static void kgdbts_run_tests(void)
  803. {
  804. char *ptr;
  805. int fork_test = 0;
  806. int do_sys_open_test = 0;
  807. int sstep_test = 1000;
  808. int nmi_sleep = 0;
  809. int i;
  810. ptr = strchr(config, 'F');
  811. if (ptr)
  812. fork_test = simple_strtol(ptr + 1, NULL, 10);
  813. ptr = strchr(config, 'S');
  814. if (ptr)
  815. do_sys_open_test = simple_strtol(ptr + 1, NULL, 10);
  816. ptr = strchr(config, 'N');
  817. if (ptr)
  818. nmi_sleep = simple_strtol(ptr+1, NULL, 10);
  819. ptr = strchr(config, 'I');
  820. if (ptr)
  821. sstep_test = simple_strtol(ptr+1, NULL, 10);
  822. /* required internal KGDB tests */
  823. v1printk("kgdbts:RUN plant and detach test\n");
  824. run_plant_and_detach_test(0);
  825. v1printk("kgdbts:RUN sw breakpoint test\n");
  826. run_breakpoint_test(0);
  827. v1printk("kgdbts:RUN bad memory access test\n");
  828. run_bad_read_test();
  829. v1printk("kgdbts:RUN singlestep test %i iterations\n", sstep_test);
  830. for (i = 0; i < sstep_test; i++) {
  831. run_singlestep_break_test();
  832. if (i % 100 == 0)
  833. v1printk("kgdbts:RUN singlestep [%i/%i]\n",
  834. i, sstep_test);
  835. }
  836. /* ===Optional tests=== */
  837. /* All HW break point tests */
  838. if (arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT) {
  839. hwbreaks_ok = 1;
  840. v1printk("kgdbts:RUN hw breakpoint test\n");
  841. run_breakpoint_test(1);
  842. v1printk("kgdbts:RUN hw write breakpoint test\n");
  843. run_hw_break_test(1);
  844. v1printk("kgdbts:RUN access write breakpoint test\n");
  845. run_hw_break_test(0);
  846. }
  847. if (nmi_sleep) {
  848. v1printk("kgdbts:RUN NMI sleep %i seconds test\n", nmi_sleep);
  849. run_nmi_sleep_test(nmi_sleep);
  850. }
  851. #ifdef CONFIG_DEBUG_RODATA
  852. /* Until there is an api to write to read-only text segments, use
  853. * HW breakpoints for the remainder of any tests, else print a
  854. * failure message if hw breakpoints do not work.
  855. */
  856. if (!(arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT && hwbreaks_ok)) {
  857. eprintk("kgdbts: HW breakpoints do not work,"
  858. "skipping remaining tests\n");
  859. return;
  860. }
  861. force_hwbrks = 1;
  862. #endif /* CONFIG_DEBUG_RODATA */
  863. /* If the do_fork test is run it will be the last test that is
  864. * executed because a kernel thread will be spawned at the very
  865. * end to unregister the debug hooks.
  866. */
  867. if (fork_test) {
  868. repeat_test = fork_test;
  869. printk(KERN_INFO "kgdbts:RUN do_fork for %i breakpoints\n",
  870. repeat_test);
  871. kthread_run(kgdbts_unreg_thread, NULL, "kgdbts_unreg");
  872. run_do_fork_test();
  873. return;
  874. }
  875. /* If the sys_open test is run it will be the last test that is
  876. * executed because a kernel thread will be spawned at the very
  877. * end to unregister the debug hooks.
  878. */
  879. if (do_sys_open_test) {
  880. repeat_test = do_sys_open_test;
  881. printk(KERN_INFO "kgdbts:RUN sys_open for %i breakpoints\n",
  882. repeat_test);
  883. kthread_run(kgdbts_unreg_thread, NULL, "kgdbts_unreg");
  884. run_sys_open_test();
  885. return;
  886. }
  887. /* Shutdown and unregister */
  888. kgdb_unregister_io_module(&kgdbts_io_ops);
  889. configured = 0;
  890. }
  891. static int kgdbts_option_setup(char *opt)
  892. {
  893. if (strlen(opt) >= MAX_CONFIG_LEN) {
  894. printk(KERN_ERR "kgdbts: config string too long\n");
  895. return -ENOSPC;
  896. }
  897. strcpy(config, opt);
  898. verbose = 0;
  899. if (strstr(config, "V1"))
  900. verbose = 1;
  901. if (strstr(config, "V2"))
  902. verbose = 2;
  903. return 0;
  904. }
  905. __setup("kgdbts=", kgdbts_option_setup);
  906. static int configure_kgdbts(void)
  907. {
  908. int err = 0;
  909. if (!strlen(config) || isspace(config[0]))
  910. goto noconfig;
  911. err = kgdbts_option_setup(config);
  912. if (err)
  913. goto noconfig;
  914. final_ack = 0;
  915. run_plant_and_detach_test(1);
  916. err = kgdb_register_io_module(&kgdbts_io_ops);
  917. if (err) {
  918. configured = 0;
  919. return err;
  920. }
  921. configured = 1;
  922. kgdbts_run_tests();
  923. return err;
  924. noconfig:
  925. config[0] = 0;
  926. configured = 0;
  927. return err;
  928. }
  929. static int __init init_kgdbts(void)
  930. {
  931. /* Already configured? */
  932. if (configured == 1)
  933. return 0;
  934. return configure_kgdbts();
  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 (configured == 1) {
  961. printk(KERN_ERR "kgdbts: ERROR: Already configured and running.\n");
  962. return -EBUSY;
  963. }
  964. strcpy(config, kmessage);
  965. /* Chop out \n char as a result of echo */
  966. if (config[len - 1] == '\n')
  967. config[len - 1] = '\0';
  968. /* Go and configure with the new params. */
  969. return configure_kgdbts();
  970. }
  971. static void kgdbts_pre_exp_handler(void)
  972. {
  973. /* Increment the module count when the debugger is active */
  974. if (!kgdb_connected)
  975. try_module_get(THIS_MODULE);
  976. }
  977. static void kgdbts_post_exp_handler(void)
  978. {
  979. /* decrement the module count when the debugger detaches */
  980. if (!kgdb_connected)
  981. module_put(THIS_MODULE);
  982. }
  983. static struct kgdb_io kgdbts_io_ops = {
  984. .name = "kgdbts",
  985. .read_char = kgdbts_get_char,
  986. .write_char = kgdbts_put_char,
  987. .pre_exception = kgdbts_pre_exp_handler,
  988. .post_exception = kgdbts_post_exp_handler,
  989. };
  990. module_init(init_kgdbts);
  991. module_param_call(kgdbts, param_set_kgdbts_var, param_get_string, &kps, 0644);
  992. MODULE_PARM_DESC(kgdbts, "<A|V1|V2>[F#|S#][N#]");
  993. MODULE_DESCRIPTION("KGDB Test Suite");
  994. MODULE_LICENSE("GPL");
  995. MODULE_AUTHOR("Wind River Systems, Inc.");