tty: core: Improve debug message content
[linux-2.6-block.git] / drivers / tty / tty_io.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 */
4
5/*
6 * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles
7 * or rs-channels. It also implements echoing, cooked mode etc.
8 *
9 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
10 *
11 * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the
12 * tty_struct and tty_queue structures. Previously there was an array
13 * of 256 tty_struct's which was statically allocated, and the
14 * tty_queue structures were allocated at boot time. Both are now
15 * dynamically allocated only when the tty is open.
16 *
17 * Also restructured routines so that there is more of a separation
18 * between the high-level tty routines (tty_io.c and tty_ioctl.c) and
19 * the low-level tty routines (serial.c, pty.c, console.c). This
37bdfb07 20 * makes for cleaner and more compact code. -TYT, 9/17/92
1da177e4
LT
21 *
22 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
23 * which can be dynamically activated and de-activated by the line
24 * discipline handling modules (like SLIP).
25 *
26 * NOTE: pay no attention to the line discipline code (yet); its
27 * interface is still subject to change in this version...
28 * -- TYT, 1/31/92
29 *
30 * Added functionality to the OPOST tty handling. No delays, but all
31 * other bits should be there.
32 * -- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993.
33 *
34 * Rewrote canonical mode and added more termios flags.
35 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
36 *
37 * Reorganized FASYNC support so mouse code can share it.
38 * -- ctm@ardi.com, 9Sep95
39 *
40 * New TIOCLINUX variants added.
41 * -- mj@k332.feld.cvut.cz, 19-Nov-95
37bdfb07 42 *
1da177e4
LT
43 * Restrict vt switching via ioctl()
44 * -- grif@cs.ucr.edu, 5-Dec-95
45 *
46 * Move console and virtual terminal code to more appropriate files,
47 * implement CONFIG_VT and generalize console device interface.
48 * -- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97
49 *
d81ed103 50 * Rewrote tty_init_dev and tty_release_dev to eliminate races.
1da177e4
LT
51 * -- Bill Hawes <whawes@star.net>, June 97
52 *
53 * Added devfs support.
54 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
55 *
56 * Added support for a Unix98-style ptmx device.
57 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
58 *
59 * Reduced memory usage for older ARM systems
60 * -- Russell King <rmk@arm.linux.org.uk>
61 *
62 * Move do_SAK() into process context. Less stack use in devfs functions.
37bdfb07
AC
63 * alloc_tty_struct() always uses kmalloc()
64 * -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
1da177e4
LT
65 */
66
1da177e4
LT
67#include <linux/types.h>
68#include <linux/major.h>
69#include <linux/errno.h>
70#include <linux/signal.h>
71#include <linux/fcntl.h>
72#include <linux/sched.h>
73#include <linux/interrupt.h>
74#include <linux/tty.h>
75#include <linux/tty_driver.h>
76#include <linux/tty_flip.h>
77#include <linux/devpts_fs.h>
78#include <linux/file.h>
9f3acc31 79#include <linux/fdtable.h>
1da177e4
LT
80#include <linux/console.h>
81#include <linux/timer.h>
82#include <linux/ctype.h>
83#include <linux/kd.h>
84#include <linux/mm.h>
85#include <linux/string.h>
86#include <linux/slab.h>
87#include <linux/poll.h>
88#include <linux/proc_fs.h>
89#include <linux/init.h>
90#include <linux/module.h>
1da177e4 91#include <linux/device.h>
1da177e4
LT
92#include <linux/wait.h>
93#include <linux/bitops.h>
b20f3ae5 94#include <linux/delay.h>
a352def2 95#include <linux/seq_file.h>
d281da7f 96#include <linux/serial.h>
5a3c6b25 97#include <linux/ratelimit.h>
1da177e4 98
a352def2 99#include <linux/uaccess.h>
1da177e4
LT
100
101#include <linux/kbd_kern.h>
102#include <linux/vt_kern.h>
103#include <linux/selection.h>
1da177e4
LT
104
105#include <linux/kmod.h>
b488893a 106#include <linux/nsproxy.h>
1da177e4
LT
107
108#undef TTY_DEBUG_HANGUP
109
110#define TTY_PARANOIA_CHECK 1
111#define CHECK_TTY_COUNT 1
112
edc6afc5 113struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
1da177e4
LT
114 .c_iflag = ICRNL | IXON,
115 .c_oflag = OPOST | ONLCR,
116 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
117 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
118 ECHOCTL | ECHOKE | IEXTEN,
edc6afc5
AC
119 .c_cc = INIT_C_CC,
120 .c_ispeed = 38400,
121 .c_ospeed = 38400
1da177e4
LT
122};
123
124EXPORT_SYMBOL(tty_std_termios);
125
126/* This list gets poked at by procfs and various bits of boot up code. This
127 could do with some rationalisation such as pulling the tty proc function
128 into this file */
37bdfb07 129
1da177e4
LT
130LIST_HEAD(tty_drivers); /* linked list of tty drivers */
131
24ec839c 132/* Mutex to protect creating and releasing a tty. This is shared with
1da177e4 133 vt.c for deeply disgusting hack reasons */
70522e12 134DEFINE_MUTEX(tty_mutex);
de2a84f2 135EXPORT_SYMBOL(tty_mutex);
1da177e4 136
ee2ffa0d
NP
137/* Spinlock to protect the tty->tty_files list */
138DEFINE_SPINLOCK(tty_files_lock);
139
1da177e4
LT
140static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
141static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
37bdfb07
AC
142ssize_t redirected_tty_write(struct file *, const char __user *,
143 size_t, loff_t *);
1da177e4
LT
144static unsigned int tty_poll(struct file *, poll_table *);
145static int tty_open(struct inode *, struct file *);
04f378b1 146long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
e10cc1df 147#ifdef CONFIG_COMPAT
37bdfb07 148static long tty_compat_ioctl(struct file *file, unsigned int cmd,
e10cc1df
PF
149 unsigned long arg);
150#else
151#define tty_compat_ioctl NULL
152#endif
ec79d605 153static int __tty_fasync(int fd, struct file *filp, int on);
37bdfb07 154static int tty_fasync(int fd, struct file *filp, int on);
d5698c28 155static void release_tty(struct tty_struct *tty, int idx);
1da177e4 156
af9b897e
AC
157/**
158 * free_tty_struct - free a disused tty
159 * @tty: tty struct to free
160 *
161 * Free the write buffers, tty queue and tty memory itself.
162 *
163 * Locking: none. Must be called after tty is definitely unused
164 */
165
bf970ee4 166void free_tty_struct(struct tty_struct *tty)
1da177e4 167{
dc6802a7
DC
168 if (!tty)
169 return;
a211b1af 170 put_device(tty->dev);
1da177e4 171 kfree(tty->write_buf);
89c8d91e 172 tty->magic = 0xDEADDEAD;
1da177e4
LT
173 kfree(tty);
174}
175
d996b62a
NP
176static inline struct tty_struct *file_tty(struct file *file)
177{
178 return ((struct tty_file_private *)file->private_data)->tty;
179}
180
fa90e1c9 181int tty_alloc_file(struct file *file)
d996b62a
NP
182{
183 struct tty_file_private *priv;
184
f573bd17
PE
185 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
186 if (!priv)
187 return -ENOMEM;
d996b62a 188
fa90e1c9
JS
189 file->private_data = priv;
190
191 return 0;
192}
193
194/* Associate a new file with the tty structure */
195void tty_add_file(struct tty_struct *tty, struct file *file)
196{
197 struct tty_file_private *priv = file->private_data;
198
d996b62a
NP
199 priv->tty = tty;
200 priv->file = file;
d996b62a
NP
201
202 spin_lock(&tty_files_lock);
203 list_add(&priv->list, &tty->tty_files);
204 spin_unlock(&tty_files_lock);
fa90e1c9 205}
f573bd17 206
fa90e1c9
JS
207/**
208 * tty_free_file - free file->private_data
209 *
210 * This shall be used only for fail path handling when tty_add_file was not
211 * called yet.
212 */
213void tty_free_file(struct file *file)
214{
215 struct tty_file_private *priv = file->private_data;
216
217 file->private_data = NULL;
218 kfree(priv);
d996b62a
NP
219}
220
221/* Delete file from its tty */
2520e274 222static void tty_del_file(struct file *file)
d996b62a
NP
223{
224 struct tty_file_private *priv = file->private_data;
225
226 spin_lock(&tty_files_lock);
227 list_del(&priv->list);
228 spin_unlock(&tty_files_lock);
fa90e1c9 229 tty_free_file(file);
d996b62a
NP
230}
231
232
1da177e4
LT
233#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
234
af9b897e
AC
235/**
236 * tty_name - return tty naming
237 * @tty: tty structure
af9b897e
AC
238 *
239 * Convert a tty structure into a name. The name reflects the kernel
240 * naming policy and if udev is in use may not reflect user space
241 *
242 * Locking: none
243 */
244
429b4749 245const char *tty_name(const struct tty_struct *tty)
1da177e4
LT
246{
247 if (!tty) /* Hmm. NULL pointer. That's fun. */
917162c9
RV
248 return "NULL tty";
249 return tty->name;
1da177e4
LT
250}
251
252EXPORT_SYMBOL(tty_name);
253
d769a669 254int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
1da177e4
LT
255 const char *routine)
256{
257#ifdef TTY_PARANOIA_CHECK
258 if (!tty) {
259 printk(KERN_WARNING
260 "null TTY for (%d:%d) in %s\n",
261 imajor(inode), iminor(inode), routine);
262 return 1;
263 }
264 if (tty->magic != TTY_MAGIC) {
265 printk(KERN_WARNING
266 "bad magic number for tty struct (%d:%d) in %s\n",
267 imajor(inode), iminor(inode), routine);
268 return 1;
269 }
270#endif
271 return 0;
272}
273
deb287e7 274/* Caller must hold tty_lock */
1da177e4
LT
275static int check_tty_count(struct tty_struct *tty, const char *routine)
276{
277#ifdef CHECK_TTY_COUNT
278 struct list_head *p;
279 int count = 0;
37bdfb07 280
ee2ffa0d 281 spin_lock(&tty_files_lock);
1da177e4
LT
282 list_for_each(p, &tty->tty_files) {
283 count++;
284 }
ee2ffa0d 285 spin_unlock(&tty_files_lock);
1da177e4
LT
286 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
287 tty->driver->subtype == PTY_TYPE_SLAVE &&
288 tty->link && tty->link->count)
289 count++;
290 if (tty->count != count) {
291 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
292 "!= #fd's(%d) in %s\n",
293 tty->name, tty->count, count, routine);
294 return count;
24ec839c 295 }
1da177e4
LT
296#endif
297 return 0;
298}
299
af9b897e
AC
300/**
301 * get_tty_driver - find device of a tty
302 * @dev_t: device identifier
303 * @index: returns the index of the tty
304 *
305 * This routine returns a tty driver structure, given a device number
306 * and also passes back the index number.
307 *
308 * Locking: caller must hold tty_mutex
1da177e4 309 */
af9b897e 310
1da177e4
LT
311static struct tty_driver *get_tty_driver(dev_t device, int *index)
312{
313 struct tty_driver *p;
314
315 list_for_each_entry(p, &tty_drivers, tty_drivers) {
316 dev_t base = MKDEV(p->major, p->minor_start);
317 if (device < base || device >= base + p->num)
318 continue;
319 *index = device - base;
7d7b93c1 320 return tty_driver_kref_get(p);
1da177e4
LT
321 }
322 return NULL;
323}
324
f2d937f3
JW
325#ifdef CONFIG_CONSOLE_POLL
326
327/**
328 * tty_find_polling_driver - find device of a polled tty
329 * @name: name string to match
330 * @line: pointer to resulting tty line nr
331 *
332 * This routine returns a tty driver structure, given a name
333 * and the condition that the tty driver is capable of polled
334 * operation.
335 */
336struct tty_driver *tty_find_polling_driver(char *name, int *line)
337{
338 struct tty_driver *p, *res = NULL;
339 int tty_line = 0;
0dca0fd2 340 int len;
5f0878ac 341 char *str, *stp;
f2d937f3 342
0dca0fd2
JW
343 for (str = name; *str; str++)
344 if ((*str >= '0' && *str <= '9') || *str == ',')
345 break;
346 if (!*str)
347 return NULL;
348
349 len = str - name;
350 tty_line = simple_strtoul(str, &str, 10);
351
f2d937f3
JW
352 mutex_lock(&tty_mutex);
353 /* Search through the tty devices to look for a match */
354 list_for_each_entry(p, &tty_drivers, tty_drivers) {
0dca0fd2
JW
355 if (strncmp(name, p->name, len) != 0)
356 continue;
5f0878ac
AC
357 stp = str;
358 if (*stp == ',')
359 stp++;
360 if (*stp == '\0')
361 stp = NULL;
f2d937f3 362
6eb68d6f 363 if (tty_line >= 0 && tty_line < p->num && p->ops &&
5f0878ac 364 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) {
7d7b93c1 365 res = tty_driver_kref_get(p);
f2d937f3
JW
366 *line = tty_line;
367 break;
368 }
369 }
370 mutex_unlock(&tty_mutex);
371
372 return res;
373}
374EXPORT_SYMBOL_GPL(tty_find_polling_driver);
375#endif
376
af9b897e
AC
377/**
378 * tty_check_change - check for POSIX terminal changes
379 * @tty: tty to check
380 *
381 * If we try to write to, or set the state of, a terminal and we're
382 * not in the foreground, send a SIGTTOU. If the signal is blocked or
383 * ignored, go ahead and perform the operation. (POSIX 7.2)
384 *
978e595f 385 * Locking: ctrl_lock
1da177e4 386 */
af9b897e 387
37bdfb07 388int tty_check_change(struct tty_struct *tty)
1da177e4 389{
47f86834 390 unsigned long flags;
6719693c 391 struct pid *pgrp;
47f86834
AC
392 int ret = 0;
393
1da177e4
LT
394 if (current->signal->tty != tty)
395 return 0;
47f86834 396
6719693c
PD
397 rcu_read_lock();
398 pgrp = task_pgrp(current);
399
47f86834
AC
400 spin_lock_irqsave(&tty->ctrl_lock, flags);
401
ab521dc0
EB
402 if (!tty->pgrp) {
403 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
9ffee4cb 404 goto out_unlock;
1da177e4 405 }
6719693c 406 if (pgrp == tty->pgrp)
9ffee4cb
AM
407 goto out_unlock;
408 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
6719693c 409
1da177e4 410 if (is_ignored(SIGTTOU))
6719693c 411 goto out_rcuunlock;
47f86834
AC
412 if (is_current_pgrp_orphaned()) {
413 ret = -EIO;
6719693c 414 goto out_rcuunlock;
47f86834 415 }
6719693c
PD
416 kill_pgrp(pgrp, SIGTTOU, 1);
417 rcu_read_unlock();
040b6362 418 set_thread_flag(TIF_SIGPENDING);
47f86834 419 ret = -ERESTARTSYS;
9ffee4cb
AM
420 return ret;
421out_unlock:
47f86834 422 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
6719693c
PD
423out_rcuunlock:
424 rcu_read_unlock();
47f86834 425 return ret;
1da177e4
LT
426}
427
428EXPORT_SYMBOL(tty_check_change);
429
37bdfb07 430static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
1da177e4
LT
431 size_t count, loff_t *ppos)
432{
433 return 0;
434}
435
37bdfb07 436static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
1da177e4
LT
437 size_t count, loff_t *ppos)
438{
439 return -EIO;
440}
441
442/* No kernel lock held - none needed ;) */
37bdfb07 443static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait)
1da177e4
LT
444{
445 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
446}
447
04f378b1
AC
448static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
449 unsigned long arg)
38ad2ed0
PF
450{
451 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
452}
453
37bdfb07 454static long hung_up_tty_compat_ioctl(struct file *file,
38ad2ed0 455 unsigned int cmd, unsigned long arg)
1da177e4
LT
456{
457 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
458}
459
62322d25 460static const struct file_operations tty_fops = {
1da177e4
LT
461 .llseek = no_llseek,
462 .read = tty_read,
463 .write = tty_write,
464 .poll = tty_poll,
04f378b1 465 .unlocked_ioctl = tty_ioctl,
e10cc1df 466 .compat_ioctl = tty_compat_ioctl,
1da177e4
LT
467 .open = tty_open,
468 .release = tty_release,
469 .fasync = tty_fasync,
470};
471
62322d25 472static const struct file_operations console_fops = {
1da177e4
LT
473 .llseek = no_llseek,
474 .read = tty_read,
475 .write = redirected_tty_write,
476 .poll = tty_poll,
04f378b1 477 .unlocked_ioctl = tty_ioctl,
e10cc1df 478 .compat_ioctl = tty_compat_ioctl,
1da177e4
LT
479 .open = tty_open,
480 .release = tty_release,
481 .fasync = tty_fasync,
482};
483
62322d25 484static const struct file_operations hung_up_tty_fops = {
1da177e4
LT
485 .llseek = no_llseek,
486 .read = hung_up_tty_read,
487 .write = hung_up_tty_write,
488 .poll = hung_up_tty_poll,
04f378b1 489 .unlocked_ioctl = hung_up_tty_ioctl,
38ad2ed0 490 .compat_ioctl = hung_up_tty_compat_ioctl,
1da177e4
LT
491 .release = tty_release,
492};
493
494static DEFINE_SPINLOCK(redirect_lock);
495static struct file *redirect;
496
11d9befd
PH
497
498void proc_clear_tty(struct task_struct *p)
499{
500 unsigned long flags;
501 struct tty_struct *tty;
502 spin_lock_irqsave(&p->sighand->siglock, flags);
503 tty = p->signal->tty;
504 p->signal->tty = NULL;
505 spin_unlock_irqrestore(&p->sighand->siglock, flags);
506 tty_kref_put(tty);
507}
508
2c411c11
PH
509/**
510 * proc_set_tty - set the controlling terminal
511 *
512 * Only callable by the session leader and only if it does not already have
513 * a controlling terminal.
514 *
e218eb32
PH
515 * Caller must hold: tty_lock()
516 * a readlock on tasklist_lock
2c411c11
PH
517 * sighand lock
518 */
bce65f18 519static void __proc_set_tty(struct tty_struct *tty)
11d9befd 520{
ae28fa72
PH
521 unsigned long flags;
522
ae28fa72 523 spin_lock_irqsave(&tty->ctrl_lock, flags);
a361858d
PH
524 /*
525 * The session and fg pgrp references will be non-NULL if
526 * tiocsctty() is stealing the controlling tty
527 */
ae28fa72
PH
528 put_pid(tty->session);
529 put_pid(tty->pgrp);
530 tty->pgrp = get_pid(task_pgrp(current));
531 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
532 tty->session = get_pid(task_session(current));
533 if (current->signal->tty) {
3a6b02dc
PH
534 printk(KERN_DEBUG "%s: %s: current tty %s not NULL!!\n",
535 __func__, tty->name, current->signal->tty->name);
ae28fa72 536 tty_kref_put(current->signal->tty);
11d9befd 537 }
bce65f18
PH
538 put_pid(current->signal->tty_old_pgrp);
539 current->signal->tty = tty_kref_get(tty);
540 current->signal->tty_old_pgrp = NULL;
11d9befd
PH
541}
542
bce65f18 543static void proc_set_tty(struct tty_struct *tty)
11d9befd 544{
bce65f18
PH
545 spin_lock_irq(&current->sighand->siglock);
546 __proc_set_tty(tty);
547 spin_unlock_irq(&current->sighand->siglock);
11d9befd
PH
548}
549
550struct tty_struct *get_current_tty(void)
551{
552 struct tty_struct *tty;
553 unsigned long flags;
554
555 spin_lock_irqsave(&current->sighand->siglock, flags);
556 tty = tty_kref_get(current->signal->tty);
557 spin_unlock_irqrestore(&current->sighand->siglock, flags);
558 return tty;
559}
560EXPORT_SYMBOL_GPL(get_current_tty);
561
562static void session_clear_tty(struct pid *session)
563{
564 struct task_struct *p;
565 do_each_pid_task(session, PIDTYPE_SID, p) {
566 proc_clear_tty(p);
567 } while_each_pid_task(session, PIDTYPE_SID, p);
568}
569
1da177e4
LT
570/**
571 * tty_wakeup - request more data
572 * @tty: terminal
573 *
574 * Internal and external helper for wakeups of tty. This function
575 * informs the line discipline if present that the driver is ready
576 * to receive more output data.
577 */
37bdfb07 578
1da177e4
LT
579void tty_wakeup(struct tty_struct *tty)
580{
581 struct tty_ldisc *ld;
37bdfb07 582
1da177e4
LT
583 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
584 ld = tty_ldisc_ref(tty);
37bdfb07 585 if (ld) {
a352def2
AC
586 if (ld->ops->write_wakeup)
587 ld->ops->write_wakeup(tty);
1da177e4
LT
588 tty_ldisc_deref(ld);
589 }
590 }
4b19449d 591 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
1da177e4
LT
592}
593
594EXPORT_SYMBOL_GPL(tty_wakeup);
595
ea648a47
PH
596/**
597 * tty_signal_session_leader - sends SIGHUP to session leader
f91e2590
PH
598 * @tty controlling tty
599 * @exit_session if non-zero, signal all foreground group processes
ea648a47 600 *
f91e2590
PH
601 * Send SIGHUP and SIGCONT to the session leader and its process group.
602 * Optionally, signal all processes in the foreground process group.
ea648a47
PH
603 *
604 * Returns the number of processes in the session with this tty
605 * as their controlling terminal. This value is used to drop
606 * tty references for those processes.
607 */
f91e2590 608static int tty_signal_session_leader(struct tty_struct *tty, int exit_session)
ea648a47
PH
609{
610 struct task_struct *p;
ea648a47 611 int refs = 0;
f91e2590 612 struct pid *tty_pgrp = NULL;
ea648a47
PH
613
614 read_lock(&tasklist_lock);
615 if (tty->session) {
616 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
617 spin_lock_irq(&p->sighand->siglock);
618 if (p->signal->tty == tty) {
619 p->signal->tty = NULL;
620 /* We defer the dereferences outside fo
621 the tasklist lock */
622 refs++;
623 }
624 if (!p->signal->leader) {
625 spin_unlock_irq(&p->sighand->siglock);
626 continue;
627 }
628 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
629 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
630 put_pid(p->signal->tty_old_pgrp); /* A noop */
bc30c3b2 631 spin_lock(&tty->ctrl_lock);
f91e2590 632 tty_pgrp = get_pid(tty->pgrp);
ea648a47
PH
633 if (tty->pgrp)
634 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
bc30c3b2 635 spin_unlock(&tty->ctrl_lock);
ea648a47
PH
636 spin_unlock_irq(&p->sighand->siglock);
637 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
638 }
639 read_unlock(&tasklist_lock);
640
f91e2590
PH
641 if (tty_pgrp) {
642 if (exit_session)
643 kill_pgrp(tty_pgrp, SIGHUP, exit_session);
644 put_pid(tty_pgrp);
645 }
646
ea648a47
PH
647 return refs;
648}
649
af9b897e 650/**
11dbf203 651 * __tty_hangup - actual handler for hangup events
65f27f38 652 * @work: tty device
af9b897e 653 *
ef4f527c 654 * This can be called by a "kworker" kernel thread. That is process
af9b897e
AC
655 * synchronous but doesn't hold any locks, so we need to make sure we
656 * have the appropriate locks for what we're doing.
657 *
658 * The hangup event clears any pending redirections onto the hung up
659 * device. It ensures future writes will error and it does the needed
660 * line discipline hangup and signal delivery. The tty object itself
661 * remains intact.
662 *
663 * Locking:
ec79d605 664 * BTM
24ec839c
PZ
665 * redirect lock for undoing redirection
666 * file list lock for manipulating list of ttys
137084bb 667 * tty_ldiscs_lock from called functions
6a1c0680 668 * termios_rwsem resetting termios data
24ec839c
PZ
669 * tasklist_lock to walk task list for hangup event
670 * ->siglock to protect ->signal/->sighand
1da177e4 671 */
f91e2590 672static void __tty_hangup(struct tty_struct *tty, int exit_session)
1da177e4 673{
37bdfb07 674 struct file *cons_filp = NULL;
1da177e4 675 struct file *filp, *f = NULL;
d996b62a 676 struct tty_file_private *priv;
1da177e4 677 int closecount = 0, n;
ea648a47 678 int refs;
1da177e4
LT
679
680 if (!tty)
681 return;
682
1da177e4
LT
683
684 spin_lock(&redirect_lock);
d996b62a 685 if (redirect && file_tty(redirect) == tty) {
1da177e4
LT
686 f = redirect;
687 redirect = NULL;
688 }
689 spin_unlock(&redirect_lock);
37bdfb07 690
89c8d91e 691 tty_lock(tty);
11dbf203 692
cb50e523
PH
693 if (test_bit(TTY_HUPPED, &tty->flags)) {
694 tty_unlock(tty);
695 return;
696 }
697
ec79d605
AB
698 /* inuse_filps is protected by the single tty lock,
699 this really needs to change if we want to flush the
700 workqueue with the lock held */
11dbf203 701 check_tty_count(tty, "tty_hangup");
36ba782e 702
ee2ffa0d 703 spin_lock(&tty_files_lock);
1da177e4 704 /* This breaks for file handles being sent over AF_UNIX sockets ? */
d996b62a
NP
705 list_for_each_entry(priv, &tty->tty_files, list) {
706 filp = priv->file;
1da177e4
LT
707 if (filp->f_op->write == redirected_tty_write)
708 cons_filp = filp;
709 if (filp->f_op->write != tty_write)
710 continue;
711 closecount++;
ec79d605 712 __tty_fasync(-1, filp, 0); /* can't block */
1da177e4
LT
713 filp->f_op = &hung_up_tty_fops;
714 }
ee2ffa0d 715 spin_unlock(&tty_files_lock);
37bdfb07 716
25fdf243
PH
717 refs = tty_signal_session_leader(tty, exit_session);
718 /* Account for the p->signal references we killed */
719 while (refs--)
720 tty_kref_put(tty);
721
c65c9bc3 722 tty_ldisc_hangup(tty);
37bdfb07 723
20cc225b 724 spin_lock_irq(&tty->ctrl_lock);
c65c9bc3 725 clear_bit(TTY_THROTTLED, &tty->flags);
c65c9bc3 726 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
d9c1e9a8
EB
727 put_pid(tty->session);
728 put_pid(tty->pgrp);
ab521dc0
EB
729 tty->session = NULL;
730 tty->pgrp = NULL;
1da177e4 731 tty->ctrl_status = 0;
20cc225b 732 spin_unlock_irq(&tty->ctrl_lock);
9c9f4ded 733
1da177e4 734 /*
37bdfb07
AC
735 * If one of the devices matches a console pointer, we
736 * cannot just call hangup() because that will cause
737 * tty->count and state->count to go out of sync.
738 * So we just call close() the right number of times.
1da177e4
LT
739 */
740 if (cons_filp) {
f34d7a5b 741 if (tty->ops->close)
1da177e4 742 for (n = 0; n < closecount; n++)
f34d7a5b
AC
743 tty->ops->close(tty, cons_filp);
744 } else if (tty->ops->hangup)
7c6d340f 745 tty->ops->hangup(tty);
37bdfb07
AC
746 /*
747 * We don't want to have driver/ldisc interactions beyond
748 * the ones we did here. The driver layer expects no
749 * calls after ->hangup() from the ldisc side. However we
750 * can't yet guarantee all that.
751 */
1da177e4 752 set_bit(TTY_HUPPED, &tty->flags);
89c8d91e 753 tty_unlock(tty);
11dbf203 754
1da177e4
LT
755 if (f)
756 fput(f);
757}
758
ddcd9fb6
AB
759static void do_tty_hangup(struct work_struct *work)
760{
761 struct tty_struct *tty =
762 container_of(work, struct tty_struct, hangup_work);
763
f91e2590 764 __tty_hangup(tty, 0);
ddcd9fb6
AB
765}
766
af9b897e
AC
767/**
768 * tty_hangup - trigger a hangup event
769 * @tty: tty to hangup
770 *
771 * A carrier loss (virtual or otherwise) has occurred on this like
772 * schedule a hangup sequence to run after this event.
773 */
774
37bdfb07 775void tty_hangup(struct tty_struct *tty)
1da177e4
LT
776{
777#ifdef TTY_DEBUG_HANGUP
429b4749 778 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty));
1da177e4
LT
779#endif
780 schedule_work(&tty->hangup_work);
781}
782
783EXPORT_SYMBOL(tty_hangup);
784
af9b897e
AC
785/**
786 * tty_vhangup - process vhangup
787 * @tty: tty to hangup
788 *
789 * The user has asked via system call for the terminal to be hung up.
790 * We do this synchronously so that when the syscall returns the process
3a4fa0a2 791 * is complete. That guarantee is necessary for security reasons.
af9b897e
AC
792 */
793
37bdfb07 794void tty_vhangup(struct tty_struct *tty)
1da177e4
LT
795{
796#ifdef TTY_DEBUG_HANGUP
429b4749 797 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty));
1da177e4 798#endif
f91e2590 799 __tty_hangup(tty, 0);
1da177e4 800}
37bdfb07 801
1da177e4
LT
802EXPORT_SYMBOL(tty_vhangup);
803
11dbf203 804
2cb5998b
AC
805/**
806 * tty_vhangup_self - process vhangup for own ctty
807 *
808 * Perform a vhangup on the current controlling tty
809 */
810
811void tty_vhangup_self(void)
812{
813 struct tty_struct *tty;
814
2cb5998b
AC
815 tty = get_current_tty();
816 if (tty) {
817 tty_vhangup(tty);
818 tty_kref_put(tty);
819 }
2cb5998b
AC
820}
821
f91e2590
PH
822/**
823 * tty_vhangup_session - hangup session leader exit
824 * @tty: tty to hangup
825 *
826 * The session leader is exiting and hanging up its controlling terminal.
827 * Every process in the foreground process group is signalled SIGHUP.
828 *
829 * We do this synchronously so that when the syscall returns the process
830 * is complete. That guarantee is necessary for security reasons.
831 */
832
44a459fd 833static void tty_vhangup_session(struct tty_struct *tty)
f91e2590
PH
834{
835#ifdef TTY_DEBUG_HANGUP
429b4749 836 printk(KERN_DEBUG "%s vhangup session...\n", tty_name(tty));
f91e2590
PH
837#endif
838 __tty_hangup(tty, 1);
839}
840
af9b897e
AC
841/**
842 * tty_hung_up_p - was tty hung up
843 * @filp: file pointer of tty
844 *
845 * Return true if the tty has been subject to a vhangup or a carrier
846 * loss
847 */
848
37bdfb07 849int tty_hung_up_p(struct file *filp)
1da177e4
LT
850{
851 return (filp->f_op == &hung_up_tty_fops);
852}
853
854EXPORT_SYMBOL(tty_hung_up_p);
855
af9b897e
AC
856/**
857 * disassociate_ctty - disconnect controlling tty
858 * @on_exit: true if exiting so need to "hang up" the session
1da177e4 859 *
af9b897e
AC
860 * This function is typically called only by the session leader, when
861 * it wants to disassociate itself from its controlling tty.
862 *
863 * It performs the following functions:
1da177e4
LT
864 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
865 * (2) Clears the tty from being controlling the session
866 * (3) Clears the controlling tty for all processes in the
867 * session group.
868 *
af9b897e
AC
869 * The argument on_exit is set to 1 if called when a process is
870 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
871 *
24ec839c 872 * Locking:
ec79d605
AB
873 * BTM is taken for hysterical raisins, and held when
874 * called from no_tty().
24ec839c
PZ
875 * tty_mutex is taken to protect tty
876 * ->siglock is taken to protect ->signal/->sighand
877 * tasklist_lock is taken to walk process list for sessions
878 * ->siglock is taken to protect ->signal/->sighand
1da177e4 879 */
af9b897e 880
1da177e4
LT
881void disassociate_ctty(int on_exit)
882{
883 struct tty_struct *tty;
1da177e4 884
5ec93d11
AC
885 if (!current->signal->leader)
886 return;
1da177e4 887
24ec839c 888 tty = get_current_tty();
1da177e4 889 if (tty) {
f91e2590
PH
890 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY) {
891 tty_vhangup_session(tty);
892 } else {
893 struct pid *tty_pgrp = tty_get_pgrp(tty);
894 if (tty_pgrp) {
895 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
03e12617
ON
896 if (!on_exit)
897 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
f91e2590
PH
898 put_pid(tty_pgrp);
899 }
1411dc4a 900 }
f91e2590
PH
901 tty_kref_put(tty);
902
680a9671 903 } else if (on_exit) {
ab521dc0 904 struct pid *old_pgrp;
680a9671
EB
905 spin_lock_irq(&current->sighand->siglock);
906 old_pgrp = current->signal->tty_old_pgrp;
ab521dc0 907 current->signal->tty_old_pgrp = NULL;
680a9671 908 spin_unlock_irq(&current->sighand->siglock);
24ec839c 909 if (old_pgrp) {
ab521dc0
EB
910 kill_pgrp(old_pgrp, SIGHUP, on_exit);
911 kill_pgrp(old_pgrp, SIGCONT, on_exit);
912 put_pid(old_pgrp);
1da177e4 913 }
1da177e4
LT
914 return;
915 }
1da177e4 916
24ec839c 917 spin_lock_irq(&current->sighand->siglock);
2a65f1d9 918 put_pid(current->signal->tty_old_pgrp);
23cac8de 919 current->signal->tty_old_pgrp = NULL;
24ec839c 920
c70dbb1e 921 tty = tty_kref_get(current->signal->tty);
24ec839c 922 if (tty) {
47f86834
AC
923 unsigned long flags;
924 spin_lock_irqsave(&tty->ctrl_lock, flags);
ab521dc0
EB
925 put_pid(tty->session);
926 put_pid(tty->pgrp);
927 tty->session = NULL;
928 tty->pgrp = NULL;
47f86834 929 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
452a00d2 930 tty_kref_put(tty);
24ec839c
PZ
931 } else {
932#ifdef TTY_DEBUG_HANGUP
3a6b02dc 933 printk(KERN_DEBUG "%s: no current tty\n", __func__);
24ec839c
PZ
934#endif
935 }
1da177e4 936
c70dbb1e 937 spin_unlock_irq(&current->sighand->siglock);
1da177e4
LT
938 /* Now clear signal->tty under the lock */
939 read_lock(&tasklist_lock);
ab521dc0 940 session_clear_tty(task_session(current));
1da177e4 941 read_unlock(&tasklist_lock);
1da177e4
LT
942}
943
98a27ba4
EB
944/**
945 *
946 * no_tty - Ensure the current process does not have a controlling tty
947 */
948void no_tty(void)
949{
3af502b9
AC
950 /* FIXME: Review locking here. The tty_lock never covered any race
951 between a new association and proc_clear_tty but possible we need
952 to protect against this anyway */
98a27ba4 953 struct task_struct *tsk = current;
5ec93d11 954 disassociate_ctty(0);
98a27ba4
EB
955 proc_clear_tty(tsk);
956}
957
af9b897e
AC
958
959/**
beb7dd86 960 * stop_tty - propagate flow control
af9b897e
AC
961 * @tty: tty to stop
962 *
01adc807 963 * Perform flow control to the driver. May be called
af9b897e
AC
964 * on an already stopped device and will not re-call the driver
965 * method.
966 *
967 * This functionality is used by both the line disciplines for
968 * halting incoming flow and by the driver. It may therefore be
969 * called from any context, may be under the tty atomic_write_lock
970 * but not always.
971 *
972 * Locking:
f9e053dc 973 * flow_lock
af9b897e
AC
974 */
975
f9e053dc 976void __stop_tty(struct tty_struct *tty)
1da177e4 977{
f9e053dc 978 if (tty->stopped)
1da177e4
LT
979 return;
980 tty->stopped = 1;
f34d7a5b 981 if (tty->ops->stop)
c961bfb1 982 tty->ops->stop(tty);
1da177e4
LT
983}
984
f9e053dc
PH
985void stop_tty(struct tty_struct *tty)
986{
987 unsigned long flags;
988
989 spin_lock_irqsave(&tty->flow_lock, flags);
990 __stop_tty(tty);
991 spin_unlock_irqrestore(&tty->flow_lock, flags);
992}
1da177e4
LT
993EXPORT_SYMBOL(stop_tty);
994
af9b897e 995/**
beb7dd86 996 * start_tty - propagate flow control
af9b897e
AC
997 * @tty: tty to start
998 *
01adc807
PH
999 * Start a tty that has been stopped if at all possible. If this
1000 * tty was previous stopped and is now being started, the driver
1001 * start method is invoked and the line discipline woken.
af9b897e
AC
1002 *
1003 * Locking:
f9e053dc 1004 * flow_lock
af9b897e
AC
1005 */
1006
f9e053dc 1007void __start_tty(struct tty_struct *tty)
1da177e4 1008{
f9e053dc 1009 if (!tty->stopped || tty->flow_stopped)
1da177e4
LT
1010 return;
1011 tty->stopped = 0;
f34d7a5b 1012 if (tty->ops->start)
c961bfb1 1013 tty->ops->start(tty);
1da177e4 1014 tty_wakeup(tty);
1da177e4
LT
1015}
1016
f9e053dc
PH
1017void start_tty(struct tty_struct *tty)
1018{
1019 unsigned long flags;
1020
1021 spin_lock_irqsave(&tty->flow_lock, flags);
1022 __start_tty(tty);
1023 spin_unlock_irqrestore(&tty->flow_lock, flags);
1024}
1da177e4
LT
1025EXPORT_SYMBOL(start_tty);
1026
37b7f3c7
JS
1027static void tty_update_time(struct timespec *time)
1028{
f0bf0bd0 1029 unsigned long sec = get_seconds();
fbf47635
GKH
1030
1031 /*
1032 * We only care if the two values differ in anything other than the
1033 * lower three bits (i.e every 8 seconds). If so, then we can update
1034 * the time of the tty device, otherwise it could be construded as a
1035 * security leak to let userspace know the exact timing of the tty.
1036 */
1037 if ((sec ^ time->tv_sec) & ~7)
37b7f3c7
JS
1038 time->tv_sec = sec;
1039}
1040
af9b897e
AC
1041/**
1042 * tty_read - read method for tty device files
1043 * @file: pointer to tty file
1044 * @buf: user buffer
1045 * @count: size of user buffer
1046 * @ppos: unused
1047 *
1048 * Perform the read system call function on this terminal device. Checks
1049 * for hung up devices before calling the line discipline method.
1050 *
1051 * Locking:
47f86834
AC
1052 * Locks the line discipline internally while needed. Multiple
1053 * read calls may be outstanding in parallel.
af9b897e
AC
1054 */
1055
37bdfb07 1056static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
1da177e4
LT
1057 loff_t *ppos)
1058{
1059 int i;
37b7f3c7 1060 struct inode *inode = file_inode(file);
d996b62a 1061 struct tty_struct *tty = file_tty(file);
1da177e4
LT
1062 struct tty_ldisc *ld;
1063
37b7f3c7 1064 if (tty_paranoia_check(tty, inode, "tty_read"))
1da177e4
LT
1065 return -EIO;
1066 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
1067 return -EIO;
1068
1069 /* We want to wait for the line discipline to sort out in this
1070 situation */
1071 ld = tty_ldisc_ref_wait(tty);
a352def2 1072 if (ld->ops->read)
c961bfb1 1073 i = ld->ops->read(tty, file, buf, count);
1da177e4
LT
1074 else
1075 i = -EIO;
1076 tty_ldisc_deref(ld);
b0de59b5 1077
37b7f3c7
JS
1078 if (i > 0)
1079 tty_update_time(&inode->i_atime);
1080
1da177e4
LT
1081 return i;
1082}
1083
136d5258 1084static void tty_write_unlock(struct tty_struct *tty)
9c1729db
AC
1085{
1086 mutex_unlock(&tty->atomic_write_lock);
4b19449d 1087 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
9c1729db
AC
1088}
1089
136d5258 1090static int tty_write_lock(struct tty_struct *tty, int ndelay)
9c1729db
AC
1091{
1092 if (!mutex_trylock(&tty->atomic_write_lock)) {
1093 if (ndelay)
1094 return -EAGAIN;
1095 if (mutex_lock_interruptible(&tty->atomic_write_lock))
1096 return -ERESTARTSYS;
1097 }
1098 return 0;
1099}
1100
1da177e4
LT
1101/*
1102 * Split writes up in sane blocksizes to avoid
1103 * denial-of-service type attacks
1104 */
1105static inline ssize_t do_tty_write(
1106 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
1107 struct tty_struct *tty,
1108 struct file *file,
1109 const char __user *buf,
1110 size_t count)
1111{
9c1729db 1112 ssize_t ret, written = 0;
1da177e4 1113 unsigned int chunk;
37bdfb07 1114
9c1729db
AC
1115 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
1116 if (ret < 0)
1117 return ret;
1da177e4
LT
1118
1119 /*
1120 * We chunk up writes into a temporary buffer. This
1121 * simplifies low-level drivers immensely, since they
1122 * don't have locking issues and user mode accesses.
1123 *
1124 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1125 * big chunk-size..
1126 *
1127 * The default chunk-size is 2kB, because the NTTY
1128 * layer has problems with bigger chunks. It will
1129 * claim to be able to handle more characters than
1130 * it actually does.
af9b897e
AC
1131 *
1132 * FIXME: This can probably go away now except that 64K chunks
1133 * are too likely to fail unless switched to vmalloc...
1da177e4
LT
1134 */
1135 chunk = 2048;
1136 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1137 chunk = 65536;
1138 if (count < chunk)
1139 chunk = count;
1140
70522e12 1141 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
1da177e4 1142 if (tty->write_cnt < chunk) {
402fda92 1143 unsigned char *buf_chunk;
1da177e4
LT
1144
1145 if (chunk < 1024)
1146 chunk = 1024;
1147
402fda92
JW
1148 buf_chunk = kmalloc(chunk, GFP_KERNEL);
1149 if (!buf_chunk) {
9c1729db
AC
1150 ret = -ENOMEM;
1151 goto out;
1da177e4
LT
1152 }
1153 kfree(tty->write_buf);
1154 tty->write_cnt = chunk;
402fda92 1155 tty->write_buf = buf_chunk;
1da177e4
LT
1156 }
1157
1158 /* Do the write .. */
1159 for (;;) {
1160 size_t size = count;
1161 if (size > chunk)
1162 size = chunk;
1163 ret = -EFAULT;
1164 if (copy_from_user(tty->write_buf, buf, size))
1165 break;
1da177e4 1166 ret = write(tty, file, tty->write_buf, size);
1da177e4
LT
1167 if (ret <= 0)
1168 break;
1169 written += ret;
1170 buf += ret;
1171 count -= ret;
1172 if (!count)
1173 break;
1174 ret = -ERESTARTSYS;
1175 if (signal_pending(current))
1176 break;
1177 cond_resched();
1178 }
37b7f3c7
JS
1179 if (written) {
1180 tty_update_time(&file_inode(file)->i_mtime);
1da177e4 1181 ret = written;
37b7f3c7 1182 }
9c1729db
AC
1183out:
1184 tty_write_unlock(tty);
1da177e4
LT
1185 return ret;
1186}
1187
95f9bfc6
AC
1188/**
1189 * tty_write_message - write a message to a certain tty, not just the console.
1190 * @tty: the destination tty_struct
1191 * @msg: the message to write
1192 *
1193 * This is used for messages that need to be redirected to a specific tty.
1194 * We don't put it into the syslog queue right now maybe in the future if
1195 * really needed.
1196 *
ec79d605 1197 * We must still hold the BTM and test the CLOSING flag for the moment.
95f9bfc6
AC
1198 */
1199
1200void tty_write_message(struct tty_struct *tty, char *msg)
1201{
95f9bfc6
AC
1202 if (tty) {
1203 mutex_lock(&tty->atomic_write_lock);
89c8d91e 1204 tty_lock(tty);
04980706 1205 if (tty->ops->write && tty->count > 0) {
89c8d91e 1206 tty_unlock(tty);
95f9bfc6 1207 tty->ops->write(tty, msg, strlen(msg));
eeb89d91 1208 } else
89c8d91e 1209 tty_unlock(tty);
95f9bfc6
AC
1210 tty_write_unlock(tty);
1211 }
95f9bfc6
AC
1212 return;
1213}
1214
1da177e4 1215
af9b897e
AC
1216/**
1217 * tty_write - write method for tty device file
1218 * @file: tty file pointer
1219 * @buf: user data to write
1220 * @count: bytes to write
1221 * @ppos: unused
1222 *
1223 * Write data to a tty device via the line discipline.
1224 *
1225 * Locking:
1226 * Locks the line discipline as required
1227 * Writes to the tty driver are serialized by the atomic_write_lock
1228 * and are then processed in chunks to the device. The line discipline
a88a69c9 1229 * write method will not be invoked in parallel for each device.
af9b897e
AC
1230 */
1231
37bdfb07
AC
1232static ssize_t tty_write(struct file *file, const char __user *buf,
1233 size_t count, loff_t *ppos)
1da177e4 1234{
d996b62a
NP
1235 struct tty_struct *tty = file_tty(file);
1236 struct tty_ldisc *ld;
1da177e4 1237 ssize_t ret;
37bdfb07 1238
6131ffaa 1239 if (tty_paranoia_check(tty, file_inode(file), "tty_write"))
1da177e4 1240 return -EIO;
f34d7a5b 1241 if (!tty || !tty->ops->write ||
37bdfb07
AC
1242 (test_bit(TTY_IO_ERROR, &tty->flags)))
1243 return -EIO;
f34d7a5b
AC
1244 /* Short term debug to catch buggy drivers */
1245 if (tty->ops->write_room == NULL)
1246 printk(KERN_ERR "tty driver %s lacks a write_room method.\n",
1247 tty->driver->name);
37bdfb07 1248 ld = tty_ldisc_ref_wait(tty);
a352def2 1249 if (!ld->ops->write)
1da177e4
LT
1250 ret = -EIO;
1251 else
a352def2 1252 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
1da177e4
LT
1253 tty_ldisc_deref(ld);
1254 return ret;
1255}
1256
37bdfb07
AC
1257ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1258 size_t count, loff_t *ppos)
1da177e4
LT
1259{
1260 struct file *p = NULL;
1261
1262 spin_lock(&redirect_lock);
cb0942b8
AV
1263 if (redirect)
1264 p = get_file(redirect);
1da177e4
LT
1265 spin_unlock(&redirect_lock);
1266
1267 if (p) {
1268 ssize_t res;
1269 res = vfs_write(p, buf, count, &p->f_pos);
1270 fput(p);
1271 return res;
1272 }
1da177e4
LT
1273 return tty_write(file, buf, count, ppos);
1274}
1275
136d5258
PH
1276/**
1277 * tty_send_xchar - send priority character
1278 *
1279 * Send a high priority character to the tty even if stopped
1280 *
1281 * Locking: none for xchar method, write ordering for write method.
1282 */
1283
1284int tty_send_xchar(struct tty_struct *tty, char ch)
1285{
1286 int was_stopped = tty->stopped;
1287
1288 if (tty->ops->send_xchar) {
1289 tty->ops->send_xchar(tty, ch);
1290 return 0;
1291 }
1292
1293 if (tty_write_lock(tty, 0) < 0)
1294 return -ERESTARTSYS;
1295
1296 if (was_stopped)
1297 start_tty(tty);
1298 tty->ops->write(tty, &ch, 1);
1299 if (was_stopped)
1300 stop_tty(tty);
1301 tty_write_unlock(tty);
1302 return 0;
1303}
1304
1da177e4
LT
1305static char ptychar[] = "pqrstuvwxyzabcde";
1306
af9b897e
AC
1307/**
1308 * pty_line_name - generate name for a pty
1309 * @driver: the tty driver in use
1310 * @index: the minor number
1311 * @p: output buffer of at least 6 bytes
1312 *
1313 * Generate a name from a driver reference and write it to the output
1314 * buffer.
1315 *
1316 * Locking: None
1317 */
1318static void pty_line_name(struct tty_driver *driver, int index, char *p)
1da177e4
LT
1319{
1320 int i = index + driver->name_base;
1321 /* ->name is initialized to "ttyp", but "tty" is expected */
1322 sprintf(p, "%s%c%x",
37bdfb07
AC
1323 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1324 ptychar[i >> 4 & 0xf], i & 0xf);
1da177e4
LT
1325}
1326
af9b897e 1327/**
8b0a88d5 1328 * tty_line_name - generate name for a tty
af9b897e
AC
1329 * @driver: the tty driver in use
1330 * @index: the minor number
1331 * @p: output buffer of at least 7 bytes
1332 *
1333 * Generate a name from a driver reference and write it to the output
5c0a2450 1334 * buffer.
af9b897e
AC
1335 *
1336 * Locking: None
1337 */
723abd87 1338static ssize_t tty_line_name(struct tty_driver *driver, int index, char *p)
1da177e4 1339{
0019b408 1340 if (driver->flags & TTY_DRIVER_UNNUMBERED_NODE)
723abd87 1341 return sprintf(p, "%s", driver->name);
0019b408 1342 else
723abd87
HR
1343 return sprintf(p, "%s%d", driver->name,
1344 index + driver->name_base);
1da177e4
LT
1345}
1346
99f1fe18
AC
1347/**
1348 * tty_driver_lookup_tty() - find an existing tty, if any
1349 * @driver: the driver for the tty
1350 * @idx: the minor number
23499705 1351 *
aa3cb814
PH
1352 * Return the tty, if found. If not found, return NULL or ERR_PTR() if the
1353 * driver lookup() method returns an error.
23499705 1354 *
aa3cb814 1355 * Locking: tty_mutex must be held. If the tty is found, bump the tty kref.
23499705 1356 */
a47d545f 1357static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
15f1a633 1358 struct inode *inode, int idx)
23499705 1359{
aa3cb814
PH
1360 struct tty_struct *tty;
1361
99f1fe18 1362 if (driver->ops->lookup)
aa3cb814
PH
1363 tty = driver->ops->lookup(driver, inode, idx);
1364 else
1365 tty = driver->ttys[idx];
23499705 1366
aa3cb814
PH
1367 if (!IS_ERR(tty))
1368 tty_kref_get(tty);
1369 return tty;
23499705
SB
1370}
1371
bf970ee4
AC
1372/**
1373 * tty_init_termios - helper for termios setup
1374 * @tty: the tty to set up
1375 *
1376 * Initialise the termios structures for this tty. Thus runs under
1377 * the tty_mutex currently so we can be relaxed about ordering.
1378 */
1379
1380int tty_init_termios(struct tty_struct *tty)
1381{
fe6e29fd 1382 struct ktermios *tp;
bf970ee4
AC
1383 int idx = tty->index;
1384
36b3c070
AC
1385 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1386 tty->termios = tty->driver->init_termios;
1387 else {
1388 /* Check for lazy saved data */
1389 tp = tty->driver->termios[idx];
1390 if (tp != NULL)
1391 tty->termios = *tp;
1392 else
1393 tty->termios = tty->driver->init_termios;
bf970ee4 1394 }
bf970ee4 1395 /* Compatibility until drivers always set this */
adc8d746
AC
1396 tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios);
1397 tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios);
bf970ee4
AC
1398 return 0;
1399}
fe1ae7fd 1400EXPORT_SYMBOL_GPL(tty_init_termios);
bf970ee4 1401
66d450e8
JS
1402int tty_standard_install(struct tty_driver *driver, struct tty_struct *tty)
1403{
1404 int ret = tty_init_termios(tty);
1405 if (ret)
1406 return ret;
1407
1408 tty_driver_kref_get(driver);
1409 tty->count++;
1410 driver->ttys[tty->index] = tty;
1411 return 0;
1412}
1413EXPORT_SYMBOL_GPL(tty_standard_install);
1414
99f1fe18 1415/**
8b0a88d5
AC
1416 * tty_driver_install_tty() - install a tty entry in the driver
1417 * @driver: the driver for the tty
1418 * @tty: the tty
1419 *
1420 * Install a tty object into the driver tables. The tty->index field
bf970ee4
AC
1421 * will be set by the time this is called. This method is responsible
1422 * for ensuring any need additional structures are allocated and
1423 * configured.
8b0a88d5
AC
1424 *
1425 * Locking: tty_mutex for now
1426 */
1427static int tty_driver_install_tty(struct tty_driver *driver,
1428 struct tty_struct *tty)
1429{
66d450e8
JS
1430 return driver->ops->install ? driver->ops->install(driver, tty) :
1431 tty_standard_install(driver, tty);
8b0a88d5
AC
1432}
1433
1434/**
1435 * tty_driver_remove_tty() - remove a tty from the driver tables
1436 * @driver: the driver for the tty
1437 * @idx: the minor number
1438 *
1439 * Remvoe a tty object from the driver tables. The tty->index field
1440 * will be set by the time this is called.
1441 *
1442 * Locking: tty_mutex for now
1443 */
24d406a6 1444void tty_driver_remove_tty(struct tty_driver *driver, struct tty_struct *tty)
8b0a88d5
AC
1445{
1446 if (driver->ops->remove)
1447 driver->ops->remove(driver, tty);
1448 else
1449 driver->ttys[tty->index] = NULL;
1450}
1451
1452/*
1453 * tty_reopen() - fast re-open of an open tty
1454 * @tty - the tty to open
23499705 1455 *
99f1fe18 1456 * Return 0 on success, -errno on error.
5d93e748 1457 * Re-opens on master ptys are not allowed and return -EIO.
23499705 1458 *
5d93e748 1459 * Locking: Caller must hold tty_lock
23499705 1460 */
99f1fe18 1461static int tty_reopen(struct tty_struct *tty)
23499705
SB
1462{
1463 struct tty_driver *driver = tty->driver;
1464
216030ec 1465 if (!tty->count)
23499705
SB
1466 return -EIO;
1467
1468 if (driver->type == TTY_DRIVER_TYPE_PTY &&
5d93e748
PH
1469 driver->subtype == PTY_TYPE_MASTER)
1470 return -EIO;
23499705 1471
86f2c00f
PH
1472 if (test_bit(TTY_EXCLUSIVE, &tty->flags) && !capable(CAP_SYS_ADMIN))
1473 return -EBUSY;
1474
23499705 1475 tty->count++;
23499705 1476
36697529 1477 WARN_ON(!tty->ldisc);
23499705
SB
1478
1479 return 0;
1480}
1481
af9b897e 1482/**
d81ed103 1483 * tty_init_dev - initialise a tty device
af9b897e
AC
1484 * @driver: tty driver we are opening a device on
1485 * @idx: device index
15582d36 1486 * @ret_tty: returned tty structure
af9b897e
AC
1487 *
1488 * Prepare a tty device. This may not be a "new" clean device but
1489 * could also be an active device. The pty drivers require special
1490 * handling because of this.
1491 *
1492 * Locking:
1493 * The function is called under the tty_mutex, which
1494 * protects us from the tty struct or driver itself going away.
1495 *
1496 * On exit the tty device has the line discipline attached and
1497 * a reference count of 1. If a pair was created for pty/tty use
1498 * and the other was a pty master then it too has a reference count of 1.
1499 *
1da177e4 1500 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
70522e12
IM
1501 * failed open. The new code protects the open with a mutex, so it's
1502 * really quite straightforward. The mutex locking can probably be
1da177e4
LT
1503 * relaxed for the (most common) case of reopening a tty.
1504 */
af9b897e 1505
593a27c4 1506struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx)
1da177e4 1507{
bf970ee4 1508 struct tty_struct *tty;
73ec06fc 1509 int retval;
1da177e4 1510
1da177e4
LT
1511 /*
1512 * First time open is complex, especially for PTY devices.
1513 * This code guarantees that either everything succeeds and the
1514 * TTY is ready for operation, or else the table slots are vacated
37bdfb07 1515 * and the allocated memory released. (Except that the termios
1da177e4
LT
1516 * and locked termios may be retained.)
1517 */
1518
73ec06fc
AC
1519 if (!try_module_get(driver->owner))
1520 return ERR_PTR(-ENODEV);
1da177e4 1521
2c964a2f 1522 tty = alloc_tty_struct(driver, idx);
d5543503
JS
1523 if (!tty) {
1524 retval = -ENOMEM;
1525 goto err_module_put;
1526 }
1da177e4 1527
89c8d91e 1528 tty_lock(tty);
73ec06fc 1529 retval = tty_driver_install_tty(driver, tty);
d5543503 1530 if (retval < 0)
a9dccddb 1531 goto err_deinit_tty;
8b0a88d5 1532
04831dc1
JS
1533 if (!tty->port)
1534 tty->port = driver->ports[idx];
1535
5d4121c0
JS
1536 WARN_RATELIMIT(!tty->port,
1537 "%s: %s driver does not set tty->port. This will crash the kernel later. Fix the driver!\n",
1538 __func__, tty->driver->name);
1539
967fab69
JS
1540 tty->port->itty = tty;
1541
37bdfb07 1542 /*
1da177e4 1543 * Structures all installed ... call the ldisc open routines.
d5698c28
CH
1544 * If we fail here just call release_tty to clean up. No need
1545 * to decrement the use counts, as release_tty doesn't care.
1da177e4 1546 */
bf970ee4 1547 retval = tty_ldisc_setup(tty, tty->link);
01e1abb2 1548 if (retval)
d5543503 1549 goto err_release_tty;
89c8d91e 1550 /* Return the tty locked so that it cannot vanish under the caller */
73ec06fc 1551 return tty;
1da177e4 1552
a9dccddb 1553err_deinit_tty:
89c8d91e 1554 tty_unlock(tty);
a9dccddb 1555 deinitialize_tty_struct(tty);
d5543503
JS
1556 free_tty_struct(tty);
1557err_module_put:
1da177e4 1558 module_put(driver->owner);
d5543503 1559 return ERR_PTR(retval);
1da177e4 1560
d5698c28 1561 /* call the tty release_tty routine to clean out this slot */
d5543503 1562err_release_tty:
89c8d91e 1563 tty_unlock(tty);
5a3c6b25 1564 printk_ratelimited(KERN_INFO "tty_init_dev: ldisc open failed, "
4050914f 1565 "clearing slot %d\n", idx);
d5698c28 1566 release_tty(tty, idx);
73ec06fc 1567 return ERR_PTR(retval);
1da177e4
LT
1568}
1569
feebed65
AC
1570void tty_free_termios(struct tty_struct *tty)
1571{
1572 struct ktermios *tp;
1573 int idx = tty->index;
36b3c070
AC
1574
1575 /* If the port is going to reset then it has no termios to save */
1576 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1577 return;
1578
1579 /* Stash the termios data */
1580 tp = tty->driver->termios[idx];
1581 if (tp == NULL) {
1582 tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
1583 if (tp == NULL) {
1584 pr_warn("tty: no memory to save termios state.\n");
1585 return;
1586 }
4ac5d705 1587 tty->driver->termios[idx] = tp;
feebed65 1588 }
36b3c070 1589 *tp = tty->termios;
feebed65
AC
1590}
1591EXPORT_SYMBOL(tty_free_termios);
1592
a2965b7b 1593/**
949aa64f
PH
1594 * tty_flush_works - flush all works of a tty/pty pair
1595 * @tty: tty device to flush works for (or either end of a pty pair)
a2965b7b 1596 *
949aa64f 1597 * Sync flush all works belonging to @tty (and the 'other' tty).
a2965b7b
PH
1598 */
1599static void tty_flush_works(struct tty_struct *tty)
1600{
1601 flush_work(&tty->SAK_work);
1602 flush_work(&tty->hangup_work);
949aa64f
PH
1603 if (tty->link) {
1604 flush_work(&tty->link->SAK_work);
1605 flush_work(&tty->link->hangup_work);
1606 }
a2965b7b 1607}
feebed65 1608
af9b897e 1609/**
d5698c28 1610 * release_one_tty - release tty structure memory
9c9f4ded 1611 * @kref: kref of tty we are obliterating
af9b897e
AC
1612 *
1613 * Releases memory associated with a tty structure, and clears out the
1614 * driver table slots. This function is called when a device is no longer
1615 * in use. It also gets called when setup of a device fails.
1616 *
1617 * Locking:
af9b897e
AC
1618 * takes the file list lock internally when working on the list
1619 * of ttys that the driver keeps.
b50989dc
AC
1620 *
1621 * This method gets called from a work queue so that the driver private
f278a2f7 1622 * cleanup ops can sleep (needed for USB at least)
1da177e4 1623 */
b50989dc 1624static void release_one_tty(struct work_struct *work)
1da177e4 1625{
b50989dc
AC
1626 struct tty_struct *tty =
1627 container_of(work, struct tty_struct, hangup_work);
6f967f78 1628 struct tty_driver *driver = tty->driver;
b216df53 1629 struct module *owner = driver->owner;
d5698c28 1630
f278a2f7
DY
1631 if (tty->ops->cleanup)
1632 tty->ops->cleanup(tty);
1633
1da177e4 1634 tty->magic = 0;
7d7b93c1 1635 tty_driver_kref_put(driver);
b216df53 1636 module_put(owner);
d5698c28 1637
ee2ffa0d 1638 spin_lock(&tty_files_lock);
1da177e4 1639 list_del_init(&tty->tty_files);
ee2ffa0d 1640 spin_unlock(&tty_files_lock);
d5698c28 1641
6da8d866
ON
1642 put_pid(tty->pgrp);
1643 put_pid(tty->session);
1da177e4
LT
1644 free_tty_struct(tty);
1645}
1646
b50989dc
AC
1647static void queue_release_one_tty(struct kref *kref)
1648{
1649 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
f278a2f7 1650
b50989dc
AC
1651 /* The hangup queue is now free so we can reuse it rather than
1652 waste a chunk of memory for each port */
1653 INIT_WORK(&tty->hangup_work, release_one_tty);
1654 schedule_work(&tty->hangup_work);
1655}
1656
9c9f4ded
AC
1657/**
1658 * tty_kref_put - release a tty kref
1659 * @tty: tty device
1660 *
1661 * Release a reference to a tty device and if need be let the kref
1662 * layer destruct the object for us
1663 */
1664
1665void tty_kref_put(struct tty_struct *tty)
1666{
1667 if (tty)
b50989dc 1668 kref_put(&tty->kref, queue_release_one_tty);
9c9f4ded
AC
1669}
1670EXPORT_SYMBOL(tty_kref_put);
1671
d5698c28
CH
1672/**
1673 * release_tty - release tty structure memory
1674 *
1675 * Release both @tty and a possible linked partner (think pty pair),
1676 * and decrement the refcount of the backing module.
1677 *
1678 * Locking:
d155255a 1679 * tty_mutex
d5698c28
CH
1680 * takes the file list lock internally when working on the list
1681 * of ttys that the driver keeps.
9c9f4ded 1682 *
d5698c28
CH
1683 */
1684static void release_tty(struct tty_struct *tty, int idx)
1685{
9c9f4ded
AC
1686 /* This should always be true but check for the moment */
1687 WARN_ON(tty->index != idx);
d155255a 1688 WARN_ON(!mutex_is_locked(&tty_mutex));
36b3c070
AC
1689 if (tty->ops->shutdown)
1690 tty->ops->shutdown(tty);
1691 tty_free_termios(tty);
1692 tty_driver_remove_tty(tty->driver, tty);
967fab69 1693 tty->port->itty = NULL;
64e377dc
PH
1694 if (tty->link)
1695 tty->link->port->itty = NULL;
4f98d467 1696 cancel_work_sync(&tty->port->buf.work);
36b3c070 1697
a211b1af 1698 tty_kref_put(tty->link);
9c9f4ded 1699 tty_kref_put(tty);
d5698c28
CH
1700}
1701
955787ca
JS
1702/**
1703 * tty_release_checks - check a tty before real release
1704 * @tty: tty to check
1705 * @o_tty: link of @tty (if any)
1706 * @idx: index of the tty
1707 *
1708 * Performs some paranoid checking before true release of the @tty.
1709 * This is a no-op unless TTY_PARANOIA_CHECK is defined.
1710 */
359b9fb5 1711static int tty_release_checks(struct tty_struct *tty, int idx)
955787ca
JS
1712{
1713#ifdef TTY_PARANOIA_CHECK
1714 if (idx < 0 || idx >= tty->driver->num) {
3a6b02dc
PH
1715 printk(KERN_DEBUG "%s: %s: bad idx %d\n",
1716 __func__, tty->name, idx);
955787ca
JS
1717 return -1;
1718 }
1719
1720 /* not much to check for devpts */
1721 if (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)
1722 return 0;
1723
1724 if (tty != tty->driver->ttys[idx]) {
3a6b02dc
PH
1725 printk(KERN_DEBUG "%s: %s: bad driver table[%d] = %p\n",
1726 __func__, tty->name, idx, tty->driver->ttys[idx]);
955787ca
JS
1727 return -1;
1728 }
955787ca 1729 if (tty->driver->other) {
359b9fb5
PH
1730 struct tty_struct *o_tty = tty->link;
1731
955787ca 1732 if (o_tty != tty->driver->other->ttys[idx]) {
3a6b02dc
PH
1733 printk(KERN_DEBUG "%s: %s: bad other table[%d] = %p\n",
1734 __func__, tty->name, idx,
1735 tty->driver->other->ttys[idx]);
955787ca
JS
1736 return -1;
1737 }
955787ca 1738 if (o_tty->link != tty) {
3a6b02dc
PH
1739 printk(KERN_DEBUG "%s: %s: bad link = %p\n",
1740 __func__, tty->name, o_tty->link);
955787ca
JS
1741 return -1;
1742 }
1743 }
1744#endif
1745 return 0;
1746}
1747
eeb89d91
AC
1748/**
1749 * tty_release - vfs callback for close
1750 * @inode: inode of tty
1751 * @filp: file pointer for handle to tty
1752 *
1753 * Called the last time each file handle is closed that references
1754 * this tty. There may however be several such references.
1755 *
1756 * Locking:
1757 * Takes bkl. See tty_release_dev
1758 *
1da177e4
LT
1759 * Even releasing the tty structures is a tricky business.. We have
1760 * to be very careful that the structures are all released at the
1761 * same time, as interrupts might otherwise get the wrong pointers.
1762 *
1763 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1764 * lead to double frees or releasing memory still in use.
1765 */
eeb89d91
AC
1766
1767int tty_release(struct inode *inode, struct file *filp)
1da177e4 1768{
d996b62a 1769 struct tty_struct *tty = file_tty(filp);
7ffb6da9
PH
1770 struct tty_struct *o_tty = NULL;
1771 int do_sleep, final;
1da177e4 1772 int idx;
37b16457 1773 long timeout = 0;
494c1eac 1774 int once = 1;
37bdfb07 1775
9de44bd6 1776 if (tty_paranoia_check(tty, inode, __func__))
eeb89d91 1777 return 0;
1da177e4 1778
89c8d91e 1779 tty_lock(tty);
9de44bd6 1780 check_tty_count(tty, __func__);
1da177e4 1781
ec79d605 1782 __tty_fasync(-1, filp, 0);
1da177e4
LT
1783
1784 idx = tty->index;
7ffb6da9
PH
1785 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1786 tty->driver->subtype == PTY_TYPE_MASTER)
1787 o_tty = tty->link;
1da177e4 1788
359b9fb5 1789 if (tty_release_checks(tty, idx)) {
89c8d91e 1790 tty_unlock(tty);
eeb89d91 1791 return 0;
1da177e4 1792 }
1da177e4
LT
1793
1794#ifdef TTY_DEBUG_HANGUP
9de44bd6 1795 printk(KERN_DEBUG "%s: %s (tty count=%d)...\n", __func__,
429b4749 1796 tty_name(tty), tty->count);
1da177e4
LT
1797#endif
1798
f34d7a5b
AC
1799 if (tty->ops->close)
1800 tty->ops->close(tty, filp);
1da177e4 1801
2aff5e2b
PH
1802 /* If tty is pty master, lock the slave pty (stable lock order) */
1803 tty_lock_slave(o_tty);
1804
1da177e4
LT
1805 /*
1806 * Sanity check: if tty->count is going to zero, there shouldn't be
1807 * any waiters on tty->read_wait or tty->write_wait. We test the
1808 * wait queues and kick everyone out _before_ actually starting to
1809 * close. This ensures that we won't block while releasing the tty
1810 * structure.
1811 *
1812 * The test for the o_tty closing is necessary, since the master and
1813 * slave sides may close in any order. If the slave side closes out
1814 * first, its count will be one, since the master side holds an open.
324c1650 1815 * Thus this test wouldn't be triggered at the time the slave closed,
1da177e4 1816 * so we do it now.
1da177e4
LT
1817 */
1818 while (1) {
1da177e4
LT
1819 do_sleep = 0;
1820
324c1650 1821 if (tty->count <= 1) {
1da177e4 1822 if (waitqueue_active(&tty->read_wait)) {
4b19449d 1823 wake_up_poll(&tty->read_wait, POLLIN);
1da177e4
LT
1824 do_sleep++;
1825 }
1826 if (waitqueue_active(&tty->write_wait)) {
4b19449d 1827 wake_up_poll(&tty->write_wait, POLLOUT);
1da177e4
LT
1828 do_sleep++;
1829 }
1830 }
7ffb6da9 1831 if (o_tty && o_tty->count <= 1) {
1da177e4 1832 if (waitqueue_active(&o_tty->read_wait)) {
4b19449d 1833 wake_up_poll(&o_tty->read_wait, POLLIN);
1da177e4
LT
1834 do_sleep++;
1835 }
1836 if (waitqueue_active(&o_tty->write_wait)) {
4b19449d 1837 wake_up_poll(&o_tty->write_wait, POLLOUT);
1da177e4
LT
1838 do_sleep++;
1839 }
1840 }
1841 if (!do_sleep)
1842 break;
1843
494c1eac
PH
1844 if (once) {
1845 once = 0;
1846 printk(KERN_WARNING "%s: %s: read/write wait queue active!\n",
429b4749 1847 __func__, tty_name(tty));
494c1eac 1848 }
37b16457
PH
1849 schedule_timeout_killable(timeout);
1850 if (timeout < 120 * HZ)
1851 timeout = 2 * timeout + 1;
1852 else
1853 timeout = MAX_SCHEDULE_TIMEOUT;
37bdfb07 1854 }
1da177e4 1855
7ffb6da9 1856 if (o_tty) {
1da177e4 1857 if (--o_tty->count < 0) {
9de44bd6 1858 printk(KERN_WARNING "%s: bad pty slave count (%d) for %s\n",
429b4749 1859 __func__, o_tty->count, tty_name(o_tty));
1da177e4
LT
1860 o_tty->count = 0;
1861 }
1862 }
1863 if (--tty->count < 0) {
9de44bd6 1864 printk(KERN_WARNING "%s: bad tty->count (%d) for %s\n",
429b4749 1865 __func__, tty->count, tty_name(tty));
1da177e4
LT
1866 tty->count = 0;
1867 }
37bdfb07 1868
1da177e4
LT
1869 /*
1870 * We've decremented tty->count, so we need to remove this file
1871 * descriptor off the tty->tty_files list; this serves two
1872 * purposes:
1873 * - check_tty_count sees the correct number of file descriptors
1874 * associated with this tty.
1875 * - do_tty_hangup no longer sees this file descriptor as
1876 * something that needs to be handled for hangups.
1877 */
d996b62a 1878 tty_del_file(filp);
1da177e4
LT
1879
1880 /*
1881 * Perform some housekeeping before deciding whether to return.
1882 *
1da177e4
LT
1883 * If _either_ side is closing, make sure there aren't any
1884 * processes that still think tty or o_tty is their controlling
1885 * tty.
1886 */
324c1650 1887 if (!tty->count) {
1da177e4 1888 read_lock(&tasklist_lock);
24ec839c 1889 session_clear_tty(tty->session);
7ffb6da9 1890 if (o_tty)
24ec839c 1891 session_clear_tty(o_tty->session);
1da177e4
LT
1892 read_unlock(&tasklist_lock);
1893 }
1894
324c1650 1895 /* check whether both sides are closing ... */
7ffb6da9 1896 final = !tty->count && !(o_tty && o_tty->count);
324c1650 1897
2aff5e2b
PH
1898 tty_unlock_slave(o_tty);
1899 tty_unlock(tty);
1900
04980706 1901 /* At this point, the tty->count == 0 should ensure a dead tty
d155255a 1902 cannot be re-opened by a racing opener */
da965822 1903
324c1650 1904 if (!final)
eeb89d91 1905 return 0;
37bdfb07 1906
1da177e4 1907#ifdef TTY_DEBUG_HANGUP
429b4749 1908 printk(KERN_DEBUG "%s: %s: final close\n", __func__, tty_name(tty));
1da177e4
LT
1909#endif
1910 /*
01e1abb2 1911 * Ask the line discipline code to release its structures
1da177e4 1912 */
62462aef 1913 tty_ldisc_release(tty);
a2965b7b
PH
1914
1915 /* Wait for pending work before tty destruction commmences */
1916 tty_flush_works(tty);
a2965b7b 1917
96433d10 1918#ifdef TTY_DEBUG_HANGUP
429b4749
RV
1919 printk(KERN_DEBUG "%s: %s: freeing structure...\n", __func__,
1920 tty_name(tty));
96433d10 1921#endif
1da177e4 1922 /*
d5698c28 1923 * The release_tty function takes care of the details of clearing
89c8d91e
AC
1924 * the slots and preserving the termios structure. The tty_unlock_pair
1925 * should be safe as we keep a kref while the tty is locked (so the
1926 * unlock never unlocks a freed tty).
1da177e4 1927 */
d155255a 1928 mutex_lock(&tty_mutex);
d5698c28 1929 release_tty(tty, idx);
d155255a 1930 mutex_unlock(&tty_mutex);
1da177e4 1931
eeb89d91 1932 return 0;
1da177e4
LT
1933}
1934
b82154ac 1935/**
52494eeb 1936 * tty_open_current_tty - get locked tty of current task
b82154ac
JS
1937 * @device: device number
1938 * @filp: file pointer to tty
52494eeb
PH
1939 * @return: locked tty of the current task iff @device is /dev/tty
1940 *
1941 * Performs a re-open of the current task's controlling tty.
b82154ac
JS
1942 *
1943 * We cannot return driver and index like for the other nodes because
1944 * devpts will not work then. It expects inodes to be from devpts FS.
1945 */
1946static struct tty_struct *tty_open_current_tty(dev_t device, struct file *filp)
1947{
1948 struct tty_struct *tty;
52494eeb 1949 int retval;
b82154ac
JS
1950
1951 if (device != MKDEV(TTYAUX_MAJOR, 0))
1952 return NULL;
1953
1954 tty = get_current_tty();
1955 if (!tty)
1956 return ERR_PTR(-ENXIO);
1957
1958 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1959 /* noctty = 1; */
52494eeb
PH
1960 tty_lock(tty);
1961 tty_kref_put(tty); /* safe to drop the kref now */
1962
1963 retval = tty_reopen(tty);
1964 if (retval < 0) {
1965 tty_unlock(tty);
1966 tty = ERR_PTR(retval);
1967 }
b82154ac
JS
1968 return tty;
1969}
1970
5b5e7040
JS
1971/**
1972 * tty_lookup_driver - lookup a tty driver for a given device file
1973 * @device: device number
1974 * @filp: file pointer to tty
1975 * @noctty: set if the device should not become a controlling tty
1976 * @index: index for the device in the @return driver
1977 * @return: driver for this inode (with increased refcount)
1978 *
1979 * If @return is not erroneous, the caller is responsible to decrement the
1980 * refcount by tty_driver_kref_put.
1981 *
1982 * Locking: tty_mutex protects get_tty_driver
1983 */
1984static struct tty_driver *tty_lookup_driver(dev_t device, struct file *filp,
1985 int *noctty, int *index)
1986{
1987 struct tty_driver *driver;
1988
2cd0050c 1989 switch (device) {
5b5e7040 1990#ifdef CONFIG_VT
2cd0050c 1991 case MKDEV(TTY_MAJOR, 0): {
5b5e7040
JS
1992 extern struct tty_driver *console_driver;
1993 driver = tty_driver_kref_get(console_driver);
1994 *index = fg_console;
1995 *noctty = 1;
2cd0050c 1996 break;
5b5e7040
JS
1997 }
1998#endif
2cd0050c 1999 case MKDEV(TTYAUX_MAJOR, 1): {
5b5e7040
JS
2000 struct tty_driver *console_driver = console_device(index);
2001 if (console_driver) {
2002 driver = tty_driver_kref_get(console_driver);
2003 if (driver) {
2004 /* Don't let /dev/console block */
2005 filp->f_flags |= O_NONBLOCK;
2006 *noctty = 1;
2cd0050c 2007 break;
5b5e7040
JS
2008 }
2009 }
2010 return ERR_PTR(-ENODEV);
2011 }
2cd0050c
JS
2012 default:
2013 driver = get_tty_driver(device, index);
2014 if (!driver)
2015 return ERR_PTR(-ENODEV);
2016 break;
2017 }
5b5e7040
JS
2018 return driver;
2019}
2020
af9b897e 2021/**
eeb89d91 2022 * tty_open - open a tty device
af9b897e
AC
2023 * @inode: inode of device file
2024 * @filp: file pointer to tty
1da177e4 2025 *
af9b897e
AC
2026 * tty_open and tty_release keep up the tty count that contains the
2027 * number of opens done on a tty. We cannot use the inode-count, as
2028 * different inodes might point to the same tty.
1da177e4 2029 *
af9b897e
AC
2030 * Open-counting is needed for pty masters, as well as for keeping
2031 * track of serial lines: DTR is dropped when the last close happens.
2032 * (This is not done solely through tty->count, now. - Ted 1/27/92)
2033 *
2034 * The termios state of a pty is reset on first open so that
2035 * settings don't persist across reuse.
2036 *
5b5e7040 2037 * Locking: tty_mutex protects tty, tty_lookup_driver and tty_init_dev.
24ec839c
PZ
2038 * tty->count should protect the rest.
2039 * ->siglock protects ->signal/->sighand
89c8d91e
AC
2040 *
2041 * Note: the tty_unlock/lock cases without a ref are only safe due to
2042 * tty_mutex
1da177e4 2043 */
af9b897e 2044
eeb89d91 2045static int tty_open(struct inode *inode, struct file *filp)
1da177e4 2046{
b82154ac 2047 struct tty_struct *tty;
1da177e4 2048 int noctty, retval;
b82154ac 2049 struct tty_driver *driver = NULL;
1da177e4
LT
2050 int index;
2051 dev_t device = inode->i_rdev;
846c151a 2052 unsigned saved_flags = filp->f_flags;
1da177e4
LT
2053
2054 nonseekable_open(inode, filp);
37bdfb07 2055
1da177e4 2056retry_open:
fa90e1c9
JS
2057 retval = tty_alloc_file(filp);
2058 if (retval)
2059 return -ENOMEM;
2060
1da177e4
LT
2061 noctty = filp->f_flags & O_NOCTTY;
2062 index = -1;
2063 retval = 0;
37bdfb07 2064
b82154ac 2065 tty = tty_open_current_tty(device, filp);
52494eeb
PH
2066 if (!tty) {
2067 mutex_lock(&tty_mutex);
5b5e7040
JS
2068 driver = tty_lookup_driver(device, filp, &noctty, &index);
2069 if (IS_ERR(driver)) {
ba5db448
JS
2070 retval = PTR_ERR(driver);
2071 goto err_unlock;
1da177e4 2072 }
1da177e4 2073
4a2b5fdd 2074 /* check whether we're reopening an existing tty */
15f1a633 2075 tty = tty_driver_lookup_tty(driver, inode, index);
808ffa3d 2076 if (IS_ERR(tty)) {
ba5db448
JS
2077 retval = PTR_ERR(tty);
2078 goto err_unlock;
808ffa3d 2079 }
4a2b5fdd 2080
52494eeb 2081 if (tty) {
aa3cb814 2082 mutex_unlock(&tty_mutex);
52494eeb 2083 tty_lock(tty);
aa3cb814
PH
2084 /* safe to drop the kref from tty_driver_lookup_tty() */
2085 tty_kref_put(tty);
52494eeb
PH
2086 retval = tty_reopen(tty);
2087 if (retval < 0) {
2088 tty_unlock(tty);
2089 tty = ERR_PTR(retval);
2090 }
aa3cb814 2091 } else { /* Returns with the tty_lock held for now */
52494eeb 2092 tty = tty_init_dev(driver, index);
aa3cb814
PH
2093 mutex_unlock(&tty_mutex);
2094 }
4a2b5fdd 2095
b82154ac 2096 tty_driver_kref_put(driver);
52494eeb
PH
2097 }
2098
eeb89d91 2099 if (IS_ERR(tty)) {
ba5db448
JS
2100 retval = PTR_ERR(tty);
2101 goto err_file;
eeb89d91 2102 }
1da177e4 2103
fa90e1c9 2104 tty_add_file(tty, filp);
d996b62a 2105
9de44bd6 2106 check_tty_count(tty, __func__);
1da177e4
LT
2107 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2108 tty->driver->subtype == PTY_TYPE_MASTER)
2109 noctty = 1;
2110#ifdef TTY_DEBUG_HANGUP
3a6b02dc
PH
2111 printk(KERN_DEBUG "%s: %s: (tty count=%d)\n", __func__, tty->name,
2112 tty->count);
1da177e4 2113#endif
909bc774
HRK
2114 if (tty->ops->open)
2115 retval = tty->ops->open(tty, filp);
2116 else
2117 retval = -ENODEV;
1da177e4
LT
2118 filp->f_flags = saved_flags;
2119
1da177e4
LT
2120 if (retval) {
2121#ifdef TTY_DEBUG_HANGUP
3a6b02dc
PH
2122 printk(KERN_DEBUG "%s: %s: error %d, releasing...\n", __func__,
2123 tty->name, retval);
1da177e4 2124#endif
89c8d91e 2125 tty_unlock(tty); /* need to call tty_release without BTM */
eeb89d91 2126 tty_release(inode, filp);
64ba3dc3 2127 if (retval != -ERESTARTSYS)
1da177e4 2128 return retval;
64ba3dc3
AB
2129
2130 if (signal_pending(current))
1da177e4 2131 return retval;
64ba3dc3 2132
1da177e4
LT
2133 schedule();
2134 /*
2135 * Need to reset f_op in case a hangup happened.
2136 */
1256937f 2137 if (tty_hung_up_p(filp))
1da177e4
LT
2138 filp->f_op = &tty_fops;
2139 goto retry_open;
2140 }
d4855e1f 2141 clear_bit(TTY_HUPPED, &tty->flags);
eeb89d91 2142
24ec839c 2143
2c411c11 2144 read_lock(&tasklist_lock);
24ec839c 2145 spin_lock_irq(&current->sighand->siglock);
1da177e4
LT
2146 if (!noctty &&
2147 current->signal->leader &&
2148 !current->signal->tty &&
ab521dc0 2149 tty->session == NULL)
bce65f18 2150 __proc_set_tty(tty);
24ec839c 2151 spin_unlock_irq(&current->sighand->siglock);
2c411c11 2152 read_unlock(&tasklist_lock);
89c8d91e 2153 tty_unlock(tty);
1da177e4 2154 return 0;
ba5db448 2155err_unlock:
ba5db448
JS
2156 mutex_unlock(&tty_mutex);
2157 /* after locks to avoid deadlock */
2158 if (!IS_ERR_OR_NULL(driver))
2159 tty_driver_kref_put(driver);
2160err_file:
2161 tty_free_file(filp);
2162 return retval;
1da177e4
LT
2163}
2164
39d95b9d
JC
2165
2166
af9b897e
AC
2167/**
2168 * tty_poll - check tty status
2169 * @filp: file being polled
2170 * @wait: poll wait structures to update
2171 *
2172 * Call the line discipline polling method to obtain the poll
2173 * status of the device.
2174 *
2175 * Locking: locks called line discipline but ldisc poll method
2176 * may be re-entered freely by other callers.
2177 */
2178
37bdfb07 2179static unsigned int tty_poll(struct file *filp, poll_table *wait)
1da177e4 2180{
d996b62a 2181 struct tty_struct *tty = file_tty(filp);
1da177e4
LT
2182 struct tty_ldisc *ld;
2183 int ret = 0;
2184
6131ffaa 2185 if (tty_paranoia_check(tty, file_inode(filp), "tty_poll"))
1da177e4 2186 return 0;
37bdfb07 2187
1da177e4 2188 ld = tty_ldisc_ref_wait(tty);
a352def2 2189 if (ld->ops->poll)
c961bfb1 2190 ret = ld->ops->poll(tty, filp, wait);
1da177e4
LT
2191 tty_ldisc_deref(ld);
2192 return ret;
2193}
2194
ec79d605 2195static int __tty_fasync(int fd, struct file *filp, int on)
1da177e4 2196{
d996b62a 2197 struct tty_struct *tty = file_tty(filp);
f6c8dbe6 2198 struct tty_ldisc *ldisc;
47f86834 2199 unsigned long flags;
5d1e3230 2200 int retval = 0;
1da177e4 2201
6131ffaa 2202 if (tty_paranoia_check(tty, file_inode(filp), "tty_fasync"))
5d1e3230 2203 goto out;
37bdfb07 2204
1da177e4
LT
2205 retval = fasync_helper(fd, filp, on, &tty->fasync);
2206 if (retval <= 0)
5d1e3230 2207 goto out;
1da177e4 2208
f6c8dbe6
PH
2209 ldisc = tty_ldisc_ref(tty);
2210 if (ldisc) {
2211 if (ldisc->ops->fasync)
2212 ldisc->ops->fasync(tty, on);
2213 tty_ldisc_deref(ldisc);
2214 }
2215
1da177e4 2216 if (on) {
ab521dc0
EB
2217 enum pid_type type;
2218 struct pid *pid;
f6c8dbe6 2219
47f86834 2220 spin_lock_irqsave(&tty->ctrl_lock, flags);
ab521dc0
EB
2221 if (tty->pgrp) {
2222 pid = tty->pgrp;
2223 type = PIDTYPE_PGID;
2224 } else {
2225 pid = task_pid(current);
2226 type = PIDTYPE_PID;
2227 }
80e1e823 2228 get_pid(pid);
70362511 2229 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
e0b93edd 2230 __f_setown(filp, pid, type, 0);
80e1e823 2231 put_pid(pid);
e0b93edd 2232 retval = 0;
1da177e4 2233 }
5d1e3230 2234out:
ec79d605
AB
2235 return retval;
2236}
2237
2238static int tty_fasync(int fd, struct file *filp, int on)
2239{
89c8d91e 2240 struct tty_struct *tty = file_tty(filp);
ec79d605 2241 int retval;
89c8d91e
AC
2242
2243 tty_lock(tty);
ec79d605 2244 retval = __tty_fasync(fd, filp, on);
89c8d91e
AC
2245 tty_unlock(tty);
2246
5d1e3230 2247 return retval;
1da177e4
LT
2248}
2249
af9b897e
AC
2250/**
2251 * tiocsti - fake input character
2252 * @tty: tty to fake input into
2253 * @p: pointer to character
2254 *
3a4fa0a2 2255 * Fake input to a tty device. Does the necessary locking and
af9b897e
AC
2256 * input management.
2257 *
2258 * FIXME: does not honour flow control ??
2259 *
2260 * Locking:
137084bb 2261 * Called functions take tty_ldiscs_lock
af9b897e 2262 * current->signal->tty check is safe without locks
28298232
AC
2263 *
2264 * FIXME: may race normal receive processing
af9b897e
AC
2265 */
2266
1da177e4
LT
2267static int tiocsti(struct tty_struct *tty, char __user *p)
2268{
2269 char ch, mbz = 0;
2270 struct tty_ldisc *ld;
37bdfb07 2271
1da177e4
LT
2272 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2273 return -EPERM;
2274 if (get_user(ch, p))
2275 return -EFAULT;
1e641743 2276 tty_audit_tiocsti(tty, ch);
1da177e4 2277 ld = tty_ldisc_ref_wait(tty);
a352def2 2278 ld->ops->receive_buf(tty, &ch, &mbz, 1);
1da177e4
LT
2279 tty_ldisc_deref(ld);
2280 return 0;
2281}
2282
af9b897e
AC
2283/**
2284 * tiocgwinsz - implement window query ioctl
2285 * @tty; tty
2286 * @arg: user buffer for result
2287 *
808a0d38 2288 * Copies the kernel idea of the window size into the user buffer.
af9b897e 2289 *
dee4a0be 2290 * Locking: tty->winsize_mutex is taken to ensure the winsize data
808a0d38 2291 * is consistent.
af9b897e
AC
2292 */
2293
37bdfb07 2294static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
1da177e4 2295{
808a0d38
AC
2296 int err;
2297
dee4a0be 2298 mutex_lock(&tty->winsize_mutex);
808a0d38 2299 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
dee4a0be 2300 mutex_unlock(&tty->winsize_mutex);
808a0d38
AC
2301
2302 return err ? -EFAULT: 0;
1da177e4
LT
2303}
2304
af9b897e 2305/**
8c9a9dd0
AC
2306 * tty_do_resize - resize event
2307 * @tty: tty being resized
8c9a9dd0
AC
2308 * @rows: rows (character)
2309 * @cols: cols (character)
2310 *
3ad2f3fb 2311 * Update the termios variables and send the necessary signals to
8c9a9dd0 2312 * peform a terminal resize correctly
af9b897e
AC
2313 */
2314
fc6f6238 2315int tty_do_resize(struct tty_struct *tty, struct winsize *ws)
1da177e4 2316{
fc6f6238 2317 struct pid *pgrp;
1da177e4 2318
fc6f6238 2319 /* Lock the tty */
dee4a0be 2320 mutex_lock(&tty->winsize_mutex);
fc6f6238 2321 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
ca9bda00 2322 goto done;
47f86834 2323
5b239542
PH
2324 /* Signal the foreground process group */
2325 pgrp = tty_get_pgrp(tty);
47f86834
AC
2326 if (pgrp)
2327 kill_pgrp(pgrp, SIGWINCH, 1);
47f86834 2328 put_pid(pgrp);
47f86834 2329
8c9a9dd0 2330 tty->winsize = *ws;
ca9bda00 2331done:
dee4a0be 2332 mutex_unlock(&tty->winsize_mutex);
1da177e4
LT
2333 return 0;
2334}
4d334fd1 2335EXPORT_SYMBOL(tty_do_resize);
1da177e4 2336
8c9a9dd0
AC
2337/**
2338 * tiocswinsz - implement window size set ioctl
fc6f6238 2339 * @tty; tty side of tty
8c9a9dd0
AC
2340 * @arg: user buffer for result
2341 *
2342 * Copies the user idea of the window size to the kernel. Traditionally
2343 * this is just advisory information but for the Linux console it
2344 * actually has driver level meaning and triggers a VC resize.
2345 *
2346 * Locking:
25985edc 2347 * Driver dependent. The default do_resize method takes the
8c9a9dd0
AC
2348 * tty termios mutex and ctrl_lock. The console takes its own lock
2349 * then calls into the default method.
2350 */
2351
fc6f6238 2352static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg)
8c9a9dd0
AC
2353{
2354 struct winsize tmp_ws;
2355 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2356 return -EFAULT;
2357
2358 if (tty->ops->resize)
fc6f6238 2359 return tty->ops->resize(tty, &tmp_ws);
8c9a9dd0 2360 else
fc6f6238 2361 return tty_do_resize(tty, &tmp_ws);
8c9a9dd0
AC
2362}
2363
af9b897e
AC
2364/**
2365 * tioccons - allow admin to move logical console
2366 * @file: the file to become console
2367 *
25985edc 2368 * Allow the administrator to move the redirected console device
af9b897e
AC
2369 *
2370 * Locking: uses redirect_lock to guard the redirect information
2371 */
2372
1da177e4
LT
2373static int tioccons(struct file *file)
2374{
2375 if (!capable(CAP_SYS_ADMIN))
2376 return -EPERM;
2377 if (file->f_op->write == redirected_tty_write) {
2378 struct file *f;
2379 spin_lock(&redirect_lock);
2380 f = redirect;
2381 redirect = NULL;
2382 spin_unlock(&redirect_lock);
2383 if (f)
2384 fput(f);
2385 return 0;
2386 }
2387 spin_lock(&redirect_lock);
2388 if (redirect) {
2389 spin_unlock(&redirect_lock);
2390 return -EBUSY;
2391 }
cb0942b8 2392 redirect = get_file(file);
1da177e4
LT
2393 spin_unlock(&redirect_lock);
2394 return 0;
2395}
2396
af9b897e
AC
2397/**
2398 * fionbio - non blocking ioctl
2399 * @file: file to set blocking value
2400 * @p: user parameter
2401 *
2402 * Historical tty interfaces had a blocking control ioctl before
2403 * the generic functionality existed. This piece of history is preserved
2404 * in the expected tty API of posix OS's.
2405 *
6146b9af 2406 * Locking: none, the open file handle ensures it won't go away.
af9b897e 2407 */
1da177e4
LT
2408
2409static int fionbio(struct file *file, int __user *p)
2410{
2411 int nonblock;
2412
2413 if (get_user(nonblock, p))
2414 return -EFAULT;
2415
db1dd4d3 2416 spin_lock(&file->f_lock);
1da177e4
LT
2417 if (nonblock)
2418 file->f_flags |= O_NONBLOCK;
2419 else
2420 file->f_flags &= ~O_NONBLOCK;
db1dd4d3 2421 spin_unlock(&file->f_lock);
1da177e4
LT
2422 return 0;
2423}
2424
af9b897e
AC
2425/**
2426 * tiocsctty - set controlling tty
2427 * @tty: tty structure
2428 * @arg: user argument
2429 *
2430 * This ioctl is used to manage job control. It permits a session
2431 * leader to set this tty as the controlling tty for the session.
2432 *
2433 * Locking:
e218eb32 2434 * Takes tty_lock() to serialize proc_set_tty() for this tty
24ec839c
PZ
2435 * Takes tasklist_lock internally to walk sessions
2436 * Takes ->siglock() when updating signal->tty
af9b897e
AC
2437 */
2438
1da177e4
LT
2439static int tiocsctty(struct tty_struct *tty, int arg)
2440{
24ec839c 2441 int ret = 0;
24ec839c 2442
e218eb32 2443 tty_lock(tty);
2c411c11
PH
2444 read_lock(&tasklist_lock);
2445
2446 if (current->signal->leader && (task_session(current) == tty->session))
2447 goto unlock;
2448
1da177e4
LT
2449 /*
2450 * The process must be a session leader and
2451 * not have a controlling tty already.
2452 */
24ec839c
PZ
2453 if (!current->signal->leader || current->signal->tty) {
2454 ret = -EPERM;
2455 goto unlock;
2456 }
2457
ab521dc0 2458 if (tty->session) {
1da177e4
LT
2459 /*
2460 * This tty is already the controlling
2461 * tty for another session group!
2462 */
37bdfb07 2463 if (arg == 1 && capable(CAP_SYS_ADMIN)) {
1da177e4
LT
2464 /*
2465 * Steal it away
2466 */
24ec839c 2467 session_clear_tty(tty->session);
24ec839c
PZ
2468 } else {
2469 ret = -EPERM;
2470 goto unlock;
2471 }
1da177e4 2472 }
bce65f18 2473 proc_set_tty(tty);
24ec839c 2474unlock:
2c411c11 2475 read_unlock(&tasklist_lock);
e218eb32 2476 tty_unlock(tty);
24ec839c 2477 return ret;
1da177e4
LT
2478}
2479
5d0fdf1e
AC
2480/**
2481 * tty_get_pgrp - return a ref counted pgrp pid
2482 * @tty: tty to read
2483 *
2484 * Returns a refcounted instance of the pid struct for the process
2485 * group controlling the tty.
2486 */
2487
2488struct pid *tty_get_pgrp(struct tty_struct *tty)
2489{
2490 unsigned long flags;
2491 struct pid *pgrp;
2492
2493 spin_lock_irqsave(&tty->ctrl_lock, flags);
2494 pgrp = get_pid(tty->pgrp);
2495 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2496
2497 return pgrp;
2498}
2499EXPORT_SYMBOL_GPL(tty_get_pgrp);
2500
e1c2296c
PH
2501/*
2502 * This checks not only the pgrp, but falls back on the pid if no
2503 * satisfactory pgrp is found. I dunno - gdb doesn't work correctly
2504 * without this...
2505 *
2506 * The caller must hold rcu lock or the tasklist lock.
2507 */
2508static struct pid *session_of_pgrp(struct pid *pgrp)
2509{
2510 struct task_struct *p;
2511 struct pid *sid = NULL;
2512
2513 p = pid_task(pgrp, PIDTYPE_PGID);
2514 if (p == NULL)
2515 p = pid_task(pgrp, PIDTYPE_PID);
2516 if (p != NULL)
2517 sid = task_session(p);
2518
2519 return sid;
2520}
2521
af9b897e
AC
2522/**
2523 * tiocgpgrp - get process group
2524 * @tty: tty passed by user
25985edc 2525 * @real_tty: tty side of the tty passed by the user if a pty else the tty
af9b897e
AC
2526 * @p: returned pid
2527 *
2528 * Obtain the process group of the tty. If there is no process group
2529 * return an error.
2530 *
24ec839c 2531 * Locking: none. Reference to current->signal->tty is safe.
af9b897e
AC
2532 */
2533
1da177e4
LT
2534static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2535{
5d0fdf1e
AC
2536 struct pid *pid;
2537 int ret;
1da177e4
LT
2538 /*
2539 * (tty == real_tty) is a cheap way of
2540 * testing if the tty is NOT a master pty.
2541 */
2542 if (tty == real_tty && current->signal->tty != real_tty)
2543 return -ENOTTY;
5d0fdf1e
AC
2544 pid = tty_get_pgrp(real_tty);
2545 ret = put_user(pid_vnr(pid), p);
2546 put_pid(pid);
2547 return ret;
1da177e4
LT
2548}
2549
af9b897e
AC
2550/**
2551 * tiocspgrp - attempt to set process group
2552 * @tty: tty passed by user
2553 * @real_tty: tty side device matching tty passed by user
2554 * @p: pid pointer
2555 *
2556 * Set the process group of the tty to the session passed. Only
2557 * permitted where the tty session is our session.
2558 *
47f86834 2559 * Locking: RCU, ctrl lock
af9b897e
AC
2560 */
2561
1da177e4
LT
2562static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2563{
04a2e6a5
EB
2564 struct pid *pgrp;
2565 pid_t pgrp_nr;
1da177e4 2566 int retval = tty_check_change(real_tty);
47f86834 2567 unsigned long flags;
1da177e4
LT
2568
2569 if (retval == -EIO)
2570 return -ENOTTY;
2571 if (retval)
2572 return retval;
2573 if (!current->signal->tty ||
2574 (current->signal->tty != real_tty) ||
ab521dc0 2575 (real_tty->session != task_session(current)))
1da177e4 2576 return -ENOTTY;
04a2e6a5 2577 if (get_user(pgrp_nr, p))
1da177e4 2578 return -EFAULT;
04a2e6a5 2579 if (pgrp_nr < 0)
1da177e4 2580 return -EINVAL;
04a2e6a5 2581 rcu_read_lock();
b488893a 2582 pgrp = find_vpid(pgrp_nr);
04a2e6a5
EB
2583 retval = -ESRCH;
2584 if (!pgrp)
2585 goto out_unlock;
2586 retval = -EPERM;
2587 if (session_of_pgrp(pgrp) != task_session(current))
2588 goto out_unlock;
2589 retval = 0;
47f86834 2590 spin_lock_irqsave(&tty->ctrl_lock, flags);
ab521dc0
EB
2591 put_pid(real_tty->pgrp);
2592 real_tty->pgrp = get_pid(pgrp);
47f86834 2593 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
04a2e6a5
EB
2594out_unlock:
2595 rcu_read_unlock();
2596 return retval;
1da177e4
LT
2597}
2598
af9b897e
AC
2599/**
2600 * tiocgsid - get session id
2601 * @tty: tty passed by user
25985edc 2602 * @real_tty: tty side of the tty passed by the user if a pty else the tty
af9b897e
AC
2603 * @p: pointer to returned session id
2604 *
2605 * Obtain the session id of the tty. If there is no session
2606 * return an error.
2607 *
24ec839c 2608 * Locking: none. Reference to current->signal->tty is safe.
af9b897e
AC
2609 */
2610
1da177e4
LT
2611static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2612{
2613 /*
2614 * (tty == real_tty) is a cheap way of
2615 * testing if the tty is NOT a master pty.
2616 */
2617 if (tty == real_tty && current->signal->tty != real_tty)
2618 return -ENOTTY;
ab521dc0 2619 if (!real_tty->session)
1da177e4 2620 return -ENOTTY;
b488893a 2621 return put_user(pid_vnr(real_tty->session), p);
1da177e4
LT
2622}
2623
af9b897e
AC
2624/**
2625 * tiocsetd - set line discipline
2626 * @tty: tty device
2627 * @p: pointer to user data
2628 *
2629 * Set the line discipline according to user request.
2630 *
2631 * Locking: see tty_set_ldisc, this function is just a helper
2632 */
2633
1da177e4
LT
2634static int tiocsetd(struct tty_struct *tty, int __user *p)
2635{
2636 int ldisc;
04f378b1 2637 int ret;
1da177e4
LT
2638
2639 if (get_user(ldisc, p))
2640 return -EFAULT;
04f378b1 2641
04f378b1 2642 ret = tty_set_ldisc(tty, ldisc);
04f378b1
AC
2643
2644 return ret;
1da177e4
LT
2645}
2646
af9b897e
AC
2647/**
2648 * send_break - performed time break
2649 * @tty: device to break on
2650 * @duration: timeout in mS
2651 *
2652 * Perform a timed break on hardware that lacks its own driver level
2653 * timed break functionality.
2654 *
2655 * Locking:
28298232 2656 * atomic_write_lock serializes
af9b897e 2657 *
af9b897e
AC
2658 */
2659
b20f3ae5 2660static int send_break(struct tty_struct *tty, unsigned int duration)
1da177e4 2661{
9e98966c
AC
2662 int retval;
2663
2664 if (tty->ops->break_ctl == NULL)
2665 return 0;
2666
2667 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2668 retval = tty->ops->break_ctl(tty, duration);
2669 else {
2670 /* Do the work ourselves */
2671 if (tty_write_lock(tty, 0) < 0)
2672 return -EINTR;
2673 retval = tty->ops->break_ctl(tty, -1);
2674 if (retval)
2675 goto out;
2676 if (!signal_pending(current))
2677 msleep_interruptible(duration);
2678 retval = tty->ops->break_ctl(tty, 0);
2679out:
2680 tty_write_unlock(tty);
2681 if (signal_pending(current))
2682 retval = -EINTR;
2683 }
2684 return retval;
1da177e4
LT
2685}
2686
af9b897e 2687/**
f34d7a5b 2688 * tty_tiocmget - get modem status
af9b897e
AC
2689 * @tty: tty device
2690 * @file: user file pointer
2691 * @p: pointer to result
2692 *
2693 * Obtain the modem status bits from the tty driver if the feature
2694 * is supported. Return -EINVAL if it is not available.
2695 *
2696 * Locking: none (up to the driver)
2697 */
2698
60b33c13 2699static int tty_tiocmget(struct tty_struct *tty, int __user *p)
1da177e4
LT
2700{
2701 int retval = -EINVAL;
2702
f34d7a5b 2703 if (tty->ops->tiocmget) {
60b33c13 2704 retval = tty->ops->tiocmget(tty);
1da177e4
LT
2705
2706 if (retval >= 0)
2707 retval = put_user(retval, p);
2708 }
2709 return retval;
2710}
2711
af9b897e 2712/**
f34d7a5b 2713 * tty_tiocmset - set modem status
af9b897e 2714 * @tty: tty device
af9b897e
AC
2715 * @cmd: command - clear bits, set bits or set all
2716 * @p: pointer to desired bits
2717 *
2718 * Set the modem status bits from the tty driver if the feature
2719 * is supported. Return -EINVAL if it is not available.
2720 *
2721 * Locking: none (up to the driver)
2722 */
2723
20b9d177 2724static int tty_tiocmset(struct tty_struct *tty, unsigned int cmd,
1da177e4
LT
2725 unsigned __user *p)
2726{
ae677517
AC
2727 int retval;
2728 unsigned int set, clear, val;
1da177e4 2729
ae677517
AC
2730 if (tty->ops->tiocmset == NULL)
2731 return -EINVAL;
1da177e4 2732
ae677517
AC
2733 retval = get_user(val, p);
2734 if (retval)
2735 return retval;
2736 set = clear = 0;
2737 switch (cmd) {
2738 case TIOCMBIS:
2739 set = val;
2740 break;
2741 case TIOCMBIC:
2742 clear = val;
2743 break;
2744 case TIOCMSET:
2745 set = val;
2746 clear = ~val;
2747 break;
2748 }
2749 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2750 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
20b9d177 2751 return tty->ops->tiocmset(tty, set, clear);
1da177e4
LT
2752}
2753
d281da7f
AC
2754static int tty_tiocgicount(struct tty_struct *tty, void __user *arg)
2755{
2756 int retval = -EINVAL;
2757 struct serial_icounter_struct icount;
2758 memset(&icount, 0, sizeof(icount));
2759 if (tty->ops->get_icount)
2760 retval = tty->ops->get_icount(tty, &icount);
2761 if (retval != 0)
2762 return retval;
2763 if (copy_to_user(arg, &icount, sizeof(icount)))
2764 return -EFAULT;
2765 return 0;
2766}
2767
8a8ae62f
JS
2768static void tty_warn_deprecated_flags(struct serial_struct __user *ss)
2769{
2770 static DEFINE_RATELIMIT_STATE(depr_flags,
2771 DEFAULT_RATELIMIT_INTERVAL,
2772 DEFAULT_RATELIMIT_BURST);
2773 char comm[TASK_COMM_LEN];
2774 int flags;
2775
2776 if (get_user(flags, &ss->flags))
2777 return;
2778
2779 flags &= ASYNC_DEPRECATED;
2780
2781 if (flags && __ratelimit(&depr_flags))
2782 pr_warning("%s: '%s' is using deprecated serial flags (with no effect): %.8x\n",
2783 __func__, get_task_comm(comm, current), flags);
2784}
2785
8f166e00
PH
2786/*
2787 * if pty, return the slave side (real_tty)
2788 * otherwise, return self
2789 */
2790static struct tty_struct *tty_pair_get_tty(struct tty_struct *tty)
e8b70e7d
AC
2791{
2792 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2793 tty->driver->subtype == PTY_TYPE_MASTER)
2794 tty = tty->link;
2795 return tty;
2796}
e8b70e7d 2797
1da177e4
LT
2798/*
2799 * Split this up, as gcc can choke on it otherwise..
2800 */
04f378b1 2801long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1da177e4 2802{
d996b62a
NP
2803 struct tty_struct *tty = file_tty(file);
2804 struct tty_struct *real_tty;
1da177e4
LT
2805 void __user *p = (void __user *)arg;
2806 int retval;
2807 struct tty_ldisc *ld;
37bdfb07 2808
6131ffaa 2809 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
1da177e4
LT
2810 return -EINVAL;
2811
e8b70e7d 2812 real_tty = tty_pair_get_tty(tty);
1da177e4
LT
2813
2814 /*
2815 * Factor out some common prep work
2816 */
2817 switch (cmd) {
2818 case TIOCSETD:
2819 case TIOCSBRK:
2820 case TIOCCBRK:
2821 case TCSBRK:
37bdfb07 2822 case TCSBRKP:
1da177e4
LT
2823 retval = tty_check_change(tty);
2824 if (retval)
2825 return retval;
2826 if (cmd != TIOCCBRK) {
2827 tty_wait_until_sent(tty, 0);
2828 if (signal_pending(current))
2829 return -EINTR;
2830 }
2831 break;
2832 }
2833
9e98966c
AC
2834 /*
2835 * Now do the stuff.
2836 */
1da177e4 2837 switch (cmd) {
37bdfb07
AC
2838 case TIOCSTI:
2839 return tiocsti(tty, p);
2840 case TIOCGWINSZ:
8f520021 2841 return tiocgwinsz(real_tty, p);
37bdfb07 2842 case TIOCSWINSZ:
fc6f6238 2843 return tiocswinsz(real_tty, p);
37bdfb07
AC
2844 case TIOCCONS:
2845 return real_tty != tty ? -EINVAL : tioccons(file);
2846 case FIONBIO:
2847 return fionbio(file, p);
2848 case TIOCEXCL:
2849 set_bit(TTY_EXCLUSIVE, &tty->flags);
2850 return 0;
2851 case TIOCNXCL:
2852 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2853 return 0;
84fd7bdf
CG
2854 case TIOCGEXCL:
2855 {
2856 int excl = test_bit(TTY_EXCLUSIVE, &tty->flags);
2857 return put_user(excl, (int __user *)p);
2858 }
37bdfb07
AC
2859 case TIOCNOTTY:
2860 if (current->signal->tty != tty)
2861 return -ENOTTY;
2862 no_tty();
2863 return 0;
2864 case TIOCSCTTY:
2865 return tiocsctty(tty, arg);
2866 case TIOCGPGRP:
2867 return tiocgpgrp(tty, real_tty, p);
2868 case TIOCSPGRP:
2869 return tiocspgrp(tty, real_tty, p);
2870 case TIOCGSID:
2871 return tiocgsid(tty, real_tty, p);
2872 case TIOCGETD:
c65c9bc3 2873 return put_user(tty->ldisc->ops->num, (int __user *)p);
37bdfb07
AC
2874 case TIOCSETD:
2875 return tiocsetd(tty, p);
3c95c985
KS
2876 case TIOCVHANGUP:
2877 if (!capable(CAP_SYS_ADMIN))
2878 return -EPERM;
2879 tty_vhangup(tty);
2880 return 0;
b7b8de08
WF
2881 case TIOCGDEV:
2882 {
2883 unsigned int ret = new_encode_dev(tty_devnum(real_tty));
2884 return put_user(ret, (unsigned int __user *)p);
2885 }
37bdfb07
AC
2886 /*
2887 * Break handling
2888 */
2889 case TIOCSBRK: /* Turn break on, unconditionally */
f34d7a5b 2890 if (tty->ops->break_ctl)
9e98966c 2891 return tty->ops->break_ctl(tty, -1);
37bdfb07 2892 return 0;
37bdfb07 2893 case TIOCCBRK: /* Turn break off, unconditionally */
f34d7a5b 2894 if (tty->ops->break_ctl)
9e98966c 2895 return tty->ops->break_ctl(tty, 0);
37bdfb07
AC
2896 return 0;
2897 case TCSBRK: /* SVID version: non-zero arg --> no break */
2898 /* non-zero arg means wait for all output data
2899 * to be sent (performed above) but don't send break.
2900 * This is used by the tcdrain() termios function.
2901 */
2902 if (!arg)
2903 return send_break(tty, 250);
2904 return 0;
2905 case TCSBRKP: /* support for POSIX tcsendbreak() */
2906 return send_break(tty, arg ? arg*100 : 250);
2907
2908 case TIOCMGET:
60b33c13 2909 return tty_tiocmget(tty, p);
37bdfb07
AC
2910 case TIOCMSET:
2911 case TIOCMBIC:
2912 case TIOCMBIS:
20b9d177 2913 return tty_tiocmset(tty, cmd, p);
d281da7f
AC
2914 case TIOCGICOUNT:
2915 retval = tty_tiocgicount(tty, p);
2916 /* For the moment allow fall through to the old method */
2917 if (retval != -EINVAL)
2918 return retval;
2919 break;
37bdfb07
AC
2920 case TCFLSH:
2921 switch (arg) {
2922 case TCIFLUSH:
2923 case TCIOFLUSH:
2924 /* flush tty buffer and allow ldisc to process ioctl */
86c80a8e 2925 tty_buffer_flush(tty, NULL);
c5c34d48 2926 break;
37bdfb07
AC
2927 }
2928 break;
8a8ae62f
JS
2929 case TIOCSSERIAL:
2930 tty_warn_deprecated_flags(p);
2931 break;
1da177e4 2932 }
f34d7a5b 2933 if (tty->ops->ioctl) {
c961bfb1 2934 retval = tty->ops->ioctl(tty, cmd, arg);
1da177e4
LT
2935 if (retval != -ENOIOCTLCMD)
2936 return retval;
2937 }
2938 ld = tty_ldisc_ref_wait(tty);
2939 retval = -EINVAL;
a352def2
AC
2940 if (ld->ops->ioctl) {
2941 retval = ld->ops->ioctl(tty, file, cmd, arg);
1da177e4 2942 if (retval == -ENOIOCTLCMD)
bbb63c51 2943 retval = -ENOTTY;
1da177e4
LT
2944 }
2945 tty_ldisc_deref(ld);
2946 return retval;
2947}
2948
e10cc1df 2949#ifdef CONFIG_COMPAT
37bdfb07 2950static long tty_compat_ioctl(struct file *file, unsigned int cmd,
e10cc1df
PF
2951 unsigned long arg)
2952{
d996b62a 2953 struct tty_struct *tty = file_tty(file);
e10cc1df
PF
2954 struct tty_ldisc *ld;
2955 int retval = -ENOIOCTLCMD;
2956
6131ffaa 2957 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
e10cc1df
PF
2958 return -EINVAL;
2959
f34d7a5b 2960 if (tty->ops->compat_ioctl) {
c961bfb1 2961 retval = tty->ops->compat_ioctl(tty, cmd, arg);
e10cc1df
PF
2962 if (retval != -ENOIOCTLCMD)
2963 return retval;
2964 }
2965
2966 ld = tty_ldisc_ref_wait(tty);
a352def2
AC
2967 if (ld->ops->compat_ioctl)
2968 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
8193c429
TM
2969 else
2970 retval = n_tty_compat_ioctl_helper(tty, file, cmd, arg);
e10cc1df
PF
2971 tty_ldisc_deref(ld);
2972
2973 return retval;
2974}
2975#endif
1da177e4 2976
c3c073f8
AV
2977static int this_tty(const void *t, struct file *file, unsigned fd)
2978{
2979 if (likely(file->f_op->read != tty_read))
2980 return 0;
2981 return file_tty(file) != t ? 0 : fd + 1;
2982}
2983
1da177e4
LT
2984/*
2985 * This implements the "Secure Attention Key" --- the idea is to
2986 * prevent trojan horses by killing all processes associated with this
2987 * tty when the user hits the "Secure Attention Key". Required for
2988 * super-paranoid applications --- see the Orange Book for more details.
37bdfb07 2989 *
1da177e4
LT
2990 * This code could be nicer; ideally it should send a HUP, wait a few
2991 * seconds, then send a INT, and then a KILL signal. But you then
2992 * have to coordinate with the init process, since all processes associated
2993 * with the current tty must be dead before the new getty is allowed
2994 * to spawn.
2995 *
2996 * Now, if it would be correct ;-/ The current code has a nasty hole -
2997 * it doesn't catch files in flight. We may send the descriptor to ourselves
2998 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2999 *
3000 * Nasty bug: do_SAK is being called in interrupt context. This can
3001 * deadlock. We punt it up to process context. AKPM - 16Mar2001
3002 */
8b6312f4 3003void __do_SAK(struct tty_struct *tty)
1da177e4
LT
3004{
3005#ifdef TTY_SOFT_SAK
3006 tty_hangup(tty);
3007#else
652486fb 3008 struct task_struct *g, *p;
ab521dc0 3009 struct pid *session;
1da177e4 3010 int i;
37bdfb07 3011
1da177e4
LT
3012 if (!tty)
3013 return;
24ec839c 3014 session = tty->session;
37bdfb07 3015
b3f13deb 3016 tty_ldisc_flush(tty);
1da177e4 3017
f34d7a5b 3018 tty_driver_flush_buffer(tty);
37bdfb07 3019
1da177e4 3020 read_lock(&tasklist_lock);
652486fb 3021 /* Kill the entire session */
ab521dc0 3022 do_each_pid_task(session, PIDTYPE_SID, p) {
652486fb 3023 printk(KERN_NOTICE "SAK: killed process %d"
1b0f7ffd 3024 " (%s): task_session(p)==tty->session\n",
ba25f9dc 3025 task_pid_nr(p), p->comm);
652486fb 3026 send_sig(SIGKILL, p, 1);
ab521dc0 3027 } while_each_pid_task(session, PIDTYPE_SID, p);
652486fb
EB
3028 /* Now kill any processes that happen to have the
3029 * tty open.
3030 */
3031 do_each_thread(g, p) {
3032 if (p->signal->tty == tty) {
1da177e4 3033 printk(KERN_NOTICE "SAK: killed process %d"
1b0f7ffd 3034 " (%s): task_session(p)==tty->session\n",
ba25f9dc 3035 task_pid_nr(p), p->comm);
1da177e4
LT
3036 send_sig(SIGKILL, p, 1);
3037 continue;
3038 }
3039 task_lock(p);
c3c073f8
AV
3040 i = iterate_fd(p->files, 0, this_tty, tty);
3041 if (i != 0) {
3042 printk(KERN_NOTICE "SAK: killed process %d"
3043 " (%s): fd#%d opened to the tty\n",
3044 task_pid_nr(p), p->comm, i - 1);
3045 force_sig(SIGKILL, p);
1da177e4
LT
3046 }
3047 task_unlock(p);
652486fb 3048 } while_each_thread(g, p);
1da177e4
LT
3049 read_unlock(&tasklist_lock);
3050#endif
3051}
3052
8b6312f4
EB
3053static void do_SAK_work(struct work_struct *work)
3054{
3055 struct tty_struct *tty =
3056 container_of(work, struct tty_struct, SAK_work);
3057 __do_SAK(tty);
3058}
3059
1da177e4
LT
3060/*
3061 * The tq handling here is a little racy - tty->SAK_work may already be queued.
3062 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
3063 * the values which we write to it will be identical to the values which it
3064 * already has. --akpm
3065 */
3066void do_SAK(struct tty_struct *tty)
3067{
3068 if (!tty)
3069 return;
1da177e4
LT
3070 schedule_work(&tty->SAK_work);
3071}
3072
3073EXPORT_SYMBOL(do_SAK);
3074
6e9430ac 3075static int dev_match_devt(struct device *dev, const void *data)
30004ac9 3076{
6e9430ac 3077 const dev_t *devt = data;
30004ac9
DES
3078 return dev->devt == *devt;
3079}
3080
3081/* Must put_device() after it's unused! */
3082static struct device *tty_get_device(struct tty_struct *tty)
3083{
3084 dev_t devt = tty_devnum(tty);
3085 return class_find_device(tty_class, NULL, &devt, dev_match_devt);
3086}
3087
3088
af9b897e 3089/**
2c964a2f 3090 * alloc_tty_struct
af9b897e 3091 *
2c964a2f 3092 * This subroutine allocates and initializes a tty structure.
af9b897e 3093 *
2c964a2f 3094 * Locking: none - tty in question is not exposed at this point
1da177e4 3095 */
af9b897e 3096
2c964a2f 3097struct tty_struct *alloc_tty_struct(struct tty_driver *driver, int idx)
1da177e4 3098{
2c964a2f
RV
3099 struct tty_struct *tty;
3100
3101 tty = kzalloc(sizeof(*tty), GFP_KERNEL);
3102 if (!tty)
3103 return NULL;
3104
9c9f4ded 3105 kref_init(&tty->kref);
1da177e4 3106 tty->magic = TTY_MAGIC;
01e1abb2 3107 tty_ldisc_init(tty);
ab521dc0
EB
3108 tty->session = NULL;
3109 tty->pgrp = NULL;
89c8d91e 3110 mutex_init(&tty->legacy_mutex);
d8c1f929 3111 mutex_init(&tty->throttle_mutex);
6a1c0680 3112 init_rwsem(&tty->termios_rwsem);
dee4a0be 3113 mutex_init(&tty->winsize_mutex);
36697529 3114 init_ldsem(&tty->ldisc_sem);
1da177e4
LT
3115 init_waitqueue_head(&tty->write_wait);
3116 init_waitqueue_head(&tty->read_wait);
65f27f38 3117 INIT_WORK(&tty->hangup_work, do_tty_hangup);
70522e12 3118 mutex_init(&tty->atomic_write_lock);
04f378b1 3119 spin_lock_init(&tty->ctrl_lock);
f9e053dc 3120 spin_lock_init(&tty->flow_lock);
1da177e4 3121 INIT_LIST_HEAD(&tty->tty_files);
7f1f86a0 3122 INIT_WORK(&tty->SAK_work, do_SAK_work);
bf970ee4
AC
3123
3124 tty->driver = driver;
3125 tty->ops = driver->ops;
3126 tty->index = idx;
3127 tty_line_name(driver, idx, tty->name);
30004ac9 3128 tty->dev = tty_get_device(tty);
2c964a2f
RV
3129
3130 return tty;
1da177e4
LT
3131}
3132
6716671d
JS
3133/**
3134 * deinitialize_tty_struct
3135 * @tty: tty to deinitialize
3136 *
3137 * This subroutine deinitializes a tty structure that has been newly
3138 * allocated but tty_release cannot be called on that yet.
3139 *
3140 * Locking: none - tty in question must not be exposed at this point
3141 */
3142void deinitialize_tty_struct(struct tty_struct *tty)
3143{
3144 tty_ldisc_deinit(tty);
3145}
3146
f34d7a5b
AC
3147/**
3148 * tty_put_char - write one character to a tty
3149 * @tty: tty
3150 * @ch: character
3151 *
3152 * Write one byte to the tty using the provided put_char method
3153 * if present. Returns the number of characters successfully output.
3154 *
3155 * Note: the specific put_char operation in the driver layer may go
3156 * away soon. Don't call it directly, use this method
1da177e4 3157 */
af9b897e 3158
f34d7a5b 3159int tty_put_char(struct tty_struct *tty, unsigned char ch)
1da177e4 3160{
f34d7a5b
AC
3161 if (tty->ops->put_char)
3162 return tty->ops->put_char(tty, ch);
3163 return tty->ops->write(tty, &ch, 1);
1da177e4 3164}
f34d7a5b
AC
3165EXPORT_SYMBOL_GPL(tty_put_char);
3166
d81ed103 3167struct class *tty_class;
1da177e4 3168
7e73eca6
JS
3169static int tty_cdev_add(struct tty_driver *driver, dev_t dev,
3170 unsigned int index, unsigned int count)
3171{
3172 /* init here, since reused cdevs cause crashes */
3173 cdev_init(&driver->cdevs[index], &tty_fops);
3174 driver->cdevs[index].owner = driver->owner;
3175 return cdev_add(&driver->cdevs[index], dev, count);
3176}
3177
1da177e4 3178/**
af9b897e
AC
3179 * tty_register_device - register a tty device
3180 * @driver: the tty driver that describes the tty device
3181 * @index: the index in the tty driver for this tty device
3182 * @device: a struct device that is associated with this tty device.
3183 * This field is optional, if there is no known struct device
3184 * for this tty device it can be set to NULL safely.
1da177e4 3185 *
01107d34
GKH
3186 * Returns a pointer to the struct device for this tty device
3187 * (or ERR_PTR(-EFOO) on error).
1cdcb6b4 3188 *
af9b897e
AC
3189 * This call is required to be made to register an individual tty device
3190 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3191 * that bit is not set, this function should not be called by a tty
3192 * driver.
3193 *
3194 * Locking: ??
1da177e4 3195 */
af9b897e 3196
01107d34
GKH
3197struct device *tty_register_device(struct tty_driver *driver, unsigned index,
3198 struct device *device)
1da177e4 3199{
6915c0e4
TH
3200 return tty_register_device_attr(driver, index, device, NULL, NULL);
3201}
3202EXPORT_SYMBOL(tty_register_device);
3203
b1b79916
TH
3204static void tty_device_create_release(struct device *dev)
3205{
3206 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3207 kfree(dev);
3208}
3209
6915c0e4
TH
3210/**
3211 * tty_register_device_attr - register a tty device
3212 * @driver: the tty driver that describes the tty device
3213 * @index: the index in the tty driver for this tty device
3214 * @device: a struct device that is associated with this tty device.
3215 * This field is optional, if there is no known struct device
3216 * for this tty device it can be set to NULL safely.
3217 * @drvdata: Driver data to be set to device.
3218 * @attr_grp: Attribute group to be set on device.
3219 *
3220 * Returns a pointer to the struct device for this tty device
3221 * (or ERR_PTR(-EFOO) on error).
3222 *
3223 * This call is required to be made to register an individual tty device
3224 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3225 * that bit is not set, this function should not be called by a tty
3226 * driver.
3227 *
3228 * Locking: ??
3229 */
3230struct device *tty_register_device_attr(struct tty_driver *driver,
3231 unsigned index, struct device *device,
3232 void *drvdata,
3233 const struct attribute_group **attr_grp)
3234{
1da177e4 3235 char name[64];
6915c0e4
TH
3236 dev_t devt = MKDEV(driver->major, driver->minor_start) + index;
3237 struct device *dev = NULL;
3238 int retval = -ENODEV;
7e73eca6 3239 bool cdev = false;
1da177e4
LT
3240
3241 if (index >= driver->num) {
3242 printk(KERN_ERR "Attempt to register invalid tty line number "
3243 " (%d).\n", index);
1cdcb6b4 3244 return ERR_PTR(-EINVAL);
1da177e4
LT
3245 }
3246
1da177e4
LT
3247 if (driver->type == TTY_DRIVER_TYPE_PTY)
3248 pty_line_name(driver, index, name);
3249 else
3250 tty_line_name(driver, index, name);
1cdcb6b4 3251
7e73eca6 3252 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
6915c0e4
TH
3253 retval = tty_cdev_add(driver, devt, index, 1);
3254 if (retval)
3255 goto error;
7e73eca6
JS
3256 cdev = true;
3257 }
3258
6915c0e4
TH
3259 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3260 if (!dev) {
3261 retval = -ENOMEM;
3262 goto error;
3263 }
7e73eca6 3264
6915c0e4
TH
3265 dev->devt = devt;
3266 dev->class = tty_class;
3267 dev->parent = device;
b1b79916 3268 dev->release = tty_device_create_release;
6915c0e4
TH
3269 dev_set_name(dev, "%s", name);
3270 dev->groups = attr_grp;
3271 dev_set_drvdata(dev, drvdata);
3272
3273 retval = device_register(dev);
3274 if (retval)
3275 goto error;
3276
3277 return dev;
3278
3279error:
3280 put_device(dev);
3281 if (cdev)
3282 cdev_del(&driver->cdevs[index]);
3283 return ERR_PTR(retval);
1da177e4 3284}
6915c0e4 3285EXPORT_SYMBOL_GPL(tty_register_device_attr);
1da177e4
LT
3286
3287/**
af9b897e
AC
3288 * tty_unregister_device - unregister a tty device
3289 * @driver: the tty driver that describes the tty device
3290 * @index: the index in the tty driver for this tty device
1da177e4 3291 *
af9b897e
AC
3292 * If a tty device is registered with a call to tty_register_device() then
3293 * this function must be called when the tty device is gone.
3294 *
3295 * Locking: ??
1da177e4 3296 */
af9b897e 3297
1da177e4
LT
3298void tty_unregister_device(struct tty_driver *driver, unsigned index)
3299{
37bdfb07
AC
3300 device_destroy(tty_class,
3301 MKDEV(driver->major, driver->minor_start) + index);
7e73eca6
JS
3302 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC))
3303 cdev_del(&driver->cdevs[index]);
1da177e4 3304}
1da177e4
LT
3305EXPORT_SYMBOL(tty_unregister_device);
3306
7f0bc6a6
JS
3307/**
3308 * __tty_alloc_driver -- allocate tty driver
3309 * @lines: count of lines this driver can handle at most
3310 * @owner: module which is repsonsible for this driver
3311 * @flags: some of TTY_DRIVER_* flags, will be set in driver->flags
3312 *
3313 * This should not be called directly, some of the provided macros should be
3314 * used instead. Use IS_ERR and friends on @retval.
3315 */
3316struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner,
3317 unsigned long flags)
1da177e4
LT
3318{
3319 struct tty_driver *driver;
7e73eca6 3320 unsigned int cdevs = 1;
16a02081 3321 int err;
1da177e4 3322
0019b408 3323 if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1))
7f0bc6a6
JS
3324 return ERR_PTR(-EINVAL);
3325
506eb99a 3326 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
7f0bc6a6
JS
3327 if (!driver)
3328 return ERR_PTR(-ENOMEM);
3329
3330 kref_init(&driver->kref);
3331 driver->magic = TTY_DRIVER_MAGIC;
3332 driver->num = lines;
3333 driver->owner = owner;
3334 driver->flags = flags;
16a02081
JS
3335
3336 if (!(flags & TTY_DRIVER_DEVPTS_MEM)) {
3337 driver->ttys = kcalloc(lines, sizeof(*driver->ttys),
3338 GFP_KERNEL);
3339 driver->termios = kcalloc(lines, sizeof(*driver->termios),
3340 GFP_KERNEL);
3341 if (!driver->ttys || !driver->termios) {
3342 err = -ENOMEM;
3343 goto err_free_all;
3344 }
3345 }
3346
3347 if (!(flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3348 driver->ports = kcalloc(lines, sizeof(*driver->ports),
3349 GFP_KERNEL);
3350 if (!driver->ports) {
3351 err = -ENOMEM;
3352 goto err_free_all;
3353 }
7e73eca6
JS
3354 cdevs = lines;
3355 }
3356
3357 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL);
3358 if (!driver->cdevs) {
3359 err = -ENOMEM;
3360 goto err_free_all;
16a02081 3361 }
7f0bc6a6 3362
1da177e4 3363 return driver;
16a02081
JS
3364err_free_all:
3365 kfree(driver->ports);
3366 kfree(driver->ttys);
3367 kfree(driver->termios);
3368 kfree(driver);
3369 return ERR_PTR(err);
1da177e4 3370}
7f0bc6a6 3371EXPORT_SYMBOL(__tty_alloc_driver);
1da177e4 3372
7d7b93c1 3373static void destruct_tty_driver(struct kref *kref)
1da177e4 3374{
7d7b93c1
AC
3375 struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
3376 int i;
3377 struct ktermios *tp;
7d7b93c1
AC
3378
3379 if (driver->flags & TTY_DRIVER_INSTALLED) {
3380 /*
3381 * Free the termios and termios_locked structures because
3382 * we don't want to get memory leaks when modular tty
3383 * drivers are removed from the kernel.
3384 */
3385 for (i = 0; i < driver->num; i++) {
3386 tp = driver->termios[i];
3387 if (tp) {
3388 driver->termios[i] = NULL;
3389 kfree(tp);
3390 }
7d7b93c1
AC
3391 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
3392 tty_unregister_device(driver, i);
3393 }
7d7b93c1 3394 proc_tty_unregister_driver(driver);
7e73eca6
JS
3395 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)
3396 cdev_del(&driver->cdevs[0]);
7d7b93c1 3397 }
7e73eca6 3398 kfree(driver->cdevs);
04831dc1 3399 kfree(driver->ports);
16a02081
JS
3400 kfree(driver->termios);
3401 kfree(driver->ttys);
1da177e4
LT
3402 kfree(driver);
3403}
3404
7d7b93c1
AC
3405void tty_driver_kref_put(struct tty_driver *driver)
3406{
3407 kref_put(&driver->kref, destruct_tty_driver);
3408}
3409EXPORT_SYMBOL(tty_driver_kref_put);
3410
b68e31d0
JD
3411void tty_set_operations(struct tty_driver *driver,
3412 const struct tty_operations *op)
1da177e4 3413{
f34d7a5b
AC
3414 driver->ops = op;
3415};
7d7b93c1 3416EXPORT_SYMBOL(tty_set_operations);
1da177e4 3417
7d7b93c1
AC
3418void put_tty_driver(struct tty_driver *d)
3419{
3420 tty_driver_kref_put(d);
3421}
1da177e4 3422EXPORT_SYMBOL(put_tty_driver);
1da177e4
LT
3423
3424/*
3425 * Called by a tty driver to register itself.
3426 */
3427int tty_register_driver(struct tty_driver *driver)
3428{
3429 int error;
37bdfb07 3430 int i;
1da177e4 3431 dev_t dev;
b670bde0 3432 struct device *d;
1da177e4 3433
1da177e4 3434 if (!driver->major) {
37bdfb07
AC
3435 error = alloc_chrdev_region(&dev, driver->minor_start,
3436 driver->num, driver->name);
1da177e4
LT
3437 if (!error) {
3438 driver->major = MAJOR(dev);
3439 driver->minor_start = MINOR(dev);
3440 }
3441 } else {
3442 dev = MKDEV(driver->major, driver->minor_start);
e5717c48 3443 error = register_chrdev_region(dev, driver->num, driver->name);
1da177e4 3444 }
9bb8a3d4 3445 if (error < 0)
16a02081 3446 goto err;
1da177e4 3447
7e73eca6
JS
3448 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC) {
3449 error = tty_cdev_add(driver, dev, 0, driver->num);
3450 if (error)
3451 goto err_unreg_char;
3452 }
1da177e4 3453
ca509f69 3454 mutex_lock(&tty_mutex);
1da177e4 3455 list_add(&driver->tty_drivers, &tty_drivers);
ca509f69 3456 mutex_unlock(&tty_mutex);
37bdfb07
AC
3457
3458 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
b670bde0
VK
3459 for (i = 0; i < driver->num; i++) {
3460 d = tty_register_device(driver, i, NULL);
3461 if (IS_ERR(d)) {
3462 error = PTR_ERR(d);
16a02081 3463 goto err_unreg_devs;
b670bde0
VK
3464 }
3465 }
1da177e4
LT
3466 }
3467 proc_tty_register_driver(driver);
7d7b93c1 3468 driver->flags |= TTY_DRIVER_INSTALLED;
1da177e4 3469 return 0;
b670bde0 3470
16a02081 3471err_unreg_devs:
b670bde0
VK
3472 for (i--; i >= 0; i--)
3473 tty_unregister_device(driver, i);
3474
3475 mutex_lock(&tty_mutex);
3476 list_del(&driver->tty_drivers);
3477 mutex_unlock(&tty_mutex);
3478
9bb8a3d4 3479err_unreg_char:
b670bde0 3480 unregister_chrdev_region(dev, driver->num);
16a02081 3481err:
b670bde0 3482 return error;
1da177e4 3483}
1da177e4
LT
3484EXPORT_SYMBOL(tty_register_driver);
3485
3486/*
3487 * Called by a tty driver to unregister itself.
3488 */
3489int tty_unregister_driver(struct tty_driver *driver)
3490{
7d7b93c1
AC
3491#if 0
3492 /* FIXME */
1da177e4
LT
3493 if (driver->refcount)
3494 return -EBUSY;
7d7b93c1 3495#endif
1da177e4
LT
3496 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3497 driver->num);
ca509f69 3498 mutex_lock(&tty_mutex);
1da177e4 3499 list_del(&driver->tty_drivers);
ca509f69 3500 mutex_unlock(&tty_mutex);
1da177e4
LT
3501 return 0;
3502}
7d7b93c1 3503
1da177e4
LT
3504EXPORT_SYMBOL(tty_unregister_driver);
3505
24ec839c
PZ
3506dev_t tty_devnum(struct tty_struct *tty)
3507{
3508 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3509}
3510EXPORT_SYMBOL(tty_devnum);
1da177e4 3511
d81ed103
AC
3512void tty_default_fops(struct file_operations *fops)
3513{
3514 *fops = tty_fops;
3515}
3516
1da177e4
LT
3517/*
3518 * Initialize the console device. This is called *early*, so
3519 * we can't necessarily depend on lots of kernel help here.
3520 * Just do some early initializations, and do the complex setup
3521 * later.
3522 */
3523void __init console_init(void)
3524{
3525 initcall_t *call;
3526
3527 /* Setup the default TTY line discipline. */
01e1abb2 3528 tty_ldisc_begin();
1da177e4
LT
3529
3530 /*
37bdfb07 3531 * set up the console device so that later boot sequences can
1da177e4
LT
3532 * inform about problems etc..
3533 */
1da177e4
LT
3534 call = __con_initcall_start;
3535 while (call < __con_initcall_end) {
3536 (*call)();
3537 call++;
3538 }
3539}
3540
2c9ede55 3541static char *tty_devnode(struct device *dev, umode_t *mode)
e454cea2
KS
3542{
3543 if (!mode)
3544 return NULL;
3545 if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) ||
3546 dev->devt == MKDEV(TTYAUX_MAJOR, 2))
3547 *mode = 0666;
3548 return NULL;
3549}
3550
1da177e4
LT
3551static int __init tty_class_init(void)
3552{
7fe845d1 3553 tty_class = class_create(THIS_MODULE, "tty");
1da177e4
LT
3554 if (IS_ERR(tty_class))
3555 return PTR_ERR(tty_class);
e454cea2 3556 tty_class->devnode = tty_devnode;
1da177e4
LT
3557 return 0;
3558}
3559
3560postcore_initcall(tty_class_init);
3561
3562/* 3/2004 jmc: why do these devices exist? */
1da177e4 3563static struct cdev tty_cdev, console_cdev;
1da177e4 3564
fbc92a34
KS
3565static ssize_t show_cons_active(struct device *dev,
3566 struct device_attribute *attr, char *buf)
3567{
3568 struct console *cs[16];
3569 int i = 0;
3570 struct console *c;
3571 ssize_t count = 0;
3572
ac751efa 3573 console_lock();
a2a6a822 3574 for_each_console(c) {
fbc92a34
KS
3575 if (!c->device)
3576 continue;
3577 if (!c->write)
3578 continue;
3579 if ((c->flags & CON_ENABLED) == 0)
3580 continue;
3581 cs[i++] = c;
3582 if (i >= ARRAY_SIZE(cs))
3583 break;
3584 }
723abd87
HR
3585 while (i--) {
3586 int index = cs[i]->index;
3587 struct tty_driver *drv = cs[i]->device(cs[i], &index);
3588
3589 /* don't resolve tty0 as some programs depend on it */
3590 if (drv && (cs[i]->index > 0 || drv->major != TTY_MAJOR))
3591 count += tty_line_name(drv, index, buf + count);
3592 else
3593 count += sprintf(buf + count, "%s%d",
3594 cs[i]->name, cs[i]->index);
3595
3596 count += sprintf(buf + count, "%c", i ? ' ':'\n');
3597 }
ac751efa 3598 console_unlock();
fbc92a34
KS
3599
3600 return count;
3601}
3602static DEVICE_ATTR(active, S_IRUGO, show_cons_active, NULL);
3603
1083a7be
TI
3604static struct attribute *cons_dev_attrs[] = {
3605 &dev_attr_active.attr,
3606 NULL
3607};
3608
3609ATTRIBUTE_GROUPS(cons_dev);
3610
fbc92a34
KS
3611static struct device *consdev;
3612
3613void console_sysfs_notify(void)
3614{
3615 if (consdev)
3616 sysfs_notify(&consdev->kobj, NULL, "active");
3617}
3618
1da177e4
LT
3619/*
3620 * Ok, now we can initialize the rest of the tty devices and can count
3621 * on memory allocations, interrupts etc..
3622 */
31d1d48e 3623int __init tty_init(void)
1da177e4
LT
3624{
3625 cdev_init(&tty_cdev, &tty_fops);
3626 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3627 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3628 panic("Couldn't register /dev/tty driver\n");
fbc92a34 3629 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
1da177e4
LT
3630
3631 cdev_init(&console_cdev, &console_fops);
3632 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3633 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3634 panic("Couldn't register /dev/console driver\n");
1083a7be
TI
3635 consdev = device_create_with_groups(tty_class, NULL,
3636 MKDEV(TTYAUX_MAJOR, 1), NULL,
3637 cons_dev_groups, "console");
fbc92a34
KS
3638 if (IS_ERR(consdev))
3639 consdev = NULL;
1da177e4 3640
1da177e4 3641#ifdef CONFIG_VT
d81ed103 3642 vty_init(&console_fops);
1da177e4
LT
3643#endif
3644 return 0;
3645}
31d1d48e 3646