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