| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/drivers/char/pty.c | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 1991, 1992  Linus Torvalds | 
|  | 5 | * | 
|  | 6 | *  Added support for a Unix98-style ptmx device. | 
|  | 7 | *    -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 9 | *  When reading this code see also fs/devpts. In particular note that the | 
|  | 10 | *  driver_data field is used by the devpts side as a binding to the devpts | 
|  | 11 | *  inode. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | */ | 
|  | 13 |  | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 14 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 |  | 
|  | 16 | #include <linux/errno.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/interrupt.h> | 
|  | 18 | #include <linux/tty.h> | 
|  | 19 | #include <linux/tty_flip.h> | 
|  | 20 | #include <linux/fcntl.h> | 
| Alexey Dobriyan | d43c36d | 2009-10-07 17:09:06 +0400 | [diff] [blame] | 21 | #include <linux/sched.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/string.h> | 
|  | 23 | #include <linux/major.h> | 
|  | 24 | #include <linux/mm.h> | 
|  | 25 | #include <linux/init.h> | 
| Alexey Dobriyan | 405f557 | 2009-07-11 22:08:37 +0400 | [diff] [blame] | 26 | #include <linux/smp_lock.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/sysctl.h> | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 28 | #include <linux/device.h> | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 29 | #include <linux/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/bitops.h> | 
|  | 31 | #include <linux/devpts_fs.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |  | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 34 | #include <asm/system.h> | 
|  | 35 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #ifdef CONFIG_UNIX98_PTYS | 
| Roel Kluin | da2bdf9 | 2009-01-07 18:09:15 -0800 | [diff] [blame] | 37 | static struct tty_driver *ptm_driver; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | static struct tty_driver *pts_driver; | 
|  | 39 | #endif | 
|  | 40 |  | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 41 | static void pty_close(struct tty_struct *tty, struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 43 | BUG_ON(!tty); | 
|  | 44 | if (tty->driver->subtype == PTY_TYPE_MASTER) | 
|  | 45 | WARN_ON(tty->count > 1); | 
|  | 46 | else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | if (tty->count > 2) | 
|  | 48 | return; | 
|  | 49 | } | 
|  | 50 | wake_up_interruptible(&tty->read_wait); | 
|  | 51 | wake_up_interruptible(&tty->write_wait); | 
|  | 52 | tty->packet = 0; | 
|  | 53 | if (!tty->link) | 
|  | 54 | return; | 
|  | 55 | tty->link->packet = 0; | 
|  | 56 | set_bit(TTY_OTHER_CLOSED, &tty->link->flags); | 
|  | 57 | wake_up_interruptible(&tty->link->read_wait); | 
|  | 58 | wake_up_interruptible(&tty->link->write_wait); | 
|  | 59 | if (tty->driver->subtype == PTY_TYPE_MASTER) { | 
|  | 60 | set_bit(TTY_OTHER_CLOSED, &tty->flags); | 
|  | 61 | #ifdef CONFIG_UNIX98_PTYS | 
|  | 62 | if (tty->driver == ptm_driver) | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 63 | devpts_pty_kill(tty->link); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #endif | 
|  | 65 | tty_vhangup(tty->link); | 
|  | 66 | } | 
|  | 67 | } | 
|  | 68 |  | 
|  | 69 | /* | 
|  | 70 | * The unthrottle routine is called by the line discipline to signal | 
|  | 71 | * that it can receive more characters.  For PTY's, the TTY_THROTTLED | 
|  | 72 | * flag is always set, to force the line discipline to always call the | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 73 | * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * characters in the queue.  This is necessary since each time this | 
|  | 75 | * happens, we need to wake up any sleeping processes that could be | 
|  | 76 | * (1) trying to send data to the pty, or (2) waiting in wait_until_sent() | 
|  | 77 | * for the pty buffer to be drained. | 
|  | 78 | */ | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 79 | static void pty_unthrottle(struct tty_struct *tty) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 81 | tty_wakeup(tty->link); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | set_bit(TTY_THROTTLED, &tty->flags); | 
|  | 83 | } | 
|  | 84 |  | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 85 | /** | 
|  | 86 | *	pty_space	-	report space left for writing | 
|  | 87 | *	@to: tty we are writing into | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | * | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 89 | *	The tty buffers allow 64K but we sneak a peak and clip at 8K this | 
|  | 90 | *	allows a lot of overspill room for echo and other fun messes to | 
|  | 91 | *	be handled properly | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | */ | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 93 |  | 
|  | 94 | static int pty_space(struct tty_struct *to) | 
|  | 95 | { | 
|  | 96 | int n = 8192 - to->buf.memory_used; | 
|  | 97 | if (n < 0) | 
|  | 98 | return 0; | 
|  | 99 | return n; | 
|  | 100 | } | 
|  | 101 |  | 
|  | 102 | /** | 
|  | 103 | *	pty_write		-	write to a pty | 
|  | 104 | *	@tty: the tty we write from | 
|  | 105 | *	@buf: kernel buffer of data | 
|  | 106 | *	@count: bytes to write | 
|  | 107 | * | 
|  | 108 | *	Our "hardware" write method. Data is coming from the ldisc which | 
|  | 109 | *	may be in a non sleeping state. We simply throw this at the other | 
|  | 110 | *	end of the link as if we were an IRQ handler receiving stuff for | 
|  | 111 | *	the other side of the pty/tty pair. | 
|  | 112 | */ | 
|  | 113 |  | 
| Linus Torvalds | ac89a91 | 2009-09-05 13:27:10 -0700 | [diff] [blame] | 114 | static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { | 
|  | 116 | struct tty_struct *to = tty->link; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 |  | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 118 | if (tty->stopped) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | return 0; | 
|  | 120 |  | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 121 | if (c > 0) { | 
|  | 122 | /* Stuff the data into the input queue of the other end */ | 
|  | 123 | c = tty_insert_flip_string(to, buf, c); | 
|  | 124 | /* And shovel */ | 
| Linus Torvalds | 202c467 | 2009-09-18 07:05:58 -0700 | [diff] [blame] | 125 | if (c) { | 
|  | 126 | tty_flip_buffer_push(to); | 
|  | 127 | tty_wakeup(tty); | 
|  | 128 | } | 
| Alan Cox | 762faae | 2009-06-16 17:01:13 +0100 | [diff] [blame] | 129 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | return c; | 
|  | 131 | } | 
|  | 132 |  | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 133 | /** | 
|  | 134 | *	pty_write_room	-	write space | 
|  | 135 | *	@tty: tty we are writing from | 
|  | 136 | * | 
|  | 137 | *	Report how many bytes the ldisc can send into the queue for | 
|  | 138 | *	the other device. | 
|  | 139 | */ | 
|  | 140 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | static int pty_write_room(struct tty_struct *tty) | 
|  | 142 | { | 
| Linus Torvalds | 85dfd81 | 2009-08-10 13:21:19 -0700 | [diff] [blame] | 143 | if (tty->stopped) | 
|  | 144 | return 0; | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 145 | return pty_space(tty->link); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } | 
|  | 147 |  | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 148 | /** | 
|  | 149 | *	pty_chars_in_buffer	-	characters currently in our tx queue | 
|  | 150 | *	@tty: our tty | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | * | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 152 | *	Report how much we have in the transmit queue. As everything is | 
|  | 153 | *	instantly at the other end this is easy to implement. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | */ | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 155 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | static int pty_chars_in_buffer(struct tty_struct *tty) | 
|  | 157 | { | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 158 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } | 
|  | 160 |  | 
|  | 161 | /* Set the lock flag on a pty */ | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 162 | static int pty_set_lock(struct tty_struct *tty, int __user *arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { | 
|  | 164 | int val; | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 165 | if (get_user(val, arg)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | return -EFAULT; | 
|  | 167 | if (val) | 
|  | 168 | set_bit(TTY_PTY_LOCK, &tty->flags); | 
|  | 169 | else | 
|  | 170 | clear_bit(TTY_PTY_LOCK, &tty->flags); | 
|  | 171 | return 0; | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 | static void pty_flush_buffer(struct tty_struct *tty) | 
|  | 175 | { | 
|  | 176 | struct tty_struct *to = tty->link; | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 177 | unsigned long flags; | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 178 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (!to) | 
|  | 180 | return; | 
| Alan Cox | d945cb9 | 2009-07-07 16:39:41 +0100 | [diff] [blame] | 181 | /* tty_buffer_flush(to); FIXME */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | if (to->packet) { | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 183 | spin_lock_irqsave(&tty->ctrl_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | tty->ctrl_status |= TIOCPKT_FLUSHWRITE; | 
|  | 185 | wake_up_interruptible(&to->read_wait); | 
| Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 186 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } | 
|  | 188 | } | 
|  | 189 |  | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 190 | static int pty_open(struct tty_struct *tty, struct file *filp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { | 
|  | 192 | int	retval = -ENODEV; | 
|  | 193 |  | 
|  | 194 | if (!tty || !tty->link) | 
|  | 195 | goto out; | 
|  | 196 |  | 
|  | 197 | retval = -EIO; | 
|  | 198 | if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) | 
|  | 199 | goto out; | 
|  | 200 | if (test_bit(TTY_PTY_LOCK, &tty->link->flags)) | 
|  | 201 | goto out; | 
|  | 202 | if (tty->link->count != 1) | 
|  | 203 | goto out; | 
|  | 204 |  | 
|  | 205 | clear_bit(TTY_OTHER_CLOSED, &tty->link->flags); | 
|  | 206 | set_bit(TTY_THROTTLED, &tty->flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | retval = 0; | 
|  | 208 | out: | 
|  | 209 | return retval; | 
|  | 210 | } | 
|  | 211 |  | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 212 | static void pty_set_termios(struct tty_struct *tty, | 
|  | 213 | struct ktermios *old_termios) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 215 | tty->termios->c_cflag &= ~(CSIZE | PARENB); | 
|  | 216 | tty->termios->c_cflag |= (CS8 | CREAD); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } | 
|  | 218 |  | 
| Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 219 | /** | 
|  | 220 | *	pty_do_resize		-	resize event | 
|  | 221 | *	@tty: tty being resized | 
| Alan Cox | c774bda | 2009-01-11 19:46:49 +0000 | [diff] [blame] | 222 | *	@ws: window size being set. | 
| Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 223 | * | 
| Daniel Mack | 3ad2f3f | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 224 | *	Update the termios variables and send the necessary signals to | 
| Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 225 | *	peform a terminal resize correctly | 
|  | 226 | */ | 
|  | 227 |  | 
|  | 228 | int pty_resize(struct tty_struct *tty,  struct winsize *ws) | 
|  | 229 | { | 
|  | 230 | struct pid *pgrp, *rpgrp; | 
|  | 231 | unsigned long flags; | 
|  | 232 | struct tty_struct *pty = tty->link; | 
|  | 233 |  | 
|  | 234 | /* For a PTY we need to lock the tty side */ | 
|  | 235 | mutex_lock(&tty->termios_mutex); | 
|  | 236 | if (!memcmp(ws, &tty->winsize, sizeof(*ws))) | 
|  | 237 | goto done; | 
|  | 238 |  | 
|  | 239 | /* Get the PID values and reference them so we can | 
|  | 240 | avoid holding the tty ctrl lock while sending signals. | 
|  | 241 | We need to lock these individually however. */ | 
|  | 242 |  | 
|  | 243 | spin_lock_irqsave(&tty->ctrl_lock, flags); | 
|  | 244 | pgrp = get_pid(tty->pgrp); | 
|  | 245 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 
|  | 246 |  | 
|  | 247 | spin_lock_irqsave(&pty->ctrl_lock, flags); | 
|  | 248 | rpgrp = get_pid(pty->pgrp); | 
|  | 249 | spin_unlock_irqrestore(&pty->ctrl_lock, flags); | 
|  | 250 |  | 
|  | 251 | if (pgrp) | 
|  | 252 | kill_pgrp(pgrp, SIGWINCH, 1); | 
|  | 253 | if (rpgrp != pgrp && rpgrp) | 
|  | 254 | kill_pgrp(rpgrp, SIGWINCH, 1); | 
|  | 255 |  | 
|  | 256 | put_pid(pgrp); | 
|  | 257 | put_pid(rpgrp); | 
|  | 258 |  | 
|  | 259 | tty->winsize = *ws; | 
|  | 260 | pty->winsize = *ws;	/* Never used so will go away soon */ | 
|  | 261 | done: | 
|  | 262 | mutex_unlock(&tty->termios_mutex); | 
|  | 263 | return 0; | 
|  | 264 | } | 
|  | 265 |  | 
| Linus Torvalds | 342a597 | 2009-09-30 07:49:40 -0700 | [diff] [blame] | 266 | /* Traditional BSD devices */ | 
|  | 267 | #ifdef CONFIG_LEGACY_PTYS | 
|  | 268 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 269 | static int pty_install(struct tty_driver *driver, struct tty_struct *tty) | 
|  | 270 | { | 
|  | 271 | struct tty_struct *o_tty; | 
|  | 272 | int idx = tty->index; | 
|  | 273 | int retval; | 
|  | 274 |  | 
|  | 275 | o_tty = alloc_tty_struct(); | 
|  | 276 | if (!o_tty) | 
|  | 277 | return -ENOMEM; | 
|  | 278 | if (!try_module_get(driver->other->owner)) { | 
|  | 279 | /* This cannot in fact currently happen */ | 
|  | 280 | free_tty_struct(o_tty); | 
|  | 281 | return -ENOMEM; | 
|  | 282 | } | 
|  | 283 | initialize_tty_struct(o_tty, driver->other, idx); | 
|  | 284 |  | 
|  | 285 | /* We always use new tty termios data so we can do this | 
|  | 286 | the easy way .. */ | 
|  | 287 | retval = tty_init_termios(tty); | 
|  | 288 | if (retval) | 
|  | 289 | goto free_mem_out; | 
|  | 290 |  | 
|  | 291 | retval = tty_init_termios(o_tty); | 
|  | 292 | if (retval) { | 
|  | 293 | tty_free_termios(tty); | 
|  | 294 | goto free_mem_out; | 
|  | 295 | } | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 296 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 297 | /* | 
|  | 298 | * Everything allocated ... set up the o_tty structure. | 
|  | 299 | */ | 
|  | 300 | driver->other->ttys[idx] = o_tty; | 
|  | 301 | tty_driver_kref_get(driver->other); | 
|  | 302 | if (driver->subtype == PTY_TYPE_MASTER) | 
|  | 303 | o_tty->count++; | 
|  | 304 | /* Establish the links in both directions */ | 
|  | 305 | tty->link   = o_tty; | 
|  | 306 | o_tty->link = tty; | 
|  | 307 |  | 
|  | 308 | tty_driver_kref_get(driver); | 
|  | 309 | tty->count++; | 
|  | 310 | driver->ttys[idx] = tty; | 
|  | 311 | return 0; | 
|  | 312 | free_mem_out: | 
|  | 313 | module_put(o_tty->driver->owner); | 
|  | 314 | free_tty_struct(o_tty); | 
|  | 315 | return -ENOMEM; | 
|  | 316 | } | 
|  | 317 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | static int pty_bsd_ioctl(struct tty_struct *tty, struct file *file, | 
|  | 319 | unsigned int cmd, unsigned long arg) | 
|  | 320 | { | 
|  | 321 | switch (cmd) { | 
|  | 322 | case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */ | 
|  | 323 | return pty_set_lock(tty, (int __user *) arg); | 
|  | 324 | } | 
|  | 325 | return -ENOIOCTLCMD; | 
|  | 326 | } | 
|  | 327 |  | 
| Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 328 | static int legacy_count = CONFIG_LEGACY_PTY_COUNT; | 
|  | 329 | module_param(legacy_count, int, 0); | 
|  | 330 |  | 
| Linus Torvalds | 342a597 | 2009-09-30 07:49:40 -0700 | [diff] [blame] | 331 | /* | 
|  | 332 | * The master side of a pty can do TIOCSPTLCK and thus | 
|  | 333 | * has pty_bsd_ioctl. | 
|  | 334 | */ | 
|  | 335 | static const struct tty_operations master_pty_ops_bsd = { | 
|  | 336 | .install = pty_install, | 
| Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 337 | .open = pty_open, | 
|  | 338 | .close = pty_close, | 
|  | 339 | .write = pty_write, | 
|  | 340 | .write_room = pty_write_room, | 
|  | 341 | .flush_buffer = pty_flush_buffer, | 
|  | 342 | .chars_in_buffer = pty_chars_in_buffer, | 
|  | 343 | .unthrottle = pty_unthrottle, | 
|  | 344 | .set_termios = pty_set_termios, | 
|  | 345 | .ioctl = pty_bsd_ioctl, | 
| Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 346 | .resize = pty_resize | 
| Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 347 | }; | 
|  | 348 |  | 
| Linus Torvalds | 342a597 | 2009-09-30 07:49:40 -0700 | [diff] [blame] | 349 | static const struct tty_operations slave_pty_ops_bsd = { | 
|  | 350 | .install = pty_install, | 
|  | 351 | .open = pty_open, | 
|  | 352 | .close = pty_close, | 
|  | 353 | .write = pty_write, | 
|  | 354 | .write_room = pty_write_room, | 
|  | 355 | .flush_buffer = pty_flush_buffer, | 
|  | 356 | .chars_in_buffer = pty_chars_in_buffer, | 
|  | 357 | .unthrottle = pty_unthrottle, | 
|  | 358 | .set_termios = pty_set_termios, | 
|  | 359 | .resize = pty_resize | 
|  | 360 | }; | 
|  | 361 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | static void __init legacy_pty_init(void) | 
|  | 363 | { | 
| Linus Torvalds | 342a597 | 2009-09-30 07:49:40 -0700 | [diff] [blame] | 364 | struct tty_driver *pty_driver, *pty_slave_driver; | 
|  | 365 |  | 
| Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 366 | if (legacy_count <= 0) | 
|  | 367 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 |  | 
| Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 369 | pty_driver = alloc_tty_driver(legacy_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | if (!pty_driver) | 
|  | 371 | panic("Couldn't allocate pty driver"); | 
|  | 372 |  | 
| Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 373 | pty_slave_driver = alloc_tty_driver(legacy_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | if (!pty_slave_driver) | 
|  | 375 | panic("Couldn't allocate pty slave driver"); | 
|  | 376 |  | 
|  | 377 | pty_driver->owner = THIS_MODULE; | 
|  | 378 | pty_driver->driver_name = "pty_master"; | 
|  | 379 | pty_driver->name = "pty"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | pty_driver->major = PTY_MASTER_MAJOR; | 
|  | 381 | pty_driver->minor_start = 0; | 
|  | 382 | pty_driver->type = TTY_DRIVER_TYPE_PTY; | 
|  | 383 | pty_driver->subtype = PTY_TYPE_MASTER; | 
|  | 384 | pty_driver->init_termios = tty_std_termios; | 
|  | 385 | pty_driver->init_termios.c_iflag = 0; | 
|  | 386 | pty_driver->init_termios.c_oflag = 0; | 
|  | 387 | pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | 
|  | 388 | pty_driver->init_termios.c_lflag = 0; | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 389 | pty_driver->init_termios.c_ispeed = 38400; | 
|  | 390 | pty_driver->init_termios.c_ospeed = 38400; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW; | 
|  | 392 | pty_driver->other = pty_slave_driver; | 
| Linus Torvalds | 342a597 | 2009-09-30 07:49:40 -0700 | [diff] [blame] | 393 | tty_set_operations(pty_driver, &master_pty_ops_bsd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 |  | 
|  | 395 | pty_slave_driver->owner = THIS_MODULE; | 
|  | 396 | pty_slave_driver->driver_name = "pty_slave"; | 
|  | 397 | pty_slave_driver->name = "ttyp"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | pty_slave_driver->major = PTY_SLAVE_MAJOR; | 
|  | 399 | pty_slave_driver->minor_start = 0; | 
|  | 400 | pty_slave_driver->type = TTY_DRIVER_TYPE_PTY; | 
|  | 401 | pty_slave_driver->subtype = PTY_TYPE_SLAVE; | 
|  | 402 | pty_slave_driver->init_termios = tty_std_termios; | 
|  | 403 | pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 404 | pty_slave_driver->init_termios.c_ispeed = 38400; | 
|  | 405 | pty_slave_driver->init_termios.c_ospeed = 38400; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS | | 
|  | 407 | TTY_DRIVER_REAL_RAW; | 
|  | 408 | pty_slave_driver->other = pty_driver; | 
| Linus Torvalds | 342a597 | 2009-09-30 07:49:40 -0700 | [diff] [blame] | 409 | tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 |  | 
|  | 411 | if (tty_register_driver(pty_driver)) | 
|  | 412 | panic("Couldn't register pty driver"); | 
|  | 413 | if (tty_register_driver(pty_slave_driver)) | 
|  | 414 | panic("Couldn't register pty slave driver"); | 
|  | 415 | } | 
|  | 416 | #else | 
|  | 417 | static inline void legacy_pty_init(void) { } | 
|  | 418 | #endif | 
|  | 419 |  | 
|  | 420 | /* Unix98 devices */ | 
|  | 421 | #ifdef CONFIG_UNIX98_PTYS | 
|  | 422 | /* | 
|  | 423 | * sysctl support for setting limits on the number of Unix98 ptys allocated. | 
|  | 424 | * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly. | 
|  | 425 | */ | 
|  | 426 | int pty_limit = NR_UNIX98_PTY_DEFAULT; | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 427 | static int pty_limit_min; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | static int pty_limit_max = NR_UNIX98_PTY_MAX; | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 429 | static int pty_count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 |  | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 431 | static struct cdev ptmx_cdev; | 
|  | 432 |  | 
| Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 433 | static struct ctl_table pty_table[] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | .procname	= "max", | 
|  | 436 | .maxlen		= sizeof(int), | 
|  | 437 | .mode		= 0644, | 
|  | 438 | .data		= &pty_limit, | 
| Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 439 | .proc_handler	= proc_dointvec_minmax, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | .extra1		= &pty_limit_min, | 
|  | 441 | .extra2		= &pty_limit_max, | 
|  | 442 | }, { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | .procname	= "nr", | 
|  | 444 | .maxlen		= sizeof(int), | 
|  | 445 | .mode		= 0444, | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 446 | .data		= &pty_count, | 
| Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 447 | .proc_handler	= proc_dointvec, | 
| Eric W. Biederman | 894d249 | 2009-11-05 14:34:02 -0800 | [diff] [blame] | 448 | }, | 
|  | 449 | {} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | }; | 
|  | 451 |  | 
| Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 452 | static struct ctl_table pty_kern_table[] = { | 
|  | 453 | { | 
| Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 454 | .procname	= "pty", | 
|  | 455 | .mode		= 0555, | 
|  | 456 | .child		= pty_table, | 
|  | 457 | }, | 
|  | 458 | {} | 
|  | 459 | }; | 
|  | 460 |  | 
|  | 461 | static struct ctl_table pty_root_table[] = { | 
|  | 462 | { | 
| Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 463 | .procname	= "kernel", | 
|  | 464 | .mode		= 0555, | 
|  | 465 | .child		= pty_kern_table, | 
|  | 466 | }, | 
|  | 467 | {} | 
|  | 468 | }; | 
|  | 469 |  | 
|  | 470 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file, | 
|  | 472 | unsigned int cmd, unsigned long arg) | 
|  | 473 | { | 
|  | 474 | switch (cmd) { | 
|  | 475 | case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */ | 
|  | 476 | return pty_set_lock(tty, (int __user *)arg); | 
|  | 477 | case TIOCGPTN: /* Get PT Number */ | 
|  | 478 | return put_user(tty->index, (unsigned int __user *)arg); | 
|  | 479 | } | 
|  | 480 |  | 
|  | 481 | return -ENOIOCTLCMD; | 
|  | 482 | } | 
|  | 483 |  | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 484 | /** | 
|  | 485 | *	ptm_unix98_lookup	-	find a pty master | 
|  | 486 | *	@driver: ptm driver | 
|  | 487 | *	@idx: tty index | 
|  | 488 | * | 
|  | 489 | *	Look up a pty master device. Called under the tty_mutex for now. | 
|  | 490 | *	This provides our locking. | 
|  | 491 | */ | 
|  | 492 |  | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 493 | static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver, | 
|  | 494 | struct inode *ptm_inode, int idx) | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 495 | { | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 496 | struct tty_struct *tty = devpts_get_tty(ptm_inode, idx); | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 497 | if (tty) | 
|  | 498 | tty = tty->link; | 
|  | 499 | return tty; | 
|  | 500 | } | 
|  | 501 |  | 
|  | 502 | /** | 
|  | 503 | *	pts_unix98_lookup	-	find a pty slave | 
|  | 504 | *	@driver: pts driver | 
|  | 505 | *	@idx: tty index | 
|  | 506 | * | 
|  | 507 | *	Look up a pty master device. Called under the tty_mutex for now. | 
|  | 508 | *	This provides our locking. | 
|  | 509 | */ | 
|  | 510 |  | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 511 | static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver, | 
|  | 512 | struct inode *pts_inode, int idx) | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 513 | { | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 514 | struct tty_struct *tty = devpts_get_tty(pts_inode, idx); | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 515 | /* Master must be open before slave */ | 
|  | 516 | if (!tty) | 
|  | 517 | return ERR_PTR(-EIO); | 
|  | 518 | return tty; | 
|  | 519 | } | 
|  | 520 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 521 | static void pty_unix98_shutdown(struct tty_struct *tty) | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 522 | { | 
|  | 523 | /* We have our own method as we don't use the tty index */ | 
|  | 524 | kfree(tty->termios); | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 525 | } | 
|  | 526 |  | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 527 | /* We have no need to install and remove our tty objects as devpts does all | 
|  | 528 | the work for us */ | 
|  | 529 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 530 | static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty) | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 531 | { | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 532 | struct tty_struct *o_tty; | 
|  | 533 | int idx = tty->index; | 
|  | 534 |  | 
|  | 535 | o_tty = alloc_tty_struct(); | 
|  | 536 | if (!o_tty) | 
|  | 537 | return -ENOMEM; | 
|  | 538 | if (!try_module_get(driver->other->owner)) { | 
|  | 539 | /* This cannot in fact currently happen */ | 
|  | 540 | free_tty_struct(o_tty); | 
|  | 541 | return -ENOMEM; | 
|  | 542 | } | 
|  | 543 | initialize_tty_struct(o_tty, driver->other, idx); | 
|  | 544 |  | 
| Alan Cox | 8dff04e | 2008-10-13 10:43:58 +0100 | [diff] [blame] | 545 | tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 546 | if (tty->termios == NULL) | 
|  | 547 | goto free_mem_out; | 
|  | 548 | *tty->termios = driver->init_termios; | 
| Alan Cox | 8dff04e | 2008-10-13 10:43:58 +0100 | [diff] [blame] | 549 | tty->termios_locked = tty->termios + 1; | 
|  | 550 |  | 
|  | 551 | o_tty->termios = kzalloc(sizeof(struct ktermios[2]), GFP_KERNEL); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 552 | if (o_tty->termios == NULL) | 
|  | 553 | goto free_mem_out; | 
|  | 554 | *o_tty->termios = driver->other->init_termios; | 
| Alan Cox | 8dff04e | 2008-10-13 10:43:58 +0100 | [diff] [blame] | 555 | o_tty->termios_locked = o_tty->termios + 1; | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 556 |  | 
|  | 557 | tty_driver_kref_get(driver->other); | 
|  | 558 | if (driver->subtype == PTY_TYPE_MASTER) | 
|  | 559 | o_tty->count++; | 
|  | 560 | /* Establish the links in both directions */ | 
|  | 561 | tty->link   = o_tty; | 
|  | 562 | o_tty->link = tty; | 
|  | 563 | /* | 
|  | 564 | * All structures have been allocated, so now we install them. | 
|  | 565 | * Failures after this point use release_tty to clean up, so | 
|  | 566 | * there's no need to null out the local pointers. | 
|  | 567 | */ | 
|  | 568 | tty_driver_kref_get(driver); | 
|  | 569 | tty->count++; | 
|  | 570 | pty_count++; | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 571 | return 0; | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 572 | free_mem_out: | 
| Alan Cox | 8dff04e | 2008-10-13 10:43:58 +0100 | [diff] [blame] | 573 | kfree(o_tty->termios); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 574 | module_put(o_tty->driver->owner); | 
|  | 575 | free_tty_struct(o_tty); | 
| Alan Cox | 8dff04e | 2008-10-13 10:43:58 +0100 | [diff] [blame] | 576 | kfree(tty->termios); | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 577 | return -ENOMEM; | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 578 | } | 
|  | 579 |  | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 580 | static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty) | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 581 | { | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 582 | pty_count--; | 
| Alan Cox | 8b0a88d | 2008-10-13 10:42:19 +0100 | [diff] [blame] | 583 | } | 
|  | 584 |  | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 585 | static const struct tty_operations ptm_unix98_ops = { | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 586 | .lookup = ptm_unix98_lookup, | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 587 | .install = pty_unix98_install, | 
|  | 588 | .remove = pty_unix98_remove, | 
| Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 589 | .open = pty_open, | 
|  | 590 | .close = pty_close, | 
|  | 591 | .write = pty_write, | 
|  | 592 | .write_room = pty_write_room, | 
|  | 593 | .flush_buffer = pty_flush_buffer, | 
|  | 594 | .chars_in_buffer = pty_chars_in_buffer, | 
|  | 595 | .unthrottle = pty_unthrottle, | 
|  | 596 | .set_termios = pty_set_termios, | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 597 | .ioctl = pty_unix98_ioctl, | 
| Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 598 | .shutdown = pty_unix98_shutdown, | 
|  | 599 | .resize = pty_resize | 
| Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 600 | }; | 
|  | 601 |  | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 602 | static const struct tty_operations pty_unix98_ops = { | 
|  | 603 | .lookup = pts_unix98_lookup, | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 604 | .install = pty_unix98_install, | 
|  | 605 | .remove = pty_unix98_remove, | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 606 | .open = pty_open, | 
|  | 607 | .close = pty_close, | 
|  | 608 | .write = pty_write, | 
|  | 609 | .write_room = pty_write_room, | 
|  | 610 | .flush_buffer = pty_flush_buffer, | 
|  | 611 | .chars_in_buffer = pty_chars_in_buffer, | 
|  | 612 | .unthrottle = pty_unthrottle, | 
|  | 613 | .set_termios = pty_set_termios, | 
| Alan Cox | bf970ee | 2008-10-13 10:42:39 +0100 | [diff] [blame] | 614 | .shutdown = pty_unix98_shutdown | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 615 | }; | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 616 |  | 
|  | 617 | /** | 
|  | 618 | *	ptmx_open		-	open a unix 98 pty master | 
|  | 619 | *	@inode: inode of device file | 
|  | 620 | *	@filp: file pointer to tty | 
|  | 621 | * | 
|  | 622 | *	Allocate a unix98 pty master device from the ptmx driver. | 
|  | 623 | * | 
|  | 624 | *	Locking: tty_mutex protects the init_dev work. tty->count should | 
|  | 625 | * 		protect the rest. | 
|  | 626 | *		allocated_ptys_lock handles the list of free pty numbers | 
|  | 627 | */ | 
|  | 628 |  | 
|  | 629 | static int __ptmx_open(struct inode *inode, struct file *filp) | 
|  | 630 | { | 
|  | 631 | struct tty_struct *tty; | 
|  | 632 | int retval; | 
|  | 633 | int index; | 
|  | 634 |  | 
|  | 635 | nonseekable_open(inode, filp); | 
|  | 636 |  | 
|  | 637 | /* find a device that is not in use. */ | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 638 | index = devpts_new_index(inode); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 639 | if (index < 0) | 
|  | 640 | return index; | 
|  | 641 |  | 
|  | 642 | mutex_lock(&tty_mutex); | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 643 | tty = tty_init_dev(ptm_driver, index, 1); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 644 | mutex_unlock(&tty_mutex); | 
|  | 645 |  | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 646 | if (IS_ERR(tty)) { | 
|  | 647 | retval = PTR_ERR(tty); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 648 | goto out; | 
| Alan Cox | 73ec06f | 2008-10-13 10:42:29 +0100 | [diff] [blame] | 649 | } | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 650 |  | 
|  | 651 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ | 
|  | 652 | filp->private_data = tty; | 
|  | 653 | file_move(filp, &tty->tty_files); | 
|  | 654 |  | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 655 | retval = devpts_pty_new(inode, tty->link); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 656 | if (retval) | 
|  | 657 | goto out1; | 
|  | 658 |  | 
|  | 659 | retval = ptm_driver->ops->open(tty, filp); | 
|  | 660 | if (!retval) | 
|  | 661 | return 0; | 
|  | 662 | out1: | 
| Alan Cox | eeb89d9 | 2009-11-30 13:18:29 +0000 | [diff] [blame] | 663 | tty_release(inode, filp); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 664 | return retval; | 
|  | 665 | out: | 
| Sukadev Bhattiprolu | 15f1a63 | 2008-10-13 10:42:59 +0100 | [diff] [blame] | 666 | devpts_kill_index(inode, index); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 667 | return retval; | 
|  | 668 | } | 
|  | 669 |  | 
|  | 670 | static int ptmx_open(struct inode *inode, struct file *filp) | 
|  | 671 | { | 
|  | 672 | int ret; | 
|  | 673 |  | 
|  | 674 | lock_kernel(); | 
|  | 675 | ret = __ptmx_open(inode, filp); | 
|  | 676 | unlock_kernel(); | 
|  | 677 | return ret; | 
|  | 678 | } | 
|  | 679 |  | 
|  | 680 | static struct file_operations ptmx_fops; | 
|  | 681 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | static void __init unix98_pty_init(void) | 
|  | 683 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX); | 
|  | 685 | if (!ptm_driver) | 
|  | 686 | panic("Couldn't allocate Unix98 ptm driver"); | 
|  | 687 | pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX); | 
|  | 688 | if (!pts_driver) | 
|  | 689 | panic("Couldn't allocate Unix98 pts driver"); | 
|  | 690 |  | 
|  | 691 | ptm_driver->owner = THIS_MODULE; | 
|  | 692 | ptm_driver->driver_name = "pty_master"; | 
|  | 693 | ptm_driver->name = "ptm"; | 
|  | 694 | ptm_driver->major = UNIX98_PTY_MASTER_MAJOR; | 
|  | 695 | ptm_driver->minor_start = 0; | 
|  | 696 | ptm_driver->type = TTY_DRIVER_TYPE_PTY; | 
|  | 697 | ptm_driver->subtype = PTY_TYPE_MASTER; | 
|  | 698 | ptm_driver->init_termios = tty_std_termios; | 
|  | 699 | ptm_driver->init_termios.c_iflag = 0; | 
|  | 700 | ptm_driver->init_termios.c_oflag = 0; | 
|  | 701 | ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | 
|  | 702 | ptm_driver->init_termios.c_lflag = 0; | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 703 | ptm_driver->init_termios.c_ispeed = 38400; | 
|  | 704 | ptm_driver->init_termios.c_ospeed = 38400; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | ptm_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW | | 
| Greg Kroah-Hartman | 331b831 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 706 | TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | ptm_driver->other = pts_driver; | 
| Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 708 | tty_set_operations(ptm_driver, &ptm_unix98_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 |  | 
|  | 710 | pts_driver->owner = THIS_MODULE; | 
|  | 711 | pts_driver->driver_name = "pty_slave"; | 
|  | 712 | pts_driver->name = "pts"; | 
|  | 713 | pts_driver->major = UNIX98_PTY_SLAVE_MAJOR; | 
|  | 714 | pts_driver->minor_start = 0; | 
|  | 715 | pts_driver->type = TTY_DRIVER_TYPE_PTY; | 
|  | 716 | pts_driver->subtype = PTY_TYPE_SLAVE; | 
|  | 717 | pts_driver->init_termios = tty_std_termios; | 
|  | 718 | pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; | 
| Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 719 | pts_driver->init_termios.c_ispeed = 38400; | 
|  | 720 | pts_driver->init_termios.c_ospeed = 38400; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW | | 
| Greg Kroah-Hartman | 331b831 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 722 | TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | pts_driver->other = ptm_driver; | 
| Alan Cox | 99f1fe1 | 2008-10-13 10:42:00 +0100 | [diff] [blame] | 724 | tty_set_operations(pts_driver, &pty_unix98_ops); | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 725 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | if (tty_register_driver(ptm_driver)) | 
|  | 727 | panic("Couldn't register Unix98 ptm driver"); | 
|  | 728 | if (tty_register_driver(pts_driver)) | 
|  | 729 | panic("Couldn't register Unix98 pts driver"); | 
|  | 730 |  | 
| Alan Cox | fe9cd96 | 2008-10-13 10:43:38 +0100 | [diff] [blame] | 731 | register_sysctl_table(pty_root_table); | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 732 |  | 
|  | 733 | /* Now create the /dev/ptmx special device */ | 
|  | 734 | tty_default_fops(&ptmx_fops); | 
|  | 735 | ptmx_fops.open = ptmx_open; | 
|  | 736 |  | 
|  | 737 | cdev_init(&ptmx_cdev, &ptmx_fops); | 
|  | 738 | if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) || | 
|  | 739 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0) | 
|  | 740 | panic("Couldn't register /dev/ptmx driver\n"); | 
|  | 741 | device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } | 
| Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 743 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | #else | 
|  | 745 | static inline void unix98_pty_init(void) { } | 
|  | 746 | #endif | 
|  | 747 |  | 
|  | 748 | static int __init pty_init(void) | 
|  | 749 | { | 
|  | 750 | legacy_pty_init(); | 
|  | 751 | unix98_pty_init(); | 
|  | 752 | return 0; | 
|  | 753 | } | 
|  | 754 | module_init(pty_init); |