blob: 9a76db3cda1c243bc43b855345f50832aafaa038 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/tty_io.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles
9 * or rs-channels. It also implements echoing, cooked mode etc.
10 *
11 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
12 *
13 * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the
14 * tty_struct and tty_queue structures. Previously there was an array
15 * of 256 tty_struct's which was statically allocated, and the
16 * tty_queue structures were allocated at boot time. Both are now
17 * dynamically allocated only when the tty is open.
18 *
19 * Also restructured routines so that there is more of a separation
20 * between the high-level tty routines (tty_io.c and tty_ioctl.c) and
21 * the low-level tty routines (serial.c, pty.c, console.c). This
Alan Cox37bdfb02008-02-08 04:18:47 -080022 * makes for cleaner and more compact code. -TYT, 9/17/92
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
24 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
25 * which can be dynamically activated and de-activated by the line
26 * discipline handling modules (like SLIP).
27 *
28 * NOTE: pay no attention to the line discipline code (yet); its
29 * interface is still subject to change in this version...
30 * -- TYT, 1/31/92
31 *
32 * Added functionality to the OPOST tty handling. No delays, but all
33 * other bits should be there.
34 * -- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993.
35 *
36 * Rewrote canonical mode and added more termios flags.
37 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
38 *
39 * Reorganized FASYNC support so mouse code can share it.
40 * -- ctm@ardi.com, 9Sep95
41 *
42 * New TIOCLINUX variants added.
43 * -- mj@k332.feld.cvut.cz, 19-Nov-95
Alan Cox37bdfb02008-02-08 04:18:47 -080044 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * Restrict vt switching via ioctl()
46 * -- grif@cs.ucr.edu, 5-Dec-95
47 *
48 * Move console and virtual terminal code to more appropriate files,
49 * implement CONFIG_VT and generalize console device interface.
50 * -- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97
51 *
52 * Rewrote init_dev and release_dev to eliminate races.
53 * -- Bill Hawes <whawes@star.net>, June 97
54 *
55 * Added devfs support.
56 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
57 *
58 * Added support for a Unix98-style ptmx device.
59 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
60 *
61 * Reduced memory usage for older ARM systems
62 * -- Russell King <rmk@arm.linux.org.uk>
63 *
64 * Move do_SAK() into process context. Less stack use in devfs functions.
Alan Cox37bdfb02008-02-08 04:18:47 -080065 * alloc_tty_struct() always uses kmalloc()
66 * -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 */
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <linux/types.h>
70#include <linux/major.h>
71#include <linux/errno.h>
72#include <linux/signal.h>
73#include <linux/fcntl.h>
74#include <linux/sched.h>
75#include <linux/interrupt.h>
76#include <linux/tty.h>
77#include <linux/tty_driver.h>
78#include <linux/tty_flip.h>
79#include <linux/devpts_fs.h>
80#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040081#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/console.h>
83#include <linux/timer.h>
84#include <linux/ctype.h>
85#include <linux/kd.h>
86#include <linux/mm.h>
87#include <linux/string.h>
88#include <linux/slab.h>
89#include <linux/poll.h>
90#include <linux/proc_fs.h>
91#include <linux/init.h>
92#include <linux/module.h>
93#include <linux/smp_lock.h>
94#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/wait.h>
96#include <linux/bitops.h>
Domen Puncerb20f3ae2005-06-25 14:58:42 -070097#include <linux/delay.h>
Alan Coxa352def2008-07-16 21:53:12 +010098#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Alan Coxa352def2008-07-16 21:53:12 +0100100#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <asm/system.h>
102
103#include <linux/kbd_kern.h>
104#include <linux/vt_kern.h>
105#include <linux/selection.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#include <linux/kmod.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700108#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#undef TTY_DEBUG_HANGUP
111
112#define TTY_PARANOIA_CHECK 1
113#define CHECK_TTY_COUNT 1
114
Alan Coxedc6afc2006-12-08 02:38:44 -0800115struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .c_iflag = ICRNL | IXON,
117 .c_oflag = OPOST | ONLCR,
118 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
119 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
120 ECHOCTL | ECHOKE | IEXTEN,
Alan Coxedc6afc2006-12-08 02:38:44 -0800121 .c_cc = INIT_C_CC,
122 .c_ispeed = 38400,
123 .c_ospeed = 38400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126EXPORT_SYMBOL(tty_std_termios);
127
128/* This list gets poked at by procfs and various bits of boot up code. This
129 could do with some rationalisation such as pulling the tty proc function
130 into this file */
Alan Cox37bdfb02008-02-08 04:18:47 -0800131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132LIST_HEAD(tty_drivers); /* linked list of tty drivers */
133
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800134/* Mutex to protect creating and releasing a tty. This is shared with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 vt.c for deeply disgusting hack reasons */
Ingo Molnar70522e12006-03-23 03:00:31 -0800136DEFINE_MUTEX(tty_mutex);
Alan Coxde2a84f2006-09-29 02:00:57 -0700137EXPORT_SYMBOL(tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139#ifdef CONFIG_UNIX98_PTYS
140extern struct tty_driver *ptm_driver; /* Unix98 pty masters; for /dev/ptmx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static int ptmx_open(struct inode *, struct file *);
142#endif
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static void initialize_tty_struct(struct tty_struct *tty);
145
146static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
147static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
Alan Cox37bdfb02008-02-08 04:18:47 -0800148ssize_t redirected_tty_write(struct file *, const char __user *,
149 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static unsigned int tty_poll(struct file *, poll_table *);
151static int tty_open(struct inode *, struct file *);
152static int tty_release(struct inode *, struct file *);
Alan Cox04f378b2008-04-30 00:53:29 -0700153long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700154#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -0800155static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700156 unsigned long arg);
157#else
158#define tty_compat_ioctl NULL
159#endif
Alan Cox37bdfb02008-02-08 04:18:47 -0800160static int tty_fasync(int fd, struct file *filp, int on);
Christoph Hellwigd5698c22007-02-10 01:46:46 -0800161static void release_tty(struct tty_struct *tty, int idx);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700162static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700163static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Alan Coxaf9b8972006-08-27 01:24:01 -0700165/**
166 * alloc_tty_struct - allocate a tty object
167 *
168 * Return a new empty tty structure. The data fields have not
169 * been initialized in any way but has been zeroed
170 *
171 * Locking: none
Alan Coxaf9b8972006-08-27 01:24:01 -0700172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174static struct tty_struct *alloc_tty_struct(void)
175{
Alan Cox1266b1e2006-09-29 02:00:40 -0700176 return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Alan Coxaf9b8972006-08-27 01:24:01 -0700179/**
180 * free_tty_struct - free a disused tty
181 * @tty: tty struct to free
182 *
183 * Free the write buffers, tty queue and tty memory itself.
184 *
185 * Locking: none. Must be called after tty is definitely unused
186 */
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188static inline void free_tty_struct(struct tty_struct *tty)
189{
190 kfree(tty->write_buf);
Alan Cox33f0f882006-01-09 20:54:13 -0800191 tty_buffer_free_all(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 kfree(tty);
193}
194
195#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
196
Alan Coxaf9b8972006-08-27 01:24:01 -0700197/**
198 * tty_name - return tty naming
199 * @tty: tty structure
200 * @buf: buffer for output
201 *
202 * Convert a tty structure into a name. The name reflects the kernel
203 * naming policy and if udev is in use may not reflect user space
204 *
205 * Locking: none
206 */
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208char *tty_name(struct tty_struct *tty, char *buf)
209{
210 if (!tty) /* Hmm. NULL pointer. That's fun. */
211 strcpy(buf, "NULL tty");
212 else
213 strcpy(buf, tty->name);
214 return buf;
215}
216
217EXPORT_SYMBOL(tty_name);
218
Andrew Mortond769a662005-05-05 16:15:50 -0700219int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 const char *routine)
221{
222#ifdef TTY_PARANOIA_CHECK
223 if (!tty) {
224 printk(KERN_WARNING
225 "null TTY for (%d:%d) in %s\n",
226 imajor(inode), iminor(inode), routine);
227 return 1;
228 }
229 if (tty->magic != TTY_MAGIC) {
230 printk(KERN_WARNING
231 "bad magic number for tty struct (%d:%d) in %s\n",
232 imajor(inode), iminor(inode), routine);
233 return 1;
234 }
235#endif
236 return 0;
237}
238
239static int check_tty_count(struct tty_struct *tty, const char *routine)
240{
241#ifdef CHECK_TTY_COUNT
242 struct list_head *p;
243 int count = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -0800244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 file_list_lock();
246 list_for_each(p, &tty->tty_files) {
247 count++;
248 }
249 file_list_unlock();
250 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
251 tty->driver->subtype == PTY_TYPE_SLAVE &&
252 tty->link && tty->link->count)
253 count++;
254 if (tty->count != count) {
255 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
256 "!= #fd's(%d) in %s\n",
257 tty->name, tty->count, count, routine);
258 return count;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#endif
261 return 0;
262}
263
Alan Coxaf9b8972006-08-27 01:24:01 -0700264/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700265 * get_tty_driver - find device of a tty
266 * @dev_t: device identifier
267 * @index: returns the index of the tty
268 *
269 * This routine returns a tty driver structure, given a device number
270 * and also passes back the index number.
271 *
272 * Locking: caller must hold tty_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275static struct tty_driver *get_tty_driver(dev_t device, int *index)
276{
277 struct tty_driver *p;
278
279 list_for_each_entry(p, &tty_drivers, tty_drivers) {
280 dev_t base = MKDEV(p->major, p->minor_start);
281 if (device < base || device >= base + p->num)
282 continue;
283 *index = device - base;
284 return p;
285 }
286 return NULL;
287}
288
Jason Wesself2d937f2008-04-17 20:05:37 +0200289#ifdef CONFIG_CONSOLE_POLL
290
291/**
292 * tty_find_polling_driver - find device of a polled tty
293 * @name: name string to match
294 * @line: pointer to resulting tty line nr
295 *
296 * This routine returns a tty driver structure, given a name
297 * and the condition that the tty driver is capable of polled
298 * operation.
299 */
300struct tty_driver *tty_find_polling_driver(char *name, int *line)
301{
302 struct tty_driver *p, *res = NULL;
303 int tty_line = 0;
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500304 int len;
Jason Wesself2d937f2008-04-17 20:05:37 +0200305 char *str;
306
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500307 for (str = name; *str; str++)
308 if ((*str >= '0' && *str <= '9') || *str == ',')
309 break;
310 if (!*str)
311 return NULL;
312
313 len = str - name;
314 tty_line = simple_strtoul(str, &str, 10);
315
Jason Wesself2d937f2008-04-17 20:05:37 +0200316 mutex_lock(&tty_mutex);
317 /* Search through the tty devices to look for a match */
318 list_for_each_entry(p, &tty_drivers, tty_drivers) {
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500319 if (strncmp(name, p->name, len) != 0)
320 continue;
Jason Wesself2d937f2008-04-17 20:05:37 +0200321 if (*str == ',')
322 str++;
323 if (*str == '\0')
Harvey Harrison8da56302008-04-28 14:13:20 -0700324 str = NULL;
Jason Wesself2d937f2008-04-17 20:05:37 +0200325
Alan Coxf34d7a52008-04-30 00:54:13 -0700326 if (tty_line >= 0 && tty_line <= p->num && p->ops &&
327 p->ops->poll_init && !p->ops->poll_init(p, tty_line, str)) {
Jason Wesself2d937f2008-04-17 20:05:37 +0200328 res = p;
329 *line = tty_line;
330 break;
331 }
332 }
333 mutex_unlock(&tty_mutex);
334
335 return res;
336}
337EXPORT_SYMBOL_GPL(tty_find_polling_driver);
338#endif
339
Alan Coxaf9b8972006-08-27 01:24:01 -0700340/**
341 * tty_check_change - check for POSIX terminal changes
342 * @tty: tty to check
343 *
344 * If we try to write to, or set the state of, a terminal and we're
345 * not in the foreground, send a SIGTTOU. If the signal is blocked or
346 * ignored, go ahead and perform the operation. (POSIX 7.2)
347 *
Alan Cox978e5952008-04-30 00:53:59 -0700348 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700350
Alan Cox37bdfb02008-02-08 04:18:47 -0800351int tty_check_change(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Alan Cox47f86832008-04-30 00:53:30 -0700353 unsigned long flags;
354 int ret = 0;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (current->signal->tty != tty)
357 return 0;
Alan Cox47f86832008-04-30 00:53:30 -0700358
359 spin_lock_irqsave(&tty->ctrl_lock, flags);
360
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800361 if (!tty->pgrp) {
362 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700363 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800365 if (task_pgrp(current) == tty->pgrp)
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700366 goto out_unlock;
367 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (is_ignored(SIGTTOU))
Alan Cox47f86832008-04-30 00:53:30 -0700369 goto out;
370 if (is_current_pgrp_orphaned()) {
371 ret = -EIO;
372 goto out;
373 }
Oleg Nesterov040b6362007-06-01 00:46:53 -0700374 kill_pgrp(task_pgrp(current), SIGTTOU, 1);
375 set_thread_flag(TIF_SIGPENDING);
Alan Cox47f86832008-04-30 00:53:30 -0700376 ret = -ERESTARTSYS;
377out:
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700378 return ret;
379out_unlock:
Alan Cox47f86832008-04-30 00:53:30 -0700380 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
381 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384EXPORT_SYMBOL(tty_check_change);
385
Alan Cox37bdfb02008-02-08 04:18:47 -0800386static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 size_t count, loff_t *ppos)
388{
389 return 0;
390}
391
Alan Cox37bdfb02008-02-08 04:18:47 -0800392static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 size_t count, loff_t *ppos)
394{
395 return -EIO;
396}
397
398/* No kernel lock held - none needed ;) */
Alan Cox37bdfb02008-02-08 04:18:47 -0800399static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
402}
403
Alan Cox04f378b2008-04-30 00:53:29 -0700404static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
405 unsigned long arg)
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700406{
407 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
408}
409
Alan Cox37bdfb02008-02-08 04:18:47 -0800410static long hung_up_tty_compat_ioctl(struct file *file,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700411 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
414}
415
Arjan van de Ven62322d22006-07-03 00:24:21 -0700416static const struct file_operations tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 .llseek = no_llseek,
418 .read = tty_read,
419 .write = tty_write,
420 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700421 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700422 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .open = tty_open,
424 .release = tty_release,
425 .fasync = tty_fasync,
426};
427
428#ifdef CONFIG_UNIX98_PTYS
Arjan van de Ven62322d22006-07-03 00:24:21 -0700429static const struct file_operations ptmx_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 .llseek = no_llseek,
431 .read = tty_read,
432 .write = tty_write,
433 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700434 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700435 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 .open = ptmx_open,
437 .release = tty_release,
438 .fasync = tty_fasync,
439};
440#endif
441
Arjan van de Ven62322d22006-07-03 00:24:21 -0700442static const struct file_operations console_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 .llseek = no_llseek,
444 .read = tty_read,
445 .write = redirected_tty_write,
446 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700447 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700448 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 .open = tty_open,
450 .release = tty_release,
451 .fasync = tty_fasync,
452};
453
Arjan van de Ven62322d22006-07-03 00:24:21 -0700454static const struct file_operations hung_up_tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .llseek = no_llseek,
456 .read = hung_up_tty_read,
457 .write = hung_up_tty_write,
458 .poll = hung_up_tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700459 .unlocked_ioctl = hung_up_tty_ioctl,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700460 .compat_ioctl = hung_up_tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 .release = tty_release,
462};
463
464static DEFINE_SPINLOCK(redirect_lock);
465static struct file *redirect;
466
467/**
468 * tty_wakeup - request more data
469 * @tty: terminal
470 *
471 * Internal and external helper for wakeups of tty. This function
472 * informs the line discipline if present that the driver is ready
473 * to receive more output data.
474 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476void tty_wakeup(struct tty_struct *tty)
477{
478 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -0800479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
481 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800482 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100483 if (ld->ops->write_wakeup)
484 ld->ops->write_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 tty_ldisc_deref(ld);
486 }
487 }
488 wake_up_interruptible(&tty->write_wait);
489}
490
491EXPORT_SYMBOL_GPL(tty_wakeup);
492
493/**
494 * tty_ldisc_flush - flush line discipline queue
495 * @tty: tty
496 *
497 * Flush the line discipline queue (if any) for this tty. If there
498 * is no line discipline active this is a no-op.
499 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501void tty_ldisc_flush(struct tty_struct *tty)
502{
503 struct tty_ldisc *ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800504 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100505 if (ld->ops->flush_buffer)
506 ld->ops->flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 tty_ldisc_deref(ld);
508 }
Paul Fulghumc5c34d42007-05-12 10:36:55 -0700509 tty_buffer_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512EXPORT_SYMBOL_GPL(tty_ldisc_flush);
Alan Coxedc6afc2006-12-08 02:38:44 -0800513
514/**
515 * tty_reset_termios - reset terminal state
516 * @tty: tty to reset
517 *
518 * Restore a terminal to the driver default state
519 */
520
521static void tty_reset_termios(struct tty_struct *tty)
522{
523 mutex_lock(&tty->termios_mutex);
524 *tty->termios = tty->driver->init_termios;
525 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
526 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
527 mutex_unlock(&tty->termios_mutex);
528}
Alan Cox37bdfb02008-02-08 04:18:47 -0800529
Alan Coxaf9b8972006-08-27 01:24:01 -0700530/**
531 * do_tty_hangup - actual handler for hangup events
David Howells65f27f32006-11-22 14:55:48 +0000532 * @work: tty device
Alan Coxaf9b8972006-08-27 01:24:01 -0700533 *
Alan Cox1bad8792008-07-22 23:38:04 +0100534 * This can be called by the "eventd" kernel thread. That is process
Alan Coxaf9b8972006-08-27 01:24:01 -0700535 * synchronous but doesn't hold any locks, so we need to make sure we
536 * have the appropriate locks for what we're doing.
537 *
538 * The hangup event clears any pending redirections onto the hung up
539 * device. It ensures future writes will error and it does the needed
540 * line discipline hangup and signal delivery. The tty object itself
541 * remains intact.
542 *
543 * Locking:
544 * BKL
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800545 * redirect lock for undoing redirection
546 * file list lock for manipulating list of ttys
547 * tty_ldisc_lock from called functions
548 * termios_mutex resetting termios data
549 * tasklist_lock to walk task list for hangup event
550 * ->siglock to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
David Howells65f27f32006-11-22 14:55:48 +0000552static void do_tty_hangup(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
David Howells65f27f32006-11-22 14:55:48 +0000554 struct tty_struct *tty =
555 container_of(work, struct tty_struct, hangup_work);
Alan Cox37bdfb02008-02-08 04:18:47 -0800556 struct file *cons_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct file *filp, *f = NULL;
558 struct task_struct *p;
559 struct tty_ldisc *ld;
560 int closecount = 0, n;
Alan Cox47f86832008-04-30 00:53:30 -0700561 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100562 int refs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 if (!tty)
565 return;
566
567 /* inuse_filps is protected by the single kernel lock */
568 lock_kernel();
569
570 spin_lock(&redirect_lock);
571 if (redirect && redirect->private_data == tty) {
572 f = redirect;
573 redirect = NULL;
574 }
575 spin_unlock(&redirect_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 check_tty_count(tty, "do_tty_hangup");
578 file_list_lock();
579 /* This breaks for file handles being sent over AF_UNIX sockets ? */
Eric Dumazet2f512012005-10-30 15:02:16 -0800580 list_for_each_entry(filp, &tty->tty_files, f_u.fu_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (filp->f_op->write == redirected_tty_write)
582 cons_filp = filp;
583 if (filp->f_op->write != tty_write)
584 continue;
585 closecount++;
586 tty_fasync(-1, filp, 0); /* can't block */
587 filp->f_op = &hung_up_tty_fops;
588 }
589 file_list_unlock();
Alan Cox37bdfb02008-02-08 04:18:47 -0800590 /*
591 * FIXME! What are the locking issues here? This may me overdoing
592 * things... This question is especially important now that we've
593 * removed the irqlock.
594 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800596 if (ld != NULL) {
597 /* We may have no line discipline at this point */
Alan Coxa352def2008-07-16 21:53:12 +0100598 if (ld->ops->flush_buffer)
599 ld->ops->flush_buffer(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -0700600 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
Alan Coxa352def2008-07-16 21:53:12 +0100602 ld->ops->write_wakeup)
603 ld->ops->write_wakeup(tty);
604 if (ld->ops->hangup)
605 ld->ops->hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Alan Cox37bdfb02008-02-08 04:18:47 -0800607 /*
608 * FIXME: Once we trust the LDISC code better we can wait here for
609 * ldisc completion and fix the driver call race
610 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 wake_up_interruptible(&tty->write_wait);
612 wake_up_interruptible(&tty->read_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /*
614 * Shutdown the current line discipline, and reset it to
615 * N_TTY.
616 */
617 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
Alan Coxedc6afc2006-12-08 02:38:44 -0800618 tty_reset_termios(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* Defer ldisc switch */
620 /* tty_deferred_ldisc_switch(N_TTY);
Alan Cox37bdfb02008-02-08 04:18:47 -0800621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 This should get done automatically when the port closes and
623 tty_release is called */
Alan Cox37bdfb02008-02-08 04:18:47 -0800624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800626 if (tty->session) {
627 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800628 spin_lock_irq(&p->sighand->siglock);
Alan Cox9c9f4de2008-10-13 10:37:26 +0100629 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 p->signal->tty = NULL;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100631 /* We defer the dereferences outside fo
632 the tasklist lock */
633 refs++;
634 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800635 if (!p->signal->leader) {
636 spin_unlock_irq(&p->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 continue;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800638 }
639 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
640 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800641 put_pid(p->signal->tty_old_pgrp); /* A noop */
Alan Cox47f86832008-04-30 00:53:30 -0700642 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800643 if (tty->pgrp)
644 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -0700645 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800646 spin_unlock_irq(&p->sighand->siglock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800647 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649 read_unlock(&tasklist_lock);
650
Alan Cox47f86832008-04-30 00:53:30 -0700651 spin_lock_irqsave(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 tty->flags = 0;
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -0600653 put_pid(tty->session);
654 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800655 tty->session = NULL;
656 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 tty->ctrl_status = 0;
Alan Cox47f86832008-04-30 00:53:30 -0700658 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
659
Alan Cox9c9f4de2008-10-13 10:37:26 +0100660 /* Account for the p->signal references we killed */
661 while (refs--)
662 tty_kref_put(tty);
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /*
Alan Cox37bdfb02008-02-08 04:18:47 -0800665 * If one of the devices matches a console pointer, we
666 * cannot just call hangup() because that will cause
667 * tty->count and state->count to go out of sync.
668 * So we just call close() the right number of times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 */
670 if (cons_filp) {
Alan Coxf34d7a52008-04-30 00:54:13 -0700671 if (tty->ops->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 for (n = 0; n < closecount; n++)
Alan Coxf34d7a52008-04-30 00:54:13 -0700673 tty->ops->close(tty, cons_filp);
674 } else if (tty->ops->hangup)
675 (tty->ops->hangup)(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800676 /*
677 * We don't want to have driver/ldisc interactions beyond
678 * the ones we did here. The driver layer expects no
679 * calls after ->hangup() from the ldisc side. However we
680 * can't yet guarantee all that.
681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 set_bit(TTY_HUPPED, &tty->flags);
683 if (ld) {
684 tty_ldisc_enable(tty);
685 tty_ldisc_deref(ld);
686 }
687 unlock_kernel();
688 if (f)
689 fput(f);
690}
691
Alan Coxaf9b8972006-08-27 01:24:01 -0700692/**
693 * tty_hangup - trigger a hangup event
694 * @tty: tty to hangup
695 *
696 * A carrier loss (virtual or otherwise) has occurred on this like
697 * schedule a hangup sequence to run after this event.
698 */
699
Alan Cox37bdfb02008-02-08 04:18:47 -0800700void tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702#ifdef TTY_DEBUG_HANGUP
703 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
705#endif
706 schedule_work(&tty->hangup_work);
707}
708
709EXPORT_SYMBOL(tty_hangup);
710
Alan Coxaf9b8972006-08-27 01:24:01 -0700711/**
712 * tty_vhangup - process vhangup
713 * @tty: tty to hangup
714 *
715 * The user has asked via system call for the terminal to be hung up.
716 * We do this synchronously so that when the syscall returns the process
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200717 * is complete. That guarantee is necessary for security reasons.
Alan Coxaf9b8972006-08-27 01:24:01 -0700718 */
719
Alan Cox37bdfb02008-02-08 04:18:47 -0800720void tty_vhangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722#ifdef TTY_DEBUG_HANGUP
723 char buf[64];
724
725 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
726#endif
David Howells65f27f32006-11-22 14:55:48 +0000727 do_tty_hangup(&tty->hangup_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
Alan Cox37bdfb02008-02-08 04:18:47 -0800729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730EXPORT_SYMBOL(tty_vhangup);
731
Alan Coxaf9b8972006-08-27 01:24:01 -0700732/**
733 * tty_hung_up_p - was tty hung up
734 * @filp: file pointer of tty
735 *
736 * Return true if the tty has been subject to a vhangup or a carrier
737 * loss
738 */
739
Alan Cox37bdfb02008-02-08 04:18:47 -0800740int tty_hung_up_p(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 return (filp->f_op == &hung_up_tty_fops);
743}
744
745EXPORT_SYMBOL(tty_hung_up_p);
746
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800747static void session_clear_tty(struct pid *session)
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800748{
749 struct task_struct *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800750 do_each_pid_task(session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800751 proc_clear_tty(p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800752 } while_each_pid_task(session, PIDTYPE_SID, p);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800753}
754
Alan Coxaf9b8972006-08-27 01:24:01 -0700755/**
756 * disassociate_ctty - disconnect controlling tty
757 * @on_exit: true if exiting so need to "hang up" the session
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700759 * This function is typically called only by the session leader, when
760 * it wants to disassociate itself from its controlling tty.
761 *
762 * It performs the following functions:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
764 * (2) Clears the tty from being controlling the session
765 * (3) Clears the controlling tty for all processes in the
766 * session group.
767 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700768 * The argument on_exit is set to 1 if called when a process is
769 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
770 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800771 * Locking:
Alan Coxaf9b8972006-08-27 01:24:01 -0700772 * BKL is taken for hysterical raisins
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800773 * tty_mutex is taken to protect tty
774 * ->siglock is taken to protect ->signal/->sighand
775 * tasklist_lock is taken to walk process list for sessions
776 * ->siglock is taken to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779void disassociate_ctty(int on_exit)
780{
781 struct tty_struct *tty;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800782 struct pid *tty_pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Ingo Molnar70522e12006-03-23 03:00:31 -0800785 mutex_lock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800786 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800788 tty_pgrp = get_pid(tty->pgrp);
Alan Cox04f378b2008-04-30 00:53:29 -0700789 lock_kernel();
Christian Borntraeger000b9152008-08-11 09:02:49 +0100790 mutex_unlock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800791 /* XXX: here we race, there is nothing protecting tty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY)
793 tty_vhangup(tty);
Alan Cox04f378b2008-04-30 00:53:29 -0700794 unlock_kernel();
Eric W. Biederman680a9672007-02-12 00:52:52 -0800795 } else if (on_exit) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800796 struct pid *old_pgrp;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800797 spin_lock_irq(&current->sighand->siglock);
798 old_pgrp = current->signal->tty_old_pgrp;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800799 current->signal->tty_old_pgrp = NULL;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800800 spin_unlock_irq(&current->sighand->siglock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800801 if (old_pgrp) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800802 kill_pgrp(old_pgrp, SIGHUP, on_exit);
803 kill_pgrp(old_pgrp, SIGCONT, on_exit);
804 put_pid(old_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Ingo Molnar70522e12006-03-23 03:00:31 -0800806 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return;
808 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800809 if (tty_pgrp) {
810 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!on_exit)
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800812 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
813 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800816 spin_lock_irq(&current->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700817 put_pid(current->signal->tty_old_pgrp);
Randy Dunlap23cac8d2007-02-20 13:58:05 -0800818 current->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800819 spin_unlock_irq(&current->sighand->siglock);
820
821 mutex_lock(&tty_mutex);
822 /* It is possible that do_tty_hangup has free'd this tty */
823 tty = get_current_tty();
824 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -0700825 unsigned long flags;
826 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800827 put_pid(tty->session);
828 put_pid(tty->pgrp);
829 tty->session = NULL;
830 tty->pgrp = NULL;
Alan Cox47f86832008-04-30 00:53:30 -0700831 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800832 } else {
833#ifdef TTY_DEBUG_HANGUP
834 printk(KERN_DEBUG "error attempted to write to tty [0x%p]"
835 " = NULL", tty);
836#endif
837 }
838 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /* Now clear signal->tty under the lock */
841 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800842 session_clear_tty(task_session(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700846/**
847 *
848 * no_tty - Ensure the current process does not have a controlling tty
849 */
850void no_tty(void)
851{
852 struct task_struct *tsk = current;
Alan Cox04f378b2008-04-30 00:53:29 -0700853 lock_kernel();
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700854 if (tsk->signal->leader)
855 disassociate_ctty(0);
Alan Cox04f378b2008-04-30 00:53:29 -0700856 unlock_kernel();
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700857 proc_clear_tty(tsk);
858}
859
Alan Coxaf9b8972006-08-27 01:24:01 -0700860
861/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200862 * stop_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700863 * @tty: tty to stop
864 *
865 * Perform flow control to the driver. For PTY/TTY pairs we
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200866 * must also propagate the TIOCKPKT status. May be called
Alan Coxaf9b8972006-08-27 01:24:01 -0700867 * on an already stopped device and will not re-call the driver
868 * method.
869 *
870 * This functionality is used by both the line disciplines for
871 * halting incoming flow and by the driver. It may therefore be
872 * called from any context, may be under the tty atomic_write_lock
873 * but not always.
874 *
875 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700876 * Uses the tty control lock internally
Alan Coxaf9b8972006-08-27 01:24:01 -0700877 */
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879void stop_tty(struct tty_struct *tty)
880{
Alan Cox04f378b2008-04-30 00:53:29 -0700881 unsigned long flags;
882 spin_lock_irqsave(&tty->ctrl_lock, flags);
883 if (tty->stopped) {
884 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 tty->stopped = 1;
888 if (tty->link && tty->link->packet) {
889 tty->ctrl_status &= ~TIOCPKT_START;
890 tty->ctrl_status |= TIOCPKT_STOP;
891 wake_up_interruptible(&tty->link->read_wait);
892 }
Alan Cox04f378b2008-04-30 00:53:29 -0700893 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700894 if (tty->ops->stop)
895 (tty->ops->stop)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898EXPORT_SYMBOL(stop_tty);
899
Alan Coxaf9b8972006-08-27 01:24:01 -0700900/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200901 * start_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700902 * @tty: tty to start
903 *
904 * Start a tty that has been stopped if at all possible. Perform
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200905 * any necessary wakeups and propagate the TIOCPKT status. If this
Alan Coxaf9b8972006-08-27 01:24:01 -0700906 * is the tty was previous stopped and is being started then the
907 * driver start method is invoked and the line discipline woken.
908 *
909 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700910 * ctrl_lock
Alan Coxaf9b8972006-08-27 01:24:01 -0700911 */
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913void start_tty(struct tty_struct *tty)
914{
Alan Cox04f378b2008-04-30 00:53:29 -0700915 unsigned long flags;
916 spin_lock_irqsave(&tty->ctrl_lock, flags);
917 if (!tty->stopped || tty->flow_stopped) {
918 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 tty->stopped = 0;
922 if (tty->link && tty->link->packet) {
923 tty->ctrl_status &= ~TIOCPKT_STOP;
924 tty->ctrl_status |= TIOCPKT_START;
925 wake_up_interruptible(&tty->link->read_wait);
926 }
Alan Cox04f378b2008-04-30 00:53:29 -0700927 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700928 if (tty->ops->start)
929 (tty->ops->start)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 /* If we have a running line discipline it may need kicking */
931 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934EXPORT_SYMBOL(start_tty);
935
Alan Coxaf9b8972006-08-27 01:24:01 -0700936/**
937 * tty_read - read method for tty device files
938 * @file: pointer to tty file
939 * @buf: user buffer
940 * @count: size of user buffer
941 * @ppos: unused
942 *
943 * Perform the read system call function on this terminal device. Checks
944 * for hung up devices before calling the line discipline method.
945 *
946 * Locking:
Alan Cox47f86832008-04-30 00:53:30 -0700947 * Locks the line discipline internally while needed. Multiple
948 * read calls may be outstanding in parallel.
Alan Coxaf9b8972006-08-27 01:24:01 -0700949 */
950
Alan Cox37bdfb02008-02-08 04:18:47 -0800951static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 loff_t *ppos)
953{
954 int i;
Alan Cox37bdfb02008-02-08 04:18:47 -0800955 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 struct inode *inode;
957 struct tty_ldisc *ld;
958
959 tty = (struct tty_struct *)file->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -0800960 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (tty_paranoia_check(tty, inode, "tty_read"))
962 return -EIO;
963 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
964 return -EIO;
965
966 /* We want to wait for the line discipline to sort out in this
967 situation */
968 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +0100969 if (ld->ops->read)
970 i = (ld->ops->read)(tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 else
972 i = -EIO;
973 tty_ldisc_deref(ld);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (i > 0)
975 inode->i_atime = current_fs_time(inode->i_sb);
976 return i;
977}
978
Alan Cox9c1729d2007-07-15 23:39:43 -0700979void tty_write_unlock(struct tty_struct *tty)
980{
981 mutex_unlock(&tty->atomic_write_lock);
982 wake_up_interruptible(&tty->write_wait);
983}
984
985int tty_write_lock(struct tty_struct *tty, int ndelay)
986{
987 if (!mutex_trylock(&tty->atomic_write_lock)) {
988 if (ndelay)
989 return -EAGAIN;
990 if (mutex_lock_interruptible(&tty->atomic_write_lock))
991 return -ERESTARTSYS;
992 }
993 return 0;
994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
997 * Split writes up in sane blocksizes to avoid
998 * denial-of-service type attacks
999 */
1000static inline ssize_t do_tty_write(
1001 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
1002 struct tty_struct *tty,
1003 struct file *file,
1004 const char __user *buf,
1005 size_t count)
1006{
Alan Cox9c1729d2007-07-15 23:39:43 -07001007 ssize_t ret, written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 unsigned int chunk;
Alan Cox37bdfb02008-02-08 04:18:47 -08001009
Alan Cox9c1729d2007-07-15 23:39:43 -07001010 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
1011 if (ret < 0)
1012 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /*
1015 * We chunk up writes into a temporary buffer. This
1016 * simplifies low-level drivers immensely, since they
1017 * don't have locking issues and user mode accesses.
1018 *
1019 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1020 * big chunk-size..
1021 *
1022 * The default chunk-size is 2kB, because the NTTY
1023 * layer has problems with bigger chunks. It will
1024 * claim to be able to handle more characters than
1025 * it actually does.
Alan Coxaf9b8972006-08-27 01:24:01 -07001026 *
1027 * FIXME: This can probably go away now except that 64K chunks
1028 * are too likely to fail unless switched to vmalloc...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
1030 chunk = 2048;
1031 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1032 chunk = 65536;
1033 if (count < chunk)
1034 chunk = count;
1035
Ingo Molnar70522e12006-03-23 03:00:31 -08001036 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (tty->write_cnt < chunk) {
1038 unsigned char *buf;
1039
1040 if (chunk < 1024)
1041 chunk = 1024;
1042
1043 buf = kmalloc(chunk, GFP_KERNEL);
1044 if (!buf) {
Alan Cox9c1729d2007-07-15 23:39:43 -07001045 ret = -ENOMEM;
1046 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048 kfree(tty->write_buf);
1049 tty->write_cnt = chunk;
1050 tty->write_buf = buf;
1051 }
1052
1053 /* Do the write .. */
1054 for (;;) {
1055 size_t size = count;
1056 if (size > chunk)
1057 size = chunk;
1058 ret = -EFAULT;
1059 if (copy_from_user(tty->write_buf, buf, size))
1060 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 ret = write(tty, file, tty->write_buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (ret <= 0)
1063 break;
1064 written += ret;
1065 buf += ret;
1066 count -= ret;
1067 if (!count)
1068 break;
1069 ret = -ERESTARTSYS;
1070 if (signal_pending(current))
1071 break;
1072 cond_resched();
1073 }
1074 if (written) {
Josef Sipeka7113a92006-12-08 02:36:55 -08001075 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 inode->i_mtime = current_fs_time(inode->i_sb);
1077 ret = written;
1078 }
Alan Cox9c1729d2007-07-15 23:39:43 -07001079out:
1080 tty_write_unlock(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return ret;
1082}
1083
1084
Alan Coxaf9b8972006-08-27 01:24:01 -07001085/**
1086 * tty_write - write method for tty device file
1087 * @file: tty file pointer
1088 * @buf: user data to write
1089 * @count: bytes to write
1090 * @ppos: unused
1091 *
1092 * Write data to a tty device via the line discipline.
1093 *
1094 * Locking:
1095 * Locks the line discipline as required
1096 * Writes to the tty driver are serialized by the atomic_write_lock
1097 * and are then processed in chunks to the device. The line discipline
1098 * write method will not be involked in parallel for each device
1099 * The line discipline write method is called under the big
1100 * kernel lock for historical reasons. New code should not rely on this.
1101 */
1102
Alan Cox37bdfb02008-02-08 04:18:47 -08001103static ssize_t tty_write(struct file *file, const char __user *buf,
1104 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Alan Cox37bdfb02008-02-08 04:18:47 -08001106 struct tty_struct *tty;
Josef Sipeka7113a92006-12-08 02:36:55 -08001107 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 ssize_t ret;
1109 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 tty = (struct tty_struct *)file->private_data;
1112 if (tty_paranoia_check(tty, inode, "tty_write"))
1113 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001114 if (!tty || !tty->ops->write ||
Alan Cox37bdfb02008-02-08 04:18:47 -08001115 (test_bit(TTY_IO_ERROR, &tty->flags)))
1116 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001117 /* Short term debug to catch buggy drivers */
1118 if (tty->ops->write_room == NULL)
1119 printk(KERN_ERR "tty driver %s lacks a write_room method.\n",
1120 tty->driver->name);
Alan Cox37bdfb02008-02-08 04:18:47 -08001121 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001122 if (!ld->ops->write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 ret = -EIO;
1124 else
Alan Coxa352def2008-07-16 21:53:12 +01001125 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 tty_ldisc_deref(ld);
1127 return ret;
1128}
1129
Alan Cox37bdfb02008-02-08 04:18:47 -08001130ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1131 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 struct file *p = NULL;
1134
1135 spin_lock(&redirect_lock);
1136 if (redirect) {
1137 get_file(redirect);
1138 p = redirect;
1139 }
1140 spin_unlock(&redirect_lock);
1141
1142 if (p) {
1143 ssize_t res;
1144 res = vfs_write(p, buf, count, &p->f_pos);
1145 fput(p);
1146 return res;
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return tty_write(file, buf, count, ppos);
1149}
1150
1151static char ptychar[] = "pqrstuvwxyzabcde";
1152
Alan Coxaf9b8972006-08-27 01:24:01 -07001153/**
1154 * pty_line_name - generate name for a pty
1155 * @driver: the tty driver in use
1156 * @index: the minor number
1157 * @p: output buffer of at least 6 bytes
1158 *
1159 * Generate a name from a driver reference and write it to the output
1160 * buffer.
1161 *
1162 * Locking: None
1163 */
1164static void pty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 int i = index + driver->name_base;
1167 /* ->name is initialized to "ttyp", but "tty" is expected */
1168 sprintf(p, "%s%c%x",
Alan Cox37bdfb02008-02-08 04:18:47 -08001169 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1170 ptychar[i >> 4 & 0xf], i & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
Alan Coxaf9b8972006-08-27 01:24:01 -07001173/**
1174 * pty_line_name - generate name for a tty
1175 * @driver: the tty driver in use
1176 * @index: the minor number
1177 * @p: output buffer of at least 7 bytes
1178 *
1179 * Generate a name from a driver reference and write it to the output
1180 * buffer.
1181 *
1182 * Locking: None
1183 */
1184static void tty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
1186 sprintf(p, "%s%d", driver->name, index + driver->name_base);
1187}
1188
Alan Coxaf9b8972006-08-27 01:24:01 -07001189/**
1190 * init_dev - initialise a tty device
1191 * @driver: tty driver we are opening a device on
1192 * @idx: device index
1193 * @tty: returned tty structure
1194 *
1195 * Prepare a tty device. This may not be a "new" clean device but
1196 * could also be an active device. The pty drivers require special
1197 * handling because of this.
1198 *
1199 * Locking:
1200 * The function is called under the tty_mutex, which
1201 * protects us from the tty struct or driver itself going away.
1202 *
1203 * On exit the tty device has the line discipline attached and
1204 * a reference count of 1. If a pair was created for pty/tty use
1205 * and the other was a pty master then it too has a reference count of 1.
1206 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
Ingo Molnar70522e12006-03-23 03:00:31 -08001208 * failed open. The new code protects the open with a mutex, so it's
1209 * really quite straightforward. The mutex locking can probably be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 * relaxed for the (most common) case of reopening a tty.
1211 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213static int init_dev(struct tty_driver *driver, int idx,
1214 struct tty_struct **ret_tty)
1215{
1216 struct tty_struct *tty, *o_tty;
Alan Coxedc6afc2006-12-08 02:38:44 -08001217 struct ktermios *tp, **tp_loc, *o_tp, **o_tp_loc;
1218 struct ktermios *ltp, **ltp_loc, *o_ltp, **o_ltp_loc;
Alan Coxaf9b8972006-08-27 01:24:01 -07001219 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /* check whether we're reopening an existing tty */
1222 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1223 tty = devpts_get_tty(idx);
Aristeu Sergio Rozanski Filho5a39e8c2007-02-28 20:13:53 -08001224 /*
1225 * If we don't have a tty here on a slave open, it's because
1226 * the master already started the close process and there's
1227 * no relation between devpts file and tty anymore.
1228 */
1229 if (!tty && driver->subtype == PTY_TYPE_SLAVE) {
1230 retval = -EIO;
1231 goto end_init;
1232 }
1233 /*
1234 * It's safe from now on because init_dev() is called with
1235 * tty_mutex held and release_dev() won't change tty->count
1236 * or tty->flags without having to grab tty_mutex
1237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (tty && driver->subtype == PTY_TYPE_MASTER)
1239 tty = tty->link;
1240 } else {
1241 tty = driver->ttys[idx];
1242 }
1243 if (tty) goto fast_track;
1244
1245 /*
1246 * First time open is complex, especially for PTY devices.
1247 * This code guarantees that either everything succeeds and the
1248 * TTY is ready for operation, or else the table slots are vacated
Alan Cox37bdfb02008-02-08 04:18:47 -08001249 * and the allocated memory released. (Except that the termios
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 * and locked termios may be retained.)
1251 */
1252
1253 if (!try_module_get(driver->owner)) {
1254 retval = -ENODEV;
1255 goto end_init;
1256 }
1257
1258 o_tty = NULL;
1259 tp = o_tp = NULL;
1260 ltp = o_ltp = NULL;
1261
1262 tty = alloc_tty_struct();
Alan Cox37bdfb02008-02-08 04:18:47 -08001263 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 goto fail_no_mem;
1265 initialize_tty_struct(tty);
1266 tty->driver = driver;
Alan Coxf34d7a52008-04-30 00:54:13 -07001267 tty->ops = driver->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 tty->index = idx;
1269 tty_line_name(driver, idx, tty->name);
1270
1271 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1272 tp_loc = &tty->termios;
1273 ltp_loc = &tty->termios_locked;
1274 } else {
1275 tp_loc = &driver->termios[idx];
1276 ltp_loc = &driver->termios_locked[idx];
1277 }
1278
1279 if (!*tp_loc) {
Jesper Juhlabcb1ff32007-08-24 02:28:42 +02001280 tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (!tp)
1282 goto free_mem_out;
1283 *tp = driver->init_termios;
1284 }
1285
1286 if (!*ltp_loc) {
Jean Delvare506eb992007-07-15 23:40:14 -07001287 ltp = kzalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!ltp)
1289 goto free_mem_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
1291
1292 if (driver->type == TTY_DRIVER_TYPE_PTY) {
1293 o_tty = alloc_tty_struct();
1294 if (!o_tty)
1295 goto free_mem_out;
Alan Cox6f967f72008-10-13 10:37:36 +01001296 if (!try_module_get(driver->other->owner)) {
1297 /* This cannot in fact currently happen */
1298 free_tty_struct(o_tty);
1299 o_tty = NULL;
1300 goto free_mem_out;
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 initialize_tty_struct(o_tty);
1303 o_tty->driver = driver->other;
Alan Coxf34d7a52008-04-30 00:54:13 -07001304 o_tty->ops = driver->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 o_tty->index = idx;
1306 tty_line_name(driver->other, idx, o_tty->name);
1307
1308 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1309 o_tp_loc = &o_tty->termios;
1310 o_ltp_loc = &o_tty->termios_locked;
1311 } else {
1312 o_tp_loc = &driver->other->termios[idx];
1313 o_ltp_loc = &driver->other->termios_locked[idx];
1314 }
1315
1316 if (!*o_tp_loc) {
Jesper Juhlabcb1ff32007-08-24 02:28:42 +02001317 o_tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (!o_tp)
1319 goto free_mem_out;
1320 *o_tp = driver->other->init_termios;
1321 }
1322
1323 if (!*o_ltp_loc) {
Jean Delvare506eb992007-07-15 23:40:14 -07001324 o_ltp = kzalloc(sizeof(struct ktermios), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (!o_ltp)
1326 goto free_mem_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
1329 /*
1330 * Everything allocated ... set up the o_tty structure.
1331 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001332 if (!(driver->other->flags & TTY_DRIVER_DEVPTS_MEM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 driver->other->ttys[idx] = o_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 if (!*o_tp_loc)
1335 *o_tp_loc = o_tp;
1336 if (!*o_ltp_loc)
1337 *o_ltp_loc = o_ltp;
1338 o_tty->termios = *o_tp_loc;
1339 o_tty->termios_locked = *o_ltp_loc;
1340 driver->other->refcount++;
1341 if (driver->subtype == PTY_TYPE_MASTER)
1342 o_tty->count++;
1343
1344 /* Establish the links in both directions */
1345 tty->link = o_tty;
1346 o_tty->link = tty;
1347 }
1348
Alan Cox37bdfb02008-02-08 04:18:47 -08001349 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 * All structures have been allocated, so now we install them.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001351 * Failures after this point use release_tty to clean up, so
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 * there's no need to null out the local pointers.
1353 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001354 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 driver->ttys[idx] = tty;
Alan Cox37bdfb02008-02-08 04:18:47 -08001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (!*tp_loc)
1358 *tp_loc = tp;
1359 if (!*ltp_loc)
1360 *ltp_loc = ltp;
1361 tty->termios = *tp_loc;
1362 tty->termios_locked = *ltp_loc;
Alan Coxedc6afc2006-12-08 02:38:44 -08001363 /* Compatibility until drivers always set this */
1364 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
1365 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 driver->refcount++;
1367 tty->count++;
1368
Alan Cox37bdfb02008-02-08 04:18:47 -08001369 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 * Structures all installed ... call the ldisc open routines.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001371 * If we fail here just call release_tty to clean up. No need
1372 * to decrement the use counts, as release_tty doesn't care.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 */
1374
Alan Cox01e1abb2008-07-22 11:16:55 +01001375 retval = tty_ldisc_setup(tty, o_tty);
1376
1377 if (retval)
1378 goto release_mem_out;
1379 goto success;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
1382 * This fast open can be used if the tty is already open.
1383 * No memory is allocated, and the only failures are from
1384 * attempting to open a closing tty or attempting multiple
1385 * opens on a pty master.
1386 */
1387fast_track:
1388 if (test_bit(TTY_CLOSING, &tty->flags)) {
1389 retval = -EIO;
1390 goto end_init;
1391 }
1392 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1393 driver->subtype == PTY_TYPE_MASTER) {
1394 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001395 * special case for PTY masters: only one open permitted,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 * and the slave side open count is incremented as well.
1397 */
1398 if (tty->count) {
1399 retval = -EIO;
1400 goto end_init;
1401 }
1402 tty->link->count++;
1403 }
1404 tty->count++;
1405 tty->driver = driver; /* N.B. why do this every time?? */
1406
1407 /* FIXME */
Alan Cox37bdfb02008-02-08 04:18:47 -08001408 if (!test_bit(TTY_LDISC, &tty->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 printk(KERN_ERR "init_dev but no ldisc\n");
1410success:
1411 *ret_tty = tty;
Alan Cox37bdfb02008-02-08 04:18:47 -08001412
Ingo Molnar70522e12006-03-23 03:00:31 -08001413 /* All paths come through here to release the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414end_init:
1415 return retval;
1416
1417 /* Release locally allocated memory ... nothing placed in slots */
1418free_mem_out:
Jesper Juhl735d5662005-11-07 01:01:29 -08001419 kfree(o_tp);
Alan Cox6f967f72008-10-13 10:37:36 +01001420 if (o_tty) {
1421 module_put(o_tty->driver->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 free_tty_struct(o_tty);
Alan Cox6f967f72008-10-13 10:37:36 +01001423 }
Jesper Juhl735d5662005-11-07 01:01:29 -08001424 kfree(ltp);
1425 kfree(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 free_tty_struct(tty);
1427
1428fail_no_mem:
1429 module_put(driver->owner);
1430 retval = -ENOMEM;
1431 goto end_init;
1432
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001433 /* call the tty release_tty routine to clean out this slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434release_mem_out:
Akinobu Mita40509142006-09-29 02:01:27 -07001435 if (printk_ratelimit())
1436 printk(KERN_INFO "init_dev: ldisc open failed, "
1437 "clearing slot %d\n", idx);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001438 release_tty(tty, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto end_init;
1440}
1441
Alan Coxaf9b8972006-08-27 01:24:01 -07001442/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001443 * release_one_tty - release tty structure memory
Alan Cox9c9f4de2008-10-13 10:37:26 +01001444 * @kref: kref of tty we are obliterating
Alan Coxaf9b8972006-08-27 01:24:01 -07001445 *
1446 * Releases memory associated with a tty structure, and clears out the
1447 * driver table slots. This function is called when a device is no longer
1448 * in use. It also gets called when setup of a device fails.
1449 *
1450 * Locking:
1451 * tty_mutex - sometimes only
1452 * takes the file list lock internally when working on the list
1453 * of ttys that the driver keeps.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 */
Alan Cox9c9f4de2008-10-13 10:37:26 +01001455static void release_one_tty(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Alan Cox9c9f4de2008-10-13 10:37:26 +01001457 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
Alan Cox6f967f72008-10-13 10:37:36 +01001458 struct tty_driver *driver = tty->driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 int devpts = tty->driver->flags & TTY_DRIVER_DEVPTS_MEM;
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001460 struct ktermios *tp;
Alan Cox9c9f4de2008-10-13 10:37:26 +01001461 int idx = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 if (!devpts)
1464 tty->driver->ttys[idx] = NULL;
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
Alan Cox9c9f4de2008-10-13 10:37:26 +01001467 /* FIXME: Locking on ->termios array */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 tp = tty->termios;
1469 if (!devpts)
1470 tty->driver->termios[idx] = NULL;
1471 kfree(tp);
1472
1473 tp = tty->termios_locked;
1474 if (!devpts)
1475 tty->driver->termios_locked[idx] = NULL;
1476 kfree(tp);
1477 }
1478
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 tty->magic = 0;
Alan Cox9c9f4de2008-10-13 10:37:26 +01001481 /* FIXME: locking on tty->driver->refcount */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 tty->driver->refcount--;
Alan Cox6f967f72008-10-13 10:37:36 +01001483 module_put(driver->owner);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 file_list_lock();
1486 list_del_init(&tty->tty_files);
1487 file_list_unlock();
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 free_tty_struct(tty);
1490}
1491
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001492/**
Alan Cox9c9f4de2008-10-13 10:37:26 +01001493 * tty_kref_put - release a tty kref
1494 * @tty: tty device
1495 *
1496 * Release a reference to a tty device and if need be let the kref
1497 * layer destruct the object for us
1498 */
1499
1500void tty_kref_put(struct tty_struct *tty)
1501{
1502 if (tty)
1503 kref_put(&tty->kref, release_one_tty);
1504}
1505EXPORT_SYMBOL(tty_kref_put);
1506
1507/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001508 * release_tty - release tty structure memory
1509 *
1510 * Release both @tty and a possible linked partner (think pty pair),
1511 * and decrement the refcount of the backing module.
1512 *
1513 * Locking:
1514 * tty_mutex - sometimes only
1515 * takes the file list lock internally when working on the list
1516 * of ttys that the driver keeps.
1517 * FIXME: should we require tty_mutex is held here ??
Alan Cox9c9f4de2008-10-13 10:37:26 +01001518 *
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001519 */
1520static void release_tty(struct tty_struct *tty, int idx)
1521{
Alan Cox9c9f4de2008-10-13 10:37:26 +01001522 /* This should always be true but check for the moment */
1523 WARN_ON(tty->index != idx);
1524
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001525 if (tty->link)
Alan Cox9c9f4de2008-10-13 10:37:26 +01001526 tty_kref_put(tty->link);
1527 tty_kref_put(tty);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001528}
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530/*
1531 * Even releasing the tty structures is a tricky business.. We have
1532 * to be very careful that the structures are all released at the
1533 * same time, as interrupts might otherwise get the wrong pointers.
1534 *
1535 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1536 * lead to double frees or releasing memory still in use.
1537 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001538static void release_dev(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct tty_struct *tty, *o_tty;
1541 int pty_master, tty_closing, o_tty_closing, do_sleep;
Paul Fulghum14a62832006-04-10 22:54:19 -07001542 int devpts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 int idx;
1544 char buf[64];
Alan Cox37bdfb02008-02-08 04:18:47 -08001545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 tty = (struct tty_struct *)filp->private_data;
Alan Cox37bdfb02008-02-08 04:18:47 -08001547 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode,
1548 "release_dev"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return;
1550
1551 check_tty_count(tty, "release_dev");
1552
1553 tty_fasync(-1, filp, 0);
1554
1555 idx = tty->index;
1556 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1557 tty->driver->subtype == PTY_TYPE_MASTER);
1558 devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 o_tty = tty->link;
1560
1561#ifdef TTY_PARANOIA_CHECK
1562 if (idx < 0 || idx >= tty->driver->num) {
1563 printk(KERN_DEBUG "release_dev: bad idx when trying to "
1564 "free (%s)\n", tty->name);
1565 return;
1566 }
1567 if (!(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1568 if (tty != tty->driver->ttys[idx]) {
1569 printk(KERN_DEBUG "release_dev: driver.table[%d] not tty "
1570 "for (%s)\n", idx, tty->name);
1571 return;
1572 }
1573 if (tty->termios != tty->driver->termios[idx]) {
1574 printk(KERN_DEBUG "release_dev: driver.termios[%d] not termios "
1575 "for (%s)\n",
1576 idx, tty->name);
1577 return;
1578 }
1579 if (tty->termios_locked != tty->driver->termios_locked[idx]) {
1580 printk(KERN_DEBUG "release_dev: driver.termios_locked[%d] not "
1581 "termios_locked for (%s)\n",
1582 idx, tty->name);
1583 return;
1584 }
1585 }
1586#endif
1587
1588#ifdef TTY_DEBUG_HANGUP
1589 printk(KERN_DEBUG "release_dev of %s (tty count=%d)...",
1590 tty_name(tty, buf), tty->count);
1591#endif
1592
1593#ifdef TTY_PARANOIA_CHECK
1594 if (tty->driver->other &&
1595 !(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1596 if (o_tty != tty->driver->other->ttys[idx]) {
1597 printk(KERN_DEBUG "release_dev: other->table[%d] "
1598 "not o_tty for (%s)\n",
1599 idx, tty->name);
1600 return;
1601 }
1602 if (o_tty->termios != tty->driver->other->termios[idx]) {
1603 printk(KERN_DEBUG "release_dev: other->termios[%d] "
1604 "not o_termios for (%s)\n",
1605 idx, tty->name);
1606 return;
1607 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001608 if (o_tty->termios_locked !=
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 tty->driver->other->termios_locked[idx]) {
1610 printk(KERN_DEBUG "release_dev: other->termios_locked["
1611 "%d] not o_termios_locked for (%s)\n",
1612 idx, tty->name);
1613 return;
1614 }
1615 if (o_tty->link != tty) {
1616 printk(KERN_DEBUG "release_dev: bad pty pointers\n");
1617 return;
1618 }
1619 }
1620#endif
Alan Coxf34d7a52008-04-30 00:54:13 -07001621 if (tty->ops->close)
1622 tty->ops->close(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 /*
1625 * Sanity check: if tty->count is going to zero, there shouldn't be
1626 * any waiters on tty->read_wait or tty->write_wait. We test the
1627 * wait queues and kick everyone out _before_ actually starting to
1628 * close. This ensures that we won't block while releasing the tty
1629 * structure.
1630 *
1631 * The test for the o_tty closing is necessary, since the master and
1632 * slave sides may close in any order. If the slave side closes out
1633 * first, its count will be one, since the master side holds an open.
1634 * Thus this test wouldn't be triggered at the time the slave closes,
1635 * so we do it now.
1636 *
1637 * Note that it's possible for the tty to be opened again while we're
1638 * flushing out waiters. By recalculating the closing flags before
1639 * each iteration we avoid any problems.
1640 */
1641 while (1) {
1642 /* Guard against races with tty->count changes elsewhere and
1643 opens on /dev/tty */
Alan Cox37bdfb02008-02-08 04:18:47 -08001644
Ingo Molnar70522e12006-03-23 03:00:31 -08001645 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 tty_closing = tty->count <= 1;
1647 o_tty_closing = o_tty &&
1648 (o_tty->count <= (pty_master ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 do_sleep = 0;
1650
1651 if (tty_closing) {
1652 if (waitqueue_active(&tty->read_wait)) {
1653 wake_up(&tty->read_wait);
1654 do_sleep++;
1655 }
1656 if (waitqueue_active(&tty->write_wait)) {
1657 wake_up(&tty->write_wait);
1658 do_sleep++;
1659 }
1660 }
1661 if (o_tty_closing) {
1662 if (waitqueue_active(&o_tty->read_wait)) {
1663 wake_up(&o_tty->read_wait);
1664 do_sleep++;
1665 }
1666 if (waitqueue_active(&o_tty->write_wait)) {
1667 wake_up(&o_tty->write_wait);
1668 do_sleep++;
1669 }
1670 }
1671 if (!do_sleep)
1672 break;
1673
1674 printk(KERN_WARNING "release_dev: %s: read/write wait queue "
1675 "active!\n", tty_name(tty, buf));
Ingo Molnar70522e12006-03-23 03:00:31 -08001676 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 schedule();
Alan Cox37bdfb02008-02-08 04:18:47 -08001678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001681 * The closing flags are now consistent with the open counts on
1682 * both sides, and we've completed the last operation that could
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 * block, so it's safe to proceed with closing.
1684 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (pty_master) {
1686 if (--o_tty->count < 0) {
1687 printk(KERN_WARNING "release_dev: bad pty slave count "
1688 "(%d) for %s\n",
1689 o_tty->count, tty_name(o_tty, buf));
1690 o_tty->count = 0;
1691 }
1692 }
1693 if (--tty->count < 0) {
1694 printk(KERN_WARNING "release_dev: bad tty->count (%d) for %s\n",
1695 tty->count, tty_name(tty, buf));
1696 tty->count = 0;
1697 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 /*
1700 * We've decremented tty->count, so we need to remove this file
1701 * descriptor off the tty->tty_files list; this serves two
1702 * purposes:
1703 * - check_tty_count sees the correct number of file descriptors
1704 * associated with this tty.
1705 * - do_tty_hangup no longer sees this file descriptor as
1706 * something that needs to be handled for hangups.
1707 */
1708 file_kill(filp);
1709 filp->private_data = NULL;
1710
1711 /*
1712 * Perform some housekeeping before deciding whether to return.
1713 *
1714 * Set the TTY_CLOSING flag if this was the last open. In the
1715 * case of a pty we may have to wait around for the other side
1716 * to close, and TTY_CLOSING makes sure we can't be reopened.
1717 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001718 if (tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 set_bit(TTY_CLOSING, &tty->flags);
Alan Cox37bdfb02008-02-08 04:18:47 -08001720 if (o_tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 set_bit(TTY_CLOSING, &o_tty->flags);
1722
1723 /*
1724 * If _either_ side is closing, make sure there aren't any
1725 * processes that still think tty or o_tty is their controlling
1726 * tty.
1727 */
1728 if (tty_closing || o_tty_closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001730 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (o_tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001732 session_clear_tty(o_tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 read_unlock(&tasklist_lock);
1734 }
1735
Ingo Molnar70522e12006-03-23 03:00:31 -08001736 mutex_unlock(&tty_mutex);
Paul Fulghumda965822006-02-14 13:53:00 -08001737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /* check whether both sides are closing ... */
1739 if (!tty_closing || (o_tty && !o_tty_closing))
1740 return;
Alan Cox37bdfb02008-02-08 04:18:47 -08001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742#ifdef TTY_DEBUG_HANGUP
1743 printk(KERN_DEBUG "freeing tty structure...");
1744#endif
1745 /*
Alan Cox01e1abb2008-07-22 11:16:55 +01001746 * Ask the line discipline code to release its structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
Alan Cox01e1abb2008-07-22 11:16:55 +01001748 tty_ldisc_release(tty, o_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /*
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001750 * The release_tty function takes care of the details of clearing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 * the slots and preserving the termios structure.
1752 */
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001753 release_tty(tty, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 /* Make this pty number available for reallocation */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07001756 if (devpts)
1757 devpts_kill_index(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
Alan Coxaf9b8972006-08-27 01:24:01 -07001760/**
1761 * tty_open - open a tty device
1762 * @inode: inode of device file
1763 * @filp: file pointer to tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001765 * tty_open and tty_release keep up the tty count that contains the
1766 * number of opens done on a tty. We cannot use the inode-count, as
1767 * different inodes might point to the same tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001769 * Open-counting is needed for pty masters, as well as for keeping
1770 * track of serial lines: DTR is dropped when the last close happens.
1771 * (This is not done solely through tty->count, now. - Ted 1/27/92)
1772 *
1773 * The termios state of a pty is reset on first open so that
1774 * settings don't persist across reuse.
1775 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001776 * Locking: tty_mutex protects tty, get_tty_driver and init_dev work.
1777 * tty->count should protect the rest.
1778 * ->siglock protects ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001780
Jonathan Corbet39d95b92008-05-16 09:10:50 -06001781static int __tty_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
1783 struct tty_struct *tty;
1784 int noctty, retval;
1785 struct tty_driver *driver;
1786 int index;
1787 dev_t device = inode->i_rdev;
1788 unsigned short saved_flags = filp->f_flags;
1789
1790 nonseekable_open(inode, filp);
Alan Cox37bdfb02008-02-08 04:18:47 -08001791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792retry_open:
1793 noctty = filp->f_flags & O_NOCTTY;
1794 index = -1;
1795 retval = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001796
Ingo Molnar70522e12006-03-23 03:00:31 -08001797 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Alan Cox37bdfb02008-02-08 04:18:47 -08001799 if (device == MKDEV(TTYAUX_MAJOR, 0)) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001800 tty = get_current_tty();
1801 if (!tty) {
Ingo Molnar70522e12006-03-23 03:00:31 -08001802 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 return -ENXIO;
1804 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001805 driver = tty->driver;
1806 index = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1808 /* noctty = 1; */
1809 goto got_driver;
1810 }
1811#ifdef CONFIG_VT
Alan Cox37bdfb02008-02-08 04:18:47 -08001812 if (device == MKDEV(TTY_MAJOR, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 extern struct tty_driver *console_driver;
1814 driver = console_driver;
1815 index = fg_console;
1816 noctty = 1;
1817 goto got_driver;
1818 }
1819#endif
Alan Cox37bdfb02008-02-08 04:18:47 -08001820 if (device == MKDEV(TTYAUX_MAJOR, 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 driver = console_device(&index);
1822 if (driver) {
1823 /* Don't let /dev/console block */
1824 filp->f_flags |= O_NONBLOCK;
1825 noctty = 1;
1826 goto got_driver;
1827 }
Ingo Molnar70522e12006-03-23 03:00:31 -08001828 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return -ENODEV;
1830 }
1831
1832 driver = get_tty_driver(device, &index);
1833 if (!driver) {
Ingo Molnar70522e12006-03-23 03:00:31 -08001834 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return -ENODEV;
1836 }
1837got_driver:
1838 retval = init_dev(driver, index, &tty);
Ingo Molnar70522e12006-03-23 03:00:31 -08001839 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (retval)
1841 return retval;
1842
1843 filp->private_data = tty;
1844 file_move(filp, &tty->tty_files);
1845 check_tty_count(tty, "tty_open");
1846 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1847 tty->driver->subtype == PTY_TYPE_MASTER)
1848 noctty = 1;
1849#ifdef TTY_DEBUG_HANGUP
1850 printk(KERN_DEBUG "opening %s...", tty->name);
1851#endif
1852 if (!retval) {
Alan Coxf34d7a52008-04-30 00:54:13 -07001853 if (tty->ops->open)
1854 retval = tty->ops->open(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 else
1856 retval = -ENODEV;
1857 }
1858 filp->f_flags = saved_flags;
1859
Alan Cox37bdfb02008-02-08 04:18:47 -08001860 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) &&
1861 !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 retval = -EBUSY;
1863
1864 if (retval) {
1865#ifdef TTY_DEBUG_HANGUP
1866 printk(KERN_DEBUG "error %d in opening %s...", retval,
1867 tty->name);
1868#endif
1869 release_dev(filp);
1870 if (retval != -ERESTARTSYS)
1871 return retval;
1872 if (signal_pending(current))
1873 return retval;
1874 schedule();
1875 /*
1876 * Need to reset f_op in case a hangup happened.
1877 */
1878 if (filp->f_op == &hung_up_tty_fops)
1879 filp->f_op = &tty_fops;
1880 goto retry_open;
1881 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001882
1883 mutex_lock(&tty_mutex);
1884 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if (!noctty &&
1886 current->signal->leader &&
1887 !current->signal->tty &&
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001888 tty->session == NULL)
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07001889 __proc_set_tty(current, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001890 spin_unlock_irq(&current->sighand->siglock);
1891 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return 0;
1893}
1894
Jonathan Corbet39d95b92008-05-16 09:10:50 -06001895/* BKL pushdown: scary code avoidance wrapper */
1896static int tty_open(struct inode *inode, struct file *filp)
1897{
1898 int ret;
1899
1900 lock_kernel();
1901 ret = __tty_open(inode, filp);
1902 unlock_kernel();
1903 return ret;
1904}
1905
1906
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908#ifdef CONFIG_UNIX98_PTYS
Alan Coxaf9b8972006-08-27 01:24:01 -07001909/**
1910 * ptmx_open - open a unix 98 pty master
1911 * @inode: inode of device file
1912 * @filp: file pointer to tty
1913 *
1914 * Allocate a unix98 pty master device from the ptmx driver.
1915 *
1916 * Locking: tty_mutex protects theinit_dev work. tty->count should
Alan Cox37bdfb02008-02-08 04:18:47 -08001917 * protect the rest.
Alan Coxaf9b8972006-08-27 01:24:01 -07001918 * allocated_ptys_lock handles the list of free pty numbers
1919 */
1920
Jonathan Corbet39d95b92008-05-16 09:10:50 -06001921static int __ptmx_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 struct tty_struct *tty;
1924 int retval;
1925 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
1927 nonseekable_open(inode, filp);
1928
1929 /* find a device that is not in use. */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07001930 index = devpts_new_index();
1931 if (index < 0)
1932 return index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Ingo Molnar70522e12006-03-23 03:00:31 -08001934 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 retval = init_dev(ptm_driver, index, &tty);
Ingo Molnar70522e12006-03-23 03:00:31 -08001936 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (retval)
1939 goto out;
1940
1941 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
1942 filp->private_data = tty;
1943 file_move(filp, &tty->tty_files);
1944
Sukadev Bhattiprolu4f8f9d62008-04-30 00:54:20 -07001945 retval = devpts_pty_new(tty->link);
1946 if (retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 goto out1;
1948
Hiroshi Shimamoto86a96532008-04-30 00:54:20 -07001949 check_tty_count(tty, "ptmx_open");
Alan Coxf34d7a52008-04-30 00:54:13 -07001950 retval = ptm_driver->ops->open(tty, filp);
Miloslav Trmac41126222008-04-18 13:30:14 -07001951 if (!retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 return 0;
1953out1:
1954 release_dev(filp);
Paul Fulghum9453a5a2006-04-10 22:54:18 -07001955 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956out:
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07001957 devpts_kill_index(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return retval;
1959}
Jonathan Corbet39d95b92008-05-16 09:10:50 -06001960
1961static int ptmx_open(struct inode *inode, struct file *filp)
1962{
1963 int ret;
1964
1965 lock_kernel();
1966 ret = __ptmx_open(inode, filp);
1967 unlock_kernel();
1968 return ret;
1969}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970#endif
1971
Alan Coxaf9b8972006-08-27 01:24:01 -07001972/**
1973 * tty_release - vfs callback for close
1974 * @inode: inode of tty
1975 * @filp: file pointer for handle to tty
1976 *
1977 * Called the last time each file handle is closed that references
1978 * this tty. There may however be several such references.
1979 *
1980 * Locking:
1981 * Takes bkl. See release_dev
1982 */
1983
Alan Cox37bdfb02008-02-08 04:18:47 -08001984static int tty_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 lock_kernel();
1987 release_dev(filp);
1988 unlock_kernel();
1989 return 0;
1990}
1991
Alan Coxaf9b8972006-08-27 01:24:01 -07001992/**
1993 * tty_poll - check tty status
1994 * @filp: file being polled
1995 * @wait: poll wait structures to update
1996 *
1997 * Call the line discipline polling method to obtain the poll
1998 * status of the device.
1999 *
2000 * Locking: locks called line discipline but ldisc poll method
2001 * may be re-entered freely by other callers.
2002 */
2003
Alan Cox37bdfb02008-02-08 04:18:47 -08002004static unsigned int tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005{
Alan Cox37bdfb02008-02-08 04:18:47 -08002006 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 struct tty_ldisc *ld;
2008 int ret = 0;
2009
2010 tty = (struct tty_struct *)filp->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08002011 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_poll"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002015 if (ld->ops->poll)
2016 ret = (ld->ops->poll)(tty, filp, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 tty_ldisc_deref(ld);
2018 return ret;
2019}
2020
Alan Cox37bdfb02008-02-08 04:18:47 -08002021static int tty_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Alan Cox37bdfb02008-02-08 04:18:47 -08002023 struct tty_struct *tty;
Alan Cox47f86832008-04-30 00:53:30 -07002024 unsigned long flags;
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002025 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002027 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 tty = (struct tty_struct *)filp->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08002029 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_fasync"))
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002030 goto out;
Alan Cox37bdfb02008-02-08 04:18:47 -08002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 retval = fasync_helper(fd, filp, on, &tty->fasync);
2033 if (retval <= 0)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002034 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 if (on) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002037 enum pid_type type;
2038 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (!waitqueue_active(&tty->read_wait))
2040 tty->minimum_to_wake = 1;
Alan Cox47f86832008-04-30 00:53:30 -07002041 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002042 if (tty->pgrp) {
2043 pid = tty->pgrp;
2044 type = PIDTYPE_PGID;
2045 } else {
2046 pid = task_pid(current);
2047 type = PIDTYPE_PID;
2048 }
Alan Cox47f86832008-04-30 00:53:30 -07002049 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002050 retval = __f_setown(filp, pid, type, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (retval)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002052 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 } else {
2054 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
2055 tty->minimum_to_wake = N_TTY_BUF_SIZE;
2056 }
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002057 retval = 0;
2058out:
2059 unlock_kernel();
2060 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
Alan Coxaf9b8972006-08-27 01:24:01 -07002063/**
2064 * tiocsti - fake input character
2065 * @tty: tty to fake input into
2066 * @p: pointer to character
2067 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02002068 * Fake input to a tty device. Does the necessary locking and
Alan Coxaf9b8972006-08-27 01:24:01 -07002069 * input management.
2070 *
2071 * FIXME: does not honour flow control ??
2072 *
2073 * Locking:
2074 * Called functions take tty_ldisc_lock
2075 * current->signal->tty check is safe without locks
Alan Cox28298232006-09-29 02:00:58 -07002076 *
2077 * FIXME: may race normal receive processing
Alan Coxaf9b8972006-08-27 01:24:01 -07002078 */
2079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080static int tiocsti(struct tty_struct *tty, char __user *p)
2081{
2082 char ch, mbz = 0;
2083 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08002084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2086 return -EPERM;
2087 if (get_user(ch, p))
2088 return -EFAULT;
2089 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002090 ld->ops->receive_buf(tty, &ch, &mbz, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 tty_ldisc_deref(ld);
2092 return 0;
2093}
2094
Alan Coxaf9b8972006-08-27 01:24:01 -07002095/**
2096 * tiocgwinsz - implement window query ioctl
2097 * @tty; tty
2098 * @arg: user buffer for result
2099 *
Alan Cox808a0d32006-09-29 02:00:40 -07002100 * Copies the kernel idea of the window size into the user buffer.
Alan Coxaf9b8972006-08-27 01:24:01 -07002101 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002102 * Locking: tty->termios_mutex is taken to ensure the winsize data
Alan Cox808a0d32006-09-29 02:00:40 -07002103 * is consistent.
Alan Coxaf9b8972006-08-27 01:24:01 -07002104 */
2105
Alan Cox37bdfb02008-02-08 04:18:47 -08002106static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
Alan Cox808a0d32006-09-29 02:00:40 -07002108 int err;
2109
Arjan van de Ven5785c952006-09-29 02:00:43 -07002110 mutex_lock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002111 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
Arjan van de Ven5785c952006-09-29 02:00:43 -07002112 mutex_unlock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002113
2114 return err ? -EFAULT: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115}
2116
Alan Coxaf9b8972006-08-27 01:24:01 -07002117/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002118 * tty_do_resize - resize event
2119 * @tty: tty being resized
Alan Coxa152db72008-08-26 19:55:58 +01002120 * @real_tty: real tty (not the same as tty if using a pty/tty pair)
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002121 * @rows: rows (character)
2122 * @cols: cols (character)
Alan Coxaf9b8972006-08-27 01:24:01 -07002123 *
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002124 * Update the termios variables and send the neccessary signals to
2125 * peform a terminal resize correctly
Alan Coxaf9b8972006-08-27 01:24:01 -07002126 */
2127
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002128int tty_do_resize(struct tty_struct *tty, struct tty_struct *real_tty,
2129 struct winsize *ws)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Alan Cox47f86832008-04-30 00:53:30 -07002131 struct pid *pgrp, *rpgrp;
2132 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Alan Coxa152db72008-08-26 19:55:58 +01002134 /* For a PTY we need to lock the tty side */
2135 mutex_lock(&real_tty->termios_mutex);
Alan Coxf4d2a6c2008-10-13 10:39:01 +01002136 if (!memcmp(ws, &real_tty->winsize, sizeof(*ws)))
Alan Coxca9bda02006-09-29 02:00:03 -07002137 goto done;
Alan Cox47f86832008-04-30 00:53:30 -07002138 /* Get the PID values and reference them so we can
2139 avoid holding the tty ctrl lock while sending signals */
2140 spin_lock_irqsave(&tty->ctrl_lock, flags);
2141 pgrp = get_pid(tty->pgrp);
2142 rpgrp = get_pid(real_tty->pgrp);
2143 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2144
2145 if (pgrp)
2146 kill_pgrp(pgrp, SIGWINCH, 1);
2147 if (rpgrp != pgrp && rpgrp)
2148 kill_pgrp(rpgrp, SIGWINCH, 1);
2149
2150 put_pid(pgrp);
2151 put_pid(rpgrp);
2152
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002153 tty->winsize = *ws;
2154 real_tty->winsize = *ws;
Alan Coxca9bda02006-09-29 02:00:03 -07002155done:
Alan Coxa152db72008-08-26 19:55:58 +01002156 mutex_unlock(&real_tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return 0;
2158}
2159
Alan Coxaf9b8972006-08-27 01:24:01 -07002160/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002161 * tiocswinsz - implement window size set ioctl
2162 * @tty; tty
2163 * @arg: user buffer for result
2164 *
2165 * Copies the user idea of the window size to the kernel. Traditionally
2166 * this is just advisory information but for the Linux console it
2167 * actually has driver level meaning and triggers a VC resize.
2168 *
2169 * Locking:
2170 * Driver dependant. The default do_resize method takes the
2171 * tty termios mutex and ctrl_lock. The console takes its own lock
2172 * then calls into the default method.
2173 */
2174
2175static int tiocswinsz(struct tty_struct *tty, struct tty_struct *real_tty,
2176 struct winsize __user *arg)
2177{
2178 struct winsize tmp_ws;
2179 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2180 return -EFAULT;
2181
2182 if (tty->ops->resize)
2183 return tty->ops->resize(tty, real_tty, &tmp_ws);
2184 else
2185 return tty_do_resize(tty, real_tty, &tmp_ws);
2186}
2187
2188/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002189 * tioccons - allow admin to move logical console
2190 * @file: the file to become console
2191 *
2192 * Allow the adminstrator to move the redirected console device
2193 *
2194 * Locking: uses redirect_lock to guard the redirect information
2195 */
2196
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197static int tioccons(struct file *file)
2198{
2199 if (!capable(CAP_SYS_ADMIN))
2200 return -EPERM;
2201 if (file->f_op->write == redirected_tty_write) {
2202 struct file *f;
2203 spin_lock(&redirect_lock);
2204 f = redirect;
2205 redirect = NULL;
2206 spin_unlock(&redirect_lock);
2207 if (f)
2208 fput(f);
2209 return 0;
2210 }
2211 spin_lock(&redirect_lock);
2212 if (redirect) {
2213 spin_unlock(&redirect_lock);
2214 return -EBUSY;
2215 }
2216 get_file(file);
2217 redirect = file;
2218 spin_unlock(&redirect_lock);
2219 return 0;
2220}
2221
Alan Coxaf9b8972006-08-27 01:24:01 -07002222/**
2223 * fionbio - non blocking ioctl
2224 * @file: file to set blocking value
2225 * @p: user parameter
2226 *
2227 * Historical tty interfaces had a blocking control ioctl before
2228 * the generic functionality existed. This piece of history is preserved
2229 * in the expected tty API of posix OS's.
2230 *
2231 * Locking: none, the open fle handle ensures it won't go away.
2232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234static int fionbio(struct file *file, int __user *p)
2235{
2236 int nonblock;
2237
2238 if (get_user(nonblock, p))
2239 return -EFAULT;
2240
Alan Cox04f378b2008-04-30 00:53:29 -07002241 /* file->f_flags is still BKL protected in the fs layer - vomit */
2242 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (nonblock)
2244 file->f_flags |= O_NONBLOCK;
2245 else
2246 file->f_flags &= ~O_NONBLOCK;
Alan Cox04f378b2008-04-30 00:53:29 -07002247 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return 0;
2249}
2250
Alan Coxaf9b8972006-08-27 01:24:01 -07002251/**
2252 * tiocsctty - set controlling tty
2253 * @tty: tty structure
2254 * @arg: user argument
2255 *
2256 * This ioctl is used to manage job control. It permits a session
2257 * leader to set this tty as the controlling tty for the session.
2258 *
2259 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002260 * Takes tty_mutex() to protect tty instance
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002261 * Takes tasklist_lock internally to walk sessions
2262 * Takes ->siglock() when updating signal->tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002263 */
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265static int tiocsctty(struct tty_struct *tty, int arg)
2266{
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002267 int ret = 0;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002268 if (current->signal->leader && (task_session(current) == tty->session))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002269 return ret;
2270
2271 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 /*
2273 * The process must be a session leader and
2274 * not have a controlling tty already.
2275 */
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002276 if (!current->signal->leader || current->signal->tty) {
2277 ret = -EPERM;
2278 goto unlock;
2279 }
2280
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002281 if (tty->session) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 /*
2283 * This tty is already the controlling
2284 * tty for another session group!
2285 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002286 if (arg == 1 && capable(CAP_SYS_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 /*
2288 * Steal it away
2289 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002291 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 read_unlock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002293 } else {
2294 ret = -EPERM;
2295 goto unlock;
2296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002298 proc_set_tty(current, tty);
2299unlock:
Alan Cox28298232006-09-29 02:00:58 -07002300 mutex_unlock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002301 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
Alan Coxaf9b8972006-08-27 01:24:01 -07002304/**
Alan Cox5d0fdf12008-04-30 00:53:31 -07002305 * tty_get_pgrp - return a ref counted pgrp pid
2306 * @tty: tty to read
2307 *
2308 * Returns a refcounted instance of the pid struct for the process
2309 * group controlling the tty.
2310 */
2311
2312struct pid *tty_get_pgrp(struct tty_struct *tty)
2313{
2314 unsigned long flags;
2315 struct pid *pgrp;
2316
2317 spin_lock_irqsave(&tty->ctrl_lock, flags);
2318 pgrp = get_pid(tty->pgrp);
2319 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2320
2321 return pgrp;
2322}
2323EXPORT_SYMBOL_GPL(tty_get_pgrp);
2324
2325/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002326 * tiocgpgrp - get process group
2327 * @tty: tty passed by user
2328 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2329 * @p: returned pid
2330 *
2331 * Obtain the process group of the tty. If there is no process group
2332 * return an error.
2333 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002334 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002335 */
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2338{
Alan Cox5d0fdf12008-04-30 00:53:31 -07002339 struct pid *pid;
2340 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 /*
2342 * (tty == real_tty) is a cheap way of
2343 * testing if the tty is NOT a master pty.
2344 */
2345 if (tty == real_tty && current->signal->tty != real_tty)
2346 return -ENOTTY;
Alan Cox5d0fdf12008-04-30 00:53:31 -07002347 pid = tty_get_pgrp(real_tty);
2348 ret = put_user(pid_vnr(pid), p);
2349 put_pid(pid);
2350 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
Alan Coxaf9b8972006-08-27 01:24:01 -07002353/**
2354 * tiocspgrp - attempt to set process group
2355 * @tty: tty passed by user
2356 * @real_tty: tty side device matching tty passed by user
2357 * @p: pid pointer
2358 *
2359 * Set the process group of the tty to the session passed. Only
2360 * permitted where the tty session is our session.
2361 *
Alan Cox47f86832008-04-30 00:53:30 -07002362 * Locking: RCU, ctrl lock
Alan Coxaf9b8972006-08-27 01:24:01 -07002363 */
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2366{
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002367 struct pid *pgrp;
2368 pid_t pgrp_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 int retval = tty_check_change(real_tty);
Alan Cox47f86832008-04-30 00:53:30 -07002370 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 if (retval == -EIO)
2373 return -ENOTTY;
2374 if (retval)
2375 return retval;
2376 if (!current->signal->tty ||
2377 (current->signal->tty != real_tty) ||
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002378 (real_tty->session != task_session(current)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 return -ENOTTY;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002380 if (get_user(pgrp_nr, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return -EFAULT;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002382 if (pgrp_nr < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 return -EINVAL;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002384 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002385 pgrp = find_vpid(pgrp_nr);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002386 retval = -ESRCH;
2387 if (!pgrp)
2388 goto out_unlock;
2389 retval = -EPERM;
2390 if (session_of_pgrp(pgrp) != task_session(current))
2391 goto out_unlock;
2392 retval = 0;
Alan Cox47f86832008-04-30 00:53:30 -07002393 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002394 put_pid(real_tty->pgrp);
2395 real_tty->pgrp = get_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002396 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002397out_unlock:
2398 rcu_read_unlock();
2399 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
2401
Alan Coxaf9b8972006-08-27 01:24:01 -07002402/**
2403 * tiocgsid - get session id
2404 * @tty: tty passed by user
2405 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2406 * @p: pointer to returned session id
2407 *
2408 * Obtain the session id of the tty. If there is no session
2409 * return an error.
2410 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002411 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002412 */
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2415{
2416 /*
2417 * (tty == real_tty) is a cheap way of
2418 * testing if the tty is NOT a master pty.
2419 */
2420 if (tty == real_tty && current->signal->tty != real_tty)
2421 return -ENOTTY;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002422 if (!real_tty->session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return -ENOTTY;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002424 return put_user(pid_vnr(real_tty->session), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425}
2426
Alan Coxaf9b8972006-08-27 01:24:01 -07002427/**
2428 * tiocsetd - set line discipline
2429 * @tty: tty device
2430 * @p: pointer to user data
2431 *
2432 * Set the line discipline according to user request.
2433 *
2434 * Locking: see tty_set_ldisc, this function is just a helper
2435 */
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437static int tiocsetd(struct tty_struct *tty, int __user *p)
2438{
2439 int ldisc;
Alan Cox04f378b2008-04-30 00:53:29 -07002440 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 if (get_user(ldisc, p))
2443 return -EFAULT;
Alan Cox04f378b2008-04-30 00:53:29 -07002444
2445 lock_kernel();
2446 ret = tty_set_ldisc(tty, ldisc);
2447 unlock_kernel();
2448
2449 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450}
2451
Alan Coxaf9b8972006-08-27 01:24:01 -07002452/**
2453 * send_break - performed time break
2454 * @tty: device to break on
2455 * @duration: timeout in mS
2456 *
2457 * Perform a timed break on hardware that lacks its own driver level
2458 * timed break functionality.
2459 *
2460 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002461 * atomic_write_lock serializes
Alan Coxaf9b8972006-08-27 01:24:01 -07002462 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002463 */
2464
Domen Puncerb20f3ae2005-06-25 14:58:42 -07002465static int send_break(struct tty_struct *tty, unsigned int duration)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
Alan Cox9e989662008-07-22 11:18:03 +01002467 int retval;
2468
2469 if (tty->ops->break_ctl == NULL)
2470 return 0;
2471
2472 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2473 retval = tty->ops->break_ctl(tty, duration);
2474 else {
2475 /* Do the work ourselves */
2476 if (tty_write_lock(tty, 0) < 0)
2477 return -EINTR;
2478 retval = tty->ops->break_ctl(tty, -1);
2479 if (retval)
2480 goto out;
2481 if (!signal_pending(current))
2482 msleep_interruptible(duration);
2483 retval = tty->ops->break_ctl(tty, 0);
2484out:
2485 tty_write_unlock(tty);
2486 if (signal_pending(current))
2487 retval = -EINTR;
2488 }
2489 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490}
2491
Alan Coxaf9b8972006-08-27 01:24:01 -07002492/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002493 * tty_tiocmget - get modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002494 * @tty: tty device
2495 * @file: user file pointer
2496 * @p: pointer to result
2497 *
2498 * Obtain the modem status bits from the tty driver if the feature
2499 * is supported. Return -EINVAL if it is not available.
2500 *
2501 * Locking: none (up to the driver)
2502 */
2503
2504static int tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
2506 int retval = -EINVAL;
2507
Alan Coxf34d7a52008-04-30 00:54:13 -07002508 if (tty->ops->tiocmget) {
2509 retval = tty->ops->tiocmget(tty, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511 if (retval >= 0)
2512 retval = put_user(retval, p);
2513 }
2514 return retval;
2515}
2516
Alan Coxaf9b8972006-08-27 01:24:01 -07002517/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002518 * tty_tiocmset - set modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002519 * @tty: tty device
2520 * @file: user file pointer
2521 * @cmd: command - clear bits, set bits or set all
2522 * @p: pointer to desired bits
2523 *
2524 * Set the modem status bits from the tty driver if the feature
2525 * is supported. Return -EINVAL if it is not available.
2526 *
2527 * Locking: none (up to the driver)
2528 */
2529
2530static int tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 unsigned __user *p)
2532{
Alan Coxae677512008-07-16 21:56:54 +01002533 int retval;
2534 unsigned int set, clear, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Alan Coxae677512008-07-16 21:56:54 +01002536 if (tty->ops->tiocmset == NULL)
2537 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Alan Coxae677512008-07-16 21:56:54 +01002539 retval = get_user(val, p);
2540 if (retval)
2541 return retval;
2542 set = clear = 0;
2543 switch (cmd) {
2544 case TIOCMBIS:
2545 set = val;
2546 break;
2547 case TIOCMBIC:
2548 clear = val;
2549 break;
2550 case TIOCMSET:
2551 set = val;
2552 clear = ~val;
2553 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 }
Alan Coxae677512008-07-16 21:56:54 +01002555 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2556 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2557 return tty->ops->tiocmset(tty, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
2560/*
2561 * Split this up, as gcc can choke on it otherwise..
2562 */
Alan Cox04f378b2008-04-30 00:53:29 -07002563long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
2565 struct tty_struct *tty, *real_tty;
2566 void __user *p = (void __user *)arg;
2567 int retval;
2568 struct tty_ldisc *ld;
Alan Cox04f378b2008-04-30 00:53:29 -07002569 struct inode *inode = file->f_dentry->d_inode;
Alan Cox37bdfb02008-02-08 04:18:47 -08002570
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 tty = (struct tty_struct *)file->private_data;
2572 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2573 return -EINVAL;
2574
2575 real_tty = tty;
2576 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2577 tty->driver->subtype == PTY_TYPE_MASTER)
2578 real_tty = tty->link;
2579
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
2581 /*
2582 * Factor out some common prep work
2583 */
2584 switch (cmd) {
2585 case TIOCSETD:
2586 case TIOCSBRK:
2587 case TIOCCBRK:
2588 case TCSBRK:
Alan Cox37bdfb02008-02-08 04:18:47 -08002589 case TCSBRKP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 retval = tty_check_change(tty);
2591 if (retval)
2592 return retval;
2593 if (cmd != TIOCCBRK) {
2594 tty_wait_until_sent(tty, 0);
2595 if (signal_pending(current))
2596 return -EINTR;
2597 }
2598 break;
2599 }
2600
Alan Cox9e989662008-07-22 11:18:03 +01002601 /*
2602 * Now do the stuff.
2603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 switch (cmd) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002605 case TIOCSTI:
2606 return tiocsti(tty, p);
2607 case TIOCGWINSZ:
Alan Cox8f520022008-10-13 10:38:46 +01002608 return tiocgwinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002609 case TIOCSWINSZ:
2610 return tiocswinsz(tty, real_tty, p);
2611 case TIOCCONS:
2612 return real_tty != tty ? -EINVAL : tioccons(file);
2613 case FIONBIO:
2614 return fionbio(file, p);
2615 case TIOCEXCL:
2616 set_bit(TTY_EXCLUSIVE, &tty->flags);
2617 return 0;
2618 case TIOCNXCL:
2619 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2620 return 0;
2621 case TIOCNOTTY:
2622 if (current->signal->tty != tty)
2623 return -ENOTTY;
2624 no_tty();
2625 return 0;
2626 case TIOCSCTTY:
2627 return tiocsctty(tty, arg);
2628 case TIOCGPGRP:
2629 return tiocgpgrp(tty, real_tty, p);
2630 case TIOCSPGRP:
2631 return tiocspgrp(tty, real_tty, p);
2632 case TIOCGSID:
2633 return tiocgsid(tty, real_tty, p);
2634 case TIOCGETD:
Alan Coxa352def2008-07-16 21:53:12 +01002635 return put_user(tty->ldisc.ops->num, (int __user *)p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002636 case TIOCSETD:
2637 return tiocsetd(tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002638 /*
2639 * Break handling
2640 */
2641 case TIOCSBRK: /* Turn break on, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002642 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002643 return tty->ops->break_ctl(tty, -1);
Alan Cox37bdfb02008-02-08 04:18:47 -08002644 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002645 case TIOCCBRK: /* Turn break off, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002646 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002647 return tty->ops->break_ctl(tty, 0);
Alan Cox37bdfb02008-02-08 04:18:47 -08002648 return 0;
2649 case TCSBRK: /* SVID version: non-zero arg --> no break */
2650 /* non-zero arg means wait for all output data
2651 * to be sent (performed above) but don't send break.
2652 * This is used by the tcdrain() termios function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002654 if (!arg)
2655 return send_break(tty, 250);
2656 return 0;
2657 case TCSBRKP: /* support for POSIX tcsendbreak() */
2658 return send_break(tty, arg ? arg*100 : 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Alan Cox37bdfb02008-02-08 04:18:47 -08002660 case TIOCMGET:
2661 return tty_tiocmget(tty, file, p);
2662 case TIOCMSET:
2663 case TIOCMBIC:
2664 case TIOCMBIS:
2665 return tty_tiocmset(tty, file, cmd, p);
2666 case TCFLSH:
2667 switch (arg) {
2668 case TCIFLUSH:
2669 case TCIOFLUSH:
2670 /* flush tty buffer and allow ldisc to process ioctl */
2671 tty_buffer_flush(tty);
Paul Fulghumc5c34d42007-05-12 10:36:55 -07002672 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08002673 }
2674 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002676 if (tty->ops->ioctl) {
2677 retval = (tty->ops->ioctl)(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 if (retval != -ENOIOCTLCMD)
2679 return retval;
2680 }
2681 ld = tty_ldisc_ref_wait(tty);
2682 retval = -EINVAL;
Alan Coxa352def2008-07-16 21:53:12 +01002683 if (ld->ops->ioctl) {
2684 retval = ld->ops->ioctl(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (retval == -ENOIOCTLCMD)
2686 retval = -EINVAL;
2687 }
2688 tty_ldisc_deref(ld);
2689 return retval;
2690}
2691
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002692#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -08002693static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002694 unsigned long arg)
2695{
2696 struct inode *inode = file->f_dentry->d_inode;
2697 struct tty_struct *tty = file->private_data;
2698 struct tty_ldisc *ld;
2699 int retval = -ENOIOCTLCMD;
2700
2701 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2702 return -EINVAL;
2703
Alan Coxf34d7a52008-04-30 00:54:13 -07002704 if (tty->ops->compat_ioctl) {
2705 retval = (tty->ops->compat_ioctl)(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002706 if (retval != -ENOIOCTLCMD)
2707 return retval;
2708 }
2709
2710 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002711 if (ld->ops->compat_ioctl)
2712 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002713 tty_ldisc_deref(ld);
2714
2715 return retval;
2716}
2717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719/*
2720 * This implements the "Secure Attention Key" --- the idea is to
2721 * prevent trojan horses by killing all processes associated with this
2722 * tty when the user hits the "Secure Attention Key". Required for
2723 * super-paranoid applications --- see the Orange Book for more details.
Alan Cox37bdfb02008-02-08 04:18:47 -08002724 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 * This code could be nicer; ideally it should send a HUP, wait a few
2726 * seconds, then send a INT, and then a KILL signal. But you then
2727 * have to coordinate with the init process, since all processes associated
2728 * with the current tty must be dead before the new getty is allowed
2729 * to spawn.
2730 *
2731 * Now, if it would be correct ;-/ The current code has a nasty hole -
2732 * it doesn't catch files in flight. We may send the descriptor to ourselves
2733 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2734 *
2735 * Nasty bug: do_SAK is being called in interrupt context. This can
2736 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2737 */
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002738void __do_SAK(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
2740#ifdef TTY_SOFT_SAK
2741 tty_hangup(tty);
2742#else
Eric W. Biederman652486f2006-03-28 16:11:02 -08002743 struct task_struct *g, *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002744 struct pid *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 int i;
2746 struct file *filp;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07002747 struct fdtable *fdt;
Alan Cox37bdfb02008-02-08 04:18:47 -08002748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 if (!tty)
2750 return;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002751 session = tty->session;
Alan Cox37bdfb02008-02-08 04:18:47 -08002752
Dan Carpenterb3f13de2006-12-13 00:35:09 -08002753 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Alan Coxf34d7a52008-04-30 00:54:13 -07002755 tty_driver_flush_buffer(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -08002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 read_lock(&tasklist_lock);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002758 /* Kill the entire session */
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002759 do_each_pid_task(session, PIDTYPE_SID, p) {
Eric W. Biederman652486f2006-03-28 16:11:02 -08002760 printk(KERN_NOTICE "SAK: killed process %d"
Pavel Emelianova47afb02007-10-18 23:39:46 -07002761 " (%s): task_session_nr(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002762 task_pid_nr(p), p->comm);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002763 send_sig(SIGKILL, p, 1);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002764 } while_each_pid_task(session, PIDTYPE_SID, p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002765 /* Now kill any processes that happen to have the
2766 * tty open.
2767 */
2768 do_each_thread(g, p) {
2769 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 printk(KERN_NOTICE "SAK: killed process %d"
Pavel Emelianova47afb02007-10-18 23:39:46 -07002771 " (%s): task_session_nr(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002772 task_pid_nr(p), p->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 send_sig(SIGKILL, p, 1);
2774 continue;
2775 }
2776 task_lock(p);
2777 if (p->files) {
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07002778 /*
2779 * We don't take a ref to the file, so we must
2780 * hold ->file_lock instead.
2781 */
2782 spin_lock(&p->files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07002783 fdt = files_fdtable(p->files);
Alan Cox37bdfb02008-02-08 04:18:47 -08002784 for (i = 0; i < fdt->max_fds; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 filp = fcheck_files(p->files, i);
2786 if (!filp)
2787 continue;
2788 if (filp->f_op->read == tty_read &&
2789 filp->private_data == tty) {
2790 printk(KERN_NOTICE "SAK: killed process %d"
2791 " (%s): fd#%d opened to the tty\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002792 task_pid_nr(p), p->comm, i);
Eric W. Biederman20ac9432006-04-13 04:49:07 -06002793 force_sig(SIGKILL, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 break;
2795 }
2796 }
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07002797 spin_unlock(&p->files->file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799 task_unlock(p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002800 } while_each_thread(g, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 read_unlock(&tasklist_lock);
2802#endif
2803}
2804
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002805static void do_SAK_work(struct work_struct *work)
2806{
2807 struct tty_struct *tty =
2808 container_of(work, struct tty_struct, SAK_work);
2809 __do_SAK(tty);
2810}
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812/*
2813 * The tq handling here is a little racy - tty->SAK_work may already be queued.
2814 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
2815 * the values which we write to it will be identical to the values which it
2816 * already has. --akpm
2817 */
2818void do_SAK(struct tty_struct *tty)
2819{
2820 if (!tty)
2821 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 schedule_work(&tty->SAK_work);
2823}
2824
2825EXPORT_SYMBOL(do_SAK);
2826
Alan Coxaf9b8972006-08-27 01:24:01 -07002827/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002828 * initialize_tty_struct
2829 * @tty: tty to initialize
2830 *
2831 * This subroutine initializes a tty structure that has been newly
2832 * allocated.
2833 *
2834 * Locking: none - tty in question must not be exposed at this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837static void initialize_tty_struct(struct tty_struct *tty)
2838{
2839 memset(tty, 0, sizeof(struct tty_struct));
Alan Cox9c9f4de2008-10-13 10:37:26 +01002840 kref_init(&tty->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 tty->magic = TTY_MAGIC;
Alan Cox01e1abb2008-07-22 11:16:55 +01002842 tty_ldisc_init(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002843 tty->session = NULL;
2844 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 tty->overrun_time = jiffies;
Alan Cox33f0f882006-01-09 20:54:13 -08002846 tty->buf.head = tty->buf.tail = NULL;
2847 tty_buffer_init(tty);
Arjan van de Ven5785c952006-09-29 02:00:43 -07002848 mutex_init(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 init_waitqueue_head(&tty->write_wait);
2850 init_waitqueue_head(&tty->read_wait);
David Howells65f27f32006-11-22 14:55:48 +00002851 INIT_WORK(&tty->hangup_work, do_tty_hangup);
Ingo Molnar70522e12006-03-23 03:00:31 -08002852 mutex_init(&tty->atomic_read_lock);
2853 mutex_init(&tty->atomic_write_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 spin_lock_init(&tty->read_lock);
Alan Cox04f378b2008-04-30 00:53:29 -07002855 spin_lock_init(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 INIT_LIST_HEAD(&tty->tty_files);
Eric W. Biederman7f1f86a2007-02-13 14:38:58 -07002857 INIT_WORK(&tty->SAK_work, do_SAK_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858}
2859
Alan Coxf34d7a52008-04-30 00:54:13 -07002860/**
2861 * tty_put_char - write one character to a tty
2862 * @tty: tty
2863 * @ch: character
2864 *
2865 * Write one byte to the tty using the provided put_char method
2866 * if present. Returns the number of characters successfully output.
2867 *
2868 * Note: the specific put_char operation in the driver layer may go
2869 * away soon. Don't call it directly, use this method
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002871
Alan Coxf34d7a52008-04-30 00:54:13 -07002872int tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
Alan Coxf34d7a52008-04-30 00:54:13 -07002874 if (tty->ops->put_char)
2875 return tty->ops->put_char(tty, ch);
2876 return tty->ops->write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
Alan Coxf34d7a52008-04-30 00:54:13 -07002879EXPORT_SYMBOL_GPL(tty_put_char);
2880
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08002881static struct class *tty_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002884 * tty_register_device - register a tty device
2885 * @driver: the tty driver that describes the tty device
2886 * @index: the index in the tty driver for this tty device
2887 * @device: a struct device that is associated with this tty device.
2888 * This field is optional, if there is no known struct device
2889 * for this tty device it can be set to NULL safely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 *
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07002891 * Returns a pointer to the struct device for this tty device
2892 * (or ERR_PTR(-EFOO) on error).
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002893 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002894 * This call is required to be made to register an individual tty device
2895 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
2896 * that bit is not set, this function should not be called by a tty
2897 * driver.
2898 *
2899 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002901
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07002902struct device *tty_register_device(struct tty_driver *driver, unsigned index,
2903 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
2905 char name[64];
2906 dev_t dev = MKDEV(driver->major, driver->minor_start) + index;
2907
2908 if (index >= driver->num) {
2909 printk(KERN_ERR "Attempt to register invalid tty line number "
2910 " (%d).\n", index);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002911 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 }
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (driver->type == TTY_DRIVER_TYPE_PTY)
2915 pty_line_name(driver, index, name);
2916 else
2917 tty_line_name(driver, index, name);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002918
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07002919 return device_create_drvdata(tty_class, device, dev, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920}
2921
2922/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002923 * tty_unregister_device - unregister a tty device
2924 * @driver: the tty driver that describes the tty device
2925 * @index: the index in the tty driver for this tty device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002927 * If a tty device is registered with a call to tty_register_device() then
2928 * this function must be called when the tty device is gone.
2929 *
2930 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002932
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933void tty_unregister_device(struct tty_driver *driver, unsigned index)
2934{
Alan Cox37bdfb02008-02-08 04:18:47 -08002935 device_destroy(tty_class,
2936 MKDEV(driver->major, driver->minor_start) + index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937}
2938
2939EXPORT_SYMBOL(tty_register_device);
2940EXPORT_SYMBOL(tty_unregister_device);
2941
2942struct tty_driver *alloc_tty_driver(int lines)
2943{
2944 struct tty_driver *driver;
2945
Jean Delvare506eb992007-07-15 23:40:14 -07002946 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 if (driver) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 driver->magic = TTY_DRIVER_MAGIC;
2949 driver->num = lines;
2950 /* later we'll move allocation of tables here */
2951 }
2952 return driver;
2953}
2954
2955void put_tty_driver(struct tty_driver *driver)
2956{
2957 kfree(driver);
2958}
2959
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002960void tty_set_operations(struct tty_driver *driver,
2961 const struct tty_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
Alan Coxf34d7a52008-04-30 00:54:13 -07002963 driver->ops = op;
2964};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966EXPORT_SYMBOL(alloc_tty_driver);
2967EXPORT_SYMBOL(put_tty_driver);
2968EXPORT_SYMBOL(tty_set_operations);
2969
2970/*
2971 * Called by a tty driver to register itself.
2972 */
2973int tty_register_driver(struct tty_driver *driver)
2974{
2975 int error;
Alan Cox37bdfb02008-02-08 04:18:47 -08002976 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 dev_t dev;
2978 void **p = NULL;
2979
2980 if (driver->flags & TTY_DRIVER_INSTALLED)
2981 return 0;
2982
Andy Whitcroft543691a2007-05-06 14:49:33 -07002983 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM) && driver->num) {
2984 p = kzalloc(driver->num * 3 * sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 if (!p)
2986 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
2988
2989 if (!driver->major) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002990 error = alloc_chrdev_region(&dev, driver->minor_start,
2991 driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 if (!error) {
2993 driver->major = MAJOR(dev);
2994 driver->minor_start = MINOR(dev);
2995 }
2996 } else {
2997 dev = MKDEV(driver->major, driver->minor_start);
Geert Uytterhoevene5717c42007-02-20 15:45:21 +01002998 error = register_chrdev_region(dev, driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 }
3000 if (error < 0) {
3001 kfree(p);
3002 return error;
3003 }
3004
3005 if (p) {
3006 driver->ttys = (struct tty_struct **)p;
Alan Coxedc6afc2006-12-08 02:38:44 -08003007 driver->termios = (struct ktermios **)(p + driver->num);
Alan Cox37bdfb02008-02-08 04:18:47 -08003008 driver->termios_locked = (struct ktermios **)
3009 (p + driver->num * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 } else {
3011 driver->ttys = NULL;
3012 driver->termios = NULL;
3013 driver->termios_locked = NULL;
3014 }
3015
3016 cdev_init(&driver->cdev, &tty_fops);
3017 driver->cdev.owner = driver->owner;
3018 error = cdev_add(&driver->cdev, dev, driver->num);
3019 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 unregister_chrdev_region(dev, driver->num);
3021 driver->ttys = NULL;
3022 driver->termios = driver->termios_locked = NULL;
3023 kfree(p);
3024 return error;
3025 }
3026
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003027 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 list_add(&driver->tty_drivers, &tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003029 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08003030
3031 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
3032 for (i = 0; i < driver->num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 tty_register_device(driver, i, NULL);
3034 }
3035 proc_tty_register_driver(driver);
3036 return 0;
3037}
3038
3039EXPORT_SYMBOL(tty_register_driver);
3040
3041/*
3042 * Called by a tty driver to unregister itself.
3043 */
3044int tty_unregister_driver(struct tty_driver *driver)
3045{
3046 int i;
Alan Coxedc6afc2006-12-08 02:38:44 -08003047 struct ktermios *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 void *p;
3049
3050 if (driver->refcount)
3051 return -EBUSY;
3052
3053 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3054 driver->num);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003055 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 list_del(&driver->tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003057 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 /*
3060 * Free the termios and termios_locked structures because
3061 * we don't want to get memory leaks when modular tty
3062 * drivers are removed from the kernel.
3063 */
3064 for (i = 0; i < driver->num; i++) {
3065 tp = driver->termios[i];
3066 if (tp) {
3067 driver->termios[i] = NULL;
3068 kfree(tp);
3069 }
3070 tp = driver->termios_locked[i];
3071 if (tp) {
3072 driver->termios_locked[i] = NULL;
3073 kfree(tp);
3074 }
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07003075 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 tty_unregister_device(driver, i);
3077 }
3078 p = driver->ttys;
3079 proc_tty_unregister_driver(driver);
3080 driver->ttys = NULL;
3081 driver->termios = driver->termios_locked = NULL;
3082 kfree(p);
3083 cdev_del(&driver->cdev);
3084 return 0;
3085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086EXPORT_SYMBOL(tty_unregister_driver);
3087
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003088dev_t tty_devnum(struct tty_struct *tty)
3089{
3090 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3091}
3092EXPORT_SYMBOL(tty_devnum);
3093
3094void proc_clear_tty(struct task_struct *p)
3095{
Alan Cox9c9f4de2008-10-13 10:37:26 +01003096 struct tty_struct *tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003097 spin_lock_irq(&p->sighand->siglock);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003098 tty = p->signal->tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003099 p->signal->tty = NULL;
3100 spin_unlock_irq(&p->sighand->siglock);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003101 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003102}
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003103
Alan Cox47f86832008-04-30 00:53:30 -07003104/* Called under the sighand lock */
3105
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003106static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003107{
3108 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -07003109 unsigned long flags;
3110 /* We should not have a session or pgrp to put here but.... */
3111 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -06003112 put_pid(tty->session);
3113 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003114 tty->pgrp = get_pid(task_pgrp(tsk));
Alan Cox47f86832008-04-30 00:53:30 -07003115 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
3116 tty->session = get_pid(task_session(tsk));
Alan Cox9c9f4de2008-10-13 10:37:26 +01003117 if (tsk->signal->tty) {
3118 printk(KERN_DEBUG "tty not NULL!!\n");
3119 tty_kref_put(tsk->signal->tty);
3120 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003121 }
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003122 put_pid(tsk->signal->tty_old_pgrp);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003123 tsk->signal->tty = tty_kref_get(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003124 tsk->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003125}
3126
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07003127static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003128{
3129 spin_lock_irq(&tsk->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003130 __proc_set_tty(tsk, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003131 spin_unlock_irq(&tsk->sighand->siglock);
3132}
3133
3134struct tty_struct *get_current_tty(void)
3135{
3136 struct tty_struct *tty;
3137 WARN_ON_ONCE(!mutex_is_locked(&tty_mutex));
3138 tty = current->signal->tty;
3139 /*
3140 * session->tty can be changed/cleared from under us, make sure we
3141 * issue the load. The obtained pointer, when not NULL, is valid as
3142 * long as we hold tty_mutex.
3143 */
3144 barrier();
3145 return tty;
3146}
Heiko Carstensa311f742006-12-13 00:33:41 -08003147EXPORT_SYMBOL_GPL(get_current_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
3149/*
3150 * Initialize the console device. This is called *early*, so
3151 * we can't necessarily depend on lots of kernel help here.
3152 * Just do some early initializations, and do the complex setup
3153 * later.
3154 */
3155void __init console_init(void)
3156{
3157 initcall_t *call;
3158
3159 /* Setup the default TTY line discipline. */
Alan Cox01e1abb2008-07-22 11:16:55 +01003160 tty_ldisc_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
3162 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08003163 * set up the console device so that later boot sequences can
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 * inform about problems etc..
3165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 call = __con_initcall_start;
3167 while (call < __con_initcall_end) {
3168 (*call)();
3169 call++;
3170 }
3171}
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173static int __init tty_class_init(void)
3174{
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08003175 tty_class = class_create(THIS_MODULE, "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 if (IS_ERR(tty_class))
3177 return PTR_ERR(tty_class);
3178 return 0;
3179}
3180
3181postcore_initcall(tty_class_init);
3182
3183/* 3/2004 jmc: why do these devices exist? */
3184
3185static struct cdev tty_cdev, console_cdev;
3186#ifdef CONFIG_UNIX98_PTYS
3187static struct cdev ptmx_cdev;
3188#endif
3189#ifdef CONFIG_VT
3190static struct cdev vc0_cdev;
3191#endif
3192
3193/*
3194 * Ok, now we can initialize the rest of the tty devices and can count
3195 * on memory allocations, interrupts etc..
3196 */
3197static int __init tty_init(void)
3198{
3199 cdev_init(&tty_cdev, &tty_fops);
3200 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3201 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3202 panic("Couldn't register /dev/tty driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003203 device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL,
3204 "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 cdev_init(&console_cdev, &console_fops);
3207 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3208 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3209 panic("Couldn't register /dev/console driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003210 device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL,
3211 "console");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213#ifdef CONFIG_UNIX98_PTYS
3214 cdev_init(&ptmx_cdev, &ptmx_fops);
3215 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
3216 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
3217 panic("Couldn't register /dev/ptmx driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003218 device_create_drvdata(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219#endif
3220
3221#ifdef CONFIG_VT
3222 cdev_init(&vc0_cdev, &console_fops);
3223 if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
3224 register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
3225 panic("Couldn't register /dev/tty0 driver\n");
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003226 device_create_drvdata(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
3228 vty_init();
3229#endif
3230 return 0;
3231}
3232module_init(tty_init);