blob: 5ee9081a560f1278cd565388ca301298993a337b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Alan Coxa352def2008-07-16 21:53:12 +0100100#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <asm/system.h>
102
103#include <linux/kbd_kern.h>
104#include <linux/vt_kern.h>
105#include <linux/selection.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#include <linux/kmod.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700108#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#undef TTY_DEBUG_HANGUP
111
112#define TTY_PARANOIA_CHECK 1
113#define CHECK_TTY_COUNT 1
114
Alan Coxedc6afc2006-12-08 02:38:44 -0800115struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .c_iflag = ICRNL | IXON,
117 .c_oflag = OPOST | ONLCR,
118 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
119 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
120 ECHOCTL | ECHOKE | IEXTEN,
Alan Coxedc6afc2006-12-08 02:38:44 -0800121 .c_cc = INIT_C_CC,
122 .c_ispeed = 38400,
123 .c_ospeed = 38400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
126EXPORT_SYMBOL(tty_std_termios);
127
128/* This list gets poked at by procfs and various bits of boot up code. This
129 could do with some rationalisation such as pulling the tty proc function
130 into this file */
Alan Cox37bdfb02008-02-08 04:18:47 -0800131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132LIST_HEAD(tty_drivers); /* linked list of tty drivers */
133
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800134/* Mutex to protect creating and releasing a tty. This is shared with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 vt.c for deeply disgusting hack reasons */
Ingo Molnar70522e12006-03-23 03:00:31 -0800136DEFINE_MUTEX(tty_mutex);
Alan Coxde2a84f2006-09-29 02:00:57 -0700137EXPORT_SYMBOL(tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
140static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
Alan Cox37bdfb02008-02-08 04:18:47 -0800141ssize_t redirected_tty_write(struct file *, const char __user *,
142 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static unsigned int tty_poll(struct file *, poll_table *);
144static int tty_open(struct inode *, struct file *);
Alan Cox04f378b2008-04-30 00:53:29 -0700145long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700146#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -0800147static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700148 unsigned long arg);
149#else
150#define tty_compat_ioctl NULL
151#endif
Arnd Bergmannec79d602010-06-01 22:53:01 +0200152static int __tty_fasync(int fd, struct file *filp, int on);
Alan Cox37bdfb02008-02-08 04:18:47 -0800153static int tty_fasync(int fd, struct file *filp, int on);
Christoph Hellwigd5698c22007-02-10 01:46:46 -0800154static void release_tty(struct tty_struct *tty, int idx);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700155static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700156static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Alan Coxaf9b8972006-08-27 01:24:01 -0700158/**
159 * alloc_tty_struct - allocate a tty object
160 *
161 * Return a new empty tty structure. The data fields have not
162 * been initialized in any way but has been zeroed
163 *
164 * Locking: none
Alan Coxaf9b8972006-08-27 01:24:01 -0700165 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Alan Coxbf970ee2008-10-13 10:42:39 +0100167struct tty_struct *alloc_tty_struct(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Alan Cox1266b1e2006-09-29 02:00:40 -0700169 return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Alan Coxaf9b8972006-08-27 01:24:01 -0700172/**
173 * free_tty_struct - free a disused tty
174 * @tty: tty struct to free
175 *
176 * Free the write buffers, tty queue and tty memory itself.
177 *
178 * Locking: none. Must be called after tty is definitely unused
179 */
180
Alan Coxbf970ee2008-10-13 10:42:39 +0100181void free_tty_struct(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 kfree(tty->write_buf);
Alan Cox33f0f882006-01-09 20:54:13 -0800184 tty_buffer_free_all(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 kfree(tty);
186}
187
188#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
189
Alan Coxaf9b8972006-08-27 01:24:01 -0700190/**
191 * tty_name - return tty naming
192 * @tty: tty structure
193 * @buf: buffer for output
194 *
195 * Convert a tty structure into a name. The name reflects the kernel
196 * naming policy and if udev is in use may not reflect user space
197 *
198 * Locking: none
199 */
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201char *tty_name(struct tty_struct *tty, char *buf)
202{
203 if (!tty) /* Hmm. NULL pointer. That's fun. */
204 strcpy(buf, "NULL tty");
205 else
206 strcpy(buf, tty->name);
207 return buf;
208}
209
210EXPORT_SYMBOL(tty_name);
211
Andrew Mortond769a662005-05-05 16:15:50 -0700212int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 const char *routine)
214{
215#ifdef TTY_PARANOIA_CHECK
216 if (!tty) {
217 printk(KERN_WARNING
218 "null TTY for (%d:%d) in %s\n",
219 imajor(inode), iminor(inode), routine);
220 return 1;
221 }
222 if (tty->magic != TTY_MAGIC) {
223 printk(KERN_WARNING
224 "bad magic number for tty struct (%d:%d) in %s\n",
225 imajor(inode), iminor(inode), routine);
226 return 1;
227 }
228#endif
229 return 0;
230}
231
232static int check_tty_count(struct tty_struct *tty, const char *routine)
233{
234#ifdef CHECK_TTY_COUNT
235 struct list_head *p;
236 int count = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -0800237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 file_list_lock();
239 list_for_each(p, &tty->tty_files) {
240 count++;
241 }
242 file_list_unlock();
243 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
244 tty->driver->subtype == PTY_TYPE_SLAVE &&
245 tty->link && tty->link->count)
246 count++;
247 if (tty->count != count) {
248 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
249 "!= #fd's(%d) in %s\n",
250 tty->name, tty->count, count, routine);
251 return count;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#endif
254 return 0;
255}
256
Alan Coxaf9b8972006-08-27 01:24:01 -0700257/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700258 * get_tty_driver - find device of a tty
259 * @dev_t: device identifier
260 * @index: returns the index of the tty
261 *
262 * This routine returns a tty driver structure, given a device number
263 * and also passes back the index number.
264 *
265 * Locking: caller must hold tty_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static struct tty_driver *get_tty_driver(dev_t device, int *index)
269{
270 struct tty_driver *p;
271
272 list_for_each_entry(p, &tty_drivers, tty_drivers) {
273 dev_t base = MKDEV(p->major, p->minor_start);
274 if (device < base || device >= base + p->num)
275 continue;
276 *index = device - base;
Alan Cox7d7b93c2008-10-13 10:42:09 +0100277 return tty_driver_kref_get(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279 return NULL;
280}
281
Jason Wesself2d937f2008-04-17 20:05:37 +0200282#ifdef CONFIG_CONSOLE_POLL
283
284/**
285 * tty_find_polling_driver - find device of a polled tty
286 * @name: name string to match
287 * @line: pointer to resulting tty line nr
288 *
289 * This routine returns a tty driver structure, given a name
290 * and the condition that the tty driver is capable of polled
291 * operation.
292 */
293struct tty_driver *tty_find_polling_driver(char *name, int *line)
294{
295 struct tty_driver *p, *res = NULL;
296 int tty_line = 0;
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500297 int len;
Alan Cox5f0878a2009-06-11 12:46:41 +0100298 char *str, *stp;
Jason Wesself2d937f2008-04-17 20:05:37 +0200299
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500300 for (str = name; *str; str++)
301 if ((*str >= '0' && *str <= '9') || *str == ',')
302 break;
303 if (!*str)
304 return NULL;
305
306 len = str - name;
307 tty_line = simple_strtoul(str, &str, 10);
308
Jason Wesself2d937f2008-04-17 20:05:37 +0200309 mutex_lock(&tty_mutex);
310 /* Search through the tty devices to look for a match */
311 list_for_each_entry(p, &tty_drivers, tty_drivers) {
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500312 if (strncmp(name, p->name, len) != 0)
313 continue;
Alan Cox5f0878a2009-06-11 12:46:41 +0100314 stp = str;
315 if (*stp == ',')
316 stp++;
317 if (*stp == '\0')
318 stp = NULL;
Jason Wesself2d937f2008-04-17 20:05:37 +0200319
Alan Coxf34d7a52008-04-30 00:54:13 -0700320 if (tty_line >= 0 && tty_line <= p->num && p->ops &&
Alan Cox5f0878a2009-06-11 12:46:41 +0100321 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) {
Alan Cox7d7b93c2008-10-13 10:42:09 +0100322 res = tty_driver_kref_get(p);
Jason Wesself2d937f2008-04-17 20:05:37 +0200323 *line = tty_line;
324 break;
325 }
326 }
327 mutex_unlock(&tty_mutex);
328
329 return res;
330}
331EXPORT_SYMBOL_GPL(tty_find_polling_driver);
332#endif
333
Alan Coxaf9b8972006-08-27 01:24:01 -0700334/**
335 * tty_check_change - check for POSIX terminal changes
336 * @tty: tty to check
337 *
338 * If we try to write to, or set the state of, a terminal and we're
339 * not in the foreground, send a SIGTTOU. If the signal is blocked or
340 * ignored, go ahead and perform the operation. (POSIX 7.2)
341 *
Alan Cox978e5952008-04-30 00:53:59 -0700342 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700344
Alan Cox37bdfb02008-02-08 04:18:47 -0800345int tty_check_change(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Alan Cox47f86832008-04-30 00:53:30 -0700347 unsigned long flags;
348 int ret = 0;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (current->signal->tty != tty)
351 return 0;
Alan Cox47f86832008-04-30 00:53:30 -0700352
353 spin_lock_irqsave(&tty->ctrl_lock, flags);
354
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800355 if (!tty->pgrp) {
356 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700357 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800359 if (task_pgrp(current) == tty->pgrp)
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700360 goto out_unlock;
361 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (is_ignored(SIGTTOU))
Alan Cox47f86832008-04-30 00:53:30 -0700363 goto out;
364 if (is_current_pgrp_orphaned()) {
365 ret = -EIO;
366 goto out;
367 }
Oleg Nesterov040b6362007-06-01 00:46:53 -0700368 kill_pgrp(task_pgrp(current), SIGTTOU, 1);
369 set_thread_flag(TIF_SIGPENDING);
Alan Cox47f86832008-04-30 00:53:30 -0700370 ret = -ERESTARTSYS;
371out:
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700372 return ret;
373out_unlock:
Alan Cox47f86832008-04-30 00:53:30 -0700374 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
375 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378EXPORT_SYMBOL(tty_check_change);
379
Alan Cox37bdfb02008-02-08 04:18:47 -0800380static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 size_t count, loff_t *ppos)
382{
383 return 0;
384}
385
Alan Cox37bdfb02008-02-08 04:18:47 -0800386static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 size_t count, loff_t *ppos)
388{
389 return -EIO;
390}
391
392/* No kernel lock held - none needed ;) */
Alan Cox37bdfb02008-02-08 04:18:47 -0800393static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
396}
397
Alan Cox04f378b2008-04-30 00:53:29 -0700398static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
399 unsigned long arg)
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700400{
401 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
402}
403
Alan Cox37bdfb02008-02-08 04:18:47 -0800404static long hung_up_tty_compat_ioctl(struct file *file,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700405 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
408}
409
Arjan van de Ven62322d22006-07-03 00:24:21 -0700410static const struct file_operations tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 .llseek = no_llseek,
412 .read = tty_read,
413 .write = tty_write,
414 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700415 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700416 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 .open = tty_open,
418 .release = tty_release,
419 .fasync = tty_fasync,
420};
421
Arjan van de Ven62322d22006-07-03 00:24:21 -0700422static const struct file_operations console_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 .llseek = no_llseek,
424 .read = tty_read,
425 .write = redirected_tty_write,
426 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700427 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700428 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 .open = tty_open,
430 .release = tty_release,
431 .fasync = tty_fasync,
432};
433
Arjan van de Ven62322d22006-07-03 00:24:21 -0700434static const struct file_operations hung_up_tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 .llseek = no_llseek,
436 .read = hung_up_tty_read,
437 .write = hung_up_tty_write,
438 .poll = hung_up_tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700439 .unlocked_ioctl = hung_up_tty_ioctl,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700440 .compat_ioctl = hung_up_tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .release = tty_release,
442};
443
444static DEFINE_SPINLOCK(redirect_lock);
445static struct file *redirect;
446
447/**
448 * tty_wakeup - request more data
449 * @tty: terminal
450 *
451 * Internal and external helper for wakeups of tty. This function
452 * informs the line discipline if present that the driver is ready
453 * to receive more output data.
454 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456void tty_wakeup(struct tty_struct *tty)
457{
458 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -0800459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
461 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800462 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100463 if (ld->ops->write_wakeup)
464 ld->ops->write_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 tty_ldisc_deref(ld);
466 }
467 }
Davide Libenzi4b194492009-03-31 15:24:24 -0700468 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
471EXPORT_SYMBOL_GPL(tty_wakeup);
472
473/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700474 * do_tty_hangup - actual handler for hangup events
David Howells65f27f32006-11-22 14:55:48 +0000475 * @work: tty device
Alan Coxaf9b8972006-08-27 01:24:01 -0700476 *
Alan Cox1bad8792008-07-22 23:38:04 +0100477 * This can be called by the "eventd" kernel thread. That is process
Alan Coxaf9b8972006-08-27 01:24:01 -0700478 * synchronous but doesn't hold any locks, so we need to make sure we
479 * have the appropriate locks for what we're doing.
480 *
481 * The hangup event clears any pending redirections onto the hung up
482 * device. It ensures future writes will error and it does the needed
483 * line discipline hangup and signal delivery. The tty object itself
484 * remains intact.
485 *
486 * Locking:
Arnd Bergmannec79d602010-06-01 22:53:01 +0200487 * BTM
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800488 * redirect lock for undoing redirection
489 * file list lock for manipulating list of ttys
490 * tty_ldisc_lock from called functions
491 * termios_mutex resetting termios data
492 * tasklist_lock to walk task list for hangup event
493 * ->siglock to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 */
David Howells65f27f32006-11-22 14:55:48 +0000495static void do_tty_hangup(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
David Howells65f27f32006-11-22 14:55:48 +0000497 struct tty_struct *tty =
498 container_of(work, struct tty_struct, hangup_work);
Alan Cox37bdfb02008-02-08 04:18:47 -0800499 struct file *cons_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct file *filp, *f = NULL;
501 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 int closecount = 0, n;
Alan Cox47f86832008-04-30 00:53:30 -0700503 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100504 int refs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 if (!tty)
507 return;
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 spin_lock(&redirect_lock);
511 if (redirect && redirect->private_data == tty) {
512 f = redirect;
513 redirect = NULL;
514 }
515 spin_unlock(&redirect_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800516
Arnd Bergmannec79d602010-06-01 22:53:01 +0200517 /* inuse_filps is protected by the single tty lock,
518 this really needs to change if we want to flush the
519 workqueue with the lock held */
520 tty_lock_nested(); /* called with BTM held from pty_close and
521 others */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 check_tty_count(tty, "do_tty_hangup");
Alan Cox36ba7822009-11-30 13:18:51 +0000523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 file_list_lock();
525 /* This breaks for file handles being sent over AF_UNIX sockets ? */
Eric Dumazet2f512012005-10-30 15:02:16 -0800526 list_for_each_entry(filp, &tty->tty_files, f_u.fu_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (filp->f_op->write == redirected_tty_write)
528 cons_filp = filp;
529 if (filp->f_op->write != tty_write)
530 continue;
531 closecount++;
Arnd Bergmannec79d602010-06-01 22:53:01 +0200532 __tty_fasync(-1, filp, 0); /* can't block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 filp->f_op = &hung_up_tty_fops;
534 }
535 file_list_unlock();
Alan Cox37bdfb02008-02-08 04:18:47 -0800536
Alan Coxc65c9bc2009-06-11 12:50:12 +0100537 tty_ldisc_hangup(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800540 if (tty->session) {
541 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800542 spin_lock_irq(&p->sighand->siglock);
Alan Cox9c9f4de2008-10-13 10:37:26 +0100543 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 p->signal->tty = NULL;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100545 /* We defer the dereferences outside fo
546 the tasklist lock */
547 refs++;
548 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800549 if (!p->signal->leader) {
550 spin_unlock_irq(&p->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 continue;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800552 }
553 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
554 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800555 put_pid(p->signal->tty_old_pgrp); /* A noop */
Alan Cox47f86832008-04-30 00:53:30 -0700556 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800557 if (tty->pgrp)
558 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -0700559 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800560 spin_unlock_irq(&p->sighand->siglock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800561 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563 read_unlock(&tasklist_lock);
564
Alan Cox47f86832008-04-30 00:53:30 -0700565 spin_lock_irqsave(&tty->ctrl_lock, flags);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100566 clear_bit(TTY_THROTTLED, &tty->flags);
567 clear_bit(TTY_PUSH, &tty->flags);
568 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -0600569 put_pid(tty->session);
570 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800571 tty->session = NULL;
572 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 tty->ctrl_status = 0;
Alan Coxc65c9bc2009-06-11 12:50:12 +0100574 set_bit(TTY_HUPPED, &tty->flags);
Alan Cox47f86832008-04-30 00:53:30 -0700575 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
576
Alan Cox9c9f4de2008-10-13 10:37:26 +0100577 /* Account for the p->signal references we killed */
578 while (refs--)
579 tty_kref_put(tty);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /*
Alan Cox37bdfb02008-02-08 04:18:47 -0800582 * If one of the devices matches a console pointer, we
583 * cannot just call hangup() because that will cause
584 * tty->count and state->count to go out of sync.
585 * So we just call close() the right number of times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
587 if (cons_filp) {
Alan Coxf34d7a52008-04-30 00:54:13 -0700588 if (tty->ops->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 for (n = 0; n < closecount; n++)
Alan Coxf34d7a52008-04-30 00:54:13 -0700590 tty->ops->close(tty, cons_filp);
591 } else if (tty->ops->hangup)
592 (tty->ops->hangup)(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800593 /*
594 * We don't want to have driver/ldisc interactions beyond
595 * the ones we did here. The driver layer expects no
596 * calls after ->hangup() from the ldisc side. However we
597 * can't yet guarantee all that.
598 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 set_bit(TTY_HUPPED, &tty->flags);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100600 tty_ldisc_enable(tty);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200601 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (f)
603 fput(f);
604}
605
Alan Coxaf9b8972006-08-27 01:24:01 -0700606/**
607 * tty_hangup - trigger a hangup event
608 * @tty: tty to hangup
609 *
610 * A carrier loss (virtual or otherwise) has occurred on this like
611 * schedule a hangup sequence to run after this event.
612 */
613
Alan Cox37bdfb02008-02-08 04:18:47 -0800614void tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616#ifdef TTY_DEBUG_HANGUP
617 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
619#endif
620 schedule_work(&tty->hangup_work);
621}
622
623EXPORT_SYMBOL(tty_hangup);
624
Alan Coxaf9b8972006-08-27 01:24:01 -0700625/**
626 * tty_vhangup - process vhangup
627 * @tty: tty to hangup
628 *
629 * The user has asked via system call for the terminal to be hung up.
630 * We do this synchronously so that when the syscall returns the process
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200631 * is complete. That guarantee is necessary for security reasons.
Alan Coxaf9b8972006-08-27 01:24:01 -0700632 */
633
Alan Cox37bdfb02008-02-08 04:18:47 -0800634void tty_vhangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636#ifdef TTY_DEBUG_HANGUP
637 char buf[64];
638
639 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
640#endif
David Howells65f27f32006-11-22 14:55:48 +0000641 do_tty_hangup(&tty->hangup_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
Alan Cox37bdfb02008-02-08 04:18:47 -0800643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644EXPORT_SYMBOL(tty_vhangup);
645
Alan Coxaf9b8972006-08-27 01:24:01 -0700646/**
Alan Cox2cb59982008-10-13 10:40:30 +0100647 * tty_vhangup_self - process vhangup for own ctty
648 *
649 * Perform a vhangup on the current controlling tty
650 */
651
652void tty_vhangup_self(void)
653{
654 struct tty_struct *tty;
655
Alan Cox2cb59982008-10-13 10:40:30 +0100656 tty = get_current_tty();
657 if (tty) {
658 tty_vhangup(tty);
659 tty_kref_put(tty);
660 }
Alan Cox2cb59982008-10-13 10:40:30 +0100661}
662
663/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700664 * tty_hung_up_p - was tty hung up
665 * @filp: file pointer of tty
666 *
667 * Return true if the tty has been subject to a vhangup or a carrier
668 * loss
669 */
670
Alan Cox37bdfb02008-02-08 04:18:47 -0800671int tty_hung_up_p(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
673 return (filp->f_op == &hung_up_tty_fops);
674}
675
676EXPORT_SYMBOL(tty_hung_up_p);
677
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800678static void session_clear_tty(struct pid *session)
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800679{
680 struct task_struct *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800681 do_each_pid_task(session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800682 proc_clear_tty(p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800683 } while_each_pid_task(session, PIDTYPE_SID, p);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800684}
685
Alan Coxaf9b8972006-08-27 01:24:01 -0700686/**
687 * disassociate_ctty - disconnect controlling tty
688 * @on_exit: true if exiting so need to "hang up" the session
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700690 * This function is typically called only by the session leader, when
691 * it wants to disassociate itself from its controlling tty.
692 *
693 * It performs the following functions:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
695 * (2) Clears the tty from being controlling the session
696 * (3) Clears the controlling tty for all processes in the
697 * session group.
698 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700699 * The argument on_exit is set to 1 if called when a process is
700 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
701 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800702 * Locking:
Arnd Bergmannec79d602010-06-01 22:53:01 +0200703 * BTM is taken for hysterical raisins, and held when
704 * called from no_tty().
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800705 * tty_mutex is taken to protect tty
706 * ->siglock is taken to protect ->signal/->sighand
707 * tasklist_lock is taken to walk process list for sessions
708 * ->siglock is taken to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711void disassociate_ctty(int on_exit)
712{
713 struct tty_struct *tty;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800714 struct pid *tty_pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Alan Cox5ec93d12009-11-30 13:18:45 +0000716 if (!current->signal->leader)
717 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800719 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (tty) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800721 tty_pgrp = get_pid(tty->pgrp);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200722 tty_lock_nested(); /* see above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY)
724 tty_vhangup(tty);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200725 tty_unlock();
Alan Cox452a00d2008-10-13 10:39:13 +0100726 tty_kref_put(tty);
Eric W. Biederman680a9672007-02-12 00:52:52 -0800727 } else if (on_exit) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800728 struct pid *old_pgrp;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800729 spin_lock_irq(&current->sighand->siglock);
730 old_pgrp = current->signal->tty_old_pgrp;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800731 current->signal->tty_old_pgrp = NULL;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800732 spin_unlock_irq(&current->sighand->siglock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800733 if (old_pgrp) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800734 kill_pgrp(old_pgrp, SIGHUP, on_exit);
735 kill_pgrp(old_pgrp, SIGCONT, on_exit);
736 put_pid(old_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return;
739 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800740 if (tty_pgrp) {
741 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!on_exit)
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800743 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
744 put_pid(tty_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800747 spin_lock_irq(&current->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700748 put_pid(current->signal->tty_old_pgrp);
Randy Dunlap23cac8d2007-02-20 13:58:05 -0800749 current->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800750 spin_unlock_irq(&current->sighand->siglock);
751
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800752 tty = get_current_tty();
753 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -0700754 unsigned long flags;
755 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800756 put_pid(tty->session);
757 put_pid(tty->pgrp);
758 tty->session = NULL;
759 tty->pgrp = NULL;
Alan Cox47f86832008-04-30 00:53:30 -0700760 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Cox452a00d2008-10-13 10:39:13 +0100761 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800762 } else {
763#ifdef TTY_DEBUG_HANGUP
764 printk(KERN_DEBUG "error attempted to write to tty [0x%p]"
765 " = NULL", tty);
766#endif
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /* Now clear signal->tty under the lock */
770 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800771 session_clear_tty(task_session(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700775/**
776 *
777 * no_tty - Ensure the current process does not have a controlling tty
778 */
779void no_tty(void)
780{
781 struct task_struct *tsk = current;
Arnd Bergmannec79d602010-06-01 22:53:01 +0200782 tty_lock();
Alan Cox5ec93d12009-11-30 13:18:45 +0000783 disassociate_ctty(0);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200784 tty_unlock();
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700785 proc_clear_tty(tsk);
786}
787
Alan Coxaf9b8972006-08-27 01:24:01 -0700788
789/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200790 * stop_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700791 * @tty: tty to stop
792 *
793 * Perform flow control to the driver. For PTY/TTY pairs we
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200794 * must also propagate the TIOCKPKT status. May be called
Alan Coxaf9b8972006-08-27 01:24:01 -0700795 * on an already stopped device and will not re-call the driver
796 * method.
797 *
798 * This functionality is used by both the line disciplines for
799 * halting incoming flow and by the driver. It may therefore be
800 * called from any context, may be under the tty atomic_write_lock
801 * but not always.
802 *
803 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700804 * Uses the tty control lock internally
Alan Coxaf9b8972006-08-27 01:24:01 -0700805 */
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807void stop_tty(struct tty_struct *tty)
808{
Alan Cox04f378b2008-04-30 00:53:29 -0700809 unsigned long flags;
810 spin_lock_irqsave(&tty->ctrl_lock, flags);
811 if (tty->stopped) {
812 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 tty->stopped = 1;
816 if (tty->link && tty->link->packet) {
817 tty->ctrl_status &= ~TIOCPKT_START;
818 tty->ctrl_status |= TIOCPKT_STOP;
Davide Libenzi4b194492009-03-31 15:24:24 -0700819 wake_up_interruptible_poll(&tty->link->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Alan Cox04f378b2008-04-30 00:53:29 -0700821 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700822 if (tty->ops->stop)
823 (tty->ops->stop)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826EXPORT_SYMBOL(stop_tty);
827
Alan Coxaf9b8972006-08-27 01:24:01 -0700828/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200829 * start_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700830 * @tty: tty to start
831 *
832 * Start a tty that has been stopped if at all possible. Perform
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200833 * any necessary wakeups and propagate the TIOCPKT status. If this
Alan Coxaf9b8972006-08-27 01:24:01 -0700834 * is the tty was previous stopped and is being started then the
835 * driver start method is invoked and the line discipline woken.
836 *
837 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700838 * ctrl_lock
Alan Coxaf9b8972006-08-27 01:24:01 -0700839 */
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841void start_tty(struct tty_struct *tty)
842{
Alan Cox04f378b2008-04-30 00:53:29 -0700843 unsigned long flags;
844 spin_lock_irqsave(&tty->ctrl_lock, flags);
845 if (!tty->stopped || tty->flow_stopped) {
846 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 tty->stopped = 0;
850 if (tty->link && tty->link->packet) {
851 tty->ctrl_status &= ~TIOCPKT_STOP;
852 tty->ctrl_status |= TIOCPKT_START;
Davide Libenzi4b194492009-03-31 15:24:24 -0700853 wake_up_interruptible_poll(&tty->link->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
Alan Cox04f378b2008-04-30 00:53:29 -0700855 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700856 if (tty->ops->start)
857 (tty->ops->start)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /* If we have a running line discipline it may need kicking */
859 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
862EXPORT_SYMBOL(start_tty);
863
Alan Coxaf9b8972006-08-27 01:24:01 -0700864/**
865 * tty_read - read method for tty device files
866 * @file: pointer to tty file
867 * @buf: user buffer
868 * @count: size of user buffer
869 * @ppos: unused
870 *
871 * Perform the read system call function on this terminal device. Checks
872 * for hung up devices before calling the line discipline method.
873 *
874 * Locking:
Alan Cox47f86832008-04-30 00:53:30 -0700875 * Locks the line discipline internally while needed. Multiple
876 * read calls may be outstanding in parallel.
Alan Coxaf9b8972006-08-27 01:24:01 -0700877 */
878
Alan Cox37bdfb02008-02-08 04:18:47 -0800879static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 loff_t *ppos)
881{
882 int i;
Alan Cox37bdfb02008-02-08 04:18:47 -0800883 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct inode *inode;
885 struct tty_ldisc *ld;
886
887 tty = (struct tty_struct *)file->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -0800888 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (tty_paranoia_check(tty, inode, "tty_read"))
890 return -EIO;
891 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
892 return -EIO;
893
894 /* We want to wait for the line discipline to sort out in this
895 situation */
896 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +0100897 if (ld->ops->read)
898 i = (ld->ops->read)(tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 else
900 i = -EIO;
901 tty_ldisc_deref(ld);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (i > 0)
903 inode->i_atime = current_fs_time(inode->i_sb);
904 return i;
905}
906
Alan Cox9c1729d2007-07-15 23:39:43 -0700907void tty_write_unlock(struct tty_struct *tty)
908{
909 mutex_unlock(&tty->atomic_write_lock);
Davide Libenzi4b194492009-03-31 15:24:24 -0700910 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
Alan Cox9c1729d2007-07-15 23:39:43 -0700911}
912
913int tty_write_lock(struct tty_struct *tty, int ndelay)
914{
915 if (!mutex_trylock(&tty->atomic_write_lock)) {
916 if (ndelay)
917 return -EAGAIN;
918 if (mutex_lock_interruptible(&tty->atomic_write_lock))
919 return -ERESTARTSYS;
920 }
921 return 0;
922}
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924/*
925 * Split writes up in sane blocksizes to avoid
926 * denial-of-service type attacks
927 */
928static inline ssize_t do_tty_write(
929 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
930 struct tty_struct *tty,
931 struct file *file,
932 const char __user *buf,
933 size_t count)
934{
Alan Cox9c1729d2007-07-15 23:39:43 -0700935 ssize_t ret, written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 unsigned int chunk;
Alan Cox37bdfb02008-02-08 04:18:47 -0800937
Alan Cox9c1729d2007-07-15 23:39:43 -0700938 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
939 if (ret < 0)
940 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 /*
943 * We chunk up writes into a temporary buffer. This
944 * simplifies low-level drivers immensely, since they
945 * don't have locking issues and user mode accesses.
946 *
947 * But if TTY_NO_WRITE_SPLIT is set, we should use a
948 * big chunk-size..
949 *
950 * The default chunk-size is 2kB, because the NTTY
951 * layer has problems with bigger chunks. It will
952 * claim to be able to handle more characters than
953 * it actually does.
Alan Coxaf9b8972006-08-27 01:24:01 -0700954 *
955 * FIXME: This can probably go away now except that 64K chunks
956 * are too likely to fail unless switched to vmalloc...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
958 chunk = 2048;
959 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
960 chunk = 65536;
961 if (count < chunk)
962 chunk = count;
963
Ingo Molnar70522e12006-03-23 03:00:31 -0800964 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (tty->write_cnt < chunk) {
Jason Wessel402fda92008-10-13 10:45:36 +0100966 unsigned char *buf_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 if (chunk < 1024)
969 chunk = 1024;
970
Jason Wessel402fda92008-10-13 10:45:36 +0100971 buf_chunk = kmalloc(chunk, GFP_KERNEL);
972 if (!buf_chunk) {
Alan Cox9c1729d2007-07-15 23:39:43 -0700973 ret = -ENOMEM;
974 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976 kfree(tty->write_buf);
977 tty->write_cnt = chunk;
Jason Wessel402fda92008-10-13 10:45:36 +0100978 tty->write_buf = buf_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
981 /* Do the write .. */
982 for (;;) {
983 size_t size = count;
984 if (size > chunk)
985 size = chunk;
986 ret = -EFAULT;
987 if (copy_from_user(tty->write_buf, buf, size))
988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 ret = write(tty, file, tty->write_buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (ret <= 0)
991 break;
992 written += ret;
993 buf += ret;
994 count -= ret;
995 if (!count)
996 break;
997 ret = -ERESTARTSYS;
998 if (signal_pending(current))
999 break;
1000 cond_resched();
1001 }
1002 if (written) {
Josef Sipeka7113a92006-12-08 02:36:55 -08001003 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 inode->i_mtime = current_fs_time(inode->i_sb);
1005 ret = written;
1006 }
Alan Cox9c1729d2007-07-15 23:39:43 -07001007out:
1008 tty_write_unlock(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return ret;
1010}
1011
Alan Cox95f9bfc2008-10-13 10:39:23 +01001012/**
1013 * tty_write_message - write a message to a certain tty, not just the console.
1014 * @tty: the destination tty_struct
1015 * @msg: the message to write
1016 *
1017 * This is used for messages that need to be redirected to a specific tty.
1018 * We don't put it into the syslog queue right now maybe in the future if
1019 * really needed.
1020 *
Arnd Bergmannec79d602010-06-01 22:53:01 +02001021 * We must still hold the BTM and test the CLOSING flag for the moment.
Alan Cox95f9bfc2008-10-13 10:39:23 +01001022 */
1023
1024void tty_write_message(struct tty_struct *tty, char *msg)
1025{
Alan Cox95f9bfc2008-10-13 10:39:23 +01001026 if (tty) {
1027 mutex_lock(&tty->atomic_write_lock);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001028 tty_lock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001029 if (tty->ops->write && !test_bit(TTY_CLOSING, &tty->flags)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001030 tty_unlock();
Alan Cox95f9bfc2008-10-13 10:39:23 +01001031 tty->ops->write(tty, msg, strlen(msg));
Alan Coxeeb89d92009-11-30 13:18:29 +00001032 } else
Arnd Bergmannec79d602010-06-01 22:53:01 +02001033 tty_unlock();
Alan Cox95f9bfc2008-10-13 10:39:23 +01001034 tty_write_unlock(tty);
1035 }
Alan Cox95f9bfc2008-10-13 10:39:23 +01001036 return;
1037}
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Alan Coxaf9b8972006-08-27 01:24:01 -07001040/**
1041 * tty_write - write method for tty device file
1042 * @file: tty file pointer
1043 * @buf: user data to write
1044 * @count: bytes to write
1045 * @ppos: unused
1046 *
1047 * Write data to a tty device via the line discipline.
1048 *
1049 * Locking:
1050 * Locks the line discipline as required
1051 * Writes to the tty driver are serialized by the atomic_write_lock
1052 * and are then processed in chunks to the device. The line discipline
Joe Petersona88a69c2009-01-02 13:40:53 +00001053 * write method will not be invoked in parallel for each device.
Alan Coxaf9b8972006-08-27 01:24:01 -07001054 */
1055
Alan Cox37bdfb02008-02-08 04:18:47 -08001056static ssize_t tty_write(struct file *file, const char __user *buf,
1057 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Alan Cox37bdfb02008-02-08 04:18:47 -08001059 struct tty_struct *tty;
Josef Sipeka7113a92006-12-08 02:36:55 -08001060 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 ssize_t ret;
1062 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08001063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 tty = (struct tty_struct *)file->private_data;
1065 if (tty_paranoia_check(tty, inode, "tty_write"))
1066 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001067 if (!tty || !tty->ops->write ||
Alan Cox37bdfb02008-02-08 04:18:47 -08001068 (test_bit(TTY_IO_ERROR, &tty->flags)))
1069 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001070 /* Short term debug to catch buggy drivers */
1071 if (tty->ops->write_room == NULL)
1072 printk(KERN_ERR "tty driver %s lacks a write_room method.\n",
1073 tty->driver->name);
Alan Cox37bdfb02008-02-08 04:18:47 -08001074 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001075 if (!ld->ops->write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 ret = -EIO;
1077 else
Alan Coxa352def2008-07-16 21:53:12 +01001078 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 tty_ldisc_deref(ld);
1080 return ret;
1081}
1082
Alan Cox37bdfb02008-02-08 04:18:47 -08001083ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1084 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 struct file *p = NULL;
1087
1088 spin_lock(&redirect_lock);
1089 if (redirect) {
1090 get_file(redirect);
1091 p = redirect;
1092 }
1093 spin_unlock(&redirect_lock);
1094
1095 if (p) {
1096 ssize_t res;
1097 res = vfs_write(p, buf, count, &p->f_pos);
1098 fput(p);
1099 return res;
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return tty_write(file, buf, count, ppos);
1102}
1103
1104static char ptychar[] = "pqrstuvwxyzabcde";
1105
Alan Coxaf9b8972006-08-27 01:24:01 -07001106/**
1107 * pty_line_name - generate name for a pty
1108 * @driver: the tty driver in use
1109 * @index: the minor number
1110 * @p: output buffer of at least 6 bytes
1111 *
1112 * Generate a name from a driver reference and write it to the output
1113 * buffer.
1114 *
1115 * Locking: None
1116 */
1117static void pty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 int i = index + driver->name_base;
1120 /* ->name is initialized to "ttyp", but "tty" is expected */
1121 sprintf(p, "%s%c%x",
Alan Cox37bdfb02008-02-08 04:18:47 -08001122 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1123 ptychar[i >> 4 & 0xf], i & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Alan Coxaf9b8972006-08-27 01:24:01 -07001126/**
Alan Cox8b0a88d2008-10-13 10:42:19 +01001127 * tty_line_name - generate name for a tty
Alan Coxaf9b8972006-08-27 01:24:01 -07001128 * @driver: the tty driver in use
1129 * @index: the minor number
1130 * @p: output buffer of at least 7 bytes
1131 *
1132 * Generate a name from a driver reference and write it to the output
1133 * buffer.
1134 *
1135 * Locking: None
1136 */
1137static void tty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 sprintf(p, "%s%d", driver->name, index + driver->name_base);
1140}
1141
Alan Cox99f1fe12008-10-13 10:42:00 +01001142/**
1143 * tty_driver_lookup_tty() - find an existing tty, if any
1144 * @driver: the driver for the tty
1145 * @idx: the minor number
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001146 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001147 * Return the tty, if found or ERR_PTR() otherwise.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001148 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001149 * Locking: tty_mutex must be held. If tty is found, the mutex must
1150 * be held until the 'fast-open' is also done. Will change once we
1151 * have refcounting in the driver and per driver locking
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001152 */
Jason Wessela47d5452009-01-02 13:43:04 +00001153static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001154 struct inode *inode, int idx)
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001155{
1156 struct tty_struct *tty;
1157
Alan Cox99f1fe12008-10-13 10:42:00 +01001158 if (driver->ops->lookup)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001159 return driver->ops->lookup(driver, inode, idx);
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001160
Alan Cox8b0a88d2008-10-13 10:42:19 +01001161 tty = driver->ttys[idx];
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001162 return tty;
1163}
1164
Alan Cox99f1fe12008-10-13 10:42:00 +01001165/**
Alan Coxbf970ee2008-10-13 10:42:39 +01001166 * tty_init_termios - helper for termios setup
1167 * @tty: the tty to set up
1168 *
1169 * Initialise the termios structures for this tty. Thus runs under
1170 * the tty_mutex currently so we can be relaxed about ordering.
1171 */
1172
1173int tty_init_termios(struct tty_struct *tty)
1174{
Alan Coxfe6e29f2008-10-13 10:44:08 +01001175 struct ktermios *tp;
Alan Coxbf970ee2008-10-13 10:42:39 +01001176 int idx = tty->index;
1177
1178 tp = tty->driver->termios[idx];
Alan Coxbf970ee2008-10-13 10:42:39 +01001179 if (tp == NULL) {
Alan Coxfe6e29f2008-10-13 10:44:08 +01001180 tp = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL);
1181 if (tp == NULL)
Alan Coxbf970ee2008-10-13 10:42:39 +01001182 return -ENOMEM;
Alan Coxbf970ee2008-10-13 10:42:39 +01001183 memcpy(tp, &tty->driver->init_termios,
1184 sizeof(struct ktermios));
1185 tty->driver->termios[idx] = tp;
Alan Coxbf970ee2008-10-13 10:42:39 +01001186 }
1187 tty->termios = tp;
Alan Coxfe6e29f2008-10-13 10:44:08 +01001188 tty->termios_locked = tp + 1;
Alan Coxbf970ee2008-10-13 10:42:39 +01001189
1190 /* Compatibility until drivers always set this */
1191 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
1192 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
1193 return 0;
1194}
Alan Coxfe1ae7f2009-09-19 13:13:33 -07001195EXPORT_SYMBOL_GPL(tty_init_termios);
Alan Coxbf970ee2008-10-13 10:42:39 +01001196
1197/**
Alan Cox8b0a88d2008-10-13 10:42:19 +01001198 * tty_driver_install_tty() - install a tty entry in the driver
1199 * @driver: the driver for the tty
1200 * @tty: the tty
1201 *
1202 * Install a tty object into the driver tables. The tty->index field
Alan Coxbf970ee2008-10-13 10:42:39 +01001203 * will be set by the time this is called. This method is responsible
1204 * for ensuring any need additional structures are allocated and
1205 * configured.
Alan Cox8b0a88d2008-10-13 10:42:19 +01001206 *
1207 * Locking: tty_mutex for now
1208 */
1209static int tty_driver_install_tty(struct tty_driver *driver,
1210 struct tty_struct *tty)
1211{
Alan Coxbf970ee2008-10-13 10:42:39 +01001212 int idx = tty->index;
Alan Coxeeb89d92009-11-30 13:18:29 +00001213 int ret;
Alan Coxbf970ee2008-10-13 10:42:39 +01001214
Alan Coxeeb89d92009-11-30 13:18:29 +00001215 if (driver->ops->install) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001216 tty_lock_nested(); /* already called with BTM held */
Alan Coxeeb89d92009-11-30 13:18:29 +00001217 ret = driver->ops->install(driver, tty);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001218 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001219 return ret;
1220 }
Alan Coxbf970ee2008-10-13 10:42:39 +01001221
1222 if (tty_init_termios(tty) == 0) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001223 tty_lock_nested();
Alan Coxbf970ee2008-10-13 10:42:39 +01001224 tty_driver_kref_get(driver);
1225 tty->count++;
1226 driver->ttys[idx] = tty;
Arnd Bergmannec79d602010-06-01 22:53:01 +02001227 tty_unlock();
Alan Coxbf970ee2008-10-13 10:42:39 +01001228 return 0;
1229 }
1230 return -ENOMEM;
Alan Cox8b0a88d2008-10-13 10:42:19 +01001231}
1232
1233/**
1234 * tty_driver_remove_tty() - remove a tty from the driver tables
1235 * @driver: the driver for the tty
1236 * @idx: the minor number
1237 *
1238 * Remvoe a tty object from the driver tables. The tty->index field
1239 * will be set by the time this is called.
1240 *
1241 * Locking: tty_mutex for now
1242 */
1243static void tty_driver_remove_tty(struct tty_driver *driver,
1244 struct tty_struct *tty)
1245{
1246 if (driver->ops->remove)
1247 driver->ops->remove(driver, tty);
1248 else
1249 driver->ttys[tty->index] = NULL;
1250}
1251
1252/*
1253 * tty_reopen() - fast re-open of an open tty
1254 * @tty - the tty to open
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001255 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001256 * Return 0 on success, -errno on error.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001257 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001258 * Locking: tty_mutex must be held from the time the tty was found
1259 * till this open completes.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001260 */
Alan Cox99f1fe12008-10-13 10:42:00 +01001261static int tty_reopen(struct tty_struct *tty)
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001262{
1263 struct tty_driver *driver = tty->driver;
1264
1265 if (test_bit(TTY_CLOSING, &tty->flags))
1266 return -EIO;
1267
1268 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1269 driver->subtype == PTY_TYPE_MASTER) {
1270 /*
1271 * special case for PTY masters: only one open permitted,
1272 * and the slave side open count is incremented as well.
1273 */
1274 if (tty->count)
1275 return -EIO;
1276
1277 tty->link->count++;
1278 }
1279 tty->count++;
1280 tty->driver = driver; /* N.B. why do this every time?? */
1281
Alan Cox1aa4bed2009-06-16 17:01:33 +01001282 mutex_lock(&tty->ldisc_mutex);
Alan Cox99f1fe12008-10-13 10:42:00 +01001283 WARN_ON(!test_bit(TTY_LDISC, &tty->flags));
Alan Cox1aa4bed2009-06-16 17:01:33 +01001284 mutex_unlock(&tty->ldisc_mutex);
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001285
1286 return 0;
1287}
1288
Alan Coxaf9b8972006-08-27 01:24:01 -07001289/**
Alan Coxd81ed102008-10-13 10:41:42 +01001290 * tty_init_dev - initialise a tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07001291 * @driver: tty driver we are opening a device on
1292 * @idx: device index
Alan Cox15582d32008-10-13 10:41:03 +01001293 * @ret_tty: returned tty structure
1294 * @first_ok: ok to open a new device (used by ptmx)
Alan Coxaf9b8972006-08-27 01:24:01 -07001295 *
1296 * Prepare a tty device. This may not be a "new" clean device but
1297 * could also be an active device. The pty drivers require special
1298 * handling because of this.
1299 *
1300 * Locking:
1301 * The function is called under the tty_mutex, which
1302 * protects us from the tty struct or driver itself going away.
1303 *
1304 * On exit the tty device has the line discipline attached and
1305 * a reference count of 1. If a pair was created for pty/tty use
1306 * and the other was a pty master then it too has a reference count of 1.
1307 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
Ingo Molnar70522e12006-03-23 03:00:31 -08001309 * failed open. The new code protects the open with a mutex, so it's
1310 * really quite straightforward. The mutex locking can probably be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 * relaxed for the (most common) case of reopening a tty.
1312 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001313
Alan Cox73ec06f2008-10-13 10:42:29 +01001314struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx,
1315 int first_ok)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Alan Coxbf970ee2008-10-13 10:42:39 +01001317 struct tty_struct *tty;
Alan Cox73ec06f2008-10-13 10:42:29 +01001318 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Arnd Bergmannec79d602010-06-01 22:53:01 +02001320 tty_lock_nested(); /* always called with tty lock held already */
1321
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001322 /* Check if pty master is being opened multiple times */
Alan Cox15582d32008-10-13 10:41:03 +01001323 if (driver->subtype == PTY_TYPE_MASTER &&
Alan Coxeeb89d92009-11-30 13:18:29 +00001324 (driver->flags & TTY_DRIVER_DEVPTS_MEM) && !first_ok) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001325 tty_unlock();
Alan Cox73ec06f2008-10-13 10:42:29 +01001326 return ERR_PTR(-EIO);
Alan Coxeeb89d92009-11-30 13:18:29 +00001327 }
Arnd Bergmannec79d602010-06-01 22:53:01 +02001328 tty_unlock();
Alan Cox73ec06f2008-10-13 10:42:29 +01001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /*
1331 * First time open is complex, especially for PTY devices.
1332 * This code guarantees that either everything succeeds and the
1333 * TTY is ready for operation, or else the table slots are vacated
Alan Cox37bdfb02008-02-08 04:18:47 -08001334 * and the allocated memory released. (Except that the termios
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * and locked termios may be retained.)
1336 */
1337
Alan Cox73ec06f2008-10-13 10:42:29 +01001338 if (!try_module_get(driver->owner))
1339 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 tty = alloc_tty_struct();
Alan Cox37bdfb02008-02-08 04:18:47 -08001342 if (!tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 goto fail_no_mem;
Alan Coxbf970ee2008-10-13 10:42:39 +01001344 initialize_tty_struct(tty, driver, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Alan Cox73ec06f2008-10-13 10:42:29 +01001346 retval = tty_driver_install_tty(driver, tty);
Alan Coxbf970ee2008-10-13 10:42:39 +01001347 if (retval < 0) {
1348 free_tty_struct(tty);
1349 module_put(driver->owner);
1350 return ERR_PTR(retval);
1351 }
Alan Cox8b0a88d2008-10-13 10:42:19 +01001352
Alan Cox37bdfb02008-02-08 04:18:47 -08001353 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * Structures all installed ... call the ldisc open routines.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001355 * If we fail here just call release_tty to clean up. No need
1356 * to decrement the use counts, as release_tty doesn't care.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 */
Alan Coxbf970ee2008-10-13 10:42:39 +01001358 retval = tty_ldisc_setup(tty, tty->link);
Alan Cox01e1abb2008-07-22 11:16:55 +01001359 if (retval)
1360 goto release_mem_out;
Alan Cox73ec06f2008-10-13 10:42:29 +01001361 return tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363fail_no_mem:
1364 module_put(driver->owner);
Alan Cox73ec06f2008-10-13 10:42:29 +01001365 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001367 /* call the tty release_tty routine to clean out this slot */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368release_mem_out:
Akinobu Mita40509142006-09-29 02:01:27 -07001369 if (printk_ratelimit())
Alan Coxd81ed102008-10-13 10:41:42 +01001370 printk(KERN_INFO "tty_init_dev: ldisc open failed, "
Akinobu Mita40509142006-09-29 02:01:27 -07001371 "clearing slot %d\n", idx);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001372 tty_lock_nested();
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001373 release_tty(tty, idx);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001374 tty_unlock();
Alan Cox73ec06f2008-10-13 10:42:29 +01001375 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
Alan Coxfeebed62008-10-13 10:41:30 +01001378void tty_free_termios(struct tty_struct *tty)
1379{
1380 struct ktermios *tp;
1381 int idx = tty->index;
1382 /* Kill this flag and push into drivers for locking etc */
1383 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
1384 /* FIXME: Locking on ->termios array */
1385 tp = tty->termios;
1386 tty->driver->termios[idx] = NULL;
1387 kfree(tp);
Alan Coxfeebed62008-10-13 10:41:30 +01001388 }
1389}
1390EXPORT_SYMBOL(tty_free_termios);
1391
1392void tty_shutdown(struct tty_struct *tty)
1393{
Alan Cox8b0a88d2008-10-13 10:42:19 +01001394 tty_driver_remove_tty(tty->driver, tty);
Alan Coxfeebed62008-10-13 10:41:30 +01001395 tty_free_termios(tty);
1396}
1397EXPORT_SYMBOL(tty_shutdown);
1398
Alan Coxaf9b8972006-08-27 01:24:01 -07001399/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001400 * release_one_tty - release tty structure memory
Alan Cox9c9f4de2008-10-13 10:37:26 +01001401 * @kref: kref of tty we are obliterating
Alan Coxaf9b8972006-08-27 01:24:01 -07001402 *
1403 * Releases memory associated with a tty structure, and clears out the
1404 * driver table slots. This function is called when a device is no longer
1405 * in use. It also gets called when setup of a device fails.
1406 *
1407 * Locking:
1408 * tty_mutex - sometimes only
1409 * takes the file list lock internally when working on the list
1410 * of ttys that the driver keeps.
Alan Coxb50989d2009-09-19 13:13:22 -07001411 *
1412 * This method gets called from a work queue so that the driver private
Dave Youngf278a2f2009-09-27 16:00:42 +00001413 * cleanup ops can sleep (needed for USB at least)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 */
Alan Coxb50989d2009-09-19 13:13:22 -07001415static void release_one_tty(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Alan Coxb50989d2009-09-19 13:13:22 -07001417 struct tty_struct *tty =
1418 container_of(work, struct tty_struct, hangup_work);
Alan Cox6f967f72008-10-13 10:37:36 +01001419 struct tty_driver *driver = tty->driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Dave Youngf278a2f2009-09-27 16:00:42 +00001421 if (tty->ops->cleanup)
1422 tty->ops->cleanup(tty);
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 tty->magic = 0;
Alan Cox7d7b93c2008-10-13 10:42:09 +01001425 tty_driver_kref_put(driver);
Alan Cox6f967f72008-10-13 10:37:36 +01001426 module_put(driver->owner);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 file_list_lock();
1429 list_del_init(&tty->tty_files);
1430 file_list_unlock();
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001431
Oleg Nesterov6da8d862010-04-02 18:05:12 +02001432 put_pid(tty->pgrp);
1433 put_pid(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 free_tty_struct(tty);
1435}
1436
Alan Coxb50989d2009-09-19 13:13:22 -07001437static void queue_release_one_tty(struct kref *kref)
1438{
1439 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
Dave Youngf278a2f2009-09-27 16:00:42 +00001440
1441 if (tty->ops->shutdown)
1442 tty->ops->shutdown(tty);
1443 else
1444 tty_shutdown(tty);
1445
Alan Coxb50989d2009-09-19 13:13:22 -07001446 /* The hangup queue is now free so we can reuse it rather than
1447 waste a chunk of memory for each port */
1448 INIT_WORK(&tty->hangup_work, release_one_tty);
1449 schedule_work(&tty->hangup_work);
1450}
1451
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001452/**
Alan Cox9c9f4de2008-10-13 10:37:26 +01001453 * tty_kref_put - release a tty kref
1454 * @tty: tty device
1455 *
1456 * Release a reference to a tty device and if need be let the kref
1457 * layer destruct the object for us
1458 */
1459
1460void tty_kref_put(struct tty_struct *tty)
1461{
1462 if (tty)
Alan Coxb50989d2009-09-19 13:13:22 -07001463 kref_put(&tty->kref, queue_release_one_tty);
Alan Cox9c9f4de2008-10-13 10:37:26 +01001464}
1465EXPORT_SYMBOL(tty_kref_put);
1466
1467/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001468 * release_tty - release tty structure memory
1469 *
1470 * Release both @tty and a possible linked partner (think pty pair),
1471 * and decrement the refcount of the backing module.
1472 *
1473 * Locking:
1474 * tty_mutex - sometimes only
1475 * takes the file list lock internally when working on the list
1476 * of ttys that the driver keeps.
1477 * FIXME: should we require tty_mutex is held here ??
Alan Cox9c9f4de2008-10-13 10:37:26 +01001478 *
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001479 */
1480static void release_tty(struct tty_struct *tty, int idx)
1481{
Alan Cox9c9f4de2008-10-13 10:37:26 +01001482 /* This should always be true but check for the moment */
1483 WARN_ON(tty->index != idx);
1484
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001485 if (tty->link)
Alan Cox9c9f4de2008-10-13 10:37:26 +01001486 tty_kref_put(tty->link);
1487 tty_kref_put(tty);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001488}
1489
Alan Coxeeb89d92009-11-30 13:18:29 +00001490/**
1491 * tty_release - vfs callback for close
1492 * @inode: inode of tty
1493 * @filp: file pointer for handle to tty
1494 *
1495 * Called the last time each file handle is closed that references
1496 * this tty. There may however be several such references.
1497 *
1498 * Locking:
1499 * Takes bkl. See tty_release_dev
1500 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 * Even releasing the tty structures is a tricky business.. We have
1502 * to be very careful that the structures are all released at the
1503 * same time, as interrupts might otherwise get the wrong pointers.
1504 *
1505 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1506 * lead to double frees or releasing memory still in use.
1507 */
Alan Coxeeb89d92009-11-30 13:18:29 +00001508
1509int tty_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
1511 struct tty_struct *tty, *o_tty;
1512 int pty_master, tty_closing, o_tty_closing, do_sleep;
Paul Fulghum14a62832006-04-10 22:54:19 -07001513 int devpts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 int idx;
1515 char buf[64];
Alan Cox37bdfb02008-02-08 04:18:47 -08001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 tty = (struct tty_struct *)filp->private_data;
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001518 if (tty_paranoia_check(tty, inode, "tty_release_dev"))
Alan Coxeeb89d92009-11-30 13:18:29 +00001519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Arnd Bergmannec79d602010-06-01 22:53:01 +02001521 tty_lock();
Alan Coxd81ed102008-10-13 10:41:42 +01001522 check_tty_count(tty, "tty_release_dev");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Arnd Bergmannec79d602010-06-01 22:53:01 +02001524 __tty_fasync(-1, filp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 idx = tty->index;
1527 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1528 tty->driver->subtype == PTY_TYPE_MASTER);
1529 devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 o_tty = tty->link;
1531
1532#ifdef TTY_PARANOIA_CHECK
1533 if (idx < 0 || idx >= tty->driver->num) {
Alan Coxd81ed102008-10-13 10:41:42 +01001534 printk(KERN_DEBUG "tty_release_dev: bad idx when trying to "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 "free (%s)\n", tty->name);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001536 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Alan Cox8b0a88d2008-10-13 10:42:19 +01001539 if (!devpts) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (tty != tty->driver->ttys[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001541 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001542 printk(KERN_DEBUG "tty_release_dev: driver.table[%d] not tty "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 "for (%s)\n", idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546 if (tty->termios != tty->driver->termios[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001547 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001548 printk(KERN_DEBUG "tty_release_dev: driver.termios[%d] not termios "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 "for (%s)\n",
1550 idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554#endif
1555
1556#ifdef TTY_DEBUG_HANGUP
Alan Coxd81ed102008-10-13 10:41:42 +01001557 printk(KERN_DEBUG "tty_release_dev of %s (tty count=%d)...",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 tty_name(tty, buf), tty->count);
1559#endif
1560
1561#ifdef TTY_PARANOIA_CHECK
1562 if (tty->driver->other &&
1563 !(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1564 if (o_tty != tty->driver->other->ttys[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001565 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001566 printk(KERN_DEBUG "tty_release_dev: other->table[%d] "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 "not o_tty for (%s)\n",
1568 idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001569 return 0 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571 if (o_tty->termios != tty->driver->other->termios[idx]) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001572 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001573 printk(KERN_DEBUG "tty_release_dev: other->termios[%d] "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 "not o_termios for (%s)\n",
1575 idx, tty->name);
Alan Coxeeb89d92009-11-30 13:18:29 +00001576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (o_tty->link != tty) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001579 tty_unlock();
Alan Coxd81ed102008-10-13 10:41:42 +01001580 printk(KERN_DEBUG "tty_release_dev: bad pty pointers\n");
Alan Coxeeb89d92009-11-30 13:18:29 +00001581 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583 }
1584#endif
Alan Coxf34d7a52008-04-30 00:54:13 -07001585 if (tty->ops->close)
1586 tty->ops->close(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Arnd Bergmannec79d602010-06-01 22:53:01 +02001588 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 /*
1590 * Sanity check: if tty->count is going to zero, there shouldn't be
1591 * any waiters on tty->read_wait or tty->write_wait. We test the
1592 * wait queues and kick everyone out _before_ actually starting to
1593 * close. This ensures that we won't block while releasing the tty
1594 * structure.
1595 *
1596 * The test for the o_tty closing is necessary, since the master and
1597 * slave sides may close in any order. If the slave side closes out
1598 * first, its count will be one, since the master side holds an open.
1599 * Thus this test wouldn't be triggered at the time the slave closes,
1600 * so we do it now.
1601 *
1602 * Note that it's possible for the tty to be opened again while we're
1603 * flushing out waiters. By recalculating the closing flags before
1604 * each iteration we avoid any problems.
1605 */
1606 while (1) {
1607 /* Guard against races with tty->count changes elsewhere and
1608 opens on /dev/tty */
Alan Cox37bdfb02008-02-08 04:18:47 -08001609
Ingo Molnar70522e12006-03-23 03:00:31 -08001610 mutex_lock(&tty_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001611 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 tty_closing = tty->count <= 1;
1613 o_tty_closing = o_tty &&
1614 (o_tty->count <= (pty_master ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 do_sleep = 0;
1616
1617 if (tty_closing) {
1618 if (waitqueue_active(&tty->read_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001619 wake_up_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 do_sleep++;
1621 }
1622 if (waitqueue_active(&tty->write_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001623 wake_up_poll(&tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 do_sleep++;
1625 }
1626 }
1627 if (o_tty_closing) {
1628 if (waitqueue_active(&o_tty->read_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001629 wake_up_poll(&o_tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 do_sleep++;
1631 }
1632 if (waitqueue_active(&o_tty->write_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001633 wake_up_poll(&o_tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 do_sleep++;
1635 }
1636 }
1637 if (!do_sleep)
1638 break;
1639
Alan Coxd81ed102008-10-13 10:41:42 +01001640 printk(KERN_WARNING "tty_release_dev: %s: read/write wait queue "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 "active!\n", tty_name(tty, buf));
Arnd Bergmannec79d602010-06-01 22:53:01 +02001642 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001643 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 schedule();
Alan Cox37bdfb02008-02-08 04:18:47 -08001645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001648 * The closing flags are now consistent with the open counts on
1649 * both sides, and we've completed the last operation that could
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 * block, so it's safe to proceed with closing.
1651 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (pty_master) {
1653 if (--o_tty->count < 0) {
Alan Coxd81ed102008-10-13 10:41:42 +01001654 printk(KERN_WARNING "tty_release_dev: bad pty slave count "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 "(%d) for %s\n",
1656 o_tty->count, tty_name(o_tty, buf));
1657 o_tty->count = 0;
1658 }
1659 }
1660 if (--tty->count < 0) {
Alan Coxd81ed102008-10-13 10:41:42 +01001661 printk(KERN_WARNING "tty_release_dev: bad tty->count (%d) for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 tty->count, tty_name(tty, buf));
1663 tty->count = 0;
1664 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /*
1667 * We've decremented tty->count, so we need to remove this file
1668 * descriptor off the tty->tty_files list; this serves two
1669 * purposes:
1670 * - check_tty_count sees the correct number of file descriptors
1671 * associated with this tty.
1672 * - do_tty_hangup no longer sees this file descriptor as
1673 * something that needs to be handled for hangups.
1674 */
1675 file_kill(filp);
1676 filp->private_data = NULL;
1677
1678 /*
1679 * Perform some housekeeping before deciding whether to return.
1680 *
1681 * Set the TTY_CLOSING flag if this was the last open. In the
1682 * case of a pty we may have to wait around for the other side
1683 * to close, and TTY_CLOSING makes sure we can't be reopened.
1684 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001685 if (tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 set_bit(TTY_CLOSING, &tty->flags);
Alan Cox37bdfb02008-02-08 04:18:47 -08001687 if (o_tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 set_bit(TTY_CLOSING, &o_tty->flags);
1689
1690 /*
1691 * If _either_ side is closing, make sure there aren't any
1692 * processes that still think tty or o_tty is their controlling
1693 * tty.
1694 */
1695 if (tty_closing || o_tty_closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001697 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (o_tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001699 session_clear_tty(o_tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 read_unlock(&tasklist_lock);
1701 }
1702
Ingo Molnar70522e12006-03-23 03:00:31 -08001703 mutex_unlock(&tty_mutex);
Paul Fulghumda965822006-02-14 13:53:00 -08001704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /* check whether both sides are closing ... */
Alan Coxeeb89d92009-11-30 13:18:29 +00001706 if (!tty_closing || (o_tty && !o_tty_closing)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001707 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001708 return 0;
1709 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711#ifdef TTY_DEBUG_HANGUP
1712 printk(KERN_DEBUG "freeing tty structure...");
1713#endif
1714 /*
Alan Cox01e1abb2008-07-22 11:16:55 +01001715 * Ask the line discipline code to release its structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 */
Alan Cox01e1abb2008-07-22 11:16:55 +01001717 tty_ldisc_release(tty, o_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 /*
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001719 * The release_tty function takes care of the details of clearing
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 * the slots and preserving the termios structure.
1721 */
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001722 release_tty(tty, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 /* Make this pty number available for reallocation */
Sukadev Bhattiprolu718a9162008-04-30 00:54:21 -07001725 if (devpts)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001726 devpts_kill_index(inode, idx);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001727 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001728 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729}
1730
Alan Coxaf9b8972006-08-27 01:24:01 -07001731/**
Alan Coxeeb89d92009-11-30 13:18:29 +00001732 * tty_open - open a tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07001733 * @inode: inode of device file
1734 * @filp: file pointer to tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001736 * tty_open and tty_release keep up the tty count that contains the
1737 * number of opens done on a tty. We cannot use the inode-count, as
1738 * different inodes might point to the same tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001740 * Open-counting is needed for pty masters, as well as for keeping
1741 * track of serial lines: DTR is dropped when the last close happens.
1742 * (This is not done solely through tty->count, now. - Ted 1/27/92)
1743 *
1744 * The termios state of a pty is reset on first open so that
1745 * settings don't persist across reuse.
1746 *
Alan Coxd81ed102008-10-13 10:41:42 +01001747 * Locking: tty_mutex protects tty, get_tty_driver and tty_init_dev work.
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001748 * tty->count should protect the rest.
1749 * ->siglock protects ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001751
Alan Coxeeb89d92009-11-30 13:18:29 +00001752static int tty_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001754 struct tty_struct *tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 int noctty, retval;
1756 struct tty_driver *driver;
1757 int index;
1758 dev_t device = inode->i_rdev;
Andrew Morton846c1512009-04-02 16:56:36 -07001759 unsigned saved_flags = filp->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 nonseekable_open(inode, filp);
Alan Cox37bdfb02008-02-08 04:18:47 -08001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763retry_open:
1764 noctty = filp->f_flags & O_NOCTTY;
1765 index = -1;
1766 retval = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001767
Ingo Molnar70522e12006-03-23 03:00:31 -08001768 mutex_lock(&tty_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001769 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Alan Cox37bdfb02008-02-08 04:18:47 -08001771 if (device == MKDEV(TTYAUX_MAJOR, 0)) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001772 tty = get_current_tty();
1773 if (!tty) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001774 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001775 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return -ENXIO;
1777 }
Alan Cox7d7b93c2008-10-13 10:42:09 +01001778 driver = tty_driver_kref_get(tty->driver);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001779 index = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1781 /* noctty = 1; */
Alan Cox452a00d2008-10-13 10:39:13 +01001782 /* FIXME: Should we take a driver reference ? */
1783 tty_kref_put(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto got_driver;
1785 }
1786#ifdef CONFIG_VT
Alan Cox37bdfb02008-02-08 04:18:47 -08001787 if (device == MKDEV(TTY_MAJOR, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 extern struct tty_driver *console_driver;
Alan Cox7d7b93c2008-10-13 10:42:09 +01001789 driver = tty_driver_kref_get(console_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 index = fg_console;
1791 noctty = 1;
1792 goto got_driver;
1793 }
1794#endif
Alan Cox37bdfb02008-02-08 04:18:47 -08001795 if (device == MKDEV(TTYAUX_MAJOR, 1)) {
Will Newton296fa7f2008-12-01 11:36:06 +00001796 struct tty_driver *console_driver = console_device(&index);
1797 if (console_driver) {
1798 driver = tty_driver_kref_get(console_driver);
1799 if (driver) {
1800 /* Don't let /dev/console block */
1801 filp->f_flags |= O_NONBLOCK;
1802 noctty = 1;
1803 goto got_driver;
1804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
Arnd Bergmannec79d602010-06-01 22:53:01 +02001806 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001807 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return -ENODEV;
1809 }
1810
1811 driver = get_tty_driver(device, &index);
1812 if (!driver) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001813 tty_unlock();
Ingo Molnar70522e12006-03-23 03:00:31 -08001814 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return -ENODEV;
1816 }
1817got_driver:
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001818 if (!tty) {
1819 /* check whether we're reopening an existing tty */
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001820 tty = tty_driver_lookup_tty(driver, inode, index);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001821
Eric Paris808ffa32009-01-27 11:50:37 +00001822 if (IS_ERR(tty)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001823 tty_unlock();
Eric Paris808ffa32009-01-27 11:50:37 +00001824 mutex_unlock(&tty_mutex);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001825 return PTR_ERR(tty);
Eric Paris808ffa32009-01-27 11:50:37 +00001826 }
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001827 }
1828
1829 if (tty) {
1830 retval = tty_reopen(tty);
1831 if (retval)
1832 tty = ERR_PTR(retval);
1833 } else
1834 tty = tty_init_dev(driver, index, 0);
1835
Ingo Molnar70522e12006-03-23 03:00:31 -08001836 mutex_unlock(&tty_mutex);
Alan Cox7d7b93c2008-10-13 10:42:09 +01001837 tty_driver_kref_put(driver);
Alan Coxeeb89d92009-11-30 13:18:29 +00001838 if (IS_ERR(tty)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001839 tty_unlock();
Alan Cox73ec06f2008-10-13 10:42:29 +01001840 return PTR_ERR(tty);
Alan Coxeeb89d92009-11-30 13:18:29 +00001841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 filp->private_data = tty;
1844 file_move(filp, &tty->tty_files);
1845 check_tty_count(tty, "tty_open");
1846 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1847 tty->driver->subtype == PTY_TYPE_MASTER)
1848 noctty = 1;
1849#ifdef TTY_DEBUG_HANGUP
1850 printk(KERN_DEBUG "opening %s...", tty->name);
1851#endif
1852 if (!retval) {
Alan Coxf34d7a52008-04-30 00:54:13 -07001853 if (tty->ops->open)
1854 retval = tty->ops->open(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 else
1856 retval = -ENODEV;
1857 }
1858 filp->f_flags = saved_flags;
1859
Alan Cox37bdfb02008-02-08 04:18:47 -08001860 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) &&
1861 !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 retval = -EBUSY;
1863
1864 if (retval) {
1865#ifdef TTY_DEBUG_HANGUP
1866 printk(KERN_DEBUG "error %d in opening %s...", retval,
1867 tty->name);
1868#endif
Alan Coxeeb89d92009-11-30 13:18:29 +00001869 tty_release(inode, filp);
1870 if (retval != -ERESTARTSYS) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001871 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return retval;
Alan Coxeeb89d92009-11-30 13:18:29 +00001873 }
1874 if (signal_pending(current)) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001875 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return retval;
Alan Coxeeb89d92009-11-30 13:18:29 +00001877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 schedule();
1879 /*
1880 * Need to reset f_op in case a hangup happened.
1881 */
1882 if (filp->f_op == &hung_up_tty_fops)
1883 filp->f_op = &tty_fops;
Arnd Bergmannec79d602010-06-01 22:53:01 +02001884 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 goto retry_open;
1886 }
Arnd Bergmannec79d602010-06-01 22:53:01 +02001887 tty_unlock();
Alan Coxeeb89d92009-11-30 13:18:29 +00001888
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001889
1890 mutex_lock(&tty_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001891 tty_lock();
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001892 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (!noctty &&
1894 current->signal->leader &&
1895 !current->signal->tty &&
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001896 tty->session == NULL)
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07001897 __proc_set_tty(current, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001898 spin_unlock_irq(&current->sighand->siglock);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001899 tty_unlock();
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001900 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return 0;
1902}
1903
Jonathan Corbet39d95b92008-05-16 09:10:50 -06001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Alan Coxaf9b8972006-08-27 01:24:01 -07001906/**
1907 * tty_poll - check tty status
1908 * @filp: file being polled
1909 * @wait: poll wait structures to update
1910 *
1911 * Call the line discipline polling method to obtain the poll
1912 * status of the device.
1913 *
1914 * Locking: locks called line discipline but ldisc poll method
1915 * may be re-entered freely by other callers.
1916 */
1917
Alan Cox37bdfb02008-02-08 04:18:47 -08001918static unsigned int tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
Alan Cox37bdfb02008-02-08 04:18:47 -08001920 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 struct tty_ldisc *ld;
1922 int ret = 0;
1923
1924 tty = (struct tty_struct *)filp->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08001925 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_poll"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001929 if (ld->ops->poll)
1930 ret = (ld->ops->poll)(tty, filp, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 tty_ldisc_deref(ld);
1932 return ret;
1933}
1934
Arnd Bergmannec79d602010-06-01 22:53:01 +02001935static int __tty_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Alan Cox37bdfb02008-02-08 04:18:47 -08001937 struct tty_struct *tty;
Alan Cox47f86832008-04-30 00:53:30 -07001938 unsigned long flags;
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001939 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 tty = (struct tty_struct *)filp->private_data;
Josef Sipeka7113a92006-12-08 02:36:55 -08001942 if (tty_paranoia_check(tty, filp->f_path.dentry->d_inode, "tty_fasync"))
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001943 goto out;
Alan Cox37bdfb02008-02-08 04:18:47 -08001944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 retval = fasync_helper(fd, filp, on, &tty->fasync);
1946 if (retval <= 0)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001947 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 if (on) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001950 enum pid_type type;
1951 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 if (!waitqueue_active(&tty->read_wait))
1953 tty->minimum_to_wake = 1;
Alan Cox47f86832008-04-30 00:53:30 -07001954 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08001955 if (tty->pgrp) {
1956 pid = tty->pgrp;
1957 type = PIDTYPE_PGID;
1958 } else {
1959 pid = task_pid(current);
1960 type = PIDTYPE_PID;
1961 }
Linus Torvalds80e1e822010-02-07 10:11:23 -08001962 get_pid(pid);
Greg Kroah-Hartman70362512009-12-17 07:07:19 -08001963 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds80e1e822010-02-07 10:11:23 -08001964 retval = __f_setown(filp, pid, type, 0);
1965 put_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (retval)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001967 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 } else {
1969 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
1970 tty->minimum_to_wake = N_TTY_BUF_SIZE;
1971 }
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001972 retval = 0;
1973out:
Arnd Bergmannec79d602010-06-01 22:53:01 +02001974 return retval;
1975}
1976
1977static int tty_fasync(int fd, struct file *filp, int on)
1978{
1979 int retval;
1980 tty_lock();
1981 retval = __tty_fasync(fd, filp, on);
1982 tty_unlock();
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06001983 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
Alan Coxaf9b8972006-08-27 01:24:01 -07001986/**
1987 * tiocsti - fake input character
1988 * @tty: tty to fake input into
1989 * @p: pointer to character
1990 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001991 * Fake input to a tty device. Does the necessary locking and
Alan Coxaf9b8972006-08-27 01:24:01 -07001992 * input management.
1993 *
1994 * FIXME: does not honour flow control ??
1995 *
1996 * Locking:
1997 * Called functions take tty_ldisc_lock
1998 * current->signal->tty check is safe without locks
Alan Cox28298232006-09-29 02:00:58 -07001999 *
2000 * FIXME: may race normal receive processing
Alan Coxaf9b8972006-08-27 01:24:01 -07002001 */
2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003static int tiocsti(struct tty_struct *tty, char __user *p)
2004{
2005 char ch, mbz = 0;
2006 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08002007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2009 return -EPERM;
2010 if (get_user(ch, p))
2011 return -EFAULT;
Al Viro1e641742008-12-09 09:23:33 +00002012 tty_audit_tiocsti(tty, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002014 ld->ops->receive_buf(tty, &ch, &mbz, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 tty_ldisc_deref(ld);
2016 return 0;
2017}
2018
Alan Coxaf9b8972006-08-27 01:24:01 -07002019/**
2020 * tiocgwinsz - implement window query ioctl
2021 * @tty; tty
2022 * @arg: user buffer for result
2023 *
Alan Cox808a0d32006-09-29 02:00:40 -07002024 * Copies the kernel idea of the window size into the user buffer.
Alan Coxaf9b8972006-08-27 01:24:01 -07002025 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002026 * Locking: tty->termios_mutex is taken to ensure the winsize data
Alan Cox808a0d32006-09-29 02:00:40 -07002027 * is consistent.
Alan Coxaf9b8972006-08-27 01:24:01 -07002028 */
2029
Alan Cox37bdfb02008-02-08 04:18:47 -08002030static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Alan Cox808a0d32006-09-29 02:00:40 -07002032 int err;
2033
Arjan van de Ven5785c952006-09-29 02:00:43 -07002034 mutex_lock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002035 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
Arjan van de Ven5785c952006-09-29 02:00:43 -07002036 mutex_unlock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002037
2038 return err ? -EFAULT: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039}
2040
Alan Coxaf9b8972006-08-27 01:24:01 -07002041/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002042 * tty_do_resize - resize event
2043 * @tty: tty being resized
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002044 * @rows: rows (character)
2045 * @cols: cols (character)
Alan Coxaf9b8972006-08-27 01:24:01 -07002046 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08002047 * Update the termios variables and send the necessary signals to
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002048 * peform a terminal resize correctly
Alan Coxaf9b8972006-08-27 01:24:01 -07002049 */
2050
Alan Coxfc6f6232009-01-02 13:43:17 +00002051int tty_do_resize(struct tty_struct *tty, struct winsize *ws)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Alan Coxfc6f6232009-01-02 13:43:17 +00002053 struct pid *pgrp;
Alan Cox47f86832008-04-30 00:53:30 -07002054 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Alan Coxfc6f6232009-01-02 13:43:17 +00002056 /* Lock the tty */
2057 mutex_lock(&tty->termios_mutex);
2058 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
Alan Coxca9bda02006-09-29 02:00:03 -07002059 goto done;
Alan Cox47f86832008-04-30 00:53:30 -07002060 /* Get the PID values and reference them so we can
2061 avoid holding the tty ctrl lock while sending signals */
2062 spin_lock_irqsave(&tty->ctrl_lock, flags);
2063 pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002064 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2065
2066 if (pgrp)
2067 kill_pgrp(pgrp, SIGWINCH, 1);
Alan Cox47f86832008-04-30 00:53:30 -07002068 put_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002069
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002070 tty->winsize = *ws;
Alan Coxca9bda02006-09-29 02:00:03 -07002071done:
Alan Coxfc6f6232009-01-02 13:43:17 +00002072 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
2074}
2075
Alan Coxaf9b8972006-08-27 01:24:01 -07002076/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002077 * tiocswinsz - implement window size set ioctl
Alan Coxfc6f6232009-01-02 13:43:17 +00002078 * @tty; tty side of tty
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002079 * @arg: user buffer for result
2080 *
2081 * Copies the user idea of the window size to the kernel. Traditionally
2082 * this is just advisory information but for the Linux console it
2083 * actually has driver level meaning and triggers a VC resize.
2084 *
2085 * Locking:
2086 * Driver dependant. The default do_resize method takes the
2087 * tty termios mutex and ctrl_lock. The console takes its own lock
2088 * then calls into the default method.
2089 */
2090
Alan Coxfc6f6232009-01-02 13:43:17 +00002091static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg)
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002092{
2093 struct winsize tmp_ws;
2094 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2095 return -EFAULT;
2096
2097 if (tty->ops->resize)
Alan Coxfc6f6232009-01-02 13:43:17 +00002098 return tty->ops->resize(tty, &tmp_ws);
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002099 else
Alan Coxfc6f6232009-01-02 13:43:17 +00002100 return tty_do_resize(tty, &tmp_ws);
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002101}
2102
2103/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002104 * tioccons - allow admin to move logical console
2105 * @file: the file to become console
2106 *
2107 * Allow the adminstrator to move the redirected console device
2108 *
2109 * Locking: uses redirect_lock to guard the redirect information
2110 */
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112static int tioccons(struct file *file)
2113{
2114 if (!capable(CAP_SYS_ADMIN))
2115 return -EPERM;
2116 if (file->f_op->write == redirected_tty_write) {
2117 struct file *f;
2118 spin_lock(&redirect_lock);
2119 f = redirect;
2120 redirect = NULL;
2121 spin_unlock(&redirect_lock);
2122 if (f)
2123 fput(f);
2124 return 0;
2125 }
2126 spin_lock(&redirect_lock);
2127 if (redirect) {
2128 spin_unlock(&redirect_lock);
2129 return -EBUSY;
2130 }
2131 get_file(file);
2132 redirect = file;
2133 spin_unlock(&redirect_lock);
2134 return 0;
2135}
2136
Alan Coxaf9b8972006-08-27 01:24:01 -07002137/**
2138 * fionbio - non blocking ioctl
2139 * @file: file to set blocking value
2140 * @p: user parameter
2141 *
2142 * Historical tty interfaces had a blocking control ioctl before
2143 * the generic functionality existed. This piece of history is preserved
2144 * in the expected tty API of posix OS's.
2145 *
Alan Cox6146b9a2009-09-19 13:13:19 -07002146 * Locking: none, the open file handle ensures it won't go away.
Alan Coxaf9b8972006-08-27 01:24:01 -07002147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149static int fionbio(struct file *file, int __user *p)
2150{
2151 int nonblock;
2152
2153 if (get_user(nonblock, p))
2154 return -EFAULT;
2155
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07002156 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (nonblock)
2158 file->f_flags |= O_NONBLOCK;
2159 else
2160 file->f_flags &= ~O_NONBLOCK;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07002161 spin_unlock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 return 0;
2163}
2164
Alan Coxaf9b8972006-08-27 01:24:01 -07002165/**
2166 * tiocsctty - set controlling tty
2167 * @tty: tty structure
2168 * @arg: user argument
2169 *
2170 * This ioctl is used to manage job control. It permits a session
2171 * leader to set this tty as the controlling tty for the session.
2172 *
2173 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002174 * Takes tty_mutex() to protect tty instance
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002175 * Takes tasklist_lock internally to walk sessions
2176 * Takes ->siglock() when updating signal->tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002177 */
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179static int tiocsctty(struct tty_struct *tty, int arg)
2180{
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002181 int ret = 0;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002182 if (current->signal->leader && (task_session(current) == tty->session))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002183 return ret;
2184
2185 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 /*
2187 * The process must be a session leader and
2188 * not have a controlling tty already.
2189 */
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002190 if (!current->signal->leader || current->signal->tty) {
2191 ret = -EPERM;
2192 goto unlock;
2193 }
2194
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002195 if (tty->session) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 /*
2197 * This tty is already the controlling
2198 * tty for another session group!
2199 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002200 if (arg == 1 && capable(CAP_SYS_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /*
2202 * Steal it away
2203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002205 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 read_unlock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002207 } else {
2208 ret = -EPERM;
2209 goto unlock;
2210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002212 proc_set_tty(current, tty);
2213unlock:
Alan Cox28298232006-09-29 02:00:58 -07002214 mutex_unlock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002215 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216}
2217
Alan Coxaf9b8972006-08-27 01:24:01 -07002218/**
Alan Cox5d0fdf12008-04-30 00:53:31 -07002219 * tty_get_pgrp - return a ref counted pgrp pid
2220 * @tty: tty to read
2221 *
2222 * Returns a refcounted instance of the pid struct for the process
2223 * group controlling the tty.
2224 */
2225
2226struct pid *tty_get_pgrp(struct tty_struct *tty)
2227{
2228 unsigned long flags;
2229 struct pid *pgrp;
2230
2231 spin_lock_irqsave(&tty->ctrl_lock, flags);
2232 pgrp = get_pid(tty->pgrp);
2233 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2234
2235 return pgrp;
2236}
2237EXPORT_SYMBOL_GPL(tty_get_pgrp);
2238
2239/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002240 * tiocgpgrp - get process group
2241 * @tty: tty passed by user
2242 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2243 * @p: returned pid
2244 *
2245 * Obtain the process group of the tty. If there is no process group
2246 * return an error.
2247 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002248 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002249 */
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2252{
Alan Cox5d0fdf12008-04-30 00:53:31 -07002253 struct pid *pid;
2254 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 /*
2256 * (tty == real_tty) is a cheap way of
2257 * testing if the tty is NOT a master pty.
2258 */
2259 if (tty == real_tty && current->signal->tty != real_tty)
2260 return -ENOTTY;
Alan Cox5d0fdf12008-04-30 00:53:31 -07002261 pid = tty_get_pgrp(real_tty);
2262 ret = put_user(pid_vnr(pid), p);
2263 put_pid(pid);
2264 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Alan Coxaf9b8972006-08-27 01:24:01 -07002267/**
2268 * tiocspgrp - attempt to set process group
2269 * @tty: tty passed by user
2270 * @real_tty: tty side device matching tty passed by user
2271 * @p: pid pointer
2272 *
2273 * Set the process group of the tty to the session passed. Only
2274 * permitted where the tty session is our session.
2275 *
Alan Cox47f86832008-04-30 00:53:30 -07002276 * Locking: RCU, ctrl lock
Alan Coxaf9b8972006-08-27 01:24:01 -07002277 */
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2280{
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002281 struct pid *pgrp;
2282 pid_t pgrp_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 int retval = tty_check_change(real_tty);
Alan Cox47f86832008-04-30 00:53:30 -07002284 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 if (retval == -EIO)
2287 return -ENOTTY;
2288 if (retval)
2289 return retval;
2290 if (!current->signal->tty ||
2291 (current->signal->tty != real_tty) ||
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002292 (real_tty->session != task_session(current)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return -ENOTTY;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002294 if (get_user(pgrp_nr, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return -EFAULT;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002296 if (pgrp_nr < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 return -EINVAL;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002298 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002299 pgrp = find_vpid(pgrp_nr);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002300 retval = -ESRCH;
2301 if (!pgrp)
2302 goto out_unlock;
2303 retval = -EPERM;
2304 if (session_of_pgrp(pgrp) != task_session(current))
2305 goto out_unlock;
2306 retval = 0;
Alan Cox47f86832008-04-30 00:53:30 -07002307 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002308 put_pid(real_tty->pgrp);
2309 real_tty->pgrp = get_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002310 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002311out_unlock:
2312 rcu_read_unlock();
2313 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314}
2315
Alan Coxaf9b8972006-08-27 01:24:01 -07002316/**
2317 * tiocgsid - get session id
2318 * @tty: tty passed by user
2319 * @real_tty: tty side of the tty pased by the user if a pty else the tty
2320 * @p: pointer to returned session id
2321 *
2322 * Obtain the session id of the tty. If there is no session
2323 * return an error.
2324 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002325 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002326 */
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2329{
2330 /*
2331 * (tty == real_tty) is a cheap way of
2332 * testing if the tty is NOT a master pty.
2333 */
2334 if (tty == real_tty && current->signal->tty != real_tty)
2335 return -ENOTTY;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002336 if (!real_tty->session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return -ENOTTY;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002338 return put_user(pid_vnr(real_tty->session), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339}
2340
Alan Coxaf9b8972006-08-27 01:24:01 -07002341/**
2342 * tiocsetd - set line discipline
2343 * @tty: tty device
2344 * @p: pointer to user data
2345 *
2346 * Set the line discipline according to user request.
2347 *
2348 * Locking: see tty_set_ldisc, this function is just a helper
2349 */
2350
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351static int tiocsetd(struct tty_struct *tty, int __user *p)
2352{
2353 int ldisc;
Alan Cox04f378b2008-04-30 00:53:29 -07002354 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (get_user(ldisc, p))
2357 return -EFAULT;
Alan Cox04f378b2008-04-30 00:53:29 -07002358
Alan Cox04f378b2008-04-30 00:53:29 -07002359 ret = tty_set_ldisc(tty, ldisc);
Alan Cox04f378b2008-04-30 00:53:29 -07002360
2361 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362}
2363
Alan Coxaf9b8972006-08-27 01:24:01 -07002364/**
2365 * send_break - performed time break
2366 * @tty: device to break on
2367 * @duration: timeout in mS
2368 *
2369 * Perform a timed break on hardware that lacks its own driver level
2370 * timed break functionality.
2371 *
2372 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002373 * atomic_write_lock serializes
Alan Coxaf9b8972006-08-27 01:24:01 -07002374 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002375 */
2376
Domen Puncerb20f3ae2005-06-25 14:58:42 -07002377static int send_break(struct tty_struct *tty, unsigned int duration)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378{
Alan Cox9e989662008-07-22 11:18:03 +01002379 int retval;
2380
2381 if (tty->ops->break_ctl == NULL)
2382 return 0;
2383
2384 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2385 retval = tty->ops->break_ctl(tty, duration);
2386 else {
2387 /* Do the work ourselves */
2388 if (tty_write_lock(tty, 0) < 0)
2389 return -EINTR;
2390 retval = tty->ops->break_ctl(tty, -1);
2391 if (retval)
2392 goto out;
2393 if (!signal_pending(current))
2394 msleep_interruptible(duration);
2395 retval = tty->ops->break_ctl(tty, 0);
2396out:
2397 tty_write_unlock(tty);
2398 if (signal_pending(current))
2399 retval = -EINTR;
2400 }
2401 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
Alan Coxaf9b8972006-08-27 01:24:01 -07002404/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002405 * tty_tiocmget - get modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002406 * @tty: tty device
2407 * @file: user file pointer
2408 * @p: pointer to result
2409 *
2410 * Obtain the modem status bits from the tty driver if the feature
2411 * is supported. Return -EINVAL if it is not available.
2412 *
2413 * Locking: none (up to the driver)
2414 */
2415
2416static int tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
2418 int retval = -EINVAL;
2419
Alan Coxf34d7a52008-04-30 00:54:13 -07002420 if (tty->ops->tiocmget) {
2421 retval = tty->ops->tiocmget(tty, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (retval >= 0)
2424 retval = put_user(retval, p);
2425 }
2426 return retval;
2427}
2428
Alan Coxaf9b8972006-08-27 01:24:01 -07002429/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002430 * tty_tiocmset - set modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002431 * @tty: tty device
2432 * @file: user file pointer
2433 * @cmd: command - clear bits, set bits or set all
2434 * @p: pointer to desired bits
2435 *
2436 * Set the modem status bits from the tty driver if the feature
2437 * is supported. Return -EINVAL if it is not available.
2438 *
2439 * Locking: none (up to the driver)
2440 */
2441
2442static int tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 unsigned __user *p)
2444{
Alan Coxae677512008-07-16 21:56:54 +01002445 int retval;
2446 unsigned int set, clear, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Alan Coxae677512008-07-16 21:56:54 +01002448 if (tty->ops->tiocmset == NULL)
2449 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Alan Coxae677512008-07-16 21:56:54 +01002451 retval = get_user(val, p);
2452 if (retval)
2453 return retval;
2454 set = clear = 0;
2455 switch (cmd) {
2456 case TIOCMBIS:
2457 set = val;
2458 break;
2459 case TIOCMBIC:
2460 clear = val;
2461 break;
2462 case TIOCMSET:
2463 set = val;
2464 clear = ~val;
2465 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 }
Alan Coxae677512008-07-16 21:56:54 +01002467 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2468 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2469 return tty->ops->tiocmset(tty, file, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
Alan Coxe8b70e72009-06-11 12:48:02 +01002472struct tty_struct *tty_pair_get_tty(struct tty_struct *tty)
2473{
2474 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2475 tty->driver->subtype == PTY_TYPE_MASTER)
2476 tty = tty->link;
2477 return tty;
2478}
2479EXPORT_SYMBOL(tty_pair_get_tty);
2480
2481struct tty_struct *tty_pair_get_pty(struct tty_struct *tty)
2482{
2483 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2484 tty->driver->subtype == PTY_TYPE_MASTER)
2485 return tty;
2486 return tty->link;
2487}
2488EXPORT_SYMBOL(tty_pair_get_pty);
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490/*
2491 * Split this up, as gcc can choke on it otherwise..
2492 */
Alan Cox04f378b2008-04-30 00:53:29 -07002493long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 struct tty_struct *tty, *real_tty;
2496 void __user *p = (void __user *)arg;
2497 int retval;
2498 struct tty_ldisc *ld;
Alan Cox04f378b2008-04-30 00:53:29 -07002499 struct inode *inode = file->f_dentry->d_inode;
Alan Cox37bdfb02008-02-08 04:18:47 -08002500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 tty = (struct tty_struct *)file->private_data;
2502 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2503 return -EINVAL;
2504
Alan Coxe8b70e72009-06-11 12:48:02 +01002505 real_tty = tty_pair_get_tty(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 /*
2508 * Factor out some common prep work
2509 */
2510 switch (cmd) {
2511 case TIOCSETD:
2512 case TIOCSBRK:
2513 case TIOCCBRK:
2514 case TCSBRK:
Alan Cox37bdfb02008-02-08 04:18:47 -08002515 case TCSBRKP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 retval = tty_check_change(tty);
2517 if (retval)
2518 return retval;
2519 if (cmd != TIOCCBRK) {
2520 tty_wait_until_sent(tty, 0);
2521 if (signal_pending(current))
2522 return -EINTR;
2523 }
2524 break;
2525 }
2526
Alan Cox9e989662008-07-22 11:18:03 +01002527 /*
2528 * Now do the stuff.
2529 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 switch (cmd) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002531 case TIOCSTI:
2532 return tiocsti(tty, p);
2533 case TIOCGWINSZ:
Alan Cox8f520022008-10-13 10:38:46 +01002534 return tiocgwinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002535 case TIOCSWINSZ:
Alan Coxfc6f6232009-01-02 13:43:17 +00002536 return tiocswinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002537 case TIOCCONS:
2538 return real_tty != tty ? -EINVAL : tioccons(file);
2539 case FIONBIO:
2540 return fionbio(file, p);
2541 case TIOCEXCL:
2542 set_bit(TTY_EXCLUSIVE, &tty->flags);
2543 return 0;
2544 case TIOCNXCL:
2545 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2546 return 0;
2547 case TIOCNOTTY:
2548 if (current->signal->tty != tty)
2549 return -ENOTTY;
2550 no_tty();
2551 return 0;
2552 case TIOCSCTTY:
2553 return tiocsctty(tty, arg);
2554 case TIOCGPGRP:
2555 return tiocgpgrp(tty, real_tty, p);
2556 case TIOCSPGRP:
2557 return tiocspgrp(tty, real_tty, p);
2558 case TIOCGSID:
2559 return tiocgsid(tty, real_tty, p);
2560 case TIOCGETD:
Alan Coxc65c9bc2009-06-11 12:50:12 +01002561 return put_user(tty->ldisc->ops->num, (int __user *)p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002562 case TIOCSETD:
2563 return tiocsetd(tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002564 /*
2565 * Break handling
2566 */
2567 case TIOCSBRK: /* Turn break on, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002568 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002569 return tty->ops->break_ctl(tty, -1);
Alan Cox37bdfb02008-02-08 04:18:47 -08002570 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002571 case TIOCCBRK: /* Turn break off, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002572 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002573 return tty->ops->break_ctl(tty, 0);
Alan Cox37bdfb02008-02-08 04:18:47 -08002574 return 0;
2575 case TCSBRK: /* SVID version: non-zero arg --> no break */
2576 /* non-zero arg means wait for all output data
2577 * to be sent (performed above) but don't send break.
2578 * This is used by the tcdrain() termios function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002580 if (!arg)
2581 return send_break(tty, 250);
2582 return 0;
2583 case TCSBRKP: /* support for POSIX tcsendbreak() */
2584 return send_break(tty, arg ? arg*100 : 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Alan Cox37bdfb02008-02-08 04:18:47 -08002586 case TIOCMGET:
2587 return tty_tiocmget(tty, file, p);
2588 case TIOCMSET:
2589 case TIOCMBIC:
2590 case TIOCMBIS:
2591 return tty_tiocmset(tty, file, cmd, p);
2592 case TCFLSH:
2593 switch (arg) {
2594 case TCIFLUSH:
2595 case TCIOFLUSH:
2596 /* flush tty buffer and allow ldisc to process ioctl */
2597 tty_buffer_flush(tty);
Paul Fulghumc5c34d42007-05-12 10:36:55 -07002598 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08002599 }
2600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002602 if (tty->ops->ioctl) {
2603 retval = (tty->ops->ioctl)(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (retval != -ENOIOCTLCMD)
2605 return retval;
2606 }
2607 ld = tty_ldisc_ref_wait(tty);
2608 retval = -EINVAL;
Alan Coxa352def2008-07-16 21:53:12 +01002609 if (ld->ops->ioctl) {
2610 retval = ld->ops->ioctl(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (retval == -ENOIOCTLCMD)
2612 retval = -EINVAL;
2613 }
2614 tty_ldisc_deref(ld);
2615 return retval;
2616}
2617
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002618#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -08002619static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002620 unsigned long arg)
2621{
2622 struct inode *inode = file->f_dentry->d_inode;
2623 struct tty_struct *tty = file->private_data;
2624 struct tty_ldisc *ld;
2625 int retval = -ENOIOCTLCMD;
2626
2627 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2628 return -EINVAL;
2629
Alan Coxf34d7a52008-04-30 00:54:13 -07002630 if (tty->ops->compat_ioctl) {
2631 retval = (tty->ops->compat_ioctl)(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002632 if (retval != -ENOIOCTLCMD)
2633 return retval;
2634 }
2635
2636 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002637 if (ld->ops->compat_ioctl)
2638 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002639 tty_ldisc_deref(ld);
2640
2641 return retval;
2642}
2643#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
2645/*
2646 * This implements the "Secure Attention Key" --- the idea is to
2647 * prevent trojan horses by killing all processes associated with this
2648 * tty when the user hits the "Secure Attention Key". Required for
2649 * super-paranoid applications --- see the Orange Book for more details.
Alan Cox37bdfb02008-02-08 04:18:47 -08002650 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 * This code could be nicer; ideally it should send a HUP, wait a few
2652 * seconds, then send a INT, and then a KILL signal. But you then
2653 * have to coordinate with the init process, since all processes associated
2654 * with the current tty must be dead before the new getty is allowed
2655 * to spawn.
2656 *
2657 * Now, if it would be correct ;-/ The current code has a nasty hole -
2658 * it doesn't catch files in flight. We may send the descriptor to ourselves
2659 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2660 *
2661 * Nasty bug: do_SAK is being called in interrupt context. This can
2662 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2663 */
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002664void __do_SAK(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666#ifdef TTY_SOFT_SAK
2667 tty_hangup(tty);
2668#else
Eric W. Biederman652486f2006-03-28 16:11:02 -08002669 struct task_struct *g, *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002670 struct pid *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 int i;
2672 struct file *filp;
Dipankar Sarmabadf1662005-09-09 13:04:10 -07002673 struct fdtable *fdt;
Alan Cox37bdfb02008-02-08 04:18:47 -08002674
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (!tty)
2676 return;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002677 session = tty->session;
Alan Cox37bdfb02008-02-08 04:18:47 -08002678
Dan Carpenterb3f13de2006-12-13 00:35:09 -08002679 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Alan Coxf34d7a52008-04-30 00:54:13 -07002681 tty_driver_flush_buffer(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -08002682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 read_lock(&tasklist_lock);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002684 /* Kill the entire session */
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002685 do_each_pid_task(session, PIDTYPE_SID, p) {
Eric W. Biederman652486f2006-03-28 16:11:02 -08002686 printk(KERN_NOTICE "SAK: killed process %d"
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07002687 " (%s): task_session(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002688 task_pid_nr(p), p->comm);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002689 send_sig(SIGKILL, p, 1);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002690 } while_each_pid_task(session, PIDTYPE_SID, p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002691 /* Now kill any processes that happen to have the
2692 * tty open.
2693 */
2694 do_each_thread(g, p) {
2695 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 printk(KERN_NOTICE "SAK: killed process %d"
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07002697 " (%s): task_session(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002698 task_pid_nr(p), p->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 send_sig(SIGKILL, p, 1);
2700 continue;
2701 }
2702 task_lock(p);
2703 if (p->files) {
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07002704 /*
2705 * We don't take a ref to the file, so we must
2706 * hold ->file_lock instead.
2707 */
2708 spin_lock(&p->files->file_lock);
Dipankar Sarmabadf1662005-09-09 13:04:10 -07002709 fdt = files_fdtable(p->files);
Alan Cox37bdfb02008-02-08 04:18:47 -08002710 for (i = 0; i < fdt->max_fds; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 filp = fcheck_files(p->files, i);
2712 if (!filp)
2713 continue;
2714 if (filp->f_op->read == tty_read &&
2715 filp->private_data == tty) {
2716 printk(KERN_NOTICE "SAK: killed process %d"
2717 " (%s): fd#%d opened to the tty\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002718 task_pid_nr(p), p->comm, i);
Eric W. Biederman20ac9432006-04-13 04:49:07 -06002719 force_sig(SIGKILL, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 break;
2721 }
2722 }
Dipankar Sarmaca99c1d2006-04-18 22:21:46 -07002723 spin_unlock(&p->files->file_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 }
2725 task_unlock(p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002726 } while_each_thread(g, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 read_unlock(&tasklist_lock);
2728#endif
2729}
2730
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002731static void do_SAK_work(struct work_struct *work)
2732{
2733 struct tty_struct *tty =
2734 container_of(work, struct tty_struct, SAK_work);
2735 __do_SAK(tty);
2736}
2737
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738/*
2739 * The tq handling here is a little racy - tty->SAK_work may already be queued.
2740 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
2741 * the values which we write to it will be identical to the values which it
2742 * already has. --akpm
2743 */
2744void do_SAK(struct tty_struct *tty)
2745{
2746 if (!tty)
2747 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 schedule_work(&tty->SAK_work);
2749}
2750
2751EXPORT_SYMBOL(do_SAK);
2752
Alan Coxaf9b8972006-08-27 01:24:01 -07002753/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002754 * initialize_tty_struct
2755 * @tty: tty to initialize
2756 *
2757 * This subroutine initializes a tty structure that has been newly
2758 * allocated.
2759 *
2760 * Locking: none - tty in question must not be exposed at this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002762
Alan Coxbf970ee2008-10-13 10:42:39 +01002763void initialize_tty_struct(struct tty_struct *tty,
2764 struct tty_driver *driver, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765{
2766 memset(tty, 0, sizeof(struct tty_struct));
Alan Cox9c9f4de2008-10-13 10:37:26 +01002767 kref_init(&tty->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 tty->magic = TTY_MAGIC;
Alan Cox01e1abb2008-07-22 11:16:55 +01002769 tty_ldisc_init(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002770 tty->session = NULL;
2771 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 tty->overrun_time = jiffies;
Alan Cox33f0f882006-01-09 20:54:13 -08002773 tty->buf.head = tty->buf.tail = NULL;
2774 tty_buffer_init(tty);
Arjan van de Ven5785c952006-09-29 02:00:43 -07002775 mutex_init(&tty->termios_mutex);
Alan Coxc65c9bc2009-06-11 12:50:12 +01002776 mutex_init(&tty->ldisc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 init_waitqueue_head(&tty->write_wait);
2778 init_waitqueue_head(&tty->read_wait);
David Howells65f27f32006-11-22 14:55:48 +00002779 INIT_WORK(&tty->hangup_work, do_tty_hangup);
Ingo Molnar70522e12006-03-23 03:00:31 -08002780 mutex_init(&tty->atomic_read_lock);
2781 mutex_init(&tty->atomic_write_lock);
Joe Petersona88a69c2009-01-02 13:40:53 +00002782 mutex_init(&tty->output_lock);
2783 mutex_init(&tty->echo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 spin_lock_init(&tty->read_lock);
Alan Cox04f378b2008-04-30 00:53:29 -07002785 spin_lock_init(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 INIT_LIST_HEAD(&tty->tty_files);
Eric W. Biederman7f1f86a2007-02-13 14:38:58 -07002787 INIT_WORK(&tty->SAK_work, do_SAK_work);
Alan Coxbf970ee2008-10-13 10:42:39 +01002788
2789 tty->driver = driver;
2790 tty->ops = driver->ops;
2791 tty->index = idx;
2792 tty_line_name(driver, idx, tty->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793}
2794
Alan Coxf34d7a52008-04-30 00:54:13 -07002795/**
2796 * tty_put_char - write one character to a tty
2797 * @tty: tty
2798 * @ch: character
2799 *
2800 * Write one byte to the tty using the provided put_char method
2801 * if present. Returns the number of characters successfully output.
2802 *
2803 * Note: the specific put_char operation in the driver layer may go
2804 * away soon. Don't call it directly, use this method
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002806
Alan Coxf34d7a52008-04-30 00:54:13 -07002807int tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808{
Alan Coxf34d7a52008-04-30 00:54:13 -07002809 if (tty->ops->put_char)
2810 return tty->ops->put_char(tty, ch);
2811 return tty->ops->write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
Alan Coxf34d7a52008-04-30 00:54:13 -07002813EXPORT_SYMBOL_GPL(tty_put_char);
2814
Alan Coxd81ed102008-10-13 10:41:42 +01002815struct class *tty_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002818 * tty_register_device - register a tty device
2819 * @driver: the tty driver that describes the tty device
2820 * @index: the index in the tty driver for this tty device
2821 * @device: a struct device that is associated with this tty device.
2822 * This field is optional, if there is no known struct device
2823 * for this tty device it can be set to NULL safely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 *
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07002825 * Returns a pointer to the struct device for this tty device
2826 * (or ERR_PTR(-EFOO) on error).
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002827 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002828 * This call is required to be made to register an individual tty device
2829 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
2830 * that bit is not set, this function should not be called by a tty
2831 * driver.
2832 *
2833 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002835
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07002836struct device *tty_register_device(struct tty_driver *driver, unsigned index,
2837 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
2839 char name[64];
2840 dev_t dev = MKDEV(driver->major, driver->minor_start) + index;
2841
2842 if (index >= driver->num) {
2843 printk(KERN_ERR "Attempt to register invalid tty line number "
2844 " (%d).\n", index);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002845 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
2847
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 if (driver->type == TTY_DRIVER_TYPE_PTY)
2849 pty_line_name(driver, index, name);
2850 else
2851 tty_line_name(driver, index, name);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02002852
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -07002853 return device_create(tty_class, device, dev, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854}
Alan Cox7d7b93c2008-10-13 10:42:09 +01002855EXPORT_SYMBOL(tty_register_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002858 * tty_unregister_device - unregister a tty device
2859 * @driver: the tty driver that describes the tty device
2860 * @index: the index in the tty driver for this tty device
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002862 * If a tty device is registered with a call to tty_register_device() then
2863 * this function must be called when the tty device is gone.
2864 *
2865 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868void tty_unregister_device(struct tty_driver *driver, unsigned index)
2869{
Alan Cox37bdfb02008-02-08 04:18:47 -08002870 device_destroy(tty_class,
2871 MKDEV(driver->major, driver->minor_start) + index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873EXPORT_SYMBOL(tty_unregister_device);
2874
2875struct tty_driver *alloc_tty_driver(int lines)
2876{
2877 struct tty_driver *driver;
2878
Jean Delvare506eb992007-07-15 23:40:14 -07002879 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 if (driver) {
Alan Cox7d7b93c2008-10-13 10:42:09 +01002881 kref_init(&driver->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 driver->magic = TTY_DRIVER_MAGIC;
2883 driver->num = lines;
2884 /* later we'll move allocation of tables here */
2885 }
2886 return driver;
2887}
Alan Cox7d7b93c2008-10-13 10:42:09 +01002888EXPORT_SYMBOL(alloc_tty_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Alan Cox7d7b93c2008-10-13 10:42:09 +01002890static void destruct_tty_driver(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
Alan Cox7d7b93c2008-10-13 10:42:09 +01002892 struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
2893 int i;
2894 struct ktermios *tp;
2895 void *p;
2896
2897 if (driver->flags & TTY_DRIVER_INSTALLED) {
2898 /*
2899 * Free the termios and termios_locked structures because
2900 * we don't want to get memory leaks when modular tty
2901 * drivers are removed from the kernel.
2902 */
2903 for (i = 0; i < driver->num; i++) {
2904 tp = driver->termios[i];
2905 if (tp) {
2906 driver->termios[i] = NULL;
2907 kfree(tp);
2908 }
Alan Cox7d7b93c2008-10-13 10:42:09 +01002909 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
2910 tty_unregister_device(driver, i);
2911 }
2912 p = driver->ttys;
2913 proc_tty_unregister_driver(driver);
2914 driver->ttys = NULL;
Alan Coxfe6e29f2008-10-13 10:44:08 +01002915 driver->termios = NULL;
Alan Cox7d7b93c2008-10-13 10:42:09 +01002916 kfree(p);
2917 cdev_del(&driver->cdev);
2918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 kfree(driver);
2920}
2921
Alan Cox7d7b93c2008-10-13 10:42:09 +01002922void tty_driver_kref_put(struct tty_driver *driver)
2923{
2924 kref_put(&driver->kref, destruct_tty_driver);
2925}
2926EXPORT_SYMBOL(tty_driver_kref_put);
2927
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002928void tty_set_operations(struct tty_driver *driver,
2929 const struct tty_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
Alan Coxf34d7a52008-04-30 00:54:13 -07002931 driver->ops = op;
2932};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933EXPORT_SYMBOL(tty_set_operations);
2934
Alan Cox7d7b93c2008-10-13 10:42:09 +01002935void put_tty_driver(struct tty_driver *d)
2936{
2937 tty_driver_kref_put(d);
2938}
2939EXPORT_SYMBOL(put_tty_driver);
2940
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941/*
2942 * Called by a tty driver to register itself.
2943 */
2944int tty_register_driver(struct tty_driver *driver)
2945{
2946 int error;
Alan Cox37bdfb02008-02-08 04:18:47 -08002947 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 dev_t dev;
2949 void **p = NULL;
2950
Andy Whitcroft543691a2007-05-06 14:49:33 -07002951 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM) && driver->num) {
Alan Coxfe6e29f2008-10-13 10:44:08 +01002952 p = kzalloc(driver->num * 2 * sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (!p)
2954 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 }
2956
2957 if (!driver->major) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002958 error = alloc_chrdev_region(&dev, driver->minor_start,
2959 driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 if (!error) {
2961 driver->major = MAJOR(dev);
2962 driver->minor_start = MINOR(dev);
2963 }
2964 } else {
2965 dev = MKDEV(driver->major, driver->minor_start);
Geert Uytterhoevene5717c42007-02-20 15:45:21 +01002966 error = register_chrdev_region(dev, driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
2968 if (error < 0) {
2969 kfree(p);
2970 return error;
2971 }
2972
2973 if (p) {
2974 driver->ttys = (struct tty_struct **)p;
Alan Coxedc6afc2006-12-08 02:38:44 -08002975 driver->termios = (struct ktermios **)(p + driver->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 } else {
2977 driver->ttys = NULL;
2978 driver->termios = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 }
2980
2981 cdev_init(&driver->cdev, &tty_fops);
2982 driver->cdev.owner = driver->owner;
2983 error = cdev_add(&driver->cdev, dev, driver->num);
2984 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 unregister_chrdev_region(dev, driver->num);
2986 driver->ttys = NULL;
Alan Coxfe6e29f2008-10-13 10:44:08 +01002987 driver->termios = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 kfree(p);
2989 return error;
2990 }
2991
Alexey Dobriyanca509f62007-05-08 00:27:12 -07002992 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 list_add(&driver->tty_drivers, &tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07002994 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08002995
2996 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
2997 for (i = 0; i < driver->num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 tty_register_device(driver, i, NULL);
2999 }
3000 proc_tty_register_driver(driver);
Alan Cox7d7b93c2008-10-13 10:42:09 +01003001 driver->flags |= TTY_DRIVER_INSTALLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 return 0;
3003}
3004
3005EXPORT_SYMBOL(tty_register_driver);
3006
3007/*
3008 * Called by a tty driver to unregister itself.
3009 */
3010int tty_unregister_driver(struct tty_driver *driver)
3011{
Alan Cox7d7b93c2008-10-13 10:42:09 +01003012#if 0
3013 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 if (driver->refcount)
3015 return -EBUSY;
Alan Cox7d7b93c2008-10-13 10:42:09 +01003016#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3018 driver->num);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003019 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 list_del(&driver->tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003021 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 return 0;
3023}
Alan Cox7d7b93c2008-10-13 10:42:09 +01003024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025EXPORT_SYMBOL(tty_unregister_driver);
3026
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003027dev_t tty_devnum(struct tty_struct *tty)
3028{
3029 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3030}
3031EXPORT_SYMBOL(tty_devnum);
3032
3033void proc_clear_tty(struct task_struct *p)
3034{
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003035 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +01003036 struct tty_struct *tty;
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003037 spin_lock_irqsave(&p->sighand->siglock, flags);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003038 tty = p->signal->tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003039 p->signal->tty = NULL;
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003040 spin_unlock_irqrestore(&p->sighand->siglock, flags);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003041 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003042}
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003043
Alan Cox47f86832008-04-30 00:53:30 -07003044/* Called under the sighand lock */
3045
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003046static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003047{
3048 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -07003049 unsigned long flags;
3050 /* We should not have a session or pgrp to put here but.... */
3051 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -06003052 put_pid(tty->session);
3053 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003054 tty->pgrp = get_pid(task_pgrp(tsk));
Alan Cox47f86832008-04-30 00:53:30 -07003055 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
3056 tty->session = get_pid(task_session(tsk));
Alan Cox9c9f4de2008-10-13 10:37:26 +01003057 if (tsk->signal->tty) {
3058 printk(KERN_DEBUG "tty not NULL!!\n");
3059 tty_kref_put(tsk->signal->tty);
3060 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003061 }
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003062 put_pid(tsk->signal->tty_old_pgrp);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003063 tsk->signal->tty = tty_kref_get(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003064 tsk->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003065}
3066
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07003067static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003068{
3069 spin_lock_irq(&tsk->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003070 __proc_set_tty(tsk, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003071 spin_unlock_irq(&tsk->sighand->siglock);
3072}
3073
3074struct tty_struct *get_current_tty(void)
3075{
3076 struct tty_struct *tty;
Alan Cox934e6eb2008-10-13 10:40:43 +01003077 unsigned long flags;
3078
3079 spin_lock_irqsave(&current->sighand->siglock, flags);
Alan Cox452a00d2008-10-13 10:39:13 +01003080 tty = tty_kref_get(current->signal->tty);
Alan Cox934e6eb2008-10-13 10:40:43 +01003081 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003082 return tty;
3083}
Heiko Carstensa311f742006-12-13 00:33:41 -08003084EXPORT_SYMBOL_GPL(get_current_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
Alan Coxd81ed102008-10-13 10:41:42 +01003086void tty_default_fops(struct file_operations *fops)
3087{
3088 *fops = tty_fops;
3089}
3090
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091/*
3092 * Initialize the console device. This is called *early*, so
3093 * we can't necessarily depend on lots of kernel help here.
3094 * Just do some early initializations, and do the complex setup
3095 * later.
3096 */
3097void __init console_init(void)
3098{
3099 initcall_t *call;
3100
3101 /* Setup the default TTY line discipline. */
Alan Cox01e1abb2008-07-22 11:16:55 +01003102 tty_ldisc_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
3104 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08003105 * set up the console device so that later boot sequences can
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 * inform about problems etc..
3107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 call = __con_initcall_start;
3109 while (call < __con_initcall_end) {
3110 (*call)();
3111 call++;
3112 }
3113}
3114
Kay Sieverse454cea2009-09-18 23:01:12 +02003115static char *tty_devnode(struct device *dev, mode_t *mode)
3116{
3117 if (!mode)
3118 return NULL;
3119 if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) ||
3120 dev->devt == MKDEV(TTYAUX_MAJOR, 2))
3121 *mode = 0666;
3122 return NULL;
3123}
3124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125static int __init tty_class_init(void)
3126{
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08003127 tty_class = class_create(THIS_MODULE, "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 if (IS_ERR(tty_class))
3129 return PTR_ERR(tty_class);
Kay Sieverse454cea2009-09-18 23:01:12 +02003130 tty_class->devnode = tty_devnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 return 0;
3132}
3133
3134postcore_initcall(tty_class_init);
3135
3136/* 3/2004 jmc: why do these devices exist? */
3137
3138static struct cdev tty_cdev, console_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140/*
3141 * Ok, now we can initialize the rest of the tty devices and can count
3142 * on memory allocations, interrupts etc..
3143 */
David Howells31d1d482010-08-06 16:34:43 +01003144int __init tty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
3146 cdev_init(&tty_cdev, &tty_fops);
3147 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3148 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3149 panic("Couldn't register /dev/tty driver\n");
Alan Coxd81ed102008-10-13 10:41:42 +01003150 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL,
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003151 "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
3153 cdev_init(&console_cdev, &console_fops);
3154 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3155 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3156 panic("Couldn't register /dev/console driver\n");
Alan Coxd81ed102008-10-13 10:41:42 +01003157 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL,
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003158 "console");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160#ifdef CONFIG_VT
Alan Coxd81ed102008-10-13 10:41:42 +01003161 vty_init(&console_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162#endif
3163 return 0;
3164}
David Howells31d1d482010-08-06 16:34:43 +01003165