Merge tag 'v3.10.65' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / tty / pty.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 *
4 * Added support for a Unix98-style ptmx device.
5 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
1da177e4 6 *
1da177e4
LT
7 */
8
fe9cd962 9#include <linux/module.h>
1da177e4
LT
10
11#include <linux/errno.h>
1da177e4
LT
12#include <linux/interrupt.h>
13#include <linux/tty.h>
14#include <linux/tty_flip.h>
15#include <linux/fcntl.h>
d43c36dc 16#include <linux/sched.h>
1da177e4
LT
17#include <linux/string.h>
18#include <linux/major.h>
19#include <linux/mm.h>
20#include <linux/init.h>
d81ed103 21#include <linux/device.h>
fe9cd962 22#include <linux/uaccess.h>
1da177e4
LT
23#include <linux/bitops.h>
24#include <linux/devpts_fs.h>
5a0e3ad6 25#include <linux/slab.h>
d739e65b 26#include <linux/mutex.h>
1da177e4 27
1da177e4 28#ifdef CONFIG_UNIX98_PTYS
da2bdf9a 29static struct tty_driver *ptm_driver;
1da177e4 30static struct tty_driver *pts_driver;
d739e65b 31static DEFINE_MUTEX(devpts_mutex);
1da177e4
LT
32#endif
33
fe9cd962 34static void pty_close(struct tty_struct *tty, struct file *filp)
1da177e4 35{
fe9cd962
AC
36 BUG_ON(!tty);
37 if (tty->driver->subtype == PTY_TYPE_MASTER)
38 WARN_ON(tty->count > 1);
39 else {
69939035
PH
40 if (test_bit(TTY_IO_ERROR, &tty->flags))
41 return;
1da177e4
LT
42 if (tty->count > 2)
43 return;
44 }
69939035 45 set_bit(TTY_IO_ERROR, &tty->flags);
1da177e4
LT
46 wake_up_interruptible(&tty->read_wait);
47 wake_up_interruptible(&tty->write_wait);
48 tty->packet = 0;
89c8d91e 49 /* Review - krefs on tty_link ?? */
1da177e4
LT
50 if (!tty->link)
51 return;
1da177e4
LT
52 set_bit(TTY_OTHER_CLOSED, &tty->link->flags);
53 wake_up_interruptible(&tty->link->read_wait);
54 wake_up_interruptible(&tty->link->write_wait);
55 if (tty->driver->subtype == PTY_TYPE_MASTER) {
56 set_bit(TTY_OTHER_CLOSED, &tty->flags);
ce1000dd 57#ifdef CONFIG_UNIX98_PTYS
d739e65b 58 if (tty->driver == ptm_driver) {
b9f8033f 59 mutex_lock(&devpts_mutex);
7acf6cd8
PH
60 if (tty->link->driver_data)
61 devpts_pty_kill(tty->link->driver_data);
b9f8033f 62 mutex_unlock(&devpts_mutex);
d739e65b 63 }
ce1000dd 64#endif
89c8d91e 65 tty_unlock(tty);
11dbf203 66 tty_vhangup(tty->link);
89c8d91e 67 tty_lock(tty);
1da177e4
LT
68 }
69}
70
71/*
72 * The unthrottle routine is called by the line discipline to signal
73 * that it can receive more characters. For PTY's, the TTY_THROTTLED
74 * flag is always set, to force the line discipline to always call the
fe9cd962 75 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
1da177e4
LT
76 * characters in the queue. This is necessary since each time this
77 * happens, we need to wake up any sleeping processes that could be
78 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
79 * for the pty buffer to be drained.
80 */
fe9cd962 81static void pty_unthrottle(struct tty_struct *tty)
1da177e4 82{
d945cb9c 83 tty_wakeup(tty->link);
1da177e4
LT
84 set_bit(TTY_THROTTLED, &tty->flags);
85}
86
d945cb9c
AC
87/**
88 * pty_space - report space left for writing
89 * @to: tty we are writing into
1da177e4 90 *
d945cb9c
AC
91 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
92 * allows a lot of overspill room for echo and other fun messes to
93 * be handled properly
94 */
95
96static int pty_space(struct tty_struct *to)
97{
ecbbfd44 98 int n = 8192 - to->port->buf.memory_used;
d945cb9c
AC
99 if (n < 0)
100 return 0;
101 return n;
102}
103
104/**
105 * pty_write - write to a pty
106 * @tty: the tty we write from
107 * @buf: kernel buffer of data
108 * @count: bytes to write
762faaed 109 *
d945cb9c
AC
110 * Our "hardware" write method. Data is coming from the ldisc which
111 * may be in a non sleeping state. We simply throw this at the other
112 * end of the link as if we were an IRQ handler receiving stuff for
113 * the other side of the pty/tty pair.
1da177e4 114 */
d945cb9c 115
ac89a917 116static int pty_write(struct tty_struct *tty, const unsigned char *buf, int c)
1da177e4
LT
117{
118 struct tty_struct *to = tty->link;
1da177e4 119
d945cb9c 120 if (tty->stopped)
1da177e4 121 return 0;
d945cb9c 122
d945cb9c
AC
123 if (c > 0) {
124 /* Stuff the data into the input queue of the other end */
05c7cd39 125 c = tty_insert_flip_string(to->port, buf, c);
d945cb9c 126 /* And shovel */
202c4675 127 if (c) {
2e124b4a 128 tty_flip_buffer_push(to->port);
202c4675
LT
129 tty_wakeup(tty);
130 }
762faaed 131 }
1da177e4
LT
132 return c;
133}
134
d945cb9c
AC
135/**
136 * pty_write_room - write space
137 * @tty: tty we are writing from
138 *
139 * Report how many bytes the ldisc can send into the queue for
140 * the other device.
141 */
142
1da177e4
LT
143static int pty_write_room(struct tty_struct *tty)
144{
85dfd81d
LT
145 if (tty->stopped)
146 return 0;
d945cb9c 147 return pty_space(tty->link);
1da177e4
LT
148}
149
d945cb9c
AC
150/**
151 * pty_chars_in_buffer - characters currently in our tx queue
152 * @tty: our tty
fe9cd962 153 *
d945cb9c
AC
154 * Report how much we have in the transmit queue. As everything is
155 * instantly at the other end this is easy to implement.
1da177e4 156 */
d945cb9c 157
1da177e4
LT
158static int pty_chars_in_buffer(struct tty_struct *tty)
159{
d945cb9c 160 return 0;
1da177e4
LT
161}
162
163/* Set the lock flag on a pty */
fe9cd962 164static int pty_set_lock(struct tty_struct *tty, int __user *arg)
1da177e4
LT
165{
166 int val;
fe9cd962 167 if (get_user(val, arg))
1da177e4
LT
168 return -EFAULT;
169 if (val)
170 set_bit(TTY_PTY_LOCK, &tty->flags);
171 else
172 clear_bit(TTY_PTY_LOCK, &tty->flags);
173 return 0;
174}
175
84fd7bdf
CG
176static int pty_get_lock(struct tty_struct *tty, int __user *arg)
177{
178 int locked = test_bit(TTY_PTY_LOCK, &tty->flags);
179 return put_user(locked, arg);
180}
181
06026d91
CG
182/* Set the packet mode on a pty */
183static int pty_set_pktmode(struct tty_struct *tty, int __user *arg)
184{
185 unsigned long flags;
186 int pktmode;
187
188 if (get_user(pktmode, arg))
189 return -EFAULT;
190
191 spin_lock_irqsave(&tty->ctrl_lock, flags);
192 if (pktmode) {
193 if (!tty->packet) {
194 tty->packet = 1;
195 tty->link->ctrl_status = 0;
196 }
197 } else
198 tty->packet = 0;
199 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
200
201 return 0;
202}
203
84fd7bdf
CG
204/* Get the packet mode of a pty */
205static int pty_get_pktmode(struct tty_struct *tty, int __user *arg)
206{
207 int pktmode = tty->packet;
208 return put_user(pktmode, arg);
209}
210
26df6d13 211/* Send a signal to the slave */
212static int pty_signal(struct tty_struct *tty, int sig)
213{
214 unsigned long flags;
215 struct pid *pgrp;
216
217 if (tty->link) {
218 spin_lock_irqsave(&tty->link->ctrl_lock, flags);
219 pgrp = get_pid(tty->link->pgrp);
220 spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
221
222 kill_pgrp(pgrp, sig, 1);
223 put_pid(pgrp);
224 }
225 return 0;
226}
227
1da177e4
LT
228static void pty_flush_buffer(struct tty_struct *tty)
229{
230 struct tty_struct *to = tty->link;
04f378b1 231 unsigned long flags;
fe9cd962 232
1da177e4
LT
233 if (!to)
234 return;
d945cb9c 235 /* tty_buffer_flush(to); FIXME */
1da177e4 236 if (to->packet) {
04f378b1 237 spin_lock_irqsave(&tty->ctrl_lock, flags);
1da177e4
LT
238 tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
239 wake_up_interruptible(&to->read_wait);
04f378b1 240 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
1da177e4
LT
241 }
242}
243
fe9cd962 244static int pty_open(struct tty_struct *tty, struct file *filp)
1da177e4 245{
1da177e4 246 if (!tty || !tty->link)
7c61c3d8 247 return -ENODEV;
69939035 248
1da177e4
LT
249 if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
250 goto out;
251 if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
252 goto out;
80cace72 253 if (tty->driver->subtype == PTY_TYPE_SLAVE && tty->link->count != 1)
1da177e4
LT
254 goto out;
255
69939035 256 clear_bit(TTY_IO_ERROR, &tty->flags);
1da177e4
LT
257 clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
258 set_bit(TTY_THROTTLED, &tty->flags);
7c61c3d8
PH
259 return 0;
260
1da177e4 261out:
7c61c3d8
PH
262 set_bit(TTY_IO_ERROR, &tty->flags);
263 return -EIO;
1da177e4
LT
264}
265
fe9cd962
AC
266static void pty_set_termios(struct tty_struct *tty,
267 struct ktermios *old_termios)
1da177e4 268{
adc8d746
AC
269 tty->termios.c_cflag &= ~(CSIZE | PARENB);
270 tty->termios.c_cflag |= (CS8 | CREAD);
1da177e4
LT
271}
272
fc6f6238
AC
273/**
274 * pty_do_resize - resize event
275 * @tty: tty being resized
c774bda2 276 * @ws: window size being set.
fc6f6238 277 *
3ad2f3fb 278 * Update the termios variables and send the necessary signals to
fc6f6238
AC
279 * peform a terminal resize correctly
280 */
281
159a8e92 282static int pty_resize(struct tty_struct *tty, struct winsize *ws)
fc6f6238
AC
283{
284 struct pid *pgrp, *rpgrp;
285 unsigned long flags;
286 struct tty_struct *pty = tty->link;
287
288 /* For a PTY we need to lock the tty side */
289 mutex_lock(&tty->termios_mutex);
290 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
291 goto done;
292
293 /* Get the PID values and reference them so we can
294 avoid holding the tty ctrl lock while sending signals.
295 We need to lock these individually however. */
296
297 spin_lock_irqsave(&tty->ctrl_lock, flags);
298 pgrp = get_pid(tty->pgrp);
299 spin_unlock_irqrestore(&tty->ctrl_lock, flags);
300
301 spin_lock_irqsave(&pty->ctrl_lock, flags);
302 rpgrp = get_pid(pty->pgrp);
303 spin_unlock_irqrestore(&pty->ctrl_lock, flags);
304
305 if (pgrp)
306 kill_pgrp(pgrp, SIGWINCH, 1);
307 if (rpgrp != pgrp && rpgrp)
308 kill_pgrp(rpgrp, SIGWINCH, 1);
309
310 put_pid(pgrp);
311 put_pid(rpgrp);
312
313 tty->winsize = *ws;
314 pty->winsize = *ws; /* Never used so will go away soon */
315done:
316 mutex_unlock(&tty->termios_mutex);
317 return 0;
318}
319
d155255a
AC
320/**
321 * pty_common_install - set up the pty pair
322 * @driver: the pty driver
323 * @tty: the tty being instantiated
324 * @bool: legacy, true if this is BSD style
325 *
326 * Perform the initial set up for the tty/pty pair. Called from the
327 * tty layer when the port is first opened.
328 *
329 * Locking: the caller must hold the tty_mutex
330 */
5d249bc6
JS
331static int pty_common_install(struct tty_driver *driver, struct tty_struct *tty,
332 bool legacy)
bf970ee4
AC
333{
334 struct tty_struct *o_tty;
d03702a2 335 struct tty_port *ports[2];
bf970ee4 336 int idx = tty->index;
5d249bc6 337 int retval = -ENOMEM;
bf970ee4
AC
338
339 o_tty = alloc_tty_struct();
6f9ea7ad
JS
340 if (!o_tty)
341 goto err;
d03702a2
JS
342 ports[0] = kmalloc(sizeof **ports, GFP_KERNEL);
343 ports[1] = kmalloc(sizeof **ports, GFP_KERNEL);
6f9ea7ad 344 if (!ports[0] || !ports[1])
d03702a2 345 goto err_free_tty;
bf970ee4
AC
346 if (!try_module_get(driver->other->owner)) {
347 /* This cannot in fact currently happen */
8a1b8d70 348 goto err_free_tty;
bf970ee4
AC
349 }
350 initialize_tty_struct(o_tty, driver->other, idx);
351
5d249bc6
JS
352 if (legacy) {
353 /* We always use new tty termios data so we can do this
354 the easy way .. */
355 retval = tty_init_termios(tty);
356 if (retval)
357 goto err_deinit_tty;
358
359 retval = tty_init_termios(o_tty);
360 if (retval)
361 goto err_free_termios;
362
363 driver->other->ttys[idx] = o_tty;
364 driver->ttys[idx] = tty;
365 } else {
adc8d746
AC
366 memset(&tty->termios_locked, 0, sizeof(tty->termios_locked));
367 tty->termios = driver->init_termios;
368 memset(&o_tty->termios_locked, 0, sizeof(tty->termios_locked));
369 o_tty->termios = driver->other->init_termios;
5d249bc6 370 }
fe9cd962 371
bf970ee4
AC
372 /*
373 * Everything allocated ... set up the o_tty structure.
374 */
bf970ee4
AC
375 tty_driver_kref_get(driver->other);
376 if (driver->subtype == PTY_TYPE_MASTER)
377 o_tty->count++;
378 /* Establish the links in both directions */
379 tty->link = o_tty;
380 o_tty->link = tty;
d03702a2
JS
381 tty_port_init(ports[0]);
382 tty_port_init(ports[1]);
383 o_tty->port = ports[0];
384 tty->port = ports[1];
967fab69 385 o_tty->port->itty = o_tty;
bf970ee4
AC
386
387 tty_driver_kref_get(driver);
388 tty->count++;
bf970ee4 389 return 0;
8a1b8d70 390err_free_termios:
5d249bc6
JS
391 if (legacy)
392 tty_free_termios(tty);
a9dccddb
JS
393err_deinit_tty:
394 deinitialize_tty_struct(o_tty);
bf970ee4 395 module_put(o_tty->driver->owner);
8a1b8d70 396err_free_tty:
d03702a2
JS
397 kfree(ports[0]);
398 kfree(ports[1]);
bf970ee4 399 free_tty_struct(o_tty);
6f9ea7ad 400err:
8a1b8d70 401 return retval;
bf970ee4
AC
402}
403
d03702a2
JS
404static void pty_cleanup(struct tty_struct *tty)
405{
81c79838 406 tty_port_put(tty->port);
d03702a2
JS
407}
408
5d249bc6
JS
409/* Traditional BSD devices */
410#ifdef CONFIG_LEGACY_PTYS
411
412static int pty_install(struct tty_driver *driver, struct tty_struct *tty)
413{
414 return pty_common_install(driver, tty, true);
415}
416
d155255a
AC
417static void pty_remove(struct tty_driver *driver, struct tty_struct *tty)
418{
419 struct tty_struct *pair = tty->link;
420 driver->ttys[tty->index] = NULL;
421 if (pair)
422 pair->driver->ttys[pair->index] = NULL;
423}
424
6caa76b7 425static int pty_bsd_ioctl(struct tty_struct *tty,
1da177e4
LT
426 unsigned int cmd, unsigned long arg)
427{
428 switch (cmd) {
429 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
430 return pty_set_lock(tty, (int __user *) arg);
84fd7bdf
CG
431 case TIOCGPTLCK: /* Get PT Lock status */
432 return pty_get_lock(tty, (int __user *)arg);
06026d91
CG
433 case TIOCPKT: /* Set PT packet mode */
434 return pty_set_pktmode(tty, (int __user *)arg);
84fd7bdf
CG
435 case TIOCGPKT: /* Get PT packet mode */
436 return pty_get_pktmode(tty, (int __user *)arg);
26df6d13 437 case TIOCSIG: /* Send signal to other side of pty */
438 return pty_signal(tty, (int) arg);
ded2f295
JS
439 case TIOCGPTN: /* TTY returns ENOTTY, but glibc expects EINVAL here */
440 return -EINVAL;
1da177e4
LT
441 }
442 return -ENOIOCTLCMD;
443}
444
dc8c8587
KS
445static int legacy_count = CONFIG_LEGACY_PTY_COUNT;
446module_param(legacy_count, int, 0);
447
342a5971
LT
448/*
449 * The master side of a pty can do TIOCSPTLCK and thus
450 * has pty_bsd_ioctl.
451 */
452static const struct tty_operations master_pty_ops_bsd = {
453 .install = pty_install,
3e8e88ca
AC
454 .open = pty_open,
455 .close = pty_close,
456 .write = pty_write,
457 .write_room = pty_write_room,
458 .flush_buffer = pty_flush_buffer,
459 .chars_in_buffer = pty_chars_in_buffer,
460 .unthrottle = pty_unthrottle,
461 .set_termios = pty_set_termios,
462 .ioctl = pty_bsd_ioctl,
d03702a2 463 .cleanup = pty_cleanup,
d155255a
AC
464 .resize = pty_resize,
465 .remove = pty_remove
3e8e88ca
AC
466};
467
342a5971
LT
468static const struct tty_operations slave_pty_ops_bsd = {
469 .install = pty_install,
470 .open = pty_open,
471 .close = pty_close,
472 .write = pty_write,
473 .write_room = pty_write_room,
474 .flush_buffer = pty_flush_buffer,
475 .chars_in_buffer = pty_chars_in_buffer,
476 .unthrottle = pty_unthrottle,
477 .set_termios = pty_set_termios,
d03702a2 478 .cleanup = pty_cleanup,
d155255a
AC
479 .resize = pty_resize,
480 .remove = pty_remove
342a5971
LT
481};
482
1da177e4
LT
483static void __init legacy_pty_init(void)
484{
342a5971
LT
485 struct tty_driver *pty_driver, *pty_slave_driver;
486
dc8c8587
KS
487 if (legacy_count <= 0)
488 return;
1da177e4 489
21aca2fa
JS
490 pty_driver = tty_alloc_driver(legacy_count,
491 TTY_DRIVER_RESET_TERMIOS |
492 TTY_DRIVER_REAL_RAW |
493 TTY_DRIVER_DYNAMIC_ALLOC);
c3a6344a 494 if (IS_ERR(pty_driver))
1da177e4
LT
495 panic("Couldn't allocate pty driver");
496
21aca2fa
JS
497 pty_slave_driver = tty_alloc_driver(legacy_count,
498 TTY_DRIVER_RESET_TERMIOS |
499 TTY_DRIVER_REAL_RAW |
500 TTY_DRIVER_DYNAMIC_ALLOC);
c3a6344a 501 if (IS_ERR(pty_slave_driver))
1da177e4
LT
502 panic("Couldn't allocate pty slave driver");
503
1da177e4
LT
504 pty_driver->driver_name = "pty_master";
505 pty_driver->name = "pty";
1da177e4
LT
506 pty_driver->major = PTY_MASTER_MAJOR;
507 pty_driver->minor_start = 0;
508 pty_driver->type = TTY_DRIVER_TYPE_PTY;
509 pty_driver->subtype = PTY_TYPE_MASTER;
510 pty_driver->init_termios = tty_std_termios;
511 pty_driver->init_termios.c_iflag = 0;
512 pty_driver->init_termios.c_oflag = 0;
513 pty_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
514 pty_driver->init_termios.c_lflag = 0;
606d099c
AC
515 pty_driver->init_termios.c_ispeed = 38400;
516 pty_driver->init_termios.c_ospeed = 38400;
1da177e4 517 pty_driver->other = pty_slave_driver;
342a5971 518 tty_set_operations(pty_driver, &master_pty_ops_bsd);
1da177e4 519
1da177e4
LT
520 pty_slave_driver->driver_name = "pty_slave";
521 pty_slave_driver->name = "ttyp";
1da177e4
LT
522 pty_slave_driver->major = PTY_SLAVE_MAJOR;
523 pty_slave_driver->minor_start = 0;
524 pty_slave_driver->type = TTY_DRIVER_TYPE_PTY;
525 pty_slave_driver->subtype = PTY_TYPE_SLAVE;
526 pty_slave_driver->init_termios = tty_std_termios;
527 pty_slave_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
606d099c
AC
528 pty_slave_driver->init_termios.c_ispeed = 38400;
529 pty_slave_driver->init_termios.c_ospeed = 38400;
1da177e4 530 pty_slave_driver->other = pty_driver;
342a5971 531 tty_set_operations(pty_slave_driver, &slave_pty_ops_bsd);
1da177e4
LT
532
533 if (tty_register_driver(pty_driver))
534 panic("Couldn't register pty driver");
535 if (tty_register_driver(pty_slave_driver))
536 panic("Couldn't register pty slave driver");
537}
538#else
539static inline void legacy_pty_init(void) { }
540#endif
541
542/* Unix98 devices */
543#ifdef CONFIG_UNIX98_PTYS
1da177e4 544
d81ed103
AC
545static struct cdev ptmx_cdev;
546
6caa76b7 547static int pty_unix98_ioctl(struct tty_struct *tty,
1da177e4
LT
548 unsigned int cmd, unsigned long arg)
549{
550 switch (cmd) {
551 case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
552 return pty_set_lock(tty, (int __user *)arg);
84fd7bdf
CG
553 case TIOCGPTLCK: /* Get PT Lock status */
554 return pty_get_lock(tty, (int __user *)arg);
06026d91
CG
555 case TIOCPKT: /* Set PT packet mode */
556 return pty_set_pktmode(tty, (int __user *)arg);
84fd7bdf
CG
557 case TIOCGPKT: /* Get PT packet mode */
558 return pty_get_pktmode(tty, (int __user *)arg);
1da177e4
LT
559 case TIOCGPTN: /* Get PT Number */
560 return put_user(tty->index, (unsigned int __user *)arg);
26df6d13 561 case TIOCSIG: /* Send signal to other side of pty */
562 return pty_signal(tty, (int) arg);
1da177e4
LT
563 }
564
565 return -ENOIOCTLCMD;
566}
567
99f1fe18
AC
568/**
569 * ptm_unix98_lookup - find a pty master
570 * @driver: ptm driver
571 * @idx: tty index
572 *
573 * Look up a pty master device. Called under the tty_mutex for now.
574 * This provides our locking.
575 */
576
15f1a633
SB
577static struct tty_struct *ptm_unix98_lookup(struct tty_driver *driver,
578 struct inode *ptm_inode, int idx)
99f1fe18 579{
593a27c4
KK
580 /* Master must be open via /dev/ptmx */
581 return ERR_PTR(-EIO);
99f1fe18
AC
582}
583
584/**
585 * pts_unix98_lookup - find a pty slave
586 * @driver: pts driver
587 * @idx: tty index
588 *
589 * Look up a pty master device. Called under the tty_mutex for now.
d739e65b 590 * This provides our locking for the tty pointer.
99f1fe18
AC
591 */
592
15f1a633
SB
593static struct tty_struct *pts_unix98_lookup(struct tty_driver *driver,
594 struct inode *pts_inode, int idx)
99f1fe18 595{
d739e65b
AC
596 struct tty_struct *tty;
597
598 mutex_lock(&devpts_mutex);
8fcbaa2b 599 tty = devpts_get_priv(pts_inode);
d739e65b 600 mutex_unlock(&devpts_mutex);
99f1fe18
AC
601 /* Master must be open before slave */
602 if (!tty)
603 return ERR_PTR(-EIO);
604 return tty;
605}
606
8b0a88d5
AC
607/* We have no need to install and remove our tty objects as devpts does all
608 the work for us */
609
bf970ee4 610static int pty_unix98_install(struct tty_driver *driver, struct tty_struct *tty)
8b0a88d5 611{
5d249bc6 612 return pty_common_install(driver, tty, false);
8b0a88d5
AC
613}
614
7171604a 615static void pty_unix98_remove(struct tty_driver *driver, struct tty_struct *tty)
8b0a88d5
AC
616{
617}
618
f4b208eb
JS
619/* this is called once with whichever end is closed last */
620static void pty_unix98_shutdown(struct tty_struct *tty)
621{
622 devpts_kill_index(tty->driver_data, tty->index);
623}
624
feebed65 625static const struct tty_operations ptm_unix98_ops = {
99f1fe18 626 .lookup = ptm_unix98_lookup,
bf970ee4 627 .install = pty_unix98_install,
7171604a 628 .remove = pty_unix98_remove,
3e8e88ca
AC
629 .open = pty_open,
630 .close = pty_close,
631 .write = pty_write,
632 .write_room = pty_write_room,
633 .flush_buffer = pty_flush_buffer,
634 .chars_in_buffer = pty_chars_in_buffer,
635 .unthrottle = pty_unthrottle,
636 .set_termios = pty_set_termios,
feebed65 637 .ioctl = pty_unix98_ioctl,
36b3c070 638 .resize = pty_resize,
fa2ecfc5 639 .shutdown = pty_unix98_shutdown,
36b3c070 640 .cleanup = pty_cleanup
3e8e88ca
AC
641};
642
99f1fe18
AC
643static const struct tty_operations pty_unix98_ops = {
644 .lookup = pts_unix98_lookup,
bf970ee4 645 .install = pty_unix98_install,
7171604a 646 .remove = pty_unix98_remove,
99f1fe18
AC
647 .open = pty_open,
648 .close = pty_close,
649 .write = pty_write,
650 .write_room = pty_write_room,
651 .flush_buffer = pty_flush_buffer,
652 .chars_in_buffer = pty_chars_in_buffer,
653 .unthrottle = pty_unthrottle,
654 .set_termios = pty_set_termios,
fa2ecfc5 655 .shutdown = pty_unix98_shutdown,
d03702a2 656 .cleanup = pty_cleanup,
99f1fe18 657};
d81ed103
AC
658
659/**
660 * ptmx_open - open a unix 98 pty master
661 * @inode: inode of device file
662 * @filp: file pointer to tty
663 *
664 * Allocate a unix98 pty master device from the ptmx driver.
665 *
666 * Locking: tty_mutex protects the init_dev work. tty->count should
b9f8033f 667 * protect the rest.
d81ed103
AC
668 * allocated_ptys_lock handles the list of free pty numbers
669 */
670
64ba3dc3 671static int ptmx_open(struct inode *inode, struct file *filp)
d81ed103
AC
672{
673 struct tty_struct *tty;
162b97cf 674 struct inode *slave_inode;
d81ed103
AC
675 int retval;
676 int index;
677
678 nonseekable_open(inode, filp);
679
b0b88565
LT
680 /* We refuse fsnotify events on ptmx, since it's a shared resource */
681 filp->f_mode |= FMODE_NONOTIFY;
682
fa90e1c9
JS
683 retval = tty_alloc_file(filp);
684 if (retval)
685 return retval;
686
d81ed103 687 /* find a device that is not in use. */
89c8d91e 688 mutex_lock(&devpts_mutex);
15f1a633 689 index = devpts_new_index(inode);
fa90e1c9
JS
690 if (index < 0) {
691 retval = index;
05fb79e4 692 mutex_unlock(&devpts_mutex);
fa90e1c9
JS
693 goto err_file;
694 }
d81ed103 695
89c8d91e
AC
696 mutex_unlock(&devpts_mutex);
697
d81ed103 698 mutex_lock(&tty_mutex);
593a27c4 699 tty = tty_init_dev(ptm_driver, index);
d81ed103 700
73ec06fc
AC
701 if (IS_ERR(tty)) {
702 retval = PTR_ERR(tty);
d81ed103 703 goto out;
73ec06fc 704 }
d81ed103 705
89c8d91e
AC
706 /* The tty returned here is locked so we can safely
707 drop the mutex */
708 mutex_unlock(&tty_mutex);
709
d81ed103 710 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
7acf6cd8 711 tty->driver_data = inode;
ee2ffa0d 712
fa90e1c9 713 tty_add_file(tty, filp);
d81ed103 714
f11afb61
JS
715 slave_inode = devpts_pty_new(inode,
716 MKDEV(UNIX98_PTY_SLAVE_MAJOR, index), index,
717 tty->link);
162b97cf
JS
718 if (IS_ERR(slave_inode)) {
719 retval = PTR_ERR(slave_inode);
1177c0ef 720 goto err_release;
162b97cf 721 }
7acf6cd8 722 tty->link->driver_data = slave_inode;
d81ed103
AC
723
724 retval = ptm_driver->ops->open(tty, filp);
64ba3dc3 725 if (retval)
1177c0ef
JS
726 goto err_release;
727
89c8d91e 728 tty_unlock(tty);
1177c0ef
JS
729 return 0;
730err_release:
89c8d91e 731 tty_unlock(tty);
eeb89d91 732 tty_release(inode, filp);
d81ed103
AC
733 return retval;
734out:
89c8d91e 735 mutex_unlock(&tty_mutex);
d3bda529 736 devpts_kill_index(inode, index);
fa90e1c9
JS
737err_file:
738 tty_free_file(filp);
64ba3dc3 739 return retval;
d81ed103
AC
740}
741
742static struct file_operations ptmx_fops;
743
1da177e4
LT
744static void __init unix98_pty_init(void)
745{
21aca2fa
JS
746 ptm_driver = tty_alloc_driver(NR_UNIX98_PTY_MAX,
747 TTY_DRIVER_RESET_TERMIOS |
748 TTY_DRIVER_REAL_RAW |
749 TTY_DRIVER_DYNAMIC_DEV |
750 TTY_DRIVER_DEVPTS_MEM |
751 TTY_DRIVER_DYNAMIC_ALLOC);
c3a6344a 752 if (IS_ERR(ptm_driver))
1da177e4 753 panic("Couldn't allocate Unix98 ptm driver");
21aca2fa
JS
754 pts_driver = tty_alloc_driver(NR_UNIX98_PTY_MAX,
755 TTY_DRIVER_RESET_TERMIOS |
756 TTY_DRIVER_REAL_RAW |
757 TTY_DRIVER_DYNAMIC_DEV |
758 TTY_DRIVER_DEVPTS_MEM |
759 TTY_DRIVER_DYNAMIC_ALLOC);
c3a6344a 760 if (IS_ERR(pts_driver))
1da177e4
LT
761 panic("Couldn't allocate Unix98 pts driver");
762
1da177e4
LT
763 ptm_driver->driver_name = "pty_master";
764 ptm_driver->name = "ptm";
765 ptm_driver->major = UNIX98_PTY_MASTER_MAJOR;
766 ptm_driver->minor_start = 0;
767 ptm_driver->type = TTY_DRIVER_TYPE_PTY;
768 ptm_driver->subtype = PTY_TYPE_MASTER;
769 ptm_driver->init_termios = tty_std_termios;
770 ptm_driver->init_termios.c_iflag = 0;
771 ptm_driver->init_termios.c_oflag = 0;
772 ptm_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
773 ptm_driver->init_termios.c_lflag = 0;
606d099c
AC
774 ptm_driver->init_termios.c_ispeed = 38400;
775 ptm_driver->init_termios.c_ospeed = 38400;
1da177e4 776 ptm_driver->other = pts_driver;
feebed65 777 tty_set_operations(ptm_driver, &ptm_unix98_ops);
1da177e4 778
1da177e4
LT
779 pts_driver->driver_name = "pty_slave";
780 pts_driver->name = "pts";
781 pts_driver->major = UNIX98_PTY_SLAVE_MAJOR;
782 pts_driver->minor_start = 0;
783 pts_driver->type = TTY_DRIVER_TYPE_PTY;
784 pts_driver->subtype = PTY_TYPE_SLAVE;
785 pts_driver->init_termios = tty_std_termios;
786 pts_driver->init_termios.c_cflag = B38400 | CS8 | CREAD;
606d099c
AC
787 pts_driver->init_termios.c_ispeed = 38400;
788 pts_driver->init_termios.c_ospeed = 38400;
1da177e4 789 pts_driver->other = ptm_driver;
99f1fe18 790 tty_set_operations(pts_driver, &pty_unix98_ops);
fe9cd962 791
1da177e4
LT
792 if (tty_register_driver(ptm_driver))
793 panic("Couldn't register Unix98 ptm driver");
794 if (tty_register_driver(pts_driver))
795 panic("Couldn't register Unix98 pts driver");
796
d81ed103
AC
797 /* Now create the /dev/ptmx special device */
798 tty_default_fops(&ptmx_fops);
799 ptmx_fops.open = ptmx_open;
800
801 cdev_init(&ptmx_cdev, &ptmx_fops);
802 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
803 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
82f8c35f 804 panic("Couldn't register /dev/ptmx driver");
d81ed103 805 device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
1da177e4 806}
d81ed103 807
1da177e4
LT
808#else
809static inline void unix98_pty_init(void) { }
810#endif
811
812static int __init pty_init(void)
813{
814 legacy_pty_init();
815 unix98_pty_init();
816 return 0;
817}
818module_init(pty_init);