1 // SPDX-License-Identifier: GPL-2.0-only
3 * kgdbts is a test suite for kgdb for the sole purpose of validating
4 * that key pieces of the kgdb internals are working properly such as
5 * HW/SW breakpoints, single stepping, and NMI.
7 * Created by: Jason Wessel <jason.wessel@windriver.com>
9 * Copyright (c) 2008 Wind River Systems, Inc.
11 /* Information about the kgdb test suite.
12 * -------------------------------------
14 * The kgdb test suite is designed as a KGDB I/O module which
15 * simulates the communications that a debugger would have with kgdb.
16 * The tests are broken up in to a line by line and referenced here as
17 * a "get" which is kgdb requesting input and "put" which is kgdb
20 * The kgdb suite can be invoked from the kernel command line
21 * arguments system or executed dynamically at run time. The test
22 * suite uses the variable "kgdbts" to obtain the information about
23 * which tests to run and to configure the verbosity level. The
24 * following are the various characters you can use with the kgdbts=
27 * When using the "kgdbts=" you only choose one of the following core
29 * A = Run all the core tests silently
30 * V1 = Run all the core tests with minimal output
31 * V2 = Run all the core tests in debug mode
33 * You can also specify optional tests:
34 * N## = Go to sleep with interrupts of for ## seconds
35 * to test the HW NMI watchdog
36 * F## = Break at kernel_clone for ## iterations
37 * S## = Break at sys_open for ## iterations
38 * I## = Run the single step test ## iterations
40 * NOTE: that the kernel_clone and sys_open tests are mutually exclusive.
42 * To invoke the kgdb test suite from boot you use a kernel start
43 * argument as follows:
45 * Or if you wanted to perform the NMI test for 6 seconds and kernel_clone
46 * test for 100 forks, you could use:
47 * kgdbts=V1N6F100 kgdbwait
49 * The test suite can also be invoked at run time with:
50 * echo kgdbts=V1N6F100 > /sys/module/kgdbts/parameters/kgdbts
51 * Or as another example:
52 * echo kgdbts=V2 > /sys/module/kgdbts/parameters/kgdbts
54 * When developing a new kgdb arch specific implementation or
55 * using these tests for the purpose of regression testing,
56 * several invocations are required.
58 * 1) Boot with the test suite enabled by using the kernel arguments
59 * "kgdbts=V1F100 kgdbwait"
60 * ## If kgdb arch specific implementation has NMI use
63 * 2) After the system boot run the basic test.
64 * echo kgdbts=V1 > /sys/module/kgdbts/parameters/kgdbts
66 * 3) Run the concurrency tests. It is best to use n+1
67 * while loops where n is the number of cpus you have
68 * in your system. The example below uses only two
71 * ## This tests break points on sys_open
72 * while [ 1 ] ; do find / > /dev/null 2>&1 ; done &
73 * while [ 1 ] ; do find / > /dev/null 2>&1 ; done &
74 * echo kgdbts=V1S10000 > /sys/module/kgdbts/parameters/kgdbts
75 * fg # and hit control-c
76 * fg # and hit control-c
77 * ## This tests break points on kernel_clone
78 * while [ 1 ] ; do date > /dev/null ; done &
79 * while [ 1 ] ; do date > /dev/null ; done &
80 * echo kgdbts=V1F1000 > /sys/module/kgdbts/parameters/kgdbts
81 * fg # and hit control-c
85 #include <linux/kernel.h>
86 #include <linux/kgdb.h>
87 #include <linux/ctype.h>
88 #include <linux/uaccess.h>
89 #include <linux/syscalls.h>
90 #include <linux/nmi.h>
91 #include <linux/delay.h>
92 #include <linux/kthread.h>
93 #include <linux/module.h>
94 #include <linux/sched/task.h>
95 #include <linux/kallsyms.h>
97 #include <asm/sections.h>
99 #define v1printk(a...) do { \
101 printk(KERN_INFO a); \
103 #define v2printk(a...) do { \
105 printk(KERN_INFO a); \
107 touch_nmi_watchdog(); \
109 #define eprintk(a...) do { \
110 printk(KERN_ERR a); \
113 #define MAX_CONFIG_LEN 40
115 static struct kgdb_io kgdbts_io_ops
;
116 static char get_buf
[BUFMAX
];
117 static int get_buf_cnt
;
118 static char put_buf
[BUFMAX
];
119 static int put_buf_cnt
;
120 static char scratch_buf
[BUFMAX
];
122 static int repeat_test
;
123 static int test_complete
;
125 static int final_ack
;
126 static int force_hwbrks
;
127 static int hwbreaks_ok
;
128 static int hw_break_val
;
129 static int hw_break_val2
;
130 static int cont_instead_of_sstep
;
131 static unsigned long cont_thread_id
;
132 static unsigned long sstep_thread_id
;
133 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_SPARC)
134 static int arch_needs_sstep_emulation
= 1;
136 static int arch_needs_sstep_emulation
;
138 static unsigned long cont_addr
;
139 static unsigned long sstep_addr
;
140 static int restart_from_top_after_write
;
141 static int sstep_state
;
143 /* Storage for the registers, in GDB format. */
144 static unsigned long kgdbts_gdb_regs
[(NUMREGBYTES
+
145 sizeof(unsigned long) - 1) /
146 sizeof(unsigned long)];
147 static struct pt_regs kgdbts_regs
;
149 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
150 static int configured
= -1;
152 #ifdef CONFIG_KGDB_TESTS_BOOT_STRING
153 static char config
[MAX_CONFIG_LEN
] = CONFIG_KGDB_TESTS_BOOT_STRING
;
155 static char config
[MAX_CONFIG_LEN
];
157 static struct kparam_string kps
= {
159 .maxlen
= MAX_CONFIG_LEN
,
162 static void fill_get_buf(char *buf
);
167 void (*get_handler
)(char *);
168 int (*put_handler
)(char *, char *);
173 struct test_struct
*tst
;
175 int (*run_test
) (int, int);
176 int (*validate_put
) (char *);
179 static struct test_state ts
;
181 static int kgdbts_unreg_thread(void *ptr
)
183 /* Wait until the tests are complete and then ungresiter the I/O
187 msleep_interruptible(1500);
188 /* Pause for any other threads to exit after final ack. */
189 msleep_interruptible(1000);
191 kgdb_unregister_io_module(&kgdbts_io_ops
);
197 /* This is noinline such that it can be used for a single location to
200 static noinline
void kgdbts_break_test(void)
202 v2printk("kgdbts: breakpoint complete\n");
206 * This is a cached wrapper for kallsyms_lookup_name().
208 * The cache is a big win for several tests. For example it more the doubles
209 * the cycles per second during the sys_open test. This is not theoretic,
210 * the performance improvement shows up at human scale, especially when
211 * testing using emulators.
213 * Obviously neither re-entrant nor thread-safe but that is OK since it
214 * can only be called from the debug trap (and therefore all other CPUs
217 static unsigned long lookup_addr(char *arg
)
219 static char cached_arg
[KSYM_NAME_LEN
];
220 static unsigned long cached_addr
;
222 if (strcmp(arg
, cached_arg
)) {
223 strscpy(cached_arg
, arg
, KSYM_NAME_LEN
);
224 cached_addr
= kallsyms_lookup_name(arg
);
227 return (unsigned long)dereference_function_descriptor(
228 (void *)cached_addr
);
231 static void break_helper(char *bp_type
, char *arg
, unsigned long vaddr
)
236 addr
= lookup_addr(arg
);
240 sprintf(scratch_buf
, "%s,%lx,%i", bp_type
, addr
,
242 fill_get_buf(scratch_buf
);
245 static void sw_break(char *arg
)
247 break_helper(force_hwbrks
? "Z1" : "Z0", arg
, 0);
250 static void sw_rem_break(char *arg
)
252 break_helper(force_hwbrks
? "z1" : "z0", arg
, 0);
255 static void hw_break(char *arg
)
257 break_helper("Z1", arg
, 0);
260 static void hw_rem_break(char *arg
)
262 break_helper("z1", arg
, 0);
265 static void hw_write_break(char *arg
)
267 break_helper("Z2", arg
, 0);
270 static void hw_rem_write_break(char *arg
)
272 break_helper("z2", arg
, 0);
275 static void hw_access_break(char *arg
)
277 break_helper("Z4", arg
, 0);
280 static void hw_rem_access_break(char *arg
)
282 break_helper("z4", arg
, 0);
285 static void hw_break_val_access(void)
287 hw_break_val2
= hw_break_val
;
290 static void hw_break_val_write(void)
295 static int get_thread_id_continue(char *put_str
, char *arg
)
297 char *ptr
= &put_str
[11];
299 if (put_str
[1] != 'T' || put_str
[2] != '0')
301 kgdb_hex2long(&ptr
, &cont_thread_id
);
305 static int check_and_rewind_pc(char *put_str
, char *arg
)
307 unsigned long addr
= lookup_addr(arg
);
311 kgdb_hex2mem(&put_str
[1], (char *)kgdbts_gdb_regs
,
313 gdb_regs_to_pt_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
314 ip
= instruction_pointer(&kgdbts_regs
);
315 v2printk("Stopped at IP: %lx\n", ip
);
316 #ifdef GDB_ADJUSTS_BREAK_OFFSET
317 /* On some arches, a breakpoint stop requires it to be decremented */
318 if (addr
+ BREAK_INSTR_SIZE
== ip
)
319 offset
= -BREAK_INSTR_SIZE
;
322 if (arch_needs_sstep_emulation
&& sstep_addr
&&
323 ip
+ offset
== sstep_addr
&&
324 ((!strcmp(arg
, "do_sys_openat2") || !strcmp(arg
, "kernel_clone")))) {
325 /* This is special case for emulated single step */
326 v2printk("Emul: rewind hit single step bp\n");
327 restart_from_top_after_write
= 1;
328 } else if (strcmp(arg
, "silent") && ip
+ offset
!= addr
) {
329 eprintk("kgdbts: BP mismatch %lx expected %lx\n",
333 /* Readjust the instruction pointer if needed */
336 #ifdef GDB_ADJUSTS_BREAK_OFFSET
337 instruction_pointer_set(&kgdbts_regs
, ip
);
342 static int check_single_step(char *put_str
, char *arg
)
344 unsigned long addr
= lookup_addr(arg
);
345 static int matched_id
;
348 * From an arch indepent point of view the instruction pointer
349 * should be on a different instruction
351 kgdb_hex2mem(&put_str
[1], (char *)kgdbts_gdb_regs
,
353 gdb_regs_to_pt_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
354 v2printk("Singlestep stopped at IP: %lx\n",
355 instruction_pointer(&kgdbts_regs
));
357 if (sstep_thread_id
!= cont_thread_id
) {
359 * Ensure we stopped in the same thread id as before, else the
360 * debugger should continue until the original thread that was
361 * single stepped is scheduled again, emulating gdb's behavior.
363 v2printk("ThrID does not match: %lx\n", cont_thread_id
);
364 if (arch_needs_sstep_emulation
) {
366 instruction_pointer(&kgdbts_regs
) != addr
)
373 cont_instead_of_sstep
= 1;
379 if (instruction_pointer(&kgdbts_regs
) == addr
) {
380 eprintk("kgdbts: SingleStep failed at %lx\n",
381 instruction_pointer(&kgdbts_regs
));
388 static void write_regs(char *arg
)
390 memset(scratch_buf
, 0, sizeof(scratch_buf
));
391 scratch_buf
[0] = 'G';
392 pt_regs_to_gdb_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
393 kgdb_mem2hex((char *)kgdbts_gdb_regs
, &scratch_buf
[1], NUMREGBYTES
);
394 fill_get_buf(scratch_buf
);
397 static void skip_back_repeat_test(char *arg
)
399 int go_back
= simple_strtol(arg
, NULL
, 10);
402 if (repeat_test
<= 0) {
405 if (repeat_test
% 100 == 0)
406 v1printk("kgdbts:RUN ... %d remaining\n", repeat_test
);
410 fill_get_buf(ts
.tst
[ts
.idx
].get
);
413 static int got_break(char *put_str
, char *arg
)
416 if (!strncmp(put_str
+1, arg
, 2)) {
417 if (!strncmp(arg
, "T0", 2))
424 static void get_cont_catch(char *arg
)
426 /* Always send detach because the test is completed at this point */
430 static int put_cont_catch(char *put_str
, char *arg
)
432 /* This is at the end of the test and we catch any and all input */
433 v2printk("kgdbts: cleanup task: %lx\n", sstep_thread_id
);
438 static int emul_reset(char *put_str
, char *arg
)
440 if (strncmp(put_str
, "$OK", 3))
442 if (restart_from_top_after_write
) {
443 restart_from_top_after_write
= 0;
449 static void emul_sstep_get(char *arg
)
451 if (!arch_needs_sstep_emulation
) {
452 if (cont_instead_of_sstep
) {
453 cont_instead_of_sstep
= 0;
460 switch (sstep_state
) {
462 v2printk("Emulate single step\n");
463 /* Start by looking at the current PC */
468 break_helper("Z0", NULL
, sstep_addr
);
475 /* Clear breakpoint */
476 break_helper("z0", NULL
, sstep_addr
);
479 eprintk("kgdbts: ERROR failed sstep get emulation\n");
484 static int emul_sstep_put(char *put_str
, char *arg
)
486 if (!arch_needs_sstep_emulation
) {
487 char *ptr
= &put_str
[11];
488 if (put_str
[1] != 'T' || put_str
[2] != '0')
490 kgdb_hex2long(&ptr
, &sstep_thread_id
);
493 switch (sstep_state
) {
495 /* validate the "g" packet to get the IP */
496 kgdb_hex2mem(&put_str
[1], (char *)kgdbts_gdb_regs
,
498 gdb_regs_to_pt_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
499 v2printk("Stopped at IP: %lx\n",
500 instruction_pointer(&kgdbts_regs
));
501 /* Want to stop at IP + break instruction size by default */
502 sstep_addr
= cont_addr
+ BREAK_INSTR_SIZE
;
505 if (strncmp(put_str
, "$OK", 3)) {
506 eprintk("kgdbts: failed sstep break set\n");
511 if (strncmp(put_str
, "$T0", 3)) {
512 eprintk("kgdbts: failed continue sstep\n");
515 char *ptr
= &put_str
[11];
516 kgdb_hex2long(&ptr
, &sstep_thread_id
);
520 if (strncmp(put_str
, "$OK", 3)) {
521 eprintk("kgdbts: failed sstep break unset\n");
524 /* Single step is complete so continue on! */
528 eprintk("kgdbts: ERROR failed sstep put emulation\n");
531 /* Continue on the same test line until emulation is complete */
536 static int final_ack_set(char *put_str
, char *arg
)
538 if (strncmp(put_str
+1, arg
, 2))
544 * Test to plant a breakpoint and detach, which should clear out the
545 * breakpoint and restore the original instruction.
547 static struct test_struct plant_and_detach_test
[] = {
548 { "?", "S0*" }, /* Clear break points */
549 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
550 { "D", "OK" }, /* Detach */
555 * Simple test to write in a software breakpoint, check for the
556 * correct stop location and detach.
558 static struct test_struct sw_breakpoint_test
[] = {
559 { "?", "S0*" }, /* Clear break points */
560 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
561 { "c", "T0*", }, /* Continue */
562 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
563 { "write", "OK", write_regs
},
564 { "kgdbts_break_test", "OK", sw_rem_break
}, /*remove breakpoint */
565 { "D", "OK" }, /* Detach */
566 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
571 * Test a known bad memory read location to test the fault handler and
572 * read bytes 1-8 at the bad address
574 static struct test_struct bad_read_test
[] = {
575 { "?", "S0*" }, /* Clear break points */
576 { "m0,1", "E*" }, /* read 1 byte at address 1 */
577 { "m0,2", "E*" }, /* read 1 byte at address 2 */
578 { "m0,3", "E*" }, /* read 1 byte at address 3 */
579 { "m0,4", "E*" }, /* read 1 byte at address 4 */
580 { "m0,5", "E*" }, /* read 1 byte at address 5 */
581 { "m0,6", "E*" }, /* read 1 byte at address 6 */
582 { "m0,7", "E*" }, /* read 1 byte at address 7 */
583 { "m0,8", "E*" }, /* read 1 byte at address 8 */
584 { "D", "OK" }, /* Detach which removes all breakpoints and continues */
589 * Test for hitting a breakpoint, remove it, single step, plant it
592 static struct test_struct singlestep_break_test
[] = {
593 { "?", "S0*" }, /* Clear break points */
594 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
595 { "c", "T0*", NULL
, get_thread_id_continue
}, /* Continue */
596 { "kgdbts_break_test", "OK", sw_rem_break
}, /*remove breakpoint */
597 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
598 { "write", "OK", write_regs
}, /* Write registers */
599 { "s", "T0*", emul_sstep_get
, emul_sstep_put
}, /* Single step */
600 { "g", "kgdbts_break_test", NULL
, check_single_step
},
601 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
602 { "c", "T0*", }, /* Continue */
603 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
604 { "write", "OK", write_regs
}, /* Write registers */
605 { "D", "OK" }, /* Remove all breakpoints and continues */
610 * Test for hitting a breakpoint at kernel_clone for what ever the number
611 * of iterations required by the variable repeat_test.
613 static struct test_struct do_kernel_clone_test
[] = {
614 { "?", "S0*" }, /* Clear break points */
615 { "kernel_clone", "OK", sw_break
, }, /* set sw breakpoint */
616 { "c", "T0*", NULL
, get_thread_id_continue
}, /* Continue */
617 { "kernel_clone", "OK", sw_rem_break
}, /*remove breakpoint */
618 { "g", "kernel_clone", NULL
, check_and_rewind_pc
}, /* check location */
619 { "write", "OK", write_regs
, emul_reset
}, /* Write registers */
620 { "s", "T0*", emul_sstep_get
, emul_sstep_put
}, /* Single step */
621 { "g", "kernel_clone", NULL
, check_single_step
},
622 { "kernel_clone", "OK", sw_break
, }, /* set sw breakpoint */
623 { "7", "T0*", skip_back_repeat_test
}, /* Loop based on repeat_test */
624 { "D", "OK", NULL
, final_ack_set
}, /* detach and unregister I/O */
625 { "", "", get_cont_catch
, put_cont_catch
},
628 /* Test for hitting a breakpoint at sys_open for what ever the number
629 * of iterations required by the variable repeat_test.
631 static struct test_struct sys_open_test
[] = {
632 { "?", "S0*" }, /* Clear break points */
633 { "do_sys_openat2", "OK", sw_break
, }, /* set sw breakpoint */
634 { "c", "T0*", NULL
, get_thread_id_continue
}, /* Continue */
635 { "do_sys_openat2", "OK", sw_rem_break
}, /*remove breakpoint */
636 { "g", "do_sys_openat2", NULL
, check_and_rewind_pc
}, /* check location */
637 { "write", "OK", write_regs
, emul_reset
}, /* Write registers */
638 { "s", "T0*", emul_sstep_get
, emul_sstep_put
}, /* Single step */
639 { "g", "do_sys_openat2", NULL
, check_single_step
},
640 { "do_sys_openat2", "OK", sw_break
, }, /* set sw breakpoint */
641 { "7", "T0*", skip_back_repeat_test
}, /* Loop based on repeat_test */
642 { "D", "OK", NULL
, final_ack_set
}, /* detach and unregister I/O */
643 { "", "", get_cont_catch
, put_cont_catch
},
647 * Test for hitting a simple hw breakpoint
649 static struct test_struct hw_breakpoint_test
[] = {
650 { "?", "S0*" }, /* Clear break points */
651 { "kgdbts_break_test", "OK", hw_break
, }, /* set hw breakpoint */
652 { "c", "T0*", }, /* Continue */
653 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
654 { "write", "OK", write_regs
},
655 { "kgdbts_break_test", "OK", hw_rem_break
}, /*remove breakpoint */
656 { "D", "OK" }, /* Detach */
657 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
662 * Test for hitting a hw write breakpoint
664 static struct test_struct hw_write_break_test
[] = {
665 { "?", "S0*" }, /* Clear break points */
666 { "hw_break_val", "OK", hw_write_break
, }, /* set hw breakpoint */
667 { "c", "T0*", NULL
, got_break
}, /* Continue */
668 { "g", "silent", NULL
, check_and_rewind_pc
},
669 { "write", "OK", write_regs
},
670 { "hw_break_val", "OK", hw_rem_write_break
}, /*remove breakpoint */
671 { "D", "OK" }, /* Detach */
672 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
677 * Test for hitting a hw access breakpoint
679 static struct test_struct hw_access_break_test
[] = {
680 { "?", "S0*" }, /* Clear break points */
681 { "hw_break_val", "OK", hw_access_break
, }, /* set hw breakpoint */
682 { "c", "T0*", NULL
, got_break
}, /* Continue */
683 { "g", "silent", NULL
, check_and_rewind_pc
},
684 { "write", "OK", write_regs
},
685 { "hw_break_val", "OK", hw_rem_access_break
}, /*remove breakpoint */
686 { "D", "OK" }, /* Detach */
687 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
692 * Test for hitting a hw access breakpoint
694 static struct test_struct nmi_sleep_test
[] = {
695 { "?", "S0*" }, /* Clear break points */
696 { "c", "T0*", NULL
, got_break
}, /* Continue */
697 { "D", "OK" }, /* Detach */
698 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
702 static void fill_get_buf(char *buf
)
704 unsigned char checksum
= 0;
708 strcpy(get_buf
, "$");
709 strcat(get_buf
, buf
);
710 while ((ch
= buf
[count
])) {
714 strcat(get_buf
, "#");
715 get_buf
[count
+ 2] = hex_asc_hi(checksum
);
716 get_buf
[count
+ 3] = hex_asc_lo(checksum
);
717 get_buf
[count
+ 4] = '\0';
718 v2printk("get%i: %s\n", ts
.idx
, get_buf
);
721 static int validate_simple_test(char *put_str
)
725 if (ts
.tst
[ts
.idx
].put_handler
)
726 return ts
.tst
[ts
.idx
].put_handler(put_str
,
729 chk_str
= ts
.tst
[ts
.idx
].put
;
733 while (*chk_str
!= '\0' && *put_str
!= '\0') {
734 /* If someone does a * to match the rest of the string, allow
735 * it, or stop if the received string is complete.
737 if (*put_str
== '#' || *chk_str
== '*')
739 if (*put_str
!= *chk_str
)
745 if (*chk_str
== '\0' && (*put_str
== '\0' || *put_str
== '#'))
751 static int run_simple_test(int is_get_char
, int chr
)
755 /* Send an ACK on the get if a prior put completed and set the
762 /* On the first get char, fill the transmit buffer and then
763 * take from the get_string.
765 if (get_buf_cnt
== 0) {
766 if (ts
.tst
[ts
.idx
].get_handler
)
767 ts
.tst
[ts
.idx
].get_handler(ts
.tst
[ts
.idx
].get
);
769 fill_get_buf(ts
.tst
[ts
.idx
].get
);
772 if (get_buf
[get_buf_cnt
] == '\0') {
773 eprintk("kgdbts: ERROR GET: EOB on '%s' at %i\n",
778 ret
= get_buf
[get_buf_cnt
];
783 /* This callback is a put char which is when kgdb sends data to
786 if (ts
.tst
[ts
.idx
].get
[0] == '\0' && ts
.tst
[ts
.idx
].put
[0] == '\0' &&
787 !ts
.tst
[ts
.idx
].get_handler
) {
788 eprintk("kgdbts: ERROR: beyond end of test on"
789 " '%s' line %i\n", ts
.name
, ts
.idx
);
793 if (put_buf_cnt
>= BUFMAX
) {
794 eprintk("kgdbts: ERROR: put buffer overflow on"
795 " '%s' line %i\n", ts
.name
, ts
.idx
);
799 /* Ignore everything until the first valid packet start '$' */
800 if (put_buf_cnt
== 0 && chr
!= '$')
803 put_buf
[put_buf_cnt
] = chr
;
806 /* End of packet == #XX so look for the '#' */
807 if (put_buf_cnt
> 3 && put_buf
[put_buf_cnt
- 3] == '#') {
808 if (put_buf_cnt
>= BUFMAX
) {
809 eprintk("kgdbts: ERROR: put buffer overflow on"
810 " '%s' line %i\n", ts
.name
, ts
.idx
);
814 put_buf
[put_buf_cnt
] = '\0';
815 v2printk("put%i: %s\n", ts
.idx
, put_buf
);
816 /* Trigger check here */
817 if (ts
.validate_put
&& ts
.validate_put(put_buf
)) {
818 eprintk("kgdbts: ERROR PUT: end of test "
819 "buffer on '%s' line %i expected %s got %s\n",
820 ts
.name
, ts
.idx
, ts
.tst
[ts
.idx
].put
, put_buf
);
830 static void init_simple_test(void)
832 memset(&ts
, 0, sizeof(ts
));
833 ts
.run_test
= run_simple_test
;
834 ts
.validate_put
= validate_simple_test
;
837 static void run_plant_and_detach_test(int is_early
)
839 char before
[BREAK_INSTR_SIZE
];
840 char after
[BREAK_INSTR_SIZE
];
842 copy_from_kernel_nofault(before
, (char *)kgdbts_break_test
,
845 ts
.tst
= plant_and_detach_test
;
846 ts
.name
= "plant_and_detach_test";
847 /* Activate test with initial breakpoint */
850 copy_from_kernel_nofault(after
, (char *)kgdbts_break_test
,
852 if (memcmp(before
, after
, BREAK_INSTR_SIZE
)) {
853 printk(KERN_CRIT
"kgdbts: ERROR kgdb corrupted memory\n");
854 panic("kgdb memory corruption");
857 /* complete the detach test */
862 static void run_breakpoint_test(int is_hw_breakpoint
)
866 if (is_hw_breakpoint
) {
867 ts
.tst
= hw_breakpoint_test
;
868 ts
.name
= "hw_breakpoint_test";
870 ts
.tst
= sw_breakpoint_test
;
871 ts
.name
= "sw_breakpoint_test";
873 /* Activate test with initial breakpoint */
875 /* run code with the break point in it */
882 eprintk("kgdbts: ERROR %s test failed\n", ts
.name
);
883 if (is_hw_breakpoint
)
887 static void run_hw_break_test(int is_write_test
)
892 ts
.tst
= hw_write_break_test
;
893 ts
.name
= "hw_write_break_test";
895 ts
.tst
= hw_access_break_test
;
896 ts
.name
= "hw_access_break_test";
898 /* Activate test with initial breakpoint */
900 hw_break_val_access();
902 if (test_complete
== 2) {
903 eprintk("kgdbts: ERROR %s broke on access\n",
907 hw_break_val_write();
911 if (test_complete
== 1)
914 eprintk("kgdbts: ERROR %s test failed\n", ts
.name
);
918 static void run_nmi_sleep_test(int nmi_sleep
)
923 ts
.tst
= nmi_sleep_test
;
924 ts
.name
= "nmi_sleep_test";
925 /* Activate test with initial breakpoint */
927 local_irq_save(flags
);
928 mdelay(nmi_sleep
*1000);
929 touch_nmi_watchdog();
930 local_irq_restore(flags
);
931 if (test_complete
!= 2)
932 eprintk("kgdbts: ERROR nmi_test did not hit nmi\n");
934 if (test_complete
== 1)
937 eprintk("kgdbts: ERROR %s test failed\n", ts
.name
);
940 static void run_bad_read_test(void)
943 ts
.tst
= bad_read_test
;
944 ts
.name
= "bad_read_test";
945 /* Activate test with initial breakpoint */
949 static void run_kernel_clone_test(void)
952 ts
.tst
= do_kernel_clone_test
;
953 ts
.name
= "do_kernel_clone_test";
954 /* Activate test with initial breakpoint */
958 static void run_sys_open_test(void)
961 ts
.tst
= sys_open_test
;
962 ts
.name
= "sys_open_test";
963 /* Activate test with initial breakpoint */
967 static void run_singlestep_break_test(void)
970 ts
.tst
= singlestep_break_test
;
971 ts
.name
= "singlestep_breakpoint_test";
972 /* Activate test with initial breakpoint */
978 static void kgdbts_run_tests(void)
982 int do_sys_open_test
= 0;
983 int sstep_test
= 1000;
988 if (strstr(config
, "V1"))
990 if (strstr(config
, "V2"))
993 ptr
= strchr(config
, 'F');
995 clone_test
= simple_strtol(ptr
+ 1, NULL
, 10);
996 ptr
= strchr(config
, 'S');
998 do_sys_open_test
= simple_strtol(ptr
+ 1, NULL
, 10);
999 ptr
= strchr(config
, 'N');
1001 nmi_sleep
= simple_strtol(ptr
+1, NULL
, 10);
1002 ptr
= strchr(config
, 'I');
1004 sstep_test
= simple_strtol(ptr
+1, NULL
, 10);
1006 /* All HW break point tests */
1007 if (arch_kgdb_ops
.flags
& KGDB_HW_BREAKPOINT
) {
1009 v1printk("kgdbts:RUN hw breakpoint test\n");
1010 run_breakpoint_test(1);
1011 v1printk("kgdbts:RUN hw write breakpoint test\n");
1012 run_hw_break_test(1);
1013 v1printk("kgdbts:RUN access write breakpoint test\n");
1014 run_hw_break_test(0);
1017 /* required internal KGDB tests */
1018 v1printk("kgdbts:RUN plant and detach test\n");
1019 run_plant_and_detach_test(0);
1020 v1printk("kgdbts:RUN sw breakpoint test\n");
1021 run_breakpoint_test(0);
1022 v1printk("kgdbts:RUN bad memory access test\n");
1023 run_bad_read_test();
1024 v1printk("kgdbts:RUN singlestep test %i iterations\n", sstep_test
);
1025 for (i
= 0; i
< sstep_test
; i
++) {
1026 run_singlestep_break_test();
1028 v1printk("kgdbts:RUN singlestep [%i/%i]\n",
1032 /* ===Optional tests=== */
1035 v1printk("kgdbts:RUN NMI sleep %i seconds test\n", nmi_sleep
);
1036 run_nmi_sleep_test(nmi_sleep
);
1039 /* If the kernel_clone test is run it will be the last test that is
1040 * executed because a kernel thread will be spawned at the very
1041 * end to unregister the debug hooks.
1044 repeat_test
= clone_test
;
1045 printk(KERN_INFO
"kgdbts:RUN kernel_clone for %i breakpoints\n",
1047 kthread_run(kgdbts_unreg_thread
, NULL
, "kgdbts_unreg");
1048 run_kernel_clone_test();
1052 /* If the sys_open test is run it will be the last test that is
1053 * executed because a kernel thread will be spawned at the very
1054 * end to unregister the debug hooks.
1056 if (do_sys_open_test
) {
1057 repeat_test
= do_sys_open_test
;
1058 printk(KERN_INFO
"kgdbts:RUN sys_open for %i breakpoints\n",
1060 kthread_run(kgdbts_unreg_thread
, NULL
, "kgdbts_unreg");
1061 run_sys_open_test();
1064 /* Shutdown and unregister */
1065 kgdb_unregister_io_module(&kgdbts_io_ops
);
1069 static int kgdbts_option_setup(char *opt
)
1071 if (strlen(opt
) >= MAX_CONFIG_LEN
) {
1072 printk(KERN_ERR
"kgdbts: config string too long\n");
1075 strcpy(config
, opt
);
1079 __setup("kgdbts=", kgdbts_option_setup
);
1081 static int configure_kgdbts(void)
1085 if (!strlen(config
) || isspace(config
[0]))
1089 run_plant_and_detach_test(1);
1091 err
= kgdb_register_io_module(&kgdbts_io_ops
);
1108 static int __init
init_kgdbts(void)
1110 /* Already configured? */
1111 if (configured
== 1)
1114 return configure_kgdbts();
1116 device_initcall(init_kgdbts
);
1118 static int kgdbts_get_char(void)
1123 val
= ts
.run_test(1, 0);
1128 static void kgdbts_put_char(u8 chr
)
1131 ts
.run_test(0, chr
);
1134 static int param_set_kgdbts_var(const char *kmessage
,
1135 const struct kernel_param
*kp
)
1137 size_t len
= strlen(kmessage
);
1139 if (len
>= MAX_CONFIG_LEN
) {
1140 printk(KERN_ERR
"kgdbts: config string too long\n");
1144 /* Only copy in the string if the init function has not run yet */
1145 if (configured
< 0) {
1146 strcpy(config
, kmessage
);
1150 if (configured
== 1) {
1151 printk(KERN_ERR
"kgdbts: ERROR: Already configured and running.\n");
1155 strcpy(config
, kmessage
);
1156 /* Chop out \n char as a result of echo */
1157 if (len
&& config
[len
- 1] == '\n')
1158 config
[len
- 1] = '\0';
1160 /* Go and configure with the new params. */
1161 return configure_kgdbts();
1164 static void kgdbts_pre_exp_handler(void)
1166 /* Increment the module count when the debugger is active */
1167 if (!kgdb_connected
)
1168 try_module_get(THIS_MODULE
);
1171 static void kgdbts_post_exp_handler(void)
1173 /* decrement the module count when the debugger detaches */
1174 if (!kgdb_connected
)
1175 module_put(THIS_MODULE
);
1178 static struct kgdb_io kgdbts_io_ops
= {
1180 .read_char
= kgdbts_get_char
,
1181 .write_char
= kgdbts_put_char
,
1182 .pre_exception
= kgdbts_pre_exp_handler
,
1183 .post_exception
= kgdbts_post_exp_handler
,
1187 * not really modular, but the easiest way to keep compat with existing
1188 * bootargs behaviour is to continue using module_param here.
1190 module_param_call(kgdbts
, param_set_kgdbts_var
, param_get_string
, &kps
, 0644);
1191 MODULE_PARM_DESC(kgdbts
, "<A|V1|V2>[F#|S#][N#]");