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.
6 * Created by: Jason Wessel <jason.wessel@windriver.com>
8 * Copyright (c) 2008 Wind River Systems, Inc.
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.
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.
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
23 /* Information about the kgdb test suite.
24 * -------------------------------------
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
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=
39 * When using the "kgdbts=" you only choose one of the following core
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
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
52 * NOTE: that the do_fork and sys_open tests are mutually exclusive.
54 * To invoke the kgdb test suite from boot you use a kernel start
55 * argument as follows:
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
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
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.
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
75 * 2) After the system boot run the basic test.
76 * echo kgdbts=V1 > /sys/module/kgdbts/parameters/kgdbts
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
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
97 #include <linux/kernel.h>
98 #include <linux/kgdb.h>
99 #include <linux/ctype.h>
100 #include <linux/uaccess.h>
101 #include <linux/syscalls.h>
102 #include <linux/nmi.h>
103 #include <linux/delay.h>
104 #include <linux/kthread.h>
105 #include <linux/module.h>
106 #include <linux/sched/task.h>
108 #include <asm/sections.h>
110 #define v1printk(a...) do { \
112 printk(KERN_INFO a); \
114 #define v2printk(a...) do { \
116 printk(KERN_INFO a); \
117 touch_nmi_watchdog(); \
119 #define eprintk(a...) do { \
120 printk(KERN_ERR a); \
123 #define MAX_CONFIG_LEN 40
125 static struct kgdb_io kgdbts_io_ops
;
126 static char get_buf
[BUFMAX
];
127 static int get_buf_cnt
;
128 static char put_buf
[BUFMAX
];
129 static int put_buf_cnt
;
130 static char scratch_buf
[BUFMAX
];
132 static int repeat_test
;
133 static int test_complete
;
135 static int final_ack
;
136 static int force_hwbrks
;
137 static int hwbreaks_ok
;
138 static int hw_break_val
;
139 static int hw_break_val2
;
140 static int cont_instead_of_sstep
;
141 static unsigned long cont_thread_id
;
142 static unsigned long sstep_thread_id
;
143 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_SPARC)
144 static int arch_needs_sstep_emulation
= 1;
146 static int arch_needs_sstep_emulation
;
148 static unsigned long cont_addr
;
149 static unsigned long sstep_addr
;
150 static int restart_from_top_after_write
;
151 static int sstep_state
;
153 /* Storage for the registers, in GDB format. */
154 static unsigned long kgdbts_gdb_regs
[(NUMREGBYTES
+
155 sizeof(unsigned long) - 1) /
156 sizeof(unsigned long)];
157 static struct pt_regs kgdbts_regs
;
159 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
160 static int configured
= -1;
162 #ifdef CONFIG_KGDB_TESTS_BOOT_STRING
163 static char config
[MAX_CONFIG_LEN
] = CONFIG_KGDB_TESTS_BOOT_STRING
;
165 static char config
[MAX_CONFIG_LEN
];
167 static struct kparam_string kps
= {
169 .maxlen
= MAX_CONFIG_LEN
,
172 static void fill_get_buf(char *buf
);
177 void (*get_handler
)(char *);
178 int (*put_handler
)(char *, char *);
183 struct test_struct
*tst
;
185 int (*run_test
) (int, int);
186 int (*validate_put
) (char *);
189 static struct test_state ts
;
191 static int kgdbts_unreg_thread(void *ptr
)
193 /* Wait until the tests are complete and then ungresiter the I/O
197 msleep_interruptible(1500);
198 /* Pause for any other threads to exit after final ack. */
199 msleep_interruptible(1000);
201 kgdb_unregister_io_module(&kgdbts_io_ops
);
207 /* This is noinline such that it can be used for a single location to
210 static noinline
void kgdbts_break_test(void)
212 v2printk("kgdbts: breakpoint complete\n");
215 /* Lookup symbol info in the kernel */
216 static unsigned long lookup_addr(char *arg
)
218 unsigned long addr
= 0;
220 if (!strcmp(arg
, "kgdbts_break_test"))
221 addr
= (unsigned long)kgdbts_break_test
;
222 else if (!strcmp(arg
, "sys_open"))
223 addr
= (unsigned long)do_sys_open
;
224 else if (!strcmp(arg
, "do_fork"))
225 addr
= (unsigned long)_do_fork
;
226 else if (!strcmp(arg
, "hw_break_val"))
227 addr
= (unsigned long)&hw_break_val
;
228 addr
= (unsigned long) dereference_function_descriptor((void *)addr
);
232 static void break_helper(char *bp_type
, char *arg
, unsigned long vaddr
)
237 addr
= lookup_addr(arg
);
241 sprintf(scratch_buf
, "%s,%lx,%i", bp_type
, addr
,
243 fill_get_buf(scratch_buf
);
246 static void sw_break(char *arg
)
248 break_helper(force_hwbrks
? "Z1" : "Z0", arg
, 0);
251 static void sw_rem_break(char *arg
)
253 break_helper(force_hwbrks
? "z1" : "z0", arg
, 0);
256 static void hw_break(char *arg
)
258 break_helper("Z1", arg
, 0);
261 static void hw_rem_break(char *arg
)
263 break_helper("z1", arg
, 0);
266 static void hw_write_break(char *arg
)
268 break_helper("Z2", arg
, 0);
271 static void hw_rem_write_break(char *arg
)
273 break_helper("z2", arg
, 0);
276 static void hw_access_break(char *arg
)
278 break_helper("Z4", arg
, 0);
281 static void hw_rem_access_break(char *arg
)
283 break_helper("z4", arg
, 0);
286 static void hw_break_val_access(void)
288 hw_break_val2
= hw_break_val
;
291 static void hw_break_val_write(void)
296 static int get_thread_id_continue(char *put_str
, char *arg
)
298 char *ptr
= &put_str
[11];
300 if (put_str
[1] != 'T' || put_str
[2] != '0')
302 kgdb_hex2long(&ptr
, &cont_thread_id
);
306 static int check_and_rewind_pc(char *put_str
, char *arg
)
308 unsigned long addr
= lookup_addr(arg
);
312 kgdb_hex2mem(&put_str
[1], (char *)kgdbts_gdb_regs
,
314 gdb_regs_to_pt_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
315 ip
= instruction_pointer(&kgdbts_regs
);
316 v2printk("Stopped at IP: %lx\n", ip
);
317 #ifdef GDB_ADJUSTS_BREAK_OFFSET
318 /* On some arches, a breakpoint stop requires it to be decremented */
319 if (addr
+ BREAK_INSTR_SIZE
== ip
)
320 offset
= -BREAK_INSTR_SIZE
;
323 if (arch_needs_sstep_emulation
&& sstep_addr
&&
324 ip
+ offset
== sstep_addr
&&
325 ((!strcmp(arg
, "sys_open") || !strcmp(arg
, "do_fork")))) {
326 /* This is special case for emulated single step */
327 v2printk("Emul: rewind hit single step bp\n");
328 restart_from_top_after_write
= 1;
329 } else if (strcmp(arg
, "silent") && ip
+ offset
!= addr
) {
330 eprintk("kgdbts: BP mismatch %lx expected %lx\n",
334 /* Readjust the instruction pointer if needed */
337 #ifdef GDB_ADJUSTS_BREAK_OFFSET
338 instruction_pointer_set(&kgdbts_regs
, ip
);
343 static int check_single_step(char *put_str
, char *arg
)
345 unsigned long addr
= lookup_addr(arg
);
346 static int matched_id
;
349 * From an arch indepent point of view the instruction pointer
350 * should be on a different instruction
352 kgdb_hex2mem(&put_str
[1], (char *)kgdbts_gdb_regs
,
354 gdb_regs_to_pt_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
355 v2printk("Singlestep stopped at IP: %lx\n",
356 instruction_pointer(&kgdbts_regs
));
358 if (sstep_thread_id
!= cont_thread_id
) {
360 * Ensure we stopped in the same thread id as before, else the
361 * debugger should continue until the original thread that was
362 * single stepped is scheduled again, emulating gdb's behavior.
364 v2printk("ThrID does not match: %lx\n", cont_thread_id
);
365 if (arch_needs_sstep_emulation
) {
367 instruction_pointer(&kgdbts_regs
) != addr
)
374 cont_instead_of_sstep
= 1;
380 if (instruction_pointer(&kgdbts_regs
) == addr
) {
381 eprintk("kgdbts: SingleStep failed at %lx\n",
382 instruction_pointer(&kgdbts_regs
));
389 static void write_regs(char *arg
)
391 memset(scratch_buf
, 0, sizeof(scratch_buf
));
392 scratch_buf
[0] = 'G';
393 pt_regs_to_gdb_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
394 kgdb_mem2hex((char *)kgdbts_gdb_regs
, &scratch_buf
[1], NUMREGBYTES
);
395 fill_get_buf(scratch_buf
);
398 static void skip_back_repeat_test(char *arg
)
400 int go_back
= simple_strtol(arg
, NULL
, 10);
403 if (repeat_test
<= 0)
407 fill_get_buf(ts
.tst
[ts
.idx
].get
);
410 static int got_break(char *put_str
, char *arg
)
413 if (!strncmp(put_str
+1, arg
, 2)) {
414 if (!strncmp(arg
, "T0", 2))
421 static void get_cont_catch(char *arg
)
423 /* Always send detach because the test is completed at this point */
427 static int put_cont_catch(char *put_str
, char *arg
)
429 /* This is at the end of the test and we catch any and all input */
430 v2printk("kgdbts: cleanup task: %lx\n", sstep_thread_id
);
435 static int emul_reset(char *put_str
, char *arg
)
437 if (strncmp(put_str
, "$OK", 3))
439 if (restart_from_top_after_write
) {
440 restart_from_top_after_write
= 0;
446 static void emul_sstep_get(char *arg
)
448 if (!arch_needs_sstep_emulation
) {
449 if (cont_instead_of_sstep
) {
450 cont_instead_of_sstep
= 0;
457 switch (sstep_state
) {
459 v2printk("Emulate single step\n");
460 /* Start by looking at the current PC */
465 break_helper("Z0", NULL
, sstep_addr
);
472 /* Clear breakpoint */
473 break_helper("z0", NULL
, sstep_addr
);
476 eprintk("kgdbts: ERROR failed sstep get emulation\n");
481 static int emul_sstep_put(char *put_str
, char *arg
)
483 if (!arch_needs_sstep_emulation
) {
484 char *ptr
= &put_str
[11];
485 if (put_str
[1] != 'T' || put_str
[2] != '0')
487 kgdb_hex2long(&ptr
, &sstep_thread_id
);
490 switch (sstep_state
) {
492 /* validate the "g" packet to get the IP */
493 kgdb_hex2mem(&put_str
[1], (char *)kgdbts_gdb_regs
,
495 gdb_regs_to_pt_regs(kgdbts_gdb_regs
, &kgdbts_regs
);
496 v2printk("Stopped at IP: %lx\n",
497 instruction_pointer(&kgdbts_regs
));
498 /* Want to stop at IP + break instruction size by default */
499 sstep_addr
= cont_addr
+ BREAK_INSTR_SIZE
;
502 if (strncmp(put_str
, "$OK", 3)) {
503 eprintk("kgdbts: failed sstep break set\n");
508 if (strncmp(put_str
, "$T0", 3)) {
509 eprintk("kgdbts: failed continue sstep\n");
512 char *ptr
= &put_str
[11];
513 kgdb_hex2long(&ptr
, &sstep_thread_id
);
517 if (strncmp(put_str
, "$OK", 3)) {
518 eprintk("kgdbts: failed sstep break unset\n");
521 /* Single step is complete so continue on! */
525 eprintk("kgdbts: ERROR failed sstep put emulation\n");
528 /* Continue on the same test line until emulation is complete */
533 static int final_ack_set(char *put_str
, char *arg
)
535 if (strncmp(put_str
+1, arg
, 2))
541 * Test to plant a breakpoint and detach, which should clear out the
542 * breakpoint and restore the original instruction.
544 static struct test_struct plant_and_detach_test
[] = {
545 { "?", "S0*" }, /* Clear break points */
546 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
547 { "D", "OK" }, /* Detach */
552 * Simple test to write in a software breakpoint, check for the
553 * correct stop location and detach.
555 static struct test_struct sw_breakpoint_test
[] = {
556 { "?", "S0*" }, /* Clear break points */
557 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
558 { "c", "T0*", }, /* Continue */
559 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
560 { "write", "OK", write_regs
},
561 { "kgdbts_break_test", "OK", sw_rem_break
}, /*remove breakpoint */
562 { "D", "OK" }, /* Detach */
563 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
568 * Test a known bad memory read location to test the fault handler and
569 * read bytes 1-8 at the bad address
571 static struct test_struct bad_read_test
[] = {
572 { "?", "S0*" }, /* Clear break points */
573 { "m0,1", "E*" }, /* read 1 byte at address 1 */
574 { "m0,2", "E*" }, /* read 1 byte at address 2 */
575 { "m0,3", "E*" }, /* read 1 byte at address 3 */
576 { "m0,4", "E*" }, /* read 1 byte at address 4 */
577 { "m0,5", "E*" }, /* read 1 byte at address 5 */
578 { "m0,6", "E*" }, /* read 1 byte at address 6 */
579 { "m0,7", "E*" }, /* read 1 byte at address 7 */
580 { "m0,8", "E*" }, /* read 1 byte at address 8 */
581 { "D", "OK" }, /* Detach which removes all breakpoints and continues */
586 * Test for hitting a breakpoint, remove it, single step, plant it
589 static struct test_struct singlestep_break_test
[] = {
590 { "?", "S0*" }, /* Clear break points */
591 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
592 { "c", "T0*", NULL
, get_thread_id_continue
}, /* Continue */
593 { "kgdbts_break_test", "OK", sw_rem_break
}, /*remove breakpoint */
594 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
595 { "write", "OK", write_regs
}, /* Write registers */
596 { "s", "T0*", emul_sstep_get
, emul_sstep_put
}, /* Single step */
597 { "g", "kgdbts_break_test", NULL
, check_single_step
},
598 { "kgdbts_break_test", "OK", sw_break
, }, /* set sw breakpoint */
599 { "c", "T0*", }, /* Continue */
600 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
601 { "write", "OK", write_regs
}, /* Write registers */
602 { "D", "OK" }, /* Remove all breakpoints and continues */
607 * Test for hitting a breakpoint at do_fork for what ever the number
608 * of iterations required by the variable repeat_test.
610 static struct test_struct do_fork_test
[] = {
611 { "?", "S0*" }, /* Clear break points */
612 { "do_fork", "OK", sw_break
, }, /* set sw breakpoint */
613 { "c", "T0*", NULL
, get_thread_id_continue
}, /* Continue */
614 { "do_fork", "OK", sw_rem_break
}, /*remove breakpoint */
615 { "g", "do_fork", NULL
, check_and_rewind_pc
}, /* check location */
616 { "write", "OK", write_regs
, emul_reset
}, /* Write registers */
617 { "s", "T0*", emul_sstep_get
, emul_sstep_put
}, /* Single step */
618 { "g", "do_fork", NULL
, check_single_step
},
619 { "do_fork", "OK", sw_break
, }, /* set sw breakpoint */
620 { "7", "T0*", skip_back_repeat_test
}, /* Loop based on repeat_test */
621 { "D", "OK", NULL
, final_ack_set
}, /* detach and unregister I/O */
622 { "", "", get_cont_catch
, put_cont_catch
},
625 /* Test for hitting a breakpoint at sys_open for what ever the number
626 * of iterations required by the variable repeat_test.
628 static struct test_struct sys_open_test
[] = {
629 { "?", "S0*" }, /* Clear break points */
630 { "sys_open", "OK", sw_break
, }, /* set sw breakpoint */
631 { "c", "T0*", NULL
, get_thread_id_continue
}, /* Continue */
632 { "sys_open", "OK", sw_rem_break
}, /*remove breakpoint */
633 { "g", "sys_open", NULL
, check_and_rewind_pc
}, /* check location */
634 { "write", "OK", write_regs
, emul_reset
}, /* Write registers */
635 { "s", "T0*", emul_sstep_get
, emul_sstep_put
}, /* Single step */
636 { "g", "sys_open", NULL
, check_single_step
},
637 { "sys_open", "OK", sw_break
, }, /* set sw breakpoint */
638 { "7", "T0*", skip_back_repeat_test
}, /* Loop based on repeat_test */
639 { "D", "OK", NULL
, final_ack_set
}, /* detach and unregister I/O */
640 { "", "", get_cont_catch
, put_cont_catch
},
644 * Test for hitting a simple hw breakpoint
646 static struct test_struct hw_breakpoint_test
[] = {
647 { "?", "S0*" }, /* Clear break points */
648 { "kgdbts_break_test", "OK", hw_break
, }, /* set hw breakpoint */
649 { "c", "T0*", }, /* Continue */
650 { "g", "kgdbts_break_test", NULL
, check_and_rewind_pc
},
651 { "write", "OK", write_regs
},
652 { "kgdbts_break_test", "OK", hw_rem_break
}, /*remove breakpoint */
653 { "D", "OK" }, /* Detach */
654 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
659 * Test for hitting a hw write breakpoint
661 static struct test_struct hw_write_break_test
[] = {
662 { "?", "S0*" }, /* Clear break points */
663 { "hw_break_val", "OK", hw_write_break
, }, /* set hw breakpoint */
664 { "c", "T0*", NULL
, got_break
}, /* Continue */
665 { "g", "silent", NULL
, check_and_rewind_pc
},
666 { "write", "OK", write_regs
},
667 { "hw_break_val", "OK", hw_rem_write_break
}, /*remove breakpoint */
668 { "D", "OK" }, /* Detach */
669 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
674 * Test for hitting a hw access breakpoint
676 static struct test_struct hw_access_break_test
[] = {
677 { "?", "S0*" }, /* Clear break points */
678 { "hw_break_val", "OK", hw_access_break
, }, /* set hw breakpoint */
679 { "c", "T0*", NULL
, got_break
}, /* Continue */
680 { "g", "silent", NULL
, check_and_rewind_pc
},
681 { "write", "OK", write_regs
},
682 { "hw_break_val", "OK", hw_rem_access_break
}, /*remove breakpoint */
683 { "D", "OK" }, /* Detach */
684 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
689 * Test for hitting a hw access breakpoint
691 static struct test_struct nmi_sleep_test
[] = {
692 { "?", "S0*" }, /* Clear break points */
693 { "c", "T0*", NULL
, got_break
}, /* Continue */
694 { "D", "OK" }, /* Detach */
695 { "D", "OK", NULL
, got_break
}, /* On success we made it here */
699 static void fill_get_buf(char *buf
)
701 unsigned char checksum
= 0;
705 strcpy(get_buf
, "$");
706 strcat(get_buf
, buf
);
707 while ((ch
= buf
[count
])) {
711 strcat(get_buf
, "#");
712 get_buf
[count
+ 2] = hex_asc_hi(checksum
);
713 get_buf
[count
+ 3] = hex_asc_lo(checksum
);
714 get_buf
[count
+ 4] = '\0';
715 v2printk("get%i: %s\n", ts
.idx
, get_buf
);
718 static int validate_simple_test(char *put_str
)
722 if (ts
.tst
[ts
.idx
].put_handler
)
723 return ts
.tst
[ts
.idx
].put_handler(put_str
,
726 chk_str
= ts
.tst
[ts
.idx
].put
;
730 while (*chk_str
!= '\0' && *put_str
!= '\0') {
731 /* If someone does a * to match the rest of the string, allow
732 * it, or stop if the received string is complete.
734 if (*put_str
== '#' || *chk_str
== '*')
736 if (*put_str
!= *chk_str
)
742 if (*chk_str
== '\0' && (*put_str
== '\0' || *put_str
== '#'))
748 static int run_simple_test(int is_get_char
, int chr
)
752 /* Send an ACK on the get if a prior put completed and set the
759 /* On the first get char, fill the transmit buffer and then
760 * take from the get_string.
762 if (get_buf_cnt
== 0) {
763 if (ts
.tst
[ts
.idx
].get_handler
)
764 ts
.tst
[ts
.idx
].get_handler(ts
.tst
[ts
.idx
].get
);
766 fill_get_buf(ts
.tst
[ts
.idx
].get
);
769 if (get_buf
[get_buf_cnt
] == '\0') {
770 eprintk("kgdbts: ERROR GET: EOB on '%s' at %i\n",
775 ret
= get_buf
[get_buf_cnt
];
780 /* This callback is a put char which is when kgdb sends data to
783 if (ts
.tst
[ts
.idx
].get
[0] == '\0' && ts
.tst
[ts
.idx
].put
[0] == '\0' &&
784 !ts
.tst
[ts
.idx
].get_handler
) {
785 eprintk("kgdbts: ERROR: beyond end of test on"
786 " '%s' line %i\n", ts
.name
, ts
.idx
);
790 if (put_buf_cnt
>= BUFMAX
) {
791 eprintk("kgdbts: ERROR: put buffer overflow on"
792 " '%s' line %i\n", ts
.name
, ts
.idx
);
796 /* Ignore everything until the first valid packet start '$' */
797 if (put_buf_cnt
== 0 && chr
!= '$')
800 put_buf
[put_buf_cnt
] = chr
;
803 /* End of packet == #XX so look for the '#' */
804 if (put_buf_cnt
> 3 && put_buf
[put_buf_cnt
- 3] == '#') {
805 if (put_buf_cnt
>= BUFMAX
) {
806 eprintk("kgdbts: ERROR: put buffer overflow on"
807 " '%s' line %i\n", ts
.name
, ts
.idx
);
811 put_buf
[put_buf_cnt
] = '\0';
812 v2printk("put%i: %s\n", ts
.idx
, put_buf
);
813 /* Trigger check here */
814 if (ts
.validate_put
&& ts
.validate_put(put_buf
)) {
815 eprintk("kgdbts: ERROR PUT: end of test "
816 "buffer on '%s' line %i expected %s got %s\n",
817 ts
.name
, ts
.idx
, ts
.tst
[ts
.idx
].put
, put_buf
);
827 static void init_simple_test(void)
829 memset(&ts
, 0, sizeof(ts
));
830 ts
.run_test
= run_simple_test
;
831 ts
.validate_put
= validate_simple_test
;
834 static void run_plant_and_detach_test(int is_early
)
836 char before
[BREAK_INSTR_SIZE
];
837 char after
[BREAK_INSTR_SIZE
];
839 probe_kernel_read(before
, (char *)kgdbts_break_test
,
842 ts
.tst
= plant_and_detach_test
;
843 ts
.name
= "plant_and_detach_test";
844 /* Activate test with initial breakpoint */
847 probe_kernel_read(after
, (char *)kgdbts_break_test
,
849 if (memcmp(before
, after
, BREAK_INSTR_SIZE
)) {
850 printk(KERN_CRIT
"kgdbts: ERROR kgdb corrupted memory\n");
851 panic("kgdb memory corruption");
854 /* complete the detach test */
859 static void run_breakpoint_test(int is_hw_breakpoint
)
863 if (is_hw_breakpoint
) {
864 ts
.tst
= hw_breakpoint_test
;
865 ts
.name
= "hw_breakpoint_test";
867 ts
.tst
= sw_breakpoint_test
;
868 ts
.name
= "sw_breakpoint_test";
870 /* Activate test with initial breakpoint */
872 /* run code with the break point in it */
879 eprintk("kgdbts: ERROR %s test failed\n", ts
.name
);
880 if (is_hw_breakpoint
)
884 static void run_hw_break_test(int is_write_test
)
889 ts
.tst
= hw_write_break_test
;
890 ts
.name
= "hw_write_break_test";
892 ts
.tst
= hw_access_break_test
;
893 ts
.name
= "hw_access_break_test";
895 /* Activate test with initial breakpoint */
897 hw_break_val_access();
899 if (test_complete
== 2) {
900 eprintk("kgdbts: ERROR %s broke on access\n",
904 hw_break_val_write();
908 if (test_complete
== 1)
911 eprintk("kgdbts: ERROR %s test failed\n", ts
.name
);
915 static void run_nmi_sleep_test(int nmi_sleep
)
920 ts
.tst
= nmi_sleep_test
;
921 ts
.name
= "nmi_sleep_test";
922 /* Activate test with initial breakpoint */
924 local_irq_save(flags
);
925 mdelay(nmi_sleep
*1000);
926 touch_nmi_watchdog();
927 local_irq_restore(flags
);
928 if (test_complete
!= 2)
929 eprintk("kgdbts: ERROR nmi_test did not hit nmi\n");
931 if (test_complete
== 1)
934 eprintk("kgdbts: ERROR %s test failed\n", ts
.name
);
937 static void run_bad_read_test(void)
940 ts
.tst
= bad_read_test
;
941 ts
.name
= "bad_read_test";
942 /* Activate test with initial breakpoint */
946 static void run_do_fork_test(void)
949 ts
.tst
= do_fork_test
;
950 ts
.name
= "do_fork_test";
951 /* Activate test with initial breakpoint */
955 static void run_sys_open_test(void)
958 ts
.tst
= sys_open_test
;
959 ts
.name
= "sys_open_test";
960 /* Activate test with initial breakpoint */
964 static void run_singlestep_break_test(void)
967 ts
.tst
= singlestep_break_test
;
968 ts
.name
= "singlestep_breakpoint_test";
969 /* Activate test with initial breakpoint */
975 static void kgdbts_run_tests(void)
979 int do_sys_open_test
= 0;
980 int sstep_test
= 1000;
984 ptr
= strchr(config
, 'F');
986 fork_test
= simple_strtol(ptr
+ 1, NULL
, 10);
987 ptr
= strchr(config
, 'S');
989 do_sys_open_test
= simple_strtol(ptr
+ 1, NULL
, 10);
990 ptr
= strchr(config
, 'N');
992 nmi_sleep
= simple_strtol(ptr
+1, NULL
, 10);
993 ptr
= strchr(config
, 'I');
995 sstep_test
= simple_strtol(ptr
+1, NULL
, 10);
997 /* All HW break point tests */
998 if (arch_kgdb_ops
.flags
& KGDB_HW_BREAKPOINT
) {
1000 v1printk("kgdbts:RUN hw breakpoint test\n");
1001 run_breakpoint_test(1);
1002 v1printk("kgdbts:RUN hw write breakpoint test\n");
1003 run_hw_break_test(1);
1004 v1printk("kgdbts:RUN access write breakpoint test\n");
1005 run_hw_break_test(0);
1008 /* required internal KGDB tests */
1009 v1printk("kgdbts:RUN plant and detach test\n");
1010 run_plant_and_detach_test(0);
1011 v1printk("kgdbts:RUN sw breakpoint test\n");
1012 run_breakpoint_test(0);
1013 v1printk("kgdbts:RUN bad memory access test\n");
1014 run_bad_read_test();
1015 v1printk("kgdbts:RUN singlestep test %i iterations\n", sstep_test
);
1016 for (i
= 0; i
< sstep_test
; i
++) {
1017 run_singlestep_break_test();
1019 v1printk("kgdbts:RUN singlestep [%i/%i]\n",
1023 /* ===Optional tests=== */
1026 v1printk("kgdbts:RUN NMI sleep %i seconds test\n", nmi_sleep
);
1027 run_nmi_sleep_test(nmi_sleep
);
1030 /* If the do_fork test is run it will be the last test that is
1031 * executed because a kernel thread will be spawned at the very
1032 * end to unregister the debug hooks.
1035 repeat_test
= fork_test
;
1036 printk(KERN_INFO
"kgdbts:RUN do_fork for %i breakpoints\n",
1038 kthread_run(kgdbts_unreg_thread
, NULL
, "kgdbts_unreg");
1043 /* If the sys_open test is run it will be the last test that is
1044 * executed because a kernel thread will be spawned at the very
1045 * end to unregister the debug hooks.
1047 if (do_sys_open_test
) {
1048 repeat_test
= do_sys_open_test
;
1049 printk(KERN_INFO
"kgdbts:RUN sys_open for %i breakpoints\n",
1051 kthread_run(kgdbts_unreg_thread
, NULL
, "kgdbts_unreg");
1052 run_sys_open_test();
1055 /* Shutdown and unregister */
1056 kgdb_unregister_io_module(&kgdbts_io_ops
);
1060 static int kgdbts_option_setup(char *opt
)
1062 if (strlen(opt
) >= MAX_CONFIG_LEN
) {
1063 printk(KERN_ERR
"kgdbts: config string too long\n");
1066 strcpy(config
, opt
);
1069 if (strstr(config
, "V1"))
1071 if (strstr(config
, "V2"))
1077 __setup("kgdbts=", kgdbts_option_setup
);
1079 static int configure_kgdbts(void)
1083 if (!strlen(config
) || isspace(config
[0]))
1085 err
= kgdbts_option_setup(config
);
1090 run_plant_and_detach_test(1);
1092 err
= kgdb_register_io_module(&kgdbts_io_ops
);
1109 static int __init
init_kgdbts(void)
1111 /* Already configured? */
1112 if (configured
== 1)
1115 return configure_kgdbts();
1117 device_initcall(init_kgdbts
);
1119 static int kgdbts_get_char(void)
1124 val
= ts
.run_test(1, 0);
1129 static void kgdbts_put_char(u8 chr
)
1132 ts
.run_test(0, chr
);
1135 static int param_set_kgdbts_var(const char *kmessage
, struct kernel_param
*kp
)
1137 int 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 (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#]");