kdb: Remove all references to DOING_KGDB2
[deliverable/linux.git] / kernel / debug / kdb / kdb_io.c
CommitLineData
5d5314d6
JW
1/*
2 * Kernel Debugger Architecture Independent Console I/O handler
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (c) 1999-2006 Silicon Graphics, Inc. All Rights Reserved.
9 * Copyright (c) 2009 Wind River Systems, Inc. All Rights Reserved.
10 */
11
12#include <linux/module.h>
13#include <linux/types.h>
14#include <linux/ctype.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/kdev_t.h>
18#include <linux/console.h>
19#include <linux/string.h>
20#include <linux/sched.h>
21#include <linux/smp.h>
22#include <linux/nmi.h>
23#include <linux/delay.h>
a0de055c 24#include <linux/kgdb.h>
5d5314d6
JW
25#include <linux/kdb.h>
26#include <linux/kallsyms.h>
27#include "kdb_private.h"
28
29#define CMD_BUFLEN 256
30char kdb_prompt_str[CMD_BUFLEN];
31
d37d39ae 32int kdb_trap_printk;
5d5314d6
JW
33
34static void kgdb_transition_check(char *buffer)
35{
36 int slen = strlen(buffer);
37 if (strncmp(buffer, "$?#3f", slen) != 0 &&
f679c498
JW
38 strncmp(buffer, "$qSupported", slen) != 0 &&
39 strncmp(buffer, "+$qSupported", slen) != 0) {
5d5314d6
JW
40 KDB_STATE_SET(KGDB_TRANS);
41 kdb_printf("%s", buffer);
42 }
43}
44
45static int kdb_read_get_key(char *buffer, size_t bufsize)
46{
47#define ESCAPE_UDELAY 1000
48#define ESCAPE_DELAY (2*1000000/ESCAPE_UDELAY) /* 2 seconds worth of udelays */
49 char escape_data[5]; /* longest vt100 escape sequence is 4 bytes */
50 char *ped = escape_data;
51 int escape_delay = 0;
52 get_char_func *f, *f_escape = NULL;
53 int key;
54
55 for (f = &kdb_poll_funcs[0]; ; ++f) {
56 if (*f == NULL) {
57 /* Reset NMI watchdog once per poll loop */
58 touch_nmi_watchdog();
59 f = &kdb_poll_funcs[0];
60 }
61 if (escape_delay == 2) {
62 *ped = '\0';
63 ped = escape_data;
64 --escape_delay;
65 }
66 if (escape_delay == 1) {
67 key = *ped++;
68 if (!*ped)
69 --escape_delay;
70 break;
71 }
72 key = (*f)();
73 if (key == -1) {
74 if (escape_delay) {
75 udelay(ESCAPE_UDELAY);
76 --escape_delay;
77 }
78 continue;
79 }
80 if (bufsize <= 2) {
81 if (key == '\r')
82 key = '\n';
83 *buffer++ = key;
84 *buffer = '\0';
85 return -1;
86 }
87 if (escape_delay == 0 && key == '\e') {
88 escape_delay = ESCAPE_DELAY;
89 ped = escape_data;
90 f_escape = f;
91 }
92 if (escape_delay) {
93 *ped++ = key;
94 if (f_escape != f) {
95 escape_delay = 2;
96 continue;
97 }
98 if (ped - escape_data == 1) {
99 /* \e */
100 continue;
101 } else if (ped - escape_data == 2) {
102 /* \e<something> */
103 if (key != '[')
104 escape_delay = 2;
105 continue;
106 } else if (ped - escape_data == 3) {
107 /* \e[<something> */
108 int mapkey = 0;
109 switch (key) {
110 case 'A': /* \e[A, up arrow */
111 mapkey = 16;
112 break;
113 case 'B': /* \e[B, down arrow */
114 mapkey = 14;
115 break;
116 case 'C': /* \e[C, right arrow */
117 mapkey = 6;
118 break;
119 case 'D': /* \e[D, left arrow */
120 mapkey = 2;
121 break;
122 case '1': /* dropthrough */
123 case '3': /* dropthrough */
124 /* \e[<1,3,4>], may be home, del, end */
125 case '4':
126 mapkey = -1;
127 break;
128 }
129 if (mapkey != -1) {
130 if (mapkey > 0) {
131 escape_data[0] = mapkey;
132 escape_data[1] = '\0';
133 }
134 escape_delay = 2;
135 }
136 continue;
137 } else if (ped - escape_data == 4) {
138 /* \e[<1,3,4><something> */
139 int mapkey = 0;
140 if (key == '~') {
141 switch (escape_data[2]) {
142 case '1': /* \e[1~, home */
143 mapkey = 1;
144 break;
145 case '3': /* \e[3~, del */
146 mapkey = 4;
147 break;
148 case '4': /* \e[4~, end */
149 mapkey = 5;
150 break;
151 }
152 }
153 if (mapkey > 0) {
154 escape_data[0] = mapkey;
155 escape_data[1] = '\0';
156 }
157 escape_delay = 2;
158 continue;
159 }
160 }
161 break; /* A key to process */
162 }
163 return key;
164}
165
166/*
167 * kdb_read
168 *
169 * This function reads a string of characters, terminated by
170 * a newline, or by reaching the end of the supplied buffer,
171 * from the current kernel debugger console device.
172 * Parameters:
173 * buffer - Address of character buffer to receive input characters.
174 * bufsize - size, in bytes, of the character buffer
175 * Returns:
176 * Returns a pointer to the buffer containing the received
177 * character string. This string will be terminated by a
178 * newline character.
179 * Locking:
180 * No locks are required to be held upon entry to this
181 * function. It is not reentrant - it relies on the fact
182 * that while kdb is running on only one "master debug" cpu.
183 * Remarks:
184 *
185 * The buffer size must be >= 2. A buffer size of 2 means that the caller only
186 * wants a single key.
187 *
188 * An escape key could be the start of a vt100 control sequence such as \e[D
189 * (left arrow) or it could be a character in its own right. The standard
190 * method for detecting the difference is to wait for 2 seconds to see if there
191 * are any other characters. kdb is complicated by the lack of a timer service
192 * (interrupts are off), by multiple input sources and by the need to sometimes
193 * return after just one key. Escape sequence processing has to be done as
194 * states in the polling loop.
195 */
196
197static char *kdb_read(char *buffer, size_t bufsize)
198{
199 char *cp = buffer;
200 char *bufend = buffer+bufsize-2; /* Reserve space for newline
201 * and null byte */
202 char *lastchar;
203 char *p_tmp;
204 char tmp;
205 static char tmpbuffer[CMD_BUFLEN];
206 int len = strlen(buffer);
207 int len_tmp;
208 int tab = 0;
209 int count;
210 int i;
211 int diag, dtab_count;
212 int key;
213
214
215 diag = kdbgetintenv("DTABCOUNT", &dtab_count);
216 if (diag)
217 dtab_count = 30;
218
219 if (len > 0) {
220 cp += len;
221 if (*(buffer+len-1) == '\n')
222 cp--;
223 }
224
225 lastchar = cp;
226 *cp = '\0';
227 kdb_printf("%s", buffer);
228poll_again:
229 key = kdb_read_get_key(buffer, bufsize);
230 if (key == -1)
231 return buffer;
232 if (key != 9)
233 tab = 0;
234 switch (key) {
235 case 8: /* backspace */
236 if (cp > buffer) {
237 if (cp < lastchar) {
238 memcpy(tmpbuffer, cp, lastchar - cp);
239 memcpy(cp-1, tmpbuffer, lastchar - cp);
240 }
241 *(--lastchar) = '\0';
242 --cp;
243 kdb_printf("\b%s \r", cp);
244 tmp = *cp;
245 *cp = '\0';
246 kdb_printf(kdb_prompt_str);
247 kdb_printf("%s", buffer);
248 *cp = tmp;
249 }
250 break;
251 case 13: /* enter */
252 *lastchar++ = '\n';
253 *lastchar++ = '\0';
254 kdb_printf("\n");
255 return buffer;
256 case 4: /* Del */
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: /* Home */
270 if (cp > buffer) {
271 kdb_printf("\r");
272 kdb_printf(kdb_prompt_str);
273 cp = buffer;
274 }
275 break;
276 case 5: /* End */
277 if (cp < lastchar) {
278 kdb_printf("%s", cp);
279 cp = lastchar;
280 }
281 break;
282 case 2: /* Left */
283 if (cp > buffer) {
284 kdb_printf("\b");
285 --cp;
286 }
287 break;
288 case 14: /* Down */
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: /* Right */
298 if (cp < lastchar) {
299 kdb_printf("%c", *cp);
300 ++cp;
301 }
302 break;
303 case 16: /* Up */
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: /* Tab */
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 count = kallsyms_symbol_complete(p_tmp,
329 sizeof(tmpbuffer) -
330 (p_tmp - tmpbuffer));
331 if (tab == 2 && count > 0) {
332 kdb_printf("\n%d symbols are found.", count);
333 if (count > dtab_count) {
334 count = dtab_count;
335 kdb_printf(" But only first %d symbols will"
336 " be printed.\nYou can change the"
337 " environment variable DTABCOUNT.",
338 count);
339 }
340 kdb_printf("\n");
341 for (i = 0; i < count; i++) {
342 if (kallsyms_symbol_next(p_tmp, i) < 0)
343 break;
344 kdb_printf("%s ", p_tmp);
345 *(p_tmp + len) = '\0';
346 }
347 if (i >= dtab_count)
348 kdb_printf("...");
349 kdb_printf("\n");
350 kdb_printf(kdb_prompt_str);
351 kdb_printf("%s", buffer);
352 } else if (tab != 2 && count > 0) {
353 len_tmp = strlen(p_tmp);
354 strncpy(p_tmp+len_tmp, cp, lastchar-cp+1);
355 len_tmp = strlen(p_tmp);
356 strncpy(cp, p_tmp+len, len_tmp-len + 1);
357 len = len_tmp - len;
358 kdb_printf("%s", cp);
359 cp += len;
360 lastchar += len;
361 }
362 kdb_nextline = 1; /* reset output line number */
363 break;
364 default:
365 if (key >= 32 && lastchar < bufend) {
366 if (cp < lastchar) {
367 memcpy(tmpbuffer, cp, lastchar - cp);
368 memcpy(cp+1, tmpbuffer, lastchar - cp);
369 *++lastchar = '\0';
370 *cp = key;
371 kdb_printf("%s\r", cp);
372 ++cp;
373 tmp = *cp;
374 *cp = '\0';
375 kdb_printf(kdb_prompt_str);
376 kdb_printf("%s", buffer);
377 *cp = tmp;
378 } else {
379 *++lastchar = '\0';
380 *cp++ = key;
381 /* The kgdb transition check will hide
382 * printed characters if we think that
383 * kgdb is connecting, until the check
384 * fails */
385 if (!KDB_STATE(KGDB_TRANS))
386 kgdb_transition_check(buffer);
387 else
388 kdb_printf("%c", key);
389 }
390 /* Special escape to kgdb */
391 if (lastchar - buffer >= 5 &&
392 strcmp(lastchar - 5, "$?#3f") == 0) {
f679c498 393 kdb_gdb_state_pass(lastchar - 5);
5d5314d6
JW
394 strcpy(buffer, "kgdb");
395 KDB_STATE_SET(DOING_KGDB);
396 return buffer;
397 }
f679c498
JW
398 if (lastchar - buffer >= 11 &&
399 strcmp(lastchar - 11, "$qSupported") == 0) {
400 kdb_gdb_state_pass(lastchar - 11);
5d5314d6 401 strcpy(buffer, "kgdb");
d613d828 402 KDB_STATE_SET(DOING_KGDB);
5d5314d6
JW
403 return buffer;
404 }
405 }
406 break;
407 }
408 goto poll_again;
409}
410
411/*
412 * kdb_getstr
413 *
414 * Print the prompt string and read a command from the
415 * input device.
416 *
417 * Parameters:
418 * buffer Address of buffer to receive command
419 * bufsize Size of buffer in bytes
420 * prompt Pointer to string to use as prompt string
421 * Returns:
422 * Pointer to command buffer.
423 * Locking:
424 * None.
425 * Remarks:
426 * For SMP kernels, the processor number will be
427 * substituted for %d, %x or %o in the prompt.
428 */
429
430char *kdb_getstr(char *buffer, size_t bufsize, char *prompt)
431{
432 if (prompt && kdb_prompt_str != prompt)
433 strncpy(kdb_prompt_str, prompt, CMD_BUFLEN);
434 kdb_printf(kdb_prompt_str);
435 kdb_nextline = 1; /* Prompt and input resets line number */
436 return kdb_read(buffer, bufsize);
437}
438
439/*
440 * kdb_input_flush
441 *
442 * Get rid of any buffered console input.
443 *
444 * Parameters:
445 * none
446 * Returns:
447 * nothing
448 * Locking:
449 * none
450 * Remarks:
451 * Call this function whenever you want to flush input. If there is any
452 * outstanding input, it ignores all characters until there has been no
453 * data for approximately 1ms.
454 */
455
456static void kdb_input_flush(void)
457{
458 get_char_func *f;
459 int res;
460 int flush_delay = 1;
461 while (flush_delay) {
462 flush_delay--;
463empty:
464 touch_nmi_watchdog();
465 for (f = &kdb_poll_funcs[0]; *f; ++f) {
466 res = (*f)();
467 if (res != -1) {
468 flush_delay = 1;
469 goto empty;
470 }
471 }
472 if (flush_delay)
473 mdelay(1);
474 }
475}
476
477/*
478 * kdb_printf
479 *
480 * Print a string to the output device(s).
481 *
482 * Parameters:
483 * printf-like format and optional args.
484 * Returns:
485 * 0
486 * Locking:
487 * None.
488 * Remarks:
489 * use 'kdbcons->write()' to avoid polluting 'log_buf' with
490 * kdb output.
491 *
492 * If the user is doing a cmd args | grep srch
493 * then kdb_grepping_flag is set.
494 * In that case we need to accumulate full lines (ending in \n) before
495 * searching for the pattern.
496 */
497
498static char kdb_buffer[256]; /* A bit too big to go on stack */
499static char *next_avail = kdb_buffer;
500static int size_avail;
501static int suspend_grep;
502
503/*
504 * search arg1 to see if it contains arg2
505 * (kdmain.c provides flags for ^pat and pat$)
506 *
507 * return 1 for found, 0 for not found
508 */
509static int kdb_search_string(char *searched, char *searchfor)
510{
511 char firstchar, *cp;
512 int len1, len2;
513
514 /* not counting the newline at the end of "searched" */
515 len1 = strlen(searched)-1;
516 len2 = strlen(searchfor);
517 if (len1 < len2)
518 return 0;
519 if (kdb_grep_leading && kdb_grep_trailing && len1 != len2)
520 return 0;
521 if (kdb_grep_leading) {
522 if (!strncmp(searched, searchfor, len2))
523 return 1;
524 } else if (kdb_grep_trailing) {
525 if (!strncmp(searched+len1-len2, searchfor, len2))
526 return 1;
527 } else {
528 firstchar = *searchfor;
529 cp = searched;
530 while ((cp = strchr(cp, firstchar))) {
531 if (!strncmp(cp, searchfor, len2))
532 return 1;
533 cp++;
534 }
535 }
536 return 0;
537}
538
d37d39ae 539int vkdb_printf(const char *fmt, va_list ap)
5d5314d6 540{
5d5314d6
JW
541 int diag;
542 int linecount;
543 int logging, saved_loglevel = 0;
d37d39ae 544 int saved_trap_printk;
5d5314d6
JW
545 int got_printf_lock = 0;
546 int retlen = 0;
547 int fnd, len;
548 char *cp, *cp2, *cphold = NULL, replaced_byte = ' ';
549 char *moreprompt = "more> ";
550 struct console *c = console_drivers;
551 static DEFINE_SPINLOCK(kdb_printf_lock);
552 unsigned long uninitialized_var(flags);
553
554 preempt_disable();
d37d39ae
JW
555 saved_trap_printk = kdb_trap_printk;
556 kdb_trap_printk = 0;
557
5d5314d6
JW
558 /* Serialize kdb_printf if multiple cpus try to write at once.
559 * But if any cpu goes recursive in kdb, just print the output,
560 * even if it is interleaved with any other text.
561 */
562 if (!KDB_STATE(PRINTF_LOCK)) {
563 KDB_STATE_SET(PRINTF_LOCK);
564 spin_lock_irqsave(&kdb_printf_lock, flags);
565 got_printf_lock = 1;
566 atomic_inc(&kdb_event);
567 } else {
568 __acquire(kdb_printf_lock);
569 }
570
571 diag = kdbgetintenv("LINES", &linecount);
572 if (diag || linecount <= 1)
573 linecount = 24;
574
575 diag = kdbgetintenv("LOGGING", &logging);
576 if (diag)
577 logging = 0;
578
579 if (!kdb_grepping_flag || suspend_grep) {
580 /* normally, every vsnprintf starts a new buffer */
581 next_avail = kdb_buffer;
582 size_avail = sizeof(kdb_buffer);
583 }
5d5314d6 584 vsnprintf(next_avail, size_avail, fmt, ap);
5d5314d6
JW
585
586 /*
587 * If kdb_parse() found that the command was cmd xxx | grep yyy
588 * then kdb_grepping_flag is set, and kdb_grep_string contains yyy
589 *
590 * Accumulate the print data up to a newline before searching it.
591 * (vsnprintf does null-terminate the string that it generates)
592 */
593
594 /* skip the search if prints are temporarily unconditional */
595 if (!suspend_grep && kdb_grepping_flag) {
596 cp = strchr(kdb_buffer, '\n');
597 if (!cp) {
598 /*
599 * Special cases that don't end with newlines
600 * but should be written without one:
601 * The "[nn]kdb> " prompt should
602 * appear at the front of the buffer.
603 *
604 * The "[nn]more " prompt should also be
605 * (MOREPROMPT -> moreprompt)
606 * written * but we print that ourselves,
607 * we set the suspend_grep flag to make
608 * it unconditional.
609 *
610 */
611 if (next_avail == kdb_buffer) {
612 /*
613 * these should occur after a newline,
614 * so they will be at the front of the
615 * buffer
616 */
617 cp2 = kdb_buffer;
618 len = strlen(kdb_prompt_str);
619 if (!strncmp(cp2, kdb_prompt_str, len)) {
620 /*
621 * We're about to start a new
622 * command, so we can go back
623 * to normal mode.
624 */
625 kdb_grepping_flag = 0;
626 goto kdb_printit;
627 }
628 }
629 /* no newline; don't search/write the buffer
630 until one is there */
631 len = strlen(kdb_buffer);
632 next_avail = kdb_buffer + len;
633 size_avail = sizeof(kdb_buffer) - len;
634 goto kdb_print_out;
635 }
636
637 /*
638 * The newline is present; print through it or discard
639 * it, depending on the results of the search.
640 */
641 cp++; /* to byte after the newline */
642 replaced_byte = *cp; /* remember what/where it was */
643 cphold = cp;
644 *cp = '\0'; /* end the string for our search */
645
646 /*
647 * We now have a newline at the end of the string
648 * Only continue with this output if it contains the
649 * search string.
650 */
651 fnd = kdb_search_string(kdb_buffer, kdb_grep_string);
652 if (!fnd) {
653 /*
654 * At this point the complete line at the start
655 * of kdb_buffer can be discarded, as it does
656 * not contain what the user is looking for.
657 * Shift the buffer left.
658 */
659 *cphold = replaced_byte;
660 strcpy(kdb_buffer, cphold);
661 len = strlen(kdb_buffer);
662 next_avail = kdb_buffer + len;
663 size_avail = sizeof(kdb_buffer) - len;
664 goto kdb_print_out;
665 }
666 /*
667 * at this point the string is a full line and
668 * should be printed, up to the null.
669 */
670 }
671kdb_printit:
672
673 /*
674 * Write to all consoles.
675 */
676 retlen = strlen(kdb_buffer);
a0de055c
JW
677 if (!dbg_kdb_mode && kgdb_connected) {
678 gdbstub_msg_write(kdb_buffer, retlen);
679 } else {
efe2f29e
JW
680 if (!dbg_io_ops->is_console) {
681 len = strlen(kdb_buffer);
682 cp = kdb_buffer;
683 while (len--) {
684 dbg_io_ops->write_char(*cp);
685 cp++;
686 }
687 }
a0de055c
JW
688 while (c) {
689 c->write(c, kdb_buffer, retlen);
690 touch_nmi_watchdog();
691 c = c->next;
692 }
5d5314d6
JW
693 }
694 if (logging) {
695 saved_loglevel = console_loglevel;
696 console_loglevel = 0;
697 printk(KERN_INFO "%s", kdb_buffer);
698 }
699
700 if (KDB_STATE(PAGER) && strchr(kdb_buffer, '\n'))
701 kdb_nextline++;
702
703 /* check for having reached the LINES number of printed lines */
704 if (kdb_nextline == linecount) {
705 char buf1[16] = "";
706#if defined(CONFIG_SMP)
707 char buf2[32];
708#endif
709
710 /* Watch out for recursion here. Any routine that calls
711 * kdb_printf will come back through here. And kdb_read
712 * uses kdb_printf to echo on serial consoles ...
713 */
714 kdb_nextline = 1; /* In case of recursion */
715
716 /*
717 * Pause until cr.
718 */
719 moreprompt = kdbgetenv("MOREPROMPT");
720 if (moreprompt == NULL)
721 moreprompt = "more> ";
722
723#if defined(CONFIG_SMP)
724 if (strchr(moreprompt, '%')) {
725 sprintf(buf2, moreprompt, get_cpu());
726 put_cpu();
727 moreprompt = buf2;
728 }
729#endif
730
731 kdb_input_flush();
732 c = console_drivers;
733
efe2f29e
JW
734 if (!dbg_io_ops->is_console) {
735 len = strlen(moreprompt);
736 cp = moreprompt;
737 while (len--) {
738 dbg_io_ops->write_char(*cp);
739 cp++;
740 }
741 }
5d5314d6
JW
742 while (c) {
743 c->write(c, moreprompt, strlen(moreprompt));
744 touch_nmi_watchdog();
745 c = c->next;
746 }
747
748 if (logging)
749 printk("%s", moreprompt);
750
751 kdb_read(buf1, 2); /* '2' indicates to return
752 * immediately after getting one key. */
753 kdb_nextline = 1; /* Really set output line 1 */
754
755 /* empty and reset the buffer: */
756 kdb_buffer[0] = '\0';
757 next_avail = kdb_buffer;
758 size_avail = sizeof(kdb_buffer);
759 if ((buf1[0] == 'q') || (buf1[0] == 'Q')) {
760 /* user hit q or Q */
761 KDB_FLAG_SET(CMD_INTERRUPT); /* command interrupted */
762 KDB_STATE_CLEAR(PAGER);
763 /* end of command output; back to normal mode */
764 kdb_grepping_flag = 0;
765 kdb_printf("\n");
766 } else if (buf1[0] == ' ') {
767 kdb_printf("\n");
768 suspend_grep = 1; /* for this recursion */
769 } else if (buf1[0] == '\n') {
770 kdb_nextline = linecount - 1;
771 kdb_printf("\r");
772 suspend_grep = 1; /* for this recursion */
773 } else if (buf1[0] && buf1[0] != '\n') {
774 /* user hit something other than enter */
775 suspend_grep = 1; /* for this recursion */
776 kdb_printf("\nOnly 'q' or 'Q' are processed at more "
777 "prompt, input ignored\n");
778 } else if (kdb_grepping_flag) {
779 /* user hit enter */
780 suspend_grep = 1; /* for this recursion */
781 kdb_printf("\n");
782 }
783 kdb_input_flush();
784 }
785
786 /*
787 * For grep searches, shift the printed string left.
788 * replaced_byte contains the character that was overwritten with
789 * the terminating null, and cphold points to the null.
790 * Then adjust the notion of available space in the buffer.
791 */
792 if (kdb_grepping_flag && !suspend_grep) {
793 *cphold = replaced_byte;
794 strcpy(kdb_buffer, cphold);
795 len = strlen(kdb_buffer);
796 next_avail = kdb_buffer + len;
797 size_avail = sizeof(kdb_buffer) - len;
798 }
799
800kdb_print_out:
801 suspend_grep = 0; /* end of what may have been a recursive call */
802 if (logging)
803 console_loglevel = saved_loglevel;
804 if (KDB_STATE(PRINTF_LOCK) && got_printf_lock) {
805 got_printf_lock = 0;
806 spin_unlock_irqrestore(&kdb_printf_lock, flags);
807 KDB_STATE_CLEAR(PRINTF_LOCK);
808 atomic_dec(&kdb_event);
809 } else {
810 __release(kdb_printf_lock);
811 }
d37d39ae 812 kdb_trap_printk = saved_trap_printk;
5d5314d6
JW
813 preempt_enable();
814 return retlen;
815}
d37d39ae
JW
816
817int kdb_printf(const char *fmt, ...)
818{
819 va_list ap;
820 int r;
821
822 va_start(ap, fmt);
823 r = vkdb_printf(fmt, ap);
824 va_end(ap);
825
826 return r;
827}
f7030bbc 828EXPORT_SYMBOL_GPL(kdb_printf);
This page took 0.125925 seconds and 5 git commands to generate.