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 |
| 8 | * Added TTY_DO_WRITE_WAKEUP to enable n_tty to send POLL_OUT to |
| 9 | * waiting writers -- Sapan Bhatia <sapan@corewars.org> |
| 10 | * |
| 11 | * |
| 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/module.h> /* For EXPORT_SYMBOL */ |
| 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> |
| 21 | #include <linux/string.h> |
| 22 | #include <linux/major.h> |
| 23 | #include <linux/mm.h> |
| 24 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/sysctl.h> |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame^] | 26 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | #include <asm/uaccess.h> |
| 29 | #include <asm/system.h> |
| 30 | #include <linux/bitops.h> |
| 31 | #include <linux/devpts_fs.h> |
| 32 | |
| 33 | /* These are global because they are accessed in tty_io.c */ |
| 34 | #ifdef CONFIG_UNIX98_PTYS |
| 35 | struct tty_driver *ptm_driver; |
| 36 | static struct tty_driver *pts_driver; |
| 37 | #endif |
| 38 | |
| 39 | static void pty_close(struct tty_struct * tty, struct file * filp) |
| 40 | { |
| 41 | if (!tty) |
| 42 | return; |
| 43 | if (tty->driver->subtype == PTY_TYPE_MASTER) { |
| 44 | if (tty->count > 1) |
| 45 | printk("master pty_close: count = %d!!\n", tty->count); |
| 46 | } else { |
| 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) |
| 63 | devpts_pty_kill(tty->index); |
| 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 |
| 73 | * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE |
| 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 | */ |
| 79 | static void pty_unthrottle(struct tty_struct * tty) |
| 80 | { |
| 81 | struct tty_struct *o_tty = tty->link; |
| 82 | |
| 83 | if (!o_tty) |
| 84 | return; |
| 85 | |
| 86 | tty_wakeup(o_tty); |
| 87 | set_bit(TTY_THROTTLED, &tty->flags); |
| 88 | } |
| 89 | |
| 90 | /* |
| 91 | * WSH 05/24/97: modified to |
| 92 | * (1) use space in tty->flip instead of a shared temp buffer |
| 93 | * The flip buffers aren't being used for a pty, so there's lots |
| 94 | * of space available. The buffer is protected by a per-pty |
| 95 | * semaphore that should almost never come under contention. |
| 96 | * (2) avoid redundant copying for cases where count >> receive_room |
| 97 | * N.B. Calls from user space may now return an error code instead of |
| 98 | * a count. |
| 99 | * |
| 100 | * FIXME: Our pty_write method is called with our ldisc lock held but |
| 101 | * not our partners. We can't just take the other one blindly without |
Paul Fulghum | 817d6d3 | 2006-06-28 04:26:47 -0700 | [diff] [blame] | 102 | * risking deadlocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | */ |
| 104 | static int pty_write(struct tty_struct * tty, const unsigned char *buf, int count) |
| 105 | { |
| 106 | struct tty_struct *to = tty->link; |
| 107 | int c; |
| 108 | |
| 109 | if (!to || tty->stopped) |
| 110 | return 0; |
| 111 | |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 112 | c = to->receive_room; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | if (c > count) |
| 114 | c = count; |
Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 115 | to->ldisc.ops->receive_buf(to, buf, NULL, c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | return c; |
| 118 | } |
| 119 | |
| 120 | static int pty_write_room(struct tty_struct *tty) |
| 121 | { |
| 122 | struct tty_struct *to = tty->link; |
| 123 | |
| 124 | if (!to || tty->stopped) |
| 125 | return 0; |
| 126 | |
Alan Cox | 33f0f88 | 2006-01-09 20:54:13 -0800 | [diff] [blame] | 127 | return to->receive_room; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /* |
| 131 | * WSH 05/24/97: Modified for asymmetric MASTER/SLAVE behavior |
| 132 | * The chars_in_buffer() value is used by the ldisc select() function |
| 133 | * to hold off writing when chars_in_buffer > WAKEUP_CHARS (== 256). |
| 134 | * The pty driver chars_in_buffer() Master/Slave must behave differently: |
| 135 | * |
| 136 | * The Master side needs to allow typed-ahead commands to accumulate |
| 137 | * while being canonicalized, so we report "our buffer" as empty until |
| 138 | * some threshold is reached, and then report the count. (Any count > |
| 139 | * WAKEUP_CHARS is regarded by select() as "full".) To avoid deadlock |
| 140 | * the count returned must be 0 if no canonical data is available to be |
| 141 | * read. (The N_TTY ldisc.chars_in_buffer now knows this.) |
| 142 | * |
| 143 | * The Slave side passes all characters in raw mode to the Master side's |
| 144 | * buffer where they can be read immediately, so in this case we can |
| 145 | * return the true count in the buffer. |
| 146 | */ |
| 147 | static int pty_chars_in_buffer(struct tty_struct *tty) |
| 148 | { |
| 149 | struct tty_struct *to = tty->link; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | int count; |
| 151 | |
| 152 | /* We should get the line discipline lock for "tty->link" */ |
Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 153 | if (!to || !to->ldisc.ops->chars_in_buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | return 0; |
| 155 | |
| 156 | /* The ldisc must report 0 if no characters available to be read */ |
Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 157 | count = to->ldisc.ops->chars_in_buffer(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
| 159 | if (tty->driver->subtype == PTY_TYPE_SLAVE) return count; |
| 160 | |
| 161 | /* Master side driver ... if the other side's read buffer is less than |
| 162 | * half full, return 0 to allow writers to proceed; otherwise return |
| 163 | * the count. This leaves a comfortable margin to avoid overflow, |
| 164 | * and still allows half a buffer's worth of typed-ahead commands. |
| 165 | */ |
| 166 | return ((count < N_TTY_BUF_SIZE/2) ? 0 : count); |
| 167 | } |
| 168 | |
| 169 | /* Set the lock flag on a pty */ |
| 170 | static int pty_set_lock(struct tty_struct *tty, int __user * arg) |
| 171 | { |
| 172 | int val; |
| 173 | if (get_user(val,arg)) |
| 174 | return -EFAULT; |
| 175 | if (val) |
| 176 | set_bit(TTY_PTY_LOCK, &tty->flags); |
| 177 | else |
| 178 | clear_bit(TTY_PTY_LOCK, &tty->flags); |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | static void pty_flush_buffer(struct tty_struct *tty) |
| 183 | { |
| 184 | struct tty_struct *to = tty->link; |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 185 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
| 187 | if (!to) |
| 188 | return; |
| 189 | |
Alan Cox | a352def | 2008-07-16 21:53:12 +0100 | [diff] [blame] | 190 | if (to->ldisc.ops->flush_buffer) |
| 191 | to->ldisc.ops->flush_buffer(to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
| 193 | if (to->packet) { |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 194 | spin_lock_irqsave(&tty->ctrl_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | tty->ctrl_status |= TIOCPKT_FLUSHWRITE; |
| 196 | wake_up_interruptible(&to->read_wait); |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 197 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | } |
| 199 | } |
| 200 | |
| 201 | static int pty_open(struct tty_struct *tty, struct file * filp) |
| 202 | { |
| 203 | int retval = -ENODEV; |
| 204 | |
| 205 | if (!tty || !tty->link) |
| 206 | goto out; |
| 207 | |
| 208 | retval = -EIO; |
| 209 | if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) |
| 210 | goto out; |
| 211 | if (test_bit(TTY_PTY_LOCK, &tty->link->flags)) |
| 212 | goto out; |
| 213 | if (tty->link->count != 1) |
| 214 | goto out; |
| 215 | |
| 216 | clear_bit(TTY_OTHER_CLOSED, &tty->link->flags); |
| 217 | set_bit(TTY_THROTTLED, &tty->flags); |
| 218 | set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags); |
| 219 | retval = 0; |
| 220 | out: |
| 221 | return retval; |
| 222 | } |
| 223 | |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 224 | static void pty_set_termios(struct tty_struct *tty, struct ktermios *old_termios) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { |
| 226 | tty->termios->c_cflag &= ~(CSIZE | PARENB); |
| 227 | tty->termios->c_cflag |= (CS8 | CREAD); |
| 228 | } |
| 229 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 230 | static const struct tty_operations pty_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | .open = pty_open, |
| 232 | .close = pty_close, |
| 233 | .write = pty_write, |
| 234 | .write_room = pty_write_room, |
| 235 | .flush_buffer = pty_flush_buffer, |
| 236 | .chars_in_buffer = pty_chars_in_buffer, |
| 237 | .unthrottle = pty_unthrottle, |
| 238 | .set_termios = pty_set_termios, |
| 239 | }; |
| 240 | |
| 241 | /* Traditional BSD devices */ |
| 242 | #ifdef CONFIG_LEGACY_PTYS |
| 243 | static struct tty_driver *pty_driver, *pty_slave_driver; |
| 244 | |
| 245 | static int pty_bsd_ioctl(struct tty_struct *tty, struct file *file, |
| 246 | unsigned int cmd, unsigned long arg) |
| 247 | { |
| 248 | switch (cmd) { |
| 249 | case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */ |
| 250 | return pty_set_lock(tty, (int __user *) arg); |
| 251 | } |
| 252 | return -ENOIOCTLCMD; |
| 253 | } |
| 254 | |
Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 255 | static int legacy_count = CONFIG_LEGACY_PTY_COUNT; |
| 256 | module_param(legacy_count, int, 0); |
| 257 | |
Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 258 | static const struct tty_operations pty_ops_bsd = { |
| 259 | .open = pty_open, |
| 260 | .close = pty_close, |
| 261 | .write = pty_write, |
| 262 | .write_room = pty_write_room, |
| 263 | .flush_buffer = pty_flush_buffer, |
| 264 | .chars_in_buffer = pty_chars_in_buffer, |
| 265 | .unthrottle = pty_unthrottle, |
| 266 | .set_termios = pty_set_termios, |
| 267 | .ioctl = pty_bsd_ioctl, |
| 268 | }; |
| 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | static void __init legacy_pty_init(void) |
| 271 | { |
Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 272 | if (legacy_count <= 0) |
| 273 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 275 | pty_driver = alloc_tty_driver(legacy_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | if (!pty_driver) |
| 277 | panic("Couldn't allocate pty driver"); |
| 278 | |
Kay Sievers | dc8c858 | 2007-08-15 12:25:38 +0200 | [diff] [blame] | 279 | pty_slave_driver = alloc_tty_driver(legacy_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | if (!pty_slave_driver) |
| 281 | panic("Couldn't allocate pty slave driver"); |
| 282 | |
| 283 | pty_driver->owner = THIS_MODULE; |
| 284 | pty_driver->driver_name = "pty_master"; |
| 285 | pty_driver->name = "pty"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | pty_driver->major = PTY_MASTER_MAJOR; |
| 287 | pty_driver->minor_start = 0; |
| 288 | pty_driver->type = TTY_DRIVER_TYPE_PTY; |
| 289 | pty_driver->subtype = PTY_TYPE_MASTER; |
| 290 | pty_driver->init_termios = tty_std_termios; |
| 291 | pty_driver->init_termios.c_iflag = 0; |
| 292 | pty_driver->init_termios.c_oflag = 0; |
| 293 | pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; |
| 294 | pty_driver->init_termios.c_lflag = 0; |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 295 | pty_driver->init_termios.c_ispeed = 38400; |
| 296 | pty_driver->init_termios.c_ospeed = 38400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | pty_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW; |
| 298 | pty_driver->other = pty_slave_driver; |
| 299 | tty_set_operations(pty_driver, &pty_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | pty_slave_driver->owner = THIS_MODULE; |
| 302 | pty_slave_driver->driver_name = "pty_slave"; |
| 303 | pty_slave_driver->name = "ttyp"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | pty_slave_driver->major = PTY_SLAVE_MAJOR; |
| 305 | pty_slave_driver->minor_start = 0; |
| 306 | pty_slave_driver->type = TTY_DRIVER_TYPE_PTY; |
| 307 | pty_slave_driver->subtype = PTY_TYPE_SLAVE; |
| 308 | pty_slave_driver->init_termios = tty_std_termios; |
| 309 | pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 310 | pty_slave_driver->init_termios.c_ispeed = 38400; |
| 311 | pty_slave_driver->init_termios.c_ospeed = 38400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | pty_slave_driver->flags = TTY_DRIVER_RESET_TERMIOS | |
| 313 | TTY_DRIVER_REAL_RAW; |
| 314 | pty_slave_driver->other = pty_driver; |
| 315 | tty_set_operations(pty_slave_driver, &pty_ops); |
| 316 | |
| 317 | if (tty_register_driver(pty_driver)) |
| 318 | panic("Couldn't register pty driver"); |
| 319 | if (tty_register_driver(pty_slave_driver)) |
| 320 | panic("Couldn't register pty slave driver"); |
| 321 | } |
| 322 | #else |
| 323 | static inline void legacy_pty_init(void) { } |
| 324 | #endif |
| 325 | |
| 326 | /* Unix98 devices */ |
| 327 | #ifdef CONFIG_UNIX98_PTYS |
| 328 | /* |
| 329 | * sysctl support for setting limits on the number of Unix98 ptys allocated. |
| 330 | * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly. |
| 331 | */ |
| 332 | int pty_limit = NR_UNIX98_PTY_DEFAULT; |
| 333 | static int pty_limit_min = 0; |
| 334 | static int pty_limit_max = NR_UNIX98_PTY_MAX; |
| 335 | |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame^] | 336 | static struct cdev ptmx_cdev; |
| 337 | |
Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 338 | static struct ctl_table pty_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | { |
| 340 | .ctl_name = PTY_MAX, |
| 341 | .procname = "max", |
| 342 | .maxlen = sizeof(int), |
| 343 | .mode = 0644, |
| 344 | .data = &pty_limit, |
| 345 | .proc_handler = &proc_dointvec_minmax, |
| 346 | .strategy = &sysctl_intvec, |
| 347 | .extra1 = &pty_limit_min, |
| 348 | .extra2 = &pty_limit_max, |
| 349 | }, { |
| 350 | .ctl_name = PTY_NR, |
| 351 | .procname = "nr", |
| 352 | .maxlen = sizeof(int), |
| 353 | .mode = 0444, |
| 354 | .proc_handler = &proc_dointvec, |
| 355 | }, { |
| 356 | .ctl_name = 0 |
| 357 | } |
| 358 | }; |
| 359 | |
Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 360 | static struct ctl_table pty_kern_table[] = { |
| 361 | { |
| 362 | .ctl_name = KERN_PTY, |
| 363 | .procname = "pty", |
| 364 | .mode = 0555, |
| 365 | .child = pty_table, |
| 366 | }, |
| 367 | {} |
| 368 | }; |
| 369 | |
| 370 | static struct ctl_table pty_root_table[] = { |
| 371 | { |
| 372 | .ctl_name = CTL_KERN, |
| 373 | .procname = "kernel", |
| 374 | .mode = 0555, |
| 375 | .child = pty_kern_table, |
| 376 | }, |
| 377 | {} |
| 378 | }; |
| 379 | |
| 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file, |
| 382 | unsigned int cmd, unsigned long arg) |
| 383 | { |
| 384 | switch (cmd) { |
| 385 | case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */ |
| 386 | return pty_set_lock(tty, (int __user *)arg); |
| 387 | case TIOCGPTN: /* Get PT Number */ |
| 388 | return put_user(tty->index, (unsigned int __user *)arg); |
| 389 | } |
| 390 | |
| 391 | return -ENOIOCTLCMD; |
| 392 | } |
| 393 | |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 394 | static void pty_shutdown(struct tty_struct *tty) |
| 395 | { |
| 396 | /* We have our own method as we don't use the tty index */ |
| 397 | kfree(tty->termios); |
| 398 | kfree(tty->termios_locked); |
| 399 | } |
| 400 | |
| 401 | static const struct tty_operations ptm_unix98_ops = { |
Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 402 | .open = pty_open, |
| 403 | .close = pty_close, |
| 404 | .write = pty_write, |
| 405 | .write_room = pty_write_room, |
| 406 | .flush_buffer = pty_flush_buffer, |
| 407 | .chars_in_buffer = pty_chars_in_buffer, |
| 408 | .unthrottle = pty_unthrottle, |
| 409 | .set_termios = pty_set_termios, |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 410 | .ioctl = pty_unix98_ioctl, |
| 411 | .shutdown = pty_shutdown |
Alan Cox | 3e8e88c | 2008-04-30 00:54:10 -0700 | [diff] [blame] | 412 | }; |
| 413 | |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame^] | 414 | |
| 415 | /** |
| 416 | * ptmx_open - open a unix 98 pty master |
| 417 | * @inode: inode of device file |
| 418 | * @filp: file pointer to tty |
| 419 | * |
| 420 | * Allocate a unix98 pty master device from the ptmx driver. |
| 421 | * |
| 422 | * Locking: tty_mutex protects the init_dev work. tty->count should |
| 423 | * protect the rest. |
| 424 | * allocated_ptys_lock handles the list of free pty numbers |
| 425 | */ |
| 426 | |
| 427 | static int __ptmx_open(struct inode *inode, struct file *filp) |
| 428 | { |
| 429 | struct tty_struct *tty; |
| 430 | int retval; |
| 431 | int index; |
| 432 | |
| 433 | nonseekable_open(inode, filp); |
| 434 | |
| 435 | /* find a device that is not in use. */ |
| 436 | index = devpts_new_index(); |
| 437 | if (index < 0) |
| 438 | return index; |
| 439 | |
| 440 | mutex_lock(&tty_mutex); |
| 441 | retval = tty_init_dev(ptm_driver, index, &tty, 1); |
| 442 | mutex_unlock(&tty_mutex); |
| 443 | |
| 444 | if (retval) |
| 445 | goto out; |
| 446 | |
| 447 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ |
| 448 | filp->private_data = tty; |
| 449 | file_move(filp, &tty->tty_files); |
| 450 | |
| 451 | retval = devpts_pty_new(tty->link); |
| 452 | if (retval) |
| 453 | goto out1; |
| 454 | |
| 455 | retval = ptm_driver->ops->open(tty, filp); |
| 456 | if (!retval) |
| 457 | return 0; |
| 458 | out1: |
| 459 | tty_release_dev(filp); |
| 460 | return retval; |
| 461 | out: |
| 462 | devpts_kill_index(index); |
| 463 | return retval; |
| 464 | } |
| 465 | |
| 466 | static int ptmx_open(struct inode *inode, struct file *filp) |
| 467 | { |
| 468 | int ret; |
| 469 | |
| 470 | lock_kernel(); |
| 471 | ret = __ptmx_open(inode, filp); |
| 472 | unlock_kernel(); |
| 473 | return ret; |
| 474 | } |
| 475 | |
| 476 | static struct file_operations ptmx_fops; |
| 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | static void __init unix98_pty_init(void) |
| 479 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | ptm_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX); |
| 481 | if (!ptm_driver) |
| 482 | panic("Couldn't allocate Unix98 ptm driver"); |
| 483 | pts_driver = alloc_tty_driver(NR_UNIX98_PTY_MAX); |
| 484 | if (!pts_driver) |
| 485 | panic("Couldn't allocate Unix98 pts driver"); |
| 486 | |
| 487 | ptm_driver->owner = THIS_MODULE; |
| 488 | ptm_driver->driver_name = "pty_master"; |
| 489 | ptm_driver->name = "ptm"; |
| 490 | ptm_driver->major = UNIX98_PTY_MASTER_MAJOR; |
| 491 | ptm_driver->minor_start = 0; |
| 492 | ptm_driver->type = TTY_DRIVER_TYPE_PTY; |
| 493 | ptm_driver->subtype = PTY_TYPE_MASTER; |
| 494 | ptm_driver->init_termios = tty_std_termios; |
| 495 | ptm_driver->init_termios.c_iflag = 0; |
| 496 | ptm_driver->init_termios.c_oflag = 0; |
| 497 | ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; |
| 498 | ptm_driver->init_termios.c_lflag = 0; |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 499 | ptm_driver->init_termios.c_ispeed = 38400; |
| 500 | ptm_driver->init_termios.c_ospeed = 38400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | ptm_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW | |
Greg Kroah-Hartman | 331b831 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 502 | TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | ptm_driver->other = pts_driver; |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 504 | tty_set_operations(ptm_driver, &ptm_unix98_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
| 506 | pts_driver->owner = THIS_MODULE; |
| 507 | pts_driver->driver_name = "pty_slave"; |
| 508 | pts_driver->name = "pts"; |
| 509 | pts_driver->major = UNIX98_PTY_SLAVE_MAJOR; |
| 510 | pts_driver->minor_start = 0; |
| 511 | pts_driver->type = TTY_DRIVER_TYPE_PTY; |
| 512 | pts_driver->subtype = PTY_TYPE_SLAVE; |
| 513 | pts_driver->init_termios = tty_std_termios; |
| 514 | pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD; |
Alan Cox | 606d099 | 2006-12-08 02:38:45 -0800 | [diff] [blame] | 515 | pts_driver->init_termios.c_ispeed = 38400; |
| 516 | pts_driver->init_termios.c_ospeed = 38400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | pts_driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW | |
Greg Kroah-Hartman | 331b831 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 518 | TTY_DRIVER_DYNAMIC_DEV | TTY_DRIVER_DEVPTS_MEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | pts_driver->other = ptm_driver; |
| 520 | tty_set_operations(pts_driver, &pty_ops); |
| 521 | |
| 522 | if (tty_register_driver(ptm_driver)) |
| 523 | panic("Couldn't register Unix98 ptm driver"); |
| 524 | if (tty_register_driver(pts_driver)) |
| 525 | panic("Couldn't register Unix98 pts driver"); |
| 526 | |
| 527 | pty_table[1].data = &ptm_driver->refcount; |
Eric W. Biederman | 35834ca | 2007-10-18 03:05:31 -0700 | [diff] [blame] | 528 | register_sysctl_table(pty_root_table); |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame^] | 529 | |
| 530 | /* Now create the /dev/ptmx special device */ |
| 531 | tty_default_fops(&ptmx_fops); |
| 532 | ptmx_fops.open = ptmx_open; |
| 533 | |
| 534 | cdev_init(&ptmx_cdev, &ptmx_fops); |
| 535 | if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) || |
| 536 | register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0) |
| 537 | panic("Couldn't register /dev/ptmx driver\n"); |
| 538 | device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame^] | 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | #else |
| 542 | static inline void unix98_pty_init(void) { } |
| 543 | #endif |
| 544 | |
| 545 | static int __init pty_init(void) |
| 546 | { |
| 547 | legacy_pty_init(); |
| 548 | unix98_pty_init(); |
| 549 | return 0; |
| 550 | } |
| 551 | module_init(pty_init); |