blob: c69ff191e5d8f56019f9f6af723c47e20b805e28 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * proc_tty.c -- handles /proc/tty
4 *
5 * Copyright 1997, Theodore Ts'o
6 */
7
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -08008#include <linux/uaccess.h>
Alexey Dobriyanb640a892008-04-29 01:01:58 -07009#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/init.h>
11#include <linux/errno.h>
12#include <linux/time.h>
13#include <linux/proc_fs.h>
14#include <linux/stat.h>
15#include <linux/tty.h>
16#include <linux/seq_file.h>
17#include <linux/bitops.h>
nixiaomingc79dde62017-09-15 17:45:56 +080018#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/*
21 * The /proc/tty directory inodes...
22 */
Alexey Dobriyan849d20a2014-08-08 14:21:31 -070023static struct proc_dir_entry *proc_tty_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
26 * This is the handler for /proc/tty/drivers
27 */
28static void show_tty_range(struct seq_file *m, struct tty_driver *p,
29 dev_t from, int num)
30{
31 seq_printf(m, "%-20s ", p->driver_name ? p->driver_name : "unknown");
32 seq_printf(m, "/dev/%-8s ", p->name);
33 if (p->num > 1) {
34 seq_printf(m, "%3d %d-%d ", MAJOR(from), MINOR(from),
35 MINOR(from) + num - 1);
36 } else {
37 seq_printf(m, "%3d %7d ", MAJOR(from), MINOR(from));
38 }
39 switch (p->type) {
40 case TTY_DRIVER_TYPE_SYSTEM:
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080041 seq_puts(m, "system");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 if (p->subtype == SYSTEM_TYPE_TTY)
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080043 seq_puts(m, ":/dev/tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 else if (p->subtype == SYSTEM_TYPE_SYSCONS)
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080045 seq_puts(m, ":console");
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 else if (p->subtype == SYSTEM_TYPE_CONSOLE)
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080047 seq_puts(m, ":vtmaster");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 break;
49 case TTY_DRIVER_TYPE_CONSOLE:
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080050 seq_puts(m, "console");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 break;
52 case TTY_DRIVER_TYPE_SERIAL:
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080053 seq_puts(m, "serial");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 break;
55 case TTY_DRIVER_TYPE_PTY:
56 if (p->subtype == PTY_TYPE_MASTER)
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080057 seq_puts(m, "pty:master");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 else if (p->subtype == PTY_TYPE_SLAVE)
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080059 seq_puts(m, "pty:slave");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 else
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080061 seq_puts(m, "pty");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 break;
63 default:
64 seq_printf(m, "type:%d.%d", p->type, p->subtype);
65 }
66 seq_putc(m, '\n');
67}
68
69static int show_tty_driver(struct seq_file *m, void *v)
70{
Pavel Emelianov25216b02007-07-15 23:39:54 -070071 struct tty_driver *p = list_entry(v, struct tty_driver, tty_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 dev_t from = MKDEV(p->major, p->minor_start);
73 dev_t to = from + p->num;
74
75 if (&p->tty_drivers == tty_drivers.next) {
76 /* pseudo-drivers first */
77 seq_printf(m, "%-20s /dev/%-8s ", "/dev/tty", "tty");
78 seq_printf(m, "%3d %7d ", TTYAUX_MAJOR, 0);
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080079 seq_puts(m, "system:/dev/tty\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 seq_printf(m, "%-20s /dev/%-8s ", "/dev/console", "console");
81 seq_printf(m, "%3d %7d ", TTYAUX_MAJOR, 1);
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080082 seq_puts(m, "system:console\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#ifdef CONFIG_UNIX98_PTYS
84 seq_printf(m, "%-20s /dev/%-8s ", "/dev/ptmx", "ptmx");
85 seq_printf(m, "%3d %7d ", TTYAUX_MAJOR, 2);
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080086 seq_puts(m, "system\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#endif
88#ifdef CONFIG_VT
89 seq_printf(m, "%-20s /dev/%-8s ", "/dev/vc/0", "vc/0");
90 seq_printf(m, "%3d %7d ", TTY_MAJOR, 0);
Alexey Dobriyan9d6de122011-01-12 17:00:32 -080091 seq_puts(m, "system:vtmaster\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#endif
93 }
94
95 while (MAJOR(from) < MAJOR(to)) {
96 dev_t next = MKDEV(MAJOR(from)+1, 0);
97 show_tty_range(m, p, from, next - from);
98 from = next;
99 }
100 if (from != to)
101 show_tty_range(m, p, from, to - from);
102 return 0;
103}
104
105/* iterator */
106static void *t_start(struct seq_file *m, loff_t *pos)
107{
Alexey Dobriyanca509f62007-05-08 00:27:12 -0700108 mutex_lock(&tty_mutex);
Pavel Emelianov25216b02007-07-15 23:39:54 -0700109 return seq_list_start(&tty_drivers, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112static void *t_next(struct seq_file *m, void *v, loff_t *pos)
113{
Pavel Emelianov25216b02007-07-15 23:39:54 -0700114 return seq_list_next(v, &tty_drivers, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static void t_stop(struct seq_file *m, void *v)
118{
Alexey Dobriyanca509f62007-05-08 00:27:12 -0700119 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Jan Engelhardt03a44822008-02-08 04:21:19 -0800122static const struct seq_operations tty_drivers_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 .start = t_start,
124 .next = t_next,
125 .stop = t_stop,
126 .show = show_tty_driver
127};
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
130 * This function is called by tty_register_driver() to handle
131 * registering the driver's /proc handler into /proc/tty/driver/<foo>
132 */
133void proc_tty_register_driver(struct tty_driver *driver)
134{
135 struct proc_dir_entry *ent;
136
Alexey Dobriyan0f043a82009-03-31 15:19:25 -0700137 if (!driver->driver_name || driver->proc_entry ||
Christoph Hellwig8a8dcab2018-04-13 21:04:45 +0200138 !driver->ops->proc_show)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return;
140
Christoph Hellwig8a8dcab2018-04-13 21:04:45 +0200141 ent = proc_create_single_data(driver->driver_name, 0, proc_tty_driver,
142 driver->ops->proc_show, driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 driver->proc_entry = ent;
144}
145
146/*
147 * This function is called by tty_unregister_driver()
148 */
149void proc_tty_unregister_driver(struct tty_driver *driver)
150{
151 struct proc_dir_entry *ent;
152
153 ent = driver->proc_entry;
154 if (!ent)
155 return;
156
nixiaomingc79dde62017-09-15 17:45:56 +0800157 remove_proc_entry(ent->name, proc_tty_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 driver->proc_entry = NULL;
160}
161
162/*
163 * Called by proc_root_init() to initialize the /proc/tty subtree
164 */
165void __init proc_tty_init(void)
166{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!proc_mkdir("tty", NULL))
168 return;
Alexey Dobriyan849d20a2014-08-08 14:21:31 -0700169 proc_mkdir("tty/ldisc", NULL); /* Preserved: it's userspace visible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /*
171 * /proc/tty/driver/serial reveals the exact character counts for
172 * serial links which is just too easy to abuse for inferring
173 * password lengths and inter-keystroke timings during password
174 * entry.
175 */
Alexey Dobriyanb640a892008-04-29 01:01:58 -0700176 proc_tty_driver = proc_mkdir_mode("tty/driver", S_IRUSR|S_IXUSR, NULL);
Christoph Hellwigfddda2b2018-04-13 19:44:18 +0200177 proc_create_seq("tty/ldiscs", 0, NULL, &tty_ldiscs_seq_ops);
178 proc_create_seq("tty/drivers", 0, NULL, &tty_drivers_op);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}