Linux Audio

Check our new training course

Loading...
v6.8
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 *  Unified handling of special chars.
 4 *
 5 *    Copyright IBM Corp. 2001
 6 *    Author(s): Fritz Elfert <felfert@millenux.com> <elfert@de.ibm.com>
 7 *
 8 */
 9
10#include <linux/stddef.h>
11#include <asm/errno.h>
12#include <linux/sysrq.h>
13#include <linux/ctype.h>
14
15#include "ctrlchar.h"
16
17#ifdef CONFIG_MAGIC_SYSRQ
18static struct sysrq_work ctrlchar_sysrq;
19
20static void
21ctrlchar_handle_sysrq(struct work_struct *work)
22{
23	struct sysrq_work *sysrq = container_of(work, struct sysrq_work, work);
24
25	handle_sysrq(sysrq->key);
26}
27
28void schedule_sysrq_work(struct sysrq_work *sw)
29{
30	INIT_WORK(&sw->work, ctrlchar_handle_sysrq);
31	schedule_work(&sw->work);
32}
33#endif
34
35
36/**
37 * ctrlchar_handle - check for special chars at start of input
38 *
39 * @buf: console input buffer
40 * @len: length of valid data in buffer
41 * @tty: the tty struct for this console
42 *
43 * Return: CTRLCHAR_NONE, if nothing matched,
 
 
 
44 *         CTRLCHAR_SYSRQ, if sysrq was encountered
45 *         otherwise char to be inserted logically or'ed
46 *         with CTRLCHAR_CTRL
47 */
48unsigned int
49ctrlchar_handle(const unsigned char *buf, int len, struct tty_struct *tty)
50{
51	if ((len < 2) || (len > 3))
52		return CTRLCHAR_NONE;
53
54	/* hat is 0xb1 in codepage 037 (US etc.) and thus */
55	/* converted to 0x5e in ascii ('^') */
56	if ((buf[0] != '^') && (buf[0] != '\252'))
57		return CTRLCHAR_NONE;
58
59#ifdef CONFIG_MAGIC_SYSRQ
60	/* racy */
61	if (len == 3 && buf[1] == '-') {
62		ctrlchar_sysrq.key = buf[2];
63		schedule_sysrq_work(&ctrlchar_sysrq);
64		return CTRLCHAR_SYSRQ;
65	}
66#endif
67
68	if (len != 2)
69		return CTRLCHAR_NONE;
70
71	switch (tolower(buf[1])) {
72	case 'c':
73		return INTR_CHAR(tty) | CTRLCHAR_CTRL;
74	case 'd':
75		return EOF_CHAR(tty)  | CTRLCHAR_CTRL;
76	case 'z':
77		return SUSP_CHAR(tty) | CTRLCHAR_CTRL;
78	}
79	return CTRLCHAR_NONE;
80}
v3.15
 
 1/*
 2 *  Unified handling of special chars.
 3 *
 4 *    Copyright IBM Corp. 2001
 5 *    Author(s): Fritz Elfert <felfert@millenux.com> <elfert@de.ibm.com>
 6 *
 7 */
 8
 9#include <linux/stddef.h>
10#include <asm/errno.h>
11#include <linux/sysrq.h>
12#include <linux/ctype.h>
13
14#include "ctrlchar.h"
15
16#ifdef CONFIG_MAGIC_SYSRQ
17static int ctrlchar_sysrq_key;
18
19static void
20ctrlchar_handle_sysrq(struct work_struct *work)
21{
22	handle_sysrq(ctrlchar_sysrq_key);
 
 
23}
24
25static DECLARE_WORK(ctrlchar_work, ctrlchar_handle_sysrq);
 
 
 
 
26#endif
27
28
29/**
30 * Check for special chars at start of input.
 
 
 
 
31 *
32 * @param buf Console input buffer.
33 * @param len Length of valid data in buffer.
34 * @param tty The tty struct for this console.
35 * @return CTRLCHAR_NONE, if nothing matched,
36 *         CTRLCHAR_SYSRQ, if sysrq was encountered
37 *         otherwise char to be inserted logically or'ed
38 *         with CTRLCHAR_CTRL
39 */
40unsigned int
41ctrlchar_handle(const unsigned char *buf, int len, struct tty_struct *tty)
42{
43	if ((len < 2) || (len > 3))
44		return CTRLCHAR_NONE;
45
46	/* hat is 0xb1 in codepage 037 (US etc.) and thus */
47	/* converted to 0x5e in ascii ('^') */
48	if ((buf[0] != '^') && (buf[0] != '\252'))
49		return CTRLCHAR_NONE;
50
51#ifdef CONFIG_MAGIC_SYSRQ
52	/* racy */
53	if (len == 3 && buf[1] == '-') {
54		ctrlchar_sysrq_key = buf[2];
55		schedule_work(&ctrlchar_work);
56		return CTRLCHAR_SYSRQ;
57	}
58#endif
59
60	if (len != 2)
61		return CTRLCHAR_NONE;
62
63	switch (tolower(buf[1])) {
64	case 'c':
65		return INTR_CHAR(tty) | CTRLCHAR_CTRL;
66	case 'd':
67		return EOF_CHAR(tty)  | CTRLCHAR_CTRL;
68	case 'z':
69		return SUSP_CHAR(tty) | CTRLCHAR_CTRL;
70	}
71	return CTRLCHAR_NONE;
72}