blob: 93f5d11c830b792425b6fc45e7e269091719d942 [file] [log] [blame]
Thomas Gleixnera6377d902019-06-01 10:08:17 +02001// SPDX-License-Identifier: GPL-2.0-only
Samo Pogacnik24b4b672010-08-25 20:44:07 +02002/*
3 * linux/drivers/char/ttyprintk.c
4 *
5 * Copyright (C) 2010 Samo Pogacnik
Samo Pogacnik24b4b672010-08-25 20:44:07 +02006 */
7
8/*
9 * This pseudo device allows user to make printk messages. It is possible
10 * to store "console" messages inline with kernel messages for better analyses
11 * of the boot process, for example.
12 */
13
14#include <linux/device.h>
15#include <linux/serial.h>
16#include <linux/tty.h>
Takashi Iwaib24313a2014-04-02 14:45:22 +020017#include <linux/module.h>
Zhenzhong Duan9a655c72020-01-13 11:48:42 +080018#include <linux/spinlock.h>
Samo Pogacnik24b4b672010-08-25 20:44:07 +020019
20struct ttyprintk_port {
21 struct tty_port port;
Zhenzhong Duan9a655c72020-01-13 11:48:42 +080022 spinlock_t spinlock;
Samo Pogacnik24b4b672010-08-25 20:44:07 +020023};
24
25static struct ttyprintk_port tpk_port;
26
27/*
28 * Our simple preformatting supports transparent output of (time-stamped)
29 * printk messages (also suitable for logging service):
30 * - any cr is replaced by nl
31 * - adds a ttyprintk source tag in front of each line
Joe Perches0b3191d2016-09-06 09:49:04 -070032 * - too long message is fragmented, with '\'nl between fragments
33 * - TPK_STR_SIZE isn't really the write_room limiting factor, because
Samo Pogacnik24b4b672010-08-25 20:44:07 +020034 * it is emptied on the fly during preformatting.
35 */
36#define TPK_STR_SIZE 508 /* should be bigger then max expected line length */
37#define TPK_MAX_ROOM 4096 /* we could assume 4K for instance */
Peter Korsgaardacef6662018-11-06 23:11:37 +010038#define TPK_PREFIX KERN_SOH __stringify(CONFIG_TTY_PRINTK_LEVEL)
39
Samo Pogacnik24b4b672010-08-25 20:44:07 +020040static int tpk_curr;
41
Joe Perches0b3191d2016-09-06 09:49:04 -070042static char tpk_buffer[TPK_STR_SIZE + 4];
43
44static void tpk_flush(void)
45{
46 if (tpk_curr > 0) {
47 tpk_buffer[tpk_curr] = '\0';
Peter Korsgaardacef6662018-11-06 23:11:37 +010048 printk(TPK_PREFIX "[U] %s\n", tpk_buffer);
Joe Perches0b3191d2016-09-06 09:49:04 -070049 tpk_curr = 0;
50 }
51}
52
Samo Pogacnik24b4b672010-08-25 20:44:07 +020053static int tpk_printk(const unsigned char *buf, int count)
54{
Samo Pogacnik24b4b672010-08-25 20:44:07 +020055 int i = tpk_curr;
56
57 if (buf == NULL) {
Joe Perches0b3191d2016-09-06 09:49:04 -070058 tpk_flush();
Samo Pogacnik24b4b672010-08-25 20:44:07 +020059 return i;
60 }
61
62 for (i = 0; i < count; i++) {
Joe Perches0b3191d2016-09-06 09:49:04 -070063 if (tpk_curr >= TPK_STR_SIZE) {
Samo Pogacnik24b4b672010-08-25 20:44:07 +020064 /* end of tmp buffer reached: cut the message in two */
Joe Perches0b3191d2016-09-06 09:49:04 -070065 tpk_buffer[tpk_curr++] = '\\';
66 tpk_flush();
67 }
68
69 switch (buf[i]) {
70 case '\r':
71 tpk_flush();
72 if ((i + 1) < count && buf[i + 1] == '\n')
73 i++;
74 break;
75 case '\n':
76 tpk_flush();
77 break;
78 default:
79 tpk_buffer[tpk_curr++] = buf[i];
80 break;
Samo Pogacnik24b4b672010-08-25 20:44:07 +020081 }
82 }
83
84 return count;
85}
86
87/*
88 * TTY operations open function.
89 */
90static int tpk_open(struct tty_struct *tty, struct file *filp)
91{
92 tty->driver_data = &tpk_port;
93
94 return tty_port_open(&tpk_port.port, tty, filp);
95}
96
97/*
98 * TTY operations close function.
99 */
100static void tpk_close(struct tty_struct *tty, struct file *filp)
101{
102 struct ttyprintk_port *tpkp = tty->driver_data;
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800103 unsigned long flags;
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200104
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800105 spin_lock_irqsave(&tpkp->spinlock, flags);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200106 /* flush tpk_printk buffer */
107 tpk_printk(NULL, 0);
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800108 spin_unlock_irqrestore(&tpkp->spinlock, flags);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200109
110 tty_port_close(&tpkp->port, tty, filp);
111}
112
113/*
114 * TTY operations write function.
115 */
116static int tpk_write(struct tty_struct *tty,
117 const unsigned char *buf, int count)
118{
119 struct ttyprintk_port *tpkp = tty->driver_data;
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800120 unsigned long flags;
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200121 int ret;
122
123
124 /* exclusive use of tpk_printk within this tty */
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800125 spin_lock_irqsave(&tpkp->spinlock, flags);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200126 ret = tpk_printk(buf, count);
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800127 spin_unlock_irqrestore(&tpkp->spinlock, flags);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200128
129 return ret;
130}
131
132/*
133 * TTY operations write_room function.
134 */
135static int tpk_write_room(struct tty_struct *tty)
136{
137 return TPK_MAX_ROOM;
138}
139
140/*
141 * TTY operations ioctl function.
142 */
Alan Cox6caa76b2011-02-14 16:27:22 +0000143static int tpk_ioctl(struct tty_struct *tty,
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200144 unsigned int cmd, unsigned long arg)
145{
146 struct ttyprintk_port *tpkp = tty->driver_data;
147
148 if (!tpkp)
149 return -EINVAL;
150
151 switch (cmd) {
152 /* Stop TIOCCONS */
153 case TIOCCONS:
154 return -EOPNOTSUPP;
155 default:
156 return -ENOIOCTLCMD;
157 }
158 return 0;
159}
160
Tetsuo Handa927162c2021-04-15 09:22:22 +0900161/*
162 * TTY operations hangup function.
163 */
164static void tpk_hangup(struct tty_struct *tty)
165{
166 struct ttyprintk_port *tpkp = tty->driver_data;
167
168 tty_port_hangup(&tpkp->port);
169}
170
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200171static const struct tty_operations ttyprintk_ops = {
172 .open = tpk_open,
173 .close = tpk_close,
174 .write = tpk_write,
175 .write_room = tpk_write_room,
176 .ioctl = tpk_ioctl,
Tetsuo Handa927162c2021-04-15 09:22:22 +0900177 .hangup = tpk_hangup,
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200178};
179
Aya Mahfouz9b95d952015-12-15 01:50:19 +0200180static const struct tty_port_operations null_ops = { };
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200181
182static struct tty_driver *ttyprintk_driver;
183
184static int __init ttyprintk_init(void)
185{
Colin Ian King87758932020-06-11 16:31:08 +0100186 int ret;
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200187
Zhenzhong Duan9a655c72020-01-13 11:48:42 +0800188 spin_lock_init(&tpk_port.spinlock);
Jiri Slaby536a3442012-08-07 21:47:40 +0200189
Jiri Slaby0019b402012-08-08 22:26:43 +0200190 ttyprintk_driver = tty_alloc_driver(1,
191 TTY_DRIVER_RESET_TERMIOS |
192 TTY_DRIVER_REAL_RAW |
193 TTY_DRIVER_UNNUMBERED_NODE);
Dan Carpenterc3a63442012-08-16 16:16:56 +0300194 if (IS_ERR(ttyprintk_driver))
195 return PTR_ERR(ttyprintk_driver);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200196
Jiri Slaby191c5f12012-11-15 09:49:56 +0100197 tty_port_init(&tpk_port.port);
Darrick J. Wongb5325a02013-05-10 15:40:13 -0700198 tpk_port.port.ops = &null_ops;
Jiri Slaby191c5f12012-11-15 09:49:56 +0100199
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200200 ttyprintk_driver->driver_name = "ttyprintk";
201 ttyprintk_driver->name = "ttyprintk";
202 ttyprintk_driver->major = TTYAUX_MAJOR;
203 ttyprintk_driver->minor_start = 3;
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200204 ttyprintk_driver->type = TTY_DRIVER_TYPE_CONSOLE;
205 ttyprintk_driver->init_termios = tty_std_termios;
206 ttyprintk_driver->init_termios.c_oflag = OPOST | OCRNL | ONOCR | ONLRET;
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200207 tty_set_operations(ttyprintk_driver, &ttyprintk_ops);
Jiri Slabyb19e2ca2012-08-07 21:47:51 +0200208 tty_port_link_device(&tpk_port.port, ttyprintk_driver, 0);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200209
210 ret = tty_register_driver(ttyprintk_driver);
211 if (ret < 0) {
212 printk(KERN_ERR "Couldn't register ttyprintk driver\n");
213 goto error;
214 }
215
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200216 return 0;
217
218error:
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200219 put_tty_driver(ttyprintk_driver);
Jiri Slaby191c5f12012-11-15 09:49:56 +0100220 tty_port_destroy(&tpk_port.port);
Samo Pogacnik24b4b672010-08-25 20:44:07 +0200221 return ret;
222}
Takashi Iwaib24313a2014-04-02 14:45:22 +0200223
224static void __exit ttyprintk_exit(void)
225{
226 tty_unregister_driver(ttyprintk_driver);
227 put_tty_driver(ttyprintk_driver);
228 tty_port_destroy(&tpk_port.port);
229}
230
Paul Gortmakerdb50d2f2014-01-12 12:37:56 -0500231device_initcall(ttyprintk_init);
Takashi Iwaib24313a2014-04-02 14:45:22 +0200232module_exit(ttyprintk_exit);
233
234MODULE_LICENSE("GPL");