1 // SPDX-License-Identifier: GPL-2.0
3 * Unified handling of special chars.
5 * Copyright IBM Corp. 2001
6 * Author(s): Fritz Elfert <felfert@millenux.com> <elfert@de.ibm.com>
10 #include <linux/stddef.h>
11 #include <asm/errno.h>
12 #include <linux/sysrq.h>
13 #include <linux/ctype.h>
17 #ifdef CONFIG_MAGIC_SYSRQ
18 static struct sysrq_work ctrlchar_sysrq
;
21 ctrlchar_handle_sysrq(struct work_struct
*work
)
23 struct sysrq_work
*sysrq
= container_of(work
, struct sysrq_work
, work
);
25 handle_sysrq(sysrq
->key
);
28 void schedule_sysrq_work(struct sysrq_work
*sw
)
30 INIT_WORK(&sw
->work
, ctrlchar_handle_sysrq
);
31 schedule_work(&sw
->work
);
37 * ctrlchar_handle - check for special chars at start of input
39 * @buf: console input buffer
40 * @len: length of valid data in buffer
41 * @tty: the tty struct for this console
43 * Return: CTRLCHAR_NONE, if nothing matched,
44 * CTRLCHAR_SYSRQ, if sysrq was encountered
45 * otherwise char to be inserted logically or'ed
49 ctrlchar_handle(const unsigned char *buf
, int len
, struct tty_struct
*tty
)
51 if ((len
< 2) || (len
> 3))
54 /* hat is 0xb1 in codepage 037 (US etc.) and thus */
55 /* converted to 0x5e in ascii ('^') */
56 if ((buf
[0] != '^') && (buf
[0] != '\252'))
59 #ifdef CONFIG_MAGIC_SYSRQ
61 if (len
== 3 && buf
[1] == '-') {
62 ctrlchar_sysrq
.key
= buf
[2];
63 schedule_sysrq_work(&ctrlchar_sysrq
);
64 return CTRLCHAR_SYSRQ
;
71 switch (tolower(buf
[1])) {
73 return INTR_CHAR(tty
) | CTRLCHAR_CTRL
;
75 return EOF_CHAR(tty
) | CTRLCHAR_CTRL
;
77 return SUSP_CHAR(tty
) | CTRLCHAR_CTRL
;