2 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Added support for a Unix98-style ptmx device.
5 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
7 * When reading this code see also fs/devpts. In particular note that the
8 * driver_data field is used by the devpts side as a binding to the devpts
12 #include <linux/module.h>
14 #include <linux/errno.h>
15 #include <linux/interrupt.h>
16 #include <linux/tty.h>
17 #include <linux/tty_flip.h>
18 #include <linux/fcntl.h>
19 #include <linux/sched.h>
20 #include <linux/string.h>
21 #include <linux/major.h>
23 #include <linux/init.h>
24 #include <linux/device.h>
25 #include <linux/uaccess.h>
26 #include <linux/bitops.h>
27 #include <linux/devpts_fs.h>
28 #include <linux/slab.h>
31 #ifdef CONFIG_UNIX98_PTYS
32 static struct tty_driver
*ptm_driver
;
33 static struct tty_driver
*pts_driver
;
36 static void pty_close(struct tty_struct
*tty
, struct file
*filp
)
39 if (tty
->driver
->subtype
== PTY_TYPE_MASTER
)
40 WARN_ON(tty
->count
> 1);
45 wake_up_interruptible(&tty
->read_wait
);
46 wake_up_interruptible(&tty
->write_wait
);
50 tty
->link
->packet
= 0;
51 set_bit(TTY_OTHER_CLOSED
, &tty
->link
->flags
);
52 wake_up_interruptible(&tty
->link
->read_wait
);
53 wake_up_interruptible(&tty
->link
->write_wait
);
54 if (tty
->driver
->subtype
== PTY_TYPE_MASTER
) {
55 set_bit(TTY_OTHER_CLOSED
, &tty
->flags
);
56 #ifdef CONFIG_UNIX98_PTYS
57 if (tty
->driver
== ptm_driver
)
58 devpts_pty_kill(tty
->link
);
61 tty_vhangup(tty
->link
);
67 * The unthrottle routine is called by the line discipline to signal
68 * that it can receive more characters. For PTY's, the TTY_THROTTLED
69 * flag is always set, to force the line discipline to always call the
70 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
71 * characters in the queue. This is necessary since each time this
72 * happens, we need to wake up any sleeping processes that could be
73 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
74 * for the pty buffer to be drained.
76 static void pty_unthrottle(struct tty_struct
*tty
)
78 tty_wakeup(tty
->link
);
79 set_bit(TTY_THROTTLED
, &tty
->flags
);
83 * pty_space - report space left for writing
84 * @to: tty we are writing into
86 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
87 * allows a lot of overspill room for echo and other fun messes to
91 static int pty_space(struct tty_struct
*to
)
93 int n
= 8192 - to
->buf
.memory_used
;
100 * pty_write - write to a pty
101 * @tty: the tty we write from
102 * @buf: kernel buffer of data
103 * @count: bytes to write
105 * Our "hardware" write method. Data is coming from the ldisc which
106 * may be in a non sleeping state. We simply throw this at the other
107 * end of the link as if we were an IRQ handler receiving stuff for
108 * the other side of the pty/tty pair.
111 static int pty_write(struct tty_struct
*tty
, const unsigned char *buf
, int c
)
113 struct tty_struct
*to
= tty
->link
;
119 /* Stuff the data into the input queue of the other end */
120 c
= tty_insert_flip_string(to
, buf
, c
);
123 tty_flip_buffer_push(to
);
131 * pty_write_room - write space
132 * @tty: tty we are writing from
134 * Report how many bytes the ldisc can send into the queue for
138 static int pty_write_room(struct tty_struct
*tty
)
142 return pty_space(tty
->link
);
146 * pty_chars_in_buffer - characters currently in our tx queue
149 * Report how much we have in the transmit queue. As everything is
150 * instantly at the other end this is easy to implement.
153 static int pty_chars_in_buffer(struct tty_struct
*tty
)
158 /* Set the lock flag on a pty */
159 static int pty_set_lock(struct tty_struct
*tty
, int __user
*arg
)
162 if (get_user(val
, arg
))
165 set_bit(TTY_PTY_LOCK
, &tty
->flags
);
167 clear_bit(TTY_PTY_LOCK
, &tty
->flags
);
171 /* Send a signal to the slave */
172 static int pty_signal(struct tty_struct
*tty
, int sig
)
178 spin_lock_irqsave(&tty
->link
->ctrl_lock
, flags
);
179 pgrp
= get_pid(tty
->link
->pgrp
);
180 spin_unlock_irqrestore(&tty
->link
->ctrl_lock
, flags
);
182 kill_pgrp(pgrp
, sig
, 1);
188 static void pty_flush_buffer(struct tty_struct
*tty
)
190 struct tty_struct
*to
= tty
->link
;
195 /* tty_buffer_flush(to); FIXME */
197 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
198 tty
->ctrl_status
|= TIOCPKT_FLUSHWRITE
;
199 wake_up_interruptible(&to
->read_wait
);
200 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
204 static int pty_open(struct tty_struct
*tty
, struct file
*filp
)
206 int retval
= -ENODEV
;
208 if (!tty
|| !tty
->link
)
212 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
214 if (test_bit(TTY_PTY_LOCK
, &tty
->link
->flags
))
216 if (tty
->link
->count
!= 1)
219 clear_bit(TTY_OTHER_CLOSED
, &tty
->link
->flags
);
220 set_bit(TTY_THROTTLED
, &tty
->flags
);
226 static void pty_set_termios(struct tty_struct
*tty
,
227 struct ktermios
*old_termios
)
229 tty
->termios
->c_cflag
&= ~(CSIZE
| PARENB
);
230 tty
->termios
->c_cflag
|= (CS8
| CREAD
);
234 * pty_do_resize - resize event
235 * @tty: tty being resized
236 * @ws: window size being set.
238 * Update the termios variables and send the necessary signals to
239 * peform a terminal resize correctly
242 int pty_resize(struct tty_struct
*tty
, struct winsize
*ws
)
244 struct pid
*pgrp
, *rpgrp
;
246 struct tty_struct
*pty
= tty
->link
;
248 /* For a PTY we need to lock the tty side */
249 mutex_lock(&tty
->termios_mutex
);
250 if (!memcmp(ws
, &tty
->winsize
, sizeof(*ws
)))
253 /* Get the PID values and reference them so we can
254 avoid holding the tty ctrl lock while sending signals.
255 We need to lock these individually however. */
257 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
258 pgrp
= get_pid(tty
->pgrp
);
259 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
261 spin_lock_irqsave(&pty
->ctrl_lock
, flags
);
262 rpgrp
= get_pid(pty
->pgrp
);
263 spin_unlock_irqrestore(&pty
->ctrl_lock
, flags
);
266 kill_pgrp(pgrp
, SIGWINCH
, 1);
267 if (rpgrp
!= pgrp
&& rpgrp
)
268 kill_pgrp(rpgrp
, SIGWINCH
, 1);
274 pty
->winsize
= *ws
; /* Never used so will go away soon */
276 mutex_unlock(&tty
->termios_mutex
);
280 /* Traditional BSD devices */
281 #ifdef CONFIG_LEGACY_PTYS
283 static int pty_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
285 struct tty_struct
*o_tty
;
286 int idx
= tty
->index
;
289 o_tty
= alloc_tty_struct();
292 if (!try_module_get(driver
->other
->owner
)) {
293 /* This cannot in fact currently happen */
297 initialize_tty_struct(o_tty
, driver
->other
, idx
);
299 /* We always use new tty termios data so we can do this
301 retval
= tty_init_termios(tty
);
305 retval
= tty_init_termios(o_tty
);
307 goto err_free_termios
;
310 * Everything allocated ... set up the o_tty structure.
312 driver
->other
->ttys
[idx
] = o_tty
;
313 tty_driver_kref_get(driver
->other
);
314 if (driver
->subtype
== PTY_TYPE_MASTER
)
316 /* Establish the links in both directions */
320 tty_driver_kref_get(driver
);
322 driver
->ttys
[idx
] = tty
;
325 tty_free_termios(tty
);
327 deinitialize_tty_struct(o_tty
);
328 module_put(o_tty
->driver
->owner
);
330 free_tty_struct(o_tty
);
334 static int pty_bsd_ioctl(struct tty_struct
*tty
,
335 unsigned int cmd
, unsigned long arg
)
338 case TIOCSPTLCK
: /* Set PT Lock (disallow slave open) */
339 return pty_set_lock(tty
, (int __user
*) arg
);
340 case TIOCSIG
: /* Send signal to other side of pty */
341 return pty_signal(tty
, (int) arg
);
346 static int legacy_count
= CONFIG_LEGACY_PTY_COUNT
;
347 module_param(legacy_count
, int, 0);
350 * The master side of a pty can do TIOCSPTLCK and thus
353 static const struct tty_operations master_pty_ops_bsd
= {
354 .install
= pty_install
,
358 .write_room
= pty_write_room
,
359 .flush_buffer
= pty_flush_buffer
,
360 .chars_in_buffer
= pty_chars_in_buffer
,
361 .unthrottle
= pty_unthrottle
,
362 .set_termios
= pty_set_termios
,
363 .ioctl
= pty_bsd_ioctl
,
367 static const struct tty_operations slave_pty_ops_bsd
= {
368 .install
= pty_install
,
372 .write_room
= pty_write_room
,
373 .flush_buffer
= pty_flush_buffer
,
374 .chars_in_buffer
= pty_chars_in_buffer
,
375 .unthrottle
= pty_unthrottle
,
376 .set_termios
= pty_set_termios
,
380 static void __init
legacy_pty_init(void)
382 struct tty_driver
*pty_driver
, *pty_slave_driver
;
384 if (legacy_count
<= 0)
387 pty_driver
= alloc_tty_driver(legacy_count
);
389 panic("Couldn't allocate pty driver");
391 pty_slave_driver
= alloc_tty_driver(legacy_count
);
392 if (!pty_slave_driver
)
393 panic("Couldn't allocate pty slave driver");
395 pty_driver
->driver_name
= "pty_master";
396 pty_driver
->name
= "pty";
397 pty_driver
->major
= PTY_MASTER_MAJOR
;
398 pty_driver
->minor_start
= 0;
399 pty_driver
->type
= TTY_DRIVER_TYPE_PTY
;
400 pty_driver
->subtype
= PTY_TYPE_MASTER
;
401 pty_driver
->init_termios
= tty_std_termios
;
402 pty_driver
->init_termios
.c_iflag
= 0;
403 pty_driver
->init_termios
.c_oflag
= 0;
404 pty_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
405 pty_driver
->init_termios
.c_lflag
= 0;
406 pty_driver
->init_termios
.c_ispeed
= 38400;
407 pty_driver
->init_termios
.c_ospeed
= 38400;
408 pty_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
;
409 pty_driver
->other
= pty_slave_driver
;
410 tty_set_operations(pty_driver
, &master_pty_ops_bsd
);
412 pty_slave_driver
->driver_name
= "pty_slave";
413 pty_slave_driver
->name
= "ttyp";
414 pty_slave_driver
->major
= PTY_SLAVE_MAJOR
;
415 pty_slave_driver
->minor_start
= 0;
416 pty_slave_driver
->type
= TTY_DRIVER_TYPE_PTY
;
417 pty_slave_driver
->subtype
= PTY_TYPE_SLAVE
;
418 pty_slave_driver
->init_termios
= tty_std_termios
;
419 pty_slave_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
420 pty_slave_driver
->init_termios
.c_ispeed
= 38400;
421 pty_slave_driver
->init_termios
.c_ospeed
= 38400;
422 pty_slave_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
|
424 pty_slave_driver
->other
= pty_driver
;
425 tty_set_operations(pty_slave_driver
, &slave_pty_ops_bsd
);
427 if (tty_register_driver(pty_driver
))
428 panic("Couldn't register pty driver");
429 if (tty_register_driver(pty_slave_driver
))
430 panic("Couldn't register pty slave driver");
433 static inline void legacy_pty_init(void) { }
437 #ifdef CONFIG_UNIX98_PTYS
439 static struct cdev ptmx_cdev
;
441 static int pty_unix98_ioctl(struct tty_struct
*tty
,
442 unsigned int cmd
, unsigned long arg
)
445 case TIOCSPTLCK
: /* Set PT Lock (disallow slave open) */
446 return pty_set_lock(tty
, (int __user
*)arg
);
447 case TIOCGPTN
: /* Get PT Number */
448 return put_user(tty
->index
, (unsigned int __user
*)arg
);
449 case TIOCSIG
: /* Send signal to other side of pty */
450 return pty_signal(tty
, (int) arg
);
457 * ptm_unix98_lookup - find a pty master
458 * @driver: ptm driver
461 * Look up a pty master device. Called under the tty_mutex for now.
462 * This provides our locking.
465 static struct tty_struct
*ptm_unix98_lookup(struct tty_driver
*driver
,
466 struct inode
*ptm_inode
, int idx
)
468 /* Master must be open via /dev/ptmx */
469 return ERR_PTR(-EIO
);
473 * pts_unix98_lookup - find a pty slave
474 * @driver: pts driver
477 * Look up a pty master device. Called under the tty_mutex for now.
478 * This provides our locking.
481 static struct tty_struct
*pts_unix98_lookup(struct tty_driver
*driver
,
482 struct inode
*pts_inode
, int idx
)
484 struct tty_struct
*tty
= devpts_get_tty(pts_inode
, idx
);
485 /* Master must be open before slave */
487 return ERR_PTR(-EIO
);
491 static void pty_unix98_shutdown(struct tty_struct
*tty
)
493 tty_driver_remove_tty(tty
->driver
, tty
);
494 /* We have our own method as we don't use the tty index */
498 /* We have no need to install and remove our tty objects as devpts does all
501 static int pty_unix98_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
503 struct tty_struct
*o_tty
;
504 int idx
= tty
->index
;
506 o_tty
= alloc_tty_struct();
509 if (!try_module_get(driver
->other
->owner
)) {
510 /* This cannot in fact currently happen */
513 initialize_tty_struct(o_tty
, driver
->other
, idx
);
515 tty
->termios
= kzalloc(sizeof(struct ktermios
[2]), GFP_KERNEL
);
516 if (tty
->termios
== NULL
)
518 *tty
->termios
= driver
->init_termios
;
519 tty
->termios_locked
= tty
->termios
+ 1;
521 o_tty
->termios
= kzalloc(sizeof(struct ktermios
[2]), GFP_KERNEL
);
522 if (o_tty
->termios
== NULL
)
524 *o_tty
->termios
= driver
->other
->init_termios
;
525 o_tty
->termios_locked
= o_tty
->termios
+ 1;
527 tty_driver_kref_get(driver
->other
);
528 if (driver
->subtype
== PTY_TYPE_MASTER
)
530 /* Establish the links in both directions */
534 * All structures have been allocated, so now we install them.
535 * Failures after this point use release_tty to clean up, so
536 * there's no need to null out the local pointers.
538 tty_driver_kref_get(driver
);
542 deinitialize_tty_struct(o_tty
);
543 kfree(o_tty
->termios
);
545 module_put(o_tty
->driver
->owner
);
547 free_tty_struct(o_tty
);
551 static void ptm_unix98_remove(struct tty_driver
*driver
, struct tty_struct
*tty
)
555 static void pts_unix98_remove(struct tty_driver
*driver
, struct tty_struct
*tty
)
559 static const struct tty_operations ptm_unix98_ops
= {
560 .lookup
= ptm_unix98_lookup
,
561 .install
= pty_unix98_install
,
562 .remove
= ptm_unix98_remove
,
566 .write_room
= pty_write_room
,
567 .flush_buffer
= pty_flush_buffer
,
568 .chars_in_buffer
= pty_chars_in_buffer
,
569 .unthrottle
= pty_unthrottle
,
570 .set_termios
= pty_set_termios
,
571 .ioctl
= pty_unix98_ioctl
,
572 .shutdown
= pty_unix98_shutdown
,
576 static const struct tty_operations pty_unix98_ops
= {
577 .lookup
= pts_unix98_lookup
,
578 .install
= pty_unix98_install
,
579 .remove
= pts_unix98_remove
,
583 .write_room
= pty_write_room
,
584 .flush_buffer
= pty_flush_buffer
,
585 .chars_in_buffer
= pty_chars_in_buffer
,
586 .unthrottle
= pty_unthrottle
,
587 .set_termios
= pty_set_termios
,
588 .shutdown
= pty_unix98_shutdown
592 * ptmx_open - open a unix 98 pty master
593 * @inode: inode of device file
594 * @filp: file pointer to tty
596 * Allocate a unix98 pty master device from the ptmx driver.
598 * Locking: tty_mutex protects the init_dev work. tty->count should
600 * allocated_ptys_lock handles the list of free pty numbers
603 static int ptmx_open(struct inode
*inode
, struct file
*filp
)
605 struct tty_struct
*tty
;
609 nonseekable_open(inode
, filp
);
611 retval
= tty_alloc_file(filp
);
615 /* find a device that is not in use. */
617 index
= devpts_new_index(inode
);
624 mutex_lock(&tty_mutex
);
626 tty
= tty_init_dev(ptm_driver
, index
);
627 mutex_unlock(&tty_mutex
);
630 retval
= PTR_ERR(tty
);
634 set_bit(TTY_PTY_LOCK
, &tty
->flags
); /* LOCK THE SLAVE */
636 tty_add_file(tty
, filp
);
638 retval
= devpts_pty_new(inode
, tty
->link
);
642 retval
= ptm_driver
->ops
->open(tty
, filp
);
650 tty_release(inode
, filp
);
653 devpts_kill_index(inode
, index
);
660 static struct file_operations ptmx_fops
;
662 static void __init
unix98_pty_init(void)
664 ptm_driver
= alloc_tty_driver(NR_UNIX98_PTY_MAX
);
666 panic("Couldn't allocate Unix98 ptm driver");
667 pts_driver
= alloc_tty_driver(NR_UNIX98_PTY_MAX
);
669 panic("Couldn't allocate Unix98 pts driver");
671 ptm_driver
->driver_name
= "pty_master";
672 ptm_driver
->name
= "ptm";
673 ptm_driver
->major
= UNIX98_PTY_MASTER_MAJOR
;
674 ptm_driver
->minor_start
= 0;
675 ptm_driver
->type
= TTY_DRIVER_TYPE_PTY
;
676 ptm_driver
->subtype
= PTY_TYPE_MASTER
;
677 ptm_driver
->init_termios
= tty_std_termios
;
678 ptm_driver
->init_termios
.c_iflag
= 0;
679 ptm_driver
->init_termios
.c_oflag
= 0;
680 ptm_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
681 ptm_driver
->init_termios
.c_lflag
= 0;
682 ptm_driver
->init_termios
.c_ispeed
= 38400;
683 ptm_driver
->init_termios
.c_ospeed
= 38400;
684 ptm_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
|
685 TTY_DRIVER_DYNAMIC_DEV
| TTY_DRIVER_DEVPTS_MEM
;
686 ptm_driver
->other
= pts_driver
;
687 tty_set_operations(ptm_driver
, &ptm_unix98_ops
);
689 pts_driver
->driver_name
= "pty_slave";
690 pts_driver
->name
= "pts";
691 pts_driver
->major
= UNIX98_PTY_SLAVE_MAJOR
;
692 pts_driver
->minor_start
= 0;
693 pts_driver
->type
= TTY_DRIVER_TYPE_PTY
;
694 pts_driver
->subtype
= PTY_TYPE_SLAVE
;
695 pts_driver
->init_termios
= tty_std_termios
;
696 pts_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
697 pts_driver
->init_termios
.c_ispeed
= 38400;
698 pts_driver
->init_termios
.c_ospeed
= 38400;
699 pts_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
|
700 TTY_DRIVER_DYNAMIC_DEV
| TTY_DRIVER_DEVPTS_MEM
;
701 pts_driver
->other
= ptm_driver
;
702 tty_set_operations(pts_driver
, &pty_unix98_ops
);
704 if (tty_register_driver(ptm_driver
))
705 panic("Couldn't register Unix98 ptm driver");
706 if (tty_register_driver(pts_driver
))
707 panic("Couldn't register Unix98 pts driver");
709 /* Now create the /dev/ptmx special device */
710 tty_default_fops(&ptmx_fops
);
711 ptmx_fops
.open
= ptmx_open
;
713 cdev_init(&ptmx_cdev
, &ptmx_fops
);
714 if (cdev_add(&ptmx_cdev
, MKDEV(TTYAUX_MAJOR
, 2), 1) ||
715 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 2), 1, "/dev/ptmx") < 0)
716 panic("Couldn't register /dev/ptmx driver\n");
717 device_create(tty_class
, NULL
, MKDEV(TTYAUX_MAJOR
, 2), NULL
, "ptmx");
721 static inline void unix98_pty_init(void) { }
724 static int __init
pty_init(void)
730 module_init(pty_init
);