GNU Linux-libre 4.14.266-gnu1
[releases.git] / drivers / misc / kgdbts.c
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
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>
107
108 #include <asm/sections.h>
109
110 #define v1printk(a...) do {             \
111         if (verbose)                    \
112                 printk(KERN_INFO a);    \
113 } while (0)
114 #define v2printk(a...) do {             \
115         if (verbose > 1) {              \
116                 printk(KERN_INFO a);    \
117         }                               \
118         touch_nmi_watchdog();           \
119 } while (0)
120 #define eprintk(a...) do {              \
121         printk(KERN_ERR a);             \
122         WARN_ON(1);                     \
123 } while (0)
124 #define MAX_CONFIG_LEN          40
125
126 static struct kgdb_io kgdbts_io_ops;
127 static char get_buf[BUFMAX];
128 static int get_buf_cnt;
129 static char put_buf[BUFMAX];
130 static int put_buf_cnt;
131 static char scratch_buf[BUFMAX];
132 static int verbose;
133 static int repeat_test;
134 static int test_complete;
135 static int send_ack;
136 static int final_ack;
137 static int force_hwbrks;
138 static int hwbreaks_ok;
139 static int hw_break_val;
140 static int hw_break_val2;
141 static int cont_instead_of_sstep;
142 static unsigned long cont_thread_id;
143 static unsigned long sstep_thread_id;
144 #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_SPARC)
145 static int arch_needs_sstep_emulation = 1;
146 #else
147 static int arch_needs_sstep_emulation;
148 #endif
149 static unsigned long cont_addr;
150 static unsigned long sstep_addr;
151 static int restart_from_top_after_write;
152 static int sstep_state;
153
154 /* Storage for the registers, in GDB format. */
155 static unsigned long kgdbts_gdb_regs[(NUMREGBYTES +
156                                         sizeof(unsigned long) - 1) /
157                                         sizeof(unsigned long)];
158 static struct pt_regs kgdbts_regs;
159
160 /* -1 = init not run yet, 0 = unconfigured, 1 = configured. */
161 static int configured           = -1;
162
163 #ifdef CONFIG_KGDB_TESTS_BOOT_STRING
164 static char config[MAX_CONFIG_LEN] = CONFIG_KGDB_TESTS_BOOT_STRING;
165 #else
166 static char config[MAX_CONFIG_LEN];
167 #endif
168 static struct kparam_string kps = {
169         .string                 = config,
170         .maxlen                 = MAX_CONFIG_LEN,
171 };
172
173 static void fill_get_buf(char *buf);
174
175 struct test_struct {
176         char *get;
177         char *put;
178         void (*get_handler)(char *);
179         int (*put_handler)(char *, char *);
180 };
181
182 struct test_state {
183         char *name;
184         struct test_struct *tst;
185         int idx;
186         int (*run_test) (int, int);
187         int (*validate_put) (char *);
188 };
189
190 static struct test_state ts;
191
192 static int kgdbts_unreg_thread(void *ptr)
193 {
194         /* Wait until the tests are complete and then ungresiter the I/O
195          * driver.
196          */
197         while (!final_ack)
198                 msleep_interruptible(1500);
199         /* Pause for any other threads to exit after final ack. */
200         msleep_interruptible(1000);
201         if (configured)
202                 kgdb_unregister_io_module(&kgdbts_io_ops);
203         configured = 0;
204
205         return 0;
206 }
207
208 /* This is noinline such that it can be used for a single location to
209  * place a breakpoint
210  */
211 static noinline void kgdbts_break_test(void)
212 {
213         v2printk("kgdbts: breakpoint complete\n");
214 }
215
216 /* Lookup symbol info in the kernel */
217 static unsigned long lookup_addr(char *arg)
218 {
219         unsigned long addr = 0;
220
221         if (!strcmp(arg, "kgdbts_break_test"))
222                 addr = (unsigned long)kgdbts_break_test;
223         else if (!strcmp(arg, "sys_open"))
224                 addr = (unsigned long)do_sys_open;
225         else if (!strcmp(arg, "do_fork"))
226                 addr = (unsigned long)_do_fork;
227         else if (!strcmp(arg, "hw_break_val"))
228                 addr = (unsigned long)&hw_break_val;
229         addr = (unsigned long) dereference_function_descriptor((void *)addr);
230         return addr;
231 }
232
233 static void break_helper(char *bp_type, char *arg, unsigned long vaddr)
234 {
235         unsigned long addr;
236
237         if (arg)
238                 addr = lookup_addr(arg);
239         else
240                 addr = vaddr;
241
242         sprintf(scratch_buf, "%s,%lx,%i", bp_type, addr,
243                 BREAK_INSTR_SIZE);
244         fill_get_buf(scratch_buf);
245 }
246
247 static void sw_break(char *arg)
248 {
249         break_helper(force_hwbrks ? "Z1" : "Z0", arg, 0);
250 }
251
252 static void sw_rem_break(char *arg)
253 {
254         break_helper(force_hwbrks ? "z1" : "z0", arg, 0);
255 }
256
257 static void hw_break(char *arg)
258 {
259         break_helper("Z1", arg, 0);
260 }
261
262 static void hw_rem_break(char *arg)
263 {
264         break_helper("z1", arg, 0);
265 }
266
267 static void hw_write_break(char *arg)
268 {
269         break_helper("Z2", arg, 0);
270 }
271
272 static void hw_rem_write_break(char *arg)
273 {
274         break_helper("z2", arg, 0);
275 }
276
277 static void hw_access_break(char *arg)
278 {
279         break_helper("Z4", arg, 0);
280 }
281
282 static void hw_rem_access_break(char *arg)
283 {
284         break_helper("z4", arg, 0);
285 }
286
287 static void hw_break_val_access(void)
288 {
289         hw_break_val2 = hw_break_val;
290 }
291
292 static void hw_break_val_write(void)
293 {
294         hw_break_val++;
295 }
296
297 static int get_thread_id_continue(char *put_str, char *arg)
298 {
299         char *ptr = &put_str[11];
300
301         if (put_str[1] != 'T' || put_str[2] != '0')
302                 return 1;
303         kgdb_hex2long(&ptr, &cont_thread_id);
304         return 0;
305 }
306
307 static int check_and_rewind_pc(char *put_str, char *arg)
308 {
309         unsigned long addr = lookup_addr(arg);
310         unsigned long ip;
311         int offset = 0;
312
313         kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
314                  NUMREGBYTES);
315         gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
316         ip = instruction_pointer(&kgdbts_regs);
317         v2printk("Stopped at IP: %lx\n", ip);
318 #ifdef GDB_ADJUSTS_BREAK_OFFSET
319         /* On some arches, a breakpoint stop requires it to be decremented */
320         if (addr + BREAK_INSTR_SIZE == ip)
321                 offset = -BREAK_INSTR_SIZE;
322 #endif
323
324         if (arch_needs_sstep_emulation && sstep_addr &&
325             ip + offset == sstep_addr &&
326             ((!strcmp(arg, "sys_open") || !strcmp(arg, "do_fork")))) {
327                 /* This is special case for emulated single step */
328                 v2printk("Emul: rewind hit single step bp\n");
329                 restart_from_top_after_write = 1;
330         } else if (strcmp(arg, "silent") && ip + offset != addr) {
331                 eprintk("kgdbts: BP mismatch %lx expected %lx\n",
332                            ip + offset, addr);
333                 return 1;
334         }
335         /* Readjust the instruction pointer if needed */
336         ip += offset;
337         cont_addr = ip;
338 #ifdef GDB_ADJUSTS_BREAK_OFFSET
339         instruction_pointer_set(&kgdbts_regs, ip);
340 #endif
341         return 0;
342 }
343
344 static int check_single_step(char *put_str, char *arg)
345 {
346         unsigned long addr = lookup_addr(arg);
347         static int matched_id;
348
349         /*
350          * From an arch indepent point of view the instruction pointer
351          * should be on a different instruction
352          */
353         kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
354                  NUMREGBYTES);
355         gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
356         v2printk("Singlestep stopped at IP: %lx\n",
357                    instruction_pointer(&kgdbts_regs));
358
359         if (sstep_thread_id != cont_thread_id) {
360                 /*
361                  * Ensure we stopped in the same thread id as before, else the
362                  * debugger should continue until the original thread that was
363                  * single stepped is scheduled again, emulating gdb's behavior.
364                  */
365                 v2printk("ThrID does not match: %lx\n", cont_thread_id);
366                 if (arch_needs_sstep_emulation) {
367                         if (matched_id &&
368                             instruction_pointer(&kgdbts_regs) != addr)
369                                 goto continue_test;
370                         matched_id++;
371                         ts.idx -= 2;
372                         sstep_state = 0;
373                         return 0;
374                 }
375                 cont_instead_of_sstep = 1;
376                 ts.idx -= 4;
377                 return 0;
378         }
379 continue_test:
380         matched_id = 0;
381         if (instruction_pointer(&kgdbts_regs) == addr) {
382                 eprintk("kgdbts: SingleStep failed at %lx\n",
383                            instruction_pointer(&kgdbts_regs));
384                 return 1;
385         }
386
387         return 0;
388 }
389
390 static void write_regs(char *arg)
391 {
392         memset(scratch_buf, 0, sizeof(scratch_buf));
393         scratch_buf[0] = 'G';
394         pt_regs_to_gdb_regs(kgdbts_gdb_regs, &kgdbts_regs);
395         kgdb_mem2hex((char *)kgdbts_gdb_regs, &scratch_buf[1], NUMREGBYTES);
396         fill_get_buf(scratch_buf);
397 }
398
399 static void skip_back_repeat_test(char *arg)
400 {
401         int go_back = simple_strtol(arg, NULL, 10);
402
403         repeat_test--;
404         if (repeat_test <= 0)
405                 ts.idx++;
406         else
407                 ts.idx -= go_back;
408         fill_get_buf(ts.tst[ts.idx].get);
409 }
410
411 static int got_break(char *put_str, char *arg)
412 {
413         test_complete = 1;
414         if (!strncmp(put_str+1, arg, 2)) {
415                 if (!strncmp(arg, "T0", 2))
416                         test_complete = 2;
417                 return 0;
418         }
419         return 1;
420 }
421
422 static void get_cont_catch(char *arg)
423 {
424         /* Always send detach because the test is completed at this point */
425         fill_get_buf("D");
426 }
427
428 static int put_cont_catch(char *put_str, char *arg)
429 {
430         /* This is at the end of the test and we catch any and all input */
431         v2printk("kgdbts: cleanup task: %lx\n", sstep_thread_id);
432         ts.idx--;
433         return 0;
434 }
435
436 static int emul_reset(char *put_str, char *arg)
437 {
438         if (strncmp(put_str, "$OK", 3))
439                 return 1;
440         if (restart_from_top_after_write) {
441                 restart_from_top_after_write = 0;
442                 ts.idx = -1;
443         }
444         return 0;
445 }
446
447 static void emul_sstep_get(char *arg)
448 {
449         if (!arch_needs_sstep_emulation) {
450                 if (cont_instead_of_sstep) {
451                         cont_instead_of_sstep = 0;
452                         fill_get_buf("c");
453                 } else {
454                         fill_get_buf(arg);
455                 }
456                 return;
457         }
458         switch (sstep_state) {
459         case 0:
460                 v2printk("Emulate single step\n");
461                 /* Start by looking at the current PC */
462                 fill_get_buf("g");
463                 break;
464         case 1:
465                 /* set breakpoint */
466                 break_helper("Z0", NULL, sstep_addr);
467                 break;
468         case 2:
469                 /* Continue */
470                 fill_get_buf("c");
471                 break;
472         case 3:
473                 /* Clear breakpoint */
474                 break_helper("z0", NULL, sstep_addr);
475                 break;
476         default:
477                 eprintk("kgdbts: ERROR failed sstep get emulation\n");
478         }
479         sstep_state++;
480 }
481
482 static int emul_sstep_put(char *put_str, char *arg)
483 {
484         if (!arch_needs_sstep_emulation) {
485                 char *ptr = &put_str[11];
486                 if (put_str[1] != 'T' || put_str[2] != '0')
487                         return 1;
488                 kgdb_hex2long(&ptr, &sstep_thread_id);
489                 return 0;
490         }
491         switch (sstep_state) {
492         case 1:
493                 /* validate the "g" packet to get the IP */
494                 kgdb_hex2mem(&put_str[1], (char *)kgdbts_gdb_regs,
495                          NUMREGBYTES);
496                 gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs);
497                 v2printk("Stopped at IP: %lx\n",
498                          instruction_pointer(&kgdbts_regs));
499                 /* Want to stop at IP + break instruction size by default */
500                 sstep_addr = cont_addr + BREAK_INSTR_SIZE;
501                 break;
502         case 2:
503                 if (strncmp(put_str, "$OK", 3)) {
504                         eprintk("kgdbts: failed sstep break set\n");
505                         return 1;
506                 }
507                 break;
508         case 3:
509                 if (strncmp(put_str, "$T0", 3)) {
510                         eprintk("kgdbts: failed continue sstep\n");
511                         return 1;
512                 } else {
513                         char *ptr = &put_str[11];
514                         kgdb_hex2long(&ptr, &sstep_thread_id);
515                 }
516                 break;
517         case 4:
518                 if (strncmp(put_str, "$OK", 3)) {
519                         eprintk("kgdbts: failed sstep break unset\n");
520                         return 1;
521                 }
522                 /* Single step is complete so continue on! */
523                 sstep_state = 0;
524                 return 0;
525         default:
526                 eprintk("kgdbts: ERROR failed sstep put emulation\n");
527         }
528
529         /* Continue on the same test line until emulation is complete */
530         ts.idx--;
531         return 0;
532 }
533
534 static int final_ack_set(char *put_str, char *arg)
535 {
536         if (strncmp(put_str+1, arg, 2))
537                 return 1;
538         final_ack = 1;
539         return 0;
540 }
541 /*
542  * Test to plant a breakpoint and detach, which should clear out the
543  * breakpoint and restore the original instruction.
544  */
545 static struct test_struct plant_and_detach_test[] = {
546         { "?", "S0*" }, /* Clear break points */
547         { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
548         { "D", "OK" }, /* Detach */
549         { "", "" },
550 };
551
552 /*
553  * Simple test to write in a software breakpoint, check for the
554  * correct stop location and detach.
555  */
556 static struct test_struct sw_breakpoint_test[] = {
557         { "?", "S0*" }, /* Clear break points */
558         { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
559         { "c", "T0*", }, /* Continue */
560         { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
561         { "write", "OK", write_regs },
562         { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */
563         { "D", "OK" }, /* Detach */
564         { "D", "OK", NULL,  got_break }, /* On success we made it here */
565         { "", "" },
566 };
567
568 /*
569  * Test a known bad memory read location to test the fault handler and
570  * read bytes 1-8 at the bad address
571  */
572 static struct test_struct bad_read_test[] = {
573         { "?", "S0*" }, /* Clear break points */
574         { "m0,1", "E*" }, /* read 1 byte at address 1 */
575         { "m0,2", "E*" }, /* read 1 byte at address 2 */
576         { "m0,3", "E*" }, /* read 1 byte at address 3 */
577         { "m0,4", "E*" }, /* read 1 byte at address 4 */
578         { "m0,5", "E*" }, /* read 1 byte at address 5 */
579         { "m0,6", "E*" }, /* read 1 byte at address 6 */
580         { "m0,7", "E*" }, /* read 1 byte at address 7 */
581         { "m0,8", "E*" }, /* read 1 byte at address 8 */
582         { "D", "OK" }, /* Detach which removes all breakpoints and continues */
583         { "", "" },
584 };
585
586 /*
587  * Test for hitting a breakpoint, remove it, single step, plant it
588  * again and detach.
589  */
590 static struct test_struct singlestep_break_test[] = {
591         { "?", "S0*" }, /* Clear break points */
592         { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
593         { "c", "T0*", NULL, get_thread_id_continue }, /* Continue */
594         { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */
595         { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
596         { "write", "OK", write_regs }, /* Write registers */
597         { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
598         { "g", "kgdbts_break_test", NULL, check_single_step },
599         { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */
600         { "c", "T0*", }, /* Continue */
601         { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
602         { "write", "OK", write_regs }, /* Write registers */
603         { "D", "OK" }, /* Remove all breakpoints and continues */
604         { "", "" },
605 };
606
607 /*
608  * Test for hitting a breakpoint at do_fork for what ever the number
609  * of iterations required by the variable repeat_test.
610  */
611 static struct test_struct do_fork_test[] = {
612         { "?", "S0*" }, /* Clear break points */
613         { "do_fork", "OK", sw_break, }, /* set sw breakpoint */
614         { "c", "T0*", NULL, get_thread_id_continue }, /* Continue */
615         { "do_fork", "OK", sw_rem_break }, /*remove breakpoint */
616         { "g", "do_fork", NULL, check_and_rewind_pc }, /* check location */
617         { "write", "OK", write_regs, emul_reset }, /* Write registers */
618         { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
619         { "g", "do_fork", NULL, check_single_step },
620         { "do_fork", "OK", sw_break, }, /* set sw breakpoint */
621         { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */
622         { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */
623         { "", "", get_cont_catch, put_cont_catch },
624 };
625
626 /* Test for hitting a breakpoint at sys_open for what ever the number
627  * of iterations required by the variable repeat_test.
628  */
629 static struct test_struct sys_open_test[] = {
630         { "?", "S0*" }, /* Clear break points */
631         { "sys_open", "OK", sw_break, }, /* set sw breakpoint */
632         { "c", "T0*", NULL, get_thread_id_continue }, /* Continue */
633         { "sys_open", "OK", sw_rem_break }, /*remove breakpoint */
634         { "g", "sys_open", NULL, check_and_rewind_pc }, /* check location */
635         { "write", "OK", write_regs, emul_reset }, /* Write registers */
636         { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */
637         { "g", "sys_open", NULL, check_single_step },
638         { "sys_open", "OK", sw_break, }, /* set sw breakpoint */
639         { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */
640         { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */
641         { "", "", get_cont_catch, put_cont_catch },
642 };
643
644 /*
645  * Test for hitting a simple hw breakpoint
646  */
647 static struct test_struct hw_breakpoint_test[] = {
648         { "?", "S0*" }, /* Clear break points */
649         { "kgdbts_break_test", "OK", hw_break, }, /* set hw breakpoint */
650         { "c", "T0*", }, /* Continue */
651         { "g", "kgdbts_break_test", NULL, check_and_rewind_pc },
652         { "write", "OK", write_regs },
653         { "kgdbts_break_test", "OK", hw_rem_break }, /*remove breakpoint */
654         { "D", "OK" }, /* Detach */
655         { "D", "OK", NULL,  got_break }, /* On success we made it here */
656         { "", "" },
657 };
658
659 /*
660  * Test for hitting a hw write breakpoint
661  */
662 static struct test_struct hw_write_break_test[] = {
663         { "?", "S0*" }, /* Clear break points */
664         { "hw_break_val", "OK", hw_write_break, }, /* set hw breakpoint */
665         { "c", "T0*", NULL, got_break }, /* Continue */
666         { "g", "silent", NULL, check_and_rewind_pc },
667         { "write", "OK", write_regs },
668         { "hw_break_val", "OK", hw_rem_write_break }, /*remove breakpoint */
669         { "D", "OK" }, /* Detach */
670         { "D", "OK", NULL,  got_break }, /* On success we made it here */
671         { "", "" },
672 };
673
674 /*
675  * Test for hitting a hw access breakpoint
676  */
677 static struct test_struct hw_access_break_test[] = {
678         { "?", "S0*" }, /* Clear break points */
679         { "hw_break_val", "OK", hw_access_break, }, /* set hw breakpoint */
680         { "c", "T0*", NULL, got_break }, /* Continue */
681         { "g", "silent", NULL, check_and_rewind_pc },
682         { "write", "OK", write_regs },
683         { "hw_break_val", "OK", hw_rem_access_break }, /*remove breakpoint */
684         { "D", "OK" }, /* Detach */
685         { "D", "OK", NULL,  got_break }, /* On success we made it here */
686         { "", "" },
687 };
688
689 /*
690  * Test for hitting a hw access breakpoint
691  */
692 static struct test_struct nmi_sleep_test[] = {
693         { "?", "S0*" }, /* Clear break points */
694         { "c", "T0*", NULL, got_break }, /* Continue */
695         { "D", "OK" }, /* Detach */
696         { "D", "OK", NULL,  got_break }, /* On success we made it here */
697         { "", "" },
698 };
699
700 static void fill_get_buf(char *buf)
701 {
702         unsigned char checksum = 0;
703         int count = 0;
704         char ch;
705
706         strcpy(get_buf, "$");
707         strcat(get_buf, buf);
708         while ((ch = buf[count])) {
709                 checksum += ch;
710                 count++;
711         }
712         strcat(get_buf, "#");
713         get_buf[count + 2] = hex_asc_hi(checksum);
714         get_buf[count + 3] = hex_asc_lo(checksum);
715         get_buf[count + 4] = '\0';
716         v2printk("get%i: %s\n", ts.idx, get_buf);
717 }
718
719 static int validate_simple_test(char *put_str)
720 {
721         char *chk_str;
722
723         if (ts.tst[ts.idx].put_handler)
724                 return ts.tst[ts.idx].put_handler(put_str,
725                         ts.tst[ts.idx].put);
726
727         chk_str = ts.tst[ts.idx].put;
728         if (*put_str == '$')
729                 put_str++;
730
731         while (*chk_str != '\0' && *put_str != '\0') {
732                 /* If someone does a * to match the rest of the string, allow
733                  * it, or stop if the received string is complete.
734                  */
735                 if (*put_str == '#' || *chk_str == '*')
736                         return 0;
737                 if (*put_str != *chk_str)
738                         return 1;
739
740                 chk_str++;
741                 put_str++;
742         }
743         if (*chk_str == '\0' && (*put_str == '\0' || *put_str == '#'))
744                 return 0;
745
746         return 1;
747 }
748
749 static int run_simple_test(int is_get_char, int chr)
750 {
751         int ret = 0;
752         if (is_get_char) {
753                 /* Send an ACK on the get if a prior put completed and set the
754                  * send ack variable
755                  */
756                 if (send_ack) {
757                         send_ack = 0;
758                         return '+';
759                 }
760                 /* On the first get char, fill the transmit buffer and then
761                  * take from the get_string.
762                  */
763                 if (get_buf_cnt == 0) {
764                         if (ts.tst[ts.idx].get_handler)
765                                 ts.tst[ts.idx].get_handler(ts.tst[ts.idx].get);
766                         else
767                                 fill_get_buf(ts.tst[ts.idx].get);
768                 }
769
770                 if (get_buf[get_buf_cnt] == '\0') {
771                         eprintk("kgdbts: ERROR GET: EOB on '%s' at %i\n",
772                            ts.name, ts.idx);
773                         get_buf_cnt = 0;
774                         fill_get_buf("D");
775                 }
776                 ret = get_buf[get_buf_cnt];
777                 get_buf_cnt++;
778                 return ret;
779         }
780
781         /* This callback is a put char which is when kgdb sends data to
782          * this I/O module.
783          */
784         if (ts.tst[ts.idx].get[0] == '\0' && ts.tst[ts.idx].put[0] == '\0' &&
785             !ts.tst[ts.idx].get_handler) {
786                 eprintk("kgdbts: ERROR: beyond end of test on"
787                            " '%s' line %i\n", ts.name, ts.idx);
788                 return 0;
789         }
790
791         if (put_buf_cnt >= BUFMAX) {
792                 eprintk("kgdbts: ERROR: put buffer overflow on"
793                            " '%s' line %i\n", ts.name, ts.idx);
794                 put_buf_cnt = 0;
795                 return 0;
796         }
797         /* Ignore everything until the first valid packet start '$' */
798         if (put_buf_cnt == 0 && chr != '$')
799                 return 0;
800
801         put_buf[put_buf_cnt] = chr;
802         put_buf_cnt++;
803
804         /* End of packet == #XX so look for the '#' */
805         if (put_buf_cnt > 3 && put_buf[put_buf_cnt - 3] == '#') {
806                 if (put_buf_cnt >= BUFMAX) {
807                         eprintk("kgdbts: ERROR: put buffer overflow on"
808                                 " '%s' line %i\n", ts.name, ts.idx);
809                         put_buf_cnt = 0;
810                         return 0;
811                 }
812                 put_buf[put_buf_cnt] = '\0';
813                 v2printk("put%i: %s\n", ts.idx, put_buf);
814                 /* Trigger check here */
815                 if (ts.validate_put && ts.validate_put(put_buf)) {
816                         eprintk("kgdbts: ERROR PUT: end of test "
817                            "buffer on '%s' line %i expected %s got %s\n",
818                            ts.name, ts.idx, ts.tst[ts.idx].put, put_buf);
819                 }
820                 ts.idx++;
821                 put_buf_cnt = 0;
822                 get_buf_cnt = 0;
823                 send_ack = 1;
824         }
825         return 0;
826 }
827
828 static void init_simple_test(void)
829 {
830         memset(&ts, 0, sizeof(ts));
831         ts.run_test = run_simple_test;
832         ts.validate_put = validate_simple_test;
833 }
834
835 static void run_plant_and_detach_test(int is_early)
836 {
837         char before[BREAK_INSTR_SIZE];
838         char after[BREAK_INSTR_SIZE];
839
840         probe_kernel_read(before, (char *)kgdbts_break_test,
841           BREAK_INSTR_SIZE);
842         init_simple_test();
843         ts.tst = plant_and_detach_test;
844         ts.name = "plant_and_detach_test";
845         /* Activate test with initial breakpoint */
846         if (!is_early)
847                 kgdb_breakpoint();
848         probe_kernel_read(after, (char *)kgdbts_break_test,
849           BREAK_INSTR_SIZE);
850         if (memcmp(before, after, BREAK_INSTR_SIZE)) {
851                 printk(KERN_CRIT "kgdbts: ERROR kgdb corrupted memory\n");
852                 panic("kgdb memory corruption");
853         }
854
855         /* complete the detach test */
856         if (!is_early)
857                 kgdbts_break_test();
858 }
859
860 static void run_breakpoint_test(int is_hw_breakpoint)
861 {
862         test_complete = 0;
863         init_simple_test();
864         if (is_hw_breakpoint) {
865                 ts.tst = hw_breakpoint_test;
866                 ts.name = "hw_breakpoint_test";
867         } else {
868                 ts.tst = sw_breakpoint_test;
869                 ts.name = "sw_breakpoint_test";
870         }
871         /* Activate test with initial breakpoint */
872         kgdb_breakpoint();
873         /* run code with the break point in it */
874         kgdbts_break_test();
875         kgdb_breakpoint();
876
877         if (test_complete)
878                 return;
879
880         eprintk("kgdbts: ERROR %s test failed\n", ts.name);
881         if (is_hw_breakpoint)
882                 hwbreaks_ok = 0;
883 }
884
885 static void run_hw_break_test(int is_write_test)
886 {
887         test_complete = 0;
888         init_simple_test();
889         if (is_write_test) {
890                 ts.tst = hw_write_break_test;
891                 ts.name = "hw_write_break_test";
892         } else {
893                 ts.tst = hw_access_break_test;
894                 ts.name = "hw_access_break_test";
895         }
896         /* Activate test with initial breakpoint */
897         kgdb_breakpoint();
898         hw_break_val_access();
899         if (is_write_test) {
900                 if (test_complete == 2) {
901                         eprintk("kgdbts: ERROR %s broke on access\n",
902                                 ts.name);
903                         hwbreaks_ok = 0;
904                 }
905                 hw_break_val_write();
906         }
907         kgdb_breakpoint();
908
909         if (test_complete == 1)
910                 return;
911
912         eprintk("kgdbts: ERROR %s test failed\n", ts.name);
913         hwbreaks_ok = 0;
914 }
915
916 static void run_nmi_sleep_test(int nmi_sleep)
917 {
918         unsigned long flags;
919
920         init_simple_test();
921         ts.tst = nmi_sleep_test;
922         ts.name = "nmi_sleep_test";
923         /* Activate test with initial breakpoint */
924         kgdb_breakpoint();
925         local_irq_save(flags);
926         mdelay(nmi_sleep*1000);
927         touch_nmi_watchdog();
928         local_irq_restore(flags);
929         if (test_complete != 2)
930                 eprintk("kgdbts: ERROR nmi_test did not hit nmi\n");
931         kgdb_breakpoint();
932         if (test_complete == 1)
933                 return;
934
935         eprintk("kgdbts: ERROR %s test failed\n", ts.name);
936 }
937
938 static void run_bad_read_test(void)
939 {
940         init_simple_test();
941         ts.tst = bad_read_test;
942         ts.name = "bad_read_test";
943         /* Activate test with initial breakpoint */
944         kgdb_breakpoint();
945 }
946
947 static void run_do_fork_test(void)
948 {
949         init_simple_test();
950         ts.tst = do_fork_test;
951         ts.name = "do_fork_test";
952         /* Activate test with initial breakpoint */
953         kgdb_breakpoint();
954 }
955
956 static void run_sys_open_test(void)
957 {
958         init_simple_test();
959         ts.tst = sys_open_test;
960         ts.name = "sys_open_test";
961         /* Activate test with initial breakpoint */
962         kgdb_breakpoint();
963 }
964
965 static void run_singlestep_break_test(void)
966 {
967         init_simple_test();
968         ts.tst = singlestep_break_test;
969         ts.name = "singlestep_breakpoint_test";
970         /* Activate test with initial breakpoint */
971         kgdb_breakpoint();
972         kgdbts_break_test();
973         kgdbts_break_test();
974 }
975
976 static void kgdbts_run_tests(void)
977 {
978         char *ptr;
979         int fork_test = 0;
980         int do_sys_open_test = 0;
981         int sstep_test = 1000;
982         int nmi_sleep = 0;
983         int i;
984
985         verbose = 0;
986         if (strstr(config, "V1"))
987                 verbose = 1;
988         if (strstr(config, "V2"))
989                 verbose = 2;
990
991         ptr = strchr(config, 'F');
992         if (ptr)
993                 fork_test = simple_strtol(ptr + 1, NULL, 10);
994         ptr = strchr(config, 'S');
995         if (ptr)
996                 do_sys_open_test = simple_strtol(ptr + 1, NULL, 10);
997         ptr = strchr(config, 'N');
998         if (ptr)
999                 nmi_sleep = simple_strtol(ptr+1, NULL, 10);
1000         ptr = strchr(config, 'I');
1001         if (ptr)
1002                 sstep_test = simple_strtol(ptr+1, NULL, 10);
1003
1004         /* All HW break point tests */
1005         if (arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT) {
1006                 hwbreaks_ok = 1;
1007                 v1printk("kgdbts:RUN hw breakpoint test\n");
1008                 run_breakpoint_test(1);
1009                 v1printk("kgdbts:RUN hw write breakpoint test\n");
1010                 run_hw_break_test(1);
1011                 v1printk("kgdbts:RUN access write breakpoint test\n");
1012                 run_hw_break_test(0);
1013         }
1014
1015         /* required internal KGDB tests */
1016         v1printk("kgdbts:RUN plant and detach test\n");
1017         run_plant_and_detach_test(0);
1018         v1printk("kgdbts:RUN sw breakpoint test\n");
1019         run_breakpoint_test(0);
1020         v1printk("kgdbts:RUN bad memory access test\n");
1021         run_bad_read_test();
1022         v1printk("kgdbts:RUN singlestep test %i iterations\n", sstep_test);
1023         for (i = 0; i < sstep_test; i++) {
1024                 run_singlestep_break_test();
1025                 if (i % 100 == 0)
1026                         v1printk("kgdbts:RUN singlestep [%i/%i]\n",
1027                                  i, sstep_test);
1028         }
1029
1030         /* ===Optional tests=== */
1031
1032         if (nmi_sleep) {
1033                 v1printk("kgdbts:RUN NMI sleep %i seconds test\n", nmi_sleep);
1034                 run_nmi_sleep_test(nmi_sleep);
1035         }
1036
1037         /* If the do_fork test is run it will be the last test that is
1038          * executed because a kernel thread will be spawned at the very
1039          * end to unregister the debug hooks.
1040          */
1041         if (fork_test) {
1042                 repeat_test = fork_test;
1043                 printk(KERN_INFO "kgdbts:RUN do_fork for %i breakpoints\n",
1044                         repeat_test);
1045                 kthread_run(kgdbts_unreg_thread, NULL, "kgdbts_unreg");
1046                 run_do_fork_test();
1047                 return;
1048         }
1049
1050         /* If the sys_open test is run it will be the last test that is
1051          * executed because a kernel thread will be spawned at the very
1052          * end to unregister the debug hooks.
1053          */
1054         if (do_sys_open_test) {
1055                 repeat_test = do_sys_open_test;
1056                 printk(KERN_INFO "kgdbts:RUN sys_open for %i breakpoints\n",
1057                         repeat_test);
1058                 kthread_run(kgdbts_unreg_thread, NULL, "kgdbts_unreg");
1059                 run_sys_open_test();
1060                 return;
1061         }
1062         /* Shutdown and unregister */
1063         kgdb_unregister_io_module(&kgdbts_io_ops);
1064         configured = 0;
1065 }
1066
1067 static int kgdbts_option_setup(char *opt)
1068 {
1069         if (strlen(opt) >= MAX_CONFIG_LEN) {
1070                 printk(KERN_ERR "kgdbts: config string too long\n");
1071                 return -ENOSPC;
1072         }
1073         strcpy(config, opt);
1074         return 0;
1075 }
1076
1077 __setup("kgdbts=", kgdbts_option_setup);
1078
1079 static int configure_kgdbts(void)
1080 {
1081         int err = 0;
1082
1083         if (!strlen(config) || isspace(config[0]))
1084                 goto noconfig;
1085
1086         final_ack = 0;
1087         run_plant_and_detach_test(1);
1088
1089         err = kgdb_register_io_module(&kgdbts_io_ops);
1090         if (err) {
1091                 configured = 0;
1092                 return err;
1093         }
1094         configured = 1;
1095         kgdbts_run_tests();
1096
1097         return err;
1098
1099 noconfig:
1100         config[0] = 0;
1101         configured = 0;
1102
1103         return err;
1104 }
1105
1106 static int __init init_kgdbts(void)
1107 {
1108         /* Already configured? */
1109         if (configured == 1)
1110                 return 0;
1111
1112         return configure_kgdbts();
1113 }
1114 device_initcall(init_kgdbts);
1115
1116 static int kgdbts_get_char(void)
1117 {
1118         int val = 0;
1119
1120         if (ts.run_test)
1121                 val = ts.run_test(1, 0);
1122
1123         return val;
1124 }
1125
1126 static void kgdbts_put_char(u8 chr)
1127 {
1128         if (ts.run_test)
1129                 ts.run_test(0, chr);
1130 }
1131
1132 static int param_set_kgdbts_var(const char *kmessage, struct kernel_param *kp)
1133 {
1134         size_t len = strlen(kmessage);
1135
1136         if (len >= MAX_CONFIG_LEN) {
1137                 printk(KERN_ERR "kgdbts: config string too long\n");
1138                 return -ENOSPC;
1139         }
1140
1141         /* Only copy in the string if the init function has not run yet */
1142         if (configured < 0) {
1143                 strcpy(config, kmessage);
1144                 return 0;
1145         }
1146
1147         if (configured == 1) {
1148                 printk(KERN_ERR "kgdbts: ERROR: Already configured and running.\n");
1149                 return -EBUSY;
1150         }
1151
1152         strcpy(config, kmessage);
1153         /* Chop out \n char as a result of echo */
1154         if (len && config[len - 1] == '\n')
1155                 config[len - 1] = '\0';
1156
1157         /* Go and configure with the new params. */
1158         return configure_kgdbts();
1159 }
1160
1161 static void kgdbts_pre_exp_handler(void)
1162 {
1163         /* Increment the module count when the debugger is active */
1164         if (!kgdb_connected)
1165                 try_module_get(THIS_MODULE);
1166 }
1167
1168 static void kgdbts_post_exp_handler(void)
1169 {
1170         /* decrement the module count when the debugger detaches */
1171         if (!kgdb_connected)
1172                 module_put(THIS_MODULE);
1173 }
1174
1175 static struct kgdb_io kgdbts_io_ops = {
1176         .name                   = "kgdbts",
1177         .read_char              = kgdbts_get_char,
1178         .write_char             = kgdbts_put_char,
1179         .pre_exception          = kgdbts_pre_exp_handler,
1180         .post_exception         = kgdbts_post_exp_handler,
1181 };
1182
1183 /*
1184  * not really modular, but the easiest way to keep compat with existing
1185  * bootargs behaviour is to continue using module_param here.
1186  */
1187 module_param_call(kgdbts, param_set_kgdbts_var, param_get_string, &kps, 0644);
1188 MODULE_PARM_DESC(kgdbts, "<A|V1|V2>[F#|S#][N#]");