blob: 05400acbc456f1e9e888972e5c73c5c4f634d71c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 */
4
5/*
6 * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles
7 * or rs-channels. It also implements echoing, cooked mode etc.
8 *
9 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
10 *
11 * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the
12 * tty_struct and tty_queue structures. Previously there was an array
13 * of 256 tty_struct's which was statically allocated, and the
14 * tty_queue structures were allocated at boot time. Both are now
15 * dynamically allocated only when the tty is open.
16 *
17 * Also restructured routines so that there is more of a separation
18 * between the high-level tty routines (tty_io.c and tty_ioctl.c) and
19 * the low-level tty routines (serial.c, pty.c, console.c). This
Alan Cox37bdfb02008-02-08 04:18:47 -080020 * makes for cleaner and more compact code. -TYT, 9/17/92
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
23 * which can be dynamically activated and de-activated by the line
24 * discipline handling modules (like SLIP).
25 *
26 * NOTE: pay no attention to the line discipline code (yet); its
27 * interface is still subject to change in this version...
28 * -- TYT, 1/31/92
29 *
30 * Added functionality to the OPOST tty handling. No delays, but all
31 * other bits should be there.
32 * -- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993.
33 *
34 * Rewrote canonical mode and added more termios flags.
35 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
36 *
37 * Reorganized FASYNC support so mouse code can share it.
38 * -- ctm@ardi.com, 9Sep95
39 *
40 * New TIOCLINUX variants added.
41 * -- mj@k332.feld.cvut.cz, 19-Nov-95
Alan Cox37bdfb02008-02-08 04:18:47 -080042 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * Restrict vt switching via ioctl()
44 * -- grif@cs.ucr.edu, 5-Dec-95
45 *
46 * Move console and virtual terminal code to more appropriate files,
47 * implement CONFIG_VT and generalize console device interface.
48 * -- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97
49 *
Alan Coxd81ed102008-10-13 10:41:42 +010050 * Rewrote tty_init_dev and tty_release_dev to eliminate races.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * -- Bill Hawes <whawes@star.net>, June 97
52 *
53 * Added devfs support.
54 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
55 *
56 * Added support for a Unix98-style ptmx device.
57 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
58 *
59 * Reduced memory usage for older ARM systems
60 * -- Russell King <rmk@arm.linux.org.uk>
61 *
62 * Move do_SAK() into process context. Less stack use in devfs functions.
Alan Cox37bdfb02008-02-08 04:18:47 -080063 * alloc_tty_struct() always uses kmalloc()
64 * -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 */
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/types.h>
68#include <linux/major.h>
69#include <linux/errno.h>
70#include <linux/signal.h>
71#include <linux/fcntl.h>
72#include <linux/sched.h>
73#include <linux/interrupt.h>
74#include <linux/tty.h>
75#include <linux/tty_driver.h>
76#include <linux/tty_flip.h>
77#include <linux/devpts_fs.h>
78#include <linux/file.h>
Al Viro9f3acc32008-04-24 07:44:08 -040079#include <linux/fdtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#include <linux/console.h>
81#include <linux/timer.h>
82#include <linux/ctype.h>
83#include <linux/kd.h>
84#include <linux/mm.h>
85#include <linux/string.h>
86#include <linux/slab.h>
87#include <linux/poll.h>
88#include <linux/proc_fs.h>
89#include <linux/init.h>
90#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include <linux/wait.h>
93#include <linux/bitops.h>
Domen Puncerb20f3ae2005-06-25 14:58:42 -070094#include <linux/delay.h>
Alan Coxa352def2008-07-16 21:53:12 +010095#include <linux/seq_file.h>
Alan Coxd281da72010-09-16 18:21:24 +010096#include <linux/serial.h>
Manuel Zerpies5a3c6b22011-06-16 14:07:22 +020097#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Alan Coxa352def2008-07-16 21:53:12 +010099#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101#include <linux/kbd_kern.h>
102#include <linux/vt_kern.h>
103#include <linux/selection.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#include <linux/kmod.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700106#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#undef TTY_DEBUG_HANGUP
109
110#define TTY_PARANOIA_CHECK 1
111#define CHECK_TTY_COUNT 1
112
Alan Coxedc6afc2006-12-08 02:38:44 -0800113struct ktermios tty_std_termios = { /* for the benefit of tty drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .c_iflag = ICRNL | IXON,
115 .c_oflag = OPOST | ONLCR,
116 .c_cflag = B38400 | CS8 | CREAD | HUPCL,
117 .c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
118 ECHOCTL | ECHOKE | IEXTEN,
Alan Coxedc6afc2006-12-08 02:38:44 -0800119 .c_cc = INIT_C_CC,
120 .c_ispeed = 38400,
121 .c_ospeed = 38400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
124EXPORT_SYMBOL(tty_std_termios);
125
126/* This list gets poked at by procfs and various bits of boot up code. This
127 could do with some rationalisation such as pulling the tty proc function
128 into this file */
Alan Cox37bdfb02008-02-08 04:18:47 -0800129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130LIST_HEAD(tty_drivers); /* linked list of tty drivers */
131
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800132/* Mutex to protect creating and releasing a tty. This is shared with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 vt.c for deeply disgusting hack reasons */
Ingo Molnar70522e12006-03-23 03:00:31 -0800134DEFINE_MUTEX(tty_mutex);
Alan Coxde2a84f2006-09-29 02:00:57 -0700135EXPORT_SYMBOL(tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Nick Pigginee2ffa02010-08-18 04:37:35 +1000137/* Spinlock to protect the tty->tty_files list */
138DEFINE_SPINLOCK(tty_files_lock);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
141static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
Alan Cox37bdfb02008-02-08 04:18:47 -0800142ssize_t redirected_tty_write(struct file *, const char __user *,
143 size_t, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static unsigned int tty_poll(struct file *, poll_table *);
145static int tty_open(struct inode *, struct file *);
Alan Cox04f378b2008-04-30 00:53:29 -0700146long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700147#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -0800148static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700149 unsigned long arg);
150#else
151#define tty_compat_ioctl NULL
152#endif
Arnd Bergmannec79d602010-06-01 22:53:01 +0200153static int __tty_fasync(int fd, struct file *filp, int on);
Alan Cox37bdfb02008-02-08 04:18:47 -0800154static int tty_fasync(int fd, struct file *filp, int on);
Christoph Hellwigd5698c22007-02-10 01:46:46 -0800155static void release_tty(struct tty_struct *tty, int idx);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700156static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700157static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Alan Coxaf9b8972006-08-27 01:24:01 -0700159/**
160 * alloc_tty_struct - allocate a tty object
161 *
162 * Return a new empty tty structure. The data fields have not
163 * been initialized in any way but has been zeroed
164 *
165 * Locking: none
Alan Coxaf9b8972006-08-27 01:24:01 -0700166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Alan Coxbf970ee2008-10-13 10:42:39 +0100168struct tty_struct *alloc_tty_struct(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Alan Cox1266b1e2006-09-29 02:00:40 -0700170 return kzalloc(sizeof(struct tty_struct), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Alan Coxaf9b8972006-08-27 01:24:01 -0700173/**
174 * free_tty_struct - free a disused tty
175 * @tty: tty struct to free
176 *
177 * Free the write buffers, tty queue and tty memory itself.
178 *
179 * Locking: none. Must be called after tty is definitely unused
180 */
181
Alan Coxbf970ee2008-10-13 10:42:39 +0100182void free_tty_struct(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Dan Carpenterdc6802a2012-07-24 12:52:04 +0100184 if (!tty)
185 return;
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +0400186 if (tty->dev)
187 put_device(tty->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 kfree(tty->write_buf);
Alan Cox89c8d912012-08-08 16:30:13 +0100189 tty->magic = 0xDEADDEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 kfree(tty);
191}
192
Nick Piggind996b622010-08-18 04:37:36 +1000193static inline struct tty_struct *file_tty(struct file *file)
194{
195 return ((struct tty_file_private *)file->private_data)->tty;
196}
197
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200198int tty_alloc_file(struct file *file)
Nick Piggind996b622010-08-18 04:37:36 +1000199{
200 struct tty_file_private *priv;
201
Pekka Enbergf573bd12010-08-24 07:48:34 +0300202 priv = kmalloc(sizeof(*priv), GFP_KERNEL);
203 if (!priv)
204 return -ENOMEM;
Nick Piggind996b622010-08-18 04:37:36 +1000205
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200206 file->private_data = priv;
207
208 return 0;
209}
210
211/* Associate a new file with the tty structure */
212void tty_add_file(struct tty_struct *tty, struct file *file)
213{
214 struct tty_file_private *priv = file->private_data;
215
Nick Piggind996b622010-08-18 04:37:36 +1000216 priv->tty = tty;
217 priv->file = file;
Nick Piggind996b622010-08-18 04:37:36 +1000218
219 spin_lock(&tty_files_lock);
220 list_add(&priv->list, &tty->tty_files);
221 spin_unlock(&tty_files_lock);
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200222}
Pekka Enbergf573bd12010-08-24 07:48:34 +0300223
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200224/**
225 * tty_free_file - free file->private_data
226 *
227 * This shall be used only for fail path handling when tty_add_file was not
228 * called yet.
229 */
230void tty_free_file(struct file *file)
231{
232 struct tty_file_private *priv = file->private_data;
233
234 file->private_data = NULL;
235 kfree(priv);
Nick Piggind996b622010-08-18 04:37:36 +1000236}
237
238/* Delete file from its tty */
Josh Triplett2520e272012-11-18 21:27:47 -0800239static void tty_del_file(struct file *file)
Nick Piggind996b622010-08-18 04:37:36 +1000240{
241 struct tty_file_private *priv = file->private_data;
242
243 spin_lock(&tty_files_lock);
244 list_del(&priv->list);
245 spin_unlock(&tty_files_lock);
Jiri Slabyfa90e1c2011-10-12 11:32:43 +0200246 tty_free_file(file);
Nick Piggind996b622010-08-18 04:37:36 +1000247}
248
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
251
Alan Coxaf9b8972006-08-27 01:24:01 -0700252/**
253 * tty_name - return tty naming
254 * @tty: tty structure
255 * @buf: buffer for output
256 *
257 * Convert a tty structure into a name. The name reflects the kernel
258 * naming policy and if udev is in use may not reflect user space
259 *
260 * Locking: none
261 */
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263char *tty_name(struct tty_struct *tty, char *buf)
264{
265 if (!tty) /* Hmm. NULL pointer. That's fun. */
266 strcpy(buf, "NULL tty");
267 else
268 strcpy(buf, tty->name);
269 return buf;
270}
271
272EXPORT_SYMBOL(tty_name);
273
Andrew Mortond769a662005-05-05 16:15:50 -0700274int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 const char *routine)
276{
277#ifdef TTY_PARANOIA_CHECK
278 if (!tty) {
279 printk(KERN_WARNING
280 "null TTY for (%d:%d) in %s\n",
281 imajor(inode), iminor(inode), routine);
282 return 1;
283 }
284 if (tty->magic != TTY_MAGIC) {
285 printk(KERN_WARNING
286 "bad magic number for tty struct (%d:%d) in %s\n",
287 imajor(inode), iminor(inode), routine);
288 return 1;
289 }
290#endif
291 return 0;
292}
293
294static int check_tty_count(struct tty_struct *tty, const char *routine)
295{
296#ifdef CHECK_TTY_COUNT
297 struct list_head *p;
298 int count = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -0800299
Nick Pigginee2ffa02010-08-18 04:37:35 +1000300 spin_lock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 list_for_each(p, &tty->tty_files) {
302 count++;
303 }
Nick Pigginee2ffa02010-08-18 04:37:35 +1000304 spin_unlock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
306 tty->driver->subtype == PTY_TYPE_SLAVE &&
307 tty->link && tty->link->count)
308 count++;
309 if (tty->count != count) {
310 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
311 "!= #fd's(%d) in %s\n",
312 tty->name, tty->count, count, routine);
313 return count;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315#endif
316 return 0;
317}
318
Alan Coxaf9b8972006-08-27 01:24:01 -0700319/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700320 * get_tty_driver - find device of a tty
321 * @dev_t: device identifier
322 * @index: returns the index of the tty
323 *
324 * This routine returns a tty driver structure, given a device number
325 * and also passes back the index number.
326 *
327 * Locking: caller must hold tty_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static struct tty_driver *get_tty_driver(dev_t device, int *index)
331{
332 struct tty_driver *p;
333
334 list_for_each_entry(p, &tty_drivers, tty_drivers) {
335 dev_t base = MKDEV(p->major, p->minor_start);
336 if (device < base || device >= base + p->num)
337 continue;
338 *index = device - base;
Alan Cox7d7b93c2008-10-13 10:42:09 +0100339 return tty_driver_kref_get(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341 return NULL;
342}
343
Jason Wesself2d937f2008-04-17 20:05:37 +0200344#ifdef CONFIG_CONSOLE_POLL
345
346/**
347 * tty_find_polling_driver - find device of a polled tty
348 * @name: name string to match
349 * @line: pointer to resulting tty line nr
350 *
351 * This routine returns a tty driver structure, given a name
352 * and the condition that the tty driver is capable of polled
353 * operation.
354 */
355struct tty_driver *tty_find_polling_driver(char *name, int *line)
356{
357 struct tty_driver *p, *res = NULL;
358 int tty_line = 0;
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500359 int len;
Alan Cox5f0878a2009-06-11 12:46:41 +0100360 char *str, *stp;
Jason Wesself2d937f2008-04-17 20:05:37 +0200361
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500362 for (str = name; *str; str++)
363 if ((*str >= '0' && *str <= '9') || *str == ',')
364 break;
365 if (!*str)
366 return NULL;
367
368 len = str - name;
369 tty_line = simple_strtoul(str, &str, 10);
370
Jason Wesself2d937f2008-04-17 20:05:37 +0200371 mutex_lock(&tty_mutex);
372 /* Search through the tty devices to look for a match */
373 list_for_each_entry(p, &tty_drivers, tty_drivers) {
Jason Wessel0dca0fd2008-09-26 10:36:42 -0500374 if (strncmp(name, p->name, len) != 0)
375 continue;
Alan Cox5f0878a2009-06-11 12:46:41 +0100376 stp = str;
377 if (*stp == ',')
378 stp++;
379 if (*stp == '\0')
380 stp = NULL;
Jason Wesself2d937f2008-04-17 20:05:37 +0200381
Nathael Pajani6eb68d62010-09-02 16:06:16 +0200382 if (tty_line >= 0 && tty_line < p->num && p->ops &&
Alan Cox5f0878a2009-06-11 12:46:41 +0100383 p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) {
Alan Cox7d7b93c2008-10-13 10:42:09 +0100384 res = tty_driver_kref_get(p);
Jason Wesself2d937f2008-04-17 20:05:37 +0200385 *line = tty_line;
386 break;
387 }
388 }
389 mutex_unlock(&tty_mutex);
390
391 return res;
392}
393EXPORT_SYMBOL_GPL(tty_find_polling_driver);
394#endif
395
Alan Coxaf9b8972006-08-27 01:24:01 -0700396/**
397 * tty_check_change - check for POSIX terminal changes
398 * @tty: tty to check
399 *
400 * If we try to write to, or set the state of, a terminal and we're
401 * not in the foreground, send a SIGTTOU. If the signal is blocked or
402 * ignored, go ahead and perform the operation. (POSIX 7.2)
403 *
Alan Cox978e5952008-04-30 00:53:59 -0700404 * Locking: ctrl_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700406
Alan Cox37bdfb02008-02-08 04:18:47 -0800407int tty_check_change(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Alan Cox47f86832008-04-30 00:53:30 -0700409 unsigned long flags;
410 int ret = 0;
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (current->signal->tty != tty)
413 return 0;
Alan Cox47f86832008-04-30 00:53:30 -0700414
415 spin_lock_irqsave(&tty->ctrl_lock, flags);
416
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800417 if (!tty->pgrp) {
418 printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n");
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700419 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800421 if (task_pgrp(current) == tty->pgrp)
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700422 goto out_unlock;
423 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (is_ignored(SIGTTOU))
Alan Cox47f86832008-04-30 00:53:30 -0700425 goto out;
426 if (is_current_pgrp_orphaned()) {
427 ret = -EIO;
428 goto out;
429 }
Oleg Nesterov040b6362007-06-01 00:46:53 -0700430 kill_pgrp(task_pgrp(current), SIGTTOU, 1);
431 set_thread_flag(TIF_SIGPENDING);
Alan Cox47f86832008-04-30 00:53:30 -0700432 ret = -ERESTARTSYS;
433out:
Andrew Morton9ffee4c2008-05-14 16:05:58 -0700434 return ret;
435out_unlock:
Alan Cox47f86832008-04-30 00:53:30 -0700436 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
437 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440EXPORT_SYMBOL(tty_check_change);
441
Alan Cox37bdfb02008-02-08 04:18:47 -0800442static ssize_t hung_up_tty_read(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 size_t count, loff_t *ppos)
444{
445 return 0;
446}
447
Alan Cox37bdfb02008-02-08 04:18:47 -0800448static ssize_t hung_up_tty_write(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 size_t count, loff_t *ppos)
450{
451 return -EIO;
452}
453
454/* No kernel lock held - none needed ;) */
Alan Cox37bdfb02008-02-08 04:18:47 -0800455static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
458}
459
Alan Cox04f378b2008-04-30 00:53:29 -0700460static long hung_up_tty_ioctl(struct file *file, unsigned int cmd,
461 unsigned long arg)
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700462{
463 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
464}
465
Alan Cox37bdfb02008-02-08 04:18:47 -0800466static long hung_up_tty_compat_ioctl(struct file *file,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700467 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
470}
471
Arjan van de Ven62322d22006-07-03 00:24:21 -0700472static const struct file_operations tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 .llseek = no_llseek,
474 .read = tty_read,
475 .write = tty_write,
476 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700477 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700478 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .open = tty_open,
480 .release = tty_release,
481 .fasync = tty_fasync,
482};
483
Arjan van de Ven62322d22006-07-03 00:24:21 -0700484static const struct file_operations console_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 .llseek = no_llseek,
486 .read = tty_read,
487 .write = redirected_tty_write,
488 .poll = tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700489 .unlocked_ioctl = tty_ioctl,
Paul Fulghume10cc1d2007-05-10 22:22:50 -0700490 .compat_ioctl = tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .open = tty_open,
492 .release = tty_release,
493 .fasync = tty_fasync,
494};
495
Arjan van de Ven62322d22006-07-03 00:24:21 -0700496static const struct file_operations hung_up_tty_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .llseek = no_llseek,
498 .read = hung_up_tty_read,
499 .write = hung_up_tty_write,
500 .poll = hung_up_tty_poll,
Alan Cox04f378b2008-04-30 00:53:29 -0700501 .unlocked_ioctl = hung_up_tty_ioctl,
Paul Fulghum38ad2ed2007-06-16 10:15:55 -0700502 .compat_ioctl = hung_up_tty_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .release = tty_release,
504};
505
506static DEFINE_SPINLOCK(redirect_lock);
507static struct file *redirect;
508
509/**
510 * tty_wakeup - request more data
511 * @tty: terminal
512 *
513 * Internal and external helper for wakeups of tty. This function
514 * informs the line discipline if present that the driver is ready
515 * to receive more output data.
516 */
Alan Cox37bdfb02008-02-08 04:18:47 -0800517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518void tty_wakeup(struct tty_struct *tty)
519{
520 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -0800521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
523 ld = tty_ldisc_ref(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800524 if (ld) {
Alan Coxa352def2008-07-16 21:53:12 +0100525 if (ld->ops->write_wakeup)
526 ld->ops->write_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 tty_ldisc_deref(ld);
528 }
529 }
Davide Libenzi4b194492009-03-31 15:24:24 -0700530 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
533EXPORT_SYMBOL_GPL(tty_wakeup);
534
535/**
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200536 * __tty_hangup - actual handler for hangup events
David Howells65f27f32006-11-22 14:55:48 +0000537 * @work: tty device
Alan Coxaf9b8972006-08-27 01:24:01 -0700538 *
Kevin Cernekeeef4f5272012-12-26 20:43:41 -0800539 * This can be called by a "kworker" kernel thread. That is process
Alan Coxaf9b8972006-08-27 01:24:01 -0700540 * synchronous but doesn't hold any locks, so we need to make sure we
541 * have the appropriate locks for what we're doing.
542 *
543 * The hangup event clears any pending redirections onto the hung up
544 * device. It ensures future writes will error and it does the needed
545 * line discipline hangup and signal delivery. The tty object itself
546 * remains intact.
547 *
548 * Locking:
Arnd Bergmannec79d602010-06-01 22:53:01 +0200549 * BTM
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800550 * redirect lock for undoing redirection
551 * file list lock for manipulating list of ttys
552 * tty_ldisc_lock from called functions
553 * termios_mutex resetting termios data
554 * tasklist_lock to walk task list for hangup event
555 * ->siglock to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
Josh Triplett2520e272012-11-18 21:27:47 -0800557static void __tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Alan Cox37bdfb02008-02-08 04:18:47 -0800559 struct file *cons_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct file *filp, *f = NULL;
561 struct task_struct *p;
Nick Piggind996b622010-08-18 04:37:36 +1000562 struct tty_file_private *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 int closecount = 0, n;
Alan Cox47f86832008-04-30 00:53:30 -0700564 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100565 int refs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 if (!tty)
568 return;
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 spin_lock(&redirect_lock);
Nick Piggind996b622010-08-18 04:37:36 +1000572 if (redirect && file_tty(redirect) == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 f = redirect;
574 redirect = NULL;
575 }
576 spin_unlock(&redirect_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800577
Alan Cox89c8d912012-08-08 16:30:13 +0100578 tty_lock(tty);
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200579
Jiri Slabyacfa7472010-11-29 10:16:54 +0100580 /* some functions below drop BTM, so we need this bit */
581 set_bit(TTY_HUPPING, &tty->flags);
582
Arnd Bergmannec79d602010-06-01 22:53:01 +0200583 /* inuse_filps is protected by the single tty lock,
584 this really needs to change if we want to flush the
585 workqueue with the lock held */
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200586 check_tty_count(tty, "tty_hangup");
Alan Cox36ba7822009-11-30 13:18:51 +0000587
Nick Pigginee2ffa02010-08-18 04:37:35 +1000588 spin_lock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* This breaks for file handles being sent over AF_UNIX sockets ? */
Nick Piggind996b622010-08-18 04:37:36 +1000590 list_for_each_entry(priv, &tty->tty_files, list) {
591 filp = priv->file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (filp->f_op->write == redirected_tty_write)
593 cons_filp = filp;
594 if (filp->f_op->write != tty_write)
595 continue;
596 closecount++;
Arnd Bergmannec79d602010-06-01 22:53:01 +0200597 __tty_fasync(-1, filp, 0); /* can't block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 filp->f_op = &hung_up_tty_fops;
599 }
Nick Pigginee2ffa02010-08-18 04:37:35 +1000600 spin_unlock(&tty_files_lock);
Alan Cox37bdfb02008-02-08 04:18:47 -0800601
Jiri Slabyacfa7472010-11-29 10:16:54 +0100602 /*
603 * it drops BTM and thus races with reopen
604 * we protect the race by TTY_HUPPING
605 */
Alan Coxc65c9bc2009-06-11 12:50:12 +0100606 tty_ldisc_hangup(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800609 if (tty->session) {
610 do_each_pid_task(tty->session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800611 spin_lock_irq(&p->sighand->siglock);
Alan Cox9c9f4de2008-10-13 10:37:26 +0100612 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 p->signal->tty = NULL;
Alan Cox9c9f4de2008-10-13 10:37:26 +0100614 /* We defer the dereferences outside fo
615 the tasklist lock */
616 refs++;
617 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800618 if (!p->signal->leader) {
619 spin_unlock_irq(&p->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 continue;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800621 }
622 __group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p);
623 __group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800624 put_pid(p->signal->tty_old_pgrp); /* A noop */
Alan Cox47f86832008-04-30 00:53:30 -0700625 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800626 if (tty->pgrp)
627 p->signal->tty_old_pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -0700628 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800629 spin_unlock_irq(&p->sighand->siglock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800630 } while_each_pid_task(tty->session, PIDTYPE_SID, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632 read_unlock(&tasklist_lock);
633
Alan Cox47f86832008-04-30 00:53:30 -0700634 spin_lock_irqsave(&tty->ctrl_lock, flags);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100635 clear_bit(TTY_THROTTLED, &tty->flags);
636 clear_bit(TTY_PUSH, &tty->flags);
637 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -0600638 put_pid(tty->session);
639 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800640 tty->session = NULL;
641 tty->pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 tty->ctrl_status = 0;
Alan Cox47f86832008-04-30 00:53:30 -0700643 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
644
Alan Cox9c9f4de2008-10-13 10:37:26 +0100645 /* Account for the p->signal references we killed */
646 while (refs--)
647 tty_kref_put(tty);
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
Alan Cox37bdfb02008-02-08 04:18:47 -0800650 * If one of the devices matches a console pointer, we
651 * cannot just call hangup() because that will cause
652 * tty->count and state->count to go out of sync.
653 * So we just call close() the right number of times.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
655 if (cons_filp) {
Alan Coxf34d7a52008-04-30 00:54:13 -0700656 if (tty->ops->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 for (n = 0; n < closecount; n++)
Alan Coxf34d7a52008-04-30 00:54:13 -0700658 tty->ops->close(tty, cons_filp);
659 } else if (tty->ops->hangup)
660 (tty->ops->hangup)(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -0800661 /*
662 * We don't want to have driver/ldisc interactions beyond
663 * the ones we did here. The driver layer expects no
664 * calls after ->hangup() from the ldisc side. However we
665 * can't yet guarantee all that.
666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 set_bit(TTY_HUPPED, &tty->flags);
Jiri Slabyacfa7472010-11-29 10:16:54 +0100668 clear_bit(TTY_HUPPING, &tty->flags);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100669 tty_ldisc_enable(tty);
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200670
Alan Cox89c8d912012-08-08 16:30:13 +0100671 tty_unlock(tty);
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (f)
674 fput(f);
675}
676
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200677static void do_tty_hangup(struct work_struct *work)
678{
679 struct tty_struct *tty =
680 container_of(work, struct tty_struct, hangup_work);
681
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200682 __tty_hangup(tty);
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200683}
684
Alan Coxaf9b8972006-08-27 01:24:01 -0700685/**
686 * tty_hangup - trigger a hangup event
687 * @tty: tty to hangup
688 *
689 * A carrier loss (virtual or otherwise) has occurred on this like
690 * schedule a hangup sequence to run after this event.
691 */
692
Alan Cox37bdfb02008-02-08 04:18:47 -0800693void tty_hangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695#ifdef TTY_DEBUG_HANGUP
696 char buf[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
698#endif
699 schedule_work(&tty->hangup_work);
700}
701
702EXPORT_SYMBOL(tty_hangup);
703
Alan Coxaf9b8972006-08-27 01:24:01 -0700704/**
705 * tty_vhangup - process vhangup
706 * @tty: tty to hangup
707 *
708 * The user has asked via system call for the terminal to be hung up.
709 * We do this synchronously so that when the syscall returns the process
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200710 * is complete. That guarantee is necessary for security reasons.
Alan Coxaf9b8972006-08-27 01:24:01 -0700711 */
712
Alan Cox37bdfb02008-02-08 04:18:47 -0800713void tty_vhangup(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715#ifdef TTY_DEBUG_HANGUP
716 char buf[64];
717
718 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
719#endif
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200720 __tty_hangup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
Alan Cox37bdfb02008-02-08 04:18:47 -0800722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723EXPORT_SYMBOL(tty_vhangup);
724
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200725
Alan Coxaf9b8972006-08-27 01:24:01 -0700726/**
Alan Cox2cb59982008-10-13 10:40:30 +0100727 * tty_vhangup_self - process vhangup for own ctty
728 *
729 * Perform a vhangup on the current controlling tty
730 */
731
732void tty_vhangup_self(void)
733{
734 struct tty_struct *tty;
735
Alan Cox2cb59982008-10-13 10:40:30 +0100736 tty = get_current_tty();
737 if (tty) {
738 tty_vhangup(tty);
739 tty_kref_put(tty);
740 }
Alan Cox2cb59982008-10-13 10:40:30 +0100741}
742
743/**
Alan Coxaf9b8972006-08-27 01:24:01 -0700744 * tty_hung_up_p - was tty hung up
745 * @filp: file pointer of tty
746 *
747 * Return true if the tty has been subject to a vhangup or a carrier
748 * loss
749 */
750
Alan Cox37bdfb02008-02-08 04:18:47 -0800751int tty_hung_up_p(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 return (filp->f_op == &hung_up_tty_fops);
754}
755
756EXPORT_SYMBOL(tty_hung_up_p);
757
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800758static void session_clear_tty(struct pid *session)
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800759{
760 struct task_struct *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800761 do_each_pid_task(session, PIDTYPE_SID, p) {
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800762 proc_clear_tty(p);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800763 } while_each_pid_task(session, PIDTYPE_SID, p);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800764}
765
Alan Coxaf9b8972006-08-27 01:24:01 -0700766/**
767 * disassociate_ctty - disconnect controlling tty
768 * @on_exit: true if exiting so need to "hang up" the session
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700770 * This function is typically called only by the session leader, when
771 * it wants to disassociate itself from its controlling tty.
772 *
773 * It performs the following functions:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
775 * (2) Clears the tty from being controlling the session
776 * (3) Clears the controlling tty for all processes in the
777 * session group.
778 *
Alan Coxaf9b8972006-08-27 01:24:01 -0700779 * The argument on_exit is set to 1 if called when a process is
780 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
781 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800782 * Locking:
Arnd Bergmannec79d602010-06-01 22:53:01 +0200783 * BTM is taken for hysterical raisins, and held when
784 * called from no_tty().
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800785 * tty_mutex is taken to protect tty
786 * ->siglock is taken to protect ->signal/->sighand
787 * tasklist_lock is taken to walk process list for sessions
788 * ->siglock is taken to protect ->signal/->sighand
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
Alan Coxaf9b8972006-08-27 01:24:01 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791void disassociate_ctty(int on_exit)
792{
793 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Alan Cox5ec93d12009-11-30 13:18:45 +0000795 if (!current->signal->leader)
796 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800798 tty = get_current_tty();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (tty) {
Jiri Slaby1411dc42011-11-09 21:33:18 +0100800 struct pid *tty_pgrp = get_pid(tty->pgrp);
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200801 if (on_exit) {
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200802 if (tty->driver->type != TTY_DRIVER_TYPE_PTY)
Arnd Bergmann11dbf202010-06-18 14:58:07 +0200803 tty_vhangup(tty);
Arnd Bergmannddcd9fb2010-06-01 22:53:08 +0200804 }
Alan Cox452a00d2008-10-13 10:39:13 +0100805 tty_kref_put(tty);
Jiri Slaby1411dc42011-11-09 21:33:18 +0100806 if (tty_pgrp) {
807 kill_pgrp(tty_pgrp, SIGHUP, on_exit);
808 if (!on_exit)
809 kill_pgrp(tty_pgrp, SIGCONT, on_exit);
810 put_pid(tty_pgrp);
811 }
Eric W. Biederman680a9672007-02-12 00:52:52 -0800812 } else if (on_exit) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800813 struct pid *old_pgrp;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800814 spin_lock_irq(&current->sighand->siglock);
815 old_pgrp = current->signal->tty_old_pgrp;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800816 current->signal->tty_old_pgrp = NULL;
Eric W. Biederman680a9672007-02-12 00:52:52 -0800817 spin_unlock_irq(&current->sighand->siglock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800818 if (old_pgrp) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800819 kill_pgrp(old_pgrp, SIGHUP, on_exit);
820 kill_pgrp(old_pgrp, SIGCONT, on_exit);
821 put_pid(old_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return;
824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800826 spin_lock_irq(&current->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -0700827 put_pid(current->signal->tty_old_pgrp);
Randy Dunlap23cac8d2007-02-20 13:58:05 -0800828 current->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800829 spin_unlock_irq(&current->sighand->siglock);
830
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800831 tty = get_current_tty();
832 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -0700833 unsigned long flags;
834 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800835 put_pid(tty->session);
836 put_pid(tty->pgrp);
837 tty->session = NULL;
838 tty->pgrp = NULL;
Alan Cox47f86832008-04-30 00:53:30 -0700839 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Cox452a00d2008-10-13 10:39:13 +0100840 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800841 } else {
842#ifdef TTY_DEBUG_HANGUP
843 printk(KERN_DEBUG "error attempted to write to tty [0x%p]"
844 " = NULL", tty);
845#endif
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Now clear signal->tty under the lock */
849 read_lock(&tasklist_lock);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -0800850 session_clear_tty(task_session(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700854/**
855 *
856 * no_tty - Ensure the current process does not have a controlling tty
857 */
858void no_tty(void)
859{
Alan Cox3af502b2012-05-03 22:21:53 +0100860 /* FIXME: Review locking here. The tty_lock never covered any race
861 between a new association and proc_clear_tty but possible we need
862 to protect against this anyway */
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700863 struct task_struct *tsk = current;
Alan Cox5ec93d12009-11-30 13:18:45 +0000864 disassociate_ctty(0);
Eric W. Biederman98a27ba2007-05-08 00:26:56 -0700865 proc_clear_tty(tsk);
866}
867
Alan Coxaf9b8972006-08-27 01:24:01 -0700868
869/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200870 * stop_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700871 * @tty: tty to stop
872 *
873 * Perform flow control to the driver. For PTY/TTY pairs we
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200874 * must also propagate the TIOCKPKT status. May be called
Alan Coxaf9b8972006-08-27 01:24:01 -0700875 * on an already stopped device and will not re-call the driver
876 * method.
877 *
878 * This functionality is used by both the line disciplines for
879 * halting incoming flow and by the driver. It may therefore be
880 * called from any context, may be under the tty atomic_write_lock
881 * but not always.
882 *
883 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700884 * Uses the tty control lock internally
Alan Coxaf9b8972006-08-27 01:24:01 -0700885 */
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887void stop_tty(struct tty_struct *tty)
888{
Alan Cox04f378b2008-04-30 00:53:29 -0700889 unsigned long flags;
890 spin_lock_irqsave(&tty->ctrl_lock, flags);
891 if (tty->stopped) {
892 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 tty->stopped = 1;
896 if (tty->link && tty->link->packet) {
897 tty->ctrl_status &= ~TIOCPKT_START;
898 tty->ctrl_status |= TIOCPKT_STOP;
Davide Libenzi4b194492009-03-31 15:24:24 -0700899 wake_up_interruptible_poll(&tty->link->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Alan Cox04f378b2008-04-30 00:53:29 -0700901 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700902 if (tty->ops->stop)
903 (tty->ops->stop)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
906EXPORT_SYMBOL(stop_tty);
907
Alan Coxaf9b8972006-08-27 01:24:01 -0700908/**
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +0200909 * start_tty - propagate flow control
Alan Coxaf9b8972006-08-27 01:24:01 -0700910 * @tty: tty to start
911 *
912 * Start a tty that has been stopped if at all possible. Perform
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200913 * any necessary wakeups and propagate the TIOCPKT status. If this
Alan Coxaf9b8972006-08-27 01:24:01 -0700914 * is the tty was previous stopped and is being started then the
915 * driver start method is invoked and the line discipline woken.
916 *
917 * Locking:
Alan Cox04f378b2008-04-30 00:53:29 -0700918 * ctrl_lock
Alan Coxaf9b8972006-08-27 01:24:01 -0700919 */
920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921void start_tty(struct tty_struct *tty)
922{
Alan Cox04f378b2008-04-30 00:53:29 -0700923 unsigned long flags;
924 spin_lock_irqsave(&tty->ctrl_lock, flags);
925 if (!tty->stopped || tty->flow_stopped) {
926 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return;
Alan Cox04f378b2008-04-30 00:53:29 -0700928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 tty->stopped = 0;
930 if (tty->link && tty->link->packet) {
931 tty->ctrl_status &= ~TIOCPKT_STOP;
932 tty->ctrl_status |= TIOCPKT_START;
Davide Libenzi4b194492009-03-31 15:24:24 -0700933 wake_up_interruptible_poll(&tty->link->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
Alan Cox04f378b2008-04-30 00:53:29 -0700935 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700936 if (tty->ops->start)
937 (tty->ops->start)(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /* If we have a running line discipline it may need kicking */
939 tty_wakeup(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942EXPORT_SYMBOL(start_tty);
943
Alan Coxaf9b8972006-08-27 01:24:01 -0700944/**
945 * tty_read - read method for tty device files
946 * @file: pointer to tty file
947 * @buf: user buffer
948 * @count: size of user buffer
949 * @ppos: unused
950 *
951 * Perform the read system call function on this terminal device. Checks
952 * for hung up devices before calling the line discipline method.
953 *
954 * Locking:
Alan Cox47f86832008-04-30 00:53:30 -0700955 * Locks the line discipline internally while needed. Multiple
956 * read calls may be outstanding in parallel.
Alan Coxaf9b8972006-08-27 01:24:01 -0700957 */
958
Alan Cox37bdfb02008-02-08 04:18:47 -0800959static ssize_t tty_read(struct file *file, char __user *buf, size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 loff_t *ppos)
961{
962 int i;
Nick Piggind996b622010-08-18 04:37:36 +1000963 struct tty_struct *tty = file_tty(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct tty_ldisc *ld;
965
Al Viro6131ffa2013-02-27 16:59:05 -0500966 if (tty_paranoia_check(tty, file_inode(file), "tty_read"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return -EIO;
968 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
969 return -EIO;
970
971 /* We want to wait for the line discipline to sort out in this
972 situation */
973 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +0100974 if (ld->ops->read)
975 i = (ld->ops->read)(tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 else
977 i = -EIO;
978 tty_ldisc_deref(ld);
Jiri Slabyb0de59b2013-02-15 15:25:05 +0100979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return i;
981}
982
Alan Cox9c1729d2007-07-15 23:39:43 -0700983void tty_write_unlock(struct tty_struct *tty)
Jiri Slaby83c67572011-04-20 10:43:18 +0200984 __releases(&tty->atomic_write_lock)
Alan Cox9c1729d2007-07-15 23:39:43 -0700985{
986 mutex_unlock(&tty->atomic_write_lock);
Davide Libenzi4b194492009-03-31 15:24:24 -0700987 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
Alan Cox9c1729d2007-07-15 23:39:43 -0700988}
989
990int tty_write_lock(struct tty_struct *tty, int ndelay)
Jiri Slaby83c67572011-04-20 10:43:18 +0200991 __acquires(&tty->atomic_write_lock)
Alan Cox9c1729d2007-07-15 23:39:43 -0700992{
993 if (!mutex_trylock(&tty->atomic_write_lock)) {
994 if (ndelay)
995 return -EAGAIN;
996 if (mutex_lock_interruptible(&tty->atomic_write_lock))
997 return -ERESTARTSYS;
998 }
999 return 0;
1000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/*
1003 * Split writes up in sane blocksizes to avoid
1004 * denial-of-service type attacks
1005 */
1006static inline ssize_t do_tty_write(
1007 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char *, size_t),
1008 struct tty_struct *tty,
1009 struct file *file,
1010 const char __user *buf,
1011 size_t count)
1012{
Alan Cox9c1729d2007-07-15 23:39:43 -07001013 ssize_t ret, written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 unsigned int chunk;
Alan Cox37bdfb02008-02-08 04:18:47 -08001015
Alan Cox9c1729d2007-07-15 23:39:43 -07001016 ret = tty_write_lock(tty, file->f_flags & O_NDELAY);
1017 if (ret < 0)
1018 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /*
1021 * We chunk up writes into a temporary buffer. This
1022 * simplifies low-level drivers immensely, since they
1023 * don't have locking issues and user mode accesses.
1024 *
1025 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1026 * big chunk-size..
1027 *
1028 * The default chunk-size is 2kB, because the NTTY
1029 * layer has problems with bigger chunks. It will
1030 * claim to be able to handle more characters than
1031 * it actually does.
Alan Coxaf9b8972006-08-27 01:24:01 -07001032 *
1033 * FIXME: This can probably go away now except that 64K chunks
1034 * are too likely to fail unless switched to vmalloc...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 */
1036 chunk = 2048;
1037 if (test_bit(TTY_NO_WRITE_SPLIT, &tty->flags))
1038 chunk = 65536;
1039 if (count < chunk)
1040 chunk = count;
1041
Ingo Molnar70522e12006-03-23 03:00:31 -08001042 /* write_buf/write_cnt is protected by the atomic_write_lock mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (tty->write_cnt < chunk) {
Jason Wessel402fda92008-10-13 10:45:36 +01001044 unsigned char *buf_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 if (chunk < 1024)
1047 chunk = 1024;
1048
Jason Wessel402fda92008-10-13 10:45:36 +01001049 buf_chunk = kmalloc(chunk, GFP_KERNEL);
1050 if (!buf_chunk) {
Alan Cox9c1729d2007-07-15 23:39:43 -07001051 ret = -ENOMEM;
1052 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054 kfree(tty->write_buf);
1055 tty->write_cnt = chunk;
Jason Wessel402fda92008-10-13 10:45:36 +01001056 tty->write_buf = buf_chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058
1059 /* Do the write .. */
1060 for (;;) {
1061 size_t size = count;
1062 if (size > chunk)
1063 size = chunk;
1064 ret = -EFAULT;
1065 if (copy_from_user(tty->write_buf, buf, size))
1066 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 ret = write(tty, file, tty->write_buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (ret <= 0)
1069 break;
1070 written += ret;
1071 buf += ret;
1072 count -= ret;
1073 if (!count)
1074 break;
1075 ret = -ERESTARTSYS;
1076 if (signal_pending(current))
1077 break;
1078 cond_resched();
1079 }
Jiri Slabyb0de59b2013-02-15 15:25:05 +01001080 if (written)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 ret = written;
Alan Cox9c1729d2007-07-15 23:39:43 -07001082out:
1083 tty_write_unlock(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return ret;
1085}
1086
Alan Cox95f9bfc2008-10-13 10:39:23 +01001087/**
1088 * tty_write_message - write a message to a certain tty, not just the console.
1089 * @tty: the destination tty_struct
1090 * @msg: the message to write
1091 *
1092 * This is used for messages that need to be redirected to a specific tty.
1093 * We don't put it into the syslog queue right now maybe in the future if
1094 * really needed.
1095 *
Arnd Bergmannec79d602010-06-01 22:53:01 +02001096 * We must still hold the BTM and test the CLOSING flag for the moment.
Alan Cox95f9bfc2008-10-13 10:39:23 +01001097 */
1098
1099void tty_write_message(struct tty_struct *tty, char *msg)
1100{
Alan Cox95f9bfc2008-10-13 10:39:23 +01001101 if (tty) {
1102 mutex_lock(&tty->atomic_write_lock);
Alan Cox89c8d912012-08-08 16:30:13 +01001103 tty_lock(tty);
Alan Coxeeb89d92009-11-30 13:18:29 +00001104 if (tty->ops->write && !test_bit(TTY_CLOSING, &tty->flags)) {
Alan Cox89c8d912012-08-08 16:30:13 +01001105 tty_unlock(tty);
Alan Cox95f9bfc2008-10-13 10:39:23 +01001106 tty->ops->write(tty, msg, strlen(msg));
Alan Coxeeb89d92009-11-30 13:18:29 +00001107 } else
Alan Cox89c8d912012-08-08 16:30:13 +01001108 tty_unlock(tty);
Alan Cox95f9bfc2008-10-13 10:39:23 +01001109 tty_write_unlock(tty);
1110 }
Alan Cox95f9bfc2008-10-13 10:39:23 +01001111 return;
1112}
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Alan Coxaf9b8972006-08-27 01:24:01 -07001115/**
1116 * tty_write - write method for tty device file
1117 * @file: tty file pointer
1118 * @buf: user data to write
1119 * @count: bytes to write
1120 * @ppos: unused
1121 *
1122 * Write data to a tty device via the line discipline.
1123 *
1124 * Locking:
1125 * Locks the line discipline as required
1126 * Writes to the tty driver are serialized by the atomic_write_lock
1127 * and are then processed in chunks to the device. The line discipline
Joe Petersona88a69c2009-01-02 13:40:53 +00001128 * write method will not be invoked in parallel for each device.
Alan Coxaf9b8972006-08-27 01:24:01 -07001129 */
1130
Alan Cox37bdfb02008-02-08 04:18:47 -08001131static ssize_t tty_write(struct file *file, const char __user *buf,
1132 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Nick Piggind996b622010-08-18 04:37:36 +10001134 struct tty_struct *tty = file_tty(file);
1135 struct tty_ldisc *ld;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 ssize_t ret;
Alan Cox37bdfb02008-02-08 04:18:47 -08001137
Al Viro6131ffa2013-02-27 16:59:05 -05001138 if (tty_paranoia_check(tty, file_inode(file), "tty_write"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001140 if (!tty || !tty->ops->write ||
Alan Cox37bdfb02008-02-08 04:18:47 -08001141 (test_bit(TTY_IO_ERROR, &tty->flags)))
1142 return -EIO;
Alan Coxf34d7a52008-04-30 00:54:13 -07001143 /* Short term debug to catch buggy drivers */
1144 if (tty->ops->write_room == NULL)
1145 printk(KERN_ERR "tty driver %s lacks a write_room method.\n",
1146 tty->driver->name);
Alan Cox37bdfb02008-02-08 04:18:47 -08001147 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01001148 if (!ld->ops->write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ret = -EIO;
1150 else
Alan Coxa352def2008-07-16 21:53:12 +01001151 ret = do_tty_write(ld->ops->write, tty, file, buf, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 tty_ldisc_deref(ld);
1153 return ret;
1154}
1155
Alan Cox37bdfb02008-02-08 04:18:47 -08001156ssize_t redirected_tty_write(struct file *file, const char __user *buf,
1157 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 struct file *p = NULL;
1160
1161 spin_lock(&redirect_lock);
Al Virocb0942b2012-08-27 14:48:26 -04001162 if (redirect)
1163 p = get_file(redirect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 spin_unlock(&redirect_lock);
1165
1166 if (p) {
1167 ssize_t res;
1168 res = vfs_write(p, buf, count, &p->f_pos);
1169 fput(p);
1170 return res;
1171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return tty_write(file, buf, count, ppos);
1173}
1174
1175static char ptychar[] = "pqrstuvwxyzabcde";
1176
Alan Coxaf9b8972006-08-27 01:24:01 -07001177/**
1178 * pty_line_name - generate name for a pty
1179 * @driver: the tty driver in use
1180 * @index: the minor number
1181 * @p: output buffer of at least 6 bytes
1182 *
1183 * Generate a name from a driver reference and write it to the output
1184 * buffer.
1185 *
1186 * Locking: None
1187 */
1188static void pty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 int i = index + driver->name_base;
1191 /* ->name is initialized to "ttyp", but "tty" is expected */
1192 sprintf(p, "%s%c%x",
Alan Cox37bdfb02008-02-08 04:18:47 -08001193 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1194 ptychar[i >> 4 & 0xf], i & 0xf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Alan Coxaf9b8972006-08-27 01:24:01 -07001197/**
Alan Cox8b0a88d2008-10-13 10:42:19 +01001198 * tty_line_name - generate name for a tty
Alan Coxaf9b8972006-08-27 01:24:01 -07001199 * @driver: the tty driver in use
1200 * @index: the minor number
1201 * @p: output buffer of at least 7 bytes
1202 *
1203 * Generate a name from a driver reference and write it to the output
1204 * buffer.
1205 *
1206 * Locking: None
1207 */
1208static void tty_line_name(struct tty_driver *driver, int index, char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Jiri Slaby0019b402012-08-08 22:26:43 +02001210 if (driver->flags & TTY_DRIVER_UNNUMBERED_NODE)
1211 strcpy(p, driver->name);
1212 else
1213 sprintf(p, "%s%d", driver->name, index + driver->name_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
Alan Cox99f1fe12008-10-13 10:42:00 +01001216/**
1217 * tty_driver_lookup_tty() - find an existing tty, if any
1218 * @driver: the driver for the tty
1219 * @idx: the minor number
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001220 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001221 * Return the tty, if found or ERR_PTR() otherwise.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001222 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001223 * Locking: tty_mutex must be held. If tty is found, the mutex must
1224 * be held until the 'fast-open' is also done. Will change once we
1225 * have refcounting in the driver and per driver locking
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001226 */
Jason Wessela47d5452009-01-02 13:43:04 +00001227static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver,
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001228 struct inode *inode, int idx)
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001229{
Alan Cox99f1fe12008-10-13 10:42:00 +01001230 if (driver->ops->lookup)
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001231 return driver->ops->lookup(driver, inode, idx);
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001232
Jiri Slabyd4834262012-03-05 14:51:53 +01001233 return driver->ttys[idx];
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001234}
1235
Alan Cox99f1fe12008-10-13 10:42:00 +01001236/**
Alan Coxbf970ee2008-10-13 10:42:39 +01001237 * tty_init_termios - helper for termios setup
1238 * @tty: the tty to set up
1239 *
1240 * Initialise the termios structures for this tty. Thus runs under
1241 * the tty_mutex currently so we can be relaxed about ordering.
1242 */
1243
1244int tty_init_termios(struct tty_struct *tty)
1245{
Alan Coxfe6e29f2008-10-13 10:44:08 +01001246 struct ktermios *tp;
Alan Coxbf970ee2008-10-13 10:42:39 +01001247 int idx = tty->index;
1248
Alan Cox36b3c072012-07-17 17:06:57 +01001249 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1250 tty->termios = tty->driver->init_termios;
1251 else {
1252 /* Check for lazy saved data */
1253 tp = tty->driver->termios[idx];
1254 if (tp != NULL)
1255 tty->termios = *tp;
1256 else
1257 tty->termios = tty->driver->init_termios;
Alan Coxbf970ee2008-10-13 10:42:39 +01001258 }
Alan Coxbf970ee2008-10-13 10:42:39 +01001259 /* Compatibility until drivers always set this */
Alan Coxadc8d742012-07-14 15:31:47 +01001260 tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios);
1261 tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios);
Alan Coxbf970ee2008-10-13 10:42:39 +01001262 return 0;
1263}
Alan Coxfe1ae7f2009-09-19 13:13:33 -07001264EXPORT_SYMBOL_GPL(tty_init_termios);
Alan Coxbf970ee2008-10-13 10:42:39 +01001265
Jiri Slaby66d450e2012-01-30 21:14:28 +01001266int tty_standard_install(struct tty_driver *driver, struct tty_struct *tty)
1267{
1268 int ret = tty_init_termios(tty);
1269 if (ret)
1270 return ret;
1271
1272 tty_driver_kref_get(driver);
1273 tty->count++;
1274 driver->ttys[tty->index] = tty;
1275 return 0;
1276}
1277EXPORT_SYMBOL_GPL(tty_standard_install);
1278
Alan Coxbf970ee2008-10-13 10:42:39 +01001279/**
Alan Cox8b0a88d2008-10-13 10:42:19 +01001280 * tty_driver_install_tty() - install a tty entry in the driver
1281 * @driver: the driver for the tty
1282 * @tty: the tty
1283 *
1284 * Install a tty object into the driver tables. The tty->index field
Alan Coxbf970ee2008-10-13 10:42:39 +01001285 * will be set by the time this is called. This method is responsible
1286 * for ensuring any need additional structures are allocated and
1287 * configured.
Alan Cox8b0a88d2008-10-13 10:42:19 +01001288 *
1289 * Locking: tty_mutex for now
1290 */
1291static int tty_driver_install_tty(struct tty_driver *driver,
1292 struct tty_struct *tty)
1293{
Jiri Slaby66d450e2012-01-30 21:14:28 +01001294 return driver->ops->install ? driver->ops->install(driver, tty) :
1295 tty_standard_install(driver, tty);
Alan Cox8b0a88d2008-10-13 10:42:19 +01001296}
1297
1298/**
1299 * tty_driver_remove_tty() - remove a tty from the driver tables
1300 * @driver: the driver for the tty
1301 * @idx: the minor number
1302 *
1303 * Remvoe a tty object from the driver tables. The tty->index field
1304 * will be set by the time this is called.
1305 *
1306 * Locking: tty_mutex for now
1307 */
Jiri Slaby24d406a2011-08-10 14:59:28 +02001308void tty_driver_remove_tty(struct tty_driver *driver, struct tty_struct *tty)
Alan Cox8b0a88d2008-10-13 10:42:19 +01001309{
1310 if (driver->ops->remove)
1311 driver->ops->remove(driver, tty);
1312 else
1313 driver->ttys[tty->index] = NULL;
1314}
1315
1316/*
1317 * tty_reopen() - fast re-open of an open tty
1318 * @tty - the tty to open
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001319 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001320 * Return 0 on success, -errno on error.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001321 *
Alan Cox99f1fe12008-10-13 10:42:00 +01001322 * Locking: tty_mutex must be held from the time the tty was found
1323 * till this open completes.
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001324 */
Alan Cox99f1fe12008-10-13 10:42:00 +01001325static int tty_reopen(struct tty_struct *tty)
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001326{
1327 struct tty_driver *driver = tty->driver;
1328
Jiri Slabye2efafb2010-11-29 10:16:53 +01001329 if (test_bit(TTY_CLOSING, &tty->flags) ||
Jiri Slabyacfa7472010-11-29 10:16:54 +01001330 test_bit(TTY_HUPPING, &tty->flags) ||
Jiri Slabye2efafb2010-11-29 10:16:53 +01001331 test_bit(TTY_LDISC_CHANGING, &tty->flags))
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001332 return -EIO;
1333
1334 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1335 driver->subtype == PTY_TYPE_MASTER) {
1336 /*
1337 * special case for PTY masters: only one open permitted,
1338 * and the slave side open count is incremented as well.
1339 */
1340 if (tty->count)
1341 return -EIO;
1342
1343 tty->link->count++;
1344 }
1345 tty->count++;
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001346
Alan Cox1aa4bed2009-06-16 17:01:33 +01001347 mutex_lock(&tty->ldisc_mutex);
Alan Cox99f1fe12008-10-13 10:42:00 +01001348 WARN_ON(!test_bit(TTY_LDISC, &tty->flags));
Alan Cox1aa4bed2009-06-16 17:01:33 +01001349 mutex_unlock(&tty->ldisc_mutex);
Sukadev Bhattiprolu23499702008-10-13 10:41:51 +01001350
1351 return 0;
1352}
1353
Alan Coxaf9b8972006-08-27 01:24:01 -07001354/**
Alan Coxd81ed102008-10-13 10:41:42 +01001355 * tty_init_dev - initialise a tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07001356 * @driver: tty driver we are opening a device on
1357 * @idx: device index
Alan Cox15582d32008-10-13 10:41:03 +01001358 * @ret_tty: returned tty structure
Alan Coxaf9b8972006-08-27 01:24:01 -07001359 *
1360 * Prepare a tty device. This may not be a "new" clean device but
1361 * could also be an active device. The pty drivers require special
1362 * handling because of this.
1363 *
1364 * Locking:
1365 * The function is called under the tty_mutex, which
1366 * protects us from the tty struct or driver itself going away.
1367 *
1368 * On exit the tty device has the line discipline attached and
1369 * a reference count of 1. If a pair was created for pty/tty use
1370 * and the other was a pty master then it too has a reference count of 1.
1371 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
Ingo Molnar70522e12006-03-23 03:00:31 -08001373 * failed open. The new code protects the open with a mutex, so it's
1374 * really quite straightforward. The mutex locking can probably be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 * relaxed for the (most common) case of reopening a tty.
1376 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001377
Konstantin Khlebnikov593a27c2012-01-05 13:04:21 +04001378struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Alan Coxbf970ee2008-10-13 10:42:39 +01001380 struct tty_struct *tty;
Alan Cox73ec06f2008-10-13 10:42:29 +01001381 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 /*
1384 * First time open is complex, especially for PTY devices.
1385 * This code guarantees that either everything succeeds and the
1386 * TTY is ready for operation, or else the table slots are vacated
Alan Cox37bdfb02008-02-08 04:18:47 -08001387 * and the allocated memory released. (Except that the termios
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * and locked termios may be retained.)
1389 */
1390
Alan Cox73ec06f2008-10-13 10:42:29 +01001391 if (!try_module_get(driver->owner))
1392 return ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 tty = alloc_tty_struct();
Jiri Slabyd5543502011-03-23 10:48:32 +01001395 if (!tty) {
1396 retval = -ENOMEM;
1397 goto err_module_put;
1398 }
Alan Coxbf970ee2008-10-13 10:42:39 +01001399 initialize_tty_struct(tty, driver, idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Alan Cox89c8d912012-08-08 16:30:13 +01001401 tty_lock(tty);
Alan Cox73ec06f2008-10-13 10:42:29 +01001402 retval = tty_driver_install_tty(driver, tty);
Jiri Slabyd5543502011-03-23 10:48:32 +01001403 if (retval < 0)
Jiri Slabya9dccdd2011-03-23 10:48:36 +01001404 goto err_deinit_tty;
Alan Cox8b0a88d2008-10-13 10:42:19 +01001405
Jiri Slaby04831dc2012-06-04 13:35:36 +02001406 if (!tty->port)
1407 tty->port = driver->ports[idx];
1408
Jiri Slaby5d4121c2012-08-17 14:27:52 +02001409 WARN_RATELIMIT(!tty->port,
1410 "%s: %s driver does not set tty->port. This will crash the kernel later. Fix the driver!\n",
1411 __func__, tty->driver->name);
1412
Jiri Slaby967fab62012-10-18 22:26:46 +02001413 tty->port->itty = tty;
1414
Alan Cox37bdfb02008-02-08 04:18:47 -08001415 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * Structures all installed ... call the ldisc open routines.
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001417 * If we fail here just call release_tty to clean up. No need
1418 * to decrement the use counts, as release_tty doesn't care.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 */
Alan Coxbf970ee2008-10-13 10:42:39 +01001420 retval = tty_ldisc_setup(tty, tty->link);
Alan Cox01e1abb2008-07-22 11:16:55 +01001421 if (retval)
Jiri Slabyd5543502011-03-23 10:48:32 +01001422 goto err_release_tty;
Alan Cox89c8d912012-08-08 16:30:13 +01001423 /* Return the tty locked so that it cannot vanish under the caller */
Alan Cox73ec06f2008-10-13 10:42:29 +01001424 return tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Jiri Slabya9dccdd2011-03-23 10:48:36 +01001426err_deinit_tty:
Alan Cox89c8d912012-08-08 16:30:13 +01001427 tty_unlock(tty);
Jiri Slabya9dccdd2011-03-23 10:48:36 +01001428 deinitialize_tty_struct(tty);
Jiri Slabyd5543502011-03-23 10:48:32 +01001429 free_tty_struct(tty);
1430err_module_put:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 module_put(driver->owner);
Jiri Slabyd5543502011-03-23 10:48:32 +01001432 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001434 /* call the tty release_tty routine to clean out this slot */
Jiri Slabyd5543502011-03-23 10:48:32 +01001435err_release_tty:
Alan Cox89c8d912012-08-08 16:30:13 +01001436 tty_unlock(tty);
Manuel Zerpies5a3c6b22011-06-16 14:07:22 +02001437 printk_ratelimited(KERN_INFO "tty_init_dev: ldisc open failed, "
Akinobu Mita40509142006-09-29 02:01:27 -07001438 "clearing slot %d\n", idx);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001439 release_tty(tty, idx);
Alan Cox73ec06f2008-10-13 10:42:29 +01001440 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441}
1442
Alan Coxfeebed62008-10-13 10:41:30 +01001443void tty_free_termios(struct tty_struct *tty)
1444{
1445 struct ktermios *tp;
1446 int idx = tty->index;
Alan Cox36b3c072012-07-17 17:06:57 +01001447
1448 /* If the port is going to reset then it has no termios to save */
1449 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
1450 return;
1451
1452 /* Stash the termios data */
1453 tp = tty->driver->termios[idx];
1454 if (tp == NULL) {
1455 tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
1456 if (tp == NULL) {
1457 pr_warn("tty: no memory to save termios state.\n");
1458 return;
1459 }
Dan Carpenter4ac5d702012-07-24 12:51:52 +01001460 tty->driver->termios[idx] = tp;
Alan Coxfeebed62008-10-13 10:41:30 +01001461 }
Alan Cox36b3c072012-07-17 17:06:57 +01001462 *tp = tty->termios;
Alan Coxfeebed62008-10-13 10:41:30 +01001463}
1464EXPORT_SYMBOL(tty_free_termios);
1465
Alan Coxfeebed62008-10-13 10:41:30 +01001466
Alan Coxaf9b8972006-08-27 01:24:01 -07001467/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001468 * release_one_tty - release tty structure memory
Alan Cox9c9f4de2008-10-13 10:37:26 +01001469 * @kref: kref of tty we are obliterating
Alan Coxaf9b8972006-08-27 01:24:01 -07001470 *
1471 * Releases memory associated with a tty structure, and clears out the
1472 * driver table slots. This function is called when a device is no longer
1473 * in use. It also gets called when setup of a device fails.
1474 *
1475 * Locking:
Alan Coxaf9b8972006-08-27 01:24:01 -07001476 * takes the file list lock internally when working on the list
1477 * of ttys that the driver keeps.
Alan Coxb50989d2009-09-19 13:13:22 -07001478 *
1479 * This method gets called from a work queue so that the driver private
Dave Youngf278a2f2009-09-27 16:00:42 +00001480 * cleanup ops can sleep (needed for USB at least)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 */
Alan Coxb50989d2009-09-19 13:13:22 -07001482static void release_one_tty(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Alan Coxb50989d2009-09-19 13:13:22 -07001484 struct tty_struct *tty =
1485 container_of(work, struct tty_struct, hangup_work);
Alan Cox6f967f72008-10-13 10:37:36 +01001486 struct tty_driver *driver = tty->driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Dave Youngf278a2f2009-09-27 16:00:42 +00001488 if (tty->ops->cleanup)
1489 tty->ops->cleanup(tty);
1490
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 tty->magic = 0;
Alan Cox7d7b93c2008-10-13 10:42:09 +01001492 tty_driver_kref_put(driver);
Alan Cox6f967f72008-10-13 10:37:36 +01001493 module_put(driver->owner);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001494
Nick Pigginee2ffa02010-08-18 04:37:35 +10001495 spin_lock(&tty_files_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 list_del_init(&tty->tty_files);
Nick Pigginee2ffa02010-08-18 04:37:35 +10001497 spin_unlock(&tty_files_lock);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001498
Oleg Nesterov6da8d862010-04-02 18:05:12 +02001499 put_pid(tty->pgrp);
1500 put_pid(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 free_tty_struct(tty);
1502}
1503
Alan Coxb50989d2009-09-19 13:13:22 -07001504static void queue_release_one_tty(struct kref *kref)
1505{
1506 struct tty_struct *tty = container_of(kref, struct tty_struct, kref);
Dave Youngf278a2f2009-09-27 16:00:42 +00001507
Alan Coxb50989d2009-09-19 13:13:22 -07001508 /* The hangup queue is now free so we can reuse it rather than
1509 waste a chunk of memory for each port */
1510 INIT_WORK(&tty->hangup_work, release_one_tty);
1511 schedule_work(&tty->hangup_work);
1512}
1513
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001514/**
Alan Cox9c9f4de2008-10-13 10:37:26 +01001515 * tty_kref_put - release a tty kref
1516 * @tty: tty device
1517 *
1518 * Release a reference to a tty device and if need be let the kref
1519 * layer destruct the object for us
1520 */
1521
1522void tty_kref_put(struct tty_struct *tty)
1523{
1524 if (tty)
Alan Coxb50989d2009-09-19 13:13:22 -07001525 kref_put(&tty->kref, queue_release_one_tty);
Alan Cox9c9f4de2008-10-13 10:37:26 +01001526}
1527EXPORT_SYMBOL(tty_kref_put);
1528
1529/**
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001530 * release_tty - release tty structure memory
1531 *
1532 * Release both @tty and a possible linked partner (think pty pair),
1533 * and decrement the refcount of the backing module.
1534 *
1535 * Locking:
Alan Coxd1552552012-07-27 18:02:54 +01001536 * tty_mutex
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001537 * takes the file list lock internally when working on the list
1538 * of ttys that the driver keeps.
Alan Cox9c9f4de2008-10-13 10:37:26 +01001539 *
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001540 */
1541static void release_tty(struct tty_struct *tty, int idx)
1542{
Alan Cox9c9f4de2008-10-13 10:37:26 +01001543 /* This should always be true but check for the moment */
1544 WARN_ON(tty->index != idx);
Alan Coxd1552552012-07-27 18:02:54 +01001545 WARN_ON(!mutex_is_locked(&tty_mutex));
Alan Cox36b3c072012-07-17 17:06:57 +01001546 if (tty->ops->shutdown)
1547 tty->ops->shutdown(tty);
1548 tty_free_termios(tty);
1549 tty_driver_remove_tty(tty->driver, tty);
Jiri Slaby967fab62012-10-18 22:26:46 +02001550 tty->port->itty = NULL;
Alan Cox36b3c072012-07-17 17:06:57 +01001551
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001552 if (tty->link)
Alan Cox9c9f4de2008-10-13 10:37:26 +01001553 tty_kref_put(tty->link);
1554 tty_kref_put(tty);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001555}
1556
Alan Coxeeb89d92009-11-30 13:18:29 +00001557/**
Jiri Slaby955787ca2011-11-11 10:47:23 +01001558 * tty_release_checks - check a tty before real release
1559 * @tty: tty to check
1560 * @o_tty: link of @tty (if any)
1561 * @idx: index of the tty
1562 *
1563 * Performs some paranoid checking before true release of the @tty.
1564 * This is a no-op unless TTY_PARANOIA_CHECK is defined.
1565 */
1566static int tty_release_checks(struct tty_struct *tty, struct tty_struct *o_tty,
1567 int idx)
1568{
1569#ifdef TTY_PARANOIA_CHECK
1570 if (idx < 0 || idx >= tty->driver->num) {
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001571 printk(KERN_DEBUG "%s: bad idx when trying to free (%s)\n",
1572 __func__, tty->name);
Jiri Slaby955787ca2011-11-11 10:47:23 +01001573 return -1;
1574 }
1575
1576 /* not much to check for devpts */
1577 if (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)
1578 return 0;
1579
1580 if (tty != tty->driver->ttys[idx]) {
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001581 printk(KERN_DEBUG "%s: driver.table[%d] not tty for (%s)\n",
1582 __func__, idx, tty->name);
Jiri Slaby955787ca2011-11-11 10:47:23 +01001583 return -1;
1584 }
Jiri Slaby955787ca2011-11-11 10:47:23 +01001585 if (tty->driver->other) {
1586 if (o_tty != tty->driver->other->ttys[idx]) {
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001587 printk(KERN_DEBUG "%s: other->table[%d] not o_tty for (%s)\n",
1588 __func__, idx, tty->name);
Jiri Slaby955787ca2011-11-11 10:47:23 +01001589 return -1;
1590 }
Jiri Slaby955787ca2011-11-11 10:47:23 +01001591 if (o_tty->link != tty) {
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001592 printk(KERN_DEBUG "%s: bad pty pointers\n", __func__);
Jiri Slaby955787ca2011-11-11 10:47:23 +01001593 return -1;
1594 }
1595 }
1596#endif
1597 return 0;
1598}
1599
1600/**
Alan Coxeeb89d92009-11-30 13:18:29 +00001601 * tty_release - vfs callback for close
1602 * @inode: inode of tty
1603 * @filp: file pointer for handle to tty
1604 *
1605 * Called the last time each file handle is closed that references
1606 * this tty. There may however be several such references.
1607 *
1608 * Locking:
1609 * Takes bkl. See tty_release_dev
1610 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 * Even releasing the tty structures is a tricky business.. We have
1612 * to be very careful that the structures are all released at the
1613 * same time, as interrupts might otherwise get the wrong pointers.
1614 *
1615 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1616 * lead to double frees or releasing memory still in use.
1617 */
Alan Coxeeb89d92009-11-30 13:18:29 +00001618
1619int tty_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Nick Piggind996b622010-08-18 04:37:36 +10001621 struct tty_struct *tty = file_tty(filp);
1622 struct tty_struct *o_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int pty_master, tty_closing, o_tty_closing, do_sleep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 int idx;
1625 char buf[64];
Alan Cox37bdfb02008-02-08 04:18:47 -08001626
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001627 if (tty_paranoia_check(tty, inode, __func__))
Alan Coxeeb89d92009-11-30 13:18:29 +00001628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Alan Cox89c8d912012-08-08 16:30:13 +01001630 tty_lock(tty);
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001631 check_tty_count(tty, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Arnd Bergmannec79d602010-06-01 22:53:01 +02001633 __tty_fasync(-1, filp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 idx = tty->index;
1636 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1637 tty->driver->subtype == PTY_TYPE_MASTER);
Alan Cox89c8d912012-08-08 16:30:13 +01001638 /* Review: parallel close */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 o_tty = tty->link;
1640
Jiri Slaby955787ca2011-11-11 10:47:23 +01001641 if (tty_release_checks(tty, o_tty, idx)) {
Alan Cox89c8d912012-08-08 16:30:13 +01001642 tty_unlock(tty);
Alan Coxeeb89d92009-11-30 13:18:29 +00001643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
1646#ifdef TTY_DEBUG_HANGUP
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001647 printk(KERN_DEBUG "%s: %s (tty count=%d)...\n", __func__,
1648 tty_name(tty, buf), tty->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649#endif
1650
Alan Coxf34d7a52008-04-30 00:54:13 -07001651 if (tty->ops->close)
1652 tty->ops->close(tty, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Alan Cox89c8d912012-08-08 16:30:13 +01001654 tty_unlock(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 /*
1656 * Sanity check: if tty->count is going to zero, there shouldn't be
1657 * any waiters on tty->read_wait or tty->write_wait. We test the
1658 * wait queues and kick everyone out _before_ actually starting to
1659 * close. This ensures that we won't block while releasing the tty
1660 * structure.
1661 *
1662 * The test for the o_tty closing is necessary, since the master and
1663 * slave sides may close in any order. If the slave side closes out
1664 * first, its count will be one, since the master side holds an open.
1665 * Thus this test wouldn't be triggered at the time the slave closes,
1666 * so we do it now.
1667 *
1668 * Note that it's possible for the tty to be opened again while we're
1669 * flushing out waiters. By recalculating the closing flags before
1670 * each iteration we avoid any problems.
1671 */
1672 while (1) {
1673 /* Guard against races with tty->count changes elsewhere and
1674 opens on /dev/tty */
Alan Cox37bdfb02008-02-08 04:18:47 -08001675
Ingo Molnar70522e12006-03-23 03:00:31 -08001676 mutex_lock(&tty_mutex);
Alan Cox89c8d912012-08-08 16:30:13 +01001677 tty_lock_pair(tty, o_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 tty_closing = tty->count <= 1;
1679 o_tty_closing = o_tty &&
1680 (o_tty->count <= (pty_master ? 1 : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 do_sleep = 0;
1682
1683 if (tty_closing) {
1684 if (waitqueue_active(&tty->read_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001685 wake_up_poll(&tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 do_sleep++;
1687 }
1688 if (waitqueue_active(&tty->write_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001689 wake_up_poll(&tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 do_sleep++;
1691 }
1692 }
1693 if (o_tty_closing) {
1694 if (waitqueue_active(&o_tty->read_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001695 wake_up_poll(&o_tty->read_wait, POLLIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 do_sleep++;
1697 }
1698 if (waitqueue_active(&o_tty->write_wait)) {
Davide Libenzi4b194492009-03-31 15:24:24 -07001699 wake_up_poll(&o_tty->write_wait, POLLOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 do_sleep++;
1701 }
1702 }
1703 if (!do_sleep)
1704 break;
1705
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001706 printk(KERN_WARNING "%s: %s: read/write wait queue active!\n",
1707 __func__, tty_name(tty, buf));
Alan Cox89c8d912012-08-08 16:30:13 +01001708 tty_unlock_pair(tty, o_tty);
Ingo Molnar70522e12006-03-23 03:00:31 -08001709 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 schedule();
Alan Cox37bdfb02008-02-08 04:18:47 -08001711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08001714 * The closing flags are now consistent with the open counts on
1715 * both sides, and we've completed the last operation that could
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 * block, so it's safe to proceed with closing.
Alan Coxd1552552012-07-27 18:02:54 +01001717 *
1718 * We must *not* drop the tty_mutex until we ensure that a further
1719 * entry into tty_open can not pick up this tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (pty_master) {
1722 if (--o_tty->count < 0) {
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001723 printk(KERN_WARNING "%s: bad pty slave count (%d) for %s\n",
1724 __func__, o_tty->count, tty_name(o_tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 o_tty->count = 0;
1726 }
1727 }
1728 if (--tty->count < 0) {
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001729 printk(KERN_WARNING "%s: bad tty->count (%d) for %s\n",
1730 __func__, tty->count, tty_name(tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 tty->count = 0;
1732 }
Alan Cox37bdfb02008-02-08 04:18:47 -08001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /*
1735 * We've decremented tty->count, so we need to remove this file
1736 * descriptor off the tty->tty_files list; this serves two
1737 * purposes:
1738 * - check_tty_count sees the correct number of file descriptors
1739 * associated with this tty.
1740 * - do_tty_hangup no longer sees this file descriptor as
1741 * something that needs to be handled for hangups.
1742 */
Nick Piggind996b622010-08-18 04:37:36 +10001743 tty_del_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 /*
1746 * Perform some housekeeping before deciding whether to return.
1747 *
1748 * Set the TTY_CLOSING flag if this was the last open. In the
1749 * case of a pty we may have to wait around for the other side
1750 * to close, and TTY_CLOSING makes sure we can't be reopened.
1751 */
Alan Cox37bdfb02008-02-08 04:18:47 -08001752 if (tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 set_bit(TTY_CLOSING, &tty->flags);
Alan Cox37bdfb02008-02-08 04:18:47 -08001754 if (o_tty_closing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 set_bit(TTY_CLOSING, &o_tty->flags);
1756
1757 /*
1758 * If _either_ side is closing, make sure there aren't any
1759 * processes that still think tty or o_tty is their controlling
1760 * tty.
1761 */
1762 if (tty_closing || o_tty_closing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001764 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (o_tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001766 session_clear_tty(o_tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 read_unlock(&tasklist_lock);
1768 }
1769
Ingo Molnar70522e12006-03-23 03:00:31 -08001770 mutex_unlock(&tty_mutex);
Alan Cox89c8d912012-08-08 16:30:13 +01001771 tty_unlock_pair(tty, o_tty);
Alan Coxd1552552012-07-27 18:02:54 +01001772 /* At this point the TTY_CLOSING flag should ensure a dead tty
1773 cannot be re-opened by a racing opener */
Paul Fulghumda965822006-02-14 13:53:00 -08001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 /* check whether both sides are closing ... */
Alan Coxd1552552012-07-27 18:02:54 +01001776 if (!tty_closing || (o_tty && !o_tty_closing))
Alan Coxeeb89d92009-11-30 13:18:29 +00001777 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779#ifdef TTY_DEBUG_HANGUP
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001780 printk(KERN_DEBUG "%s: freeing tty structure...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781#endif
1782 /*
Alan Cox01e1abb2008-07-22 11:16:55 +01001783 * Ask the line discipline code to release its structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 */
Alan Cox01e1abb2008-07-22 11:16:55 +01001785 tty_ldisc_release(tty, o_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 /*
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001787 * The release_tty function takes care of the details of clearing
Alan Cox89c8d912012-08-08 16:30:13 +01001788 * the slots and preserving the termios structure. The tty_unlock_pair
1789 * should be safe as we keep a kref while the tty is locked (so the
1790 * unlock never unlocks a freed tty).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 */
Alan Coxd1552552012-07-27 18:02:54 +01001792 mutex_lock(&tty_mutex);
Christoph Hellwigd5698c22007-02-10 01:46:46 -08001793 release_tty(tty, idx);
Alan Coxd1552552012-07-27 18:02:54 +01001794 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Alan Coxeeb89d92009-11-30 13:18:29 +00001796 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
Alan Coxaf9b8972006-08-27 01:24:01 -07001799/**
Jiri Slabyb82154a2011-11-09 21:33:19 +01001800 * tty_open_current_tty - get tty of current task for open
1801 * @device: device number
1802 * @filp: file pointer to tty
1803 * @return: tty of the current task iff @device is /dev/tty
1804 *
1805 * We cannot return driver and index like for the other nodes because
1806 * devpts will not work then. It expects inodes to be from devpts FS.
Alan Cox3af502b2012-05-03 22:21:53 +01001807 *
1808 * We need to move to returning a refcounted object from all the lookup
1809 * paths including this one.
Jiri Slabyb82154a2011-11-09 21:33:19 +01001810 */
1811static struct tty_struct *tty_open_current_tty(dev_t device, struct file *filp)
1812{
1813 struct tty_struct *tty;
1814
1815 if (device != MKDEV(TTYAUX_MAJOR, 0))
1816 return NULL;
1817
1818 tty = get_current_tty();
1819 if (!tty)
1820 return ERR_PTR(-ENXIO);
1821
1822 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1823 /* noctty = 1; */
1824 tty_kref_put(tty);
1825 /* FIXME: we put a reference and return a TTY! */
Alan Cox3af502b2012-05-03 22:21:53 +01001826 /* This is only safe because the caller holds tty_mutex */
Jiri Slabyb82154a2011-11-09 21:33:19 +01001827 return tty;
1828}
1829
1830/**
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001831 * tty_lookup_driver - lookup a tty driver for a given device file
1832 * @device: device number
1833 * @filp: file pointer to tty
1834 * @noctty: set if the device should not become a controlling tty
1835 * @index: index for the device in the @return driver
1836 * @return: driver for this inode (with increased refcount)
1837 *
1838 * If @return is not erroneous, the caller is responsible to decrement the
1839 * refcount by tty_driver_kref_put.
1840 *
1841 * Locking: tty_mutex protects get_tty_driver
1842 */
1843static struct tty_driver *tty_lookup_driver(dev_t device, struct file *filp,
1844 int *noctty, int *index)
1845{
1846 struct tty_driver *driver;
1847
Jiri Slaby2cd00502011-11-09 21:33:22 +01001848 switch (device) {
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001849#ifdef CONFIG_VT
Jiri Slaby2cd00502011-11-09 21:33:22 +01001850 case MKDEV(TTY_MAJOR, 0): {
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001851 extern struct tty_driver *console_driver;
1852 driver = tty_driver_kref_get(console_driver);
1853 *index = fg_console;
1854 *noctty = 1;
Jiri Slaby2cd00502011-11-09 21:33:22 +01001855 break;
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001856 }
1857#endif
Jiri Slaby2cd00502011-11-09 21:33:22 +01001858 case MKDEV(TTYAUX_MAJOR, 1): {
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001859 struct tty_driver *console_driver = console_device(index);
1860 if (console_driver) {
1861 driver = tty_driver_kref_get(console_driver);
1862 if (driver) {
1863 /* Don't let /dev/console block */
1864 filp->f_flags |= O_NONBLOCK;
1865 *noctty = 1;
Jiri Slaby2cd00502011-11-09 21:33:22 +01001866 break;
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001867 }
1868 }
1869 return ERR_PTR(-ENODEV);
1870 }
Jiri Slaby2cd00502011-11-09 21:33:22 +01001871 default:
1872 driver = get_tty_driver(device, index);
1873 if (!driver)
1874 return ERR_PTR(-ENODEV);
1875 break;
1876 }
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001877 return driver;
1878}
1879
1880/**
Alan Coxeeb89d92009-11-30 13:18:29 +00001881 * tty_open - open a tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07001882 * @inode: inode of device file
1883 * @filp: file pointer to tty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001885 * tty_open and tty_release keep up the tty count that contains the
1886 * number of opens done on a tty. We cannot use the inode-count, as
1887 * different inodes might point to the same tty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 *
Alan Coxaf9b8972006-08-27 01:24:01 -07001889 * Open-counting is needed for pty masters, as well as for keeping
1890 * track of serial lines: DTR is dropped when the last close happens.
1891 * (This is not done solely through tty->count, now. - Ted 1/27/92)
1892 *
1893 * The termios state of a pty is reset on first open so that
1894 * settings don't persist across reuse.
1895 *
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001896 * Locking: tty_mutex protects tty, tty_lookup_driver and tty_init_dev.
Peter Zijlstra24ec8392006-12-08 02:36:04 -08001897 * tty->count should protect the rest.
1898 * ->siglock protects ->signal/->sighand
Alan Cox89c8d912012-08-08 16:30:13 +01001899 *
1900 * Note: the tty_unlock/lock cases without a ref are only safe due to
1901 * tty_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 */
Alan Coxaf9b8972006-08-27 01:24:01 -07001903
Alan Coxeeb89d92009-11-30 13:18:29 +00001904static int tty_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Jiri Slabyb82154a2011-11-09 21:33:19 +01001906 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 int noctty, retval;
Jiri Slabyb82154a2011-11-09 21:33:19 +01001908 struct tty_driver *driver = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 int index;
1910 dev_t device = inode->i_rdev;
Andrew Morton846c1512009-04-02 16:56:36 -07001911 unsigned saved_flags = filp->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 nonseekable_open(inode, filp);
Alan Cox37bdfb02008-02-08 04:18:47 -08001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915retry_open:
Jiri Slabyfa90e1c2011-10-12 11:32:43 +02001916 retval = tty_alloc_file(filp);
1917 if (retval)
1918 return -ENOMEM;
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 noctty = filp->f_flags & O_NOCTTY;
1921 index = -1;
1922 retval = 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08001923
Ingo Molnar70522e12006-03-23 03:00:31 -08001924 mutex_lock(&tty_mutex);
Alan Cox89c8d912012-08-08 16:30:13 +01001925 /* This is protected by the tty_mutex */
Jiri Slabyb82154a2011-11-09 21:33:19 +01001926 tty = tty_open_current_tty(device, filp);
1927 if (IS_ERR(tty)) {
Jiri Slabyba5db442011-11-09 21:33:21 +01001928 retval = PTR_ERR(tty);
1929 goto err_unlock;
Jiri Slaby5b5e7042011-11-09 21:33:20 +01001930 } else if (!tty) {
1931 driver = tty_lookup_driver(device, filp, &noctty, &index);
1932 if (IS_ERR(driver)) {
Jiri Slabyba5db442011-11-09 21:33:21 +01001933 retval = PTR_ERR(driver);
1934 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001937 /* check whether we're reopening an existing tty */
Sukadev Bhattiprolu15f1a632008-10-13 10:42:59 +01001938 tty = tty_driver_lookup_tty(driver, inode, index);
Eric Paris808ffa32009-01-27 11:50:37 +00001939 if (IS_ERR(tty)) {
Jiri Slabyba5db442011-11-09 21:33:21 +01001940 retval = PTR_ERR(tty);
1941 goto err_unlock;
Eric Paris808ffa32009-01-27 11:50:37 +00001942 }
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001943 }
1944
1945 if (tty) {
Alan Cox89c8d912012-08-08 16:30:13 +01001946 tty_lock(tty);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001947 retval = tty_reopen(tty);
Alan Cox89c8d912012-08-08 16:30:13 +01001948 if (retval < 0) {
1949 tty_unlock(tty);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001950 tty = ERR_PTR(retval);
Alan Cox89c8d912012-08-08 16:30:13 +01001951 }
1952 } else /* Returns with the tty_lock held for now */
Konstantin Khlebnikov593a27c2012-01-05 13:04:21 +04001953 tty = tty_init_dev(driver, index);
Sukadev Bhattiprolu4a2b5fd2008-10-13 10:42:49 +01001954
Ingo Molnar70522e12006-03-23 03:00:31 -08001955 mutex_unlock(&tty_mutex);
Jiri Slabyb82154a2011-11-09 21:33:19 +01001956 if (driver)
1957 tty_driver_kref_put(driver);
Alan Coxeeb89d92009-11-30 13:18:29 +00001958 if (IS_ERR(tty)) {
Jiri Slabyba5db442011-11-09 21:33:21 +01001959 retval = PTR_ERR(tty);
1960 goto err_file;
Alan Coxeeb89d92009-11-30 13:18:29 +00001961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Jiri Slabyfa90e1c2011-10-12 11:32:43 +02001963 tty_add_file(tty, filp);
Nick Piggind996b622010-08-18 04:37:36 +10001964
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001965 check_tty_count(tty, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1967 tty->driver->subtype == PTY_TYPE_MASTER)
1968 noctty = 1;
1969#ifdef TTY_DEBUG_HANGUP
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001970 printk(KERN_DEBUG "%s: opening %s...\n", __func__, tty->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971#endif
Herton Ronaldo Krzesinski909bc772011-03-31 15:35:31 -03001972 if (tty->ops->open)
1973 retval = tty->ops->open(tty, filp);
1974 else
1975 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 filp->f_flags = saved_flags;
1977
Alan Cox37bdfb02008-02-08 04:18:47 -08001978 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) &&
1979 !capable(CAP_SYS_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 retval = -EBUSY;
1981
1982 if (retval) {
1983#ifdef TTY_DEBUG_HANGUP
Jiri Slaby9de44bd2011-11-09 21:33:24 +01001984 printk(KERN_DEBUG "%s: error %d in opening %s...\n", __func__,
1985 retval, tty->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986#endif
Alan Cox89c8d912012-08-08 16:30:13 +01001987 tty_unlock(tty); /* need to call tty_release without BTM */
Alan Coxeeb89d92009-11-30 13:18:29 +00001988 tty_release(inode, filp);
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001989 if (retval != -ERESTARTSYS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 return retval;
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001991
1992 if (signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return retval;
Arnd Bergmann64ba3dc2010-06-01 22:53:02 +02001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 schedule();
1996 /*
1997 * Need to reset f_op in case a hangup happened.
1998 */
1999 if (filp->f_op == &hung_up_tty_fops)
2000 filp->f_op = &tty_fops;
2001 goto retry_open;
2002 }
Alan Cox89c8d912012-08-08 16:30:13 +01002003 tty_unlock(tty);
Alan Coxeeb89d92009-11-30 13:18:29 +00002004
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002005
2006 mutex_lock(&tty_mutex);
Alan Cox89c8d912012-08-08 16:30:13 +01002007 tty_lock(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002008 spin_lock_irq(&current->sighand->siglock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if (!noctty &&
2010 current->signal->leader &&
2011 !current->signal->tty &&
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002012 tty->session == NULL)
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07002013 __proc_set_tty(current, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002014 spin_unlock_irq(&current->sighand->siglock);
Alan Cox89c8d912012-08-08 16:30:13 +01002015 tty_unlock(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002016 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 return 0;
Jiri Slabyba5db442011-11-09 21:33:21 +01002018err_unlock:
Jiri Slabyba5db442011-11-09 21:33:21 +01002019 mutex_unlock(&tty_mutex);
2020 /* after locks to avoid deadlock */
2021 if (!IS_ERR_OR_NULL(driver))
2022 tty_driver_kref_put(driver);
2023err_file:
2024 tty_free_file(filp);
2025 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Jonathan Corbet39d95b92008-05-16 09:10:50 -06002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Alan Coxaf9b8972006-08-27 01:24:01 -07002030/**
2031 * tty_poll - check tty status
2032 * @filp: file being polled
2033 * @wait: poll wait structures to update
2034 *
2035 * Call the line discipline polling method to obtain the poll
2036 * status of the device.
2037 *
2038 * Locking: locks called line discipline but ldisc poll method
2039 * may be re-entered freely by other callers.
2040 */
2041
Alan Cox37bdfb02008-02-08 04:18:47 -08002042static unsigned int tty_poll(struct file *filp, poll_table *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
Nick Piggind996b622010-08-18 04:37:36 +10002044 struct tty_struct *tty = file_tty(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 struct tty_ldisc *ld;
2046 int ret = 0;
2047
Al Viro6131ffa2013-02-27 16:59:05 -05002048 if (tty_paranoia_check(tty, file_inode(filp), "tty_poll"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002052 if (ld->ops->poll)
2053 ret = (ld->ops->poll)(tty, filp, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 tty_ldisc_deref(ld);
2055 return ret;
2056}
2057
Arnd Bergmannec79d602010-06-01 22:53:01 +02002058static int __tty_fasync(int fd, struct file *filp, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Nick Piggind996b622010-08-18 04:37:36 +10002060 struct tty_struct *tty = file_tty(filp);
Alan Cox47f86832008-04-30 00:53:30 -07002061 unsigned long flags;
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002062 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Al Viro6131ffa2013-02-27 16:59:05 -05002064 if (tty_paranoia_check(tty, file_inode(filp), "tty_fasync"))
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002065 goto out;
Alan Cox37bdfb02008-02-08 04:18:47 -08002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 retval = fasync_helper(fd, filp, on, &tty->fasync);
2068 if (retval <= 0)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002069 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 if (on) {
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002072 enum pid_type type;
2073 struct pid *pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (!waitqueue_active(&tty->read_wait))
2075 tty->minimum_to_wake = 1;
Alan Cox47f86832008-04-30 00:53:30 -07002076 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002077 if (tty->pgrp) {
2078 pid = tty->pgrp;
2079 type = PIDTYPE_PGID;
2080 } else {
2081 pid = task_pid(current);
2082 type = PIDTYPE_PID;
2083 }
Linus Torvalds80e1e822010-02-07 10:11:23 -08002084 get_pid(pid);
Greg Kroah-Hartman70362512009-12-17 07:07:19 -08002085 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Linus Torvalds80e1e822010-02-07 10:11:23 -08002086 retval = __f_setown(filp, pid, type, 0);
2087 put_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (retval)
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002089 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 } else {
2091 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
2092 tty->minimum_to_wake = N_TTY_BUF_SIZE;
2093 }
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002094 retval = 0;
2095out:
Arnd Bergmannec79d602010-06-01 22:53:01 +02002096 return retval;
2097}
2098
2099static int tty_fasync(int fd, struct file *filp, int on)
2100{
Alan Cox89c8d912012-08-08 16:30:13 +01002101 struct tty_struct *tty = file_tty(filp);
Arnd Bergmannec79d602010-06-01 22:53:01 +02002102 int retval;
Alan Cox89c8d912012-08-08 16:30:13 +01002103
2104 tty_lock(tty);
Arnd Bergmannec79d602010-06-01 22:53:01 +02002105 retval = __tty_fasync(fd, filp, on);
Alan Cox89c8d912012-08-08 16:30:13 +01002106 tty_unlock(tty);
2107
Jonathan Corbet5d1e3232008-06-19 16:04:53 -06002108 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109}
2110
Alan Coxaf9b8972006-08-27 01:24:01 -07002111/**
2112 * tiocsti - fake input character
2113 * @tty: tty to fake input into
2114 * @p: pointer to character
2115 *
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02002116 * Fake input to a tty device. Does the necessary locking and
Alan Coxaf9b8972006-08-27 01:24:01 -07002117 * input management.
2118 *
2119 * FIXME: does not honour flow control ??
2120 *
2121 * Locking:
2122 * Called functions take tty_ldisc_lock
2123 * current->signal->tty check is safe without locks
Alan Cox28298232006-09-29 02:00:58 -07002124 *
2125 * FIXME: may race normal receive processing
Alan Coxaf9b8972006-08-27 01:24:01 -07002126 */
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128static int tiocsti(struct tty_struct *tty, char __user *p)
2129{
2130 char ch, mbz = 0;
2131 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
2134 return -EPERM;
2135 if (get_user(ch, p))
2136 return -EFAULT;
Al Viro1e641742008-12-09 09:23:33 +00002137 tty_audit_tiocsti(tty, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002139 ld->ops->receive_buf(tty, &ch, &mbz, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 tty_ldisc_deref(ld);
2141 return 0;
2142}
2143
Alan Coxaf9b8972006-08-27 01:24:01 -07002144/**
2145 * tiocgwinsz - implement window query ioctl
2146 * @tty; tty
2147 * @arg: user buffer for result
2148 *
Alan Cox808a0d32006-09-29 02:00:40 -07002149 * Copies the kernel idea of the window size into the user buffer.
Alan Coxaf9b8972006-08-27 01:24:01 -07002150 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002151 * Locking: tty->termios_mutex is taken to ensure the winsize data
Alan Cox808a0d32006-09-29 02:00:40 -07002152 * is consistent.
Alan Coxaf9b8972006-08-27 01:24:01 -07002153 */
2154
Alan Cox37bdfb02008-02-08 04:18:47 -08002155static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
Alan Cox808a0d32006-09-29 02:00:40 -07002157 int err;
2158
Arjan van de Ven5785c952006-09-29 02:00:43 -07002159 mutex_lock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002160 err = copy_to_user(arg, &tty->winsize, sizeof(*arg));
Arjan van de Ven5785c952006-09-29 02:00:43 -07002161 mutex_unlock(&tty->termios_mutex);
Alan Cox808a0d32006-09-29 02:00:40 -07002162
2163 return err ? -EFAULT: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
2165
Alan Coxaf9b8972006-08-27 01:24:01 -07002166/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002167 * tty_do_resize - resize event
2168 * @tty: tty being resized
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002169 * @rows: rows (character)
2170 * @cols: cols (character)
Alan Coxaf9b8972006-08-27 01:24:01 -07002171 *
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08002172 * Update the termios variables and send the necessary signals to
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002173 * peform a terminal resize correctly
Alan Coxaf9b8972006-08-27 01:24:01 -07002174 */
2175
Alan Coxfc6f6232009-01-02 13:43:17 +00002176int tty_do_resize(struct tty_struct *tty, struct winsize *ws)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Alan Coxfc6f6232009-01-02 13:43:17 +00002178 struct pid *pgrp;
Alan Cox47f86832008-04-30 00:53:30 -07002179 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Alan Coxfc6f6232009-01-02 13:43:17 +00002181 /* Lock the tty */
2182 mutex_lock(&tty->termios_mutex);
2183 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
Alan Coxca9bda02006-09-29 02:00:03 -07002184 goto done;
Alan Cox47f86832008-04-30 00:53:30 -07002185 /* Get the PID values and reference them so we can
2186 avoid holding the tty ctrl lock while sending signals */
2187 spin_lock_irqsave(&tty->ctrl_lock, flags);
2188 pgrp = get_pid(tty->pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002189 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2190
2191 if (pgrp)
2192 kill_pgrp(pgrp, SIGWINCH, 1);
Alan Cox47f86832008-04-30 00:53:30 -07002193 put_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002194
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002195 tty->winsize = *ws;
Alan Coxca9bda02006-09-29 02:00:03 -07002196done:
Alan Coxfc6f6232009-01-02 13:43:17 +00002197 mutex_unlock(&tty->termios_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 return 0;
2199}
Martin Schwidefsky4d334fd2013-01-04 14:55:13 +01002200EXPORT_SYMBOL(tty_do_resize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Alan Coxaf9b8972006-08-27 01:24:01 -07002202/**
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002203 * tiocswinsz - implement window size set ioctl
Alan Coxfc6f6232009-01-02 13:43:17 +00002204 * @tty; tty side of tty
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002205 * @arg: user buffer for result
2206 *
2207 * Copies the user idea of the window size to the kernel. Traditionally
2208 * this is just advisory information but for the Linux console it
2209 * actually has driver level meaning and triggers a VC resize.
2210 *
2211 * Locking:
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002212 * Driver dependent. The default do_resize method takes the
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002213 * tty termios mutex and ctrl_lock. The console takes its own lock
2214 * then calls into the default method.
2215 */
2216
Alan Coxfc6f6232009-01-02 13:43:17 +00002217static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg)
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002218{
2219 struct winsize tmp_ws;
2220 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
2221 return -EFAULT;
2222
2223 if (tty->ops->resize)
Alan Coxfc6f6232009-01-02 13:43:17 +00002224 return tty->ops->resize(tty, &tmp_ws);
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002225 else
Alan Coxfc6f6232009-01-02 13:43:17 +00002226 return tty_do_resize(tty, &tmp_ws);
Alan Cox8c9a9dd2008-08-15 10:39:38 +01002227}
2228
2229/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002230 * tioccons - allow admin to move logical console
2231 * @file: the file to become console
2232 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002233 * Allow the administrator to move the redirected console device
Alan Coxaf9b8972006-08-27 01:24:01 -07002234 *
2235 * Locking: uses redirect_lock to guard the redirect information
2236 */
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238static int tioccons(struct file *file)
2239{
2240 if (!capable(CAP_SYS_ADMIN))
2241 return -EPERM;
2242 if (file->f_op->write == redirected_tty_write) {
2243 struct file *f;
2244 spin_lock(&redirect_lock);
2245 f = redirect;
2246 redirect = NULL;
2247 spin_unlock(&redirect_lock);
2248 if (f)
2249 fput(f);
2250 return 0;
2251 }
2252 spin_lock(&redirect_lock);
2253 if (redirect) {
2254 spin_unlock(&redirect_lock);
2255 return -EBUSY;
2256 }
Al Virocb0942b2012-08-27 14:48:26 -04002257 redirect = get_file(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 spin_unlock(&redirect_lock);
2259 return 0;
2260}
2261
Alan Coxaf9b8972006-08-27 01:24:01 -07002262/**
2263 * fionbio - non blocking ioctl
2264 * @file: file to set blocking value
2265 * @p: user parameter
2266 *
2267 * Historical tty interfaces had a blocking control ioctl before
2268 * the generic functionality existed. This piece of history is preserved
2269 * in the expected tty API of posix OS's.
2270 *
Alan Cox6146b9a2009-09-19 13:13:19 -07002271 * Locking: none, the open file handle ensures it won't go away.
Alan Coxaf9b8972006-08-27 01:24:01 -07002272 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274static int fionbio(struct file *file, int __user *p)
2275{
2276 int nonblock;
2277
2278 if (get_user(nonblock, p))
2279 return -EFAULT;
2280
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07002281 spin_lock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (nonblock)
2283 file->f_flags |= O_NONBLOCK;
2284 else
2285 file->f_flags &= ~O_NONBLOCK;
Jonathan Corbetdb1dd4d2009-02-06 15:25:24 -07002286 spin_unlock(&file->f_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return 0;
2288}
2289
Alan Coxaf9b8972006-08-27 01:24:01 -07002290/**
2291 * tiocsctty - set controlling tty
2292 * @tty: tty structure
2293 * @arg: user argument
2294 *
2295 * This ioctl is used to manage job control. It permits a session
2296 * leader to set this tty as the controlling tty for the session.
2297 *
2298 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002299 * Takes tty_mutex() to protect tty instance
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002300 * Takes tasklist_lock internally to walk sessions
2301 * Takes ->siglock() when updating signal->tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002302 */
2303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304static int tiocsctty(struct tty_struct *tty, int arg)
2305{
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002306 int ret = 0;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002307 if (current->signal->leader && (task_session(current) == tty->session))
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002308 return ret;
2309
2310 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 /*
2312 * The process must be a session leader and
2313 * not have a controlling tty already.
2314 */
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002315 if (!current->signal->leader || current->signal->tty) {
2316 ret = -EPERM;
2317 goto unlock;
2318 }
2319
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002320 if (tty->session) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 /*
2322 * This tty is already the controlling
2323 * tty for another session group!
2324 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002325 if (arg == 1 && capable(CAP_SYS_ADMIN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 /*
2327 * Steal it away
2328 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 read_lock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002330 session_clear_tty(tty->session);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 read_unlock(&tasklist_lock);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002332 } else {
2333 ret = -EPERM;
2334 goto unlock;
2335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002337 proc_set_tty(current, tty);
2338unlock:
Alan Cox28298232006-09-29 02:00:58 -07002339 mutex_unlock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002340 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
Alan Coxaf9b8972006-08-27 01:24:01 -07002343/**
Alan Cox5d0fdf12008-04-30 00:53:31 -07002344 * tty_get_pgrp - return a ref counted pgrp pid
2345 * @tty: tty to read
2346 *
2347 * Returns a refcounted instance of the pid struct for the process
2348 * group controlling the tty.
2349 */
2350
2351struct pid *tty_get_pgrp(struct tty_struct *tty)
2352{
2353 unsigned long flags;
2354 struct pid *pgrp;
2355
2356 spin_lock_irqsave(&tty->ctrl_lock, flags);
2357 pgrp = get_pid(tty->pgrp);
2358 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
2359
2360 return pgrp;
2361}
2362EXPORT_SYMBOL_GPL(tty_get_pgrp);
2363
2364/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002365 * tiocgpgrp - get process group
2366 * @tty: tty passed by user
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002367 * @real_tty: tty side of the tty passed by the user if a pty else the tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002368 * @p: returned pid
2369 *
2370 * Obtain the process group of the tty. If there is no process group
2371 * return an error.
2372 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002373 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002374 */
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2377{
Alan Cox5d0fdf12008-04-30 00:53:31 -07002378 struct pid *pid;
2379 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 /*
2381 * (tty == real_tty) is a cheap way of
2382 * testing if the tty is NOT a master pty.
2383 */
2384 if (tty == real_tty && current->signal->tty != real_tty)
2385 return -ENOTTY;
Alan Cox5d0fdf12008-04-30 00:53:31 -07002386 pid = tty_get_pgrp(real_tty);
2387 ret = put_user(pid_vnr(pid), p);
2388 put_pid(pid);
2389 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
2391
Alan Coxaf9b8972006-08-27 01:24:01 -07002392/**
2393 * tiocspgrp - attempt to set process group
2394 * @tty: tty passed by user
2395 * @real_tty: tty side device matching tty passed by user
2396 * @p: pid pointer
2397 *
2398 * Set the process group of the tty to the session passed. Only
2399 * permitted where the tty session is our session.
2400 *
Alan Cox47f86832008-04-30 00:53:30 -07002401 * Locking: RCU, ctrl lock
Alan Coxaf9b8972006-08-27 01:24:01 -07002402 */
2403
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2405{
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002406 struct pid *pgrp;
2407 pid_t pgrp_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 int retval = tty_check_change(real_tty);
Alan Cox47f86832008-04-30 00:53:30 -07002409 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 if (retval == -EIO)
2412 return -ENOTTY;
2413 if (retval)
2414 return retval;
2415 if (!current->signal->tty ||
2416 (current->signal->tty != real_tty) ||
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002417 (real_tty->session != task_session(current)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return -ENOTTY;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002419 if (get_user(pgrp_nr, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 return -EFAULT;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002421 if (pgrp_nr < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 return -EINVAL;
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002423 rcu_read_lock();
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002424 pgrp = find_vpid(pgrp_nr);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002425 retval = -ESRCH;
2426 if (!pgrp)
2427 goto out_unlock;
2428 retval = -EPERM;
2429 if (session_of_pgrp(pgrp) != task_session(current))
2430 goto out_unlock;
2431 retval = 0;
Alan Cox47f86832008-04-30 00:53:30 -07002432 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002433 put_pid(real_tty->pgrp);
2434 real_tty->pgrp = get_pid(pgrp);
Alan Cox47f86832008-04-30 00:53:30 -07002435 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
Eric W. Biederman04a2e6a2007-02-12 00:52:56 -08002436out_unlock:
2437 rcu_read_unlock();
2438 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439}
2440
Alan Coxaf9b8972006-08-27 01:24:01 -07002441/**
2442 * tiocgsid - get session id
2443 * @tty: tty passed by user
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002444 * @real_tty: tty side of the tty passed by the user if a pty else the tty
Alan Coxaf9b8972006-08-27 01:24:01 -07002445 * @p: pointer to returned session id
2446 *
2447 * Obtain the session id of the tty. If there is no session
2448 * return an error.
2449 *
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002450 * Locking: none. Reference to current->signal->tty is safe.
Alan Coxaf9b8972006-08-27 01:24:01 -07002451 */
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2454{
2455 /*
2456 * (tty == real_tty) is a cheap way of
2457 * testing if the tty is NOT a master pty.
2458 */
2459 if (tty == real_tty && current->signal->tty != real_tty)
2460 return -ENOTTY;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002461 if (!real_tty->session)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 return -ENOTTY;
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002463 return put_user(pid_vnr(real_tty->session), p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
2465
Alan Coxaf9b8972006-08-27 01:24:01 -07002466/**
2467 * tiocsetd - set line discipline
2468 * @tty: tty device
2469 * @p: pointer to user data
2470 *
2471 * Set the line discipline according to user request.
2472 *
2473 * Locking: see tty_set_ldisc, this function is just a helper
2474 */
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476static int tiocsetd(struct tty_struct *tty, int __user *p)
2477{
2478 int ldisc;
Alan Cox04f378b2008-04-30 00:53:29 -07002479 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 if (get_user(ldisc, p))
2482 return -EFAULT;
Alan Cox04f378b2008-04-30 00:53:29 -07002483
Alan Cox04f378b2008-04-30 00:53:29 -07002484 ret = tty_set_ldisc(tty, ldisc);
Alan Cox04f378b2008-04-30 00:53:29 -07002485
2486 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Alan Coxaf9b8972006-08-27 01:24:01 -07002489/**
2490 * send_break - performed time break
2491 * @tty: device to break on
2492 * @duration: timeout in mS
2493 *
2494 * Perform a timed break on hardware that lacks its own driver level
2495 * timed break functionality.
2496 *
2497 * Locking:
Alan Cox28298232006-09-29 02:00:58 -07002498 * atomic_write_lock serializes
Alan Coxaf9b8972006-08-27 01:24:01 -07002499 *
Alan Coxaf9b8972006-08-27 01:24:01 -07002500 */
2501
Domen Puncerb20f3ae2005-06-25 14:58:42 -07002502static int send_break(struct tty_struct *tty, unsigned int duration)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Alan Cox9e989662008-07-22 11:18:03 +01002504 int retval;
2505
2506 if (tty->ops->break_ctl == NULL)
2507 return 0;
2508
2509 if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK)
2510 retval = tty->ops->break_ctl(tty, duration);
2511 else {
2512 /* Do the work ourselves */
2513 if (tty_write_lock(tty, 0) < 0)
2514 return -EINTR;
2515 retval = tty->ops->break_ctl(tty, -1);
2516 if (retval)
2517 goto out;
2518 if (!signal_pending(current))
2519 msleep_interruptible(duration);
2520 retval = tty->ops->break_ctl(tty, 0);
2521out:
2522 tty_write_unlock(tty);
2523 if (signal_pending(current))
2524 retval = -EINTR;
2525 }
2526 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528
Alan Coxaf9b8972006-08-27 01:24:01 -07002529/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002530 * tty_tiocmget - get modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002531 * @tty: tty device
2532 * @file: user file pointer
2533 * @p: pointer to result
2534 *
2535 * Obtain the modem status bits from the tty driver if the feature
2536 * is supported. Return -EINVAL if it is not available.
2537 *
2538 * Locking: none (up to the driver)
2539 */
2540
Alan Cox60b33c12011-02-14 16:26:14 +00002541static int tty_tiocmget(struct tty_struct *tty, int __user *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
2543 int retval = -EINVAL;
2544
Alan Coxf34d7a52008-04-30 00:54:13 -07002545 if (tty->ops->tiocmget) {
Alan Cox60b33c12011-02-14 16:26:14 +00002546 retval = tty->ops->tiocmget(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
2548 if (retval >= 0)
2549 retval = put_user(retval, p);
2550 }
2551 return retval;
2552}
2553
Alan Coxaf9b8972006-08-27 01:24:01 -07002554/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002555 * tty_tiocmset - set modem status
Alan Coxaf9b8972006-08-27 01:24:01 -07002556 * @tty: tty device
Alan Coxaf9b8972006-08-27 01:24:01 -07002557 * @cmd: command - clear bits, set bits or set all
2558 * @p: pointer to desired bits
2559 *
2560 * Set the modem status bits from the tty driver if the feature
2561 * is supported. Return -EINVAL if it is not available.
2562 *
2563 * Locking: none (up to the driver)
2564 */
2565
Alan Cox20b9d172011-02-14 16:26:50 +00002566static int tty_tiocmset(struct tty_struct *tty, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 unsigned __user *p)
2568{
Alan Coxae677512008-07-16 21:56:54 +01002569 int retval;
2570 unsigned int set, clear, val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Alan Coxae677512008-07-16 21:56:54 +01002572 if (tty->ops->tiocmset == NULL)
2573 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Alan Coxae677512008-07-16 21:56:54 +01002575 retval = get_user(val, p);
2576 if (retval)
2577 return retval;
2578 set = clear = 0;
2579 switch (cmd) {
2580 case TIOCMBIS:
2581 set = val;
2582 break;
2583 case TIOCMBIC:
2584 clear = val;
2585 break;
2586 case TIOCMSET:
2587 set = val;
2588 clear = ~val;
2589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
Alan Coxae677512008-07-16 21:56:54 +01002591 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2592 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
Alan Cox20b9d172011-02-14 16:26:50 +00002593 return tty->ops->tiocmset(tty, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
Alan Coxd281da72010-09-16 18:21:24 +01002596static int tty_tiocgicount(struct tty_struct *tty, void __user *arg)
2597{
2598 int retval = -EINVAL;
2599 struct serial_icounter_struct icount;
2600 memset(&icount, 0, sizeof(icount));
2601 if (tty->ops->get_icount)
2602 retval = tty->ops->get_icount(tty, &icount);
2603 if (retval != 0)
2604 return retval;
2605 if (copy_to_user(arg, &icount, sizeof(icount)))
2606 return -EFAULT;
2607 return 0;
2608}
2609
Alan Coxe8b70e72009-06-11 12:48:02 +01002610struct tty_struct *tty_pair_get_tty(struct tty_struct *tty)
2611{
2612 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2613 tty->driver->subtype == PTY_TYPE_MASTER)
2614 tty = tty->link;
2615 return tty;
2616}
2617EXPORT_SYMBOL(tty_pair_get_tty);
2618
2619struct tty_struct *tty_pair_get_pty(struct tty_struct *tty)
2620{
2621 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2622 tty->driver->subtype == PTY_TYPE_MASTER)
2623 return tty;
2624 return tty->link;
2625}
2626EXPORT_SYMBOL(tty_pair_get_pty);
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628/*
2629 * Split this up, as gcc can choke on it otherwise..
2630 */
Alan Cox04f378b2008-04-30 00:53:29 -07002631long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Nick Piggind996b622010-08-18 04:37:36 +10002633 struct tty_struct *tty = file_tty(file);
2634 struct tty_struct *real_tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 void __user *p = (void __user *)arg;
2636 int retval;
2637 struct tty_ldisc *ld;
Alan Cox37bdfb02008-02-08 04:18:47 -08002638
Al Viro6131ffa2013-02-27 16:59:05 -05002639 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 return -EINVAL;
2641
Alan Coxe8b70e72009-06-11 12:48:02 +01002642 real_tty = tty_pair_get_tty(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
2644 /*
2645 * Factor out some common prep work
2646 */
2647 switch (cmd) {
2648 case TIOCSETD:
2649 case TIOCSBRK:
2650 case TIOCCBRK:
2651 case TCSBRK:
Alan Cox37bdfb02008-02-08 04:18:47 -08002652 case TCSBRKP:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 retval = tty_check_change(tty);
2654 if (retval)
2655 return retval;
2656 if (cmd != TIOCCBRK) {
2657 tty_wait_until_sent(tty, 0);
2658 if (signal_pending(current))
2659 return -EINTR;
2660 }
2661 break;
2662 }
2663
Alan Cox9e989662008-07-22 11:18:03 +01002664 /*
2665 * Now do the stuff.
2666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 switch (cmd) {
Alan Cox37bdfb02008-02-08 04:18:47 -08002668 case TIOCSTI:
2669 return tiocsti(tty, p);
2670 case TIOCGWINSZ:
Alan Cox8f520022008-10-13 10:38:46 +01002671 return tiocgwinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002672 case TIOCSWINSZ:
Alan Coxfc6f6232009-01-02 13:43:17 +00002673 return tiocswinsz(real_tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002674 case TIOCCONS:
2675 return real_tty != tty ? -EINVAL : tioccons(file);
2676 case FIONBIO:
2677 return fionbio(file, p);
2678 case TIOCEXCL:
2679 set_bit(TTY_EXCLUSIVE, &tty->flags);
2680 return 0;
2681 case TIOCNXCL:
2682 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2683 return 0;
Cyrill Gorcunov84fd7bd2012-10-24 23:43:22 +04002684 case TIOCGEXCL:
2685 {
2686 int excl = test_bit(TTY_EXCLUSIVE, &tty->flags);
2687 return put_user(excl, (int __user *)p);
2688 }
Alan Cox37bdfb02008-02-08 04:18:47 -08002689 case TIOCNOTTY:
2690 if (current->signal->tty != tty)
2691 return -ENOTTY;
2692 no_tty();
2693 return 0;
2694 case TIOCSCTTY:
2695 return tiocsctty(tty, arg);
2696 case TIOCGPGRP:
2697 return tiocgpgrp(tty, real_tty, p);
2698 case TIOCSPGRP:
2699 return tiocspgrp(tty, real_tty, p);
2700 case TIOCGSID:
2701 return tiocgsid(tty, real_tty, p);
2702 case TIOCGETD:
Alan Coxc65c9bc2009-06-11 12:50:12 +01002703 return put_user(tty->ldisc->ops->num, (int __user *)p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002704 case TIOCSETD:
2705 return tiocsetd(tty, p);
Kay Sievers3c95c982011-02-17 18:39:28 +01002706 case TIOCVHANGUP:
2707 if (!capable(CAP_SYS_ADMIN))
2708 return -EPERM;
2709 tty_vhangup(tty);
2710 return 0;
Werner Finkb7b8de02010-12-03 12:48:23 +01002711 case TIOCGDEV:
2712 {
2713 unsigned int ret = new_encode_dev(tty_devnum(real_tty));
2714 return put_user(ret, (unsigned int __user *)p);
2715 }
Alan Cox37bdfb02008-02-08 04:18:47 -08002716 /*
2717 * Break handling
2718 */
2719 case TIOCSBRK: /* Turn break on, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002720 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002721 return tty->ops->break_ctl(tty, -1);
Alan Cox37bdfb02008-02-08 04:18:47 -08002722 return 0;
Alan Cox37bdfb02008-02-08 04:18:47 -08002723 case TIOCCBRK: /* Turn break off, unconditionally */
Alan Coxf34d7a52008-04-30 00:54:13 -07002724 if (tty->ops->break_ctl)
Alan Cox9e989662008-07-22 11:18:03 +01002725 return tty->ops->break_ctl(tty, 0);
Alan Cox37bdfb02008-02-08 04:18:47 -08002726 return 0;
2727 case TCSBRK: /* SVID version: non-zero arg --> no break */
2728 /* non-zero arg means wait for all output data
2729 * to be sent (performed above) but don't send break.
2730 * This is used by the tcdrain() termios function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 */
Alan Cox37bdfb02008-02-08 04:18:47 -08002732 if (!arg)
2733 return send_break(tty, 250);
2734 return 0;
2735 case TCSBRKP: /* support for POSIX tcsendbreak() */
2736 return send_break(tty, arg ? arg*100 : 250);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
Alan Cox37bdfb02008-02-08 04:18:47 -08002738 case TIOCMGET:
Alan Cox60b33c12011-02-14 16:26:14 +00002739 return tty_tiocmget(tty, p);
Alan Cox37bdfb02008-02-08 04:18:47 -08002740 case TIOCMSET:
2741 case TIOCMBIC:
2742 case TIOCMBIS:
Alan Cox20b9d172011-02-14 16:26:50 +00002743 return tty_tiocmset(tty, cmd, p);
Alan Coxd281da72010-09-16 18:21:24 +01002744 case TIOCGICOUNT:
2745 retval = tty_tiocgicount(tty, p);
2746 /* For the moment allow fall through to the old method */
2747 if (retval != -EINVAL)
2748 return retval;
2749 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08002750 case TCFLSH:
2751 switch (arg) {
2752 case TCIFLUSH:
2753 case TCIOFLUSH:
2754 /* flush tty buffer and allow ldisc to process ioctl */
2755 tty_buffer_flush(tty);
Paul Fulghumc5c34d42007-05-12 10:36:55 -07002756 break;
Alan Cox37bdfb02008-02-08 04:18:47 -08002757 }
2758 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 }
Alan Coxf34d7a52008-04-30 00:54:13 -07002760 if (tty->ops->ioctl) {
Alan Cox6caa76b2011-02-14 16:27:22 +00002761 retval = (tty->ops->ioctl)(tty, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 if (retval != -ENOIOCTLCMD)
2763 return retval;
2764 }
2765 ld = tty_ldisc_ref_wait(tty);
2766 retval = -EINVAL;
Alan Coxa352def2008-07-16 21:53:12 +01002767 if (ld->ops->ioctl) {
2768 retval = ld->ops->ioctl(tty, file, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 if (retval == -ENOIOCTLCMD)
Wanlong Gaobbb63c52012-08-27 15:23:12 +08002770 retval = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 }
2772 tty_ldisc_deref(ld);
2773 return retval;
2774}
2775
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002776#ifdef CONFIG_COMPAT
Alan Cox37bdfb02008-02-08 04:18:47 -08002777static long tty_compat_ioctl(struct file *file, unsigned int cmd,
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002778 unsigned long arg)
2779{
Nick Piggind996b622010-08-18 04:37:36 +10002780 struct tty_struct *tty = file_tty(file);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002781 struct tty_ldisc *ld;
2782 int retval = -ENOIOCTLCMD;
2783
Al Viro6131ffa2013-02-27 16:59:05 -05002784 if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl"))
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002785 return -EINVAL;
2786
Alan Coxf34d7a52008-04-30 00:54:13 -07002787 if (tty->ops->compat_ioctl) {
Alan Cox6caa76b2011-02-14 16:27:22 +00002788 retval = (tty->ops->compat_ioctl)(tty, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002789 if (retval != -ENOIOCTLCMD)
2790 return retval;
2791 }
2792
2793 ld = tty_ldisc_ref_wait(tty);
Alan Coxa352def2008-07-16 21:53:12 +01002794 if (ld->ops->compat_ioctl)
2795 retval = ld->ops->compat_ioctl(tty, file, cmd, arg);
Thomas Meyer8193c422011-10-05 23:13:13 +02002796 else
2797 retval = n_tty_compat_ioctl_helper(tty, file, cmd, arg);
Paul Fulghume10cc1d2007-05-10 22:22:50 -07002798 tty_ldisc_deref(ld);
2799
2800 return retval;
2801}
2802#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Al Viroc3c073f2012-08-21 22:32:06 -04002804static int this_tty(const void *t, struct file *file, unsigned fd)
2805{
2806 if (likely(file->f_op->read != tty_read))
2807 return 0;
2808 return file_tty(file) != t ? 0 : fd + 1;
2809}
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811/*
2812 * This implements the "Secure Attention Key" --- the idea is to
2813 * prevent trojan horses by killing all processes associated with this
2814 * tty when the user hits the "Secure Attention Key". Required for
2815 * super-paranoid applications --- see the Orange Book for more details.
Alan Cox37bdfb02008-02-08 04:18:47 -08002816 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 * This code could be nicer; ideally it should send a HUP, wait a few
2818 * seconds, then send a INT, and then a KILL signal. But you then
2819 * have to coordinate with the init process, since all processes associated
2820 * with the current tty must be dead before the new getty is allowed
2821 * to spawn.
2822 *
2823 * Now, if it would be correct ;-/ The current code has a nasty hole -
2824 * it doesn't catch files in flight. We may send the descriptor to ourselves
2825 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2826 *
2827 * Nasty bug: do_SAK is being called in interrupt context. This can
2828 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2829 */
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002830void __do_SAK(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
2832#ifdef TTY_SOFT_SAK
2833 tty_hangup(tty);
2834#else
Eric W. Biederman652486f2006-03-28 16:11:02 -08002835 struct task_struct *g, *p;
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002836 struct pid *session;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 int i;
Alan Cox37bdfb02008-02-08 04:18:47 -08002838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 if (!tty)
2840 return;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08002841 session = tty->session;
Alan Cox37bdfb02008-02-08 04:18:47 -08002842
Dan Carpenterb3f13de2006-12-13 00:35:09 -08002843 tty_ldisc_flush(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Alan Coxf34d7a52008-04-30 00:54:13 -07002845 tty_driver_flush_buffer(tty);
Alan Cox37bdfb02008-02-08 04:18:47 -08002846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 read_lock(&tasklist_lock);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002848 /* Kill the entire session */
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002849 do_each_pid_task(session, PIDTYPE_SID, p) {
Eric W. Biederman652486f2006-03-28 16:11:02 -08002850 printk(KERN_NOTICE "SAK: killed process %d"
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07002851 " (%s): task_session(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002852 task_pid_nr(p), p->comm);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002853 send_sig(SIGKILL, p, 1);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002854 } while_each_pid_task(session, PIDTYPE_SID, p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002855 /* Now kill any processes that happen to have the
2856 * tty open.
2857 */
2858 do_each_thread(g, p) {
2859 if (p->signal->tty == tty) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 printk(KERN_NOTICE "SAK: killed process %d"
Oleg Nesterov1b0f7ff2009-04-02 16:58:39 -07002861 " (%s): task_session(p)==tty->session\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002862 task_pid_nr(p), p->comm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 send_sig(SIGKILL, p, 1);
2864 continue;
2865 }
2866 task_lock(p);
Al Viroc3c073f2012-08-21 22:32:06 -04002867 i = iterate_fd(p->files, 0, this_tty, tty);
2868 if (i != 0) {
2869 printk(KERN_NOTICE "SAK: killed process %d"
2870 " (%s): fd#%d opened to the tty\n",
2871 task_pid_nr(p), p->comm, i - 1);
2872 force_sig(SIGKILL, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 }
2874 task_unlock(p);
Eric W. Biederman652486f2006-03-28 16:11:02 -08002875 } while_each_thread(g, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 read_unlock(&tasklist_lock);
2877#endif
2878}
2879
Eric W. Biederman8b6312f2007-02-10 01:44:34 -08002880static void do_SAK_work(struct work_struct *work)
2881{
2882 struct tty_struct *tty =
2883 container_of(work, struct tty_struct, SAK_work);
2884 __do_SAK(tty);
2885}
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887/*
2888 * The tq handling here is a little racy - tty->SAK_work may already be queued.
2889 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
2890 * the values which we write to it will be identical to the values which it
2891 * already has. --akpm
2892 */
2893void do_SAK(struct tty_struct *tty)
2894{
2895 if (!tty)
2896 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 schedule_work(&tty->SAK_work);
2898}
2899
2900EXPORT_SYMBOL(do_SAK);
2901
Greg Kroah-Hartman6e9430a2013-02-06 15:59:18 -08002902static int dev_match_devt(struct device *dev, const void *data)
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +04002903{
Greg Kroah-Hartman6e9430a2013-02-06 15:59:18 -08002904 const dev_t *devt = data;
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +04002905 return dev->devt == *devt;
2906}
2907
2908/* Must put_device() after it's unused! */
2909static struct device *tty_get_device(struct tty_struct *tty)
2910{
2911 dev_t devt = tty_devnum(tty);
2912 return class_find_device(tty_class, NULL, &devt, dev_match_devt);
2913}
2914
2915
Alan Coxaf9b8972006-08-27 01:24:01 -07002916/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002917 * initialize_tty_struct
2918 * @tty: tty to initialize
2919 *
2920 * This subroutine initializes a tty structure that has been newly
2921 * allocated.
2922 *
2923 * Locking: none - tty in question must not be exposed at this point
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002925
Alan Coxbf970ee2008-10-13 10:42:39 +01002926void initialize_tty_struct(struct tty_struct *tty,
2927 struct tty_driver *driver, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
2929 memset(tty, 0, sizeof(struct tty_struct));
Alan Cox9c9f4de2008-10-13 10:37:26 +01002930 kref_init(&tty->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 tty->magic = TTY_MAGIC;
Alan Cox01e1abb2008-07-22 11:16:55 +01002932 tty_ldisc_init(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08002933 tty->session = NULL;
2934 tty->pgrp = NULL;
Alan Cox89c8d912012-08-08 16:30:13 +01002935 mutex_init(&tty->legacy_mutex);
Arjan van de Ven5785c952006-09-29 02:00:43 -07002936 mutex_init(&tty->termios_mutex);
Alan Coxc65c9bc2009-06-11 12:50:12 +01002937 mutex_init(&tty->ldisc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 init_waitqueue_head(&tty->write_wait);
2939 init_waitqueue_head(&tty->read_wait);
David Howells65f27f32006-11-22 14:55:48 +00002940 INIT_WORK(&tty->hangup_work, do_tty_hangup);
Ingo Molnar70522e12006-03-23 03:00:31 -08002941 mutex_init(&tty->atomic_write_lock);
Alan Cox04f378b2008-04-30 00:53:29 -07002942 spin_lock_init(&tty->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 INIT_LIST_HEAD(&tty->tty_files);
Eric W. Biederman7f1f86a2007-02-13 14:38:58 -07002944 INIT_WORK(&tty->SAK_work, do_SAK_work);
Alan Coxbf970ee2008-10-13 10:42:39 +01002945
2946 tty->driver = driver;
2947 tty->ops = driver->ops;
2948 tty->index = idx;
2949 tty_line_name(driver, idx, tty->name);
Dmitry Eremin-Solenikov30004ac2010-08-09 18:22:49 +04002950 tty->dev = tty_get_device(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951}
2952
Alan Coxf34d7a52008-04-30 00:54:13 -07002953/**
Jiri Slaby67166712011-03-23 10:48:35 +01002954 * deinitialize_tty_struct
2955 * @tty: tty to deinitialize
2956 *
2957 * This subroutine deinitializes a tty structure that has been newly
2958 * allocated but tty_release cannot be called on that yet.
2959 *
2960 * Locking: none - tty in question must not be exposed at this point
2961 */
2962void deinitialize_tty_struct(struct tty_struct *tty)
2963{
2964 tty_ldisc_deinit(tty);
2965}
2966
2967/**
Alan Coxf34d7a52008-04-30 00:54:13 -07002968 * tty_put_char - write one character to a tty
2969 * @tty: tty
2970 * @ch: character
2971 *
2972 * Write one byte to the tty using the provided put_char method
2973 * if present. Returns the number of characters successfully output.
2974 *
2975 * Note: the specific put_char operation in the driver layer may go
2976 * away soon. Don't call it directly, use this method
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 */
Alan Coxaf9b8972006-08-27 01:24:01 -07002978
Alan Coxf34d7a52008-04-30 00:54:13 -07002979int tty_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Alan Coxf34d7a52008-04-30 00:54:13 -07002981 if (tty->ops->put_char)
2982 return tty->ops->put_char(tty, ch);
2983 return tty->ops->write(tty, &ch, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984}
Alan Coxf34d7a52008-04-30 00:54:13 -07002985EXPORT_SYMBOL_GPL(tty_put_char);
2986
Alan Coxd81ed102008-10-13 10:41:42 +01002987struct class *tty_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Jiri Slaby7e73eca2012-08-08 22:26:44 +02002989static int tty_cdev_add(struct tty_driver *driver, dev_t dev,
2990 unsigned int index, unsigned int count)
2991{
2992 /* init here, since reused cdevs cause crashes */
2993 cdev_init(&driver->cdevs[index], &tty_fops);
2994 driver->cdevs[index].owner = driver->owner;
2995 return cdev_add(&driver->cdevs[index], dev, count);
2996}
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998/**
Alan Coxaf9b8972006-08-27 01:24:01 -07002999 * tty_register_device - register a tty device
3000 * @driver: the tty driver that describes the tty device
3001 * @index: the index in the tty driver for this tty device
3002 * @device: a struct device that is associated with this tty device.
3003 * This field is optional, if there is no known struct device
3004 * for this tty device it can be set to NULL safely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 *
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07003006 * Returns a pointer to the struct device for this tty device
3007 * (or ERR_PTR(-EFOO) on error).
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02003008 *
Alan Coxaf9b8972006-08-27 01:24:01 -07003009 * This call is required to be made to register an individual tty device
3010 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3011 * that bit is not set, this function should not be called by a tty
3012 * driver.
3013 *
3014 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 */
Alan Coxaf9b8972006-08-27 01:24:01 -07003016
Greg Kroah-Hartman01107d32006-08-07 22:19:37 -07003017struct device *tty_register_device(struct tty_driver *driver, unsigned index,
3018 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003020 return tty_register_device_attr(driver, index, device, NULL, NULL);
3021}
3022EXPORT_SYMBOL(tty_register_device);
3023
Tomas Hlavacekb1b79912012-09-06 23:17:47 +02003024static void tty_device_create_release(struct device *dev)
3025{
3026 pr_debug("device: '%s': %s\n", dev_name(dev), __func__);
3027 kfree(dev);
3028}
3029
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003030/**
3031 * tty_register_device_attr - register a tty device
3032 * @driver: the tty driver that describes the tty device
3033 * @index: the index in the tty driver for this tty device
3034 * @device: a struct device that is associated with this tty device.
3035 * This field is optional, if there is no known struct device
3036 * for this tty device it can be set to NULL safely.
3037 * @drvdata: Driver data to be set to device.
3038 * @attr_grp: Attribute group to be set on device.
3039 *
3040 * Returns a pointer to the struct device for this tty device
3041 * (or ERR_PTR(-EFOO) on error).
3042 *
3043 * This call is required to be made to register an individual tty device
3044 * if the tty driver's flags have the TTY_DRIVER_DYNAMIC_DEV bit set. If
3045 * that bit is not set, this function should not be called by a tty
3046 * driver.
3047 *
3048 * Locking: ??
3049 */
3050struct device *tty_register_device_attr(struct tty_driver *driver,
3051 unsigned index, struct device *device,
3052 void *drvdata,
3053 const struct attribute_group **attr_grp)
3054{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 char name[64];
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003056 dev_t devt = MKDEV(driver->major, driver->minor_start) + index;
3057 struct device *dev = NULL;
3058 int retval = -ENODEV;
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003059 bool cdev = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
3061 if (index >= driver->num) {
3062 printk(KERN_ERR "Attempt to register invalid tty line number "
3063 " (%d).\n", index);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02003064 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 }
3066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 if (driver->type == TTY_DRIVER_TYPE_PTY)
3068 pty_line_name(driver, index, name);
3069 else
3070 tty_line_name(driver, index, name);
Hansjoerg Lipp1cdcb6b2006-04-22 18:36:53 +02003071
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003072 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003073 retval = tty_cdev_add(driver, devt, index, 1);
3074 if (retval)
3075 goto error;
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003076 cdev = true;
3077 }
3078
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003079 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3080 if (!dev) {
3081 retval = -ENOMEM;
3082 goto error;
3083 }
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003084
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003085 dev->devt = devt;
3086 dev->class = tty_class;
3087 dev->parent = device;
Tomas Hlavacekb1b79912012-09-06 23:17:47 +02003088 dev->release = tty_device_create_release;
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003089 dev_set_name(dev, "%s", name);
3090 dev->groups = attr_grp;
3091 dev_set_drvdata(dev, drvdata);
3092
3093 retval = device_register(dev);
3094 if (retval)
3095 goto error;
3096
3097 return dev;
3098
3099error:
3100 put_device(dev);
3101 if (cdev)
3102 cdev_del(&driver->cdevs[index]);
3103 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104}
Tomas Hlavacek6915c0e2012-09-06 03:17:18 +02003105EXPORT_SYMBOL_GPL(tty_register_device_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107/**
Alan Coxaf9b8972006-08-27 01:24:01 -07003108 * tty_unregister_device - unregister a tty device
3109 * @driver: the tty driver that describes the tty device
3110 * @index: the index in the tty driver for this tty device
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 *
Alan Coxaf9b8972006-08-27 01:24:01 -07003112 * If a tty device is registered with a call to tty_register_device() then
3113 * this function must be called when the tty device is gone.
3114 *
3115 * Locking: ??
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 */
Alan Coxaf9b8972006-08-27 01:24:01 -07003117
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118void tty_unregister_device(struct tty_driver *driver, unsigned index)
3119{
Alan Cox37bdfb02008-02-08 04:18:47 -08003120 device_destroy(tty_class,
3121 MKDEV(driver->major, driver->minor_start) + index);
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003122 if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC))
3123 cdev_del(&driver->cdevs[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125EXPORT_SYMBOL(tty_unregister_device);
3126
Jiri Slaby7f0bc6a2012-08-07 21:47:42 +02003127/**
3128 * __tty_alloc_driver -- allocate tty driver
3129 * @lines: count of lines this driver can handle at most
3130 * @owner: module which is repsonsible for this driver
3131 * @flags: some of TTY_DRIVER_* flags, will be set in driver->flags
3132 *
3133 * This should not be called directly, some of the provided macros should be
3134 * used instead. Use IS_ERR and friends on @retval.
3135 */
3136struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner,
3137 unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138{
3139 struct tty_driver *driver;
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003140 unsigned int cdevs = 1;
Jiri Slaby16a02082012-08-08 22:26:42 +02003141 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Jiri Slaby0019b402012-08-08 22:26:43 +02003143 if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1))
Jiri Slaby7f0bc6a2012-08-07 21:47:42 +02003144 return ERR_PTR(-EINVAL);
3145
Jean Delvare506eb992007-07-15 23:40:14 -07003146 driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL);
Jiri Slaby7f0bc6a2012-08-07 21:47:42 +02003147 if (!driver)
3148 return ERR_PTR(-ENOMEM);
3149
3150 kref_init(&driver->kref);
3151 driver->magic = TTY_DRIVER_MAGIC;
3152 driver->num = lines;
3153 driver->owner = owner;
3154 driver->flags = flags;
Jiri Slaby16a02082012-08-08 22:26:42 +02003155
3156 if (!(flags & TTY_DRIVER_DEVPTS_MEM)) {
3157 driver->ttys = kcalloc(lines, sizeof(*driver->ttys),
3158 GFP_KERNEL);
3159 driver->termios = kcalloc(lines, sizeof(*driver->termios),
3160 GFP_KERNEL);
3161 if (!driver->ttys || !driver->termios) {
3162 err = -ENOMEM;
3163 goto err_free_all;
3164 }
3165 }
3166
3167 if (!(flags & TTY_DRIVER_DYNAMIC_ALLOC)) {
3168 driver->ports = kcalloc(lines, sizeof(*driver->ports),
3169 GFP_KERNEL);
3170 if (!driver->ports) {
3171 err = -ENOMEM;
3172 goto err_free_all;
3173 }
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003174 cdevs = lines;
3175 }
3176
3177 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL);
3178 if (!driver->cdevs) {
3179 err = -ENOMEM;
3180 goto err_free_all;
Jiri Slaby16a02082012-08-08 22:26:42 +02003181 }
Jiri Slaby7f0bc6a2012-08-07 21:47:42 +02003182
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 return driver;
Jiri Slaby16a02082012-08-08 22:26:42 +02003184err_free_all:
3185 kfree(driver->ports);
3186 kfree(driver->ttys);
3187 kfree(driver->termios);
3188 kfree(driver);
3189 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190}
Jiri Slaby7f0bc6a2012-08-07 21:47:42 +02003191EXPORT_SYMBOL(__tty_alloc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Alan Cox7d7b93c2008-10-13 10:42:09 +01003193static void destruct_tty_driver(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194{
Alan Cox7d7b93c2008-10-13 10:42:09 +01003195 struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
3196 int i;
3197 struct ktermios *tp;
Alan Cox7d7b93c2008-10-13 10:42:09 +01003198
3199 if (driver->flags & TTY_DRIVER_INSTALLED) {
3200 /*
3201 * Free the termios and termios_locked structures because
3202 * we don't want to get memory leaks when modular tty
3203 * drivers are removed from the kernel.
3204 */
3205 for (i = 0; i < driver->num; i++) {
3206 tp = driver->termios[i];
3207 if (tp) {
3208 driver->termios[i] = NULL;
3209 kfree(tp);
3210 }
Alan Cox7d7b93c2008-10-13 10:42:09 +01003211 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV))
3212 tty_unregister_device(driver, i);
3213 }
Alan Cox7d7b93c2008-10-13 10:42:09 +01003214 proc_tty_unregister_driver(driver);
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003215 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)
3216 cdev_del(&driver->cdevs[0]);
Alan Cox7d7b93c2008-10-13 10:42:09 +01003217 }
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003218 kfree(driver->cdevs);
Jiri Slaby04831dc2012-06-04 13:35:36 +02003219 kfree(driver->ports);
Jiri Slaby16a02082012-08-08 22:26:42 +02003220 kfree(driver->termios);
3221 kfree(driver->ttys);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 kfree(driver);
3223}
3224
Alan Cox7d7b93c2008-10-13 10:42:09 +01003225void tty_driver_kref_put(struct tty_driver *driver)
3226{
3227 kref_put(&driver->kref, destruct_tty_driver);
3228}
3229EXPORT_SYMBOL(tty_driver_kref_put);
3230
Jeff Dikeb68e31d2006-10-02 02:17:18 -07003231void tty_set_operations(struct tty_driver *driver,
3232 const struct tty_operations *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233{
Alan Coxf34d7a52008-04-30 00:54:13 -07003234 driver->ops = op;
3235};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236EXPORT_SYMBOL(tty_set_operations);
3237
Alan Cox7d7b93c2008-10-13 10:42:09 +01003238void put_tty_driver(struct tty_driver *d)
3239{
3240 tty_driver_kref_put(d);
3241}
3242EXPORT_SYMBOL(put_tty_driver);
3243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244/*
3245 * Called by a tty driver to register itself.
3246 */
3247int tty_register_driver(struct tty_driver *driver)
3248{
3249 int error;
Alan Cox37bdfb02008-02-08 04:18:47 -08003250 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 dev_t dev;
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003252 struct device *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (!driver->major) {
Alan Cox37bdfb02008-02-08 04:18:47 -08003255 error = alloc_chrdev_region(&dev, driver->minor_start,
3256 driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 if (!error) {
3258 driver->major = MAJOR(dev);
3259 driver->minor_start = MINOR(dev);
3260 }
3261 } else {
3262 dev = MKDEV(driver->major, driver->minor_start);
Geert Uytterhoevene5717c42007-02-20 15:45:21 +01003263 error = register_chrdev_region(dev, driver->num, driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 }
Jiri Slaby9bb8a3d2012-06-04 13:35:35 +02003265 if (error < 0)
Jiri Slaby16a02082012-08-08 22:26:42 +02003266 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
Jiri Slaby7e73eca2012-08-08 22:26:44 +02003268 if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC) {
3269 error = tty_cdev_add(driver, dev, 0, driver->num);
3270 if (error)
3271 goto err_unreg_char;
3272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003274 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 list_add(&driver->tty_drivers, &tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003276 mutex_unlock(&tty_mutex);
Alan Cox37bdfb02008-02-08 04:18:47 -08003277
3278 if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) {
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003279 for (i = 0; i < driver->num; i++) {
3280 d = tty_register_device(driver, i, NULL);
3281 if (IS_ERR(d)) {
3282 error = PTR_ERR(d);
Jiri Slaby16a02082012-08-08 22:26:42 +02003283 goto err_unreg_devs;
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003284 }
3285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
3287 proc_tty_register_driver(driver);
Alan Cox7d7b93c2008-10-13 10:42:09 +01003288 driver->flags |= TTY_DRIVER_INSTALLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 return 0;
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003290
Jiri Slaby16a02082012-08-08 22:26:42 +02003291err_unreg_devs:
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003292 for (i--; i >= 0; i--)
3293 tty_unregister_device(driver, i);
3294
3295 mutex_lock(&tty_mutex);
3296 list_del(&driver->tty_drivers);
3297 mutex_unlock(&tty_mutex);
3298
Jiri Slaby9bb8a3d2012-06-04 13:35:35 +02003299err_unreg_char:
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003300 unregister_chrdev_region(dev, driver->num);
Jiri Slaby16a02082012-08-08 22:26:42 +02003301err:
Vasiliy Kulikovb670bde2010-09-05 22:32:22 +04003302 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304EXPORT_SYMBOL(tty_register_driver);
3305
3306/*
3307 * Called by a tty driver to unregister itself.
3308 */
3309int tty_unregister_driver(struct tty_driver *driver)
3310{
Alan Cox7d7b93c2008-10-13 10:42:09 +01003311#if 0
3312 /* FIXME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (driver->refcount)
3314 return -EBUSY;
Alan Cox7d7b93c2008-10-13 10:42:09 +01003315#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
3317 driver->num);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003318 mutex_lock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 list_del(&driver->tty_drivers);
Alexey Dobriyanca509f62007-05-08 00:27:12 -07003320 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 return 0;
3322}
Alan Cox7d7b93c2008-10-13 10:42:09 +01003323
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324EXPORT_SYMBOL(tty_unregister_driver);
3325
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003326dev_t tty_devnum(struct tty_struct *tty)
3327{
3328 return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
3329}
3330EXPORT_SYMBOL(tty_devnum);
3331
3332void proc_clear_tty(struct task_struct *p)
3333{
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003334 unsigned long flags;
Alan Cox9c9f4de2008-10-13 10:37:26 +01003335 struct tty_struct *tty;
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003336 spin_lock_irqsave(&p->sighand->siglock, flags);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003337 tty = p->signal->tty;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003338 p->signal->tty = NULL;
Arjan van de Ven7c3b1dc2008-10-15 10:52:34 +01003339 spin_unlock_irqrestore(&p->sighand->siglock, flags);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003340 tty_kref_put(tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003341}
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003342
Alan Cox47f86832008-04-30 00:53:30 -07003343/* Called under the sighand lock */
3344
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003345static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003346{
3347 if (tty) {
Alan Cox47f86832008-04-30 00:53:30 -07003348 unsigned long flags;
3349 /* We should not have a session or pgrp to put here but.... */
3350 spin_lock_irqsave(&tty->ctrl_lock, flags);
Eric W. Biedermand9c1e9a2007-03-18 12:45:44 -06003351 put_pid(tty->session);
3352 put_pid(tty->pgrp);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003353 tty->pgrp = get_pid(task_pgrp(tsk));
Alan Cox47f86832008-04-30 00:53:30 -07003354 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
3355 tty->session = get_pid(task_session(tsk));
Alan Cox9c9f4de2008-10-13 10:37:26 +01003356 if (tsk->signal->tty) {
3357 printk(KERN_DEBUG "tty not NULL!!\n");
3358 tty_kref_put(tsk->signal->tty);
3359 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003360 }
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003361 put_pid(tsk->signal->tty_old_pgrp);
Alan Cox9c9f4de2008-10-13 10:37:26 +01003362 tsk->signal->tty = tty_kref_get(tty);
Eric W. Biedermanab521dc2007-02-12 00:53:00 -08003363 tsk->signal->tty_old_pgrp = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003364}
3365
Eric W. Biederman98a27ba2007-05-08 00:26:56 -07003366static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty)
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003367{
3368 spin_lock_irq(&tsk->sighand->siglock);
Eric W. Biederman2a65f1d2007-05-08 00:26:53 -07003369 __proc_set_tty(tsk, tty);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003370 spin_unlock_irq(&tsk->sighand->siglock);
3371}
3372
3373struct tty_struct *get_current_tty(void)
3374{
3375 struct tty_struct *tty;
Alan Cox934e6eb2008-10-13 10:40:43 +01003376 unsigned long flags;
3377
3378 spin_lock_irqsave(&current->sighand->siglock, flags);
Alan Cox452a00d2008-10-13 10:39:13 +01003379 tty = tty_kref_get(current->signal->tty);
Alan Cox934e6eb2008-10-13 10:40:43 +01003380 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Peter Zijlstra24ec8392006-12-08 02:36:04 -08003381 return tty;
3382}
Heiko Carstensa311f742006-12-13 00:33:41 -08003383EXPORT_SYMBOL_GPL(get_current_tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Alan Coxd81ed102008-10-13 10:41:42 +01003385void tty_default_fops(struct file_operations *fops)
3386{
3387 *fops = tty_fops;
3388}
3389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390/*
3391 * Initialize the console device. This is called *early*, so
3392 * we can't necessarily depend on lots of kernel help here.
3393 * Just do some early initializations, and do the complex setup
3394 * later.
3395 */
3396void __init console_init(void)
3397{
3398 initcall_t *call;
3399
3400 /* Setup the default TTY line discipline. */
Alan Cox01e1abb2008-07-22 11:16:55 +01003401 tty_ldisc_begin();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
3403 /*
Alan Cox37bdfb02008-02-08 04:18:47 -08003404 * set up the console device so that later boot sequences can
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 * inform about problems etc..
3406 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 call = __con_initcall_start;
3408 while (call < __con_initcall_end) {
3409 (*call)();
3410 call++;
3411 }
3412}
3413
Al Viro2c9ede52011-07-23 20:24:48 -04003414static char *tty_devnode(struct device *dev, umode_t *mode)
Kay Sieverse454cea2009-09-18 23:01:12 +02003415{
3416 if (!mode)
3417 return NULL;
3418 if (dev->devt == MKDEV(TTYAUX_MAJOR, 0) ||
3419 dev->devt == MKDEV(TTYAUX_MAJOR, 2))
3420 *mode = 0666;
3421 return NULL;
3422}
3423
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424static int __init tty_class_init(void)
3425{
gregkh@suse.de7fe845d2005-03-15 14:23:15 -08003426 tty_class = class_create(THIS_MODULE, "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 if (IS_ERR(tty_class))
3428 return PTR_ERR(tty_class);
Kay Sieverse454cea2009-09-18 23:01:12 +02003429 tty_class->devnode = tty_devnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 return 0;
3431}
3432
3433postcore_initcall(tty_class_init);
3434
3435/* 3/2004 jmc: why do these devices exist? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436static struct cdev tty_cdev, console_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Kay Sieversfbc92a32010-12-01 18:51:05 +01003438static ssize_t show_cons_active(struct device *dev,
3439 struct device_attribute *attr, char *buf)
3440{
3441 struct console *cs[16];
3442 int i = 0;
3443 struct console *c;
3444 ssize_t count = 0;
3445
Torben Hohnac751ef2011-01-25 15:07:35 -08003446 console_lock();
Kay Sieversa2a6a822011-01-09 16:39:14 +01003447 for_each_console(c) {
Kay Sieversfbc92a32010-12-01 18:51:05 +01003448 if (!c->device)
3449 continue;
3450 if (!c->write)
3451 continue;
3452 if ((c->flags & CON_ENABLED) == 0)
3453 continue;
3454 cs[i++] = c;
3455 if (i >= ARRAY_SIZE(cs))
3456 break;
3457 }
3458 while (i--)
3459 count += sprintf(buf + count, "%s%d%c",
3460 cs[i]->name, cs[i]->index, i ? ' ':'\n');
Torben Hohnac751ef2011-01-25 15:07:35 -08003461 console_unlock();
Kay Sieversfbc92a32010-12-01 18:51:05 +01003462
3463 return count;
3464}
3465static DEVICE_ATTR(active, S_IRUGO, show_cons_active, NULL);
3466
3467static struct device *consdev;
3468
3469void console_sysfs_notify(void)
3470{
3471 if (consdev)
3472 sysfs_notify(&consdev->kobj, NULL, "active");
3473}
3474
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475/*
3476 * Ok, now we can initialize the rest of the tty devices and can count
3477 * on memory allocations, interrupts etc..
3478 */
David Howells31d1d482010-08-06 16:34:43 +01003479int __init tty_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480{
3481 cdev_init(&tty_cdev, &tty_fops);
3482 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
3483 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
3484 panic("Couldn't register /dev/tty driver\n");
Kay Sieversfbc92a32010-12-01 18:51:05 +01003485 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486
3487 cdev_init(&console_cdev, &console_fops);
3488 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
3489 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
3490 panic("Couldn't register /dev/console driver\n");
Kay Sieversfbc92a32010-12-01 18:51:05 +01003491 consdev = device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL,
Greg Kroah-Hartman47aa5792008-05-21 12:52:33 -07003492 "console");
Kay Sieversfbc92a32010-12-01 18:51:05 +01003493 if (IS_ERR(consdev))
3494 consdev = NULL;
3495 else
Kay Sieversa2a6a822011-01-09 16:39:14 +01003496 WARN_ON(device_create_file(consdev, &dev_attr_active) < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498#ifdef CONFIG_VT
Alan Coxd81ed102008-10-13 10:41:42 +01003499 vty_init(&console_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500#endif
3501 return 0;
3502}
David Howells31d1d482010-08-06 16:34:43 +01003503