2 * linux/drivers/char/pty.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
6 * Added support for a Unix98-style ptmx device.
7 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
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
14 #include <linux/module.h>
16 #include <linux/errno.h>
17 #include <linux/interrupt.h>
18 #include <linux/tty.h>
19 #include <linux/tty_flip.h>
20 #include <linux/fcntl.h>
21 #include <linux/sched.h>
22 #include <linux/string.h>
23 #include <linux/major.h>
25 #include <linux/init.h>
26 #include <linux/smp_lock.h>
27 #include <linux/sysctl.h>
28 #include <linux/device.h>
29 #include <linux/uaccess.h>
30 #include <linux/bitops.h>
31 #include <linux/devpts_fs.h>
33 #include <asm/system.h>
35 #ifdef CONFIG_UNIX98_PTYS
36 static struct tty_driver
*ptm_driver
;
37 static struct tty_driver
*pts_driver
;
40 static void pty_close(struct tty_struct
*tty
, struct file
*filp
)
43 if (tty
->driver
->subtype
== PTY_TYPE_MASTER
)
44 WARN_ON(tty
->count
> 1);
49 wake_up_interruptible(&tty
->read_wait
);
50 wake_up_interruptible(&tty
->write_wait
);
54 tty
->link
->packet
= 0;
55 set_bit(TTY_OTHER_CLOSED
, &tty
->link
->flags
);
56 wake_up_interruptible(&tty
->link
->read_wait
);
57 wake_up_interruptible(&tty
->link
->write_wait
);
58 if (tty
->driver
->subtype
== PTY_TYPE_MASTER
) {
59 set_bit(TTY_OTHER_CLOSED
, &tty
->flags
);
60 #ifdef CONFIG_UNIX98_PTYS
61 if (tty
->driver
== ptm_driver
)
62 devpts_pty_kill(tty
->link
);
64 tty_vhangup(tty
->link
);
69 * The unthrottle routine is called by the line discipline to signal
70 * that it can receive more characters. For PTY's, the TTY_THROTTLED
71 * flag is always set, to force the line discipline to always call the
72 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
73 * characters in the queue. This is necessary since each time this
74 * happens, we need to wake up any sleeping processes that could be
75 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
76 * for the pty buffer to be drained.
78 static void pty_unthrottle(struct tty_struct
*tty
)
80 tty_wakeup(tty
->link
);
81 set_bit(TTY_THROTTLED
, &tty
->flags
);
85 * pty_space - report space left for writing
86 * @to: tty we are writing into
88 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
89 * allows a lot of overspill room for echo and other fun messes to
93 static int pty_space(struct tty_struct
*to
)
95 int n
= 8192 - to
->buf
.memory_used
;
102 * pty_write - write to a pty
103 * @tty: the tty we write from
104 * @buf: kernel buffer of data
105 * @count: bytes to write
107 * Our "hardware" write method. Data is coming from the ldisc which
108 * may be in a non sleeping state. We simply throw this at the other
109 * end of the link as if we were an IRQ handler receiving stuff for
110 * the other side of the pty/tty pair.
113 static int pty_write(struct tty_struct
*tty
, const unsigned char *buf
, int c
)
115 struct tty_struct
*to
= tty
->link
;
121 /* Stuff the data into the input queue of the other end */
122 c
= tty_insert_flip_string(to
, buf
, c
);
125 tty_flip_buffer_push(to
);
133 * pty_write_room - write space
134 * @tty: tty we are writing from
136 * Report how many bytes the ldisc can send into the queue for
140 static int pty_write_room(struct tty_struct
*tty
)
144 return pty_space(tty
->link
);
148 * pty_chars_in_buffer - characters currently in our tx queue
151 * Report how much we have in the transmit queue. As everything is
152 * instantly at the other end this is easy to implement.
155 static int pty_chars_in_buffer(struct tty_struct
*tty
)
160 /* Set the lock flag on a pty */
161 static int pty_set_lock(struct tty_struct
*tty
, int __user
*arg
)
164 if (get_user(val
, arg
))
167 set_bit(TTY_PTY_LOCK
, &tty
->flags
);
169 clear_bit(TTY_PTY_LOCK
, &tty
->flags
);
173 static void pty_flush_buffer(struct tty_struct
*tty
)
175 struct tty_struct
*to
= tty
->link
;
180 /* tty_buffer_flush(to); FIXME */
182 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
183 tty
->ctrl_status
|= TIOCPKT_FLUSHWRITE
;
184 wake_up_interruptible(&to
->read_wait
);
185 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
189 static int pty_open(struct tty_struct
*tty
, struct file
*filp
)
191 int retval
= -ENODEV
;
193 if (!tty
|| !tty
->link
)
197 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
199 if (test_bit(TTY_PTY_LOCK
, &tty
->link
->flags
))
201 if (tty
->link
->count
!= 1)
204 clear_bit(TTY_OTHER_CLOSED
, &tty
->link
->flags
);
205 set_bit(TTY_THROTTLED
, &tty
->flags
);
211 static void pty_set_termios(struct tty_struct
*tty
,
212 struct ktermios
*old_termios
)
214 tty
->termios
->c_cflag
&= ~(CSIZE
| PARENB
);
215 tty
->termios
->c_cflag
|= (CS8
| CREAD
);
219 * pty_do_resize - resize event
220 * @tty: tty being resized
221 * @ws: window size being set.
223 * Update the termios variables and send the neccessary signals to
224 * peform a terminal resize correctly
227 int pty_resize(struct tty_struct
*tty
, struct winsize
*ws
)
229 struct pid
*pgrp
, *rpgrp
;
231 struct tty_struct
*pty
= tty
->link
;
233 /* For a PTY we need to lock the tty side */
234 mutex_lock(&tty
->termios_mutex
);
235 if (!memcmp(ws
, &tty
->winsize
, sizeof(*ws
)))
238 /* Get the PID values and reference them so we can
239 avoid holding the tty ctrl lock while sending signals.
240 We need to lock these individually however. */
242 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
243 pgrp
= get_pid(tty
->pgrp
);
244 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
246 spin_lock_irqsave(&pty
->ctrl_lock
, flags
);
247 rpgrp
= get_pid(pty
->pgrp
);
248 spin_unlock_irqrestore(&pty
->ctrl_lock
, flags
);
251 kill_pgrp(pgrp
, SIGWINCH
, 1);
252 if (rpgrp
!= pgrp
&& rpgrp
)
253 kill_pgrp(rpgrp
, SIGWINCH
, 1);
259 pty
->winsize
= *ws
; /* Never used so will go away soon */
261 mutex_unlock(&tty
->termios_mutex
);
265 /* Traditional BSD devices */
266 #ifdef CONFIG_LEGACY_PTYS
268 static int pty_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
270 struct tty_struct
*o_tty
;
271 int idx
= tty
->index
;
274 o_tty
= alloc_tty_struct();
277 if (!try_module_get(driver
->other
->owner
)) {
278 /* This cannot in fact currently happen */
279 free_tty_struct(o_tty
);
282 initialize_tty_struct(o_tty
, driver
->other
, idx
);
284 /* We always use new tty termios data so we can do this
286 retval
= tty_init_termios(tty
);
290 retval
= tty_init_termios(o_tty
);
292 tty_free_termios(tty
);
297 * Everything allocated ... set up the o_tty structure.
299 driver
->other
->ttys
[idx
] = o_tty
;
300 tty_driver_kref_get(driver
->other
);
301 if (driver
->subtype
== PTY_TYPE_MASTER
)
303 /* Establish the links in both directions */
307 tty_driver_kref_get(driver
);
309 driver
->ttys
[idx
] = tty
;
312 module_put(o_tty
->driver
->owner
);
313 free_tty_struct(o_tty
);
317 static int pty_bsd_ioctl(struct tty_struct
*tty
, struct file
*file
,
318 unsigned int cmd
, unsigned long arg
)
321 case TIOCSPTLCK
: /* Set PT Lock (disallow slave open) */
322 return pty_set_lock(tty
, (int __user
*) arg
);
327 static int legacy_count
= CONFIG_LEGACY_PTY_COUNT
;
328 module_param(legacy_count
, int, 0);
331 * The master side of a pty can do TIOCSPTLCK and thus
334 static const struct tty_operations master_pty_ops_bsd
= {
335 .install
= pty_install
,
339 .write_room
= pty_write_room
,
340 .flush_buffer
= pty_flush_buffer
,
341 .chars_in_buffer
= pty_chars_in_buffer
,
342 .unthrottle
= pty_unthrottle
,
343 .set_termios
= pty_set_termios
,
344 .ioctl
= pty_bsd_ioctl
,
348 static const struct tty_operations slave_pty_ops_bsd
= {
349 .install
= pty_install
,
353 .write_room
= pty_write_room
,
354 .flush_buffer
= pty_flush_buffer
,
355 .chars_in_buffer
= pty_chars_in_buffer
,
356 .unthrottle
= pty_unthrottle
,
357 .set_termios
= pty_set_termios
,
361 static void __init
legacy_pty_init(void)
363 struct tty_driver
*pty_driver
, *pty_slave_driver
;
365 if (legacy_count
<= 0)
368 pty_driver
= alloc_tty_driver(legacy_count
);
370 panic("Couldn't allocate pty driver");
372 pty_slave_driver
= alloc_tty_driver(legacy_count
);
373 if (!pty_slave_driver
)
374 panic("Couldn't allocate pty slave driver");
376 pty_driver
->owner
= THIS_MODULE
;
377 pty_driver
->driver_name
= "pty_master";
378 pty_driver
->name
= "pty";
379 pty_driver
->major
= PTY_MASTER_MAJOR
;
380 pty_driver
->minor_start
= 0;
381 pty_driver
->type
= TTY_DRIVER_TYPE_PTY
;
382 pty_driver
->subtype
= PTY_TYPE_MASTER
;
383 pty_driver
->init_termios
= tty_std_termios
;
384 pty_driver
->init_termios
.c_iflag
= 0;
385 pty_driver
->init_termios
.c_oflag
= 0;
386 pty_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
387 pty_driver
->init_termios
.c_lflag
= 0;
388 pty_driver
->init_termios
.c_ispeed
= 38400;
389 pty_driver
->init_termios
.c_ospeed
= 38400;
390 pty_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
;
391 pty_driver
->other
= pty_slave_driver
;
392 tty_set_operations(pty_driver
, &master_pty_ops_bsd
);
394 pty_slave_driver
->owner
= THIS_MODULE
;
395 pty_slave_driver
->driver_name
= "pty_slave";
396 pty_slave_driver
->name
= "ttyp";
397 pty_slave_driver
->major
= PTY_SLAVE_MAJOR
;
398 pty_slave_driver
->minor_start
= 0;
399 pty_slave_driver
->type
= TTY_DRIVER_TYPE_PTY
;
400 pty_slave_driver
->subtype
= PTY_TYPE_SLAVE
;
401 pty_slave_driver
->init_termios
= tty_std_termios
;
402 pty_slave_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
403 pty_slave_driver
->init_termios
.c_ispeed
= 38400;
404 pty_slave_driver
->init_termios
.c_ospeed
= 38400;
405 pty_slave_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
|
407 pty_slave_driver
->other
= pty_driver
;
408 tty_set_operations(pty_slave_driver
, &slave_pty_ops_bsd
);
410 if (tty_register_driver(pty_driver
))
411 panic("Couldn't register pty driver");
412 if (tty_register_driver(pty_slave_driver
))
413 panic("Couldn't register pty slave driver");
416 static inline void legacy_pty_init(void) { }
420 #ifdef CONFIG_UNIX98_PTYS
422 * sysctl support for setting limits on the number of Unix98 ptys allocated.
423 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
425 int pty_limit
= NR_UNIX98_PTY_DEFAULT
;
426 static int pty_limit_min
;
427 static int pty_limit_max
= NR_UNIX98_PTY_MAX
;
428 static int pty_count
;
430 static struct cdev ptmx_cdev
;
432 static struct ctl_table pty_table
[] = {
436 .maxlen
= sizeof(int),
439 .proc_handler
= &proc_dointvec_minmax
,
440 .strategy
= &sysctl_intvec
,
441 .extra1
= &pty_limit_min
,
442 .extra2
= &pty_limit_max
,
446 .maxlen
= sizeof(int),
449 .proc_handler
= &proc_dointvec
,
455 static struct ctl_table pty_kern_table
[] = {
457 .ctl_name
= KERN_PTY
,
465 static struct ctl_table pty_root_table
[] = {
467 .ctl_name
= CTL_KERN
,
468 .procname
= "kernel",
470 .child
= pty_kern_table
,
476 static int pty_unix98_ioctl(struct tty_struct
*tty
, struct file
*file
,
477 unsigned int cmd
, unsigned long arg
)
480 case TIOCSPTLCK
: /* Set PT Lock (disallow slave open) */
481 return pty_set_lock(tty
, (int __user
*)arg
);
482 case TIOCGPTN
: /* Get PT Number */
483 return put_user(tty
->index
, (unsigned int __user
*)arg
);
490 * ptm_unix98_lookup - find a pty master
491 * @driver: ptm driver
494 * Look up a pty master device. Called under the tty_mutex for now.
495 * This provides our locking.
498 static struct tty_struct
*ptm_unix98_lookup(struct tty_driver
*driver
,
499 struct inode
*ptm_inode
, int idx
)
501 struct tty_struct
*tty
= devpts_get_tty(ptm_inode
, idx
);
508 * pts_unix98_lookup - find a pty slave
509 * @driver: pts driver
512 * Look up a pty master device. Called under the tty_mutex for now.
513 * This provides our locking.
516 static struct tty_struct
*pts_unix98_lookup(struct tty_driver
*driver
,
517 struct inode
*pts_inode
, int idx
)
519 struct tty_struct
*tty
= devpts_get_tty(pts_inode
, idx
);
520 /* Master must be open before slave */
522 return ERR_PTR(-EIO
);
526 static void pty_unix98_shutdown(struct tty_struct
*tty
)
528 /* We have our own method as we don't use the tty index */
532 /* We have no need to install and remove our tty objects as devpts does all
535 static int pty_unix98_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
537 struct tty_struct
*o_tty
;
538 int idx
= tty
->index
;
540 o_tty
= alloc_tty_struct();
543 if (!try_module_get(driver
->other
->owner
)) {
544 /* This cannot in fact currently happen */
545 free_tty_struct(o_tty
);
548 initialize_tty_struct(o_tty
, driver
->other
, idx
);
550 tty
->termios
= kzalloc(sizeof(struct ktermios
[2]), GFP_KERNEL
);
551 if (tty
->termios
== NULL
)
553 *tty
->termios
= driver
->init_termios
;
554 tty
->termios_locked
= tty
->termios
+ 1;
556 o_tty
->termios
= kzalloc(sizeof(struct ktermios
[2]), GFP_KERNEL
);
557 if (o_tty
->termios
== NULL
)
559 *o_tty
->termios
= driver
->other
->init_termios
;
560 o_tty
->termios_locked
= o_tty
->termios
+ 1;
562 tty_driver_kref_get(driver
->other
);
563 if (driver
->subtype
== PTY_TYPE_MASTER
)
565 /* Establish the links in both directions */
569 * All structures have been allocated, so now we install them.
570 * Failures after this point use release_tty to clean up, so
571 * there's no need to null out the local pointers.
573 tty_driver_kref_get(driver
);
578 kfree(o_tty
->termios
);
579 module_put(o_tty
->driver
->owner
);
580 free_tty_struct(o_tty
);
585 static void pty_unix98_remove(struct tty_driver
*driver
, struct tty_struct
*tty
)
590 static const struct tty_operations ptm_unix98_ops
= {
591 .lookup
= ptm_unix98_lookup
,
592 .install
= pty_unix98_install
,
593 .remove
= pty_unix98_remove
,
597 .write_room
= pty_write_room
,
598 .flush_buffer
= pty_flush_buffer
,
599 .chars_in_buffer
= pty_chars_in_buffer
,
600 .unthrottle
= pty_unthrottle
,
601 .set_termios
= pty_set_termios
,
602 .ioctl
= pty_unix98_ioctl
,
603 .shutdown
= pty_unix98_shutdown
,
607 static const struct tty_operations pty_unix98_ops
= {
608 .lookup
= pts_unix98_lookup
,
609 .install
= pty_unix98_install
,
610 .remove
= pty_unix98_remove
,
614 .write_room
= pty_write_room
,
615 .flush_buffer
= pty_flush_buffer
,
616 .chars_in_buffer
= pty_chars_in_buffer
,
617 .unthrottle
= pty_unthrottle
,
618 .set_termios
= pty_set_termios
,
619 .shutdown
= pty_unix98_shutdown
623 * ptmx_open - open a unix 98 pty master
624 * @inode: inode of device file
625 * @filp: file pointer to tty
627 * Allocate a unix98 pty master device from the ptmx driver.
629 * Locking: tty_mutex protects the init_dev work. tty->count should
631 * allocated_ptys_lock handles the list of free pty numbers
634 static int __ptmx_open(struct inode
*inode
, struct file
*filp
)
636 struct tty_struct
*tty
;
640 nonseekable_open(inode
, filp
);
642 /* find a device that is not in use. */
643 index
= devpts_new_index(inode
);
647 mutex_lock(&tty_mutex
);
648 tty
= tty_init_dev(ptm_driver
, index
, 1);
649 mutex_unlock(&tty_mutex
);
652 retval
= PTR_ERR(tty
);
656 set_bit(TTY_PTY_LOCK
, &tty
->flags
); /* LOCK THE SLAVE */
657 filp
->private_data
= tty
;
658 file_move(filp
, &tty
->tty_files
);
660 retval
= devpts_pty_new(inode
, tty
->link
);
664 retval
= ptm_driver
->ops
->open(tty
, filp
);
668 tty_release_dev(filp
);
671 devpts_kill_index(inode
, index
);
675 static int ptmx_open(struct inode
*inode
, struct file
*filp
)
680 ret
= __ptmx_open(inode
, filp
);
685 static struct file_operations ptmx_fops
;
687 static void __init
unix98_pty_init(void)
689 ptm_driver
= alloc_tty_driver(NR_UNIX98_PTY_MAX
);
691 panic("Couldn't allocate Unix98 ptm driver");
692 pts_driver
= alloc_tty_driver(NR_UNIX98_PTY_MAX
);
694 panic("Couldn't allocate Unix98 pts driver");
696 ptm_driver
->owner
= THIS_MODULE
;
697 ptm_driver
->driver_name
= "pty_master";
698 ptm_driver
->name
= "ptm";
699 ptm_driver
->major
= UNIX98_PTY_MASTER_MAJOR
;
700 ptm_driver
->minor_start
= 0;
701 ptm_driver
->type
= TTY_DRIVER_TYPE_PTY
;
702 ptm_driver
->subtype
= PTY_TYPE_MASTER
;
703 ptm_driver
->init_termios
= tty_std_termios
;
704 ptm_driver
->init_termios
.c_iflag
= 0;
705 ptm_driver
->init_termios
.c_oflag
= 0;
706 ptm_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
707 ptm_driver
->init_termios
.c_lflag
= 0;
708 ptm_driver
->init_termios
.c_ispeed
= 38400;
709 ptm_driver
->init_termios
.c_ospeed
= 38400;
710 ptm_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
|
711 TTY_DRIVER_DYNAMIC_DEV
| TTY_DRIVER_DEVPTS_MEM
;
712 ptm_driver
->other
= pts_driver
;
713 tty_set_operations(ptm_driver
, &ptm_unix98_ops
);
715 pts_driver
->owner
= THIS_MODULE
;
716 pts_driver
->driver_name
= "pty_slave";
717 pts_driver
->name
= "pts";
718 pts_driver
->major
= UNIX98_PTY_SLAVE_MAJOR
;
719 pts_driver
->minor_start
= 0;
720 pts_driver
->type
= TTY_DRIVER_TYPE_PTY
;
721 pts_driver
->subtype
= PTY_TYPE_SLAVE
;
722 pts_driver
->init_termios
= tty_std_termios
;
723 pts_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
724 pts_driver
->init_termios
.c_ispeed
= 38400;
725 pts_driver
->init_termios
.c_ospeed
= 38400;
726 pts_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
|
727 TTY_DRIVER_DYNAMIC_DEV
| TTY_DRIVER_DEVPTS_MEM
;
728 pts_driver
->other
= ptm_driver
;
729 tty_set_operations(pts_driver
, &pty_unix98_ops
);
731 if (tty_register_driver(ptm_driver
))
732 panic("Couldn't register Unix98 ptm driver");
733 if (tty_register_driver(pts_driver
))
734 panic("Couldn't register Unix98 pts driver");
736 register_sysctl_table(pty_root_table
);
738 /* Now create the /dev/ptmx special device */
739 tty_default_fops(&ptmx_fops
);
740 ptmx_fops
.open
= ptmx_open
;
742 cdev_init(&ptmx_cdev
, &ptmx_fops
);
743 if (cdev_add(&ptmx_cdev
, MKDEV(TTYAUX_MAJOR
, 2), 1) ||
744 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 2), 1, "/dev/ptmx") < 0)
745 panic("Couldn't register /dev/ptmx driver\n");
746 device_create(tty_class
, NULL
, MKDEV(TTYAUX_MAJOR
, 2), NULL
, "ptmx");
750 static inline void unix98_pty_init(void) { }
753 static int __init
pty_init(void)
759 module_init(pty_init
);