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/string.h>
22 #include <linux/major.h>
24 #include <linux/init.h>
25 #include <linux/smp_lock.h>
26 #include <linux/sysctl.h>
27 #include <linux/device.h>
28 #include <linux/uaccess.h>
29 #include <linux/bitops.h>
30 #include <linux/devpts_fs.h>
32 #include <asm/system.h>
34 #ifdef CONFIG_UNIX98_PTYS
35 static struct tty_driver
*ptm_driver
;
36 static struct tty_driver
*pts_driver
;
39 static void pty_close(struct tty_struct
*tty
, struct file
*filp
)
42 if (tty
->driver
->subtype
== PTY_TYPE_MASTER
)
43 WARN_ON(tty
->count
> 1);
48 wake_up_interruptible(&tty
->read_wait
);
49 wake_up_interruptible(&tty
->write_wait
);
53 tty
->link
->packet
= 0;
54 set_bit(TTY_OTHER_CLOSED
, &tty
->link
->flags
);
55 wake_up_interruptible(&tty
->link
->read_wait
);
56 wake_up_interruptible(&tty
->link
->write_wait
);
57 if (tty
->driver
->subtype
== PTY_TYPE_MASTER
) {
58 set_bit(TTY_OTHER_CLOSED
, &tty
->flags
);
59 #ifdef CONFIG_UNIX98_PTYS
60 if (tty
->driver
== ptm_driver
)
61 devpts_pty_kill(tty
->link
);
63 tty_vhangup(tty
->link
);
68 * The unthrottle routine is called by the line discipline to signal
69 * that it can receive more characters. For PTY's, the TTY_THROTTLED
70 * flag is always set, to force the line discipline to always call the
71 * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE
72 * characters in the queue. This is necessary since each time this
73 * happens, we need to wake up any sleeping processes that could be
74 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
75 * for the pty buffer to be drained.
77 static void pty_unthrottle(struct tty_struct
*tty
)
79 tty_wakeup(tty
->link
);
80 set_bit(TTY_THROTTLED
, &tty
->flags
);
84 * pty_space - report space left for writing
85 * @to: tty we are writing into
87 * The tty buffers allow 64K but we sneak a peak and clip at 8K this
88 * allows a lot of overspill room for echo and other fun messes to
92 static int pty_space(struct tty_struct
*to
)
94 int n
= 8192 - to
->buf
.memory_used
;
101 * pty_write - write to a pty
102 * @tty: the tty we write from
103 * @buf: kernel buffer of data
104 * @count: bytes to write
106 * Our "hardware" write method. Data is coming from the ldisc which
107 * may be in a non sleeping state. We simply throw this at the other
108 * end of the link as if we were an IRQ handler receiving stuff for
109 * the other side of the pty/tty pair.
112 static int pty_write(struct tty_struct
*tty
, const unsigned char *buf
, int c
)
114 struct tty_struct
*to
= tty
->link
;
120 /* Stuff the data into the input queue of the other end */
121 c
= tty_insert_flip_string(to
, buf
, c
);
124 tty_flip_buffer_push(to
);
132 * pty_write_room - write space
133 * @tty: tty we are writing from
135 * Report how many bytes the ldisc can send into the queue for
139 static int pty_write_room(struct tty_struct
*tty
)
143 return pty_space(tty
->link
);
147 * pty_chars_in_buffer - characters currently in our tx queue
150 * Report how much we have in the transmit queue. As everything is
151 * instantly at the other end this is easy to implement.
154 static int pty_chars_in_buffer(struct tty_struct
*tty
)
159 /* Set the lock flag on a pty */
160 static int pty_set_lock(struct tty_struct
*tty
, int __user
*arg
)
163 if (get_user(val
, arg
))
166 set_bit(TTY_PTY_LOCK
, &tty
->flags
);
168 clear_bit(TTY_PTY_LOCK
, &tty
->flags
);
172 static void pty_flush_buffer(struct tty_struct
*tty
)
174 struct tty_struct
*to
= tty
->link
;
179 /* tty_buffer_flush(to); FIXME */
181 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
182 tty
->ctrl_status
|= TIOCPKT_FLUSHWRITE
;
183 wake_up_interruptible(&to
->read_wait
);
184 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
188 static int pty_open(struct tty_struct
*tty
, struct file
*filp
)
190 int retval
= -ENODEV
;
192 if (!tty
|| !tty
->link
)
196 if (test_bit(TTY_OTHER_CLOSED
, &tty
->flags
))
198 if (test_bit(TTY_PTY_LOCK
, &tty
->link
->flags
))
200 if (tty
->link
->count
!= 1)
203 clear_bit(TTY_OTHER_CLOSED
, &tty
->link
->flags
);
204 set_bit(TTY_THROTTLED
, &tty
->flags
);
210 static void pty_set_termios(struct tty_struct
*tty
,
211 struct ktermios
*old_termios
)
213 tty
->termios
->c_cflag
&= ~(CSIZE
| PARENB
);
214 tty
->termios
->c_cflag
|= (CS8
| CREAD
);
218 * pty_do_resize - resize event
219 * @tty: tty being resized
220 * @ws: window size being set.
222 * Update the termios variables and send the neccessary signals to
223 * peform a terminal resize correctly
226 int pty_resize(struct tty_struct
*tty
, struct winsize
*ws
)
228 struct pid
*pgrp
, *rpgrp
;
230 struct tty_struct
*pty
= tty
->link
;
232 /* For a PTY we need to lock the tty side */
233 mutex_lock(&tty
->termios_mutex
);
234 if (!memcmp(ws
, &tty
->winsize
, sizeof(*ws
)))
237 /* Get the PID values and reference them so we can
238 avoid holding the tty ctrl lock while sending signals.
239 We need to lock these individually however. */
241 spin_lock_irqsave(&tty
->ctrl_lock
, flags
);
242 pgrp
= get_pid(tty
->pgrp
);
243 spin_unlock_irqrestore(&tty
->ctrl_lock
, flags
);
245 spin_lock_irqsave(&pty
->ctrl_lock
, flags
);
246 rpgrp
= get_pid(pty
->pgrp
);
247 spin_unlock_irqrestore(&pty
->ctrl_lock
, flags
);
250 kill_pgrp(pgrp
, SIGWINCH
, 1);
251 if (rpgrp
!= pgrp
&& rpgrp
)
252 kill_pgrp(rpgrp
, SIGWINCH
, 1);
258 pty
->winsize
= *ws
; /* Never used so will go away soon */
260 mutex_unlock(&tty
->termios_mutex
);
264 /* Traditional BSD devices */
265 #ifdef CONFIG_LEGACY_PTYS
267 static int pty_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
269 struct tty_struct
*o_tty
;
270 int idx
= tty
->index
;
273 o_tty
= alloc_tty_struct();
276 if (!try_module_get(driver
->other
->owner
)) {
277 /* This cannot in fact currently happen */
278 free_tty_struct(o_tty
);
281 initialize_tty_struct(o_tty
, driver
->other
, idx
);
283 /* We always use new tty termios data so we can do this
285 retval
= tty_init_termios(tty
);
289 retval
= tty_init_termios(o_tty
);
291 tty_free_termios(tty
);
296 * Everything allocated ... set up the o_tty structure.
298 driver
->other
->ttys
[idx
] = o_tty
;
299 tty_driver_kref_get(driver
->other
);
300 if (driver
->subtype
== PTY_TYPE_MASTER
)
302 /* Establish the links in both directions */
306 tty_driver_kref_get(driver
);
308 driver
->ttys
[idx
] = tty
;
311 module_put(o_tty
->driver
->owner
);
312 free_tty_struct(o_tty
);
316 static int pty_bsd_ioctl(struct tty_struct
*tty
, struct file
*file
,
317 unsigned int cmd
, unsigned long arg
)
320 case TIOCSPTLCK
: /* Set PT Lock (disallow slave open) */
321 return pty_set_lock(tty
, (int __user
*) arg
);
326 static int legacy_count
= CONFIG_LEGACY_PTY_COUNT
;
327 module_param(legacy_count
, int, 0);
330 * The master side of a pty can do TIOCSPTLCK and thus
333 static const struct tty_operations master_pty_ops_bsd
= {
334 .install
= pty_install
,
338 .write_room
= pty_write_room
,
339 .flush_buffer
= pty_flush_buffer
,
340 .chars_in_buffer
= pty_chars_in_buffer
,
341 .unthrottle
= pty_unthrottle
,
342 .set_termios
= pty_set_termios
,
343 .ioctl
= pty_bsd_ioctl
,
347 static const struct tty_operations slave_pty_ops_bsd
= {
348 .install
= pty_install
,
352 .write_room
= pty_write_room
,
353 .flush_buffer
= pty_flush_buffer
,
354 .chars_in_buffer
= pty_chars_in_buffer
,
355 .unthrottle
= pty_unthrottle
,
356 .set_termios
= pty_set_termios
,
360 static void __init
legacy_pty_init(void)
362 struct tty_driver
*pty_driver
, *pty_slave_driver
;
364 if (legacy_count
<= 0)
367 pty_driver
= alloc_tty_driver(legacy_count
);
369 panic("Couldn't allocate pty driver");
371 pty_slave_driver
= alloc_tty_driver(legacy_count
);
372 if (!pty_slave_driver
)
373 panic("Couldn't allocate pty slave driver");
375 pty_driver
->owner
= THIS_MODULE
;
376 pty_driver
->driver_name
= "pty_master";
377 pty_driver
->name
= "pty";
378 pty_driver
->major
= PTY_MASTER_MAJOR
;
379 pty_driver
->minor_start
= 0;
380 pty_driver
->type
= TTY_DRIVER_TYPE_PTY
;
381 pty_driver
->subtype
= PTY_TYPE_MASTER
;
382 pty_driver
->init_termios
= tty_std_termios
;
383 pty_driver
->init_termios
.c_iflag
= 0;
384 pty_driver
->init_termios
.c_oflag
= 0;
385 pty_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
386 pty_driver
->init_termios
.c_lflag
= 0;
387 pty_driver
->init_termios
.c_ispeed
= 38400;
388 pty_driver
->init_termios
.c_ospeed
= 38400;
389 pty_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
;
390 pty_driver
->other
= pty_slave_driver
;
391 tty_set_operations(pty_driver
, &master_pty_ops_bsd
);
393 pty_slave_driver
->owner
= THIS_MODULE
;
394 pty_slave_driver
->driver_name
= "pty_slave";
395 pty_slave_driver
->name
= "ttyp";
396 pty_slave_driver
->major
= PTY_SLAVE_MAJOR
;
397 pty_slave_driver
->minor_start
= 0;
398 pty_slave_driver
->type
= TTY_DRIVER_TYPE_PTY
;
399 pty_slave_driver
->subtype
= PTY_TYPE_SLAVE
;
400 pty_slave_driver
->init_termios
= tty_std_termios
;
401 pty_slave_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
402 pty_slave_driver
->init_termios
.c_ispeed
= 38400;
403 pty_slave_driver
->init_termios
.c_ospeed
= 38400;
404 pty_slave_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
|
406 pty_slave_driver
->other
= pty_driver
;
407 tty_set_operations(pty_slave_driver
, &slave_pty_ops_bsd
);
409 if (tty_register_driver(pty_driver
))
410 panic("Couldn't register pty driver");
411 if (tty_register_driver(pty_slave_driver
))
412 panic("Couldn't register pty slave driver");
415 static inline void legacy_pty_init(void) { }
419 #ifdef CONFIG_UNIX98_PTYS
421 * sysctl support for setting limits on the number of Unix98 ptys allocated.
422 * Otherwise one can eat up all kernel memory by opening /dev/ptmx repeatedly.
424 int pty_limit
= NR_UNIX98_PTY_DEFAULT
;
425 static int pty_limit_min
;
426 static int pty_limit_max
= NR_UNIX98_PTY_MAX
;
427 static int pty_count
;
429 static struct cdev ptmx_cdev
;
431 static struct ctl_table pty_table
[] = {
435 .maxlen
= sizeof(int),
438 .proc_handler
= &proc_dointvec_minmax
,
439 .strategy
= &sysctl_intvec
,
440 .extra1
= &pty_limit_min
,
441 .extra2
= &pty_limit_max
,
445 .maxlen
= sizeof(int),
448 .proc_handler
= &proc_dointvec
,
454 static struct ctl_table pty_kern_table
[] = {
456 .ctl_name
= KERN_PTY
,
464 static struct ctl_table pty_root_table
[] = {
466 .ctl_name
= CTL_KERN
,
467 .procname
= "kernel",
469 .child
= pty_kern_table
,
475 static int pty_unix98_ioctl(struct tty_struct
*tty
, struct file
*file
,
476 unsigned int cmd
, unsigned long arg
)
479 case TIOCSPTLCK
: /* Set PT Lock (disallow slave open) */
480 return pty_set_lock(tty
, (int __user
*)arg
);
481 case TIOCGPTN
: /* Get PT Number */
482 return put_user(tty
->index
, (unsigned int __user
*)arg
);
489 * ptm_unix98_lookup - find a pty master
490 * @driver: ptm driver
493 * Look up a pty master device. Called under the tty_mutex for now.
494 * This provides our locking.
497 static struct tty_struct
*ptm_unix98_lookup(struct tty_driver
*driver
,
498 struct inode
*ptm_inode
, int idx
)
500 struct tty_struct
*tty
= devpts_get_tty(ptm_inode
, idx
);
507 * pts_unix98_lookup - find a pty slave
508 * @driver: pts driver
511 * Look up a pty master device. Called under the tty_mutex for now.
512 * This provides our locking.
515 static struct tty_struct
*pts_unix98_lookup(struct tty_driver
*driver
,
516 struct inode
*pts_inode
, int idx
)
518 struct tty_struct
*tty
= devpts_get_tty(pts_inode
, idx
);
519 /* Master must be open before slave */
521 return ERR_PTR(-EIO
);
525 static void pty_unix98_shutdown(struct tty_struct
*tty
)
527 /* We have our own method as we don't use the tty index */
531 /* We have no need to install and remove our tty objects as devpts does all
534 static int pty_unix98_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
536 struct tty_struct
*o_tty
;
537 int idx
= tty
->index
;
539 o_tty
= alloc_tty_struct();
542 if (!try_module_get(driver
->other
->owner
)) {
543 /* This cannot in fact currently happen */
544 free_tty_struct(o_tty
);
547 initialize_tty_struct(o_tty
, driver
->other
, idx
);
549 tty
->termios
= kzalloc(sizeof(struct ktermios
[2]), GFP_KERNEL
);
550 if (tty
->termios
== NULL
)
552 *tty
->termios
= driver
->init_termios
;
553 tty
->termios_locked
= tty
->termios
+ 1;
555 o_tty
->termios
= kzalloc(sizeof(struct ktermios
[2]), GFP_KERNEL
);
556 if (o_tty
->termios
== NULL
)
558 *o_tty
->termios
= driver
->other
->init_termios
;
559 o_tty
->termios_locked
= o_tty
->termios
+ 1;
561 tty_driver_kref_get(driver
->other
);
562 if (driver
->subtype
== PTY_TYPE_MASTER
)
564 /* Establish the links in both directions */
568 * All structures have been allocated, so now we install them.
569 * Failures after this point use release_tty to clean up, so
570 * there's no need to null out the local pointers.
572 tty_driver_kref_get(driver
);
577 kfree(o_tty
->termios
);
578 module_put(o_tty
->driver
->owner
);
579 free_tty_struct(o_tty
);
584 static void pty_unix98_remove(struct tty_driver
*driver
, struct tty_struct
*tty
)
589 static const struct tty_operations ptm_unix98_ops
= {
590 .lookup
= ptm_unix98_lookup
,
591 .install
= pty_unix98_install
,
592 .remove
= pty_unix98_remove
,
596 .write_room
= pty_write_room
,
597 .flush_buffer
= pty_flush_buffer
,
598 .chars_in_buffer
= pty_chars_in_buffer
,
599 .unthrottle
= pty_unthrottle
,
600 .set_termios
= pty_set_termios
,
601 .ioctl
= pty_unix98_ioctl
,
602 .shutdown
= pty_unix98_shutdown
,
606 static const struct tty_operations pty_unix98_ops
= {
607 .lookup
= pts_unix98_lookup
,
608 .install
= pty_unix98_install
,
609 .remove
= pty_unix98_remove
,
613 .write_room
= pty_write_room
,
614 .flush_buffer
= pty_flush_buffer
,
615 .chars_in_buffer
= pty_chars_in_buffer
,
616 .unthrottle
= pty_unthrottle
,
617 .set_termios
= pty_set_termios
,
618 .shutdown
= pty_unix98_shutdown
622 * ptmx_open - open a unix 98 pty master
623 * @inode: inode of device file
624 * @filp: file pointer to tty
626 * Allocate a unix98 pty master device from the ptmx driver.
628 * Locking: tty_mutex protects the init_dev work. tty->count should
630 * allocated_ptys_lock handles the list of free pty numbers
633 static int __ptmx_open(struct inode
*inode
, struct file
*filp
)
635 struct tty_struct
*tty
;
639 nonseekable_open(inode
, filp
);
641 /* find a device that is not in use. */
642 index
= devpts_new_index(inode
);
646 mutex_lock(&tty_mutex
);
647 tty
= tty_init_dev(ptm_driver
, index
, 1);
648 mutex_unlock(&tty_mutex
);
651 retval
= PTR_ERR(tty
);
655 set_bit(TTY_PTY_LOCK
, &tty
->flags
); /* LOCK THE SLAVE */
656 filp
->private_data
= tty
;
657 file_move(filp
, &tty
->tty_files
);
659 retval
= devpts_pty_new(inode
, tty
->link
);
663 retval
= ptm_driver
->ops
->open(tty
, filp
);
667 tty_release_dev(filp
);
670 devpts_kill_index(inode
, index
);
674 static int ptmx_open(struct inode
*inode
, struct file
*filp
)
679 ret
= __ptmx_open(inode
, filp
);
684 static struct file_operations ptmx_fops
;
686 static void __init
unix98_pty_init(void)
688 ptm_driver
= alloc_tty_driver(NR_UNIX98_PTY_MAX
);
690 panic("Couldn't allocate Unix98 ptm driver");
691 pts_driver
= alloc_tty_driver(NR_UNIX98_PTY_MAX
);
693 panic("Couldn't allocate Unix98 pts driver");
695 ptm_driver
->owner
= THIS_MODULE
;
696 ptm_driver
->driver_name
= "pty_master";
697 ptm_driver
->name
= "ptm";
698 ptm_driver
->major
= UNIX98_PTY_MASTER_MAJOR
;
699 ptm_driver
->minor_start
= 0;
700 ptm_driver
->type
= TTY_DRIVER_TYPE_PTY
;
701 ptm_driver
->subtype
= PTY_TYPE_MASTER
;
702 ptm_driver
->init_termios
= tty_std_termios
;
703 ptm_driver
->init_termios
.c_iflag
= 0;
704 ptm_driver
->init_termios
.c_oflag
= 0;
705 ptm_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
706 ptm_driver
->init_termios
.c_lflag
= 0;
707 ptm_driver
->init_termios
.c_ispeed
= 38400;
708 ptm_driver
->init_termios
.c_ospeed
= 38400;
709 ptm_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
|
710 TTY_DRIVER_DYNAMIC_DEV
| TTY_DRIVER_DEVPTS_MEM
;
711 ptm_driver
->other
= pts_driver
;
712 tty_set_operations(ptm_driver
, &ptm_unix98_ops
);
714 pts_driver
->owner
= THIS_MODULE
;
715 pts_driver
->driver_name
= "pty_slave";
716 pts_driver
->name
= "pts";
717 pts_driver
->major
= UNIX98_PTY_SLAVE_MAJOR
;
718 pts_driver
->minor_start
= 0;
719 pts_driver
->type
= TTY_DRIVER_TYPE_PTY
;
720 pts_driver
->subtype
= PTY_TYPE_SLAVE
;
721 pts_driver
->init_termios
= tty_std_termios
;
722 pts_driver
->init_termios
.c_cflag
= B38400
| CS8
| CREAD
;
723 pts_driver
->init_termios
.c_ispeed
= 38400;
724 pts_driver
->init_termios
.c_ospeed
= 38400;
725 pts_driver
->flags
= TTY_DRIVER_RESET_TERMIOS
| TTY_DRIVER_REAL_RAW
|
726 TTY_DRIVER_DYNAMIC_DEV
| TTY_DRIVER_DEVPTS_MEM
;
727 pts_driver
->other
= ptm_driver
;
728 tty_set_operations(pts_driver
, &pty_unix98_ops
);
730 if (tty_register_driver(ptm_driver
))
731 panic("Couldn't register Unix98 ptm driver");
732 if (tty_register_driver(pts_driver
))
733 panic("Couldn't register Unix98 pts driver");
735 register_sysctl_table(pty_root_table
);
737 /* Now create the /dev/ptmx special device */
738 tty_default_fops(&ptmx_fops
);
739 ptmx_fops
.open
= ptmx_open
;
741 cdev_init(&ptmx_cdev
, &ptmx_fops
);
742 if (cdev_add(&ptmx_cdev
, MKDEV(TTYAUX_MAJOR
, 2), 1) ||
743 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 2), 1, "/dev/ptmx") < 0)
744 panic("Couldn't register /dev/ptmx driver\n");
745 device_create(tty_class
, NULL
, MKDEV(TTYAUX_MAJOR
, 2), NULL
, "ptmx");
749 static inline void unix98_pty_init(void) { }
752 static int __init
pty_init(void)
758 module_init(pty_init
);