vserver 1.9.3
[linux-2.6.git] / fs / proc / proc_tty.c
1 /*
2  * proc_tty.c -- handles /proc/tty
3  *
4  * Copyright 1997, Theodore Ts'o
5  */
6
7 #include <asm/uaccess.h>
8
9 #include <linux/init.h>
10 #include <linux/errno.h>
11 #include <linux/time.h>
12 #include <linux/proc_fs.h>
13 #include <linux/stat.h>
14 #include <linux/tty.h>
15 #include <linux/seq_file.h>
16 #include <asm/bitops.h>
17
18 static int tty_ldiscs_read_proc(char *page, char **start, off_t off,
19                                 int count, int *eof, void *data);
20
21 /*
22  * The /proc/tty directory inodes...
23  */
24 static struct proc_dir_entry *proc_tty_ldisc, *proc_tty_driver;
25
26 /*
27  * This is the handler for /proc/tty/drivers
28  */
29 static void show_tty_range(struct seq_file *m, struct tty_driver *p,
30         dev_t from, int num)
31 {
32         seq_printf(m, "%-20s ", p->driver_name ? p->driver_name : "unknown");
33         seq_printf(m, "/dev/%-8s ", p->name);
34         if (p->num > 1) {
35                 char    range[20];
36                 sprintf(range, "%d-%d", MINOR(from),
37                         MINOR(from) + num - 1);
38                 seq_printf(m, "%3d %7s ", MAJOR(from), range);
39         } else {
40                 seq_printf(m, "%3d %7d ", MAJOR(from), MINOR(from));
41         }
42         switch (p->type) {
43         case TTY_DRIVER_TYPE_SYSTEM:
44                 seq_printf(m, "system");
45                 if (p->subtype == SYSTEM_TYPE_TTY)
46                         seq_printf(m, ":/dev/tty");
47                 else if (p->subtype == SYSTEM_TYPE_SYSCONS)
48                         seq_printf(m, ":console");
49                 else if (p->subtype == SYSTEM_TYPE_CONSOLE)
50                         seq_printf(m, ":vtmaster");
51                 break;
52         case TTY_DRIVER_TYPE_CONSOLE:
53                 seq_printf(m, "console");
54                 break;
55         case TTY_DRIVER_TYPE_SERIAL:
56                 seq_printf(m, "serial");
57                 break;
58         case TTY_DRIVER_TYPE_PTY:
59                 if (p->subtype == PTY_TYPE_MASTER)
60                         seq_printf(m, "pty:master");
61                 else if (p->subtype == PTY_TYPE_SLAVE)
62                         seq_printf(m, "pty:slave");
63                 else
64                         seq_printf(m, "pty");
65                 break;
66         default:
67                 seq_printf(m, "type:%d.%d", p->type, p->subtype);
68         }
69         seq_putc(m, '\n');
70 }
71
72 static int show_tty_driver(struct seq_file *m, void *v)
73 {
74         struct tty_driver *p = v;
75         dev_t from = MKDEV(p->major, p->minor_start);
76         dev_t to = from + p->num;
77
78         if (&p->tty_drivers == tty_drivers.next) {
79                 /* pseudo-drivers first */
80                 seq_printf(m, "%-20s /dev/%-8s ", "/dev/tty", "tty");
81                 seq_printf(m, "%3d %7d ", TTYAUX_MAJOR, 0);
82                 seq_printf(m, "system:/dev/tty\n");
83                 seq_printf(m, "%-20s /dev/%-8s ", "/dev/console", "console");
84                 seq_printf(m, "%3d %7d ", TTYAUX_MAJOR, 1);
85                 seq_printf(m, "system:console\n");
86 #ifdef CONFIG_UNIX98_PTYS
87                 seq_printf(m, "%-20s /dev/%-8s ", "/dev/ptmx", "ptmx");
88                 seq_printf(m, "%3d %7d ", TTYAUX_MAJOR, 2);
89                 seq_printf(m, "system\n");
90 #endif
91 #ifdef CONFIG_VT
92                 seq_printf(m, "%-20s /dev/%-8s ", "/dev/vc/0", "vc/0");
93                 seq_printf(m, "%3d %7d ", TTY_MAJOR, 0);
94                 seq_printf(m, "system:vtmaster\n");
95 #endif
96         }
97
98         while (MAJOR(from) < MAJOR(to)) {
99                 dev_t next = MKDEV(MAJOR(from)+1, 0);
100                 show_tty_range(m, p, from, next - from);
101                 from = next;
102         }
103         if (from != to)
104                 show_tty_range(m, p, from, to - from);
105         return 0;
106 }
107
108 /* iterator */
109 static void *t_start(struct seq_file *m, loff_t *pos)
110 {
111         struct list_head *p;
112         loff_t l = *pos;
113         list_for_each(p, &tty_drivers)
114                 if (!l--)
115                         return list_entry(p, struct tty_driver, tty_drivers);
116         return NULL;
117 }
118
119 static void *t_next(struct seq_file *m, void *v, loff_t *pos)
120 {
121         struct list_head *p = ((struct tty_driver *)v)->tty_drivers.next;
122         (*pos)++;
123         return p==&tty_drivers ? NULL :
124                         list_entry(p, struct tty_driver, tty_drivers);
125 }
126
127 static void t_stop(struct seq_file *m, void *v)
128 {
129 }
130
131 static struct seq_operations tty_drivers_op = {
132         .start  = t_start,
133         .next   = t_next,
134         .stop   = t_stop,
135         .show   = show_tty_driver
136 };
137
138 static int tty_drivers_open(struct inode *inode, struct file *file)
139 {
140         return seq_open(file, &tty_drivers_op);
141 }
142
143 static struct file_operations proc_tty_drivers_operations = {
144         .open           = tty_drivers_open,
145         .read           = seq_read,
146         .llseek         = seq_lseek,
147         .release        = seq_release,
148 };
149
150 /*
151  * This is the handler for /proc/tty/ldiscs
152  */
153 static int tty_ldiscs_read_proc(char *page, char **start, off_t off,
154                                 int count, int *eof, void *data)
155 {
156         int     i;
157         int     len = 0;
158         off_t   begin = 0;
159         struct tty_ldisc *ld;
160         
161         for (i=0; i < NR_LDISCS; i++) {
162                 ld = tty_ldisc_get(i);
163                 if (ld == NULL)
164                         continue;
165                 len += sprintf(page+len, "%-10s %2d\n",
166                                ld->name ? ld->name : "???", i);
167                 tty_ldisc_put(i);
168                 if (len+begin > off+count)
169                         break;
170                 if (len+begin < off) {
171                         begin += len;
172                         len = 0;
173                 }
174         }
175         if (i >= NR_LDISCS)
176                 *eof = 1;
177         if (off >= len+begin)
178                 return 0;
179         *start = page + (off-begin);
180         return ((count < begin+len-off) ? count : begin+len-off);
181 }
182
183 /*
184  * This function is called by tty_register_driver() to handle
185  * registering the driver's /proc handler into /proc/tty/driver/<foo>
186  */
187 void proc_tty_register_driver(struct tty_driver *driver)
188 {
189         struct proc_dir_entry *ent;
190                 
191         if ((!driver->read_proc && !driver->write_proc) ||
192             !driver->driver_name ||
193             driver->proc_entry)
194                 return;
195
196         ent = create_proc_entry(driver->driver_name, 0, proc_tty_driver);
197         if (!ent)
198                 return;
199         ent->read_proc = driver->read_proc;
200         ent->write_proc = driver->write_proc;
201         ent->owner = driver->owner;
202         ent->data = driver;
203
204         driver->proc_entry = ent;
205 }
206
207 /*
208  * This function is called by tty_unregister_driver()
209  */
210 void proc_tty_unregister_driver(struct tty_driver *driver)
211 {
212         struct proc_dir_entry *ent;
213
214         ent = driver->proc_entry;
215         if (!ent)
216                 return;
217                 
218         remove_proc_entry(driver->driver_name, proc_tty_driver);
219         
220         driver->proc_entry = NULL;
221 }
222
223 /*
224  * Called by proc_root_init() to initialize the /proc/tty subtree
225  */
226 void __init proc_tty_init(void)
227 {
228         struct proc_dir_entry *entry;
229         if (!proc_mkdir("tty", NULL))
230                 return;
231         proc_tty_ldisc = proc_mkdir("tty/ldisc", NULL);
232         /*
233          * /proc/tty/driver/serial reveals the exact character counts for
234          * serial links which is just too easy to abuse for inferring
235          * password lengths and inter-keystroke timings during password
236          * entry.
237          */
238         proc_tty_driver = proc_mkdir_mode("tty/driver", S_IRUSR | S_IXUSR, NULL);
239
240         create_proc_read_entry("tty/ldiscs", 0, NULL, tty_ldiscs_read_proc, NULL);
241         entry = create_proc_entry("tty/drivers", 0, NULL);
242         if (entry)
243                 entry->proc_fops = &proc_tty_drivers_operations;
244 }