blob: 878f6d667b1744aaf90be87a50da56e919413ad4 [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 *
Alan Coxd81ed102008-10-13 10:41:42 +010052 * Rewrote tty_init_dev and tty_release_dev to eliminate races.
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * -- 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>
Alan Coxd281da72010-09-16 18:21:24 +010099#include <linux/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Alan Coxa352def2008-07-16 21:53:12 +0100101#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <asm/system.h>
103
104#include <linux/kbd_kern.h>
105#include <linux/vt_kern.h>
106#include <linux/selection.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#include <linux/kmod.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700109#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111#undef TTY_DEBUG_HANGUP
112
113#define TTY_PARANOIA_CHECK 1
114#define CHECK_TTY_COUNT 1
115
Alan Coxedc6afc2006-12-08 02:38:44 -0800116struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .c_iflag = ICRNL | IXON,
118 .c_oflag = OPOST | ONLCR,
119 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
120 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
121 ECHOCTL | ECHOKE | IEXTEN,
Alan Coxedc6afc2006-12-08 02:38:44 -0800122 .c_cc = INIT_C_CC,
123 .c_ispeed = 38400,
124 .c_ospeed = 38400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127EXPORT_SYMBOL(tty_std_termios);
128
129/* This list gets poked at by procfs and various bits of boot up code. This
130 could do with some rationalisation such as pulling the tty proc function
131 into this file */
Alan Cox37bdfb02008-02-08 04:18:47 -0800132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133LIST_HEAD(tty_drivers); /* linked list of tty drivers */
134
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800135/* Mutex to protect creating and releasing a tty. This is shared with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 vt.c for deeply disgusting hack reasons */
Ingo Molnar70522e12006-03-23 03:00:31 -0800137DEFINE_MUTEX(tty_mutex);
Alan Coxde2a84f2006-09-29 02:00:57 -0700138EXPORT_SYMBOL(tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Nick Pigginee2ffa02010-08-18 04:37:35 +1000140/* Spinlock to protect the tty->tty_files list */
141DEFINE_SPINLOCK(tty_files_lock);
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
144static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
Alan Cox37bdfb02008-02-08 04:18:47 -0800145ssize_t redirected_tty_write(struct file *, const char __user *,
146 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static unsigned int tty_poll(struct file *, poll_table *);
148static int tty_open(struct inode *, struct file *);
Alan Cox04f378b2008-04-30 00:53:29 -0700149long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700150#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -0800151static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700152 unsigned long arg);
153#else
154#define tty_compat_ioctl NULL
155#endif
Arnd Bergmannec79d602010-06-01 22:53:01 +0200156static int __tty_fasync(int fd, struct file *filp, int on);
Alan Cox37bdfb02008-02-08 04:18:47 -0800157static int tty_fasync(int fd, struct file *filp, int on);
Christoph Hellwigd5698c22007-02-10 01:46:46 -0800158static void release_tty(struct tty_struct *tty, int idx);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700159static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700160static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Alan Coxaf9b8972006-08-27 01:24:01 -0700162/**
163 * alloc_tty_struct - allocate a tty object
164 *
165 * Return a new empty tty structure. The data fields have not
166 * been initialized in any way but has been zeroed
167 *
168 * Locking: none
Alan Coxaf9b8972006-08-27 01:24:01 -0700169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Alan Coxbf970ee2008-10-13 10:42:39 +0100171struct tty_struct *alloc_tty_struct(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Alan Cox1266b1e2006-09-29 02:00:40 -0700173 return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Alan Coxaf9b8972006-08-27 01:24:01 -0700176/**
177 * free_tty_struct - free a disused tty
178 * @tty: tty struct to free
179 *
180 * Free the write buffers, tty queue and tty memory itself.
181 *
182 * Locking: none. Must be called after tty is definitely unused
183 */
184
Alan Coxbf970ee2008-10-13 10:42:39 +0100185void free_tty_struct(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +0400187 if (tty->dev)
188 put_device(tty->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 kfree(tty->write_buf);
Alan Cox33f0f882006-01-09 20:54:13 -0800190 tty_buffer_free_all(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 kfree(tty);
192}
193
Nick Piggind996b622010-08-18 04:37:36 +1000194static inline struct tty_struct *file_tty(struct file *file)
195{
196 return ((struct tty_file_private *)file->private_data)->tty;
197}
198
199/* Associate a new file with the tty structure */
Pekka Enbergf573bd12010-08-24 07:48:34 +0300200int tty_add_file(struct tty_struct *tty, struct file *file)
Nick Piggind996b622010-08-18 04:37:36 +1000201{
202 struct tty_file_private *priv;
203
Pekka Enbergf573bd12010-08-24 07:48:34 +0300204 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
205 if (!priv)
206 return -ENOMEM;
Nick Piggind996b622010-08-18 04:37:36 +1000207
208 priv->tty = tty;
209 priv->file = file;
210 file->private_data = priv;
211
212 spin_lock(&tty_files_lock);
213 list_add(&priv->list, &tty->tty_files);
214 spin_unlock(&tty_files_lock);
Pekka Enbergf573bd12010-08-24 07:48:34 +0300215
216 return 0;
Nick Piggind996b622010-08-18 04:37:36 +1000217}
218
219/* Delete file from its tty */
220void tty_del_file(struct file *file)
221{
222 struct tty_file_private *priv = file->private_data;
223
224 spin_lock(&tty_files_lock);
225 list_del(&priv->list);
226 spin_unlock(&tty_files_lock);
227 file->private_data = NULL;
228 kfree(priv);
229}
230
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
233
Alan Coxaf9b8972006-08-27 01:24:01 -0700234/**
235 * tty_name - return tty naming
236 * @tty: tty structure
237 * @buf: buffer for output
238 *
239 * Convert a tty structure into a name. The name reflects the kernel
240 * naming policy and if udev is in use may not reflect user space
241 *
242 * Locking: none
243 */
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245char *tty_name(struct tty_struct *tty, char *buf)
246{
247 if (!tty) /* Hmm. NULL pointer. That's fun. */
248 strcpy(buf, "NULL tty");
249 else
250 strcpy(buf, tty->name);
251 return buf;
252}
253
254EXPORT_SYMBOL(tty_name);
255
Andrew Mortond769a662005-05-05 16:15:50 -0700256int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 const char *routine)
258{
259#ifdef TTY_PARANOIA_CHECK
260 if (!tty) {
261 printk(KERN_WARNING
262 "null TTY for (%d:%d) in %s\n",
263 imajor(inode), iminor(inode), routine);
264 return 1;
265 }
266 if (tty->magic != TTY_MAGIC) {
267 printk(KERN_WARNING
268 "bad magic number for tty struct (%d:%d) in %s\n",
269 imajor(inode), iminor(inode), routine);
270 return 1;
271 }
272#endif
273 return 0;
274}
275
276static int check_tty_count(struct tty_struct *tty, const char *routine)
277{
278#ifdef CHECK_TTY_COUNT
279 struct list_head *p;
280 int count = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -0800281
Nick Pigginee2ffa02010-08-18 04:37:35 +1000282 spin_lock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 list_for_each(p, &tty->tty_files) {
284 count++;
285 }
Nick Pigginee2ffa02010-08-18 04:37:35 +1000286 spin_unlock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
288 tty->driver->subtype == PTY_TYPE_SLAVE &&
289 tty->link && tty->link->count)
290 count++;
291 if (tty->count != count) {
292 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
293 "!= #fd's(%d) in %s\n",
294 tty->name, tty->count, count, routine);
295 return count;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#endif
298 return 0;
299}
300
Alan Coxaf9b8972006-08-27 01:24:01 -0700301/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700302 * get_tty_driver - find device of a tty
303 * @dev_t: device identifier
304 * @index: returns the index of the tty
305 *
306 * This routine returns a tty driver structure, given a device number
307 * and also passes back the index number.
308 *
309 * Locking: caller must hold tty_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static struct tty_driver *get_tty_driver(dev_t device, int *index)
313{
314 struct tty_driver *p;
315
316 list_for_each_entry(p, &tty_drivers, tty_drivers) {
317 dev_t base = MKDEV(p->major, p->minor_start);
318 if (device < base || device >= base + p->num)
319 continue;
320 *index = device - base;
Alan Cox7d7b93c2008-10-13 10:42:09 +0100321 return tty_driver_kref_get(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 return NULL;
324}
325
Jason Wesself2d937f2008-04-17 20:05:37 +0200326#ifdef CONFIG_CONSOLE_POLL
327
328/**
329 * tty_find_polling_driver - find device of a polled tty
330 * @name: name string to match
331 * @line: pointer to resulting tty line nr
332 *
333 * This routine returns a tty driver structure, given a name
334 * and the condition that the tty driver is capable of polled
335 * operation.
336 */
337struct tty_driver *tty_find_polling_driver(char *name, int *line)
338{
339 struct tty_driver *p, *res = NULL;
340 int tty_line = 0;
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500341 int len;
Alan Cox5f0878a2009-06-11 12:46:41 +0100342 char *str, *stp;
Jason Wesself2d937f2008-04-17 20:05:37 +0200343
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500344 for (str = name; *str; str++)
345 if ((*str >= '0' && *str <= '9') || *str == ',')
346 break;
347 if (!*str)
348 return NULL;
349
350 len = str - name;
351 tty_line = simple_strtoul(str, &str, 10);
352
Jason Wesself2d937f2008-04-17 20:05:37 +0200353 mutex_lock(&tty_mutex);
354 /* Search through the tty devices to look for a match */
355 list_for_each_entry(p, &tty_drivers, tty_drivers) {
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500356 if (strncmp(name, p->name, len) != 0)
357 continue;
Alan Cox5f0878a2009-06-11 12:46:41 +0100358 stp = str;
359 if (*stp == ',')
360 stp++;
361 if (*stp == '\0')
362 stp = NULL;
Jason Wesself2d937f2008-04-17 20:05:37 +0200363
Nathael Pajani6eb68d62010-09-02 16:06:16 +0200364 if (tty_line >= 0 && tty_line < p->num && p->ops &&
Alan Cox5f0878a2009-06-11 12:46:41 +0100365 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) {
Alan Cox7d7b93c2008-10-13 10:42:09 +0100366 res = tty_driver_kref_get(p);
Jason Wesself2d937f2008-04-17 20:05:37 +0200367 *line = tty_line;
368 break;
369 }
370 }
371 mutex_unlock(&tty_mutex);
372
373 return res;
374}
375EXPORT_SYMBOL_GPL(tty_find_polling_driver);
376#endif
377
Alan Coxaf9b8972006-08-27 01:24:01 -0700378/**
379 * tty_check_change - check for POSIX terminal changes
380 * @tty: tty to check
381 *
382 * If we try to write to, or set the state of, a terminal and we're
383 * not in the foreground, send a SIGTTOU. If the signal is blocked or
384 * ignored, go ahead and perform the operation. (POSIX 7.2)
385 *
Alan Cox978e5952008-04-30 00:53:59 -0700386 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700388
Alan Cox37bdfb02008-02-08 04:18:47 -0800389int tty_check_change(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Alan Cox47f86832008-04-30 00:53:30 -0700391 unsigned long flags;
392 int ret = 0;
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (current->signal->tty != tty)
395 return 0;
Alan Cox47f86832008-04-30 00:53:30 -0700396
397 spin_lock_irqsave(&tty->ctrl_lock, flags);
398
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800399 if (!tty->pgrp) {
400 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700401 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800403 if (task_pgrp(current) == tty->pgrp)
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700404 goto out_unlock;
405 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (is_ignored(SIGTTOU))
Alan Cox47f86832008-04-30 00:53:30 -0700407 goto out;
408 if (is_current_pgrp_orphaned()) {
409 ret = -EIO;
410 goto out;
411 }
Oleg Nesterov040b6362007-06-01 00:46:53 -0700412 kill_pgrp(task_pgrp(current), SIGTTOU, 1);
413 set_thread_flag(TIF_SIGPENDING);
Alan Cox47f86832008-04-30 00:53:30 -0700414 ret = -ERESTARTSYS;
415out:
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700416 return ret;
417out_unlock:
Alan Cox47f86832008-04-30 00:53:30 -0700418 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
419 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422EXPORT_SYMBOL(tty_check_change);
423
Alan Cox37bdfb02008-02-08 04:18:47 -0800424static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 size_t count, loff_t *ppos)
426{
427 return 0;
428}
429
Alan Cox37bdfb02008-02-08 04:18:47 -0800430static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 size_t count, loff_t *ppos)
432{
433 return -EIO;
434}
435
436/* No kernel lock held - none needed ;) */
Alan Cox37bdfb02008-02-08 04:18:47 -0800437static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
440}
441
Alan Cox04f378b2008-04-30 00:53:29 -0700442static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
443 unsigned long arg)
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700444{
445 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
446}
447
Alan Cox37bdfb02008-02-08 04:18:47 -0800448static long hung_up_tty_compat_ioctl(struct file *file,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700449 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
452}
453
Arjan van de Ven62322d22006-07-03 00:24:21 -0700454static const struct file_operations tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 .llseek = no_llseek,
456 .read = tty_read,
457 .write = tty_write,
458 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700459 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700460 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 .open = tty_open,
462 .release = tty_release,
463 .fasync = tty_fasync,
464};
465
Arjan van de Ven62322d22006-07-03 00:24:21 -0700466static const struct file_operations console_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 .llseek = no_llseek,
468 .read = tty_read,
469 .write = redirected_tty_write,
470 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700471 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700472 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 .open = tty_open,
474 .release = tty_release,
475 .fasync = tty_fasync,
476};
477
Arjan van de Ven62322d22006-07-03 00:24:21 -0700478static const struct file_operations hung_up_tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .llseek = no_llseek,
480 .read = hung_up_tty_read,
481 .write = hung_up_tty_write,
482 .poll = hung_up_tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700483 .unlocked_ioctl = hung_up_tty_ioctl,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700484 .compat_ioctl = hung_up_tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 .release = tty_release,
486};
487
488static DEFINE_SPINLOCK(redirect_lock);
489static struct file *redirect;
490
491/**
492 * tty_wakeup - request more data
493 * @tty: terminal
494 *
495 * Internal and external helper for wakeups of tty. This function
496 * informs the line discipline if present that the driver is ready
497 * to receive more output data.
498 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500void tty_wakeup(struct tty_struct *tty)
501{
502 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -0800503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
505 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800506 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100507 if (ld->ops->write_wakeup)
508 ld->ops->write_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 tty_ldisc_deref(ld);
510 }
511 }
Davide Libenzi4b194492009-03-31 15:24:24 -0700512 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515EXPORT_SYMBOL_GPL(tty_wakeup);
516
517/**
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200518 * __tty_hangup - actual handler for hangup events
David Howells65f27f32006-11-22 14:55:48 +0000519 * @work: tty device
Alan Coxaf9b8972006-08-27 01:24:01 -0700520 *
Alan Cox1bad8792008-07-22 23:38:04 +0100521 * This can be called by the "eventd" kernel thread. That is process
Alan Coxaf9b8972006-08-27 01:24:01 -0700522 * synchronous but doesn't hold any locks, so we need to make sure we
523 * have the appropriate locks for what we're doing.
524 *
525 * The hangup event clears any pending redirections onto the hung up
526 * device. It ensures future writes will error and it does the needed
527 * line discipline hangup and signal delivery. The tty object itself
528 * remains intact.
529 *
530 * Locking:
Arnd Bergmannec79d602010-06-01 22:53:01 +0200531 * BTM
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800532 * redirect lock for undoing redirection
533 * file list lock for manipulating list of ttys
534 * tty_ldisc_lock from called functions
535 * termios_mutex resetting termios data
536 * tasklist_lock to walk task list for hangup event
537 * ->siglock to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200539void __tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Alan Cox37bdfb02008-02-08 04:18:47 -0800541 struct file *cons_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct file *filp, *f = NULL;
543 struct task_struct *p;
Nick Piggind996b622010-08-18 04:37:36 +1000544 struct tty_file_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int closecount = 0, n;
Alan Cox47f86832008-04-30 00:53:30 -0700546 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100547 int refs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 if (!tty)
550 return;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 spin_lock(&redirect_lock);
Nick Piggind996b622010-08-18 04:37:36 +1000554 if (redirect && file_tty(redirect) == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 f = redirect;
556 redirect = NULL;
557 }
558 spin_unlock(&redirect_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800559
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200560 tty_lock();
561
Arnd Bergmannec79d602010-06-01 22:53:01 +0200562 /* inuse_filps is protected by the single tty lock,
563 this really needs to change if we want to flush the
564 workqueue with the lock held */
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200565 check_tty_count(tty, "tty_hangup");
Alan Cox36ba7822009-11-30 13:18:51 +0000566
Nick Pigginee2ffa02010-08-18 04:37:35 +1000567 spin_lock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* This breaks for file handles being sent over AF_UNIX sockets ? */
Nick Piggind996b622010-08-18 04:37:36 +1000569 list_for_each_entry(priv, &tty->tty_files, list) {
570 filp = priv->file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (filp->f_op->write == redirected_tty_write)
572 cons_filp = filp;
573 if (filp->f_op->write != tty_write)
574 continue;
575 closecount++;
Arnd Bergmannec79d602010-06-01 22:53:01 +0200576 __tty_fasync(-1, filp, 0); /* can't block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 filp->f_op = &hung_up_tty_fops;
578 }
Nick Pigginee2ffa02010-08-18 04:37:35 +1000579 spin_unlock(&tty_files_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800580
Alan Coxc65c9bc2009-06-11 12:50:12 +0100581 tty_ldisc_hangup(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800584 if (tty->session) {
585 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800586 spin_lock_irq(&p->sighand->siglock);
Alan Cox9c9f4de2008-10-13 10:37:26 +0100587 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 p->signal->tty = NULL;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100589 /* We defer the dereferences outside fo
590 the tasklist lock */
591 refs++;
592 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800593 if (!p->signal->leader) {
594 spin_unlock_irq(&p->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 continue;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800596 }
597 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
598 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800599 put_pid(p->signal->tty_old_pgrp); /* A noop */
Alan Cox47f86832008-04-30 00:53:30 -0700600 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800601 if (tty->pgrp)
602 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -0700603 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800604 spin_unlock_irq(&p->sighand->siglock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800605 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607 read_unlock(&tasklist_lock);
608
Alan Cox47f86832008-04-30 00:53:30 -0700609 spin_lock_irqsave(&tty->ctrl_lock, flags);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100610 clear_bit(TTY_THROTTLED, &tty->flags);
611 clear_bit(TTY_PUSH, &tty->flags);
612 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -0600613 put_pid(tty->session);
614 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800615 tty->session = NULL;
616 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 tty->ctrl_status = 0;
Alan Coxc65c9bc2009-06-11 12:50:12 +0100618 set_bit(TTY_HUPPED, &tty->flags);
Alan Cox47f86832008-04-30 00:53:30 -0700619 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
620
Alan Cox9c9f4de2008-10-13 10:37:26 +0100621 /* Account for the p->signal references we killed */
622 while (refs--)
623 tty_kref_put(tty);
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /*
Alan Cox37bdfb02008-02-08 04:18:47 -0800626 * If one of the devices matches a console pointer, we
627 * cannot just call hangup() because that will cause
628 * tty->count and state->count to go out of sync.
629 * So we just call close() the right number of times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
631 if (cons_filp) {
Alan Coxf34d7a52008-04-30 00:54:13 -0700632 if (tty->ops->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 for (n = 0; n < closecount; n++)
Alan Coxf34d7a52008-04-30 00:54:13 -0700634 tty->ops->close(tty, cons_filp);
635 } else if (tty->ops->hangup)
636 (tty->ops->hangup)(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800637 /*
638 * We don't want to have driver/ldisc interactions beyond
639 * the ones we did here. The driver layer expects no
640 * calls after ->hangup() from the ldisc side. However we
641 * can't yet guarantee all that.
642 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 set_bit(TTY_HUPPED, &tty->flags);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100644 tty_ldisc_enable(tty);
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200645
646 tty_unlock();
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (f)
649 fput(f);
650}
651
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200652static void do_tty_hangup(struct work_struct *work)
653{
654 struct tty_struct *tty =
655 container_of(work, struct tty_struct, hangup_work);
656
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200657 __tty_hangup(tty);
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200658}
659
Alan Coxaf9b8972006-08-27 01:24:01 -0700660/**
661 * tty_hangup - trigger a hangup event
662 * @tty: tty to hangup
663 *
664 * A carrier loss (virtual or otherwise) has occurred on this like
665 * schedule a hangup sequence to run after this event.
666 */
667
Alan Cox37bdfb02008-02-08 04:18:47 -0800668void tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670#ifdef TTY_DEBUG_HANGUP
671 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
673#endif
674 schedule_work(&tty->hangup_work);
675}
676
677EXPORT_SYMBOL(tty_hangup);
678
Alan Coxaf9b8972006-08-27 01:24:01 -0700679/**
680 * tty_vhangup - process vhangup
681 * @tty: tty to hangup
682 *
683 * The user has asked via system call for the terminal to be hung up.
684 * We do this synchronously so that when the syscall returns the process
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200685 * is complete. That guarantee is necessary for security reasons.
Alan Coxaf9b8972006-08-27 01:24:01 -0700686 */
687
Alan Cox37bdfb02008-02-08 04:18:47 -0800688void tty_vhangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690#ifdef TTY_DEBUG_HANGUP
691 char buf[64];
692
693 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
694#endif
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200695 __tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
Alan Cox37bdfb02008-02-08 04:18:47 -0800697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698EXPORT_SYMBOL(tty_vhangup);
699
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200700
Alan Coxaf9b8972006-08-27 01:24:01 -0700701/**
Alan Cox2cb59982008-10-13 10:40:30 +0100702 * tty_vhangup_self - process vhangup for own ctty
703 *
704 * Perform a vhangup on the current controlling tty
705 */
706
707void tty_vhangup_self(void)
708{
709 struct tty_struct *tty;
710
Alan Cox2cb59982008-10-13 10:40:30 +0100711 tty = get_current_tty();
712 if (tty) {
713 tty_vhangup(tty);
714 tty_kref_put(tty);
715 }
Alan Cox2cb59982008-10-13 10:40:30 +0100716}
717
718/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700719 * tty_hung_up_p - was tty hung up
720 * @filp: file pointer of tty
721 *
722 * Return true if the tty has been subject to a vhangup or a carrier
723 * loss
724 */
725
Alan Cox37bdfb02008-02-08 04:18:47 -0800726int tty_hung_up_p(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 return (filp->f_op == &hung_up_tty_fops);
729}
730
731EXPORT_SYMBOL(tty_hung_up_p);
732
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800733static void session_clear_tty(struct pid *session)
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800734{
735 struct task_struct *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800736 do_each_pid_task(session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800737 proc_clear_tty(p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800738 } while_each_pid_task(session, PIDTYPE_SID, p);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800739}
740
Alan Coxaf9b8972006-08-27 01:24:01 -0700741/**
742 * disassociate_ctty - disconnect controlling tty
743 * @on_exit: true if exiting so need to "hang up" the session
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700745 * This function is typically called only by the session leader, when
746 * it wants to disassociate itself from its controlling tty.
747 *
748 * It performs the following functions:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
750 * (2) Clears the tty from being controlling the session
751 * (3) Clears the controlling tty for all processes in the
752 * session group.
753 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700754 * The argument on_exit is set to 1 if called when a process is
755 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
756 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800757 * Locking:
Arnd Bergmannec79d602010-06-01 22:53:01 +0200758 * BTM is taken for hysterical raisins, and held when
759 * called from no_tty().
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800760 * tty_mutex is taken to protect tty
761 * ->siglock is taken to protect ->signal/->sighand
762 * tasklist_lock is taken to walk process list for sessions
763 * ->siglock is taken to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766void disassociate_ctty(int on_exit)
767{
768 struct tty_struct *tty;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800769 struct pid *tty_pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Alan Cox5ec93d12009-11-30 13:18:45 +0000771 if (!current->signal->leader)
772 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800774 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800776 tty_pgrp = get_pid(tty->pgrp);
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200777 if (on_exit) {
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200778 if (tty->driver->type != TTY_DRIVER_TYPE_PTY)
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200779 tty_vhangup(tty);
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200780 }
Alan Cox452a00d2008-10-13 10:39:13 +0100781 tty_kref_put(tty);
Eric W. Biederman680a9672007-02-12 00:52:52 -0800782 } else if (on_exit) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800783 struct pid *old_pgrp;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800784 spin_lock_irq(&current->sighand->siglock);
785 old_pgrp = current->signal->tty_old_pgrp;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800786 current->signal->tty_old_pgrp = NULL;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800787 spin_unlock_irq(&current->sighand->siglock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800788 if (old_pgrp) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800789 kill_pgrp(old_pgrp, SIGHUP, on_exit);
790 kill_pgrp(old_pgrp, SIGCONT, on_exit);
791 put_pid(old_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return;
794 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800795 if (tty_pgrp) {
796 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!on_exit)
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800798 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
799 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800802 spin_lock_irq(&current->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700803 put_pid(current->signal->tty_old_pgrp);
Randy Dunlap23cac8d2007-02-20 13:58:05 -0800804 current->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800805 spin_unlock_irq(&current->sighand->siglock);
806
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800807 tty = get_current_tty();
808 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -0700809 unsigned long flags;
810 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800811 put_pid(tty->session);
812 put_pid(tty->pgrp);
813 tty->session = NULL;
814 tty->pgrp = NULL;
Alan Cox47f86832008-04-30 00:53:30 -0700815 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Cox452a00d2008-10-13 10:39:13 +0100816 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800817 } else {
818#ifdef TTY_DEBUG_HANGUP
819 printk(KERN_DEBUG "error attempted to write to tty [0x%p]"
820 " = NULL", tty);
821#endif
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* Now clear signal->tty under the lock */
825 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800826 session_clear_tty(task_session(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700830/**
831 *
832 * no_tty - Ensure the current process does not have a controlling tty
833 */
834void no_tty(void)
835{
836 struct task_struct *tsk = current;
Arnd Bergmannec79d602010-06-01 22:53:01 +0200837 tty_lock();
Alan Cox5ec93d12009-11-30 13:18:45 +0000838 disassociate_ctty(0);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200839 tty_unlock();
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700840 proc_clear_tty(tsk);
841}
842
Alan Coxaf9b8972006-08-27 01:24:01 -0700843
844/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200845 * stop_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700846 * @tty: tty to stop
847 *
848 * Perform flow control to the driver. For PTY/TTY pairs we
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200849 * must also propagate the TIOCKPKT status. May be called
Alan Coxaf9b8972006-08-27 01:24:01 -0700850 * on an already stopped device and will not re-call the driver
851 * method.
852 *
853 * This functionality is used by both the line disciplines for
854 * halting incoming flow and by the driver. It may therefore be
855 * called from any context, may be under the tty atomic_write_lock
856 * but not always.
857 *
858 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700859 * Uses the tty control lock internally
Alan Coxaf9b8972006-08-27 01:24:01 -0700860 */
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862void stop_tty(struct tty_struct *tty)
863{
Alan Cox04f378b2008-04-30 00:53:29 -0700864 unsigned long flags;
865 spin_lock_irqsave(&tty->ctrl_lock, flags);
866 if (tty->stopped) {
867 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 tty->stopped = 1;
871 if (tty->link && tty->link->packet) {
872 tty->ctrl_status &= ~TIOCPKT_START;
873 tty->ctrl_status |= TIOCPKT_STOP;
Davide Libenzi4b194492009-03-31 15:24:24 -0700874 wake_up_interruptible_poll(&tty->link->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Alan Cox04f378b2008-04-30 00:53:29 -0700876 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700877 if (tty->ops->stop)
878 (tty->ops->stop)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
881EXPORT_SYMBOL(stop_tty);
882
Alan Coxaf9b8972006-08-27 01:24:01 -0700883/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200884 * start_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700885 * @tty: tty to start
886 *
887 * Start a tty that has been stopped if at all possible. Perform
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200888 * any necessary wakeups and propagate the TIOCPKT status. If this
Alan Coxaf9b8972006-08-27 01:24:01 -0700889 * is the tty was previous stopped and is being started then the
890 * driver start method is invoked and the line discipline woken.
891 *
892 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700893 * ctrl_lock
Alan Coxaf9b8972006-08-27 01:24:01 -0700894 */
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896void start_tty(struct tty_struct *tty)
897{
Alan Cox04f378b2008-04-30 00:53:29 -0700898 unsigned long flags;
899 spin_lock_irqsave(&tty->ctrl_lock, flags);
900 if (!tty->stopped || tty->flow_stopped) {
901 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 tty->stopped = 0;
905 if (tty->link && tty->link->packet) {
906 tty->ctrl_status &= ~TIOCPKT_STOP;
907 tty->ctrl_status |= TIOCPKT_START;
Davide Libenzi4b194492009-03-31 15:24:24 -0700908 wake_up_interruptible_poll(&tty->link->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Alan Cox04f378b2008-04-30 00:53:29 -0700910 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700911 if (tty->ops->start)
912 (tty->ops->start)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /* If we have a running line discipline it may need kicking */
914 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
917EXPORT_SYMBOL(start_tty);
918
Alan Coxaf9b8972006-08-27 01:24:01 -0700919/**
920 * tty_read - read method for tty device files
921 * @file: pointer to tty file
922 * @buf: user buffer
923 * @count: size of user buffer
924 * @ppos: unused
925 *
926 * Perform the read system call function on this terminal device. Checks
927 * for hung up devices before calling the line discipline method.
928 *
929 * Locking:
Alan Cox47f86832008-04-30 00:53:30 -0700930 * Locks the line discipline internally while needed. Multiple
931 * read calls may be outstanding in parallel.
Alan Coxaf9b8972006-08-27 01:24:01 -0700932 */
933
Alan Cox37bdfb02008-02-08 04:18:47 -0800934static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 loff_t *ppos)
936{
937 int i;
Nick Piggind996b622010-08-18 04:37:36 +1000938 struct inode *inode = file->f_path.dentry->d_inode;
939 struct tty_struct *tty = file_tty(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 struct tty_ldisc *ld;
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 if (tty_paranoia_check(tty, inode, "tty_read"))
943 return -EIO;
944 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
945 return -EIO;
946
947 /* We want to wait for the line discipline to sort out in this
948 situation */
949 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +0100950 if (ld->ops->read)
951 i = (ld->ops->read)(tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 else
953 i = -EIO;
954 tty_ldisc_deref(ld);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (i > 0)
956 inode->i_atime = current_fs_time(inode->i_sb);
957 return i;
958}
959
Alan Cox9c1729d2007-07-15 23:39:43 -0700960void tty_write_unlock(struct tty_struct *tty)
961{
962 mutex_unlock(&tty->atomic_write_lock);
Davide Libenzi4b194492009-03-31 15:24:24 -0700963 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
Alan Cox9c1729d2007-07-15 23:39:43 -0700964}
965
966int tty_write_lock(struct tty_struct *tty, int ndelay)
967{
968 if (!mutex_trylock(&tty->atomic_write_lock)) {
969 if (ndelay)
970 return -EAGAIN;
971 if (mutex_lock_interruptible(&tty->atomic_write_lock))
972 return -ERESTARTSYS;
973 }
974 return 0;
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/*
978 * Split writes up in sane blocksizes to avoid
979 * denial-of-service type attacks
980 */
981static inline ssize_t do_tty_write(
982 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
983 struct tty_struct *tty,
984 struct file *file,
985 const char __user *buf,
986 size_t count)
987{
Alan Cox9c1729d2007-07-15 23:39:43 -0700988 ssize_t ret, written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 unsigned int chunk;
Alan Cox37bdfb02008-02-08 04:18:47 -0800990
Alan Cox9c1729d2007-07-15 23:39:43 -0700991 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
992 if (ret < 0)
993 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 /*
996 * We chunk up writes into a temporary buffer. This
997 * simplifies low-level drivers immensely, since they
998 * don't have locking issues and user mode accesses.
999 *
1000 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1001 * big chunk-size..
1002 *
1003 * The default chunk-size is 2kB, because the NTTY
1004 * layer has problems with bigger chunks. It will
1005 * claim to be able to handle more characters than
1006 * it actually does.
Alan Coxaf9b8972006-08-27 01:24:01 -07001007 *
1008 * FIXME: This can probably go away now except that 64K chunks
1009 * are too likely to fail unless switched to vmalloc...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
1011 chunk = 2048;
1012 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1013 chunk = 65536;
1014 if (count < chunk)
1015 chunk = count;
1016
Ingo Molnar70522e12006-03-23 03:00:31 -08001017 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (tty->write_cnt < chunk) {
Jason Wessel402fda92008-10-13 10:45:36 +01001019 unsigned char *buf_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 if (chunk < 1024)
1022 chunk = 1024;
1023
Jason Wessel402fda92008-10-13 10:45:36 +01001024 buf_chunk = kmalloc(chunk, GFP_KERNEL);
1025 if (!buf_chunk) {
Alan Cox9c1729d2007-07-15 23:39:43 -07001026 ret = -ENOMEM;
1027 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 kfree(tty->write_buf);
1030 tty->write_cnt = chunk;
Jason Wessel402fda92008-10-13 10:45:36 +01001031 tty->write_buf = buf_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033
1034 /* Do the write .. */
1035 for (;;) {
1036 size_t size = count;
1037 if (size > chunk)
1038 size = chunk;
1039 ret = -EFAULT;
1040 if (copy_from_user(tty->write_buf, buf, size))
1041 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 ret = write(tty, file, tty->write_buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (ret <= 0)
1044 break;
1045 written += ret;
1046 buf += ret;
1047 count -= ret;
1048 if (!count)
1049 break;
1050 ret = -ERESTARTSYS;
1051 if (signal_pending(current))
1052 break;
1053 cond_resched();
1054 }
1055 if (written) {
Josef Sipeka7113a92006-12-08 02:36:55 -08001056 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 inode->i_mtime = current_fs_time(inode->i_sb);
1058 ret = written;
1059 }
Alan Cox9c1729d2007-07-15 23:39:43 -07001060out:
1061 tty_write_unlock(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return ret;
1063}
1064
Alan Cox95f9bfc2008-10-13 10:39:23 +01001065/**
1066 * tty_write_message - write a message to a certain tty, not just the console.
1067 * @tty: the destination tty_struct
1068 * @msg: the message to write
1069 *
1070 * This is used for messages that need to be redirected to a specific tty.
1071 * We don't put it into the syslog queue right now maybe in the future if
1072 * really needed.
1073 *
Arnd Bergmannec79d602010-06-01 22:53:01 +02001074 * We must still hold the BTM and test the CLOSING flag for the moment.
Alan Cox95f9bfc2008-10-13 10:39:23 +01001075 */
1076
1077void tty_write_message(struct tty_struct *tty, char *msg)
1078{
Alan Cox95f9bfc2008-10-13 10:39:23 +01001079 if (tty) {
1080 mutex_lock(&tty->atomic_write_lock);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001081 tty_lock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001082 if (tty->ops->write && !test_bit(TTY_CLOSING, &tty->flags)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001083 tty_unlock();
Alan Cox95f9bfc2008-10-13 10:39:23 +01001084 tty->ops->write(tty, msg, strlen(msg));
Alan Coxeeb89d92009-11-30 13:18:29 +00001085 } else
Arnd Bergmannec79d602010-06-01 22:53:01 +02001086 tty_unlock();
Alan Cox95f9bfc2008-10-13 10:39:23 +01001087 tty_write_unlock(tty);
1088 }
Alan Cox95f9bfc2008-10-13 10:39:23 +01001089 return;
1090}
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
Alan Coxaf9b8972006-08-27 01:24:01 -07001093/**
1094 * tty_write - write method for tty device file
1095 * @file: tty file pointer
1096 * @buf: user data to write
1097 * @count: bytes to write
1098 * @ppos: unused
1099 *
1100 * Write data to a tty device via the line discipline.
1101 *
1102 * Locking:
1103 * Locks the line discipline as required
1104 * Writes to the tty driver are serialized by the atomic_write_lock
1105 * and are then processed in chunks to the device. The line discipline
Joe Petersona88a69c2009-01-02 13:40:53 +00001106 * write method will not be invoked in parallel for each device.
Alan Coxaf9b8972006-08-27 01:24:01 -07001107 */
1108
Alan Cox37bdfb02008-02-08 04:18:47 -08001109static ssize_t tty_write(struct file *file, const char __user *buf,
1110 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Josef Sipeka7113a92006-12-08 02:36:55 -08001112 struct inode *inode = file->f_path.dentry->d_inode;
Nick Piggind996b622010-08-18 04:37:36 +10001113 struct tty_struct *tty = file_tty(file);
1114 struct tty_ldisc *ld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 ssize_t ret;
Alan Cox37bdfb02008-02-08 04:18:47 -08001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (tty_paranoia_check(tty, inode, "tty_write"))
1118 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001119 if (!tty || !tty->ops->write ||
Alan Cox37bdfb02008-02-08 04:18:47 -08001120 (test_bit(TTY_IO_ERROR, &tty->flags)))
1121 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001122 /* Short term debug to catch buggy drivers */
1123 if (tty->ops->write_room == NULL)
1124 printk(KERN_ERR "tty driver %s lacks a write_room method.\n",
1125 tty->driver->name);
Alan Cox37bdfb02008-02-08 04:18:47 -08001126 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001127 if (!ld->ops->write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 ret = -EIO;
1129 else
Alan Coxa352def2008-07-16 21:53:12 +01001130 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 tty_ldisc_deref(ld);
1132 return ret;
1133}
1134
Alan Cox37bdfb02008-02-08 04:18:47 -08001135ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1136 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct file *p = NULL;
1139
1140 spin_lock(&redirect_lock);
1141 if (redirect) {
1142 get_file(redirect);
1143 p = redirect;
1144 }
1145 spin_unlock(&redirect_lock);
1146
1147 if (p) {
1148 ssize_t res;
1149 res = vfs_write(p, buf, count, &p->f_pos);
1150 fput(p);
1151 return res;
1152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return tty_write(file, buf, count, ppos);
1154}
1155
1156static char ptychar[] = "pqrstuvwxyzabcde";
1157
Alan Coxaf9b8972006-08-27 01:24:01 -07001158/**
1159 * pty_line_name - generate name for a pty
1160 * @driver: the tty driver in use
1161 * @index: the minor number
1162 * @p: output buffer of at least 6 bytes
1163 *
1164 * Generate a name from a driver reference and write it to the output
1165 * buffer.
1166 *
1167 * Locking: None
1168 */
1169static void pty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 int i = index + driver->name_base;
1172 /* ->name is initialized to "ttyp", but "tty" is expected */
1173 sprintf(p, "%s%c%x",
Alan Cox37bdfb02008-02-08 04:18:47 -08001174 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1175 ptychar[i >> 4 & 0xf], i & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176}
1177
Alan Coxaf9b8972006-08-27 01:24:01 -07001178/**
Alan Cox8b0a88d2008-10-13 10:42:19 +01001179 * tty_line_name - generate name for a tty
Alan Coxaf9b8972006-08-27 01:24:01 -07001180 * @driver: the tty driver in use
1181 * @index: the minor number
1182 * @p: output buffer of at least 7 bytes
1183 *
1184 * Generate a name from a driver reference and write it to the output
1185 * buffer.
1186 *
1187 * Locking: None
1188 */
1189static void tty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
1191 sprintf(p, "%s%d", driver->name, index + driver->name_base);
1192}
1193
Alan Cox99f1fe12008-10-13 10:42:00 +01001194/**
1195 * tty_driver_lookup_tty() - find an existing tty, if any
1196 * @driver: the driver for the tty
1197 * @idx: the minor number
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001198 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001199 * Return the tty, if found or ERR_PTR() otherwise.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001200 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001201 * Locking: tty_mutex must be held. If tty is found, the mutex must
1202 * be held until the 'fast-open' is also done. Will change once we
1203 * have refcounting in the driver and per driver locking
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001204 */
Jason Wessela47d5452009-01-02 13:43:04 +00001205static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001206 struct inode *inode, int idx)
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001207{
1208 struct tty_struct *tty;
1209
Alan Cox99f1fe12008-10-13 10:42:00 +01001210 if (driver->ops->lookup)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001211 return driver->ops->lookup(driver, inode, idx);
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001212
Alan Cox8b0a88d2008-10-13 10:42:19 +01001213 tty = driver->ttys[idx];
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001214 return tty;
1215}
1216
Alan Cox99f1fe12008-10-13 10:42:00 +01001217/**
Alan Coxbf970ee2008-10-13 10:42:39 +01001218 * tty_init_termios - helper for termios setup
1219 * @tty: the tty to set up
1220 *
1221 * Initialise the termios structures for this tty. Thus runs under
1222 * the tty_mutex currently so we can be relaxed about ordering.
1223 */
1224
1225int tty_init_termios(struct tty_struct *tty)
1226{
Alan Coxfe6e29f2008-10-13 10:44:08 +01001227 struct ktermios *tp;
Alan Coxbf970ee2008-10-13 10:42:39 +01001228 int idx = tty->index;
1229
1230 tp = tty->driver->termios[idx];
Alan Coxbf970ee2008-10-13 10:42:39 +01001231 if (tp == NULL) {
Alan Coxfe6e29f2008-10-13 10:44:08 +01001232 tp = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
1233 if (tp == NULL)
Alan Coxbf970ee2008-10-13 10:42:39 +01001234 return -ENOMEM;
Alan Coxbf970ee2008-10-13 10:42:39 +01001235 memcpy(tp, &tty->driver->init_termios,
1236 sizeof(struct ktermios));
1237 tty->driver->termios[idx] = tp;
Alan Coxbf970ee2008-10-13 10:42:39 +01001238 }
1239 tty->termios = tp;
Alan Coxfe6e29f2008-10-13 10:44:08 +01001240 tty->termios_locked = tp + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +01001241
1242 /* Compatibility until drivers always set this */
1243 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
1244 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
1245 return 0;
1246}
Alan Coxfe1ae7f2009-09-19 13:13:33 -07001247EXPORT_SYMBOL_GPL(tty_init_termios);
Alan Coxbf970ee2008-10-13 10:42:39 +01001248
1249/**
Alan Cox8b0a88d2008-10-13 10:42:19 +01001250 * tty_driver_install_tty() - install a tty entry in the driver
1251 * @driver: the driver for the tty
1252 * @tty: the tty
1253 *
1254 * Install a tty object into the driver tables. The tty->index field
Alan Coxbf970ee2008-10-13 10:42:39 +01001255 * will be set by the time this is called. This method is responsible
1256 * for ensuring any need additional structures are allocated and
1257 * configured.
Alan Cox8b0a88d2008-10-13 10:42:19 +01001258 *
1259 * Locking: tty_mutex for now
1260 */
1261static int tty_driver_install_tty(struct tty_driver *driver,
1262 struct tty_struct *tty)
1263{
Alan Coxbf970ee2008-10-13 10:42:39 +01001264 int idx = tty->index;
Alan Coxeeb89d92009-11-30 13:18:29 +00001265 int ret;
Alan Coxbf970ee2008-10-13 10:42:39 +01001266
Alan Coxeeb89d92009-11-30 13:18:29 +00001267 if (driver->ops->install) {
Alan Coxeeb89d92009-11-30 13:18:29 +00001268 ret = driver->ops->install(driver, tty);
Alan Coxeeb89d92009-11-30 13:18:29 +00001269 return ret;
1270 }
Alan Coxbf970ee2008-10-13 10:42:39 +01001271
1272 if (tty_init_termios(tty) == 0) {
1273 tty_driver_kref_get(driver);
1274 tty->count++;
1275 driver->ttys[idx] = tty;
1276 return 0;
1277 }
1278 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +01001279}
1280
1281/**
1282 * tty_driver_remove_tty() - remove a tty from the driver tables
1283 * @driver: the driver for the tty
1284 * @idx: the minor number
1285 *
1286 * Remvoe a tty object from the driver tables. The tty->index field
1287 * will be set by the time this is called.
1288 *
1289 * Locking: tty_mutex for now
1290 */
1291static void tty_driver_remove_tty(struct tty_driver *driver,
1292 struct tty_struct *tty)
1293{
1294 if (driver->ops->remove)
1295 driver->ops->remove(driver, tty);
1296 else
1297 driver->ttys[tty->index] = NULL;
1298}
1299
1300/*
1301 * tty_reopen() - fast re-open of an open tty
1302 * @tty - the tty to open
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001303 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001304 * Return 0 on success, -errno on error.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001305 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001306 * Locking: tty_mutex must be held from the time the tty was found
1307 * till this open completes.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001308 */
Alan Cox99f1fe12008-10-13 10:42:00 +01001309static int tty_reopen(struct tty_struct *tty)
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001310{
1311 struct tty_driver *driver = tty->driver;
1312
Jiri Slabye2efafb2010-11-29 10:16:53 +01001313 if (test_bit(TTY_CLOSING, &tty->flags) ||
1314 test_bit(TTY_LDISC_CHANGING, &tty->flags))
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001315 return -EIO;
1316
1317 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1318 driver->subtype == PTY_TYPE_MASTER) {
1319 /*
1320 * special case for PTY masters: only one open permitted,
1321 * and the slave side open count is incremented as well.
1322 */
1323 if (tty->count)
1324 return -EIO;
1325
1326 tty->link->count++;
1327 }
1328 tty->count++;
1329 tty->driver = driver; /* N.B. why do this every time?? */
1330
Alan Cox1aa4bed2009-06-16 17:01:33 +01001331 mutex_lock(&tty->ldisc_mutex);
Alan Cox99f1fe12008-10-13 10:42:00 +01001332 WARN_ON(!test_bit(TTY_LDISC, &tty->flags));
Alan Cox1aa4bed2009-06-16 17:01:33 +01001333 mutex_unlock(&tty->ldisc_mutex);
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001334
1335 return 0;
1336}
1337
Alan Coxaf9b8972006-08-27 01:24:01 -07001338/**
Alan Coxd81ed102008-10-13 10:41:42 +01001339 * tty_init_dev - initialise a tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07001340 * @driver: tty driver we are opening a device on
1341 * @idx: device index
Alan Cox15582d32008-10-13 10:41:03 +01001342 * @ret_tty: returned tty structure
1343 * @first_ok: ok to open a new device (used by ptmx)
Alan Coxaf9b8972006-08-27 01:24:01 -07001344 *
1345 * Prepare a tty device. This may not be a "new" clean device but
1346 * could also be an active device. The pty drivers require special
1347 * handling because of this.
1348 *
1349 * Locking:
1350 * The function is called under the tty_mutex, which
1351 * protects us from the tty struct or driver itself going away.
1352 *
1353 * On exit the tty device has the line discipline attached and
1354 * a reference count of 1. If a pair was created for pty/tty use
1355 * and the other was a pty master then it too has a reference count of 1.
1356 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
Ingo Molnar70522e12006-03-23 03:00:31 -08001358 * failed open. The new code protects the open with a mutex, so it's
1359 * really quite straightforward. The mutex locking can probably be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 * relaxed for the (most common) case of reopening a tty.
1361 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001362
Alan Cox73ec06f2008-10-13 10:42:29 +01001363struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx,
1364 int first_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Alan Coxbf970ee2008-10-13 10:42:39 +01001366 struct tty_struct *tty;
Alan Cox73ec06f2008-10-13 10:42:29 +01001367 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001369 /* Check if pty master is being opened multiple times */
Alan Cox15582d32008-10-13 10:41:03 +01001370 if (driver->subtype == PTY_TYPE_MASTER &&
Alan Coxeeb89d92009-11-30 13:18:29 +00001371 (driver->flags & TTY_DRIVER_DEVPTS_MEM) && !first_ok) {
Alan Cox73ec06f2008-10-13 10:42:29 +01001372 return ERR_PTR(-EIO);
Alan Coxeeb89d92009-11-30 13:18:29 +00001373 }
Alan Cox73ec06f2008-10-13 10:42:29 +01001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /*
1376 * First time open is complex, especially for PTY devices.
1377 * This code guarantees that either everything succeeds and the
1378 * TTY is ready for operation, or else the table slots are vacated
Alan Cox37bdfb02008-02-08 04:18:47 -08001379 * and the allocated memory released. (Except that the termios
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 * and locked termios may be retained.)
1381 */
1382
Alan Cox73ec06f2008-10-13 10:42:29 +01001383 if (!try_module_get(driver->owner))
1384 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 tty = alloc_tty_struct();
Alan Cox37bdfb02008-02-08 04:18:47 -08001387 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 goto fail_no_mem;
Alan Coxbf970ee2008-10-13 10:42:39 +01001389 initialize_tty_struct(tty, driver, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Alan Cox73ec06f2008-10-13 10:42:29 +01001391 retval = tty_driver_install_tty(driver, tty);
Alan Coxbf970ee2008-10-13 10:42:39 +01001392 if (retval < 0) {
1393 free_tty_struct(tty);
1394 module_put(driver->owner);
1395 return ERR_PTR(retval);
1396 }
Alan Cox8b0a88d2008-10-13 10:42:19 +01001397
Alan Cox37bdfb02008-02-08 04:18:47 -08001398 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 * Structures all installed ... call the ldisc open routines.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001400 * If we fail here just call release_tty to clean up. No need
1401 * to decrement the use counts, as release_tty doesn't care.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 */
Alan Coxbf970ee2008-10-13 10:42:39 +01001403 retval = tty_ldisc_setup(tty, tty->link);
Alan Cox01e1abb2008-07-22 11:16:55 +01001404 if (retval)
1405 goto release_mem_out;
Alan Cox73ec06f2008-10-13 10:42:29 +01001406 return tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408fail_no_mem:
1409 module_put(driver->owner);
Alan Cox73ec06f2008-10-13 10:42:29 +01001410 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001412 /* call the tty release_tty routine to clean out this slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413release_mem_out:
Akinobu Mita40509142006-09-29 02:01:27 -07001414 if (printk_ratelimit())
Alan Coxd81ed102008-10-13 10:41:42 +01001415 printk(KERN_INFO "tty_init_dev: ldisc open failed, "
Akinobu Mita40509142006-09-29 02:01:27 -07001416 "clearing slot %d\n", idx);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001417 release_tty(tty, idx);
Alan Cox73ec06f2008-10-13 10:42:29 +01001418 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Alan Coxfeebed62008-10-13 10:41:30 +01001421void tty_free_termios(struct tty_struct *tty)
1422{
1423 struct ktermios *tp;
1424 int idx = tty->index;
1425 /* Kill this flag and push into drivers for locking etc */
1426 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
1427 /* FIXME: Locking on ->termios array */
1428 tp = tty->termios;
1429 tty->driver->termios[idx] = NULL;
1430 kfree(tp);
Alan Coxfeebed62008-10-13 10:41:30 +01001431 }
1432}
1433EXPORT_SYMBOL(tty_free_termios);
1434
1435void tty_shutdown(struct tty_struct *tty)
1436{
Alan Cox8b0a88d2008-10-13 10:42:19 +01001437 tty_driver_remove_tty(tty->driver, tty);
Alan Coxfeebed62008-10-13 10:41:30 +01001438 tty_free_termios(tty);
1439}
1440EXPORT_SYMBOL(tty_shutdown);
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.
Alan Coxb50989d2009-09-19 13:13:22 -07001454 *
1455 * This method gets called from a work queue so that the driver private
Dave Youngf278a2f2009-09-27 16:00:42 +00001456 * cleanup ops can sleep (needed for USB at least)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 */
Alan Coxb50989d2009-09-19 13:13:22 -07001458static void release_one_tty(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Alan Coxb50989d2009-09-19 13:13:22 -07001460 struct tty_struct *tty =
1461 container_of(work, struct tty_struct, hangup_work);
Alan Cox6f967f72008-10-13 10:37:36 +01001462 struct tty_driver *driver = tty->driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Dave Youngf278a2f2009-09-27 16:00:42 +00001464 if (tty->ops->cleanup)
1465 tty->ops->cleanup(tty);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 tty->magic = 0;
Alan Cox7d7b93c2008-10-13 10:42:09 +01001468 tty_driver_kref_put(driver);
Alan Cox6f967f72008-10-13 10:37:36 +01001469 module_put(driver->owner);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001470
Nick Pigginee2ffa02010-08-18 04:37:35 +10001471 spin_lock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 list_del_init(&tty->tty_files);
Nick Pigginee2ffa02010-08-18 04:37:35 +10001473 spin_unlock(&tty_files_lock);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001474
Oleg Nesterov6da8d862010-04-02 18:05:12 +02001475 put_pid(tty->pgrp);
1476 put_pid(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 free_tty_struct(tty);
1478}
1479
Alan Coxb50989d2009-09-19 13:13:22 -07001480static void queue_release_one_tty(struct kref *kref)
1481{
1482 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
Dave Youngf278a2f2009-09-27 16:00:42 +00001483
1484 if (tty->ops->shutdown)
1485 tty->ops->shutdown(tty);
1486 else
1487 tty_shutdown(tty);
1488
Alan Coxb50989d2009-09-19 13:13:22 -07001489 /* The hangup queue is now free so we can reuse it rather than
1490 waste a chunk of memory for each port */
1491 INIT_WORK(&tty->hangup_work, release_one_tty);
1492 schedule_work(&tty->hangup_work);
1493}
1494
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001495/**
Alan Cox9c9f4de2008-10-13 10:37:26 +01001496 * tty_kref_put - release a tty kref
1497 * @tty: tty device
1498 *
1499 * Release a reference to a tty device and if need be let the kref
1500 * layer destruct the object for us
1501 */
1502
1503void tty_kref_put(struct tty_struct *tty)
1504{
1505 if (tty)
Alan Coxb50989d2009-09-19 13:13:22 -07001506 kref_put(&tty->kref, queue_release_one_tty);
Alan Cox9c9f4de2008-10-13 10:37:26 +01001507}
1508EXPORT_SYMBOL(tty_kref_put);
1509
1510/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001511 * release_tty - release tty structure memory
1512 *
1513 * Release both @tty and a possible linked partner (think pty pair),
1514 * and decrement the refcount of the backing module.
1515 *
1516 * Locking:
1517 * tty_mutex - sometimes only
1518 * takes the file list lock internally when working on the list
1519 * of ttys that the driver keeps.
1520 * FIXME: should we require tty_mutex is held here ??
Alan Cox9c9f4de2008-10-13 10:37:26 +01001521 *
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001522 */
1523static void release_tty(struct tty_struct *tty, int idx)
1524{
Alan Cox9c9f4de2008-10-13 10:37:26 +01001525 /* This should always be true but check for the moment */
1526 WARN_ON(tty->index != idx);
1527
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001528 if (tty->link)
Alan Cox9c9f4de2008-10-13 10:37:26 +01001529 tty_kref_put(tty->link);
1530 tty_kref_put(tty);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001531}
1532
Alan Coxeeb89d92009-11-30 13:18:29 +00001533/**
1534 * tty_release - vfs callback for close
1535 * @inode: inode of tty
1536 * @filp: file pointer for handle to tty
1537 *
1538 * Called the last time each file handle is closed that references
1539 * this tty. There may however be several such references.
1540 *
1541 * Locking:
1542 * Takes bkl. See tty_release_dev
1543 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 * Even releasing the tty structures is a tricky business.. We have
1545 * to be very careful that the structures are all released at the
1546 * same time, as interrupts might otherwise get the wrong pointers.
1547 *
1548 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1549 * lead to double frees or releasing memory still in use.
1550 */
Alan Coxeeb89d92009-11-30 13:18:29 +00001551
1552int tty_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Nick Piggind996b622010-08-18 04:37:36 +10001554 struct tty_struct *tty = file_tty(filp);
1555 struct tty_struct *o_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 int pty_master, tty_closing, o_tty_closing, do_sleep;
Paul Fulghum14a62832006-04-10 22:54:19 -07001557 int devpts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 int idx;
1559 char buf[64];
Alan Cox37bdfb02008-02-08 04:18:47 -08001560
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001561 if (tty_paranoia_check(tty, inode, "tty_release_dev"))
Alan Coxeeb89d92009-11-30 13:18:29 +00001562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Arnd Bergmannec79d602010-06-01 22:53:01 +02001564 tty_lock();
Alan Coxd81ed102008-10-13 10:41:42 +01001565 check_tty_count(tty, "tty_release_dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Arnd Bergmannec79d602010-06-01 22:53:01 +02001567 __tty_fasync(-1, filp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 idx = tty->index;
1570 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1571 tty->driver->subtype == PTY_TYPE_MASTER);
1572 devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 o_tty = tty->link;
1574
1575#ifdef TTY_PARANOIA_CHECK
1576 if (idx < 0 || idx >= tty->driver->num) {
Alan Coxd81ed102008-10-13 10:41:42 +01001577 printk(KERN_DEBUG "tty_release_dev: bad idx when trying to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 "free (%s)\n", tty->name);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001579 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001580 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
Alan Cox8b0a88d2008-10-13 10:42:19 +01001582 if (!devpts) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (tty != tty->driver->ttys[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001584 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001585 printk(KERN_DEBUG "tty_release_dev: driver.table[%d] not tty "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 "for (%s)\n", idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589 if (tty->termios != tty->driver->termios[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001590 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001591 printk(KERN_DEBUG "tty_release_dev: driver.termios[%d] not termios "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 "for (%s)\n",
1593 idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597#endif
1598
1599#ifdef TTY_DEBUG_HANGUP
Alan Coxd81ed102008-10-13 10:41:42 +01001600 printk(KERN_DEBUG "tty_release_dev of %s (tty count=%d)...",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 tty_name(tty, buf), tty->count);
1602#endif
1603
1604#ifdef TTY_PARANOIA_CHECK
1605 if (tty->driver->other &&
1606 !(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1607 if (o_tty != tty->driver->other->ttys[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001608 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001609 printk(KERN_DEBUG "tty_release_dev: other->table[%d] "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 "not o_tty for (%s)\n",
1611 idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001612 return 0 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 }
1614 if (o_tty->termios != tty->driver->other->termios[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001615 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001616 printk(KERN_DEBUG "tty_release_dev: other->termios[%d] "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 "not o_termios for (%s)\n",
1618 idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (o_tty->link != tty) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001622 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001623 printk(KERN_DEBUG "tty_release_dev: bad pty pointers\n");
Alan Coxeeb89d92009-11-30 13:18:29 +00001624 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
1626 }
1627#endif
Alan Coxf34d7a52008-04-30 00:54:13 -07001628 if (tty->ops->close)
1629 tty->ops->close(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Arnd Bergmannec79d602010-06-01 22:53:01 +02001631 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /*
1633 * Sanity check: if tty->count is going to zero, there shouldn't be
1634 * any waiters on tty->read_wait or tty->write_wait. We test the
1635 * wait queues and kick everyone out _before_ actually starting to
1636 * close. This ensures that we won't block while releasing the tty
1637 * structure.
1638 *
1639 * The test for the o_tty closing is necessary, since the master and
1640 * slave sides may close in any order. If the slave side closes out
1641 * first, its count will be one, since the master side holds an open.
1642 * Thus this test wouldn't be triggered at the time the slave closes,
1643 * so we do it now.
1644 *
1645 * Note that it's possible for the tty to be opened again while we're
1646 * flushing out waiters. By recalculating the closing flags before
1647 * each iteration we avoid any problems.
1648 */
1649 while (1) {
1650 /* Guard against races with tty->count changes elsewhere and
1651 opens on /dev/tty */
Alan Cox37bdfb02008-02-08 04:18:47 -08001652
Ingo Molnar70522e12006-03-23 03:00:31 -08001653 mutex_lock(&tty_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001654 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 tty_closing = tty->count <= 1;
1656 o_tty_closing = o_tty &&
1657 (o_tty->count <= (pty_master ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 do_sleep = 0;
1659
1660 if (tty_closing) {
1661 if (waitqueue_active(&tty->read_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001662 wake_up_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 do_sleep++;
1664 }
1665 if (waitqueue_active(&tty->write_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001666 wake_up_poll(&tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 do_sleep++;
1668 }
1669 }
1670 if (o_tty_closing) {
1671 if (waitqueue_active(&o_tty->read_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001672 wake_up_poll(&o_tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 do_sleep++;
1674 }
1675 if (waitqueue_active(&o_tty->write_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001676 wake_up_poll(&o_tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 do_sleep++;
1678 }
1679 }
1680 if (!do_sleep)
1681 break;
1682
Alan Coxd81ed102008-10-13 10:41:42 +01001683 printk(KERN_WARNING "tty_release_dev: %s: read/write wait queue "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 "active!\n", tty_name(tty, buf));
Arnd Bergmannec79d602010-06-01 22:53:01 +02001685 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001686 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 schedule();
Alan Cox37bdfb02008-02-08 04:18:47 -08001688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001691 * The closing flags are now consistent with the open counts on
1692 * both sides, and we've completed the last operation that could
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 * block, so it's safe to proceed with closing.
1694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 if (pty_master) {
1696 if (--o_tty->count < 0) {
Alan Coxd81ed102008-10-13 10:41:42 +01001697 printk(KERN_WARNING "tty_release_dev: bad pty slave count "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 "(%d) for %s\n",
1699 o_tty->count, tty_name(o_tty, buf));
1700 o_tty->count = 0;
1701 }
1702 }
1703 if (--tty->count < 0) {
Alan Coxd81ed102008-10-13 10:41:42 +01001704 printk(KERN_WARNING "tty_release_dev: bad tty->count (%d) for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 tty->count, tty_name(tty, buf));
1706 tty->count = 0;
1707 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 /*
1710 * We've decremented tty->count, so we need to remove this file
1711 * descriptor off the tty->tty_files list; this serves two
1712 * purposes:
1713 * - check_tty_count sees the correct number of file descriptors
1714 * associated with this tty.
1715 * - do_tty_hangup no longer sees this file descriptor as
1716 * something that needs to be handled for hangups.
1717 */
Nick Piggind996b622010-08-18 04:37:36 +10001718 tty_del_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 /*
1721 * Perform some housekeeping before deciding whether to return.
1722 *
1723 * Set the TTY_CLOSING flag if this was the last open. In the
1724 * case of a pty we may have to wait around for the other side
1725 * to close, and TTY_CLOSING makes sure we can't be reopened.
1726 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001727 if (tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 set_bit(TTY_CLOSING, &tty->flags);
Alan Cox37bdfb02008-02-08 04:18:47 -08001729 if (o_tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 set_bit(TTY_CLOSING, &o_tty->flags);
1731
1732 /*
1733 * If _either_ side is closing, make sure there aren't any
1734 * processes that still think tty or o_tty is their controlling
1735 * tty.
1736 */
1737 if (tty_closing || o_tty_closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001739 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (o_tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001741 session_clear_tty(o_tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 read_unlock(&tasklist_lock);
1743 }
1744
Ingo Molnar70522e12006-03-23 03:00:31 -08001745 mutex_unlock(&tty_mutex);
Paul Fulghumda965822006-02-14 13:53:00 -08001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /* check whether both sides are closing ... */
Alan Coxeeb89d92009-11-30 13:18:29 +00001748 if (!tty_closing || (o_tty && !o_tty_closing)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001749 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001750 return 0;
1751 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753#ifdef TTY_DEBUG_HANGUP
1754 printk(KERN_DEBUG "freeing tty structure...");
1755#endif
1756 /*
Alan Cox01e1abb2008-07-22 11:16:55 +01001757 * Ask the line discipline code to release its structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 */
Alan Cox01e1abb2008-07-22 11:16:55 +01001759 tty_ldisc_release(tty, o_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 /*
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001761 * The release_tty function takes care of the details of clearing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 * the slots and preserving the termios structure.
1763 */
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001764 release_tty(tty, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /* Make this pty number available for reallocation */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07001767 if (devpts)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001768 devpts_kill_index(inode, idx);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001769 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
Alan Coxaf9b8972006-08-27 01:24:01 -07001773/**
Alan Coxeeb89d92009-11-30 13:18:29 +00001774 * tty_open - open a tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07001775 * @inode: inode of device file
1776 * @filp: file pointer to tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001778 * tty_open and tty_release keep up the tty count that contains the
1779 * number of opens done on a tty. We cannot use the inode-count, as
1780 * different inodes might point to the same tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001782 * Open-counting is needed for pty masters, as well as for keeping
1783 * track of serial lines: DTR is dropped when the last close happens.
1784 * (This is not done solely through tty->count, now. - Ted 1/27/92)
1785 *
1786 * The termios state of a pty is reset on first open so that
1787 * settings don't persist across reuse.
1788 *
Alan Coxd81ed102008-10-13 10:41:42 +01001789 * Locking: tty_mutex protects tty, get_tty_driver and tty_init_dev work.
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001790 * tty->count should protect the rest.
1791 * ->siglock protects ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001793
Alan Coxeeb89d92009-11-30 13:18:29 +00001794static int tty_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001796 struct tty_struct *tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 int noctty, retval;
1798 struct tty_driver *driver;
1799 int index;
1800 dev_t device = inode->i_rdev;
Andrew Morton846c1512009-04-02 16:56:36 -07001801 unsigned saved_flags = filp->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 nonseekable_open(inode, filp);
Alan Cox37bdfb02008-02-08 04:18:47 -08001804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805retry_open:
1806 noctty = filp->f_flags & O_NOCTTY;
1807 index = -1;
1808 retval = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001809
Ingo Molnar70522e12006-03-23 03:00:31 -08001810 mutex_lock(&tty_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001811 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Alan Cox37bdfb02008-02-08 04:18:47 -08001813 if (device == MKDEV(TTYAUX_MAJOR, 0)) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001814 tty = get_current_tty();
1815 if (!tty) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001816 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001817 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return -ENXIO;
1819 }
Alan Cox7d7b93c2008-10-13 10:42:09 +01001820 driver = tty_driver_kref_get(tty->driver);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001821 index = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1823 /* noctty = 1; */
Alan Cox452a00d2008-10-13 10:39:13 +01001824 /* FIXME: Should we take a driver reference ? */
1825 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 goto got_driver;
1827 }
1828#ifdef CONFIG_VT
Alan Cox37bdfb02008-02-08 04:18:47 -08001829 if (device == MKDEV(TTY_MAJOR, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 extern struct tty_driver *console_driver;
Alan Cox7d7b93c2008-10-13 10:42:09 +01001831 driver = tty_driver_kref_get(console_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 index = fg_console;
1833 noctty = 1;
1834 goto got_driver;
1835 }
1836#endif
Alan Cox37bdfb02008-02-08 04:18:47 -08001837 if (device == MKDEV(TTYAUX_MAJOR, 1)) {
Will Newton296fa7f2008-12-01 11:36:06 +00001838 struct tty_driver *console_driver = console_device(&index);
1839 if (console_driver) {
1840 driver = tty_driver_kref_get(console_driver);
1841 if (driver) {
1842 /* Don't let /dev/console block */
1843 filp->f_flags |= O_NONBLOCK;
1844 noctty = 1;
1845 goto got_driver;
1846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
Arnd Bergmannec79d602010-06-01 22:53:01 +02001848 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001849 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return -ENODEV;
1851 }
1852
1853 driver = get_tty_driver(device, &index);
1854 if (!driver) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001855 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001856 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return -ENODEV;
1858 }
1859got_driver:
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001860 if (!tty) {
1861 /* check whether we're reopening an existing tty */
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001862 tty = tty_driver_lookup_tty(driver, inode, index);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001863
Eric Paris808ffa32009-01-27 11:50:37 +00001864 if (IS_ERR(tty)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001865 tty_unlock();
Eric Paris808ffa32009-01-27 11:50:37 +00001866 mutex_unlock(&tty_mutex);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001867 return PTR_ERR(tty);
Eric Paris808ffa32009-01-27 11:50:37 +00001868 }
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001869 }
1870
1871 if (tty) {
1872 retval = tty_reopen(tty);
1873 if (retval)
1874 tty = ERR_PTR(retval);
1875 } else
1876 tty = tty_init_dev(driver, index, 0);
1877
Ingo Molnar70522e12006-03-23 03:00:31 -08001878 mutex_unlock(&tty_mutex);
Alan Cox7d7b93c2008-10-13 10:42:09 +01001879 tty_driver_kref_put(driver);
Alan Coxeeb89d92009-11-30 13:18:29 +00001880 if (IS_ERR(tty)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001881 tty_unlock();
Alan Cox73ec06f2008-10-13 10:42:29 +01001882 return PTR_ERR(tty);
Alan Coxeeb89d92009-11-30 13:18:29 +00001883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Pekka Enbergf573bd12010-08-24 07:48:34 +03001885 retval = tty_add_file(tty, filp);
1886 if (retval) {
1887 tty_unlock();
1888 return retval;
1889 }
Nick Piggind996b622010-08-18 04:37:36 +10001890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 check_tty_count(tty, "tty_open");
1892 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1893 tty->driver->subtype == PTY_TYPE_MASTER)
1894 noctty = 1;
1895#ifdef TTY_DEBUG_HANGUP
1896 printk(KERN_DEBUG "opening %s...", tty->name);
1897#endif
1898 if (!retval) {
Alan Coxf34d7a52008-04-30 00:54:13 -07001899 if (tty->ops->open)
1900 retval = tty->ops->open(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 else
1902 retval = -ENODEV;
1903 }
1904 filp->f_flags = saved_flags;
1905
Alan Cox37bdfb02008-02-08 04:18:47 -08001906 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) &&
1907 !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 retval = -EBUSY;
1909
1910 if (retval) {
1911#ifdef TTY_DEBUG_HANGUP
1912 printk(KERN_DEBUG "error %d in opening %s...", retval,
1913 tty->name);
1914#endif
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001915 tty_unlock(); /* need to call tty_release without BTM */
Alan Coxeeb89d92009-11-30 13:18:29 +00001916 tty_release(inode, filp);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001917 if (retval != -ERESTARTSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return retval;
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001919
1920 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return retval;
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 schedule();
1924 /*
1925 * Need to reset f_op in case a hangup happened.
1926 */
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001927 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (filp->f_op == &hung_up_tty_fops)
1929 filp->f_op = &tty_fops;
Arnd Bergmannec79d602010-06-01 22:53:01 +02001930 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 goto retry_open;
1932 }
Arnd Bergmannec79d602010-06-01 22:53:01 +02001933 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001934
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001935
1936 mutex_lock(&tty_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001937 tty_lock();
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001938 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (!noctty &&
1940 current->signal->leader &&
1941 !current->signal->tty &&
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001942 tty->session == NULL)
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07001943 __proc_set_tty(current, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001944 spin_unlock_irq(&current->sighand->siglock);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001945 tty_unlock();
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001946 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 return 0;
1948}
1949
Jonathan Corbet39d95b92008-05-16 09:10:50 -06001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Alan Coxaf9b8972006-08-27 01:24:01 -07001952/**
1953 * tty_poll - check tty status
1954 * @filp: file being polled
1955 * @wait: poll wait structures to update
1956 *
1957 * Call the line discipline polling method to obtain the poll
1958 * status of the device.
1959 *
1960 * Locking: locks called line discipline but ldisc poll method
1961 * may be re-entered freely by other callers.
1962 */
1963
Alan Cox37bdfb02008-02-08 04:18:47 -08001964static unsigned int tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
Nick Piggind996b622010-08-18 04:37:36 +10001966 struct tty_struct *tty = file_tty(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 struct tty_ldisc *ld;
1968 int ret = 0;
1969
Josef Sipeka7113a92006-12-08 02:36:55 -08001970 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_poll"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001974 if (ld->ops->poll)
1975 ret = (ld->ops->poll)(tty, filp, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 tty_ldisc_deref(ld);
1977 return ret;
1978}
1979
Arnd Bergmannec79d602010-06-01 22:53:01 +02001980static int __tty_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
Nick Piggind996b622010-08-18 04:37:36 +10001982 struct tty_struct *tty = file_tty(filp);
Alan Cox47f86832008-04-30 00:53:30 -07001983 unsigned long flags;
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001984 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Josef Sipeka7113a92006-12-08 02:36:55 -08001986 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_fasync"))
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001987 goto out;
Alan Cox37bdfb02008-02-08 04:18:47 -08001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 retval = fasync_helper(fd, filp, on, &tty->fasync);
1990 if (retval <= 0)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001991 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 if (on) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001994 enum pid_type type;
1995 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (!waitqueue_active(&tty->read_wait))
1997 tty->minimum_to_wake = 1;
Alan Cox47f86832008-04-30 00:53:30 -07001998 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001999 if (tty->pgrp) {
2000 pid = tty->pgrp;
2001 type = PIDTYPE_PGID;
2002 } else {
2003 pid = task_pid(current);
2004 type = PIDTYPE_PID;
2005 }
Linus Torvalds80e1e822010-02-07 10:11:23 -08002006 get_pid(pid);
Greg Kroah-Hartman70362512009-12-17 07:07:19 -08002007 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds80e1e822010-02-07 10:11:23 -08002008 retval = __f_setown(filp, pid, type, 0);
2009 put_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (retval)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002011 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 } else {
2013 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
2014 tty->minimum_to_wake = N_TTY_BUF_SIZE;
2015 }
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002016 retval = 0;
2017out:
Arnd Bergmannec79d602010-06-01 22:53:01 +02002018 return retval;
2019}
2020
2021static int tty_fasync(int fd, struct file *filp, int on)
2022{
2023 int retval;
2024 tty_lock();
2025 retval = __tty_fasync(fd, filp, on);
2026 tty_unlock();
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002027 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
Alan Coxaf9b8972006-08-27 01:24:01 -07002030/**
2031 * tiocsti - fake input character
2032 * @tty: tty to fake input into
2033 * @p: pointer to character
2034 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02002035 * Fake input to a tty device. Does the necessary locking and
Alan Coxaf9b8972006-08-27 01:24:01 -07002036 * input management.
2037 *
2038 * FIXME: does not honour flow control ??
2039 *
2040 * Locking:
2041 * Called functions take tty_ldisc_lock
2042 * current->signal->tty check is safe without locks
Alan Cox28298232006-09-29 02:00:58 -07002043 *
2044 * FIXME: may race normal receive processing
Alan Coxaf9b8972006-08-27 01:24:01 -07002045 */
2046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047static int tiocsti(struct tty_struct *tty, char __user *p)
2048{
2049 char ch, mbz = 0;
2050 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2053 return -EPERM;
2054 if (get_user(ch, p))
2055 return -EFAULT;
Al Viro1e641742008-12-09 09:23:33 +00002056 tty_audit_tiocsti(tty, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002058 ld->ops->receive_buf(tty, &ch, &mbz, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 tty_ldisc_deref(ld);
2060 return 0;
2061}
2062
Alan Coxaf9b8972006-08-27 01:24:01 -07002063/**
2064 * tiocgwinsz - implement window query ioctl
2065 * @tty; tty
2066 * @arg: user buffer for result
2067 *
Alan Cox808a0d32006-09-29 02:00:40 -07002068 * Copies the kernel idea of the window size into the user buffer.
Alan Coxaf9b8972006-08-27 01:24:01 -07002069 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002070 * Locking: tty->termios_mutex is taken to ensure the winsize data
Alan Cox808a0d32006-09-29 02:00:40 -07002071 * is consistent.
Alan Coxaf9b8972006-08-27 01:24:01 -07002072 */
2073
Alan Cox37bdfb02008-02-08 04:18:47 -08002074static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Alan Cox808a0d32006-09-29 02:00:40 -07002076 int err;
2077
Arjan van de Ven5785c952006-09-29 02:00:43 -07002078 mutex_lock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002079 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
Arjan van de Ven5785c952006-09-29 02:00:43 -07002080 mutex_unlock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002081
2082 return err ? -EFAULT: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
2084
Alan Coxaf9b8972006-08-27 01:24:01 -07002085/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002086 * tty_do_resize - resize event
2087 * @tty: tty being resized
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002088 * @rows: rows (character)
2089 * @cols: cols (character)
Alan Coxaf9b8972006-08-27 01:24:01 -07002090 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08002091 * Update the termios variables and send the necessary signals to
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002092 * peform a terminal resize correctly
Alan Coxaf9b8972006-08-27 01:24:01 -07002093 */
2094
Alan Coxfc6f6232009-01-02 13:43:17 +00002095int tty_do_resize(struct tty_struct *tty, struct winsize *ws)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Alan Coxfc6f6232009-01-02 13:43:17 +00002097 struct pid *pgrp;
Alan Cox47f86832008-04-30 00:53:30 -07002098 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Alan Coxfc6f6232009-01-02 13:43:17 +00002100 /* Lock the tty */
2101 mutex_lock(&tty->termios_mutex);
2102 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
Alan Coxca9bda02006-09-29 02:00:03 -07002103 goto done;
Alan Cox47f86832008-04-30 00:53:30 -07002104 /* Get the PID values and reference them so we can
2105 avoid holding the tty ctrl lock while sending signals */
2106 spin_lock_irqsave(&tty->ctrl_lock, flags);
2107 pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002108 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2109
2110 if (pgrp)
2111 kill_pgrp(pgrp, SIGWINCH, 1);
Alan Cox47f86832008-04-30 00:53:30 -07002112 put_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002113
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002114 tty->winsize = *ws;
Alan Coxca9bda02006-09-29 02:00:03 -07002115done:
Alan Coxfc6f6232009-01-02 13:43:17 +00002116 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 return 0;
2118}
2119
Alan Coxaf9b8972006-08-27 01:24:01 -07002120/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002121 * tiocswinsz - implement window size set ioctl
Alan Coxfc6f6232009-01-02 13:43:17 +00002122 * @tty; tty side of tty
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002123 * @arg: user buffer for result
2124 *
2125 * Copies the user idea of the window size to the kernel. Traditionally
2126 * this is just advisory information but for the Linux console it
2127 * actually has driver level meaning and triggers a VC resize.
2128 *
2129 * Locking:
2130 * Driver dependant. The default do_resize method takes the
2131 * tty termios mutex and ctrl_lock. The console takes its own lock
2132 * then calls into the default method.
2133 */
2134
Alan Coxfc6f6232009-01-02 13:43:17 +00002135static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg)
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002136{
2137 struct winsize tmp_ws;
2138 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2139 return -EFAULT;
2140
2141 if (tty->ops->resize)
Alan Coxfc6f6232009-01-02 13:43:17 +00002142 return tty->ops->resize(tty, &tmp_ws);
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002143 else
Alan Coxfc6f6232009-01-02 13:43:17 +00002144 return tty_do_resize(tty, &tmp_ws);
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002145}
2146
2147/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002148 * tioccons - allow admin to move logical console
2149 * @file: the file to become console
2150 *
2151 * Allow the adminstrator to move the redirected console device
2152 *
2153 * Locking: uses redirect_lock to guard the redirect information
2154 */
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156static int tioccons(struct file *file)
2157{
2158 if (!capable(CAP_SYS_ADMIN))
2159 return -EPERM;
2160 if (file->f_op->write == redirected_tty_write) {
2161 struct file *f;
2162 spin_lock(&redirect_lock);
2163 f = redirect;
2164 redirect = NULL;
2165 spin_unlock(&redirect_lock);
2166 if (f)
2167 fput(f);
2168 return 0;
2169 }
2170 spin_lock(&redirect_lock);
2171 if (redirect) {
2172 spin_unlock(&redirect_lock);
2173 return -EBUSY;
2174 }
2175 get_file(file);
2176 redirect = file;
2177 spin_unlock(&redirect_lock);
2178 return 0;
2179}
2180
Alan Coxaf9b8972006-08-27 01:24:01 -07002181/**
2182 * fionbio - non blocking ioctl
2183 * @file: file to set blocking value
2184 * @p: user parameter
2185 *
2186 * Historical tty interfaces had a blocking control ioctl before
2187 * the generic functionality existed. This piece of history is preserved
2188 * in the expected tty API of posix OS's.
2189 *
Alan Cox6146b9a2009-09-19 13:13:19 -07002190 * Locking: none, the open file handle ensures it won't go away.
Alan Coxaf9b8972006-08-27 01:24:01 -07002191 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193static int fionbio(struct file *file, int __user *p)
2194{
2195 int nonblock;
2196
2197 if (get_user(nonblock, p))
2198 return -EFAULT;
2199
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07002200 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (nonblock)
2202 file->f_flags |= O_NONBLOCK;
2203 else
2204 file->f_flags &= ~O_NONBLOCK;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07002205 spin_unlock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return 0;
2207}
2208
Alan Coxaf9b8972006-08-27 01:24:01 -07002209/**
2210 * tiocsctty - set controlling tty
2211 * @tty: tty structure
2212 * @arg: user argument
2213 *
2214 * This ioctl is used to manage job control. It permits a session
2215 * leader to set this tty as the controlling tty for the session.
2216 *
2217 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002218 * Takes tty_mutex() to protect tty instance
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002219 * Takes tasklist_lock internally to walk sessions
2220 * Takes ->siglock() when updating signal->tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002221 */
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223static int tiocsctty(struct tty_struct *tty, int arg)
2224{
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002225 int ret = 0;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002226 if (current->signal->leader && (task_session(current) == tty->session))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002227 return ret;
2228
2229 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 /*
2231 * The process must be a session leader and
2232 * not have a controlling tty already.
2233 */
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002234 if (!current->signal->leader || current->signal->tty) {
2235 ret = -EPERM;
2236 goto unlock;
2237 }
2238
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002239 if (tty->session) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 /*
2241 * This tty is already the controlling
2242 * tty for another session group!
2243 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002244 if (arg == 1 && capable(CAP_SYS_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 /*
2246 * Steal it away
2247 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002249 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 read_unlock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002251 } else {
2252 ret = -EPERM;
2253 goto unlock;
2254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002256 proc_set_tty(current, tty);
2257unlock:
Alan Cox28298232006-09-29 02:00:58 -07002258 mutex_unlock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002259 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
2261
Alan Coxaf9b8972006-08-27 01:24:01 -07002262/**
Alan Cox5d0fdf12008-04-30 00:53:31 -07002263 * tty_get_pgrp - return a ref counted pgrp pid
2264 * @tty: tty to read
2265 *
2266 * Returns a refcounted instance of the pid struct for the process
2267 * group controlling the tty.
2268 */
2269
2270struct pid *tty_get_pgrp(struct tty_struct *tty)
2271{
2272 unsigned long flags;
2273 struct pid *pgrp;
2274
2275 spin_lock_irqsave(&tty->ctrl_lock, flags);
2276 pgrp = get_pid(tty->pgrp);
2277 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2278
2279 return pgrp;
2280}
2281EXPORT_SYMBOL_GPL(tty_get_pgrp);
2282
2283/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002284 * tiocgpgrp - get process group
2285 * @tty: tty passed by user
2286 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2287 * @p: returned pid
2288 *
2289 * Obtain the process group of the tty. If there is no process group
2290 * return an error.
2291 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002292 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002293 */
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2296{
Alan Cox5d0fdf12008-04-30 00:53:31 -07002297 struct pid *pid;
2298 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 /*
2300 * (tty == real_tty) is a cheap way of
2301 * testing if the tty is NOT a master pty.
2302 */
2303 if (tty == real_tty && current->signal->tty != real_tty)
2304 return -ENOTTY;
Alan Cox5d0fdf12008-04-30 00:53:31 -07002305 pid = tty_get_pgrp(real_tty);
2306 ret = put_user(pid_vnr(pid), p);
2307 put_pid(pid);
2308 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309}
2310
Alan Coxaf9b8972006-08-27 01:24:01 -07002311/**
2312 * tiocspgrp - attempt to set process group
2313 * @tty: tty passed by user
2314 * @real_tty: tty side device matching tty passed by user
2315 * @p: pid pointer
2316 *
2317 * Set the process group of the tty to the session passed. Only
2318 * permitted where the tty session is our session.
2319 *
Alan Cox47f86832008-04-30 00:53:30 -07002320 * Locking: RCU, ctrl lock
Alan Coxaf9b8972006-08-27 01:24:01 -07002321 */
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2324{
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002325 struct pid *pgrp;
2326 pid_t pgrp_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 int retval = tty_check_change(real_tty);
Alan Cox47f86832008-04-30 00:53:30 -07002328 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
2330 if (retval == -EIO)
2331 return -ENOTTY;
2332 if (retval)
2333 return retval;
2334 if (!current->signal->tty ||
2335 (current->signal->tty != real_tty) ||
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002336 (real_tty->session != task_session(current)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return -ENOTTY;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002338 if (get_user(pgrp_nr, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return -EFAULT;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002340 if (pgrp_nr < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 return -EINVAL;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002342 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002343 pgrp = find_vpid(pgrp_nr);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002344 retval = -ESRCH;
2345 if (!pgrp)
2346 goto out_unlock;
2347 retval = -EPERM;
2348 if (session_of_pgrp(pgrp) != task_session(current))
2349 goto out_unlock;
2350 retval = 0;
Alan Cox47f86832008-04-30 00:53:30 -07002351 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002352 put_pid(real_tty->pgrp);
2353 real_tty->pgrp = get_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002354 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002355out_unlock:
2356 rcu_read_unlock();
2357 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
Alan Coxaf9b8972006-08-27 01:24:01 -07002360/**
2361 * tiocgsid - get session id
2362 * @tty: tty passed by user
2363 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2364 * @p: pointer to returned session id
2365 *
2366 * Obtain the session id of the tty. If there is no session
2367 * return an error.
2368 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002369 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002370 */
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2373{
2374 /*
2375 * (tty == real_tty) is a cheap way of
2376 * testing if the tty is NOT a master pty.
2377 */
2378 if (tty == real_tty && current->signal->tty != real_tty)
2379 return -ENOTTY;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002380 if (!real_tty->session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 return -ENOTTY;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002382 return put_user(pid_vnr(real_tty->session), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383}
2384
Alan Coxaf9b8972006-08-27 01:24:01 -07002385/**
2386 * tiocsetd - set line discipline
2387 * @tty: tty device
2388 * @p: pointer to user data
2389 *
2390 * Set the line discipline according to user request.
2391 *
2392 * Locking: see tty_set_ldisc, this function is just a helper
2393 */
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395static int tiocsetd(struct tty_struct *tty, int __user *p)
2396{
2397 int ldisc;
Alan Cox04f378b2008-04-30 00:53:29 -07002398 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 if (get_user(ldisc, p))
2401 return -EFAULT;
Alan Cox04f378b2008-04-30 00:53:29 -07002402
Alan Cox04f378b2008-04-30 00:53:29 -07002403 ret = tty_set_ldisc(tty, ldisc);
Alan Cox04f378b2008-04-30 00:53:29 -07002404
2405 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
Alan Coxaf9b8972006-08-27 01:24:01 -07002408/**
2409 * send_break - performed time break
2410 * @tty: device to break on
2411 * @duration: timeout in mS
2412 *
2413 * Perform a timed break on hardware that lacks its own driver level
2414 * timed break functionality.
2415 *
2416 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002417 * atomic_write_lock serializes
Alan Coxaf9b8972006-08-27 01:24:01 -07002418 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002419 */
2420
Domen Puncerb20f3ae2005-06-25 14:58:42 -07002421static int send_break(struct tty_struct *tty, unsigned int duration)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422{
Alan Cox9e989662008-07-22 11:18:03 +01002423 int retval;
2424
2425 if (tty->ops->break_ctl == NULL)
2426 return 0;
2427
2428 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2429 retval = tty->ops->break_ctl(tty, duration);
2430 else {
2431 /* Do the work ourselves */
2432 if (tty_write_lock(tty, 0) < 0)
2433 return -EINTR;
2434 retval = tty->ops->break_ctl(tty, -1);
2435 if (retval)
2436 goto out;
2437 if (!signal_pending(current))
2438 msleep_interruptible(duration);
2439 retval = tty->ops->break_ctl(tty, 0);
2440out:
2441 tty_write_unlock(tty);
2442 if (signal_pending(current))
2443 retval = -EINTR;
2444 }
2445 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Alan Coxaf9b8972006-08-27 01:24:01 -07002448/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002449 * tty_tiocmget - get modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002450 * @tty: tty device
2451 * @file: user file pointer
2452 * @p: pointer to result
2453 *
2454 * Obtain the modem status bits from the tty driver if the feature
2455 * is supported. Return -EINVAL if it is not available.
2456 *
2457 * Locking: none (up to the driver)
2458 */
2459
2460static int tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 int retval = -EINVAL;
2463
Alan Coxf34d7a52008-04-30 00:54:13 -07002464 if (tty->ops->tiocmget) {
2465 retval = tty->ops->tiocmget(tty, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 if (retval >= 0)
2468 retval = put_user(retval, p);
2469 }
2470 return retval;
2471}
2472
Alan Coxaf9b8972006-08-27 01:24:01 -07002473/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002474 * tty_tiocmset - set modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002475 * @tty: tty device
2476 * @file: user file pointer
2477 * @cmd: command - clear bits, set bits or set all
2478 * @p: pointer to desired bits
2479 *
2480 * Set the modem status bits from the tty driver if the feature
2481 * is supported. Return -EINVAL if it is not available.
2482 *
2483 * Locking: none (up to the driver)
2484 */
2485
2486static int tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 unsigned __user *p)
2488{
Alan Coxae677512008-07-16 21:56:54 +01002489 int retval;
2490 unsigned int set, clear, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Alan Coxae677512008-07-16 21:56:54 +01002492 if (tty->ops->tiocmset == NULL)
2493 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Alan Coxae677512008-07-16 21:56:54 +01002495 retval = get_user(val, p);
2496 if (retval)
2497 return retval;
2498 set = clear = 0;
2499 switch (cmd) {
2500 case TIOCMBIS:
2501 set = val;
2502 break;
2503 case TIOCMBIC:
2504 clear = val;
2505 break;
2506 case TIOCMSET:
2507 set = val;
2508 clear = ~val;
2509 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
Alan Coxae677512008-07-16 21:56:54 +01002511 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2512 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2513 return tty->ops->tiocmset(tty, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
Alan Coxd281da72010-09-16 18:21:24 +01002516static int tty_tiocgicount(struct tty_struct *tty, void __user *arg)
2517{
2518 int retval = -EINVAL;
2519 struct serial_icounter_struct icount;
2520 memset(&icount, 0, sizeof(icount));
2521 if (tty->ops->get_icount)
2522 retval = tty->ops->get_icount(tty, &icount);
2523 if (retval != 0)
2524 return retval;
2525 if (copy_to_user(arg, &icount, sizeof(icount)))
2526 return -EFAULT;
2527 return 0;
2528}
2529
Alan Coxe8b70e72009-06-11 12:48:02 +01002530struct tty_struct *tty_pair_get_tty(struct tty_struct *tty)
2531{
2532 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2533 tty->driver->subtype == PTY_TYPE_MASTER)
2534 tty = tty->link;
2535 return tty;
2536}
2537EXPORT_SYMBOL(tty_pair_get_tty);
2538
2539struct tty_struct *tty_pair_get_pty(struct tty_struct *tty)
2540{
2541 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2542 tty->driver->subtype == PTY_TYPE_MASTER)
2543 return tty;
2544 return tty->link;
2545}
2546EXPORT_SYMBOL(tty_pair_get_pty);
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548/*
2549 * Split this up, as gcc can choke on it otherwise..
2550 */
Alan Cox04f378b2008-04-30 00:53:29 -07002551long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
Nick Piggind996b622010-08-18 04:37:36 +10002553 struct tty_struct *tty = file_tty(file);
2554 struct tty_struct *real_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 void __user *p = (void __user *)arg;
2556 int retval;
2557 struct tty_ldisc *ld;
Alan Cox04f378b2008-04-30 00:53:29 -07002558 struct inode *inode = file->f_dentry->d_inode;
Alan Cox37bdfb02008-02-08 04:18:47 -08002559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2561 return -EINVAL;
2562
Alan Coxe8b70e72009-06-11 12:48:02 +01002563 real_tty = tty_pair_get_tty(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /*
2566 * Factor out some common prep work
2567 */
2568 switch (cmd) {
2569 case TIOCSETD:
2570 case TIOCSBRK:
2571 case TIOCCBRK:
2572 case TCSBRK:
Alan Cox37bdfb02008-02-08 04:18:47 -08002573 case TCSBRKP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 retval = tty_check_change(tty);
2575 if (retval)
2576 return retval;
2577 if (cmd != TIOCCBRK) {
2578 tty_wait_until_sent(tty, 0);
2579 if (signal_pending(current))
2580 return -EINTR;
2581 }
2582 break;
2583 }
2584
Alan Cox9e989662008-07-22 11:18:03 +01002585 /*
2586 * Now do the stuff.
2587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 switch (cmd) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002589 case TIOCSTI:
2590 return tiocsti(tty, p);
2591 case TIOCGWINSZ:
Alan Cox8f520022008-10-13 10:38:46 +01002592 return tiocgwinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002593 case TIOCSWINSZ:
Alan Coxfc6f6232009-01-02 13:43:17 +00002594 return tiocswinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002595 case TIOCCONS:
2596 return real_tty != tty ? -EINVAL : tioccons(file);
2597 case FIONBIO:
2598 return fionbio(file, p);
2599 case TIOCEXCL:
2600 set_bit(TTY_EXCLUSIVE, &tty->flags);
2601 return 0;
2602 case TIOCNXCL:
2603 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2604 return 0;
2605 case TIOCNOTTY:
2606 if (current->signal->tty != tty)
2607 return -ENOTTY;
2608 no_tty();
2609 return 0;
2610 case TIOCSCTTY:
2611 return tiocsctty(tty, arg);
2612 case TIOCGPGRP:
2613 return tiocgpgrp(tty, real_tty, p);
2614 case TIOCSPGRP:
2615 return tiocspgrp(tty, real_tty, p);
2616 case TIOCGSID:
2617 return tiocgsid(tty, real_tty, p);
2618 case TIOCGETD:
Alan Coxc65c9bc2009-06-11 12:50:12 +01002619 return put_user(tty->ldisc->ops->num, (int __user *)p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002620 case TIOCSETD:
2621 return tiocsetd(tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002622 /*
2623 * Break handling
2624 */
2625 case TIOCSBRK: /* Turn break on, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002626 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002627 return tty->ops->break_ctl(tty, -1);
Alan Cox37bdfb02008-02-08 04:18:47 -08002628 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002629 case TIOCCBRK: /* Turn break off, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002630 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002631 return tty->ops->break_ctl(tty, 0);
Alan Cox37bdfb02008-02-08 04:18:47 -08002632 return 0;
2633 case TCSBRK: /* SVID version: non-zero arg --> no break */
2634 /* non-zero arg means wait for all output data
2635 * to be sent (performed above) but don't send break.
2636 * This is used by the tcdrain() termios function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002638 if (!arg)
2639 return send_break(tty, 250);
2640 return 0;
2641 case TCSBRKP: /* support for POSIX tcsendbreak() */
2642 return send_break(tty, arg ? arg*100 : 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Alan Cox37bdfb02008-02-08 04:18:47 -08002644 case TIOCMGET:
2645 return tty_tiocmget(tty, file, p);
2646 case TIOCMSET:
2647 case TIOCMBIC:
2648 case TIOCMBIS:
2649 return tty_tiocmset(tty, file, cmd, p);
Alan Coxd281da72010-09-16 18:21:24 +01002650 case TIOCGICOUNT:
2651 retval = tty_tiocgicount(tty, p);
2652 /* For the moment allow fall through to the old method */
2653 if (retval != -EINVAL)
2654 return retval;
2655 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08002656 case TCFLSH:
2657 switch (arg) {
2658 case TCIFLUSH:
2659 case TCIOFLUSH:
2660 /* flush tty buffer and allow ldisc to process ioctl */
2661 tty_buffer_flush(tty);
Paul Fulghumc5c34d42007-05-12 10:36:55 -07002662 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08002663 }
2664 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002666 if (tty->ops->ioctl) {
2667 retval = (tty->ops->ioctl)(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 if (retval != -ENOIOCTLCMD)
2669 return retval;
2670 }
2671 ld = tty_ldisc_ref_wait(tty);
2672 retval = -EINVAL;
Alan Coxa352def2008-07-16 21:53:12 +01002673 if (ld->ops->ioctl) {
2674 retval = ld->ops->ioctl(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (retval == -ENOIOCTLCMD)
2676 retval = -EINVAL;
2677 }
2678 tty_ldisc_deref(ld);
2679 return retval;
2680}
2681
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002682#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -08002683static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002684 unsigned long arg)
2685{
2686 struct inode *inode = file->f_dentry->d_inode;
Nick Piggind996b622010-08-18 04:37:36 +10002687 struct tty_struct *tty = file_tty(file);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002688 struct tty_ldisc *ld;
2689 int retval = -ENOIOCTLCMD;
2690
2691 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2692 return -EINVAL;
2693
Alan Coxf34d7a52008-04-30 00:54:13 -07002694 if (tty->ops->compat_ioctl) {
2695 retval = (tty->ops->compat_ioctl)(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002696 if (retval != -ENOIOCTLCMD)
2697 return retval;
2698 }
2699
2700 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002701 if (ld->ops->compat_ioctl)
2702 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002703 tty_ldisc_deref(ld);
2704
2705 return retval;
2706}
2707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709/*
2710 * This implements the "Secure Attention Key" --- the idea is to
2711 * prevent trojan horses by killing all processes associated with this
2712 * tty when the user hits the "Secure Attention Key". Required for
2713 * super-paranoid applications --- see the Orange Book for more details.
Alan Cox37bdfb02008-02-08 04:18:47 -08002714 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 * This code could be nicer; ideally it should send a HUP, wait a few
2716 * seconds, then send a INT, and then a KILL signal. But you then
2717 * have to coordinate with the init process, since all processes associated
2718 * with the current tty must be dead before the new getty is allowed
2719 * to spawn.
2720 *
2721 * Now, if it would be correct ;-/ The current code has a nasty hole -
2722 * it doesn't catch files in flight. We may send the descriptor to ourselves
2723 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2724 *
2725 * Nasty bug: do_SAK is being called in interrupt context. This can
2726 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2727 */
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002728void __do_SAK(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729{
2730#ifdef TTY_SOFT_SAK
2731 tty_hangup(tty);
2732#else
Eric W. Biederman652486f2006-03-28 16:11:02 -08002733 struct task_struct *g, *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002734 struct pid *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 int i;
2736 struct file *filp;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07002737 struct fdtable *fdt;
Alan Cox37bdfb02008-02-08 04:18:47 -08002738
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 if (!tty)
2740 return;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002741 session = tty->session;
Alan Cox37bdfb02008-02-08 04:18:47 -08002742
Dan Carpenterb3f13de2006-12-13 00:35:09 -08002743 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Alan Coxf34d7a52008-04-30 00:54:13 -07002745 tty_driver_flush_buffer(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -08002746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 read_lock(&tasklist_lock);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002748 /* Kill the entire session */
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002749 do_each_pid_task(session, PIDTYPE_SID, p) {
Eric W. Biederman652486f2006-03-28 16:11:02 -08002750 printk(KERN_NOTICE "SAK: killed process %d"
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07002751 " (%s): task_session(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002752 task_pid_nr(p), p->comm);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002753 send_sig(SIGKILL, p, 1);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002754 } while_each_pid_task(session, PIDTYPE_SID, p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002755 /* Now kill any processes that happen to have the
2756 * tty open.
2757 */
2758 do_each_thread(g, p) {
2759 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 printk(KERN_NOTICE "SAK: killed process %d"
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07002761 " (%s): task_session(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002762 task_pid_nr(p), p->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 send_sig(SIGKILL, p, 1);
2764 continue;
2765 }
2766 task_lock(p);
2767 if (p->files) {
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07002768 /*
2769 * We don't take a ref to the file, so we must
2770 * hold ->file_lock instead.
2771 */
2772 spin_lock(&p->files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07002773 fdt = files_fdtable(p->files);
Alan Cox37bdfb02008-02-08 04:18:47 -08002774 for (i = 0; i < fdt->max_fds; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 filp = fcheck_files(p->files, i);
2776 if (!filp)
2777 continue;
2778 if (filp->f_op->read == tty_read &&
Nick Piggind996b622010-08-18 04:37:36 +10002779 file_tty(filp) == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 printk(KERN_NOTICE "SAK: killed process %d"
2781 " (%s): fd#%d opened to the tty\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002782 task_pid_nr(p), p->comm, i);
Eric W. Biederman20ac9432006-04-13 04:49:07 -06002783 force_sig(SIGKILL, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 break;
2785 }
2786 }
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07002787 spin_unlock(&p->files->file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 }
2789 task_unlock(p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002790 } while_each_thread(g, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 read_unlock(&tasklist_lock);
2792#endif
2793}
2794
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002795static void do_SAK_work(struct work_struct *work)
2796{
2797 struct tty_struct *tty =
2798 container_of(work, struct tty_struct, SAK_work);
2799 __do_SAK(tty);
2800}
2801
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802/*
2803 * The tq handling here is a little racy - tty->SAK_work may already be queued.
2804 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
2805 * the values which we write to it will be identical to the values which it
2806 * already has. --akpm
2807 */
2808void do_SAK(struct tty_struct *tty)
2809{
2810 if (!tty)
2811 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 schedule_work(&tty->SAK_work);
2813}
2814
2815EXPORT_SYMBOL(do_SAK);
2816
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +04002817static int dev_match_devt(struct device *dev, void *data)
2818{
2819 dev_t *devt = data;
2820 return dev->devt == *devt;
2821}
2822
2823/* Must put_device() after it's unused! */
2824static struct device *tty_get_device(struct tty_struct *tty)
2825{
2826 dev_t devt = tty_devnum(tty);
2827 return class_find_device(tty_class, NULL, &devt, dev_match_devt);
2828}
2829
2830
Alan Coxaf9b8972006-08-27 01:24:01 -07002831/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002832 * initialize_tty_struct
2833 * @tty: tty to initialize
2834 *
2835 * This subroutine initializes a tty structure that has been newly
2836 * allocated.
2837 *
2838 * Locking: none - tty in question must not be exposed at this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002840
Alan Coxbf970ee2008-10-13 10:42:39 +01002841void initialize_tty_struct(struct tty_struct *tty,
2842 struct tty_driver *driver, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
2844 memset(tty, 0, sizeof(struct tty_struct));
Alan Cox9c9f4de2008-10-13 10:37:26 +01002845 kref_init(&tty->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 tty->magic = TTY_MAGIC;
Alan Cox01e1abb2008-07-22 11:16:55 +01002847 tty_ldisc_init(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002848 tty->session = NULL;
2849 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 tty->overrun_time = jiffies;
Alan Cox33f0f882006-01-09 20:54:13 -08002851 tty->buf.head = tty->buf.tail = NULL;
2852 tty_buffer_init(tty);
Arjan van de Ven5785c952006-09-29 02:00:43 -07002853 mutex_init(&tty->termios_mutex);
Alan Coxc65c9bc2009-06-11 12:50:12 +01002854 mutex_init(&tty->ldisc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 init_waitqueue_head(&tty->write_wait);
2856 init_waitqueue_head(&tty->read_wait);
David Howells65f27f32006-11-22 14:55:48 +00002857 INIT_WORK(&tty->hangup_work, do_tty_hangup);
Ingo Molnar70522e12006-03-23 03:00:31 -08002858 mutex_init(&tty->atomic_read_lock);
2859 mutex_init(&tty->atomic_write_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +00002860 mutex_init(&tty->output_lock);
2861 mutex_init(&tty->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 spin_lock_init(&tty->read_lock);
Alan Cox04f378b2008-04-30 00:53:29 -07002863 spin_lock_init(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 INIT_LIST_HEAD(&tty->tty_files);
Eric W. Biederman7f1f86a2007-02-13 14:38:58 -07002865 INIT_WORK(&tty->SAK_work, do_SAK_work);
Alan Coxbf970ee2008-10-13 10:42:39 +01002866
2867 tty->driver = driver;
2868 tty->ops = driver->ops;
2869 tty->index = idx;
2870 tty_line_name(driver, idx, tty->name);
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +04002871 tty->dev = tty_get_device(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872}
2873
Alan Coxf34d7a52008-04-30 00:54:13 -07002874/**
2875 * tty_put_char - write one character to a tty
2876 * @tty: tty
2877 * @ch: character
2878 *
2879 * Write one byte to the tty using the provided put_char method
2880 * if present. Returns the number of characters successfully output.
2881 *
2882 * Note: the specific put_char operation in the driver layer may go
2883 * away soon. Don't call it directly, use this method
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002885
Alan Coxf34d7a52008-04-30 00:54:13 -07002886int tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
Alan Coxf34d7a52008-04-30 00:54:13 -07002888 if (tty->ops->put_char)
2889 return tty->ops->put_char(tty, ch);
2890 return tty->ops->write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891}
Alan Coxf34d7a52008-04-30 00:54:13 -07002892EXPORT_SYMBOL_GPL(tty_put_char);
2893
Alan Coxd81ed102008-10-13 10:41:42 +01002894struct class *tty_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
2896/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002897 * tty_register_device - register a tty device
2898 * @driver: the tty driver that describes the tty device
2899 * @index: the index in the tty driver for this tty device
2900 * @device: a struct device that is associated with this tty device.
2901 * This field is optional, if there is no known struct device
2902 * for this tty device it can be set to NULL safely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 *
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07002904 * Returns a pointer to the struct device for this tty device
2905 * (or ERR_PTR(-EFOO) on error).
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002906 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002907 * This call is required to be made to register an individual tty device
2908 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
2909 * that bit is not set, this function should not be called by a tty
2910 * driver.
2911 *
2912 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002914
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07002915struct device *tty_register_device(struct tty_driver *driver, unsigned index,
2916 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917{
2918 char name[64];
2919 dev_t dev = MKDEV(driver->major, driver->minor_start) + index;
2920
2921 if (index >= driver->num) {
2922 printk(KERN_ERR "Attempt to register invalid tty line number "
2923 " (%d).\n", index);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002924 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 }
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 if (driver->type == TTY_DRIVER_TYPE_PTY)
2928 pty_line_name(driver, index, name);
2929 else
2930 tty_line_name(driver, index, name);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002931
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -07002932 return device_create(tty_class, device, dev, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933}
Alan Cox7d7b93c2008-10-13 10:42:09 +01002934EXPORT_SYMBOL(tty_register_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
2936/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002937 * tty_unregister_device - unregister a tty device
2938 * @driver: the tty driver that describes the tty device
2939 * @index: the index in the tty driver for this tty device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002941 * If a tty device is registered with a call to tty_register_device() then
2942 * this function must be called when the tty device is gone.
2943 *
2944 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947void tty_unregister_device(struct tty_driver *driver, unsigned index)
2948{
Alan Cox37bdfb02008-02-08 04:18:47 -08002949 device_destroy(tty_class,
2950 MKDEV(driver->major, driver->minor_start) + index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952EXPORT_SYMBOL(tty_unregister_device);
2953
2954struct tty_driver *alloc_tty_driver(int lines)
2955{
2956 struct tty_driver *driver;
2957
Jean Delvare506eb992007-07-15 23:40:14 -07002958 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 if (driver) {
Alan Cox7d7b93c2008-10-13 10:42:09 +01002960 kref_init(&driver->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 driver->magic = TTY_DRIVER_MAGIC;
2962 driver->num = lines;
2963 /* later we'll move allocation of tables here */
2964 }
2965 return driver;
2966}
Alan Cox7d7b93c2008-10-13 10:42:09 +01002967EXPORT_SYMBOL(alloc_tty_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Alan Cox7d7b93c2008-10-13 10:42:09 +01002969static void destruct_tty_driver(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
Alan Cox7d7b93c2008-10-13 10:42:09 +01002971 struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
2972 int i;
2973 struct ktermios *tp;
2974 void *p;
2975
2976 if (driver->flags & TTY_DRIVER_INSTALLED) {
2977 /*
2978 * Free the termios and termios_locked structures because
2979 * we don't want to get memory leaks when modular tty
2980 * drivers are removed from the kernel.
2981 */
2982 for (i = 0; i < driver->num; i++) {
2983 tp = driver->termios[i];
2984 if (tp) {
2985 driver->termios[i] = NULL;
2986 kfree(tp);
2987 }
Alan Cox7d7b93c2008-10-13 10:42:09 +01002988 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
2989 tty_unregister_device(driver, i);
2990 }
2991 p = driver->ttys;
2992 proc_tty_unregister_driver(driver);
2993 driver->ttys = NULL;
Alan Coxfe6e29f2008-10-13 10:44:08 +01002994 driver->termios = NULL;
Alan Cox7d7b93c2008-10-13 10:42:09 +01002995 kfree(p);
2996 cdev_del(&driver->cdev);
2997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 kfree(driver);
2999}
3000
Alan Cox7d7b93c2008-10-13 10:42:09 +01003001void tty_driver_kref_put(struct tty_driver *driver)
3002{
3003 kref_put(&driver->kref, destruct_tty_driver);
3004}
3005EXPORT_SYMBOL(tty_driver_kref_put);
3006
Jeff Dikeb68e31d2006-10-02 02:17:18 -07003007void tty_set_operations(struct tty_driver *driver,
3008 const struct tty_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
Alan Coxf34d7a52008-04-30 00:54:13 -07003010 driver->ops = op;
3011};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012EXPORT_SYMBOL(tty_set_operations);
3013
Alan Cox7d7b93c2008-10-13 10:42:09 +01003014void put_tty_driver(struct tty_driver *d)
3015{
3016 tty_driver_kref_put(d);
3017}
3018EXPORT_SYMBOL(put_tty_driver);
3019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020/*
3021 * Called by a tty driver to register itself.
3022 */
3023int tty_register_driver(struct tty_driver *driver)
3024{
3025 int error;
Alan Cox37bdfb02008-02-08 04:18:47 -08003026 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 dev_t dev;
3028 void **p = NULL;
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003029 struct device *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Andy Whitcroft543691a62007-05-06 14:49:33 -07003031 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM) && driver->num) {
Alan Coxfe6e29f2008-10-13 10:44:08 +01003032 p = kzalloc(driver->num * 2 * sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 if (!p)
3034 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 }
3036
3037 if (!driver->major) {
Alan Cox37bdfb02008-02-08 04:18:47 -08003038 error = alloc_chrdev_region(&dev, driver->minor_start,
3039 driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 if (!error) {
3041 driver->major = MAJOR(dev);
3042 driver->minor_start = MINOR(dev);
3043 }
3044 } else {
3045 dev = MKDEV(driver->major, driver->minor_start);
Geert Uytterhoevene5717c42007-02-20 15:45:21 +01003046 error = register_chrdev_region(dev, driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
3048 if (error < 0) {
3049 kfree(p);
3050 return error;
3051 }
3052
3053 if (p) {
3054 driver->ttys = (struct tty_struct **)p;
Alan Coxedc6afc2006-12-08 02:38:44 -08003055 driver->termios = (struct ktermios **)(p + driver->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 } else {
3057 driver->ttys = NULL;
3058 driver->termios = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 }
3060
3061 cdev_init(&driver->cdev, &tty_fops);
3062 driver->cdev.owner = driver->owner;
3063 error = cdev_add(&driver->cdev, dev, driver->num);
3064 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 unregister_chrdev_region(dev, driver->num);
3066 driver->ttys = NULL;
Alan Coxfe6e29f2008-10-13 10:44:08 +01003067 driver->termios = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 kfree(p);
3069 return error;
3070 }
3071
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003072 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 list_add(&driver->tty_drivers, &tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003074 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08003075
3076 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003077 for (i = 0; i < driver->num; i++) {
3078 d = tty_register_device(driver, i, NULL);
3079 if (IS_ERR(d)) {
3080 error = PTR_ERR(d);
3081 goto err;
3082 }
3083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085 proc_tty_register_driver(driver);
Alan Cox7d7b93c2008-10-13 10:42:09 +01003086 driver->flags |= TTY_DRIVER_INSTALLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 return 0;
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003088
3089err:
3090 for (i--; i >= 0; i--)
3091 tty_unregister_device(driver, i);
3092
3093 mutex_lock(&tty_mutex);
3094 list_del(&driver->tty_drivers);
3095 mutex_unlock(&tty_mutex);
3096
3097 unregister_chrdev_region(dev, driver->num);
3098 driver->ttys = NULL;
3099 driver->termios = NULL;
3100 kfree(p);
3101 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102}
3103
3104EXPORT_SYMBOL(tty_register_driver);
3105
3106/*
3107 * Called by a tty driver to unregister itself.
3108 */
3109int tty_unregister_driver(struct tty_driver *driver)
3110{
Alan Cox7d7b93c2008-10-13 10:42:09 +01003111#if 0
3112 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 if (driver->refcount)
3114 return -EBUSY;
Alan Cox7d7b93c2008-10-13 10:42:09 +01003115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3117 driver->num);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003118 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 list_del(&driver->tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003120 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 return 0;
3122}
Alan Cox7d7b93c2008-10-13 10:42:09 +01003123
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124EXPORT_SYMBOL(tty_unregister_driver);
3125
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003126dev_t tty_devnum(struct tty_struct *tty)
3127{
3128 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3129}
3130EXPORT_SYMBOL(tty_devnum);
3131
3132void proc_clear_tty(struct task_struct *p)
3133{
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003134 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +01003135 struct tty_struct *tty;
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003136 spin_lock_irqsave(&p->sighand->siglock, flags);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003137 tty = p->signal->tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003138 p->signal->tty = NULL;
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003139 spin_unlock_irqrestore(&p->sighand->siglock, flags);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003140 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003141}
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003142
Alan Cox47f86832008-04-30 00:53:30 -07003143/* Called under the sighand lock */
3144
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003145static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003146{
3147 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -07003148 unsigned long flags;
3149 /* We should not have a session or pgrp to put here but.... */
3150 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -06003151 put_pid(tty->session);
3152 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003153 tty->pgrp = get_pid(task_pgrp(tsk));
Alan Cox47f86832008-04-30 00:53:30 -07003154 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
3155 tty->session = get_pid(task_session(tsk));
Alan Cox9c9f4de2008-10-13 10:37:26 +01003156 if (tsk->signal->tty) {
3157 printk(KERN_DEBUG "tty not NULL!!\n");
3158 tty_kref_put(tsk->signal->tty);
3159 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003160 }
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003161 put_pid(tsk->signal->tty_old_pgrp);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003162 tsk->signal->tty = tty_kref_get(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003163 tsk->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003164}
3165
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07003166static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003167{
3168 spin_lock_irq(&tsk->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003169 __proc_set_tty(tsk, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003170 spin_unlock_irq(&tsk->sighand->siglock);
3171}
3172
3173struct tty_struct *get_current_tty(void)
3174{
3175 struct tty_struct *tty;
Alan Cox934e6eb2008-10-13 10:40:43 +01003176 unsigned long flags;
3177
3178 spin_lock_irqsave(&current->sighand->siglock, flags);
Alan Cox452a00d2008-10-13 10:39:13 +01003179 tty = tty_kref_get(current->signal->tty);
Alan Cox934e6eb2008-10-13 10:40:43 +01003180 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003181 return tty;
3182}
Heiko Carstensa311f742006-12-13 00:33:41 -08003183EXPORT_SYMBOL_GPL(get_current_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Alan Coxd81ed102008-10-13 10:41:42 +01003185void tty_default_fops(struct file_operations *fops)
3186{
3187 *fops = tty_fops;
3188}
3189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190/*
3191 * Initialize the console device. This is called *early*, so
3192 * we can't necessarily depend on lots of kernel help here.
3193 * Just do some early initializations, and do the complex setup
3194 * later.
3195 */
3196void __init console_init(void)
3197{
3198 initcall_t *call;
3199
3200 /* Setup the default TTY line discipline. */
Alan Cox01e1abb2008-07-22 11:16:55 +01003201 tty_ldisc_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
3203 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08003204 * set up the console device so that later boot sequences can
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 * inform about problems etc..
3206 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 call = __con_initcall_start;
3208 while (call < __con_initcall_end) {
3209 (*call)();
3210 call++;
3211 }
3212}
3213
Kay Sieverse454cea2009-09-18 23:01:12 +02003214static char *tty_devnode(struct device *dev, mode_t *mode)
3215{
3216 if (!mode)
3217 return NULL;
3218 if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) ||
3219 dev->devt == MKDEV(TTYAUX_MAJOR, 2))
3220 *mode = 0666;
3221 return NULL;
3222}
3223
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224static int __init tty_class_init(void)
3225{
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08003226 tty_class = class_create(THIS_MODULE, "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 if (IS_ERR(tty_class))
3228 return PTR_ERR(tty_class);
Kay Sieverse454cea2009-09-18 23:01:12 +02003229 tty_class->devnode = tty_devnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 return 0;
3231}
3232
3233postcore_initcall(tty_class_init);
3234
3235/* 3/2004 jmc: why do these devices exist? */
3236
3237static struct cdev tty_cdev, console_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239/*
3240 * Ok, now we can initialize the rest of the tty devices and can count
3241 * on memory allocations, interrupts etc..
3242 */
David Howells31d1d482010-08-06 16:34:43 +01003243int __init tty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244{
3245 cdev_init(&tty_cdev, &tty_fops);
3246 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3247 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3248 panic("Couldn't register /dev/tty driver\n");
Alan Coxd81ed102008-10-13 10:41:42 +01003249 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL,
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003250 "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
3252 cdev_init(&console_cdev, &console_fops);
3253 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3254 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3255 panic("Couldn't register /dev/console driver\n");
Alan Coxd81ed102008-10-13 10:41:42 +01003256 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL,
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003257 "console");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259#ifdef CONFIG_VT
Alan Coxd81ed102008-10-13 10:41:42 +01003260 vty_init(&console_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261#endif
3262 return 0;
3263}
David Howells31d1d482010-08-06 16:34:43 +01003264