1
2
3
4
5
6
7
8
9
10
11
12#include <linux/types.h>
13#include <linux/ctype.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/kdev_t.h>
17#include <linux/console.h>
18#include <linux/string.h>
19#include <linux/sched.h>
20#include <linux/smp.h>
21#include <linux/nmi.h>
22#include <linux/delay.h>
23#include <linux/kgdb.h>
24#include <linux/kdb.h>
25#include <linux/kallsyms.h>
26#include "kdb_private.h"
27
28#define CMD_BUFLEN 256
29char kdb_prompt_str[CMD_BUFLEN];
30
31int kdb_trap_printk;
32int kdb_printf_cpu = -1;
33
34static int kgdb_transition_check(char *buffer)
35{
36 if (buffer[0] != '+' && buffer[0] != '$') {
37 KDB_STATE_SET(KGDB_TRANS);
38 kdb_printf("%s", buffer);
39 } else {
40 int slen = strlen(buffer);
41 if (slen > 3 && buffer[slen - 3] == '#') {
42 kdb_gdb_state_pass(buffer);
43 strcpy(buffer, "kgdb");
44 KDB_STATE_SET(DOING_KGDB);
45 return 1;
46 }
47 }
48 return 0;
49}
50
51
52
53
54
55
56
57
58
59
60
61static int kdb_handle_escape(char *buf, size_t sz)
62{
63 char *lastkey = buf + sz - 1;
64
65 switch (sz) {
66 case 1:
67 if (*lastkey == '\e')
68 return 0;
69 break;
70
71 case 2:
72 if (*lastkey == '[')
73 return 0;
74 break;
75
76 case 3:
77 switch (*lastkey) {
78 case 'A':
79 return 16;
80 case 'B':
81 return 14;
82 case 'C':
83 return 6;
84 case 'D':
85 return 2;
86 case '1':
87 case '3':
88 case '4':
89 return 0;
90 }
91 break;
92
93 case 4:
94 if (*lastkey == '~') {
95 switch (buf[2]) {
96 case '1':
97 return 1;
98 case '3':
99 return 4;
100 case '4':
101 return 5;
102 }
103 }
104 break;
105 }
106
107 return -1;
108}
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125char kdb_getchar(void)
126{
127#define ESCAPE_UDELAY 1000
128#define ESCAPE_DELAY (2*1000000/ESCAPE_UDELAY)
129 char buf[4];
130 char *pbuf = buf;
131 int escape_delay = 0;
132 get_char_func *f, *f_prev = NULL;
133 int key;
134
135 for (f = &kdb_poll_funcs[0]; ; ++f) {
136 if (*f == NULL) {
137
138 touch_nmi_watchdog();
139 f = &kdb_poll_funcs[0];
140 }
141
142 key = (*f)();
143 if (key == -1) {
144 if (escape_delay) {
145 udelay(ESCAPE_UDELAY);
146 if (--escape_delay == 0)
147 return '\e';
148 }
149 continue;
150 }
151
152
153
154
155
156
157 if (f_prev != f) {
158 f_prev = f;
159 pbuf = buf;
160 escape_delay = ESCAPE_DELAY;
161 }
162
163 *pbuf++ = key;
164 key = kdb_handle_escape(buf, pbuf - buf);
165 if (key < 0)
166 return buf[pbuf - buf == 2 ? 1 : 0];
167 if (key > 0)
168 return key;
169 }
170
171 unreachable();
172}
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195static char *kdb_read(char *buffer, size_t bufsize)
196{
197 char *cp = buffer;
198 char *bufend = buffer+bufsize-2;
199
200 char *lastchar;
201 char *p_tmp;
202 char tmp;
203 static char tmpbuffer[CMD_BUFLEN];
204 int len = strlen(buffer);
205 int len_tmp;
206 int tab = 0;
207 int count;
208 int i;
209 int diag, dtab_count;
210 int key, buf_size, ret;
211
212
213 diag = kdbgetintenv("DTABCOUNT", &dtab_count);
214 if (diag)
215 dtab_count = 30;
216
217 if (len > 0) {
218 cp += len;
219 if (*(buffer+len-1) == '\n')
220 cp--;
221 }
222
223 lastchar = cp;
224 *cp = '\0';
225 kdb_printf("%s", buffer);
226poll_again:
227 key = kdb_getchar();
228 if (key != 9)
229 tab = 0;
230 switch (key) {
231 case 8:
232 if (cp > buffer) {
233 if (cp < lastchar) {
234 memcpy(tmpbuffer, cp, lastchar - cp);
235 memcpy(cp-1, tmpbuffer, lastchar - cp);
236 }
237 *(--lastchar) = '\0';
238 --cp;
239 kdb_printf("\b%s \r", cp);
240 tmp = *cp;
241 *cp = '\0';
242 kdb_printf(kdb_prompt_str);
243 kdb_printf("%s", buffer);
244 *cp = tmp;
245 }
246 break;
247 case 13:
248 *lastchar++ = '\n';
249 *lastchar++ = '\0';
250 if (!KDB_STATE(KGDB_TRANS)) {
251 KDB_STATE_SET(KGDB_TRANS);
252 kdb_printf("%s", buffer);
253 }
254 kdb_printf("\n");
255 return buffer;
256 case 4:
257 if (cp < lastchar) {
258 memcpy(tmpbuffer, cp+1, lastchar - cp - 1);
259 memcpy(cp, tmpbuffer, lastchar - cp - 1);
260 *(--lastchar) = '\0';
261 kdb_printf("%s \r", cp);
262 tmp = *cp;
263 *cp = '\0';
264 kdb_printf(kdb_prompt_str);
265 kdb_printf("%s", buffer);
266 *cp = tmp;
267 }
268 break;
269 case 1:
270 if (cp > buffer) {
271 kdb_printf("\r");
272 kdb_printf(kdb_prompt_str);
273 cp = buffer;
274 }
275 break;
276 case 5:
277 if (cp < lastchar) {
278 kdb_printf("%s", cp);
279 cp = lastchar;
280 }
281 break;
282 case 2:
283 if (cp > buffer) {
284 kdb_printf("\b");
285 --cp;
286 }
287 break;
288 case 14:
289 memset(tmpbuffer, ' ',
290 strlen(kdb_prompt_str) + (lastchar-buffer));
291 *(tmpbuffer+strlen(kdb_prompt_str) +
292 (lastchar-buffer)) = '\0';
293 kdb_printf("\r%s\r", tmpbuffer);
294 *lastchar = (char)key;
295 *(lastchar+1) = '\0';
296 return lastchar;
297 case 6:
298 if (cp < lastchar) {
299 kdb_printf("%c", *cp);
300 ++cp;
301 }
302 break;
303 case 16:
304 memset(tmpbuffer, ' ',
305 strlen(kdb_prompt_str) + (lastchar-buffer));
306 *(tmpbuffer+strlen(kdb_prompt_str) +
307 (lastchar-buffer)) = '\0';
308 kdb_printf("\r%s\r", tmpbuffer);
309 *lastchar = (char)key;
310 *(lastchar+1) = '\0';
311 return lastchar;
312 case 9:
313 if (tab < 2)
314 ++tab;
315 p_tmp = buffer;
316 while (*p_tmp == ' ')
317 p_tmp++;
318 if (p_tmp > cp)
319 break;
320 memcpy(tmpbuffer, p_tmp, cp-p_tmp);
321 *(tmpbuffer + (cp-p_tmp)) = '\0';
322 p_tmp = strrchr(tmpbuffer, ' ');
323 if (p_tmp)
324 ++p_tmp;
325 else
326 p_tmp = tmpbuffer;
327 len = strlen(p_tmp);
328 buf_size = sizeof(tmpbuffer) - (p_tmp - tmpbuffer);
329 count = kallsyms_symbol_complete(p_tmp, buf_size);
330 if (tab == 2 && count > 0) {
331 kdb_printf("\n%d symbols are found.", count);
332 if (count > dtab_count) {
333 count = dtab_count;
334 kdb_printf(" But only first %d symbols will"
335 " be printed.\nYou can change the"
336 " environment variable DTABCOUNT.",
337 count);
338 }
339 kdb_printf("\n");
340 for (i = 0; i < count; i++) {
341 ret = kallsyms_symbol_next(p_tmp, i, buf_size);
342 if (WARN_ON(!ret))
343 break;
344 if (ret != -E2BIG)
345 kdb_printf("%s ", p_tmp);
346 else
347 kdb_printf("%s... ", p_tmp);
348 *(p_tmp + len) = '\0';
349 }
350 if (i >= dtab_count)
351 kdb_printf("...");
352 kdb_printf("\n");
353 kdb_printf(kdb_prompt_str);
354 kdb_printf("%s", buffer);
355 } else if (tab != 2 && count > 0) {
356 len_tmp = strlen(p_tmp);
357 strncpy(p_tmp+len_tmp, cp, lastchar-cp+1);
358 len_tmp = strlen(p_tmp);
359 strncpy(cp, p_tmp+len, len_tmp-len + 1);
360 len = len_tmp - len;
361 kdb_printf("%s", cp);
362 cp += len;
363 lastchar += len;
364 }
365 kdb_nextline = 1;
366 break;
367 default:
368 if (key >= 32 && lastchar < bufend) {
369 if (cp < lastchar) {
370 memcpy(tmpbuffer, cp, lastchar - cp);
371 memcpy(cp+1, tmpbuffer, lastchar - cp);
372 *++lastchar = '\0';
373 *cp = key;
374 kdb_printf("%s\r", cp);
375 ++cp;
376 tmp = *cp;
377 *cp = '\0';
378 kdb_printf(kdb_prompt_str);
379 kdb_printf("%s", buffer);
380 *cp = tmp;
381 } else {
382 *++lastchar = '\0';
383 *cp++ = key;
384
385
386
387
388 if (!KDB_STATE(KGDB_TRANS)) {
389 if (kgdb_transition_check(buffer))
390 return buffer;
391 } else {
392 kdb_printf("%c", key);
393 }
394 }
395
396 if (lastchar - buffer >= 5 &&
397 strcmp(lastchar - 5, "$?#3f") == 0) {
398 kdb_gdb_state_pass(lastchar - 5);
399 strcpy(buffer, "kgdb");
400 KDB_STATE_SET(DOING_KGDB);
401 return buffer;
402 }
403 if (lastchar - buffer >= 11 &&
404 strcmp(lastchar - 11, "$qSupported") == 0) {
405 kdb_gdb_state_pass(lastchar - 11);
406 strcpy(buffer, "kgdb");
407 KDB_STATE_SET(DOING_KGDB);
408 return buffer;
409 }
410 }
411 break;
412 }
413 goto poll_again;
414}
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435char *kdb_getstr(char *buffer, size_t bufsize, const char *prompt)
436{
437 if (prompt && kdb_prompt_str != prompt)
438 strscpy(kdb_prompt_str, prompt, CMD_BUFLEN);
439 kdb_printf(kdb_prompt_str);
440 kdb_nextline = 1;
441 return kdb_read(buffer, bufsize);
442}
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461static void kdb_input_flush(void)
462{
463 get_char_func *f;
464 int res;
465 int flush_delay = 1;
466 while (flush_delay) {
467 flush_delay--;
468empty:
469 touch_nmi_watchdog();
470 for (f = &kdb_poll_funcs[0]; *f; ++f) {
471 res = (*f)();
472 if (res != -1) {
473 flush_delay = 1;
474 goto empty;
475 }
476 }
477 if (flush_delay)
478 mdelay(1);
479 }
480}
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503static char kdb_buffer[256];
504static char *next_avail = kdb_buffer;
505static int size_avail;
506static int suspend_grep;
507
508
509
510
511
512
513
514static int kdb_search_string(char *searched, char *searchfor)
515{
516 char firstchar, *cp;
517 int len1, len2;
518
519
520 len1 = strlen(searched)-1;
521 len2 = strlen(searchfor);
522 if (len1 < len2)
523 return 0;
524 if (kdb_grep_leading && kdb_grep_trailing && len1 != len2)
525 return 0;
526 if (kdb_grep_leading) {
527 if (!strncmp(searched, searchfor, len2))
528 return 1;
529 } else if (kdb_grep_trailing) {
530 if (!strncmp(searched+len1-len2, searchfor, len2))
531 return 1;
532 } else {
533 firstchar = *searchfor;
534 cp = searched;
535 while ((cp = strchr(cp, firstchar))) {
536 if (!strncmp(cp, searchfor, len2))
537 return 1;
538 cp++;
539 }
540 }
541 return 0;
542}
543
544static void kdb_msg_write(const char *msg, int msg_len)
545{
546 struct console *c;
547 const char *cp;
548 int len;
549
550 if (msg_len == 0)
551 return;
552
553 cp = msg;
554 len = msg_len;
555
556 while (len--) {
557 dbg_io_ops->write_char(*cp);
558 cp++;
559 }
560
561 for_each_console(c) {
562 if (!(c->flags & CON_ENABLED))
563 continue;
564 if (c == dbg_io_ops->cons)
565 continue;
566
567
568
569
570
571
572
573
574
575 ++oops_in_progress;
576 c->write(c, msg, msg_len);
577 --oops_in_progress;
578 touch_nmi_watchdog();
579 }
580}
581
582int vkdb_printf(enum kdb_msgsrc src, const char *fmt, va_list ap)
583{
584 int diag;
585 int linecount;
586 int colcount;
587 int logging, saved_loglevel = 0;
588 int retlen = 0;
589 int fnd, len;
590 int this_cpu, old_cpu;
591 char *cp, *cp2, *cphold = NULL, replaced_byte = ' ';
592 char *moreprompt = "more> ";
593 unsigned long flags;
594
595
596
597
598
599 local_irq_save(flags);
600 this_cpu = smp_processor_id();
601 for (;;) {
602 old_cpu = cmpxchg(&kdb_printf_cpu, -1, this_cpu);
603 if (old_cpu == -1 || old_cpu == this_cpu)
604 break;
605
606 cpu_relax();
607 }
608
609 diag = kdbgetintenv("LINES", &linecount);
610 if (diag || linecount <= 1)
611 linecount = 24;
612
613 diag = kdbgetintenv("COLUMNS", &colcount);
614 if (diag || colcount <= 1)
615 colcount = 80;
616
617 diag = kdbgetintenv("LOGGING", &logging);
618 if (diag)
619 logging = 0;
620
621 if (!kdb_grepping_flag || suspend_grep) {
622
623 next_avail = kdb_buffer;
624 size_avail = sizeof(kdb_buffer);
625 }
626 vsnprintf(next_avail, size_avail, fmt, ap);
627
628
629
630
631
632
633
634
635
636
637 if (!suspend_grep && kdb_grepping_flag) {
638 cp = strchr(kdb_buffer, '\n');
639 if (!cp) {
640
641
642
643
644
645
646
647
648
649
650
651
652
653 if (next_avail == kdb_buffer) {
654
655
656
657
658
659 cp2 = kdb_buffer;
660 len = strlen(kdb_prompt_str);
661 if (!strncmp(cp2, kdb_prompt_str, len)) {
662
663
664
665
666
667 kdb_grepping_flag = 0;
668 goto kdb_printit;
669 }
670 }
671
672
673 len = strlen(kdb_buffer);
674 next_avail = kdb_buffer + len;
675 size_avail = sizeof(kdb_buffer) - len;
676 goto kdb_print_out;
677 }
678
679
680
681
682
683 cp++;
684 replaced_byte = *cp;
685 cphold = cp;
686 *cp = '\0';
687
688
689
690
691
692
693 fnd = kdb_search_string(kdb_buffer, kdb_grep_string);
694 if (!fnd) {
695
696
697
698
699
700
701 *cphold = replaced_byte;
702 strcpy(kdb_buffer, cphold);
703 len = strlen(kdb_buffer);
704 next_avail = kdb_buffer + len;
705 size_avail = sizeof(kdb_buffer) - len;
706 goto kdb_print_out;
707 }
708 if (kdb_grepping_flag >= KDB_GREPPING_FLAG_SEARCH) {
709
710
711
712
713
714
715 *cphold = replaced_byte;
716 kdb_grepping_flag = 0;
717 }
718
719
720
721
722 }
723kdb_printit:
724
725
726
727
728 retlen = strlen(kdb_buffer);
729 cp = (char *) printk_skip_headers(kdb_buffer);
730 if (!dbg_kdb_mode && kgdb_connected)
731 gdbstub_msg_write(cp, retlen - (cp - kdb_buffer));
732 else
733 kdb_msg_write(cp, retlen - (cp - kdb_buffer));
734
735 if (logging) {
736 saved_loglevel = console_loglevel;
737 console_loglevel = CONSOLE_LOGLEVEL_SILENT;
738 if (printk_get_level(kdb_buffer) || src == KDB_MSGSRC_PRINTK)
739 printk("%s", kdb_buffer);
740 else
741 pr_info("%s", kdb_buffer);
742 }
743
744 if (KDB_STATE(PAGER)) {
745
746
747
748
749
750 int got = 0;
751 len = retlen;
752 while (len--) {
753 if (kdb_buffer[len] == '\n') {
754 kdb_nextline++;
755 got = 0;
756 } else if (kdb_buffer[len] == '\r') {
757 got = 0;
758 } else {
759 got++;
760 }
761 }
762 kdb_nextline += got / (colcount + 1);
763 }
764
765
766 if (kdb_nextline >= linecount) {
767 char ch;
768
769
770
771
772
773 kdb_nextline = 1;
774
775
776
777
778 moreprompt = kdbgetenv("MOREPROMPT");
779 if (moreprompt == NULL)
780 moreprompt = "more> ";
781
782 kdb_input_flush();
783 kdb_msg_write(moreprompt, strlen(moreprompt));
784
785 if (logging)
786 printk("%s", moreprompt);
787
788 ch = kdb_getchar();
789 kdb_nextline = 1;
790
791
792 kdb_buffer[0] = '\0';
793 next_avail = kdb_buffer;
794 size_avail = sizeof(kdb_buffer);
795 if ((ch == 'q') || (ch == 'Q')) {
796
797 KDB_FLAG_SET(CMD_INTERRUPT);
798 KDB_STATE_CLEAR(PAGER);
799
800 kdb_grepping_flag = 0;
801 kdb_printf("\n");
802 } else if (ch == ' ') {
803 kdb_printf("\r");
804 suspend_grep = 1;
805 } else if (ch == '\n' || ch == '\r') {
806 kdb_nextline = linecount - 1;
807 kdb_printf("\r");
808 suspend_grep = 1;
809 } else if (ch == '/' && !kdb_grepping_flag) {
810 kdb_printf("\r");
811 kdb_getstr(kdb_grep_string, KDB_GREP_STRLEN,
812 kdbgetenv("SEARCHPROMPT") ?: "search> ");
813 *strchrnul(kdb_grep_string, '\n') = '\0';
814 kdb_grepping_flag += KDB_GREPPING_FLAG_SEARCH;
815 suspend_grep = 1;
816 } else if (ch) {
817
818 suspend_grep = 1;
819 if (ch != '/')
820 kdb_printf(
821 "\nOnly 'q', 'Q' or '/' are processed at "
822 "more prompt, input ignored\n");
823 else
824 kdb_printf("\n'/' cannot be used during | "
825 "grep filtering, input ignored\n");
826 } else if (kdb_grepping_flag) {
827
828 suspend_grep = 1;
829 kdb_printf("\n");
830 }
831 kdb_input_flush();
832 }
833
834
835
836
837
838
839
840 if (kdb_grepping_flag && !suspend_grep) {
841 *cphold = replaced_byte;
842 strcpy(kdb_buffer, cphold);
843 len = strlen(kdb_buffer);
844 next_avail = kdb_buffer + len;
845 size_avail = sizeof(kdb_buffer) - len;
846 }
847
848kdb_print_out:
849 suspend_grep = 0;
850 if (logging)
851 console_loglevel = saved_loglevel;
852
853 smp_store_release(&kdb_printf_cpu, old_cpu);
854 local_irq_restore(flags);
855 return retlen;
856}
857
858int kdb_printf(const char *fmt, ...)
859{
860 va_list ap;
861 int r;
862
863 va_start(ap, fmt);
864 r = vkdb_printf(KDB_MSGSRC_INTERNAL, fmt, ap);
865 va_end(ap);
866
867 return r;
868}
869EXPORT_SYMBOL_GPL(kdb_printf);
870