| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  *  Copyright (C) 1991, 1992  Linus Torvalds | 
 | 3 |  */ | 
 | 4 |  | 
 | 5 | /* | 
 | 6 |  * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles | 
 | 7 |  * or rs-channels. It also implements echoing, cooked mode etc. | 
 | 8 |  * | 
 | 9 |  * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0. | 
 | 10 |  * | 
 | 11 |  * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the | 
 | 12 |  * tty_struct and tty_queue structures.  Previously there was an array | 
 | 13 |  * of 256 tty_struct's which was statically allocated, and the | 
 | 14 |  * tty_queue structures were allocated at boot time.  Both are now | 
 | 15 |  * dynamically allocated only when the tty is open. | 
 | 16 |  * | 
 | 17 |  * Also restructured routines so that there is more of a separation | 
 | 18 |  * between the high-level tty routines (tty_io.c and tty_ioctl.c) and | 
 | 19 |  * the low-level tty routines (serial.c, pty.c, console.c).  This | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 20 |  * makes for cleaner and more compact code.  -TYT, 9/17/92 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 |  * | 
 | 22 |  * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines | 
 | 23 |  * which can be dynamically activated and de-activated by the line | 
 | 24 |  * discipline handling modules (like SLIP). | 
 | 25 |  * | 
 | 26 |  * NOTE: pay no attention to the line discipline code (yet); its | 
 | 27 |  * interface is still subject to change in this version... | 
 | 28 |  * -- TYT, 1/31/92 | 
 | 29 |  * | 
 | 30 |  * Added functionality to the OPOST tty handling.  No delays, but all | 
 | 31 |  * other bits should be there. | 
 | 32 |  *	-- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993. | 
 | 33 |  * | 
 | 34 |  * Rewrote canonical mode and added more termios flags. | 
 | 35 |  * 	-- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94 | 
 | 36 |  * | 
 | 37 |  * Reorganized FASYNC support so mouse code can share it. | 
 | 38 |  *	-- ctm@ardi.com, 9Sep95 | 
 | 39 |  * | 
 | 40 |  * New TIOCLINUX variants added. | 
 | 41 |  *	-- mj@k332.feld.cvut.cz, 19-Nov-95 | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 42 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 |  * Restrict vt switching via ioctl() | 
 | 44 |  *      -- grif@cs.ucr.edu, 5-Dec-95 | 
 | 45 |  * | 
 | 46 |  * Move console and virtual terminal code to more appropriate files, | 
 | 47 |  * implement CONFIG_VT and generalize console device interface. | 
 | 48 |  *	-- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97 | 
 | 49 |  * | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 50 |  * Rewrote tty_init_dev and tty_release_dev to eliminate races. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 |  *	-- Bill Hawes <whawes@star.net>, June 97 | 
 | 52 |  * | 
 | 53 |  * Added devfs support. | 
 | 54 |  *      -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998 | 
 | 55 |  * | 
 | 56 |  * Added support for a Unix98-style ptmx device. | 
 | 57 |  *      -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998 | 
 | 58 |  * | 
 | 59 |  * Reduced memory usage for older ARM systems | 
 | 60 |  *      -- Russell King <rmk@arm.linux.org.uk> | 
 | 61 |  * | 
 | 62 |  * Move do_SAK() into process context.  Less stack use in devfs functions. | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 63 |  * alloc_tty_struct() always uses kmalloc() | 
 | 64 |  *			 -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  */ | 
 | 66 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #include <linux/types.h> | 
 | 68 | #include <linux/major.h> | 
 | 69 | #include <linux/errno.h> | 
 | 70 | #include <linux/signal.h> | 
 | 71 | #include <linux/fcntl.h> | 
 | 72 | #include <linux/sched.h> | 
 | 73 | #include <linux/interrupt.h> | 
 | 74 | #include <linux/tty.h> | 
 | 75 | #include <linux/tty_driver.h> | 
 | 76 | #include <linux/tty_flip.h> | 
 | 77 | #include <linux/devpts_fs.h> | 
 | 78 | #include <linux/file.h> | 
| Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 79 | #include <linux/fdtable.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | #include <linux/console.h> | 
 | 81 | #include <linux/timer.h> | 
 | 82 | #include <linux/ctype.h> | 
 | 83 | #include <linux/kd.h> | 
 | 84 | #include <linux/mm.h> | 
 | 85 | #include <linux/string.h> | 
 | 86 | #include <linux/slab.h> | 
 | 87 | #include <linux/poll.h> | 
 | 88 | #include <linux/proc_fs.h> | 
 | 89 | #include <linux/init.h> | 
 | 90 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | #include <linux/device.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #include <linux/wait.h> | 
 | 93 | #include <linux/bitops.h> | 
| Domen Puncer | b20f3ae | 2005-06-25 14:58:42 -0700 | [diff] [blame] | 94 | #include <linux/delay.h> | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 95 | #include <linux/seq_file.h> | 
| Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 96 | #include <linux/serial.h> | 
| Manuel Zerpies | 5a3c6b2 | 2011-06-16 14:07:22 +0200 | [diff] [blame] | 97 | #include <linux/ratelimit.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 |  | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 99 | #include <linux/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 |  | 
 | 101 | #include <linux/kbd_kern.h> | 
 | 102 | #include <linux/vt_kern.h> | 
 | 103 | #include <linux/selection.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 |  | 
 | 105 | #include <linux/kmod.h> | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 106 | #include <linux/nsproxy.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 |  | 
 | 108 | #undef TTY_DEBUG_HANGUP | 
 | 109 |  | 
 | 110 | #define TTY_PARANOIA_CHECK 1 | 
 | 111 | #define CHECK_TTY_COUNT 1 | 
 | 112 |  | 
| Alan Cox | edc6afc | 2006-12-08 02:38:44 -0800 | [diff] [blame] | 113 | struct ktermios tty_std_termios = {	/* for the benefit of tty drivers  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | 	.c_iflag = ICRNL | IXON, | 
 | 115 | 	.c_oflag = OPOST | ONLCR, | 
 | 116 | 	.c_cflag = B38400 | CS8 | CREAD | HUPCL, | 
 | 117 | 	.c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK | | 
 | 118 | 		   ECHOCTL | ECHOKE | IEXTEN, | 
| Alan Cox | edc6afc | 2006-12-08 02:38:44 -0800 | [diff] [blame] | 119 | 	.c_cc = INIT_C_CC, | 
 | 120 | 	.c_ispeed = 38400, | 
 | 121 | 	.c_ospeed = 38400 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | }; | 
 | 123 |  | 
 | 124 | EXPORT_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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 129 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | LIST_HEAD(tty_drivers);			/* linked list of tty drivers */ | 
 | 131 |  | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 132 | /* Mutex to protect creating and releasing a tty. This is shared with | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 |    vt.c for deeply disgusting hack reasons */ | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 134 | DEFINE_MUTEX(tty_mutex); | 
| Alan Cox | de2a84f | 2006-09-29 02:00:57 -0700 | [diff] [blame] | 135 | EXPORT_SYMBOL(tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 |  | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 137 | /* Spinlock to protect the tty->tty_files list */ | 
 | 138 | DEFINE_SPINLOCK(tty_files_lock); | 
 | 139 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *); | 
 | 141 | static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 142 | ssize_t redirected_tty_write(struct file *, const char __user *, | 
 | 143 | 							size_t, loff_t *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | static unsigned int tty_poll(struct file *, poll_table *); | 
 | 145 | static int tty_open(struct inode *, struct file *); | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 146 | long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg); | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 147 | #ifdef CONFIG_COMPAT | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 148 | static long tty_compat_ioctl(struct file *file, unsigned int cmd, | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 149 | 				unsigned long arg); | 
 | 150 | #else | 
 | 151 | #define tty_compat_ioctl NULL | 
 | 152 | #endif | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 153 | static int __tty_fasync(int fd, struct file *filp, int on); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 154 | static int tty_fasync(int fd, struct file *filp, int on); | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 155 | static void release_tty(struct tty_struct *tty, int idx); | 
| Eric W. Biederman | 2a65f1d | 2007-05-08 00:26:53 -0700 | [diff] [blame] | 156 | static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty); | 
| Eric W. Biederman | 98a27ba | 2007-05-08 00:26:56 -0700 | [diff] [blame] | 157 | static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 159 | /** | 
 | 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 Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 166 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 168 | struct tty_struct *alloc_tty_struct(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { | 
| Alan Cox | 1266b1e | 2006-09-29 02:00:40 -0700 | [diff] [blame] | 170 | 	return kzalloc(sizeof(struct tty_struct), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } | 
 | 172 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 173 | /** | 
 | 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 Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 182 | void free_tty_struct(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { | 
| Dan Carpenter | dc6802a | 2012-07-24 12:52:04 +0100 | [diff] [blame] | 184 | 	if (!tty) | 
 | 185 | 		return; | 
| Dmitry Eremin-Solenikov | 30004ac | 2010-08-09 18:22:49 +0400 | [diff] [blame] | 186 | 	if (tty->dev) | 
 | 187 | 		put_device(tty->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | 	kfree(tty->write_buf); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 189 | 	tty->magic = 0xDEADDEAD; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | 	kfree(tty); | 
 | 191 | } | 
 | 192 |  | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 193 | static inline struct tty_struct *file_tty(struct file *file) | 
 | 194 | { | 
 | 195 | 	return ((struct tty_file_private *)file->private_data)->tty; | 
 | 196 | } | 
 | 197 |  | 
| Jiri Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 198 | int tty_alloc_file(struct file *file) | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 199 | { | 
 | 200 | 	struct tty_file_private *priv; | 
 | 201 |  | 
| Pekka Enberg | f573bd1 | 2010-08-24 07:48:34 +0300 | [diff] [blame] | 202 | 	priv = kmalloc(sizeof(*priv), GFP_KERNEL); | 
 | 203 | 	if (!priv) | 
 | 204 | 		return -ENOMEM; | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 205 |  | 
| Jiri Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 206 | 	file->private_data = priv; | 
 | 207 |  | 
 | 208 | 	return 0; | 
 | 209 | } | 
 | 210 |  | 
 | 211 | /* Associate a new file with the tty structure */ | 
 | 212 | void tty_add_file(struct tty_struct *tty, struct file *file) | 
 | 213 | { | 
 | 214 | 	struct tty_file_private *priv = file->private_data; | 
 | 215 |  | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 216 | 	priv->tty = tty; | 
 | 217 | 	priv->file = file; | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 218 |  | 
 | 219 | 	spin_lock(&tty_files_lock); | 
 | 220 | 	list_add(&priv->list, &tty->tty_files); | 
 | 221 | 	spin_unlock(&tty_files_lock); | 
| Jiri Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 222 | } | 
| Pekka Enberg | f573bd1 | 2010-08-24 07:48:34 +0300 | [diff] [blame] | 223 |  | 
| Jiri Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 224 | /** | 
 | 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 |  */ | 
 | 230 | void 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 Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 236 | } | 
 | 237 |  | 
 | 238 | /* Delete file from its tty */ | 
| Josh Triplett | 2520e27 | 2012-11-18 21:27:47 -0800 | [diff] [blame] | 239 | static void tty_del_file(struct file *file) | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 240 | { | 
 | 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 Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 246 | 	tty_free_file(file); | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 247 | } | 
 | 248 |  | 
 | 249 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | #define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base) | 
 | 251 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 252 | /** | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | char *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 |  | 
 | 272 | EXPORT_SYMBOL(tty_name); | 
 | 273 |  | 
| Andrew Morton | d769a66 | 2005-05-05 16:15:50 -0700 | [diff] [blame] | 274 | int tty_paranoia_check(struct tty_struct *tty, struct inode *inode, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | 			      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 |  | 
 | 294 | static 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 299 |  | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 300 | 	spin_lock(&tty_files_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | 	list_for_each(p, &tty->tty_files) { | 
 | 302 | 		count++; | 
 | 303 | 	} | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 304 | 	spin_unlock(&tty_files_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | 	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 Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 314 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | #endif | 
 | 316 | 	return 0; | 
 | 317 | } | 
 | 318 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 319 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 320 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 329 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | static 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 Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 339 | 		return tty_driver_kref_get(p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | 	} | 
 | 341 | 	return NULL; | 
 | 342 | } | 
 | 343 |  | 
| Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 344 | #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 |  */ | 
 | 355 | struct tty_driver *tty_find_polling_driver(char *name, int *line) | 
 | 356 | { | 
 | 357 | 	struct tty_driver *p, *res = NULL; | 
 | 358 | 	int tty_line = 0; | 
| Jason Wessel | 0dca0fd | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 359 | 	int len; | 
| Alan Cox | 5f0878a | 2009-06-11 12:46:41 +0100 | [diff] [blame] | 360 | 	char *str, *stp; | 
| Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 361 |  | 
| Jason Wessel | 0dca0fd | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 362 | 	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 Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 371 | 	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 Wessel | 0dca0fd | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 374 | 		if (strncmp(name, p->name, len) != 0) | 
 | 375 | 			continue; | 
| Alan Cox | 5f0878a | 2009-06-11 12:46:41 +0100 | [diff] [blame] | 376 | 		stp = str; | 
 | 377 | 		if (*stp == ',') | 
 | 378 | 			stp++; | 
 | 379 | 		if (*stp == '\0') | 
 | 380 | 			stp = NULL; | 
| Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 381 |  | 
| Nathael Pajani | 6eb68d6 | 2010-09-02 16:06:16 +0200 | [diff] [blame] | 382 | 		if (tty_line >= 0 && tty_line < p->num && p->ops && | 
| Alan Cox | 5f0878a | 2009-06-11 12:46:41 +0100 | [diff] [blame] | 383 | 		    p->ops->poll_init && !p->ops->poll_init(p, tty_line, stp)) { | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 384 | 			res = tty_driver_kref_get(p); | 
| Jason Wessel | f2d937f | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 385 | 			*line = tty_line; | 
 | 386 | 			break; | 
 | 387 | 		} | 
 | 388 | 	} | 
 | 389 | 	mutex_unlock(&tty_mutex); | 
 | 390 |  | 
 | 391 | 	return res; | 
 | 392 | } | 
 | 393 | EXPORT_SYMBOL_GPL(tty_find_polling_driver); | 
 | 394 | #endif | 
 | 395 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 396 | /** | 
 | 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 Cox | 978e595 | 2008-04-30 00:53:59 -0700 | [diff] [blame] | 404 |  *	Locking: ctrl_lock | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 406 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 407 | int tty_check_change(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 409 | 	unsigned long flags; | 
 | 410 | 	int ret = 0; | 
 | 411 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | 	if (current->signal->tty != tty) | 
 | 413 | 		return 0; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 414 |  | 
 | 415 | 	spin_lock_irqsave(&tty->ctrl_lock, flags); | 
 | 416 |  | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 417 | 	if (!tty->pgrp) { | 
 | 418 | 		printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n"); | 
| Andrew Morton | 9ffee4c | 2008-05-14 16:05:58 -0700 | [diff] [blame] | 419 | 		goto out_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | 	} | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 421 | 	if (task_pgrp(current) == tty->pgrp) | 
| Andrew Morton | 9ffee4c | 2008-05-14 16:05:58 -0700 | [diff] [blame] | 422 | 		goto out_unlock; | 
 | 423 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | 	if (is_ignored(SIGTTOU)) | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 425 | 		goto out; | 
 | 426 | 	if (is_current_pgrp_orphaned()) { | 
 | 427 | 		ret = -EIO; | 
 | 428 | 		goto out; | 
 | 429 | 	} | 
| Oleg Nesterov | 040b636 | 2007-06-01 00:46:53 -0700 | [diff] [blame] | 430 | 	kill_pgrp(task_pgrp(current), SIGTTOU, 1); | 
 | 431 | 	set_thread_flag(TIF_SIGPENDING); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 432 | 	ret = -ERESTARTSYS; | 
 | 433 | out: | 
| Andrew Morton | 9ffee4c | 2008-05-14 16:05:58 -0700 | [diff] [blame] | 434 | 	return ret; | 
 | 435 | out_unlock: | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 436 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
 | 437 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } | 
 | 439 |  | 
 | 440 | EXPORT_SYMBOL(tty_check_change); | 
 | 441 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 442 | static ssize_t hung_up_tty_read(struct file *file, char __user *buf, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | 				size_t count, loff_t *ppos) | 
 | 444 | { | 
 | 445 | 	return 0; | 
 | 446 | } | 
 | 447 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 448 | static ssize_t hung_up_tty_write(struct file *file, const char __user *buf, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | 				 size_t count, loff_t *ppos) | 
 | 450 | { | 
 | 451 | 	return -EIO; | 
 | 452 | } | 
 | 453 |  | 
 | 454 | /* No kernel lock held - none needed ;) */ | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 455 | static unsigned int hung_up_tty_poll(struct file *filp, poll_table *wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | { | 
 | 457 | 	return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM; | 
 | 458 | } | 
 | 459 |  | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 460 | static long hung_up_tty_ioctl(struct file *file, unsigned int cmd, | 
 | 461 | 		unsigned long arg) | 
| Paul Fulghum | 38ad2ed | 2007-06-16 10:15:55 -0700 | [diff] [blame] | 462 | { | 
 | 463 | 	return cmd == TIOCSPGRP ? -ENOTTY : -EIO; | 
 | 464 | } | 
 | 465 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 466 | static long hung_up_tty_compat_ioctl(struct file *file, | 
| Paul Fulghum | 38ad2ed | 2007-06-16 10:15:55 -0700 | [diff] [blame] | 467 | 				     unsigned int cmd, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { | 
 | 469 | 	return cmd == TIOCSPGRP ? -ENOTTY : -EIO; | 
 | 470 | } | 
 | 471 |  | 
| Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 472 | static const struct file_operations tty_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | 	.llseek		= no_llseek, | 
 | 474 | 	.read		= tty_read, | 
 | 475 | 	.write		= tty_write, | 
 | 476 | 	.poll		= tty_poll, | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 477 | 	.unlocked_ioctl	= tty_ioctl, | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 478 | 	.compat_ioctl	= tty_compat_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | 	.open		= tty_open, | 
 | 480 | 	.release	= tty_release, | 
 | 481 | 	.fasync		= tty_fasync, | 
 | 482 | }; | 
 | 483 |  | 
| Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 484 | static const struct file_operations console_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | 	.llseek		= no_llseek, | 
 | 486 | 	.read		= tty_read, | 
 | 487 | 	.write		= redirected_tty_write, | 
 | 488 | 	.poll		= tty_poll, | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 489 | 	.unlocked_ioctl	= tty_ioctl, | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 490 | 	.compat_ioctl	= tty_compat_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | 	.open		= tty_open, | 
 | 492 | 	.release	= tty_release, | 
 | 493 | 	.fasync		= tty_fasync, | 
 | 494 | }; | 
 | 495 |  | 
| Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 496 | static const struct file_operations hung_up_tty_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | 	.llseek		= no_llseek, | 
 | 498 | 	.read		= hung_up_tty_read, | 
 | 499 | 	.write		= hung_up_tty_write, | 
 | 500 | 	.poll		= hung_up_tty_poll, | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 501 | 	.unlocked_ioctl	= hung_up_tty_ioctl, | 
| Paul Fulghum | 38ad2ed | 2007-06-16 10:15:55 -0700 | [diff] [blame] | 502 | 	.compat_ioctl	= hung_up_tty_compat_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | 	.release	= tty_release, | 
 | 504 | }; | 
 | 505 |  | 
 | 506 | static DEFINE_SPINLOCK(redirect_lock); | 
 | 507 | static 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 517 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | void tty_wakeup(struct tty_struct *tty) | 
 | 519 | { | 
 | 520 | 	struct tty_ldisc *ld; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 521 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | 	if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) { | 
 | 523 | 		ld = tty_ldisc_ref(tty); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 524 | 		if (ld) { | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 525 | 			if (ld->ops->write_wakeup) | 
 | 526 | 				ld->ops->write_wakeup(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | 			tty_ldisc_deref(ld); | 
 | 528 | 		} | 
 | 529 | 	} | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 530 | 	wake_up_interruptible_poll(&tty->write_wait, POLLOUT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } | 
 | 532 |  | 
 | 533 | EXPORT_SYMBOL_GPL(tty_wakeup); | 
 | 534 |  | 
 | 535 | /** | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 536 |  *	__tty_hangup		-	actual handler for hangup events | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 537 |  *	@work: tty device | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 538 |  * | 
| Kevin Cernekee | ef4f527 | 2012-12-26 20:43:41 -0800 | [diff] [blame] | 539 |  *	This can be called by a "kworker" kernel thread.  That is process | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 540 |  *	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 Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 549 |  *		BTM | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 550 |  *		  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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 |  */ | 
| Josh Triplett | 2520e27 | 2012-11-18 21:27:47 -0800 | [diff] [blame] | 557 | static void __tty_hangup(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | { | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 559 | 	struct file *cons_filp = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | 	struct file *filp, *f = NULL; | 
 | 561 | 	struct task_struct *p; | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 562 | 	struct tty_file_private *priv; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | 	int    closecount = 0, n; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 564 | 	unsigned long flags; | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 565 | 	int refs = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 |  | 
 | 567 | 	if (!tty) | 
 | 568 | 		return; | 
 | 569 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 |  | 
 | 571 | 	spin_lock(&redirect_lock); | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 572 | 	if (redirect && file_tty(redirect) == tty) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | 		f = redirect; | 
 | 574 | 		redirect = NULL; | 
 | 575 | 	} | 
 | 576 | 	spin_unlock(&redirect_lock); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 577 |  | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 578 | 	tty_lock(tty); | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 579 |  | 
| Jiri Slaby | acfa747 | 2010-11-29 10:16:54 +0100 | [diff] [blame] | 580 | 	/* some functions below drop BTM, so we need this bit */ | 
 | 581 | 	set_bit(TTY_HUPPING, &tty->flags); | 
 | 582 |  | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 583 | 	/* 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 Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 586 | 	check_tty_count(tty, "tty_hangup"); | 
| Alan Cox | 36ba782 | 2009-11-30 13:18:51 +0000 | [diff] [blame] | 587 |  | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 588 | 	spin_lock(&tty_files_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | 	/* This breaks for file handles being sent over AF_UNIX sockets ? */ | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 590 | 	list_for_each_entry(priv, &tty->tty_files, list) { | 
 | 591 | 		filp = priv->file; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | 		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 Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 597 | 		__tty_fasync(-1, filp, 0);	/* can't block */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | 		filp->f_op = &hung_up_tty_fops; | 
 | 599 | 	} | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 600 | 	spin_unlock(&tty_files_lock); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 601 |  | 
| Jiri Slaby | acfa747 | 2010-11-29 10:16:54 +0100 | [diff] [blame] | 602 | 	/* | 
 | 603 | 	 * it drops BTM and thus races with reopen | 
 | 604 | 	 * we protect the race by TTY_HUPPING | 
 | 605 | 	 */ | 
| Alan Cox | c65c9bc | 2009-06-11 12:50:12 +0100 | [diff] [blame] | 606 | 	tty_ldisc_hangup(tty); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 607 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | 	read_lock(&tasklist_lock); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 609 | 	if (tty->session) { | 
 | 610 | 		do_each_pid_task(tty->session, PIDTYPE_SID, p) { | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 611 | 			spin_lock_irq(&p->sighand->siglock); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 612 | 			if (p->signal->tty == tty) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | 				p->signal->tty = NULL; | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 614 | 				/* We defer the dereferences outside fo | 
 | 615 | 				   the tasklist lock */ | 
 | 616 | 				refs++; | 
 | 617 | 			} | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 618 | 			if (!p->signal->leader) { | 
 | 619 | 				spin_unlock_irq(&p->sighand->siglock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | 				continue; | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 621 | 			} | 
 | 622 | 			__group_send_sig_info(SIGHUP, SEND_SIG_PRIV, p); | 
 | 623 | 			__group_send_sig_info(SIGCONT, SEND_SIG_PRIV, p); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 624 | 			put_pid(p->signal->tty_old_pgrp);  /* A noop */ | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 625 | 			spin_lock_irqsave(&tty->ctrl_lock, flags); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 626 | 			if (tty->pgrp) | 
 | 627 | 				p->signal->tty_old_pgrp = get_pid(tty->pgrp); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 628 | 			spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 629 | 			spin_unlock_irq(&p->sighand->siglock); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 630 | 		} while_each_pid_task(tty->session, PIDTYPE_SID, p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | 	} | 
 | 632 | 	read_unlock(&tasklist_lock); | 
 | 633 |  | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 634 | 	spin_lock_irqsave(&tty->ctrl_lock, flags); | 
| Alan Cox | c65c9bc | 2009-06-11 12:50:12 +0100 | [diff] [blame] | 635 | 	clear_bit(TTY_THROTTLED, &tty->flags); | 
 | 636 | 	clear_bit(TTY_PUSH, &tty->flags); | 
 | 637 | 	clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); | 
| Eric W. Biederman | d9c1e9a | 2007-03-18 12:45:44 -0600 | [diff] [blame] | 638 | 	put_pid(tty->session); | 
 | 639 | 	put_pid(tty->pgrp); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 640 | 	tty->session = NULL; | 
 | 641 | 	tty->pgrp = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | 	tty->ctrl_status = 0; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 643 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
 | 644 |  | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 645 | 	/* Account for the p->signal references we killed */ | 
 | 646 | 	while (refs--) | 
 | 647 | 		tty_kref_put(tty); | 
 | 648 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | 	/* | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 650 | 	 * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | 	 */ | 
 | 655 | 	if (cons_filp) { | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 656 | 		if (tty->ops->close) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | 			for (n = 0; n < closecount; n++) | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 658 | 				tty->ops->close(tty, cons_filp); | 
 | 659 | 	} else if (tty->ops->hangup) | 
 | 660 | 		(tty->ops->hangup)(tty); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 661 | 	/* | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | 	set_bit(TTY_HUPPED, &tty->flags); | 
| Jiri Slaby | acfa747 | 2010-11-29 10:16:54 +0100 | [diff] [blame] | 668 | 	clear_bit(TTY_HUPPING, &tty->flags); | 
| Alan Cox | c65c9bc | 2009-06-11 12:50:12 +0100 | [diff] [blame] | 669 | 	tty_ldisc_enable(tty); | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 670 |  | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 671 | 	tty_unlock(tty); | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 672 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | 	if (f) | 
 | 674 | 		fput(f); | 
 | 675 | } | 
 | 676 |  | 
| Arnd Bergmann | ddcd9fb | 2010-06-01 22:53:08 +0200 | [diff] [blame] | 677 | static 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 Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 682 | 	__tty_hangup(tty); | 
| Arnd Bergmann | ddcd9fb | 2010-06-01 22:53:08 +0200 | [diff] [blame] | 683 | } | 
 | 684 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 685 | /** | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 693 | void tty_hangup(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | { | 
 | 695 | #ifdef TTY_DEBUG_HANGUP | 
 | 696 | 	char	buf[64]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | 	printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf)); | 
 | 698 | #endif | 
 | 699 | 	schedule_work(&tty->hangup_work); | 
 | 700 | } | 
 | 701 |  | 
 | 702 | EXPORT_SYMBOL(tty_hangup); | 
 | 703 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 704 | /** | 
 | 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. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 710 |  *	is complete. That guarantee is necessary for security reasons. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 711 |  */ | 
 | 712 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 713 | void tty_vhangup(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { | 
 | 715 | #ifdef TTY_DEBUG_HANGUP | 
 | 716 | 	char	buf[64]; | 
 | 717 |  | 
 | 718 | 	printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf)); | 
 | 719 | #endif | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 720 | 	__tty_hangup(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 722 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | EXPORT_SYMBOL(tty_vhangup); | 
 | 724 |  | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 725 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 726 | /** | 
| Alan Cox | 2cb5998 | 2008-10-13 10:40:30 +0100 | [diff] [blame] | 727 |  *	tty_vhangup_self	-	process vhangup for own ctty | 
 | 728 |  * | 
 | 729 |  *	Perform a vhangup on the current controlling tty | 
 | 730 |  */ | 
 | 731 |  | 
 | 732 | void tty_vhangup_self(void) | 
 | 733 | { | 
 | 734 | 	struct tty_struct *tty; | 
 | 735 |  | 
| Alan Cox | 2cb5998 | 2008-10-13 10:40:30 +0100 | [diff] [blame] | 736 | 	tty = get_current_tty(); | 
 | 737 | 	if (tty) { | 
 | 738 | 		tty_vhangup(tty); | 
 | 739 | 		tty_kref_put(tty); | 
 | 740 | 	} | 
| Alan Cox | 2cb5998 | 2008-10-13 10:40:30 +0100 | [diff] [blame] | 741 | } | 
 | 742 |  | 
 | 743 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 744 |  *	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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 751 | int tty_hung_up_p(struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { | 
 | 753 | 	return (filp->f_op == &hung_up_tty_fops); | 
 | 754 | } | 
 | 755 |  | 
 | 756 | EXPORT_SYMBOL(tty_hung_up_p); | 
 | 757 |  | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 758 | static void session_clear_tty(struct pid *session) | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 759 | { | 
 | 760 | 	struct task_struct *p; | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 761 | 	do_each_pid_task(session, PIDTYPE_SID, p) { | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 762 | 		proc_clear_tty(p); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 763 | 	} while_each_pid_task(session, PIDTYPE_SID, p); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 764 | } | 
 | 765 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 766 | /** | 
 | 767 |  *	disassociate_ctty	-	disconnect controlling tty | 
 | 768 |  *	@on_exit: true if exiting so need to "hang up" the session | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 |  * | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 770 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 |  * 	(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 Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 779 |  *	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 Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 782 |  *	Locking: | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 783 |  *		BTM is taken for hysterical raisins, and held when | 
 | 784 |  *		  called from no_tty(). | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 785 |  *		  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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 790 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | void disassociate_ctty(int on_exit) | 
 | 792 | { | 
 | 793 | 	struct tty_struct *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 |  | 
| Alan Cox | 5ec93d1 | 2009-11-30 13:18:45 +0000 | [diff] [blame] | 795 | 	if (!current->signal->leader) | 
 | 796 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 |  | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 798 | 	tty = get_current_tty(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | 	if (tty) { | 
| Jiri Slaby | 1411dc4 | 2011-11-09 21:33:18 +0100 | [diff] [blame] | 800 | 		struct pid *tty_pgrp = get_pid(tty->pgrp); | 
| Arnd Bergmann | ddcd9fb | 2010-06-01 22:53:08 +0200 | [diff] [blame] | 801 | 		if (on_exit) { | 
| Arnd Bergmann | ddcd9fb | 2010-06-01 22:53:08 +0200 | [diff] [blame] | 802 | 			if (tty->driver->type != TTY_DRIVER_TYPE_PTY) | 
| Arnd Bergmann | 11dbf20 | 2010-06-18 14:58:07 +0200 | [diff] [blame] | 803 | 				tty_vhangup(tty); | 
| Arnd Bergmann | ddcd9fb | 2010-06-01 22:53:08 +0200 | [diff] [blame] | 804 | 		} | 
| Alan Cox | 452a00d | 2008-10-13 10:39:13 +0100 | [diff] [blame] | 805 | 		tty_kref_put(tty); | 
| Jiri Slaby | 1411dc4 | 2011-11-09 21:33:18 +0100 | [diff] [blame] | 806 | 		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. Biederman | 680a967 | 2007-02-12 00:52:52 -0800 | [diff] [blame] | 812 | 	} else if (on_exit) { | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 813 | 		struct pid *old_pgrp; | 
| Eric W. Biederman | 680a967 | 2007-02-12 00:52:52 -0800 | [diff] [blame] | 814 | 		spin_lock_irq(¤t->sighand->siglock); | 
 | 815 | 		old_pgrp = current->signal->tty_old_pgrp; | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 816 | 		current->signal->tty_old_pgrp = NULL; | 
| Eric W. Biederman | 680a967 | 2007-02-12 00:52:52 -0800 | [diff] [blame] | 817 | 		spin_unlock_irq(¤t->sighand->siglock); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 818 | 		if (old_pgrp) { | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 819 | 			kill_pgrp(old_pgrp, SIGHUP, on_exit); | 
 | 820 | 			kill_pgrp(old_pgrp, SIGCONT, on_exit); | 
 | 821 | 			put_pid(old_pgrp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | 		return; | 
 | 824 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 |  | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 826 | 	spin_lock_irq(¤t->sighand->siglock); | 
| Eric W. Biederman | 2a65f1d | 2007-05-08 00:26:53 -0700 | [diff] [blame] | 827 | 	put_pid(current->signal->tty_old_pgrp); | 
| Randy Dunlap | 23cac8d | 2007-02-20 13:58:05 -0800 | [diff] [blame] | 828 | 	current->signal->tty_old_pgrp = NULL; | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 829 | 	spin_unlock_irq(¤t->sighand->siglock); | 
 | 830 |  | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 831 | 	tty = get_current_tty(); | 
 | 832 | 	if (tty) { | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 833 | 		unsigned long flags; | 
 | 834 | 		spin_lock_irqsave(&tty->ctrl_lock, flags); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 835 | 		put_pid(tty->session); | 
 | 836 | 		put_pid(tty->pgrp); | 
 | 837 | 		tty->session = NULL; | 
 | 838 | 		tty->pgrp = NULL; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 839 | 		spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Alan Cox | 452a00d | 2008-10-13 10:39:13 +0100 | [diff] [blame] | 840 | 		tty_kref_put(tty); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 841 | 	} 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 |  | 
 | 848 | 	/* Now clear signal->tty under the lock */ | 
 | 849 | 	read_lock(&tasklist_lock); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 850 | 	session_clear_tty(task_session(current)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | 	read_unlock(&tasklist_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | } | 
 | 853 |  | 
| Eric W. Biederman | 98a27ba | 2007-05-08 00:26:56 -0700 | [diff] [blame] | 854 | /** | 
 | 855 |  * | 
 | 856 |  *	no_tty	- Ensure the current process does not have a controlling tty | 
 | 857 |  */ | 
 | 858 | void no_tty(void) | 
 | 859 | { | 
| Alan Cox | 3af502b | 2012-05-03 22:21:53 +0100 | [diff] [blame] | 860 | 	/* 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. Biederman | 98a27ba | 2007-05-08 00:26:56 -0700 | [diff] [blame] | 863 | 	struct task_struct *tsk = current; | 
| Alan Cox | 5ec93d1 | 2009-11-30 13:18:45 +0000 | [diff] [blame] | 864 | 	disassociate_ctty(0); | 
| Eric W. Biederman | 98a27ba | 2007-05-08 00:26:56 -0700 | [diff] [blame] | 865 | 	proc_clear_tty(tsk); | 
 | 866 | } | 
 | 867 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 868 |  | 
 | 869 | /** | 
| Robert P. J. Day | beb7dd8 | 2007-05-09 07:14:03 +0200 | [diff] [blame] | 870 |  *	stop_tty	-	propagate flow control | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 871 |  *	@tty: tty to stop | 
 | 872 |  * | 
 | 873 |  *	Perform flow control to the driver. For PTY/TTY pairs we | 
| Robert P. J. Day | beb7dd8 | 2007-05-09 07:14:03 +0200 | [diff] [blame] | 874 |  *	must also propagate the TIOCKPKT status. May be called | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 875 |  *	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 Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 884 |  *		Uses the tty control lock internally | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 885 |  */ | 
 | 886 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | void stop_tty(struct tty_struct *tty) | 
 | 888 | { | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 889 | 	unsigned long flags; | 
 | 890 | 	spin_lock_irqsave(&tty->ctrl_lock, flags); | 
 | 891 | 	if (tty->stopped) { | 
 | 892 | 		spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | 		return; | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 894 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | 	tty->stopped = 1; | 
 | 896 | 	if (tty->link && tty->link->packet) { | 
 | 897 | 		tty->ctrl_status &= ~TIOCPKT_START; | 
 | 898 | 		tty->ctrl_status |= TIOCPKT_STOP; | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 899 | 		wake_up_interruptible_poll(&tty->link->read_wait, POLLIN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | 	} | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 901 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 902 | 	if (tty->ops->stop) | 
 | 903 | 		(tty->ops->stop)(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | } | 
 | 905 |  | 
 | 906 | EXPORT_SYMBOL(stop_tty); | 
 | 907 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 908 | /** | 
| Robert P. J. Day | beb7dd8 | 2007-05-09 07:14:03 +0200 | [diff] [blame] | 909 |  *	start_tty	-	propagate flow control | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 910 |  *	@tty: tty to start | 
 | 911 |  * | 
 | 912 |  *	Start a tty that has been stopped if at all possible. Perform | 
| Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 913 |  *	any necessary wakeups and propagate the TIOCPKT status. If this | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 914 |  *	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 Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 918 |  *		ctrl_lock | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 919 |  */ | 
 | 920 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | void start_tty(struct tty_struct *tty) | 
 | 922 | { | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 923 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | 		return; | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 928 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | 	tty->stopped = 0; | 
 | 930 | 	if (tty->link && tty->link->packet) { | 
 | 931 | 		tty->ctrl_status &= ~TIOCPKT_STOP; | 
 | 932 | 		tty->ctrl_status |= TIOCPKT_START; | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 933 | 		wake_up_interruptible_poll(&tty->link->read_wait, POLLIN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | 	} | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 935 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 936 | 	if (tty->ops->start) | 
 | 937 | 		(tty->ops->start)(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | 	/* If we have a running line discipline it may need kicking */ | 
 | 939 | 	tty_wakeup(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | } | 
 | 941 |  | 
 | 942 | EXPORT_SYMBOL(start_tty); | 
 | 943 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 944 | /** | 
 | 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 Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 955 |  *		Locks the line discipline internally while needed. Multiple | 
 | 956 |  *	read calls may be outstanding in parallel. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 957 |  */ | 
 | 958 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 959 | static ssize_t tty_read(struct file *file, char __user *buf, size_t count, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | 			loff_t *ppos) | 
 | 961 | { | 
 | 962 | 	int i; | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 963 | 	struct tty_struct *tty = file_tty(file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | 	struct tty_ldisc *ld; | 
 | 965 |  | 
| Al Viro | 6131ffa | 2013-02-27 16:59:05 -0500 | [diff] [blame] | 966 | 	if (tty_paranoia_check(tty, file_inode(file), "tty_read")) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | 		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 Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 974 | 	if (ld->ops->read) | 
 | 975 | 		i = (ld->ops->read)(tty, file, buf, count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | 	else | 
 | 977 | 		i = -EIO; | 
 | 978 | 	tty_ldisc_deref(ld); | 
| Jiri Slaby | b0de59b | 2013-02-15 15:25:05 +0100 | [diff] [blame] | 979 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | 	return i; | 
 | 981 | } | 
 | 982 |  | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 983 | void tty_write_unlock(struct tty_struct *tty) | 
| Jiri Slaby | 83c6757 | 2011-04-20 10:43:18 +0200 | [diff] [blame] | 984 | 	__releases(&tty->atomic_write_lock) | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 985 | { | 
 | 986 | 	mutex_unlock(&tty->atomic_write_lock); | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 987 | 	wake_up_interruptible_poll(&tty->write_wait, POLLOUT); | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 988 | } | 
 | 989 |  | 
 | 990 | int tty_write_lock(struct tty_struct *tty, int ndelay) | 
| Jiri Slaby | 83c6757 | 2011-04-20 10:43:18 +0200 | [diff] [blame] | 991 | 	__acquires(&tty->atomic_write_lock) | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 992 | { | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | /* | 
 | 1003 |  * Split writes up in sane blocksizes to avoid | 
 | 1004 |  * denial-of-service type attacks | 
 | 1005 |  */ | 
 | 1006 | static 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 Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 1013 | 	ssize_t ret, written = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | 	unsigned int chunk; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1015 |  | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 1016 | 	ret = tty_write_lock(tty, file->f_flags & O_NDELAY); | 
 | 1017 | 	if (ret < 0) | 
 | 1018 | 		return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 |  | 
 | 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 Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1032 | 	 * | 
 | 1033 | 	 * FIXME: This can probably go away now except that 64K chunks | 
 | 1034 | 	 * are too likely to fail unless switched to vmalloc... | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | 	 */ | 
 | 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 Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1042 | 	/* write_buf/write_cnt is protected by the atomic_write_lock mutex */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | 	if (tty->write_cnt < chunk) { | 
| Jason Wessel | 402fda9 | 2008-10-13 10:45:36 +0100 | [diff] [blame] | 1044 | 		unsigned char *buf_chunk; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 |  | 
 | 1046 | 		if (chunk < 1024) | 
 | 1047 | 			chunk = 1024; | 
 | 1048 |  | 
| Jason Wessel | 402fda9 | 2008-10-13 10:45:36 +0100 | [diff] [blame] | 1049 | 		buf_chunk = kmalloc(chunk, GFP_KERNEL); | 
 | 1050 | 		if (!buf_chunk) { | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 1051 | 			ret = -ENOMEM; | 
 | 1052 | 			goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | 		} | 
 | 1054 | 		kfree(tty->write_buf); | 
 | 1055 | 		tty->write_cnt = chunk; | 
| Jason Wessel | 402fda9 | 2008-10-13 10:45:36 +0100 | [diff] [blame] | 1056 | 		tty->write_buf = buf_chunk; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | 	} | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | 		ret = write(tty, file, tty->write_buf, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | 		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 Slaby | b0de59b | 2013-02-15 15:25:05 +0100 | [diff] [blame] | 1080 | 	if (written) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | 		ret = written; | 
| Alan Cox | 9c1729d | 2007-07-15 23:39:43 -0700 | [diff] [blame] | 1082 | out: | 
 | 1083 | 	tty_write_unlock(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | 	return ret; | 
 | 1085 | } | 
 | 1086 |  | 
| Alan Cox | 95f9bfc | 2008-10-13 10:39:23 +0100 | [diff] [blame] | 1087 | /** | 
 | 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 Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 1096 |  * We must still hold the BTM and test the CLOSING flag for the moment. | 
| Alan Cox | 95f9bfc | 2008-10-13 10:39:23 +0100 | [diff] [blame] | 1097 |  */ | 
 | 1098 |  | 
 | 1099 | void tty_write_message(struct tty_struct *tty, char *msg) | 
 | 1100 | { | 
| Alan Cox | 95f9bfc | 2008-10-13 10:39:23 +0100 | [diff] [blame] | 1101 | 	if (tty) { | 
 | 1102 | 		mutex_lock(&tty->atomic_write_lock); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1103 | 		tty_lock(tty); | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1104 | 		if (tty->ops->write && !test_bit(TTY_CLOSING, &tty->flags)) { | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1105 | 			tty_unlock(tty); | 
| Alan Cox | 95f9bfc | 2008-10-13 10:39:23 +0100 | [diff] [blame] | 1106 | 			tty->ops->write(tty, msg, strlen(msg)); | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1107 | 		} else | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1108 | 			tty_unlock(tty); | 
| Alan Cox | 95f9bfc | 2008-10-13 10:39:23 +0100 | [diff] [blame] | 1109 | 		tty_write_unlock(tty); | 
 | 1110 | 	} | 
| Alan Cox | 95f9bfc | 2008-10-13 10:39:23 +0100 | [diff] [blame] | 1111 | 	return; | 
 | 1112 | } | 
 | 1113 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1115 | /** | 
 | 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 Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 1128 |  *	write method will not be invoked in parallel for each device. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1129 |  */ | 
 | 1130 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1131 | static ssize_t tty_write(struct file *file, const char __user *buf, | 
 | 1132 | 						size_t count, loff_t *ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | { | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 1134 | 	struct tty_struct *tty = file_tty(file); | 
 | 1135 |  	struct tty_ldisc *ld; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | 	ssize_t ret; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1137 |  | 
| Al Viro | 6131ffa | 2013-02-27 16:59:05 -0500 | [diff] [blame] | 1138 | 	if (tty_paranoia_check(tty, file_inode(file), "tty_write")) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | 		return -EIO; | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1140 | 	if (!tty || !tty->ops->write || | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1141 | 		(test_bit(TTY_IO_ERROR, &tty->flags))) | 
 | 1142 | 			return -EIO; | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1143 | 	/* 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1147 | 	ld = tty_ldisc_ref_wait(tty); | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 1148 | 	if (!ld->ops->write) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | 		ret = -EIO; | 
 | 1150 | 	else | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 1151 | 		ret = do_tty_write(ld->ops->write, tty, file, buf, count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | 	tty_ldisc_deref(ld); | 
 | 1153 | 	return ret; | 
 | 1154 | } | 
 | 1155 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1156 | ssize_t redirected_tty_write(struct file *file, const char __user *buf, | 
 | 1157 | 						size_t count, loff_t *ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | { | 
 | 1159 | 	struct file *p = NULL; | 
 | 1160 |  | 
 | 1161 | 	spin_lock(&redirect_lock); | 
| Al Viro | cb0942b | 2012-08-27 14:48:26 -0400 | [diff] [blame] | 1162 | 	if (redirect) | 
 | 1163 | 		p = get_file(redirect); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | 	return tty_write(file, buf, count, ppos); | 
 | 1173 | } | 
 | 1174 |  | 
 | 1175 | static char ptychar[] = "pqrstuvwxyzabcde"; | 
 | 1176 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1177 | /** | 
 | 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 |  */ | 
 | 1188 | static void pty_line_name(struct tty_driver *driver, int index, char *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | { | 
 | 1190 | 	int i = index + driver->name_base; | 
 | 1191 | 	/* ->name is initialized to "ttyp", but "tty" is expected */ | 
 | 1192 | 	sprintf(p, "%s%c%x", | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1193 | 		driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name, | 
 | 1194 | 		ptychar[i >> 4 & 0xf], i & 0xf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | } | 
 | 1196 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1197 | /** | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 1198 |  *	tty_line_name	-	generate name for a tty | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1199 |  *	@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 |  */ | 
 | 1208 | static void tty_line_name(struct tty_driver *driver, int index, char *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | { | 
| Jiri Slaby | 0019b40 | 2012-08-08 22:26:43 +0200 | [diff] [blame] | 1210 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | } | 
 | 1215 |  | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1216 | /** | 
 | 1217 |  *	tty_driver_lookup_tty() - find an existing tty, if any | 
 | 1218 |  *	@driver: the driver for the tty | 
 | 1219 |  *	@idx:	 the minor number | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1220 |  * | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1221 |  *	Return the tty, if found or ERR_PTR() otherwise. | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1222 |  * | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1223 |  *	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 Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1226 |  */ | 
| Jason Wessel | a47d545 | 2009-01-02 13:43:04 +0000 | [diff] [blame] | 1227 | static struct tty_struct *tty_driver_lookup_tty(struct tty_driver *driver, | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 1228 | 		struct inode *inode, int idx) | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1229 | { | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1230 | 	if (driver->ops->lookup) | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 1231 | 		return driver->ops->lookup(driver, inode, idx); | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1232 |  | 
| Jiri Slaby | d483426 | 2012-03-05 14:51:53 +0100 | [diff] [blame] | 1233 | 	return driver->ttys[idx]; | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1234 | } | 
 | 1235 |  | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1236 | /** | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1237 |  *	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 |  | 
 | 1244 | int tty_init_termios(struct tty_struct *tty) | 
 | 1245 | { | 
| Alan Cox | fe6e29f | 2008-10-13 10:44:08 +0100 | [diff] [blame] | 1246 | 	struct ktermios *tp; | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1247 | 	int idx = tty->index; | 
 | 1248 |  | 
| Alan Cox | 36b3c07 | 2012-07-17 17:06:57 +0100 | [diff] [blame] | 1249 | 	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 Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1258 | 	} | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1259 | 	/* Compatibility until drivers always set this */ | 
| Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 1260 | 	tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios); | 
 | 1261 | 	tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1262 | 	return 0; | 
 | 1263 | } | 
| Alan Cox | fe1ae7f | 2009-09-19 13:13:33 -0700 | [diff] [blame] | 1264 | EXPORT_SYMBOL_GPL(tty_init_termios); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1265 |  | 
| Jiri Slaby | 66d450e | 2012-01-30 21:14:28 +0100 | [diff] [blame] | 1266 | int 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 | } | 
 | 1277 | EXPORT_SYMBOL_GPL(tty_standard_install); | 
 | 1278 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1279 | /** | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 1280 |  *	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 Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1285 |  *	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 Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 1288 |  * | 
 | 1289 |  *	Locking: tty_mutex for now | 
 | 1290 |  */ | 
 | 1291 | static int tty_driver_install_tty(struct tty_driver *driver, | 
 | 1292 | 						struct tty_struct *tty) | 
 | 1293 | { | 
| Jiri Slaby | 66d450e | 2012-01-30 21:14:28 +0100 | [diff] [blame] | 1294 | 	return driver->ops->install ? driver->ops->install(driver, tty) : | 
 | 1295 | 		tty_standard_install(driver, tty); | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 1296 | } | 
 | 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 Slaby | 24d406a | 2011-08-10 14:59:28 +0200 | [diff] [blame] | 1308 | void tty_driver_remove_tty(struct tty_driver *driver, struct tty_struct *tty) | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 1309 | { | 
 | 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 Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1319 |  * | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1320 |  *	Return 0 on success, -errno on error. | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1321 |  * | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1322 |  *	Locking: tty_mutex must be held from the time the tty was found | 
 | 1323 |  *		 till this open completes. | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1324 |  */ | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1325 | static int tty_reopen(struct tty_struct *tty) | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1326 | { | 
 | 1327 | 	struct tty_driver *driver = tty->driver; | 
 | 1328 |  | 
| Jiri Slaby | e2efafb | 2010-11-29 10:16:53 +0100 | [diff] [blame] | 1329 | 	if (test_bit(TTY_CLOSING, &tty->flags) || | 
| Jiri Slaby | acfa747 | 2010-11-29 10:16:54 +0100 | [diff] [blame] | 1330 | 			test_bit(TTY_HUPPING, &tty->flags) || | 
| Jiri Slaby | e2efafb | 2010-11-29 10:16:53 +0100 | [diff] [blame] | 1331 | 			test_bit(TTY_LDISC_CHANGING, &tty->flags)) | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1332 | 		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 Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1346 |  | 
| Alan Cox | 1aa4bed | 2009-06-16 17:01:33 +0100 | [diff] [blame] | 1347 | 	mutex_lock(&tty->ldisc_mutex); | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 1348 | 	WARN_ON(!test_bit(TTY_LDISC, &tty->flags)); | 
| Alan Cox | 1aa4bed | 2009-06-16 17:01:33 +0100 | [diff] [blame] | 1349 | 	mutex_unlock(&tty->ldisc_mutex); | 
| Sukadev Bhattiprolu | 2349970 | 2008-10-13 10:41:51 +0100 | [diff] [blame] | 1350 |  | 
 | 1351 | 	return 0; | 
 | 1352 | } | 
 | 1353 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1354 | /** | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 1355 |  *	tty_init_dev		-	initialise a tty device | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1356 |  *	@driver: tty driver we are opening a device on | 
 | 1357 |  *	@idx: device index | 
| Alan Cox | 15582d3 | 2008-10-13 10:41:03 +0100 | [diff] [blame] | 1358 |  *	@ret_tty: returned tty structure | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1359 |  * | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 |  * WSH 06/09/97: Rewritten to remove races and properly clean up after a | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1373 |  * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 |  * relaxed for the (most common) case of reopening a tty. | 
 | 1376 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1377 |  | 
| Konstantin Khlebnikov | 593a27c | 2012-01-05 13:04:21 +0400 | [diff] [blame] | 1378 | struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | { | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1380 | 	struct tty_struct *tty; | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 1381 | 	int retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | 	/* | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1387 | 	 * and the allocated memory released.  (Except that the termios | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | 	 * and locked termios may be retained.) | 
 | 1389 | 	 */ | 
 | 1390 |  | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 1391 | 	if (!try_module_get(driver->owner)) | 
 | 1392 | 		return ERR_PTR(-ENODEV); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | 	tty = alloc_tty_struct(); | 
| Jiri Slaby | d554350 | 2011-03-23 10:48:32 +0100 | [diff] [blame] | 1395 | 	if (!tty) { | 
 | 1396 | 		retval = -ENOMEM; | 
 | 1397 | 		goto err_module_put; | 
 | 1398 | 	} | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1399 | 	initialize_tty_struct(tty, driver, idx); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 |  | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1401 | 	tty_lock(tty); | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 1402 | 	retval = tty_driver_install_tty(driver, tty); | 
| Jiri Slaby | d554350 | 2011-03-23 10:48:32 +0100 | [diff] [blame] | 1403 | 	if (retval < 0) | 
| Jiri Slaby | a9dccdd | 2011-03-23 10:48:36 +0100 | [diff] [blame] | 1404 | 		goto err_deinit_tty; | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 1405 |  | 
| Jiri Slaby | 04831dc | 2012-06-04 13:35:36 +0200 | [diff] [blame] | 1406 | 	if (!tty->port) | 
 | 1407 | 		tty->port = driver->ports[idx]; | 
 | 1408 |  | 
| Jiri Slaby | 5d4121c | 2012-08-17 14:27:52 +0200 | [diff] [blame] | 1409 | 	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 Slaby | 967fab6 | 2012-10-18 22:26:46 +0200 | [diff] [blame] | 1413 | 	tty->port->itty = tty; | 
 | 1414 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1415 | 	/* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | 	 * Structures all installed ... call the ldisc open routines. | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1417 | 	 * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | 	 */ | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 1420 | 	retval = tty_ldisc_setup(tty, tty->link); | 
| Alan Cox | 01e1abb | 2008-07-22 11:16:55 +0100 | [diff] [blame] | 1421 | 	if (retval) | 
| Jiri Slaby | d554350 | 2011-03-23 10:48:32 +0100 | [diff] [blame] | 1422 | 		goto err_release_tty; | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1423 | 	/* Return the tty locked so that it cannot vanish under the caller */ | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 1424 | 	return tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 |  | 
| Jiri Slaby | a9dccdd | 2011-03-23 10:48:36 +0100 | [diff] [blame] | 1426 | err_deinit_tty: | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1427 | 	tty_unlock(tty); | 
| Jiri Slaby | a9dccdd | 2011-03-23 10:48:36 +0100 | [diff] [blame] | 1428 | 	deinitialize_tty_struct(tty); | 
| Jiri Slaby | d554350 | 2011-03-23 10:48:32 +0100 | [diff] [blame] | 1429 | 	free_tty_struct(tty); | 
 | 1430 | err_module_put: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | 	module_put(driver->owner); | 
| Jiri Slaby | d554350 | 2011-03-23 10:48:32 +0100 | [diff] [blame] | 1432 | 	return ERR_PTR(retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 |  | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1434 | 	/* call the tty release_tty routine to clean out this slot */ | 
| Jiri Slaby | d554350 | 2011-03-23 10:48:32 +0100 | [diff] [blame] | 1435 | err_release_tty: | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1436 | 	tty_unlock(tty); | 
| Manuel Zerpies | 5a3c6b2 | 2011-06-16 14:07:22 +0200 | [diff] [blame] | 1437 | 	printk_ratelimited(KERN_INFO "tty_init_dev: ldisc open failed, " | 
| Akinobu Mita | 4050914 | 2006-09-29 02:01:27 -0700 | [diff] [blame] | 1438 | 				 "clearing slot %d\n", idx); | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1439 | 	release_tty(tty, idx); | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 1440 | 	return ERR_PTR(retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | } | 
 | 1442 |  | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 1443 | void tty_free_termios(struct tty_struct *tty) | 
 | 1444 | { | 
 | 1445 | 	struct ktermios *tp; | 
 | 1446 | 	int idx = tty->index; | 
| Alan Cox | 36b3c07 | 2012-07-17 17:06:57 +0100 | [diff] [blame] | 1447 |  | 
 | 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 Carpenter | 4ac5d70 | 2012-07-24 12:51:52 +0100 | [diff] [blame] | 1460 | 		tty->driver->termios[idx] = tp; | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 1461 | 	} | 
| Alan Cox | 36b3c07 | 2012-07-17 17:06:57 +0100 | [diff] [blame] | 1462 | 	*tp = tty->termios; | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 1463 | } | 
 | 1464 | EXPORT_SYMBOL(tty_free_termios); | 
 | 1465 |  | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 1466 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1467 | /** | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1468 |  *	release_one_tty		-	release tty structure memory | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1469 |  *	@kref: kref of tty we are obliterating | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1470 |  * | 
 | 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 Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1476 |  *		takes the file list lock internally when working on the list | 
 | 1477 |  *	of ttys that the driver keeps. | 
| Alan Cox | b50989d | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1478 |  * | 
 | 1479 |  *	This method gets called from a work queue so that the driver private | 
| Dave Young | f278a2f | 2009-09-27 16:00:42 +0000 | [diff] [blame] | 1480 |  *	cleanup ops can sleep (needed for USB at least) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 |  */ | 
| Alan Cox | b50989d | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1482 | static void release_one_tty(struct work_struct *work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | { | 
| Alan Cox | b50989d | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1484 | 	struct tty_struct *tty = | 
 | 1485 | 		container_of(work, struct tty_struct, hangup_work); | 
| Alan Cox | 6f967f7 | 2008-10-13 10:37:36 +0100 | [diff] [blame] | 1486 | 	struct tty_driver *driver = tty->driver; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 |  | 
| Dave Young | f278a2f | 2009-09-27 16:00:42 +0000 | [diff] [blame] | 1488 | 	if (tty->ops->cleanup) | 
 | 1489 | 		tty->ops->cleanup(tty); | 
 | 1490 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | 	tty->magic = 0; | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 1492 | 	tty_driver_kref_put(driver); | 
| Alan Cox | 6f967f7 | 2008-10-13 10:37:36 +0100 | [diff] [blame] | 1493 | 	module_put(driver->owner); | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1494 |  | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 1495 | 	spin_lock(&tty_files_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | 	list_del_init(&tty->tty_files); | 
| Nick Piggin | ee2ffa0 | 2010-08-18 04:37:35 +1000 | [diff] [blame] | 1497 | 	spin_unlock(&tty_files_lock); | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1498 |  | 
| Oleg Nesterov | 6da8d86 | 2010-04-02 18:05:12 +0200 | [diff] [blame] | 1499 | 	put_pid(tty->pgrp); | 
 | 1500 | 	put_pid(tty->session); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | 	free_tty_struct(tty); | 
 | 1502 | } | 
 | 1503 |  | 
| Alan Cox | b50989d | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1504 | static void queue_release_one_tty(struct kref *kref) | 
 | 1505 | { | 
 | 1506 | 	struct tty_struct *tty = container_of(kref, struct tty_struct, kref); | 
| Dave Young | f278a2f | 2009-09-27 16:00:42 +0000 | [diff] [blame] | 1507 |  | 
| Alan Cox | b50989d | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1508 | 	/* 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 Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1514 | /** | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1515 |  *	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 |  | 
 | 1522 | void tty_kref_put(struct tty_struct *tty) | 
 | 1523 | { | 
 | 1524 | 	if (tty) | 
| Alan Cox | b50989d | 2009-09-19 13:13:22 -0700 | [diff] [blame] | 1525 | 		kref_put(&tty->kref, queue_release_one_tty); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1526 | } | 
 | 1527 | EXPORT_SYMBOL(tty_kref_put); | 
 | 1528 |  | 
 | 1529 | /** | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1530 |  *	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 Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1536 |  *		tty_mutex | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1537 |  *		takes the file list lock internally when working on the list | 
 | 1538 |  *	of ttys that the driver keeps. | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1539 |  * | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1540 |  */ | 
 | 1541 | static void release_tty(struct tty_struct *tty, int idx) | 
 | 1542 | { | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1543 | 	/* This should always be true but check for the moment */ | 
 | 1544 | 	WARN_ON(tty->index != idx); | 
| Alan Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1545 | 	WARN_ON(!mutex_is_locked(&tty_mutex)); | 
| Alan Cox | 36b3c07 | 2012-07-17 17:06:57 +0100 | [diff] [blame] | 1546 | 	if (tty->ops->shutdown) | 
 | 1547 | 		tty->ops->shutdown(tty); | 
 | 1548 | 	tty_free_termios(tty); | 
 | 1549 | 	tty_driver_remove_tty(tty->driver, tty); | 
| Jiri Slaby | 967fab6 | 2012-10-18 22:26:46 +0200 | [diff] [blame] | 1550 | 	tty->port->itty = NULL; | 
| Alan Cox | 36b3c07 | 2012-07-17 17:06:57 +0100 | [diff] [blame] | 1551 |  | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1552 | 	if (tty->link) | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 1553 | 		tty_kref_put(tty->link); | 
 | 1554 | 	tty_kref_put(tty); | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1555 | } | 
 | 1556 |  | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1557 | /** | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1558 |  *	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 |  */ | 
 | 1566 | static 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 Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1571 | 		printk(KERN_DEBUG "%s: bad idx when trying to free (%s)\n", | 
 | 1572 | 				__func__, tty->name); | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1573 | 		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 Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1581 | 		printk(KERN_DEBUG "%s: driver.table[%d] not tty for (%s)\n", | 
 | 1582 | 				__func__, idx, tty->name); | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1583 | 		return -1; | 
 | 1584 | 	} | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1585 | 	if (tty->driver->other) { | 
 | 1586 | 		if (o_tty != tty->driver->other->ttys[idx]) { | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1587 | 			printk(KERN_DEBUG "%s: other->table[%d] not o_tty for (%s)\n", | 
 | 1588 | 					__func__, idx, tty->name); | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1589 | 			return -1; | 
 | 1590 | 		} | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1591 | 		if (o_tty->link != tty) { | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1592 | 			printk(KERN_DEBUG "%s: bad pty pointers\n", __func__); | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1593 | 			return -1; | 
 | 1594 | 		} | 
 | 1595 | 	} | 
 | 1596 | #endif | 
 | 1597 | 	return 0; | 
 | 1598 | } | 
 | 1599 |  | 
 | 1600 | /** | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1601 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 |  * 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 Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1618 |  | 
 | 1619 | int tty_release(struct inode *inode, struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | { | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 1621 | 	struct tty_struct *tty = file_tty(filp); | 
 | 1622 | 	struct tty_struct *o_tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | 	int	pty_master, tty_closing, o_tty_closing, do_sleep; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | 	int	idx; | 
 | 1625 | 	char	buf[64]; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1626 |  | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1627 | 	if (tty_paranoia_check(tty, inode, __func__)) | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1628 | 		return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 |  | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1630 | 	tty_lock(tty); | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1631 | 	check_tty_count(tty, __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 |  | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 1633 | 	__tty_fasync(-1, filp, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 |  | 
 | 1635 | 	idx = tty->index; | 
 | 1636 | 	pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY && | 
 | 1637 | 		      tty->driver->subtype == PTY_TYPE_MASTER); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1638 | 	/* Review: parallel close */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | 	o_tty = tty->link; | 
 | 1640 |  | 
| Jiri Slaby | 955787c | 2011-11-11 10:47:23 +0100 | [diff] [blame] | 1641 | 	if (tty_release_checks(tty, o_tty, idx)) { | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1642 | 		tty_unlock(tty); | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1643 | 		return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 |  | 
 | 1646 | #ifdef TTY_DEBUG_HANGUP | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1647 | 	printk(KERN_DEBUG "%s: %s (tty count=%d)...\n", __func__, | 
 | 1648 | 			tty_name(tty, buf), tty->count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | #endif | 
 | 1650 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 1651 | 	if (tty->ops->close) | 
 | 1652 | 		tty->ops->close(tty, filp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 |  | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1654 | 	tty_unlock(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | 	/* | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1675 |  | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1676 | 		mutex_lock(&tty_mutex); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1677 | 		tty_lock_pair(tty, o_tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1678 | 		tty_closing = tty->count <= 1; | 
 | 1679 | 		o_tty_closing = o_tty && | 
 | 1680 | 			(o_tty->count <= (pty_master ? 1 : 0)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | 		do_sleep = 0; | 
 | 1682 |  | 
 | 1683 | 		if (tty_closing) { | 
 | 1684 | 			if (waitqueue_active(&tty->read_wait)) { | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 1685 | 				wake_up_poll(&tty->read_wait, POLLIN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | 				do_sleep++; | 
 | 1687 | 			} | 
 | 1688 | 			if (waitqueue_active(&tty->write_wait)) { | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 1689 | 				wake_up_poll(&tty->write_wait, POLLOUT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | 				do_sleep++; | 
 | 1691 | 			} | 
 | 1692 | 		} | 
 | 1693 | 		if (o_tty_closing) { | 
 | 1694 | 			if (waitqueue_active(&o_tty->read_wait)) { | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 1695 | 				wake_up_poll(&o_tty->read_wait, POLLIN); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | 				do_sleep++; | 
 | 1697 | 			} | 
 | 1698 | 			if (waitqueue_active(&o_tty->write_wait)) { | 
| Davide Libenzi | 4b19449 | 2009-03-31 15:24:24 -0700 | [diff] [blame] | 1699 | 				wake_up_poll(&o_tty->write_wait, POLLOUT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | 				do_sleep++; | 
 | 1701 | 			} | 
 | 1702 | 		} | 
 | 1703 | 		if (!do_sleep) | 
 | 1704 | 			break; | 
 | 1705 |  | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1706 | 		printk(KERN_WARNING "%s: %s: read/write wait queue active!\n", | 
 | 1707 | 				__func__, tty_name(tty, buf)); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1708 | 		tty_unlock_pair(tty, o_tty); | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1709 | 		mutex_unlock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | 		schedule(); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1711 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 |  | 
 | 1713 | 	/* | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1714 | 	 * The closing flags are now consistent with the open counts on | 
 | 1715 | 	 * both sides, and we've completed the last operation that could | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | 	 * block, so it's safe to proceed with closing. | 
| Alan Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1717 | 	 * | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | 	if (pty_master) { | 
 | 1722 | 		if (--o_tty->count < 0) { | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1723 | 			printk(KERN_WARNING "%s: bad pty slave count (%d) for %s\n", | 
 | 1724 | 				__func__, o_tty->count, tty_name(o_tty, buf)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | 			o_tty->count = 0; | 
 | 1726 | 		} | 
 | 1727 | 	} | 
 | 1728 | 	if (--tty->count < 0) { | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1729 | 		printk(KERN_WARNING "%s: bad tty->count (%d) for %s\n", | 
 | 1730 | 				__func__, tty->count, tty_name(tty, buf)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | 		tty->count = 0; | 
 | 1732 | 	} | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1733 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | 	/* | 
 | 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 Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 1743 | 	tty_del_file(filp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 |  | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1752 | 	if (tty_closing) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | 		set_bit(TTY_CLOSING, &tty->flags); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1754 | 	if (o_tty_closing) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | 		read_lock(&tasklist_lock); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 1764 | 		session_clear_tty(tty->session); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | 		if (o_tty) | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 1766 | 			session_clear_tty(o_tty->session); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | 		read_unlock(&tasklist_lock); | 
 | 1768 | 	} | 
 | 1769 |  | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1770 | 	mutex_unlock(&tty_mutex); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1771 | 	tty_unlock_pair(tty, o_tty); | 
| Alan Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1772 | 	/* At this point the TTY_CLOSING flag should ensure a dead tty | 
 | 1773 | 	   cannot be re-opened by a racing opener */ | 
| Paul Fulghum | da96582 | 2006-02-14 13:53:00 -0800 | [diff] [blame] | 1774 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | 	/* check whether both sides are closing ... */ | 
| Alan Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1776 | 	if (!tty_closing || (o_tty && !o_tty_closing)) | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1777 | 		return 0; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1778 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | #ifdef TTY_DEBUG_HANGUP | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1780 | 	printk(KERN_DEBUG "%s: freeing tty structure...\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | #endif | 
 | 1782 | 	/* | 
| Alan Cox | 01e1abb | 2008-07-22 11:16:55 +0100 | [diff] [blame] | 1783 | 	 * Ask the line discipline code to release its structures | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | 	 */ | 
| Alan Cox | 01e1abb | 2008-07-22 11:16:55 +0100 | [diff] [blame] | 1785 | 	tty_ldisc_release(tty, o_tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | 	/* | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1787 | 	 * The release_tty function takes care of the details of clearing | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1788 | 	 * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | 	 */ | 
| Alan Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1792 | 	mutex_lock(&tty_mutex); | 
| Christoph Hellwig | d5698c2 | 2007-02-10 01:46:46 -0800 | [diff] [blame] | 1793 | 	release_tty(tty, idx); | 
| Alan Cox | d155255 | 2012-07-27 18:02:54 +0100 | [diff] [blame] | 1794 | 	mutex_unlock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 |  | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1796 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | } | 
 | 1798 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1799 | /** | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1800 |  *	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 Cox | 3af502b | 2012-05-03 22:21:53 +0100 | [diff] [blame] | 1807 |  * | 
 | 1808 |  *	We need to move to returning a refcounted object from all the lookup | 
 | 1809 |  *	paths including this one. | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1810 |  */ | 
 | 1811 | static 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 Cox | 3af502b | 2012-05-03 22:21:53 +0100 | [diff] [blame] | 1826 | 	/* This is only safe because the caller holds tty_mutex */ | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1827 | 	return tty; | 
 | 1828 | } | 
 | 1829 |  | 
 | 1830 | /** | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1831 |  *	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 |  */ | 
 | 1843 | static 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 Slaby | 2cd0050 | 2011-11-09 21:33:22 +0100 | [diff] [blame] | 1848 | 	switch (device) { | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1849 | #ifdef CONFIG_VT | 
| Jiri Slaby | 2cd0050 | 2011-11-09 21:33:22 +0100 | [diff] [blame] | 1850 | 	case MKDEV(TTY_MAJOR, 0): { | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1851 | 		extern struct tty_driver *console_driver; | 
 | 1852 | 		driver = tty_driver_kref_get(console_driver); | 
 | 1853 | 		*index = fg_console; | 
 | 1854 | 		*noctty = 1; | 
| Jiri Slaby | 2cd0050 | 2011-11-09 21:33:22 +0100 | [diff] [blame] | 1855 | 		break; | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1856 | 	} | 
 | 1857 | #endif | 
| Jiri Slaby | 2cd0050 | 2011-11-09 21:33:22 +0100 | [diff] [blame] | 1858 | 	case MKDEV(TTYAUX_MAJOR, 1): { | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1859 | 		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 Slaby | 2cd0050 | 2011-11-09 21:33:22 +0100 | [diff] [blame] | 1866 | 				break; | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1867 | 			} | 
 | 1868 | 		} | 
 | 1869 | 		return ERR_PTR(-ENODEV); | 
 | 1870 | 	} | 
| Jiri Slaby | 2cd0050 | 2011-11-09 21:33:22 +0100 | [diff] [blame] | 1871 | 	default: | 
 | 1872 | 		driver = get_tty_driver(device, index); | 
 | 1873 | 		if (!driver) | 
 | 1874 | 			return ERR_PTR(-ENODEV); | 
 | 1875 | 		break; | 
 | 1876 | 	} | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1877 | 	return driver; | 
 | 1878 | } | 
 | 1879 |  | 
 | 1880 | /** | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1881 |  *	tty_open		-	open a tty device | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1882 |  *	@inode: inode of device file | 
 | 1883 |  *	@filp: file pointer to tty | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 |  * | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1885 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 |  * | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1889 |  *	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 Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1896 |  *	Locking: tty_mutex protects tty, tty_lookup_driver and tty_init_dev. | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 1897 |  *		 tty->count should protect the rest. | 
 | 1898 |  *		 ->siglock protects ->signal/->sighand | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1899 |  * | 
 | 1900 |  *	Note: the tty_unlock/lock cases without a ref are only safe due to | 
 | 1901 |  *	tty_mutex | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 1903 |  | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1904 | static int tty_open(struct inode *inode, struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | { | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1906 | 	struct tty_struct *tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | 	int noctty, retval; | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1908 | 	struct tty_driver *driver = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1909 | 	int index; | 
 | 1910 | 	dev_t device = inode->i_rdev; | 
| Andrew Morton | 846c151 | 2009-04-02 16:56:36 -0700 | [diff] [blame] | 1911 | 	unsigned saved_flags = filp->f_flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 |  | 
 | 1913 | 	nonseekable_open(inode, filp); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1914 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | retry_open: | 
| Jiri Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 1916 | 	retval = tty_alloc_file(filp); | 
 | 1917 | 	if (retval) | 
 | 1918 | 		return -ENOMEM; | 
 | 1919 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | 	noctty = filp->f_flags & O_NOCTTY; | 
 | 1921 | 	index  = -1; | 
 | 1922 | 	retval = 0; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1923 |  | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1924 | 	mutex_lock(&tty_mutex); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1925 | 	/* This is protected by the tty_mutex */ | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1926 | 	tty = tty_open_current_tty(device, filp); | 
 | 1927 | 	if (IS_ERR(tty)) { | 
| Jiri Slaby | ba5db44 | 2011-11-09 21:33:21 +0100 | [diff] [blame] | 1928 | 		retval = PTR_ERR(tty); | 
 | 1929 | 		goto err_unlock; | 
| Jiri Slaby | 5b5e704 | 2011-11-09 21:33:20 +0100 | [diff] [blame] | 1930 | 	} else if (!tty) { | 
 | 1931 | 		driver = tty_lookup_driver(device, filp, &noctty, &index); | 
 | 1932 | 		if (IS_ERR(driver)) { | 
| Jiri Slaby | ba5db44 | 2011-11-09 21:33:21 +0100 | [diff] [blame] | 1933 | 			retval = PTR_ERR(driver); | 
 | 1934 | 			goto err_unlock; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 |  | 
| Sukadev Bhattiprolu | 4a2b5fd | 2008-10-13 10:42:49 +0100 | [diff] [blame] | 1937 | 		/* check whether we're reopening an existing tty */ | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 1938 | 		tty = tty_driver_lookup_tty(driver, inode, index); | 
| Eric Paris | 808ffa3 | 2009-01-27 11:50:37 +0000 | [diff] [blame] | 1939 | 		if (IS_ERR(tty)) { | 
| Jiri Slaby | ba5db44 | 2011-11-09 21:33:21 +0100 | [diff] [blame] | 1940 | 			retval = PTR_ERR(tty); | 
 | 1941 | 			goto err_unlock; | 
| Eric Paris | 808ffa3 | 2009-01-27 11:50:37 +0000 | [diff] [blame] | 1942 | 		} | 
| Sukadev Bhattiprolu | 4a2b5fd | 2008-10-13 10:42:49 +0100 | [diff] [blame] | 1943 | 	} | 
 | 1944 |  | 
 | 1945 | 	if (tty) { | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1946 | 		tty_lock(tty); | 
| Sukadev Bhattiprolu | 4a2b5fd | 2008-10-13 10:42:49 +0100 | [diff] [blame] | 1947 | 		retval = tty_reopen(tty); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1948 | 		if (retval < 0) { | 
 | 1949 | 			tty_unlock(tty); | 
| Sukadev Bhattiprolu | 4a2b5fd | 2008-10-13 10:42:49 +0100 | [diff] [blame] | 1950 | 			tty = ERR_PTR(retval); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1951 | 		} | 
 | 1952 | 	} else	/* Returns with the tty_lock held for now */ | 
| Konstantin Khlebnikov | 593a27c | 2012-01-05 13:04:21 +0400 | [diff] [blame] | 1953 | 		tty = tty_init_dev(driver, index); | 
| Sukadev Bhattiprolu | 4a2b5fd | 2008-10-13 10:42:49 +0100 | [diff] [blame] | 1954 |  | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 1955 | 	mutex_unlock(&tty_mutex); | 
| Jiri Slaby | b82154a | 2011-11-09 21:33:19 +0100 | [diff] [blame] | 1956 | 	if (driver) | 
 | 1957 | 		tty_driver_kref_put(driver); | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1958 | 	if (IS_ERR(tty)) { | 
| Jiri Slaby | ba5db44 | 2011-11-09 21:33:21 +0100 | [diff] [blame] | 1959 | 		retval = PTR_ERR(tty); | 
 | 1960 | 		goto err_file; | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1961 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 |  | 
| Jiri Slaby | fa90e1c | 2011-10-12 11:32:43 +0200 | [diff] [blame] | 1963 | 	tty_add_file(tty, filp); | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 1964 |  | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1965 | 	check_tty_count(tty, __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | 	if (tty->driver->type == TTY_DRIVER_TYPE_PTY && | 
 | 1967 | 	    tty->driver->subtype == PTY_TYPE_MASTER) | 
 | 1968 | 		noctty = 1; | 
 | 1969 | #ifdef TTY_DEBUG_HANGUP | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1970 | 	printk(KERN_DEBUG "%s: opening %s...\n", __func__, tty->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | #endif | 
| Herton Ronaldo Krzesinski | 909bc77 | 2011-03-31 15:35:31 -0300 | [diff] [blame] | 1972 | 	if (tty->ops->open) | 
 | 1973 | 		retval = tty->ops->open(tty, filp); | 
 | 1974 | 	else | 
 | 1975 | 		retval = -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | 	filp->f_flags = saved_flags; | 
 | 1977 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 1978 | 	if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) && | 
 | 1979 | 						!capable(CAP_SYS_ADMIN)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | 		retval = -EBUSY; | 
 | 1981 |  | 
 | 1982 | 	if (retval) { | 
 | 1983 | #ifdef TTY_DEBUG_HANGUP | 
| Jiri Slaby | 9de44bd | 2011-11-09 21:33:24 +0100 | [diff] [blame] | 1984 | 		printk(KERN_DEBUG "%s: error %d in opening %s...\n", __func__, | 
 | 1985 | 				retval, tty->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | #endif | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 1987 | 		tty_unlock(tty); /* need to call tty_release without BTM */ | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 1988 | 		tty_release(inode, filp); | 
| Arnd Bergmann | 64ba3dc | 2010-06-01 22:53:02 +0200 | [diff] [blame] | 1989 | 		if (retval != -ERESTARTSYS) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | 			return retval; | 
| Arnd Bergmann | 64ba3dc | 2010-06-01 22:53:02 +0200 | [diff] [blame] | 1991 |  | 
 | 1992 | 		if (signal_pending(current)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | 			return retval; | 
| Arnd Bergmann | 64ba3dc | 2010-06-01 22:53:02 +0200 | [diff] [blame] | 1994 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | 		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 Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2003 | 	tty_unlock(tty); | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 2004 |  | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2005 |  | 
 | 2006 | 	mutex_lock(&tty_mutex); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2007 | 	tty_lock(tty); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2008 | 	spin_lock_irq(¤t->sighand->siglock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | 	if (!noctty && | 
 | 2010 | 	    current->signal->leader && | 
 | 2011 | 	    !current->signal->tty && | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2012 | 	    tty->session == NULL) | 
| Eric W. Biederman | 2a65f1d | 2007-05-08 00:26:53 -0700 | [diff] [blame] | 2013 | 		__proc_set_tty(current, tty); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2014 | 	spin_unlock_irq(¤t->sighand->siglock); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2015 | 	tty_unlock(tty); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2016 | 	mutex_unlock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | 	return 0; | 
| Jiri Slaby | ba5db44 | 2011-11-09 21:33:21 +0100 | [diff] [blame] | 2018 | err_unlock: | 
| Jiri Slaby | ba5db44 | 2011-11-09 21:33:21 +0100 | [diff] [blame] | 2019 | 	mutex_unlock(&tty_mutex); | 
 | 2020 | 	/* after locks to avoid deadlock */ | 
 | 2021 | 	if (!IS_ERR_OR_NULL(driver)) | 
 | 2022 | 		tty_driver_kref_put(driver); | 
 | 2023 | err_file: | 
 | 2024 | 	tty_free_file(filp); | 
 | 2025 | 	return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2026 | } | 
 | 2027 |  | 
| Jonathan Corbet | 39d95b9 | 2008-05-16 09:10:50 -0600 | [diff] [blame] | 2028 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2030 | /** | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2042 | static unsigned int tty_poll(struct file *filp, poll_table *wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | { | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 2044 | 	struct tty_struct *tty = file_tty(filp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2045 | 	struct tty_ldisc *ld; | 
 | 2046 | 	int ret = 0; | 
 | 2047 |  | 
| Al Viro | 6131ffa | 2013-02-27 16:59:05 -0500 | [diff] [blame] | 2048 | 	if (tty_paranoia_check(tty, file_inode(filp), "tty_poll")) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | 		return 0; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2050 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | 	ld = tty_ldisc_ref_wait(tty); | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 2052 | 	if (ld->ops->poll) | 
 | 2053 | 		ret = (ld->ops->poll)(tty, filp, wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | 	tty_ldisc_deref(ld); | 
 | 2055 | 	return ret; | 
 | 2056 | } | 
 | 2057 |  | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 2058 | static int __tty_fasync(int fd, struct file *filp, int on) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | { | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 2060 | 	struct tty_struct *tty = file_tty(filp); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2061 | 	unsigned long flags; | 
| Jonathan Corbet | 5d1e323 | 2008-06-19 16:04:53 -0600 | [diff] [blame] | 2062 | 	int retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 |  | 
| Al Viro | 6131ffa | 2013-02-27 16:59:05 -0500 | [diff] [blame] | 2064 | 	if (tty_paranoia_check(tty, file_inode(filp), "tty_fasync")) | 
| Jonathan Corbet | 5d1e323 | 2008-06-19 16:04:53 -0600 | [diff] [blame] | 2065 | 		goto out; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2066 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | 	retval = fasync_helper(fd, filp, on, &tty->fasync); | 
 | 2068 | 	if (retval <= 0) | 
| Jonathan Corbet | 5d1e323 | 2008-06-19 16:04:53 -0600 | [diff] [blame] | 2069 | 		goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 |  | 
 | 2071 | 	if (on) { | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2072 | 		enum pid_type type; | 
 | 2073 | 		struct pid *pid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | 		if (!waitqueue_active(&tty->read_wait)) | 
 | 2075 | 			tty->minimum_to_wake = 1; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2076 | 		spin_lock_irqsave(&tty->ctrl_lock, flags); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2077 | 		if (tty->pgrp) { | 
 | 2078 | 			pid = tty->pgrp; | 
 | 2079 | 			type = PIDTYPE_PGID; | 
 | 2080 | 		} else { | 
 | 2081 | 			pid = task_pid(current); | 
 | 2082 | 			type = PIDTYPE_PID; | 
 | 2083 | 		} | 
| Linus Torvalds | 80e1e82 | 2010-02-07 10:11:23 -0800 | [diff] [blame] | 2084 | 		get_pid(pid); | 
| Greg Kroah-Hartman | 7036251 | 2009-12-17 07:07:19 -0800 | [diff] [blame] | 2085 | 		spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Linus Torvalds | 80e1e82 | 2010-02-07 10:11:23 -0800 | [diff] [blame] | 2086 | 		retval = __f_setown(filp, pid, type, 0); | 
 | 2087 | 		put_pid(pid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | 		if (retval) | 
| Jonathan Corbet | 5d1e323 | 2008-06-19 16:04:53 -0600 | [diff] [blame] | 2089 | 			goto out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | 	} else { | 
 | 2091 | 		if (!tty->fasync && !waitqueue_active(&tty->read_wait)) | 
 | 2092 | 			tty->minimum_to_wake = N_TTY_BUF_SIZE; | 
 | 2093 | 	} | 
| Jonathan Corbet | 5d1e323 | 2008-06-19 16:04:53 -0600 | [diff] [blame] | 2094 | 	retval = 0; | 
 | 2095 | out: | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 2096 | 	return retval; | 
 | 2097 | } | 
 | 2098 |  | 
 | 2099 | static int tty_fasync(int fd, struct file *filp, int on) | 
 | 2100 | { | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2101 | 	struct tty_struct *tty = file_tty(filp); | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 2102 | 	int retval; | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2103 |  | 
 | 2104 | 	tty_lock(tty); | 
| Arnd Bergmann | ec79d60 | 2010-06-01 22:53:01 +0200 | [diff] [blame] | 2105 | 	retval = __tty_fasync(fd, filp, on); | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2106 | 	tty_unlock(tty); | 
 | 2107 |  | 
| Jonathan Corbet | 5d1e323 | 2008-06-19 16:04:53 -0600 | [diff] [blame] | 2108 | 	return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | } | 
 | 2110 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2111 | /** | 
 | 2112 |  *	tiocsti			-	fake input character | 
 | 2113 |  *	@tty: tty to fake input into | 
 | 2114 |  *	@p: pointer to character | 
 | 2115 |  * | 
| Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 2116 |  *	Fake input to a tty device. Does the necessary locking and | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2117 |  *	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 Cox | 2829823 | 2006-09-29 02:00:58 -0700 | [diff] [blame] | 2124 |  * | 
 | 2125 |  *	FIXME: may race normal receive processing | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2126 |  */ | 
 | 2127 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | static int tiocsti(struct tty_struct *tty, char __user *p) | 
 | 2129 | { | 
 | 2130 | 	char ch, mbz = 0; | 
 | 2131 | 	struct tty_ldisc *ld; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2132 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | 	if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN)) | 
 | 2134 | 		return -EPERM; | 
 | 2135 | 	if (get_user(ch, p)) | 
 | 2136 | 		return -EFAULT; | 
| Al Viro | 1e64174 | 2008-12-09 09:23:33 +0000 | [diff] [blame] | 2137 | 	tty_audit_tiocsti(tty, ch); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | 	ld = tty_ldisc_ref_wait(tty); | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 2139 | 	ld->ops->receive_buf(tty, &ch, &mbz, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | 	tty_ldisc_deref(ld); | 
 | 2141 | 	return 0; | 
 | 2142 | } | 
 | 2143 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2144 | /** | 
 | 2145 |  *	tiocgwinsz		-	implement window query ioctl | 
 | 2146 |  *	@tty; tty | 
 | 2147 |  *	@arg: user buffer for result | 
 | 2148 |  * | 
| Alan Cox | 808a0d3 | 2006-09-29 02:00:40 -0700 | [diff] [blame] | 2149 |  *	Copies the kernel idea of the window size into the user buffer. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2150 |  * | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2151 |  *	Locking: tty->termios_mutex is taken to ensure the winsize data | 
| Alan Cox | 808a0d3 | 2006-09-29 02:00:40 -0700 | [diff] [blame] | 2152 |  *		is consistent. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2153 |  */ | 
 | 2154 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2155 | static int tiocgwinsz(struct tty_struct *tty, struct winsize __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | { | 
| Alan Cox | 808a0d3 | 2006-09-29 02:00:40 -0700 | [diff] [blame] | 2157 | 	int err; | 
 | 2158 |  | 
| Arjan van de Ven | 5785c95 | 2006-09-29 02:00:43 -0700 | [diff] [blame] | 2159 | 	mutex_lock(&tty->termios_mutex); | 
| Alan Cox | 808a0d3 | 2006-09-29 02:00:40 -0700 | [diff] [blame] | 2160 | 	err = copy_to_user(arg, &tty->winsize, sizeof(*arg)); | 
| Arjan van de Ven | 5785c95 | 2006-09-29 02:00:43 -0700 | [diff] [blame] | 2161 | 	mutex_unlock(&tty->termios_mutex); | 
| Alan Cox | 808a0d3 | 2006-09-29 02:00:40 -0700 | [diff] [blame] | 2162 |  | 
 | 2163 | 	return err ? -EFAULT: 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | } | 
 | 2165 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2166 | /** | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2167 |  *	tty_do_resize		-	resize event | 
 | 2168 |  *	@tty: tty being resized | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2169 |  *	@rows: rows (character) | 
 | 2170 |  *	@cols: cols (character) | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2171 |  * | 
| Daniel Mack | 3ad2f3f | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 2172 |  *	Update the termios variables and send the necessary signals to | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2173 |  *	peform a terminal resize correctly | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2174 |  */ | 
 | 2175 |  | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2176 | int tty_do_resize(struct tty_struct *tty, struct winsize *ws) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | { | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2178 | 	struct pid *pgrp; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2179 | 	unsigned long flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 |  | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2181 | 	/* Lock the tty */ | 
 | 2182 | 	mutex_lock(&tty->termios_mutex); | 
 | 2183 | 	if (!memcmp(ws, &tty->winsize, sizeof(*ws))) | 
| Alan Cox | ca9bda0 | 2006-09-29 02:00:03 -0700 | [diff] [blame] | 2184 | 		goto done; | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2185 | 	/* 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 Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2189 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
 | 2190 |  | 
 | 2191 | 	if (pgrp) | 
 | 2192 | 		kill_pgrp(pgrp, SIGWINCH, 1); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2193 | 	put_pid(pgrp); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2194 |  | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2195 | 	tty->winsize = *ws; | 
| Alan Cox | ca9bda0 | 2006-09-29 02:00:03 -0700 | [diff] [blame] | 2196 | done: | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2197 | 	mutex_unlock(&tty->termios_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | 	return 0; | 
 | 2199 | } | 
| Martin Schwidefsky | 4d334fd | 2013-01-04 14:55:13 +0100 | [diff] [blame] | 2200 | EXPORT_SYMBOL(tty_do_resize); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2202 | /** | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2203 |  *	tiocswinsz		-	implement window size set ioctl | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2204 |  *	@tty; tty side of tty | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2205 |  *	@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 Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2212 |  *		Driver dependent. The default do_resize method takes the | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2213 |  *	tty termios mutex and ctrl_lock. The console takes its own lock | 
 | 2214 |  *	then calls into the default method. | 
 | 2215 |  */ | 
 | 2216 |  | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2217 | static int tiocswinsz(struct tty_struct *tty, struct winsize __user *arg) | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2218 | { | 
 | 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 Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2224 | 		return tty->ops->resize(tty, &tmp_ws); | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2225 | 	else | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2226 | 		return tty_do_resize(tty, &tmp_ws); | 
| Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 2227 | } | 
 | 2228 |  | 
 | 2229 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2230 |  *	tioccons	-	allow admin to move logical console | 
 | 2231 |  *	@file: the file to become console | 
 | 2232 |  * | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2233 |  *	Allow the administrator to move the redirected console device | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2234 |  * | 
 | 2235 |  *	Locking: uses redirect_lock to guard the redirect information | 
 | 2236 |  */ | 
 | 2237 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | static 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 Viro | cb0942b | 2012-08-27 14:48:26 -0400 | [diff] [blame] | 2257 | 	redirect = get_file(file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2258 | 	spin_unlock(&redirect_lock); | 
 | 2259 | 	return 0; | 
 | 2260 | } | 
 | 2261 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2262 | /** | 
 | 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 Cox | 6146b9a | 2009-09-19 13:13:19 -0700 | [diff] [blame] | 2271 |  *	Locking: none, the open file handle ensures it won't go away. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2272 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 |  | 
 | 2274 | static int fionbio(struct file *file, int __user *p) | 
 | 2275 | { | 
 | 2276 | 	int nonblock; | 
 | 2277 |  | 
 | 2278 | 	if (get_user(nonblock, p)) | 
 | 2279 | 		return -EFAULT; | 
 | 2280 |  | 
| Jonathan Corbet | db1dd4d | 2009-02-06 15:25:24 -0700 | [diff] [blame] | 2281 | 	spin_lock(&file->f_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | 	if (nonblock) | 
 | 2283 | 		file->f_flags |= O_NONBLOCK; | 
 | 2284 | 	else | 
 | 2285 | 		file->f_flags &= ~O_NONBLOCK; | 
| Jonathan Corbet | db1dd4d | 2009-02-06 15:25:24 -0700 | [diff] [blame] | 2286 | 	spin_unlock(&file->f_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | 	return 0; | 
 | 2288 | } | 
 | 2289 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2290 | /** | 
 | 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 Cox | 2829823 | 2006-09-29 02:00:58 -0700 | [diff] [blame] | 2299 |  *		Takes tty_mutex() to protect tty instance | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2300 |  *		Takes tasklist_lock internally to walk sessions | 
 | 2301 |  *		Takes ->siglock() when updating signal->tty | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2302 |  */ | 
 | 2303 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | static int tiocsctty(struct tty_struct *tty, int arg) | 
 | 2305 | { | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2306 | 	int ret = 0; | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2307 | 	if (current->signal->leader && (task_session(current) == tty->session)) | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2308 | 		return ret; | 
 | 2309 |  | 
 | 2310 | 	mutex_lock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | 	/* | 
 | 2312 | 	 * The process must be a session leader and | 
 | 2313 | 	 * not have a controlling tty already. | 
 | 2314 | 	 */ | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2315 | 	if (!current->signal->leader || current->signal->tty) { | 
 | 2316 | 		ret = -EPERM; | 
 | 2317 | 		goto unlock; | 
 | 2318 | 	} | 
 | 2319 |  | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2320 | 	if (tty->session) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | 		/* | 
 | 2322 | 		 * This tty is already the controlling | 
 | 2323 | 		 * tty for another session group! | 
 | 2324 | 		 */ | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2325 | 		if (arg == 1 && capable(CAP_SYS_ADMIN)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | 			/* | 
 | 2327 | 			 * Steal it away | 
 | 2328 | 			 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2329 | 			read_lock(&tasklist_lock); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2330 | 			session_clear_tty(tty->session); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | 			read_unlock(&tasklist_lock); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2332 | 		} else { | 
 | 2333 | 			ret = -EPERM; | 
 | 2334 | 			goto unlock; | 
 | 2335 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | 	} | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2337 | 	proc_set_tty(current, tty); | 
 | 2338 | unlock: | 
| Alan Cox | 2829823 | 2006-09-29 02:00:58 -0700 | [diff] [blame] | 2339 | 	mutex_unlock(&tty_mutex); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2340 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | } | 
 | 2342 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2343 | /** | 
| Alan Cox | 5d0fdf1 | 2008-04-30 00:53:31 -0700 | [diff] [blame] | 2344 |  *	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 |  | 
 | 2351 | struct 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 | } | 
 | 2362 | EXPORT_SYMBOL_GPL(tty_get_pgrp); | 
 | 2363 |  | 
 | 2364 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2365 |  *	tiocgpgrp		-	get process group | 
 | 2366 |  *	@tty: tty passed by user | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2367 |  *	@real_tty: tty side of the tty passed by the user if a pty else the tty | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2368 |  *	@p: returned pid | 
 | 2369 |  * | 
 | 2370 |  *	Obtain the process group of the tty. If there is no process group | 
 | 2371 |  *	return an error. | 
 | 2372 |  * | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2373 |  *	Locking: none. Reference to current->signal->tty is safe. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2374 |  */ | 
 | 2375 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2376 | static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p) | 
 | 2377 | { | 
| Alan Cox | 5d0fdf1 | 2008-04-30 00:53:31 -0700 | [diff] [blame] | 2378 | 	struct pid *pid; | 
 | 2379 | 	int ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | 	/* | 
 | 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 Cox | 5d0fdf1 | 2008-04-30 00:53:31 -0700 | [diff] [blame] | 2386 | 	pid = tty_get_pgrp(real_tty); | 
 | 2387 | 	ret =  put_user(pid_vnr(pid), p); | 
 | 2388 | 	put_pid(pid); | 
 | 2389 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2390 | } | 
 | 2391 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2392 | /** | 
 | 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 Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2401 |  *	Locking: RCU, ctrl lock | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2402 |  */ | 
 | 2403 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p) | 
 | 2405 | { | 
| Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 2406 | 	struct pid *pgrp; | 
 | 2407 | 	pid_t pgrp_nr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | 	int retval = tty_check_change(real_tty); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2409 | 	unsigned long flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 |  | 
 | 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. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2417 | 	    (real_tty->session != task_session(current))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | 		return -ENOTTY; | 
| Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 2419 | 	if (get_user(pgrp_nr, p)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2420 | 		return -EFAULT; | 
| Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 2421 | 	if (pgrp_nr < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | 		return -EINVAL; | 
| Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 2423 | 	rcu_read_lock(); | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2424 | 	pgrp = find_vpid(pgrp_nr); | 
| Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 2425 | 	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 Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2432 | 	spin_lock_irqsave(&tty->ctrl_lock, flags); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2433 | 	put_pid(real_tty->pgrp); | 
 | 2434 | 	real_tty->pgrp = get_pid(pgrp); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 2435 | 	spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Eric W. Biederman | 04a2e6a | 2007-02-12 00:52:56 -0800 | [diff] [blame] | 2436 | out_unlock: | 
 | 2437 | 	rcu_read_unlock(); | 
 | 2438 | 	return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | } | 
 | 2440 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2441 | /** | 
 | 2442 |  *	tiocgsid		-	get session id | 
 | 2443 |  *	@tty: tty passed by user | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2444 |  *	@real_tty: tty side of the tty passed by the user if a pty else the tty | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2445 |  *	@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 Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2450 |  *	Locking: none. Reference to current->signal->tty is safe. | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2451 |  */ | 
 | 2452 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | static 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. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2461 | 	if (!real_tty->session) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | 		return -ENOTTY; | 
| Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2463 | 	return put_user(pid_vnr(real_tty->session), p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2464 | } | 
 | 2465 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2466 | /** | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | static int tiocsetd(struct tty_struct *tty, int __user *p) | 
 | 2477 | { | 
 | 2478 | 	int ldisc; | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2479 | 	int ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 |  | 
 | 2481 | 	if (get_user(ldisc, p)) | 
 | 2482 | 		return -EFAULT; | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2483 |  | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2484 | 	ret = tty_set_ldisc(tty, ldisc); | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2485 |  | 
 | 2486 | 	return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2487 | } | 
 | 2488 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2489 | /** | 
 | 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 Cox | 2829823 | 2006-09-29 02:00:58 -0700 | [diff] [blame] | 2498 |  *		atomic_write_lock serializes | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2499 |  * | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2500 |  */ | 
 | 2501 |  | 
| Domen Puncer | b20f3ae | 2005-06-25 14:58:42 -0700 | [diff] [blame] | 2502 | static int send_break(struct tty_struct *tty, unsigned int duration) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | { | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2504 | 	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); | 
 | 2521 | out: | 
 | 2522 | 		tty_write_unlock(tty); | 
 | 2523 | 		if (signal_pending(current)) | 
 | 2524 | 			retval = -EINTR; | 
 | 2525 | 	} | 
 | 2526 | 	return retval; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | } | 
 | 2528 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2529 | /** | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2530 |  *	tty_tiocmget		-	get modem status | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2531 |  *	@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 Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 2541 | static int tty_tiocmget(struct tty_struct *tty, int __user *p) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | { | 
 | 2543 | 	int retval = -EINVAL; | 
 | 2544 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2545 | 	if (tty->ops->tiocmget) { | 
| Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 2546 | 		retval = tty->ops->tiocmget(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 |  | 
 | 2548 | 		if (retval >= 0) | 
 | 2549 | 			retval = put_user(retval, p); | 
 | 2550 | 	} | 
 | 2551 | 	return retval; | 
 | 2552 | } | 
 | 2553 |  | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2554 | /** | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2555 |  *	tty_tiocmset		-	set modem status | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2556 |  *	@tty: tty device | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2557 |  *	@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 Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 2566 | static int tty_tiocmset(struct tty_struct *tty, unsigned int cmd, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | 	     unsigned __user *p) | 
 | 2568 | { | 
| Alan Cox | ae67751 | 2008-07-16 21:56:54 +0100 | [diff] [blame] | 2569 | 	int retval; | 
 | 2570 | 	unsigned int set, clear, val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 |  | 
| Alan Cox | ae67751 | 2008-07-16 21:56:54 +0100 | [diff] [blame] | 2572 | 	if (tty->ops->tiocmset == NULL) | 
 | 2573 | 		return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 |  | 
| Alan Cox | ae67751 | 2008-07-16 21:56:54 +0100 | [diff] [blame] | 2575 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | 	} | 
| Alan Cox | ae67751 | 2008-07-16 21:56:54 +0100 | [diff] [blame] | 2591 | 	set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP; | 
 | 2592 | 	clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP; | 
| Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 2593 | 	return tty->ops->tiocmset(tty, set, clear); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | } | 
 | 2595 |  | 
| Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 2596 | static 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 Cox | e8b70e7 | 2009-06-11 12:48:02 +0100 | [diff] [blame] | 2610 | struct 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 | } | 
 | 2617 | EXPORT_SYMBOL(tty_pair_get_tty); | 
 | 2618 |  | 
 | 2619 | struct 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 | } | 
 | 2626 | EXPORT_SYMBOL(tty_pair_get_pty); | 
 | 2627 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | /* | 
 | 2629 |  * Split this up, as gcc can choke on it otherwise.. | 
 | 2630 |  */ | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2631 | long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | { | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 2633 | 	struct tty_struct *tty = file_tty(file); | 
 | 2634 | 	struct tty_struct *real_tty; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | 	void __user *p = (void __user *)arg; | 
 | 2636 | 	int retval; | 
 | 2637 | 	struct tty_ldisc *ld; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2638 |  | 
| Al Viro | 6131ffa | 2013-02-27 16:59:05 -0500 | [diff] [blame] | 2639 | 	if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl")) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | 		return -EINVAL; | 
 | 2641 |  | 
| Alan Cox | e8b70e7 | 2009-06-11 12:48:02 +0100 | [diff] [blame] | 2642 | 	real_tty = tty_pair_get_tty(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 |  | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2652 | 	case TCSBRKP: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | 		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 Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2664 | 	/* | 
 | 2665 | 	 *	Now do the stuff. | 
 | 2666 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2667 | 	switch (cmd) { | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2668 | 	case TIOCSTI: | 
 | 2669 | 		return tiocsti(tty, p); | 
 | 2670 | 	case TIOCGWINSZ: | 
| Alan Cox | 8f52002 | 2008-10-13 10:38:46 +0100 | [diff] [blame] | 2671 | 		return tiocgwinsz(real_tty, p); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2672 | 	case TIOCSWINSZ: | 
| Alan Cox | fc6f6238 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 2673 | 		return tiocswinsz(real_tty, p); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2674 | 	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 Gorcunov | 84fd7bd | 2012-10-24 23:43:22 +0400 | [diff] [blame] | 2684 | 	case TIOCGEXCL: | 
 | 2685 | 	{ | 
 | 2686 | 		int excl = test_bit(TTY_EXCLUSIVE, &tty->flags); | 
 | 2687 | 		return put_user(excl, (int __user *)p); | 
 | 2688 | 	} | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2689 | 	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 Cox | c65c9bc | 2009-06-11 12:50:12 +0100 | [diff] [blame] | 2703 | 		return put_user(tty->ldisc->ops->num, (int __user *)p); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2704 | 	case TIOCSETD: | 
 | 2705 | 		return tiocsetd(tty, p); | 
| Kay Sievers | 3c95c98 | 2011-02-17 18:39:28 +0100 | [diff] [blame] | 2706 | 	case TIOCVHANGUP: | 
 | 2707 | 		if (!capable(CAP_SYS_ADMIN)) | 
 | 2708 | 			return -EPERM; | 
 | 2709 | 		tty_vhangup(tty); | 
 | 2710 | 		return 0; | 
| Werner Fink | b7b8de0 | 2010-12-03 12:48:23 +0100 | [diff] [blame] | 2711 | 	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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2716 | 	/* | 
 | 2717 | 	 * Break handling | 
 | 2718 | 	 */ | 
 | 2719 | 	case TIOCSBRK:	/* Turn break on, unconditionally */ | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2720 | 		if (tty->ops->break_ctl) | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2721 | 			return tty->ops->break_ctl(tty, -1); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2722 | 		return 0; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2723 | 	case TIOCCBRK:	/* Turn break off, unconditionally */ | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2724 | 		if (tty->ops->break_ctl) | 
| Alan Cox | 9e98966 | 2008-07-22 11:18:03 +0100 | [diff] [blame] | 2725 | 			return tty->ops->break_ctl(tty, 0); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2726 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | 		 */ | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2732 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 |  | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2738 | 	case TIOCMGET: | 
| Alan Cox | 60b33c1 | 2011-02-14 16:26:14 +0000 | [diff] [blame] | 2739 | 		return tty_tiocmget(tty, p); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2740 | 	case TIOCMSET: | 
 | 2741 | 	case TIOCMBIC: | 
 | 2742 | 	case TIOCMBIS: | 
| Alan Cox | 20b9d17 | 2011-02-14 16:26:50 +0000 | [diff] [blame] | 2743 | 		return tty_tiocmset(tty, cmd, p); | 
| Alan Cox | d281da7 | 2010-09-16 18:21:24 +0100 | [diff] [blame] | 2744 | 	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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2750 | 	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 Fulghum | c5c34d4 | 2007-05-12 10:36:55 -0700 | [diff] [blame] | 2756 | 			break; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2757 | 		} | 
 | 2758 | 		break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | 	} | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2760 | 	if (tty->ops->ioctl) { | 
| Alan Cox | 6caa76b | 2011-02-14 16:27:22 +0000 | [diff] [blame] | 2761 | 		retval = (tty->ops->ioctl)(tty, cmd, arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | 		if (retval != -ENOIOCTLCMD) | 
 | 2763 | 			return retval; | 
 | 2764 | 	} | 
 | 2765 | 	ld = tty_ldisc_ref_wait(tty); | 
 | 2766 | 	retval = -EINVAL; | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 2767 | 	if (ld->ops->ioctl) { | 
 | 2768 | 		retval = ld->ops->ioctl(tty, file, cmd, arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | 		if (retval == -ENOIOCTLCMD) | 
| Wanlong Gao | bbb63c5 | 2012-08-27 15:23:12 +0800 | [diff] [blame] | 2770 | 			retval = -ENOTTY; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | 	} | 
 | 2772 | 	tty_ldisc_deref(ld); | 
 | 2773 | 	return retval; | 
 | 2774 | } | 
 | 2775 |  | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2776 | #ifdef CONFIG_COMPAT | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2777 | static long tty_compat_ioctl(struct file *file, unsigned int cmd, | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2778 | 				unsigned long arg) | 
 | 2779 | { | 
| Nick Piggin | d996b62 | 2010-08-18 04:37:36 +1000 | [diff] [blame] | 2780 | 	struct tty_struct *tty = file_tty(file); | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2781 | 	struct tty_ldisc *ld; | 
 | 2782 | 	int retval = -ENOIOCTLCMD; | 
 | 2783 |  | 
| Al Viro | 6131ffa | 2013-02-27 16:59:05 -0500 | [diff] [blame] | 2784 | 	if (tty_paranoia_check(tty, file_inode(file), "tty_ioctl")) | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2785 | 		return -EINVAL; | 
 | 2786 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2787 | 	if (tty->ops->compat_ioctl) { | 
| Alan Cox | 6caa76b | 2011-02-14 16:27:22 +0000 | [diff] [blame] | 2788 | 		retval = (tty->ops->compat_ioctl)(tty, cmd, arg); | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2789 | 		if (retval != -ENOIOCTLCMD) | 
 | 2790 | 			return retval; | 
 | 2791 | 	} | 
 | 2792 |  | 
 | 2793 | 	ld = tty_ldisc_ref_wait(tty); | 
| Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 2794 | 	if (ld->ops->compat_ioctl) | 
 | 2795 | 		retval = ld->ops->compat_ioctl(tty, file, cmd, arg); | 
| Thomas Meyer | 8193c42 | 2011-10-05 23:13:13 +0200 | [diff] [blame] | 2796 | 	else | 
 | 2797 | 		retval = n_tty_compat_ioctl_helper(tty, file, cmd, arg); | 
| Paul Fulghum | e10cc1d | 2007-05-10 22:22:50 -0700 | [diff] [blame] | 2798 | 	tty_ldisc_deref(ld); | 
 | 2799 |  | 
 | 2800 | 	return retval; | 
 | 2801 | } | 
 | 2802 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 |  | 
| Al Viro | c3c073f | 2012-08-21 22:32:06 -0400 | [diff] [blame] | 2804 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | /* | 
 | 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 Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2816 |  * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 |  * 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. Biederman | 8b6312f | 2007-02-10 01:44:34 -0800 | [diff] [blame] | 2830 | void __do_SAK(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2831 | { | 
 | 2832 | #ifdef TTY_SOFT_SAK | 
 | 2833 | 	tty_hangup(tty); | 
 | 2834 | #else | 
| Eric W. Biederman | 652486f | 2006-03-28 16:11:02 -0800 | [diff] [blame] | 2835 | 	struct task_struct *g, *p; | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2836 | 	struct pid *session; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | 	int		i; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2838 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | 	if (!tty) | 
 | 2840 | 		return; | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 2841 | 	session = tty->session; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2842 |  | 
| Dan Carpenter | b3f13de | 2006-12-13 00:35:09 -0800 | [diff] [blame] | 2843 | 	tty_ldisc_flush(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2844 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2845 | 	tty_driver_flush_buffer(tty); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 2846 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | 	read_lock(&tasklist_lock); | 
| Eric W. Biederman | 652486f | 2006-03-28 16:11:02 -0800 | [diff] [blame] | 2848 | 	/* Kill the entire session */ | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2849 | 	do_each_pid_task(session, PIDTYPE_SID, p) { | 
| Eric W. Biederman | 652486f | 2006-03-28 16:11:02 -0800 | [diff] [blame] | 2850 | 		printk(KERN_NOTICE "SAK: killed process %d" | 
| Oleg Nesterov | 1b0f7ff | 2009-04-02 16:58:39 -0700 | [diff] [blame] | 2851 | 			" (%s): task_session(p)==tty->session\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 2852 | 			task_pid_nr(p), p->comm); | 
| Eric W. Biederman | 652486f | 2006-03-28 16:11:02 -0800 | [diff] [blame] | 2853 | 		send_sig(SIGKILL, p, 1); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2854 | 	} while_each_pid_task(session, PIDTYPE_SID, p); | 
| Eric W. Biederman | 652486f | 2006-03-28 16:11:02 -0800 | [diff] [blame] | 2855 | 	/* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | 			printk(KERN_NOTICE "SAK: killed process %d" | 
| Oleg Nesterov | 1b0f7ff | 2009-04-02 16:58:39 -0700 | [diff] [blame] | 2861 | 			    " (%s): task_session(p)==tty->session\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 2862 | 			    task_pid_nr(p), p->comm); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | 			send_sig(SIGKILL, p, 1); | 
 | 2864 | 			continue; | 
 | 2865 | 		} | 
 | 2866 | 		task_lock(p); | 
| Al Viro | c3c073f | 2012-08-21 22:32:06 -0400 | [diff] [blame] | 2867 | 		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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | 		} | 
 | 2874 | 		task_unlock(p); | 
| Eric W. Biederman | 652486f | 2006-03-28 16:11:02 -0800 | [diff] [blame] | 2875 | 	} while_each_thread(g, p); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | 	read_unlock(&tasklist_lock); | 
 | 2877 | #endif | 
 | 2878 | } | 
 | 2879 |  | 
| Eric W. Biederman | 8b6312f | 2007-02-10 01:44:34 -0800 | [diff] [blame] | 2880 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | /* | 
 | 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 |  */ | 
 | 2893 | void do_SAK(struct tty_struct *tty) | 
 | 2894 | { | 
 | 2895 | 	if (!tty) | 
 | 2896 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | 	schedule_work(&tty->SAK_work); | 
 | 2898 | } | 
 | 2899 |  | 
 | 2900 | EXPORT_SYMBOL(do_SAK); | 
 | 2901 |  | 
| Greg Kroah-Hartman | 6e9430a | 2013-02-06 15:59:18 -0800 | [diff] [blame] | 2902 | static int dev_match_devt(struct device *dev, const void *data) | 
| Dmitry Eremin-Solenikov | 30004ac | 2010-08-09 18:22:49 +0400 | [diff] [blame] | 2903 | { | 
| Greg Kroah-Hartman | 6e9430a | 2013-02-06 15:59:18 -0800 | [diff] [blame] | 2904 | 	const dev_t *devt = data; | 
| Dmitry Eremin-Solenikov | 30004ac | 2010-08-09 18:22:49 +0400 | [diff] [blame] | 2905 | 	return dev->devt == *devt; | 
 | 2906 | } | 
 | 2907 |  | 
 | 2908 | /* Must put_device() after it's unused! */ | 
 | 2909 | static 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 Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2916 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2917 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2925 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 2926 | void initialize_tty_struct(struct tty_struct *tty, | 
 | 2927 | 		struct tty_driver *driver, int idx) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | { | 
 | 2929 | 	memset(tty, 0, sizeof(struct tty_struct)); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 2930 | 	kref_init(&tty->kref); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | 	tty->magic = TTY_MAGIC; | 
| Alan Cox | 01e1abb | 2008-07-22 11:16:55 +0100 | [diff] [blame] | 2932 | 	tty_ldisc_init(tty); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 2933 | 	tty->session = NULL; | 
 | 2934 | 	tty->pgrp = NULL; | 
| Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 2935 | 	mutex_init(&tty->legacy_mutex); | 
| Arjan van de Ven | 5785c95 | 2006-09-29 02:00:43 -0700 | [diff] [blame] | 2936 | 	mutex_init(&tty->termios_mutex); | 
| Alan Cox | c65c9bc | 2009-06-11 12:50:12 +0100 | [diff] [blame] | 2937 | 	mutex_init(&tty->ldisc_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2938 | 	init_waitqueue_head(&tty->write_wait); | 
 | 2939 | 	init_waitqueue_head(&tty->read_wait); | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 2940 | 	INIT_WORK(&tty->hangup_work, do_tty_hangup); | 
| Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 2941 | 	mutex_init(&tty->atomic_write_lock); | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2942 | 	spin_lock_init(&tty->ctrl_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2943 | 	INIT_LIST_HEAD(&tty->tty_files); | 
| Eric W. Biederman | 7f1f86a | 2007-02-13 14:38:58 -0700 | [diff] [blame] | 2944 | 	INIT_WORK(&tty->SAK_work, do_SAK_work); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 2945 |  | 
 | 2946 | 	tty->driver = driver; | 
 | 2947 | 	tty->ops = driver->ops; | 
 | 2948 | 	tty->index = idx; | 
 | 2949 | 	tty_line_name(driver, idx, tty->name); | 
| Dmitry Eremin-Solenikov | 30004ac | 2010-08-09 18:22:49 +0400 | [diff] [blame] | 2950 | 	tty->dev = tty_get_device(tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | } | 
 | 2952 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2953 | /** | 
| Jiri Slaby | 6716671 | 2011-03-23 10:48:35 +0100 | [diff] [blame] | 2954 |  *	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 |  */ | 
 | 2962 | void deinitialize_tty_struct(struct tty_struct *tty) | 
 | 2963 | { | 
 | 2964 | 	tty_ldisc_deinit(tty); | 
 | 2965 | } | 
 | 2966 |  | 
 | 2967 | /** | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2968 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2978 |  | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2979 | int tty_put_char(struct tty_struct *tty, unsigned char ch) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | { | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2981 | 	if (tty->ops->put_char) | 
 | 2982 | 		return tty->ops->put_char(tty, ch); | 
 | 2983 | 	return tty->ops->write(tty, &ch, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | } | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 2985 | EXPORT_SYMBOL_GPL(tty_put_char); | 
 | 2986 |  | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 2987 | struct class *tty_class; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 |  | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 2989 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2998 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 2999 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 |  * | 
| Greg Kroah-Hartman | 01107d3 | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3006 |  *	Returns a pointer to the struct device for this tty device | 
 | 3007 |  *	(or ERR_PTR(-EFOO) on error). | 
| Hansjoerg Lipp | 1cdcb6b | 2006-04-22 18:36:53 +0200 | [diff] [blame] | 3008 |  * | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 3009 |  *	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3015 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 3016 |  | 
| Greg Kroah-Hartman | 01107d3 | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3017 | struct device *tty_register_device(struct tty_driver *driver, unsigned index, | 
 | 3018 | 				   struct device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | { | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3020 | 	return tty_register_device_attr(driver, index, device, NULL, NULL); | 
 | 3021 | } | 
 | 3022 | EXPORT_SYMBOL(tty_register_device); | 
 | 3023 |  | 
| Tomas Hlavacek | b1b7991 | 2012-09-06 23:17:47 +0200 | [diff] [blame] | 3024 | static 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 Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3030 | /** | 
 | 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 |  */ | 
 | 3050 | struct 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3055 | 	char name[64]; | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3056 | 	dev_t devt = MKDEV(driver->major, driver->minor_start) + index; | 
 | 3057 | 	struct device *dev = NULL; | 
 | 3058 | 	int retval = -ENODEV; | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3059 | 	bool cdev = false; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3060 |  | 
 | 3061 | 	if (index >= driver->num) { | 
 | 3062 | 		printk(KERN_ERR "Attempt to register invalid tty line number " | 
 | 3063 | 		       " (%d).\n", index); | 
| Hansjoerg Lipp | 1cdcb6b | 2006-04-22 18:36:53 +0200 | [diff] [blame] | 3064 | 		return ERR_PTR(-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | 	} | 
 | 3066 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | 	if (driver->type == TTY_DRIVER_TYPE_PTY) | 
 | 3068 | 		pty_line_name(driver, index, name); | 
 | 3069 | 	else | 
 | 3070 | 		tty_line_name(driver, index, name); | 
| Hansjoerg Lipp | 1cdcb6b | 2006-04-22 18:36:53 +0200 | [diff] [blame] | 3071 |  | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3072 | 	if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) { | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3073 | 		retval = tty_cdev_add(driver, devt, index, 1); | 
 | 3074 | 		if (retval) | 
 | 3075 | 			goto error; | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3076 | 		cdev = true; | 
 | 3077 | 	} | 
 | 3078 |  | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3079 | 	dev = kzalloc(sizeof(*dev), GFP_KERNEL); | 
 | 3080 | 	if (!dev) { | 
 | 3081 | 		retval = -ENOMEM; | 
 | 3082 | 		goto error; | 
 | 3083 | 	} | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3084 |  | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3085 | 	dev->devt = devt; | 
 | 3086 | 	dev->class = tty_class; | 
 | 3087 | 	dev->parent = device; | 
| Tomas Hlavacek | b1b7991 | 2012-09-06 23:17:47 +0200 | [diff] [blame] | 3088 | 	dev->release = tty_device_create_release; | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3089 | 	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 |  | 
 | 3099 | error: | 
 | 3100 | 	put_device(dev); | 
 | 3101 | 	if (cdev) | 
 | 3102 | 		cdev_del(&driver->cdevs[index]); | 
 | 3103 | 	return ERR_PTR(retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | } | 
| Tomas Hlavacek | 6915c0e | 2012-09-06 03:17:18 +0200 | [diff] [blame] | 3105 | EXPORT_SYMBOL_GPL(tty_register_device_attr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 |  | 
 | 3107 | /** | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 3108 |  * 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 |  * | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 3112 |  * 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 |  */ | 
| Alan Cox | af9b897 | 2006-08-27 01:24:01 -0700 | [diff] [blame] | 3117 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3118 | void tty_unregister_device(struct tty_driver *driver, unsigned index) | 
 | 3119 | { | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 3120 | 	device_destroy(tty_class, | 
 | 3121 | 		MKDEV(driver->major, driver->minor_start) + index); | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3122 | 	if (!(driver->flags & TTY_DRIVER_DYNAMIC_ALLOC)) | 
 | 3123 | 		cdev_del(&driver->cdevs[index]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3125 | EXPORT_SYMBOL(tty_unregister_device); | 
 | 3126 |  | 
| Jiri Slaby | 7f0bc6a | 2012-08-07 21:47:42 +0200 | [diff] [blame] | 3127 | /** | 
 | 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 |  */ | 
 | 3136 | struct tty_driver *__tty_alloc_driver(unsigned int lines, struct module *owner, | 
 | 3137 | 		unsigned long flags) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | { | 
 | 3139 | 	struct tty_driver *driver; | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3140 | 	unsigned int cdevs = 1; | 
| Jiri Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3141 | 	int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 |  | 
| Jiri Slaby | 0019b40 | 2012-08-08 22:26:43 +0200 | [diff] [blame] | 3143 | 	if (!lines || (flags & TTY_DRIVER_UNNUMBERED_NODE && lines > 1)) | 
| Jiri Slaby | 7f0bc6a | 2012-08-07 21:47:42 +0200 | [diff] [blame] | 3144 | 		return ERR_PTR(-EINVAL); | 
 | 3145 |  | 
| Jean Delvare | 506eb99 | 2007-07-15 23:40:14 -0700 | [diff] [blame] | 3146 | 	driver = kzalloc(sizeof(struct tty_driver), GFP_KERNEL); | 
| Jiri Slaby | 7f0bc6a | 2012-08-07 21:47:42 +0200 | [diff] [blame] | 3147 | 	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 Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3155 |  | 
 | 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 Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3174 | 		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 Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3181 | 	} | 
| Jiri Slaby | 7f0bc6a | 2012-08-07 21:47:42 +0200 | [diff] [blame] | 3182 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3183 | 	return driver; | 
| Jiri Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3184 | err_free_all: | 
 | 3185 | 	kfree(driver->ports); | 
 | 3186 | 	kfree(driver->ttys); | 
 | 3187 | 	kfree(driver->termios); | 
 | 3188 | 	kfree(driver); | 
 | 3189 | 	return ERR_PTR(err); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | } | 
| Jiri Slaby | 7f0bc6a | 2012-08-07 21:47:42 +0200 | [diff] [blame] | 3191 | EXPORT_SYMBOL(__tty_alloc_driver); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 |  | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3193 | static void destruct_tty_driver(struct kref *kref) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3194 | { | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3195 | 	struct tty_driver *driver = container_of(kref, struct tty_driver, kref); | 
 | 3196 | 	int i; | 
 | 3197 | 	struct ktermios *tp; | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3198 |  | 
 | 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 Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3211 | 			if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) | 
 | 3212 | 				tty_unregister_device(driver, i); | 
 | 3213 | 		} | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3214 | 		proc_tty_unregister_driver(driver); | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3215 | 		if (driver->flags & TTY_DRIVER_DYNAMIC_ALLOC) | 
 | 3216 | 			cdev_del(&driver->cdevs[0]); | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3217 | 	} | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3218 | 	kfree(driver->cdevs); | 
| Jiri Slaby | 04831dc | 2012-06-04 13:35:36 +0200 | [diff] [blame] | 3219 | 	kfree(driver->ports); | 
| Jiri Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3220 | 	kfree(driver->termios); | 
 | 3221 | 	kfree(driver->ttys); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3222 | 	kfree(driver); | 
 | 3223 | } | 
 | 3224 |  | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3225 | void tty_driver_kref_put(struct tty_driver *driver) | 
 | 3226 | { | 
 | 3227 | 	kref_put(&driver->kref, destruct_tty_driver); | 
 | 3228 | } | 
 | 3229 | EXPORT_SYMBOL(tty_driver_kref_put); | 
 | 3230 |  | 
| Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 3231 | void tty_set_operations(struct tty_driver *driver, | 
 | 3232 | 			const struct tty_operations *op) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3233 | { | 
| Alan Cox | f34d7a5 | 2008-04-30 00:54:13 -0700 | [diff] [blame] | 3234 | 	driver->ops = op; | 
 | 3235 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3236 | EXPORT_SYMBOL(tty_set_operations); | 
 | 3237 |  | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3238 | void put_tty_driver(struct tty_driver *d) | 
 | 3239 | { | 
 | 3240 | 	tty_driver_kref_put(d); | 
 | 3241 | } | 
 | 3242 | EXPORT_SYMBOL(put_tty_driver); | 
 | 3243 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | /* | 
 | 3245 |  * Called by a tty driver to register itself. | 
 | 3246 |  */ | 
 | 3247 | int tty_register_driver(struct tty_driver *driver) | 
 | 3248 | { | 
 | 3249 | 	int error; | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 3250 | 	int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3251 | 	dev_t dev; | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3252 | 	struct device *d; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3254 | 	if (!driver->major) { | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 3255 | 		error = alloc_chrdev_region(&dev, driver->minor_start, | 
 | 3256 | 						driver->num, driver->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3257 | 		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 Uytterhoeven | e5717c4 | 2007-02-20 15:45:21 +0100 | [diff] [blame] | 3263 | 		error = register_chrdev_region(dev, driver->num, driver->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | 	} | 
| Jiri Slaby | 9bb8a3d | 2012-06-04 13:35:35 +0200 | [diff] [blame] | 3265 | 	if (error < 0) | 
| Jiri Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3266 | 		goto err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3267 |  | 
| Jiri Slaby | 7e73eca | 2012-08-08 22:26:44 +0200 | [diff] [blame] | 3268 | 	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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 |  | 
| Alexey Dobriyan | ca509f6 | 2007-05-08 00:27:12 -0700 | [diff] [blame] | 3274 | 	mutex_lock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | 	list_add(&driver->tty_drivers, &tty_drivers); | 
| Alexey Dobriyan | ca509f6 | 2007-05-08 00:27:12 -0700 | [diff] [blame] | 3276 | 	mutex_unlock(&tty_mutex); | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 3277 |  | 
 | 3278 | 	if (!(driver->flags & TTY_DRIVER_DYNAMIC_DEV)) { | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3279 | 		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 Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3283 | 				goto err_unreg_devs; | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3284 | 			} | 
 | 3285 | 		} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3286 | 	} | 
 | 3287 | 	proc_tty_register_driver(driver); | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3288 | 	driver->flags |= TTY_DRIVER_INSTALLED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | 	return 0; | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3290 |  | 
| Jiri Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3291 | err_unreg_devs: | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3292 | 	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 Slaby | 9bb8a3d | 2012-06-04 13:35:35 +0200 | [diff] [blame] | 3299 | err_unreg_char: | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3300 | 	unregister_chrdev_region(dev, driver->num); | 
| Jiri Slaby | 16a0208 | 2012-08-08 22:26:42 +0200 | [diff] [blame] | 3301 | err: | 
| Vasiliy Kulikov | b670bde | 2010-09-05 22:32:22 +0400 | [diff] [blame] | 3302 | 	return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3303 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3304 | EXPORT_SYMBOL(tty_register_driver); | 
 | 3305 |  | 
 | 3306 | /* | 
 | 3307 |  * Called by a tty driver to unregister itself. | 
 | 3308 |  */ | 
 | 3309 | int tty_unregister_driver(struct tty_driver *driver) | 
 | 3310 | { | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3311 | #if 0 | 
 | 3312 | 	/* FIXME */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | 	if (driver->refcount) | 
 | 3314 | 		return -EBUSY; | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3315 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3316 | 	unregister_chrdev_region(MKDEV(driver->major, driver->minor_start), | 
 | 3317 | 				driver->num); | 
| Alexey Dobriyan | ca509f6 | 2007-05-08 00:27:12 -0700 | [diff] [blame] | 3318 | 	mutex_lock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3319 | 	list_del(&driver->tty_drivers); | 
| Alexey Dobriyan | ca509f6 | 2007-05-08 00:27:12 -0700 | [diff] [blame] | 3320 | 	mutex_unlock(&tty_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | 	return 0; | 
 | 3322 | } | 
| Alan Cox | 7d7b93c | 2008-10-13 10:42:09 +0100 | [diff] [blame] | 3323 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3324 | EXPORT_SYMBOL(tty_unregister_driver); | 
 | 3325 |  | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3326 | dev_t tty_devnum(struct tty_struct *tty) | 
 | 3327 | { | 
 | 3328 | 	return MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index; | 
 | 3329 | } | 
 | 3330 | EXPORT_SYMBOL(tty_devnum); | 
 | 3331 |  | 
 | 3332 | void proc_clear_tty(struct task_struct *p) | 
 | 3333 | { | 
| Arjan van de Ven | 7c3b1dc | 2008-10-15 10:52:34 +0100 | [diff] [blame] | 3334 | 	unsigned long flags; | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 3335 | 	struct tty_struct *tty; | 
| Arjan van de Ven | 7c3b1dc | 2008-10-15 10:52:34 +0100 | [diff] [blame] | 3336 | 	spin_lock_irqsave(&p->sighand->siglock, flags); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 3337 | 	tty = p->signal->tty; | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3338 | 	p->signal->tty = NULL; | 
| Arjan van de Ven | 7c3b1dc | 2008-10-15 10:52:34 +0100 | [diff] [blame] | 3339 | 	spin_unlock_irqrestore(&p->sighand->siglock, flags); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 3340 | 	tty_kref_put(tty); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3341 | } | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3342 |  | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 3343 | /* Called under the sighand lock */ | 
 | 3344 |  | 
| Eric W. Biederman | 2a65f1d | 2007-05-08 00:26:53 -0700 | [diff] [blame] | 3345 | static void __proc_set_tty(struct task_struct *tsk, struct tty_struct *tty) | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3346 | { | 
 | 3347 | 	if (tty) { | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 3348 | 		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. Biederman | d9c1e9a | 2007-03-18 12:45:44 -0600 | [diff] [blame] | 3351 | 		put_pid(tty->session); | 
 | 3352 | 		put_pid(tty->pgrp); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 3353 | 		tty->pgrp = get_pid(task_pgrp(tsk)); | 
| Alan Cox | 47f8683 | 2008-04-30 00:53:30 -0700 | [diff] [blame] | 3354 | 		spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
 | 3355 | 		tty->session = get_pid(task_session(tsk)); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 3356 | 		if (tsk->signal->tty) { | 
 | 3357 | 			printk(KERN_DEBUG "tty not NULL!!\n"); | 
 | 3358 | 			tty_kref_put(tsk->signal->tty); | 
 | 3359 | 		} | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3360 | 	} | 
| Eric W. Biederman | 2a65f1d | 2007-05-08 00:26:53 -0700 | [diff] [blame] | 3361 | 	put_pid(tsk->signal->tty_old_pgrp); | 
| Alan Cox | 9c9f4de | 2008-10-13 10:37:26 +0100 | [diff] [blame] | 3362 | 	tsk->signal->tty = tty_kref_get(tty); | 
| Eric W. Biederman | ab521dc | 2007-02-12 00:53:00 -0800 | [diff] [blame] | 3363 | 	tsk->signal->tty_old_pgrp = NULL; | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3364 | } | 
 | 3365 |  | 
| Eric W. Biederman | 98a27ba | 2007-05-08 00:26:56 -0700 | [diff] [blame] | 3366 | static void proc_set_tty(struct task_struct *tsk, struct tty_struct *tty) | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3367 | { | 
 | 3368 | 	spin_lock_irq(&tsk->sighand->siglock); | 
| Eric W. Biederman | 2a65f1d | 2007-05-08 00:26:53 -0700 | [diff] [blame] | 3369 | 	__proc_set_tty(tsk, tty); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3370 | 	spin_unlock_irq(&tsk->sighand->siglock); | 
 | 3371 | } | 
 | 3372 |  | 
 | 3373 | struct tty_struct *get_current_tty(void) | 
 | 3374 | { | 
 | 3375 | 	struct tty_struct *tty; | 
| Alan Cox | 934e6eb | 2008-10-13 10:40:43 +0100 | [diff] [blame] | 3376 | 	unsigned long flags; | 
 | 3377 |  | 
 | 3378 | 	spin_lock_irqsave(¤t->sighand->siglock, flags); | 
| Alan Cox | 452a00d | 2008-10-13 10:39:13 +0100 | [diff] [blame] | 3379 | 	tty = tty_kref_get(current->signal->tty); | 
| Alan Cox | 934e6eb | 2008-10-13 10:40:43 +0100 | [diff] [blame] | 3380 | 	spin_unlock_irqrestore(¤t->sighand->siglock, flags); | 
| Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 3381 | 	return tty; | 
 | 3382 | } | 
| Heiko Carstens | a311f74 | 2006-12-13 00:33:41 -0800 | [diff] [blame] | 3383 | EXPORT_SYMBOL_GPL(get_current_tty); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3384 |  | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 3385 | void tty_default_fops(struct file_operations *fops) | 
 | 3386 | { | 
 | 3387 | 	*fops = tty_fops; | 
 | 3388 | } | 
 | 3389 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3390 | /* | 
 | 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 |  */ | 
 | 3396 | void __init console_init(void) | 
 | 3397 | { | 
 | 3398 | 	initcall_t *call; | 
 | 3399 |  | 
 | 3400 | 	/* Setup the default TTY line discipline. */ | 
| Alan Cox | 01e1abb | 2008-07-22 11:16:55 +0100 | [diff] [blame] | 3401 | 	tty_ldisc_begin(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 |  | 
 | 3403 | 	/* | 
| Alan Cox | 37bdfb0 | 2008-02-08 04:18:47 -0800 | [diff] [blame] | 3404 | 	 * set up the console device so that later boot sequences can | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3405 | 	 * inform about problems etc.. | 
 | 3406 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3407 | 	call = __con_initcall_start; | 
 | 3408 | 	while (call < __con_initcall_end) { | 
 | 3409 | 		(*call)(); | 
 | 3410 | 		call++; | 
 | 3411 | 	} | 
 | 3412 | } | 
 | 3413 |  | 
| Al Viro | 2c9ede5 | 2011-07-23 20:24:48 -0400 | [diff] [blame] | 3414 | static char *tty_devnode(struct device *dev, umode_t *mode) | 
| Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 3415 | { | 
 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3424 | static int __init tty_class_init(void) | 
 | 3425 | { | 
| gregkh@suse.de | 7fe845d | 2005-03-15 14:23:15 -0800 | [diff] [blame] | 3426 | 	tty_class = class_create(THIS_MODULE, "tty"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3427 | 	if (IS_ERR(tty_class)) | 
 | 3428 | 		return PTR_ERR(tty_class); | 
| Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 3429 | 	tty_class->devnode = tty_devnode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | 	return 0; | 
 | 3431 | } | 
 | 3432 |  | 
 | 3433 | postcore_initcall(tty_class_init); | 
 | 3434 |  | 
 | 3435 | /* 3/2004 jmc: why do these devices exist? */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | static struct cdev tty_cdev, console_cdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3437 |  | 
| Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3438 | static 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 Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3446 | 	console_lock(); | 
| Kay Sievers | a2a6a82 | 2011-01-09 16:39:14 +0100 | [diff] [blame] | 3447 | 	for_each_console(c) { | 
| Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3448 | 		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 Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3461 | 	console_unlock(); | 
| Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3462 |  | 
 | 3463 | 	return count; | 
 | 3464 | } | 
 | 3465 | static DEVICE_ATTR(active, S_IRUGO, show_cons_active, NULL); | 
 | 3466 |  | 
 | 3467 | static struct device *consdev; | 
 | 3468 |  | 
 | 3469 | void console_sysfs_notify(void) | 
 | 3470 | { | 
 | 3471 | 	if (consdev) | 
 | 3472 | 		sysfs_notify(&consdev->kobj, NULL, "active"); | 
 | 3473 | } | 
 | 3474 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3475 | /* | 
 | 3476 |  * Ok, now we can initialize the rest of the tty devices and can count | 
 | 3477 |  * on memory allocations, interrupts etc.. | 
 | 3478 |  */ | 
| David Howells | 31d1d48 | 2010-08-06 16:34:43 +0100 | [diff] [blame] | 3479 | int __init tty_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3480 | { | 
 | 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 Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3485 | 	device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3486 |  | 
 | 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 Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3491 | 	consdev = device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL, | 
| Greg Kroah-Hartman | 47aa579 | 2008-05-21 12:52:33 -0700 | [diff] [blame] | 3492 | 			      "console"); | 
| Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3493 | 	if (IS_ERR(consdev)) | 
 | 3494 | 		consdev = NULL; | 
 | 3495 | 	else | 
| Kay Sievers | a2a6a82 | 2011-01-09 16:39:14 +0100 | [diff] [blame] | 3496 | 		WARN_ON(device_create_file(consdev, &dev_attr_active) < 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3497 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3498 | #ifdef CONFIG_VT | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 3499 | 	vty_init(&console_fops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3500 | #endif | 
 | 3501 | 	return 0; | 
 | 3502 | } | 
| David Howells | 31d1d48 | 2010-08-06 16:34:43 +0100 | [diff] [blame] | 3503 |  |