blob: cc892a9e109d8d4e7580d421a093d43828b6126d [file] [log] [blame]
Jason Wessel5d5314d2010-05-20 21:04:20 -05001/*
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>
Jason Wessela0de0552010-05-20 21:04:24 -050024#include <linux/kgdb.h>
Jason Wessel5d5314d2010-05-20 21:04:20 -050025#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
Jason Wesseld37d39a2010-05-20 21:04:27 -050032int kdb_trap_printk;
Jason Wessel5d5314d2010-05-20 21:04:20 -050033
Jason Wessel37f86b42011-05-24 10:43:06 -050034static int kgdb_transition_check(char *buffer)
Jason Wessel5d5314d2010-05-20 21:04:20 -050035{
Jason Wessel37f86b42011-05-24 10:43:06 -050036 if (buffer[0] != '+' && buffer[0] != '$') {
Jason Wessel5d5314d2010-05-20 21:04:20 -050037 KDB_STATE_SET(KGDB_TRANS);
38 kdb_printf("%s", buffer);
Jason Wessel37f86b42011-05-24 10:43:06 -050039 } 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 }
Jason Wessel5d5314d2010-05-20 21:04:20 -050047 }
Jason Wessel37f86b42011-05-24 10:43:06 -050048 return 0;
Jason Wessel5d5314d2010-05-20 21:04:20 -050049}
50
51static int kdb_read_get_key(char *buffer, size_t bufsize)
52{
53#define ESCAPE_UDELAY 1000
54#define ESCAPE_DELAY (2*1000000/ESCAPE_UDELAY) /* 2 seconds worth of udelays */
55 char escape_data[5]; /* longest vt100 escape sequence is 4 bytes */
56 char *ped = escape_data;
57 int escape_delay = 0;
58 get_char_func *f, *f_escape = NULL;
59 int key;
60
61 for (f = &kdb_poll_funcs[0]; ; ++f) {
62 if (*f == NULL) {
63 /* Reset NMI watchdog once per poll loop */
64 touch_nmi_watchdog();
65 f = &kdb_poll_funcs[0];
66 }
67 if (escape_delay == 2) {
68 *ped = '\0';
69 ped = escape_data;
70 --escape_delay;
71 }
72 if (escape_delay == 1) {
73 key = *ped++;
74 if (!*ped)
75 --escape_delay;
76 break;
77 }
78 key = (*f)();
79 if (key == -1) {
80 if (escape_delay) {
81 udelay(ESCAPE_UDELAY);
82 --escape_delay;
83 }
84 continue;
85 }
86 if (bufsize <= 2) {
87 if (key == '\r')
88 key = '\n';
89 *buffer++ = key;
90 *buffer = '\0';
91 return -1;
92 }
93 if (escape_delay == 0 && key == '\e') {
94 escape_delay = ESCAPE_DELAY;
95 ped = escape_data;
96 f_escape = f;
97 }
98 if (escape_delay) {
99 *ped++ = key;
100 if (f_escape != f) {
101 escape_delay = 2;
102 continue;
103 }
104 if (ped - escape_data == 1) {
105 /* \e */
106 continue;
107 } else if (ped - escape_data == 2) {
108 /* \e<something> */
109 if (key != '[')
110 escape_delay = 2;
111 continue;
112 } else if (ped - escape_data == 3) {
113 /* \e[<something> */
114 int mapkey = 0;
115 switch (key) {
116 case 'A': /* \e[A, up arrow */
117 mapkey = 16;
118 break;
119 case 'B': /* \e[B, down arrow */
120 mapkey = 14;
121 break;
122 case 'C': /* \e[C, right arrow */
123 mapkey = 6;
124 break;
125 case 'D': /* \e[D, left arrow */
126 mapkey = 2;
127 break;
128 case '1': /* dropthrough */
129 case '3': /* dropthrough */
130 /* \e[<1,3,4>], may be home, del, end */
131 case '4':
132 mapkey = -1;
133 break;
134 }
135 if (mapkey != -1) {
136 if (mapkey > 0) {
137 escape_data[0] = mapkey;
138 escape_data[1] = '\0';
139 }
140 escape_delay = 2;
141 }
142 continue;
143 } else if (ped - escape_data == 4) {
144 /* \e[<1,3,4><something> */
145 int mapkey = 0;
146 if (key == '~') {
147 switch (escape_data[2]) {
148 case '1': /* \e[1~, home */
149 mapkey = 1;
150 break;
151 case '3': /* \e[3~, del */
152 mapkey = 4;
153 break;
154 case '4': /* \e[4~, end */
155 mapkey = 5;
156 break;
157 }
158 }
159 if (mapkey > 0) {
160 escape_data[0] = mapkey;
161 escape_data[1] = '\0';
162 }
163 escape_delay = 2;
164 continue;
165 }
166 }
167 break; /* A key to process */
168 }
169 return key;
170}
171
172/*
173 * kdb_read
174 *
175 * This function reads a string of characters, terminated by
176 * a newline, or by reaching the end of the supplied buffer,
177 * from the current kernel debugger console device.
178 * Parameters:
179 * buffer - Address of character buffer to receive input characters.
180 * bufsize - size, in bytes, of the character buffer
181 * Returns:
182 * Returns a pointer to the buffer containing the received
183 * character string. This string will be terminated by a
184 * newline character.
185 * Locking:
186 * No locks are required to be held upon entry to this
187 * function. It is not reentrant - it relies on the fact
188 * that while kdb is running on only one "master debug" cpu.
189 * Remarks:
190 *
191 * The buffer size must be >= 2. A buffer size of 2 means that the caller only
192 * wants a single key.
193 *
194 * An escape key could be the start of a vt100 control sequence such as \e[D
195 * (left arrow) or it could be a character in its own right. The standard
196 * method for detecting the difference is to wait for 2 seconds to see if there
197 * are any other characters. kdb is complicated by the lack of a timer service
198 * (interrupts are off), by multiple input sources and by the need to sometimes
199 * return after just one key. Escape sequence processing has to be done as
200 * states in the polling loop.
201 */
202
203static char *kdb_read(char *buffer, size_t bufsize)
204{
205 char *cp = buffer;
206 char *bufend = buffer+bufsize-2; /* Reserve space for newline
207 * and null byte */
208 char *lastchar;
209 char *p_tmp;
210 char tmp;
211 static char tmpbuffer[CMD_BUFLEN];
212 int len = strlen(buffer);
213 int len_tmp;
214 int tab = 0;
215 int count;
216 int i;
217 int diag, dtab_count;
Prarit Bhargava8f9b3dd2018-09-20 08:59:14 -0400218 int key, buf_size, ret;
Jason Wessel5d5314d2010-05-20 21:04:20 -0500219
220
221 diag = kdbgetintenv("DTABCOUNT", &dtab_count);
222 if (diag)
223 dtab_count = 30;
224
225 if (len > 0) {
226 cp += len;
227 if (*(buffer+len-1) == '\n')
228 cp--;
229 }
230
231 lastchar = cp;
232 *cp = '\0';
233 kdb_printf("%s", buffer);
234poll_again:
235 key = kdb_read_get_key(buffer, bufsize);
236 if (key == -1)
237 return buffer;
238 if (key != 9)
239 tab = 0;
240 switch (key) {
241 case 8: /* backspace */
242 if (cp > buffer) {
243 if (cp < lastchar) {
244 memcpy(tmpbuffer, cp, lastchar - cp);
245 memcpy(cp-1, tmpbuffer, lastchar - cp);
246 }
247 *(--lastchar) = '\0';
248 --cp;
249 kdb_printf("\b%s \r", cp);
250 tmp = *cp;
251 *cp = '\0';
252 kdb_printf(kdb_prompt_str);
253 kdb_printf("%s", buffer);
254 *cp = tmp;
255 }
256 break;
257 case 13: /* enter */
258 *lastchar++ = '\n';
259 *lastchar++ = '\0';
Jason Wessel37f86b42011-05-24 10:43:06 -0500260 if (!KDB_STATE(KGDB_TRANS)) {
261 KDB_STATE_SET(KGDB_TRANS);
262 kdb_printf("%s", buffer);
263 }
Jason Wessel5d5314d2010-05-20 21:04:20 -0500264 kdb_printf("\n");
265 return buffer;
266 case 4: /* Del */
267 if (cp < lastchar) {
268 memcpy(tmpbuffer, cp+1, lastchar - cp - 1);
269 memcpy(cp, tmpbuffer, lastchar - cp - 1);
270 *(--lastchar) = '\0';
271 kdb_printf("%s \r", cp);
272 tmp = *cp;
273 *cp = '\0';
274 kdb_printf(kdb_prompt_str);
275 kdb_printf("%s", buffer);
276 *cp = tmp;
277 }
278 break;
279 case 1: /* Home */
280 if (cp > buffer) {
281 kdb_printf("\r");
282 kdb_printf(kdb_prompt_str);
283 cp = buffer;
284 }
285 break;
286 case 5: /* End */
287 if (cp < lastchar) {
288 kdb_printf("%s", cp);
289 cp = lastchar;
290 }
291 break;
292 case 2: /* Left */
293 if (cp > buffer) {
294 kdb_printf("\b");
295 --cp;
296 }
297 break;
298 case 14: /* Down */
299 memset(tmpbuffer, ' ',
300 strlen(kdb_prompt_str) + (lastchar-buffer));
301 *(tmpbuffer+strlen(kdb_prompt_str) +
302 (lastchar-buffer)) = '\0';
303 kdb_printf("\r%s\r", tmpbuffer);
304 *lastchar = (char)key;
305 *(lastchar+1) = '\0';
306 return lastchar;
307 case 6: /* Right */
308 if (cp < lastchar) {
309 kdb_printf("%c", *cp);
310 ++cp;
311 }
312 break;
313 case 16: /* Up */
314 memset(tmpbuffer, ' ',
315 strlen(kdb_prompt_str) + (lastchar-buffer));
316 *(tmpbuffer+strlen(kdb_prompt_str) +
317 (lastchar-buffer)) = '\0';
318 kdb_printf("\r%s\r", tmpbuffer);
319 *lastchar = (char)key;
320 *(lastchar+1) = '\0';
321 return lastchar;
322 case 9: /* Tab */
323 if (tab < 2)
324 ++tab;
325 p_tmp = buffer;
326 while (*p_tmp == ' ')
327 p_tmp++;
328 if (p_tmp > cp)
329 break;
330 memcpy(tmpbuffer, p_tmp, cp-p_tmp);
331 *(tmpbuffer + (cp-p_tmp)) = '\0';
332 p_tmp = strrchr(tmpbuffer, ' ');
333 if (p_tmp)
334 ++p_tmp;
335 else
336 p_tmp = tmpbuffer;
337 len = strlen(p_tmp);
Prarit Bhargava8f9b3dd2018-09-20 08:59:14 -0400338 buf_size = sizeof(tmpbuffer) - (p_tmp - tmpbuffer);
339 count = kallsyms_symbol_complete(p_tmp, buf_size);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500340 if (tab == 2 && count > 0) {
341 kdb_printf("\n%d symbols are found.", count);
342 if (count > dtab_count) {
343 count = dtab_count;
344 kdb_printf(" But only first %d symbols will"
345 " be printed.\nYou can change the"
346 " environment variable DTABCOUNT.",
347 count);
348 }
349 kdb_printf("\n");
350 for (i = 0; i < count; i++) {
Prarit Bhargava8f9b3dd2018-09-20 08:59:14 -0400351 ret = kallsyms_symbol_next(p_tmp, i, buf_size);
352 if (WARN_ON(!ret))
Jason Wessel5d5314d2010-05-20 21:04:20 -0500353 break;
Prarit Bhargava8f9b3dd2018-09-20 08:59:14 -0400354 if (ret != -E2BIG)
355 kdb_printf("%s ", p_tmp);
356 else
357 kdb_printf("%s... ", p_tmp);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500358 *(p_tmp + len) = '\0';
359 }
360 if (i >= dtab_count)
361 kdb_printf("...");
362 kdb_printf("\n");
363 kdb_printf(kdb_prompt_str);
364 kdb_printf("%s", buffer);
365 } else if (tab != 2 && count > 0) {
366 len_tmp = strlen(p_tmp);
367 strncpy(p_tmp+len_tmp, cp, lastchar-cp+1);
368 len_tmp = strlen(p_tmp);
369 strncpy(cp, p_tmp+len, len_tmp-len + 1);
370 len = len_tmp - len;
371 kdb_printf("%s", cp);
372 cp += len;
373 lastchar += len;
374 }
375 kdb_nextline = 1; /* reset output line number */
376 break;
377 default:
378 if (key >= 32 && lastchar < bufend) {
379 if (cp < lastchar) {
380 memcpy(tmpbuffer, cp, lastchar - cp);
381 memcpy(cp+1, tmpbuffer, lastchar - cp);
382 *++lastchar = '\0';
383 *cp = key;
384 kdb_printf("%s\r", cp);
385 ++cp;
386 tmp = *cp;
387 *cp = '\0';
388 kdb_printf(kdb_prompt_str);
389 kdb_printf("%s", buffer);
390 *cp = tmp;
391 } else {
392 *++lastchar = '\0';
393 *cp++ = key;
394 /* The kgdb transition check will hide
395 * printed characters if we think that
396 * kgdb is connecting, until the check
397 * fails */
Jason Wessel37f86b42011-05-24 10:43:06 -0500398 if (!KDB_STATE(KGDB_TRANS)) {
399 if (kgdb_transition_check(buffer))
400 return buffer;
401 } else {
Jason Wessel5d5314d2010-05-20 21:04:20 -0500402 kdb_printf("%c", key);
Jason Wessel37f86b42011-05-24 10:43:06 -0500403 }
Jason Wessel5d5314d2010-05-20 21:04:20 -0500404 }
405 /* Special escape to kgdb */
406 if (lastchar - buffer >= 5 &&
407 strcmp(lastchar - 5, "$?#3f") == 0) {
Jason Wesself679c492011-05-23 13:17:41 -0500408 kdb_gdb_state_pass(lastchar - 5);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500409 strcpy(buffer, "kgdb");
410 KDB_STATE_SET(DOING_KGDB);
411 return buffer;
412 }
Jason Wesself679c492011-05-23 13:17:41 -0500413 if (lastchar - buffer >= 11 &&
414 strcmp(lastchar - 11, "$qSupported") == 0) {
415 kdb_gdb_state_pass(lastchar - 11);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500416 strcpy(buffer, "kgdb");
Jason Wesseld613d822011-05-23 13:22:54 -0500417 KDB_STATE_SET(DOING_KGDB);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500418 return buffer;
419 }
420 }
421 break;
422 }
423 goto poll_again;
424}
425
426/*
427 * kdb_getstr
428 *
429 * Print the prompt string and read a command from the
430 * input device.
431 *
432 * Parameters:
433 * buffer Address of buffer to receive command
434 * bufsize Size of buffer in bytes
435 * prompt Pointer to string to use as prompt string
436 * Returns:
437 * Pointer to command buffer.
438 * Locking:
439 * None.
440 * Remarks:
441 * For SMP kernels, the processor number will be
442 * substituted for %d, %x or %o in the prompt.
443 */
444
Daniel Thompson32d375f2014-09-11 10:41:12 +0100445char *kdb_getstr(char *buffer, size_t bufsize, const char *prompt)
Jason Wessel5d5314d2010-05-20 21:04:20 -0500446{
447 if (prompt && kdb_prompt_str != prompt)
448 strncpy(kdb_prompt_str, prompt, CMD_BUFLEN);
449 kdb_printf(kdb_prompt_str);
450 kdb_nextline = 1; /* Prompt and input resets line number */
451 return kdb_read(buffer, bufsize);
452}
453
454/*
455 * kdb_input_flush
456 *
457 * Get rid of any buffered console input.
458 *
459 * Parameters:
460 * none
461 * Returns:
462 * nothing
463 * Locking:
464 * none
465 * Remarks:
466 * Call this function whenever you want to flush input. If there is any
467 * outstanding input, it ignores all characters until there has been no
468 * data for approximately 1ms.
469 */
470
471static void kdb_input_flush(void)
472{
473 get_char_func *f;
474 int res;
475 int flush_delay = 1;
476 while (flush_delay) {
477 flush_delay--;
478empty:
479 touch_nmi_watchdog();
480 for (f = &kdb_poll_funcs[0]; *f; ++f) {
481 res = (*f)();
482 if (res != -1) {
483 flush_delay = 1;
484 goto empty;
485 }
486 }
487 if (flush_delay)
488 mdelay(1);
489 }
490}
491
492/*
493 * kdb_printf
494 *
495 * Print a string to the output device(s).
496 *
497 * Parameters:
498 * printf-like format and optional args.
499 * Returns:
500 * 0
501 * Locking:
502 * None.
503 * Remarks:
504 * use 'kdbcons->write()' to avoid polluting 'log_buf' with
505 * kdb output.
506 *
507 * If the user is doing a cmd args | grep srch
508 * then kdb_grepping_flag is set.
509 * In that case we need to accumulate full lines (ending in \n) before
510 * searching for the pattern.
511 */
512
513static char kdb_buffer[256]; /* A bit too big to go on stack */
514static char *next_avail = kdb_buffer;
515static int size_avail;
516static int suspend_grep;
517
518/*
519 * search arg1 to see if it contains arg2
520 * (kdmain.c provides flags for ^pat and pat$)
521 *
522 * return 1 for found, 0 for not found
523 */
524static int kdb_search_string(char *searched, char *searchfor)
525{
526 char firstchar, *cp;
527 int len1, len2;
528
529 /* not counting the newline at the end of "searched" */
530 len1 = strlen(searched)-1;
531 len2 = strlen(searchfor);
532 if (len1 < len2)
533 return 0;
534 if (kdb_grep_leading && kdb_grep_trailing && len1 != len2)
535 return 0;
536 if (kdb_grep_leading) {
537 if (!strncmp(searched, searchfor, len2))
538 return 1;
539 } else if (kdb_grep_trailing) {
540 if (!strncmp(searched+len1-len2, searchfor, len2))
541 return 1;
542 } else {
543 firstchar = *searchfor;
544 cp = searched;
545 while ((cp = strchr(cp, firstchar))) {
546 if (!strncmp(cp, searchfor, len2))
547 return 1;
548 cp++;
549 }
550 }
551 return 0;
552}
553
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000554int vkdb_printf(enum kdb_msgsrc src, const char *fmt, va_list ap)
Jason Wessel5d5314d2010-05-20 21:04:20 -0500555{
Jason Wessel5d5314d2010-05-20 21:04:20 -0500556 int diag;
557 int linecount;
Jason Wessel17b572e82012-08-26 22:37:03 -0500558 int colcount;
Jason Wessel5d5314d2010-05-20 21:04:20 -0500559 int logging, saved_loglevel = 0;
Jason Wesseld37d39a2010-05-20 21:04:27 -0500560 int saved_trap_printk;
Jason Wessel5d5314d2010-05-20 21:04:20 -0500561 int got_printf_lock = 0;
562 int retlen = 0;
563 int fnd, len;
564 char *cp, *cp2, *cphold = NULL, replaced_byte = ' ';
565 char *moreprompt = "more> ";
566 struct console *c = console_drivers;
567 static DEFINE_SPINLOCK(kdb_printf_lock);
568 unsigned long uninitialized_var(flags);
569
570 preempt_disable();
Jason Wesseld37d39a2010-05-20 21:04:27 -0500571 saved_trap_printk = kdb_trap_printk;
572 kdb_trap_printk = 0;
573
Jason Wessel5d5314d2010-05-20 21:04:20 -0500574 /* Serialize kdb_printf if multiple cpus try to write at once.
575 * But if any cpu goes recursive in kdb, just print the output,
576 * even if it is interleaved with any other text.
577 */
578 if (!KDB_STATE(PRINTF_LOCK)) {
579 KDB_STATE_SET(PRINTF_LOCK);
580 spin_lock_irqsave(&kdb_printf_lock, flags);
581 got_printf_lock = 1;
582 atomic_inc(&kdb_event);
583 } else {
584 __acquire(kdb_printf_lock);
585 }
586
587 diag = kdbgetintenv("LINES", &linecount);
588 if (diag || linecount <= 1)
589 linecount = 24;
590
Jason Wessel17b572e82012-08-26 22:37:03 -0500591 diag = kdbgetintenv("COLUMNS", &colcount);
592 if (diag || colcount <= 1)
593 colcount = 80;
594
Jason Wessel5d5314d2010-05-20 21:04:20 -0500595 diag = kdbgetintenv("LOGGING", &logging);
596 if (diag)
597 logging = 0;
598
599 if (!kdb_grepping_flag || suspend_grep) {
600 /* normally, every vsnprintf starts a new buffer */
601 next_avail = kdb_buffer;
602 size_avail = sizeof(kdb_buffer);
603 }
Jason Wessel5d5314d2010-05-20 21:04:20 -0500604 vsnprintf(next_avail, size_avail, fmt, ap);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500605
606 /*
607 * If kdb_parse() found that the command was cmd xxx | grep yyy
608 * then kdb_grepping_flag is set, and kdb_grep_string contains yyy
609 *
610 * Accumulate the print data up to a newline before searching it.
611 * (vsnprintf does null-terminate the string that it generates)
612 */
613
614 /* skip the search if prints are temporarily unconditional */
615 if (!suspend_grep && kdb_grepping_flag) {
616 cp = strchr(kdb_buffer, '\n');
617 if (!cp) {
618 /*
619 * Special cases that don't end with newlines
620 * but should be written without one:
621 * The "[nn]kdb> " prompt should
622 * appear at the front of the buffer.
623 *
624 * The "[nn]more " prompt should also be
625 * (MOREPROMPT -> moreprompt)
626 * written * but we print that ourselves,
627 * we set the suspend_grep flag to make
628 * it unconditional.
629 *
630 */
631 if (next_avail == kdb_buffer) {
632 /*
633 * these should occur after a newline,
634 * so they will be at the front of the
635 * buffer
636 */
637 cp2 = kdb_buffer;
638 len = strlen(kdb_prompt_str);
639 if (!strncmp(cp2, kdb_prompt_str, len)) {
640 /*
641 * We're about to start a new
642 * command, so we can go back
643 * to normal mode.
644 */
645 kdb_grepping_flag = 0;
646 goto kdb_printit;
647 }
648 }
649 /* no newline; don't search/write the buffer
650 until one is there */
651 len = strlen(kdb_buffer);
652 next_avail = kdb_buffer + len;
653 size_avail = sizeof(kdb_buffer) - len;
654 goto kdb_print_out;
655 }
656
657 /*
658 * The newline is present; print through it or discard
659 * it, depending on the results of the search.
660 */
661 cp++; /* to byte after the newline */
662 replaced_byte = *cp; /* remember what/where it was */
663 cphold = cp;
664 *cp = '\0'; /* end the string for our search */
665
666 /*
667 * We now have a newline at the end of the string
668 * Only continue with this output if it contains the
669 * search string.
670 */
671 fnd = kdb_search_string(kdb_buffer, kdb_grep_string);
672 if (!fnd) {
673 /*
674 * At this point the complete line at the start
675 * of kdb_buffer can be discarded, as it does
676 * not contain what the user is looking for.
677 * Shift the buffer left.
678 */
679 *cphold = replaced_byte;
680 strcpy(kdb_buffer, cphold);
681 len = strlen(kdb_buffer);
682 next_avail = kdb_buffer + len;
683 size_avail = sizeof(kdb_buffer) - len;
684 goto kdb_print_out;
685 }
Daniel Thompsonfb6daa72014-09-11 10:37:10 +0100686 if (kdb_grepping_flag >= KDB_GREPPING_FLAG_SEARCH)
687 /*
688 * This was a interactive search (using '/' at more
689 * prompt) and it has completed. Clear the flag.
690 */
691 kdb_grepping_flag = 0;
Jason Wessel5d5314d2010-05-20 21:04:20 -0500692 /*
693 * at this point the string is a full line and
694 * should be printed, up to the null.
695 */
696 }
697kdb_printit:
698
699 /*
700 * Write to all consoles.
701 */
702 retlen = strlen(kdb_buffer);
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000703 cp = (char *) printk_skip_level(kdb_buffer);
Jason Wessela0de0552010-05-20 21:04:24 -0500704 if (!dbg_kdb_mode && kgdb_connected) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000705 gdbstub_msg_write(cp, retlen - (cp - kdb_buffer));
Jason Wessela0de0552010-05-20 21:04:24 -0500706 } else {
Tim Birdb8adde82011-09-21 13:19:12 -0700707 if (dbg_io_ops && !dbg_io_ops->is_console) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000708 len = retlen - (cp - kdb_buffer);
709 cp2 = cp;
Jason Wesselefe2f292010-05-20 21:04:26 -0500710 while (len--) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000711 dbg_io_ops->write_char(*cp2);
712 cp2++;
Jason Wesselefe2f292010-05-20 21:04:26 -0500713 }
714 }
Jason Wessela0de0552010-05-20 21:04:24 -0500715 while (c) {
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000716 c->write(c, cp, retlen - (cp - kdb_buffer));
Jason Wessela0de0552010-05-20 21:04:24 -0500717 touch_nmi_watchdog();
718 c = c->next;
719 }
Jason Wessel5d5314d2010-05-20 21:04:20 -0500720 }
721 if (logging) {
722 saved_loglevel = console_loglevel;
Borislav Petkova8fe19e2014-06-04 16:11:46 -0700723 console_loglevel = CONSOLE_LOGLEVEL_SILENT;
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000724 if (printk_get_level(kdb_buffer) || src == KDB_MSGSRC_PRINTK)
725 printk("%s", kdb_buffer);
726 else
727 pr_info("%s", kdb_buffer);
Jason Wessel5d5314d2010-05-20 21:04:20 -0500728 }
729
Jason Wessel17b572e82012-08-26 22:37:03 -0500730 if (KDB_STATE(PAGER)) {
731 /*
732 * Check printed string to decide how to bump the
733 * kdb_nextline to control when the more prompt should
734 * show up.
735 */
736 int got = 0;
737 len = retlen;
738 while (len--) {
739 if (kdb_buffer[len] == '\n') {
740 kdb_nextline++;
741 got = 0;
742 } else if (kdb_buffer[len] == '\r') {
743 got = 0;
744 } else {
745 got++;
746 }
747 }
748 kdb_nextline += got / (colcount + 1);
749 }
Jason Wessel5d5314d2010-05-20 21:04:20 -0500750
751 /* check for having reached the LINES number of printed lines */
Jason Wessel17b572e82012-08-26 22:37:03 -0500752 if (kdb_nextline >= linecount) {
Jason Wessel5d5314d2010-05-20 21:04:20 -0500753 char buf1[16] = "";
Jason Wessel5d5314d2010-05-20 21:04:20 -0500754
755 /* Watch out for recursion here. Any routine that calls
756 * kdb_printf will come back through here. And kdb_read
757 * uses kdb_printf to echo on serial consoles ...
758 */
759 kdb_nextline = 1; /* In case of recursion */
760
761 /*
762 * Pause until cr.
763 */
764 moreprompt = kdbgetenv("MOREPROMPT");
765 if (moreprompt == NULL)
766 moreprompt = "more> ";
767
Jason Wessel5d5314d2010-05-20 21:04:20 -0500768 kdb_input_flush();
769 c = console_drivers;
770
Jason Wessel78724b82012-03-29 06:17:17 -0500771 if (dbg_io_ops && !dbg_io_ops->is_console) {
Jason Wesselefe2f292010-05-20 21:04:26 -0500772 len = strlen(moreprompt);
773 cp = moreprompt;
774 while (len--) {
775 dbg_io_ops->write_char(*cp);
776 cp++;
777 }
778 }
Jason Wessel5d5314d2010-05-20 21:04:20 -0500779 while (c) {
780 c->write(c, moreprompt, strlen(moreprompt));
781 touch_nmi_watchdog();
782 c = c->next;
783 }
784
785 if (logging)
786 printk("%s", moreprompt);
787
788 kdb_read(buf1, 2); /* '2' indicates to return
789 * immediately after getting one key. */
790 kdb_nextline = 1; /* Really set output line 1 */
791
792 /* empty and reset the buffer: */
793 kdb_buffer[0] = '\0';
794 next_avail = kdb_buffer;
795 size_avail = sizeof(kdb_buffer);
796 if ((buf1[0] == 'q') || (buf1[0] == 'Q')) {
797 /* user hit q or Q */
798 KDB_FLAG_SET(CMD_INTERRUPT); /* command interrupted */
799 KDB_STATE_CLEAR(PAGER);
800 /* end of command output; back to normal mode */
801 kdb_grepping_flag = 0;
802 kdb_printf("\n");
803 } else if (buf1[0] == ' ') {
Jason Wessel17b572e82012-08-26 22:37:03 -0500804 kdb_printf("\r");
Jason Wessel5d5314d2010-05-20 21:04:20 -0500805 suspend_grep = 1; /* for this recursion */
806 } else if (buf1[0] == '\n') {
807 kdb_nextline = linecount - 1;
808 kdb_printf("\r");
809 suspend_grep = 1; /* for this recursion */
Daniel Thompsonfb6daa72014-09-11 10:37:10 +0100810 } else if (buf1[0] == '/' && !kdb_grepping_flag) {
811 kdb_printf("\r");
812 kdb_getstr(kdb_grep_string, KDB_GREP_STRLEN,
813 kdbgetenv("SEARCHPROMPT") ?: "search> ");
814 *strchrnul(kdb_grep_string, '\n') = '\0';
815 kdb_grepping_flag += KDB_GREPPING_FLAG_SEARCH;
816 suspend_grep = 1; /* for this recursion */
Jason Wessel5d5314d2010-05-20 21:04:20 -0500817 } else if (buf1[0] && buf1[0] != '\n') {
818 /* user hit something other than enter */
819 suspend_grep = 1; /* for this recursion */
Daniel Thompsonfb6daa72014-09-11 10:37:10 +0100820 if (buf1[0] != '/')
821 kdb_printf(
822 "\nOnly 'q', 'Q' or '/' are processed at "
823 "more prompt, input ignored\n");
824 else
825 kdb_printf("\n'/' cannot be used during | "
826 "grep filtering, input ignored\n");
Jason Wessel5d5314d2010-05-20 21:04:20 -0500827 } else if (kdb_grepping_flag) {
828 /* user hit enter */
829 suspend_grep = 1; /* for this recursion */
830 kdb_printf("\n");
831 }
832 kdb_input_flush();
833 }
834
835 /*
836 * For grep searches, shift the printed string left.
837 * replaced_byte contains the character that was overwritten with
838 * the terminating null, and cphold points to the null.
839 * Then adjust the notion of available space in the buffer.
840 */
841 if (kdb_grepping_flag && !suspend_grep) {
842 *cphold = replaced_byte;
843 strcpy(kdb_buffer, cphold);
844 len = strlen(kdb_buffer);
845 next_avail = kdb_buffer + len;
846 size_avail = sizeof(kdb_buffer) - len;
847 }
848
849kdb_print_out:
850 suspend_grep = 0; /* end of what may have been a recursive call */
851 if (logging)
852 console_loglevel = saved_loglevel;
853 if (KDB_STATE(PRINTF_LOCK) && got_printf_lock) {
854 got_printf_lock = 0;
855 spin_unlock_irqrestore(&kdb_printf_lock, flags);
856 KDB_STATE_CLEAR(PRINTF_LOCK);
857 atomic_dec(&kdb_event);
858 } else {
859 __release(kdb_printf_lock);
860 }
Jason Wesseld37d39a2010-05-20 21:04:27 -0500861 kdb_trap_printk = saved_trap_printk;
Jason Wessel5d5314d2010-05-20 21:04:20 -0500862 preempt_enable();
863 return retlen;
864}
Jason Wesseld37d39a2010-05-20 21:04:27 -0500865
866int kdb_printf(const char *fmt, ...)
867{
868 va_list ap;
869 int r;
870
871 va_start(ap, fmt);
Daniel Thompsonf7d4ca82014-11-07 18:37:57 +0000872 r = vkdb_printf(KDB_MSGSRC_INTERNAL, fmt, ap);
Jason Wesseld37d39a2010-05-20 21:04:27 -0500873 va_end(ap);
874
875 return r;
876}
Jason Wesself7030bb2010-10-11 10:20:14 -0500877EXPORT_SYMBOL_GPL(kdb_printf);