2 * linux/drivers/char/tty_io.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
8 * 'tty_io.c' gives an orthogonal feeling to tty's, be they consoles
9 * or rs-channels. It also implements echoing, cooked mode etc.
11 * Kill-line thanks to John T Kohl, who also corrected VMIN = VTIME = 0.
13 * Modified by Theodore Ts'o, 9/14/92, to dynamically allocate the
14 * tty_struct and tty_queue structures. Previously there was an array
15 * of 256 tty_struct's which was statically allocated, and the
16 * tty_queue structures were allocated at boot time. Both are now
17 * dynamically allocated only when the tty is open.
19 * Also restructured routines so that there is more of a separation
20 * between the high-level tty routines (tty_io.c and tty_ioctl.c) and
21 * the low-level tty routines (serial.c, pty.c, console.c). This
22 * makes for cleaner and more compact code. -TYT, 9/17/92
24 * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
25 * which can be dynamically activated and de-activated by the line
26 * discipline handling modules (like SLIP).
28 * NOTE: pay no attention to the line discipline code (yet); its
29 * interface is still subject to change in this version...
32 * Added functionality to the OPOST tty handling. No delays, but all
33 * other bits should be there.
34 * -- Nick Holloway <alfie@dcs.warwick.ac.uk>, 27th May 1993.
36 * Rewrote canonical mode and added more termios flags.
37 * -- julian@uhunix.uhcc.hawaii.edu (J. Cowley), 13Jan94
39 * Reorganized FASYNC support so mouse code can share it.
40 * -- ctm@ardi.com, 9Sep95
42 * New TIOCLINUX variants added.
43 * -- mj@k332.feld.cvut.cz, 19-Nov-95
45 * Restrict vt switching via ioctl()
46 * -- grif@cs.ucr.edu, 5-Dec-95
48 * Move console and virtual terminal code to more appropriate files,
49 * implement CONFIG_VT and generalize console device interface.
50 * -- Marko Kohtala <Marko.Kohtala@hut.fi>, March 97
52 * Rewrote init_dev and release_dev to eliminate races.
53 * -- Bill Hawes <whawes@star.net>, June 97
55 * Added devfs support.
56 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 13-Jan-1998
58 * Added support for a Unix98-style ptmx device.
59 * -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
61 * Reduced memory usage for older ARM systems
62 * -- Russell King <rmk@arm.linux.org.uk>
64 * Move do_SAK() into process context. Less stack use in devfs functions.
65 * alloc_tty_struct() always uses kmalloc() -- Andrew Morton <andrewm@uow.edu.eu> 17Mar01
68 #include <linux/config.h>
69 #include <linux/types.h>
70 #include <linux/major.h>
71 #include <linux/errno.h>
72 #include <linux/signal.h>
73 #include <linux/fcntl.h>
74 #include <linux/sched.h>
75 #include <linux/interrupt.h>
76 #include <linux/tty.h>
77 #include <linux/tty_driver.h>
78 #include <linux/tty_flip.h>
79 #include <linux/devpts_fs.h>
80 #include <linux/file.h>
81 #include <linux/console.h>
82 #include <linux/timer.h>
83 #include <linux/ctype.h>
86 #include <linux/string.h>
87 #include <linux/slab.h>
88 #include <linux/poll.h>
89 #include <linux/proc_fs.h>
90 #include <linux/init.h>
91 #include <linux/module.h>
92 #include <linux/smp_lock.h>
93 #include <linux/device.h>
94 #include <linux/idr.h>
95 #include <linux/wait.h>
96 #include <linux/bitops.h>
98 #include <asm/uaccess.h>
99 #include <asm/system.h>
101 #include <linux/kbd_kern.h>
102 #include <linux/vt_kern.h>
103 #include <linux/selection.h>
104 #include <linux/devfs_fs_kernel.h>
106 #include <linux/kmod.h>
108 #undef TTY_DEBUG_HANGUP
110 #define TTY_PARANOIA_CHECK 1
111 #define CHECK_TTY_COUNT 1
113 struct termios tty_std_termios
= { /* for the benefit of tty drivers */
114 .c_iflag
= ICRNL
| IXON
,
115 .c_oflag
= OPOST
| ONLCR
,
116 .c_cflag
= B38400
| CS8
| CREAD
| HUPCL
,
117 .c_lflag
= ISIG
| ICANON
| ECHO
| ECHOE
| ECHOK
|
118 ECHOCTL
| ECHOKE
| IEXTEN
,
122 EXPORT_SYMBOL(tty_std_termios
);
124 /* This list gets poked at by procfs and various bits of boot up code. This
125 could do with some rationalisation such as pulling the tty proc function
128 LIST_HEAD(tty_drivers
); /* linked list of tty drivers */
130 /* Semaphore to protect creating and releasing a tty. This is shared with
131 vt.c for deeply disgusting hack reasons */
132 DECLARE_MUTEX(tty_sem
);
134 #ifdef CONFIG_UNIX98_PTYS
135 extern struct tty_driver
*ptm_driver
; /* Unix98 pty masters; for /dev/ptmx */
136 extern int pty_limit
; /* Config limit on Unix98 ptys */
137 static DEFINE_IDR(allocated_ptys
);
138 static DECLARE_MUTEX(allocated_ptys_lock
);
139 static int ptmx_open(struct inode
*, struct file
*);
142 extern void disable_early_printk(void);
144 static void initialize_tty_struct(struct tty_struct
*tty
);
146 static ssize_t
tty_read(struct file
*, char __user
*, size_t, loff_t
*);
147 static ssize_t
tty_write(struct file
*, const char __user
*, size_t, loff_t
*);
148 ssize_t
redirected_tty_write(struct file
*, const char __user
*, size_t, loff_t
*);
149 static unsigned int tty_poll(struct file
*, poll_table
*);
150 static int tty_open(struct inode
*, struct file
*);
151 static int tty_release(struct inode
*, struct file
*);
152 int tty_ioctl(struct inode
* inode
, struct file
* file
,
153 unsigned int cmd
, unsigned long arg
);
154 static int tty_fasync(int fd
, struct file
* filp
, int on
);
155 extern void rs_360_init(void);
156 static void release_mem(struct tty_struct
*tty
, int idx
);
159 static struct tty_struct
*alloc_tty_struct(void)
161 struct tty_struct
*tty
;
163 tty
= kmalloc(sizeof(struct tty_struct
), GFP_KERNEL
);
165 memset(tty
, 0, sizeof(struct tty_struct
));
169 static inline void free_tty_struct(struct tty_struct
*tty
)
171 kfree(tty
->write_buf
);
175 #define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
177 char *tty_name(struct tty_struct
*tty
, char *buf
)
179 if (!tty
) /* Hmm. NULL pointer. That's fun. */
180 strcpy(buf
, "NULL tty");
182 strcpy(buf
, tty
->name
);
186 EXPORT_SYMBOL(tty_name
);
188 inline int tty_paranoia_check(struct tty_struct
*tty
, struct inode
*inode
,
191 #ifdef TTY_PARANOIA_CHECK
194 "null TTY for (%d:%d) in %s\n",
195 imajor(inode
), iminor(inode
), routine
);
198 if (tty
->magic
!= TTY_MAGIC
) {
200 "bad magic number for tty struct (%d:%d) in %s\n",
201 imajor(inode
), iminor(inode
), routine
);
208 static int check_tty_count(struct tty_struct
*tty
, const char *routine
)
210 #ifdef CHECK_TTY_COUNT
215 list_for_each(p
, &tty
->tty_files
) {
219 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
220 tty
->driver
->subtype
== PTY_TYPE_SLAVE
&&
221 tty
->link
&& tty
->link
->count
)
223 if (tty
->count
!= count
) {
224 printk(KERN_WARNING
"Warning: dev (%s) tty->count(%d) "
225 "!= #fd's(%d) in %s\n",
226 tty
->name
, tty
->count
, count
, routine
);
234 * This is probably overkill for real world processors but
235 * they are not on hot paths so a little discipline won't do
239 static void tty_set_termios_ldisc(struct tty_struct
*tty
, int num
)
241 down(&tty
->termios_sem
);
242 tty
->termios
->c_line
= num
;
243 up(&tty
->termios_sem
);
247 * This guards the refcounted line discipline lists. The lock
248 * must be taken with irqs off because there are hangup path
249 * callers who will do ldisc lookups and cannot sleep.
252 static DEFINE_SPINLOCK(tty_ldisc_lock
);
253 static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait
);
254 static struct tty_ldisc tty_ldiscs
[NR_LDISCS
]; /* line disc dispatch table */
256 int tty_register_ldisc(int disc
, struct tty_ldisc
*new_ldisc
)
261 if (disc
< N_TTY
|| disc
>= NR_LDISCS
)
264 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
266 tty_ldiscs
[disc
] = *new_ldisc
;
267 tty_ldiscs
[disc
].num
= disc
;
268 tty_ldiscs
[disc
].flags
|= LDISC_FLAG_DEFINED
;
269 tty_ldiscs
[disc
].refcount
= 0;
271 if(tty_ldiscs
[disc
].refcount
)
274 tty_ldiscs
[disc
].flags
&= ~LDISC_FLAG_DEFINED
;
276 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
281 EXPORT_SYMBOL(tty_register_ldisc
);
283 struct tty_ldisc
*tty_ldisc_get(int disc
)
286 struct tty_ldisc
*ld
;
288 if (disc
< N_TTY
|| disc
>= NR_LDISCS
)
291 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
293 ld
= &tty_ldiscs
[disc
];
294 /* Check the entry is defined */
295 if(ld
->flags
& LDISC_FLAG_DEFINED
)
297 /* If the module is being unloaded we can't use it */
298 if (!try_module_get(ld
->owner
))
305 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
309 EXPORT_SYMBOL_GPL(tty_ldisc_get
);
311 void tty_ldisc_put(int disc
)
313 struct tty_ldisc
*ld
;
316 if (disc
< N_TTY
|| disc
>= NR_LDISCS
)
319 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
320 ld
= &tty_ldiscs
[disc
];
321 if(ld
->refcount
== 0)
324 module_put(ld
->owner
);
325 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
328 EXPORT_SYMBOL_GPL(tty_ldisc_put
);
330 static void tty_ldisc_assign(struct tty_struct
*tty
, struct tty_ldisc
*ld
)
333 tty
->ldisc
.refcount
= 0;
337 * tty_ldisc_try - internal helper
340 * Make a single attempt to grab and bump the refcount on
341 * the tty ldisc. Return 0 on failure or 1 on success. This is
342 * used to implement both the waiting and non waiting versions
346 static int tty_ldisc_try(struct tty_struct
*tty
)
349 struct tty_ldisc
*ld
;
352 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
354 if(test_bit(TTY_LDISC
, &tty
->flags
))
359 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
364 * tty_ldisc_ref_wait - wait for the tty ldisc
367 * Dereference the line discipline for the terminal and take a
368 * reference to it. If the line discipline is in flux then
369 * wait patiently until it changes.
371 * Note: Must not be called from an IRQ/timer context. The caller
372 * must also be careful not to hold other locks that will deadlock
373 * against a discipline change, such as an existing ldisc reference
374 * (which we check for)
377 struct tty_ldisc
*tty_ldisc_ref_wait(struct tty_struct
*tty
)
379 /* wait_event is a macro */
380 wait_event(tty_ldisc_wait
, tty_ldisc_try(tty
));
381 if(tty
->ldisc
.refcount
== 0)
382 printk(KERN_ERR
"tty_ldisc_ref_wait\n");
386 EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait
);
389 * tty_ldisc_ref - get the tty ldisc
392 * Dereference the line discipline for the terminal and take a
393 * reference to it. If the line discipline is in flux then
394 * return NULL. Can be called from IRQ and timer functions.
397 struct tty_ldisc
*tty_ldisc_ref(struct tty_struct
*tty
)
399 if(tty_ldisc_try(tty
))
404 EXPORT_SYMBOL_GPL(tty_ldisc_ref
);
407 * tty_ldisc_deref - free a tty ldisc reference
408 * @ld: reference to free up
410 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
411 * be called in IRQ context.
414 void tty_ldisc_deref(struct tty_ldisc
*ld
)
421 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
422 if(ld
->refcount
== 0)
423 printk(KERN_ERR
"tty_ldisc_deref: no references.\n");
426 if(ld
->refcount
== 0)
427 wake_up(&tty_ldisc_wait
);
428 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
431 EXPORT_SYMBOL_GPL(tty_ldisc_deref
);
434 * tty_ldisc_enable - allow ldisc use
435 * @tty: terminal to activate ldisc on
437 * Set the TTY_LDISC flag when the line discipline can be called
438 * again. Do neccessary wakeups for existing sleepers.
440 * Note: nobody should set this bit except via this function. Clearing
441 * directly is allowed.
444 static void tty_ldisc_enable(struct tty_struct
*tty
)
446 set_bit(TTY_LDISC
, &tty
->flags
);
447 wake_up(&tty_ldisc_wait
);
451 * tty_set_ldisc - set line discipline
452 * @tty: the terminal to set
453 * @ldisc: the line discipline
455 * Set the discipline of a tty line. Must be called from a process
459 static int tty_set_ldisc(struct tty_struct
*tty
, int ldisc
)
462 struct tty_ldisc o_ldisc
;
466 struct tty_ldisc
*ld
;
468 if ((ldisc
< N_TTY
) || (ldisc
>= NR_LDISCS
))
473 if (tty
->ldisc
.num
== ldisc
)
474 return 0; /* We are already in the desired discipline */
476 ld
= tty_ldisc_get(ldisc
);
477 /* Eduardo Blanco <ejbs@cs.cs.com.uy> */
478 /* Cyrus Durgin <cider@speakeasy.org> */
480 request_module("tty-ldisc-%d", ldisc
);
481 ld
= tty_ldisc_get(ldisc
);
486 o_ldisc
= tty
->ldisc
;
488 tty_wait_until_sent(tty
, 0);
491 * Make sure we don't change while someone holds a
492 * reference to the line discipline. The TTY_LDISC bit
493 * prevents anyone taking a reference once it is clear.
494 * We need the lock to avoid racing reference takers.
497 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
498 if(tty
->ldisc
.refcount
)
500 /* Free the new ldisc we grabbed. Must drop the lock
502 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
503 tty_ldisc_put(ldisc
);
505 * There are several reasons we may be busy, including
506 * random momentary I/O traffic. We must therefore
507 * retry. We could distinguish between blocking ops
508 * and retries if we made tty_ldisc_wait() smarter. That
509 * is up for discussion.
511 if(wait_event_interruptible(tty_ldisc_wait
, tty
->ldisc
.refcount
== 0) < 0)
515 clear_bit(TTY_LDISC
, &tty
->flags
);
516 clear_bit(TTY_DONT_FLIP
, &tty
->flags
);
517 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
520 * From this point on we know nobody has an ldisc
521 * usage reference, nor can they obtain one until
522 * we say so later on.
525 work
= cancel_delayed_work(&tty
->flip
.work
);
527 * Wait for ->hangup_work and ->flip.work handlers to terminate
530 flush_scheduled_work();
531 /* Shutdown the current discipline. */
532 if (tty
->ldisc
.close
)
533 (tty
->ldisc
.close
)(tty
);
535 /* Now set up the new line discipline. */
536 tty_ldisc_assign(tty
, ld
);
537 tty_set_termios_ldisc(tty
, ldisc
);
539 retval
= (tty
->ldisc
.open
)(tty
);
541 tty_ldisc_put(ldisc
);
542 /* There is an outstanding reference here so this is safe */
543 tty_ldisc_assign(tty
, tty_ldisc_get(o_ldisc
.num
));
544 tty_set_termios_ldisc(tty
, tty
->ldisc
.num
);
545 if (tty
->ldisc
.open
&& (tty
->ldisc
.open(tty
) < 0)) {
546 tty_ldisc_put(o_ldisc
.num
);
547 /* This driver is always present */
548 tty_ldisc_assign(tty
, tty_ldisc_get(N_TTY
));
549 tty_set_termios_ldisc(tty
, N_TTY
);
550 if (tty
->ldisc
.open
) {
551 int r
= tty
->ldisc
.open(tty
);
554 panic("Couldn't open N_TTY ldisc for "
556 tty_name(tty
, buf
), r
);
560 /* At this point we hold a reference to the new ldisc and a
561 a reference to the old ldisc. If we ended up flipping back
562 to the existing ldisc we have two references to it */
564 if (tty
->ldisc
.num
!= o_ldisc
.num
&& tty
->driver
->set_ldisc
)
565 tty
->driver
->set_ldisc(tty
);
567 tty_ldisc_put(o_ldisc
.num
);
570 * Allow ldisc referencing to occur as soon as the driver
571 * ldisc callback completes.
574 tty_ldisc_enable(tty
);
576 /* Restart it in case no characters kick it off. Safe if
579 schedule_delayed_work(&tty
->flip
.work
, 1);
584 * This routine returns a tty driver structure, given a device number
586 static struct tty_driver
*get_tty_driver(dev_t device
, int *index
)
588 struct tty_driver
*p
;
590 list_for_each_entry(p
, &tty_drivers
, tty_drivers
) {
591 dev_t base
= MKDEV(p
->major
, p
->minor_start
);
592 if (device
< base
|| device
>= base
+ p
->num
)
594 *index
= device
- base
;
601 * If we try to write to, or set the state of, a terminal and we're
602 * not in the foreground, send a SIGTTOU. If the signal is blocked or
603 * ignored, go ahead and perform the operation. (POSIX 7.2)
605 int tty_check_change(struct tty_struct
* tty
)
607 if (current
->signal
->tty
!= tty
)
609 if (tty
->pgrp
<= 0) {
610 printk(KERN_WARNING
"tty_check_change: tty->pgrp <= 0!\n");
613 if (process_group(current
) == tty
->pgrp
)
615 if (is_ignored(SIGTTOU
))
617 if (is_orphaned_pgrp(process_group(current
)))
619 (void) kill_pg(process_group(current
), SIGTTOU
, 1);
623 EXPORT_SYMBOL(tty_check_change
);
625 static ssize_t
hung_up_tty_read(struct file
* file
, char __user
* buf
,
626 size_t count
, loff_t
*ppos
)
631 static ssize_t
hung_up_tty_write(struct file
* file
, const char __user
* buf
,
632 size_t count
, loff_t
*ppos
)
637 /* No kernel lock held - none needed ;) */
638 static unsigned int hung_up_tty_poll(struct file
* filp
, poll_table
* wait
)
640 return POLLIN
| POLLOUT
| POLLERR
| POLLHUP
| POLLRDNORM
| POLLWRNORM
;
643 static int hung_up_tty_ioctl(struct inode
* inode
, struct file
* file
,
644 unsigned int cmd
, unsigned long arg
)
646 return cmd
== TIOCSPGRP
? -ENOTTY
: -EIO
;
649 static struct file_operations tty_fops
= {
656 .release
= tty_release
,
657 .fasync
= tty_fasync
,
660 #ifdef CONFIG_UNIX98_PTYS
661 static struct file_operations ptmx_fops
= {
668 .release
= tty_release
,
669 .fasync
= tty_fasync
,
673 static struct file_operations console_fops
= {
676 .write
= redirected_tty_write
,
680 .release
= tty_release
,
681 .fasync
= tty_fasync
,
684 static struct file_operations hung_up_tty_fops
= {
686 .read
= hung_up_tty_read
,
687 .write
= hung_up_tty_write
,
688 .poll
= hung_up_tty_poll
,
689 .ioctl
= hung_up_tty_ioctl
,
690 .release
= tty_release
,
693 static DEFINE_SPINLOCK(redirect_lock
);
694 static struct file
*redirect
;
697 * tty_wakeup - request more data
700 * Internal and external helper for wakeups of tty. This function
701 * informs the line discipline if present that the driver is ready
702 * to receive more output data.
705 void tty_wakeup(struct tty_struct
*tty
)
707 struct tty_ldisc
*ld
;
709 if (test_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
)) {
710 ld
= tty_ldisc_ref(tty
);
713 ld
->write_wakeup(tty
);
717 wake_up_interruptible(&tty
->write_wait
);
720 EXPORT_SYMBOL_GPL(tty_wakeup
);
723 * tty_ldisc_flush - flush line discipline queue
726 * Flush the line discipline queue (if any) for this tty. If there
727 * is no line discipline active this is a no-op.
730 void tty_ldisc_flush(struct tty_struct
*tty
)
732 struct tty_ldisc
*ld
= tty_ldisc_ref(tty
);
735 ld
->flush_buffer(tty
);
740 EXPORT_SYMBOL_GPL(tty_ldisc_flush
);
743 * This can be called by the "eventd" kernel thread. That is process synchronous,
744 * but doesn't hold any locks, so we need to make sure we have the appropriate
745 * locks for what we're doing..
747 static void do_tty_hangup(void *data
)
749 struct tty_struct
*tty
= (struct tty_struct
*) data
;
750 struct file
* cons_filp
= NULL
;
751 struct file
*filp
, *f
= NULL
;
752 struct task_struct
*p
;
753 struct tty_ldisc
*ld
;
754 int closecount
= 0, n
;
759 /* inuse_filps is protected by the single kernel lock */
762 spin_lock(&redirect_lock
);
763 if (redirect
&& redirect
->private_data
== tty
) {
767 spin_unlock(&redirect_lock
);
769 check_tty_count(tty
, "do_tty_hangup");
771 /* This breaks for file handles being sent over AF_UNIX sockets ? */
772 list_for_each_entry(filp
, &tty
->tty_files
, f_list
) {
773 if (filp
->f_op
->write
== redirected_tty_write
)
775 if (filp
->f_op
->write
!= tty_write
)
778 tty_fasync(-1, filp
, 0); /* can't block */
779 filp
->f_op
= &hung_up_tty_fops
;
783 /* FIXME! What are the locking issues here? This may me overdoing things..
784 * this question is especially important now that we've removed the irqlock. */
786 ld
= tty_ldisc_ref(tty
);
787 if(ld
!= NULL
) /* We may have no line discipline at this point */
789 if (ld
->flush_buffer
)
790 ld
->flush_buffer(tty
);
791 if (tty
->driver
->flush_buffer
)
792 tty
->driver
->flush_buffer(tty
);
793 if ((test_bit(TTY_DO_WRITE_WAKEUP
, &tty
->flags
)) &&
795 ld
->write_wakeup(tty
);
800 /* FIXME: Once we trust the LDISC code better we can wait here for
801 ldisc completion and fix the driver call race */
803 wake_up_interruptible(&tty
->write_wait
);
804 wake_up_interruptible(&tty
->read_wait
);
807 * Shutdown the current line discipline, and reset it to
810 if (tty
->driver
->flags
& TTY_DRIVER_RESET_TERMIOS
)
812 down(&tty
->termios_sem
);
813 *tty
->termios
= tty
->driver
->init_termios
;
814 up(&tty
->termios_sem
);
817 /* Defer ldisc switch */
818 /* tty_deferred_ldisc_switch(N_TTY);
820 This should get done automatically when the port closes and
821 tty_release is called */
823 read_lock(&tasklist_lock
);
824 if (tty
->session
> 0) {
825 do_each_task_pid(tty
->session
, PIDTYPE_SID
, p
) {
826 if (p
->signal
->tty
== tty
)
827 p
->signal
->tty
= NULL
;
828 if (!p
->signal
->leader
)
830 send_group_sig_info(SIGHUP
, SEND_SIG_PRIV
, p
);
831 send_group_sig_info(SIGCONT
, SEND_SIG_PRIV
, p
);
833 p
->signal
->tty_old_pgrp
= tty
->pgrp
;
834 } while_each_task_pid(tty
->session
, PIDTYPE_SID
, p
);
836 read_unlock(&tasklist_lock
);
841 tty
->ctrl_status
= 0;
843 * If one of the devices matches a console pointer, we
844 * cannot just call hangup() because that will cause
845 * tty->count and state->count to go out of sync.
846 * So we just call close() the right number of times.
849 if (tty
->driver
->close
)
850 for (n
= 0; n
< closecount
; n
++)
851 tty
->driver
->close(tty
, cons_filp
);
852 } else if (tty
->driver
->hangup
)
853 (tty
->driver
->hangup
)(tty
);
855 /* We don't want to have driver/ldisc interactions beyond
856 the ones we did here. The driver layer expects no
857 calls after ->hangup() from the ldisc side. However we
858 can't yet guarantee all that */
860 set_bit(TTY_HUPPED
, &tty
->flags
);
862 tty_ldisc_enable(tty
);
870 void tty_hangup(struct tty_struct
* tty
)
872 #ifdef TTY_DEBUG_HANGUP
875 printk(KERN_DEBUG
"%s hangup...\n", tty_name(tty
, buf
));
877 schedule_work(&tty
->hangup_work
);
880 EXPORT_SYMBOL(tty_hangup
);
882 void tty_vhangup(struct tty_struct
* tty
)
884 #ifdef TTY_DEBUG_HANGUP
887 printk(KERN_DEBUG
"%s vhangup...\n", tty_name(tty
, buf
));
889 do_tty_hangup((void *) tty
);
891 EXPORT_SYMBOL(tty_vhangup
);
893 int tty_hung_up_p(struct file
* filp
)
895 return (filp
->f_op
== &hung_up_tty_fops
);
898 EXPORT_SYMBOL(tty_hung_up_p
);
901 * This function is typically called only by the session leader, when
902 * it wants to disassociate itself from its controlling tty.
904 * It performs the following functions:
905 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
906 * (2) Clears the tty from being controlling the session
907 * (3) Clears the controlling tty for all processes in the
910 * The argument on_exit is set to 1 if called when a process is
911 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
913 void disassociate_ctty(int on_exit
)
915 struct tty_struct
*tty
;
916 struct task_struct
*p
;
922 tty
= current
->signal
->tty
;
924 tty_pgrp
= tty
->pgrp
;
926 if (on_exit
&& tty
->driver
->type
!= TTY_DRIVER_TYPE_PTY
)
929 if (current
->signal
->tty_old_pgrp
) {
930 kill_pg(current
->signal
->tty_old_pgrp
, SIGHUP
, on_exit
);
931 kill_pg(current
->signal
->tty_old_pgrp
, SIGCONT
, on_exit
);
938 kill_pg(tty_pgrp
, SIGHUP
, on_exit
);
940 kill_pg(tty_pgrp
, SIGCONT
, on_exit
);
943 /* Must lock changes to tty_old_pgrp */
945 current
->signal
->tty_old_pgrp
= 0;
949 /* Now clear signal->tty under the lock */
950 read_lock(&tasklist_lock
);
951 do_each_task_pid(current
->signal
->session
, PIDTYPE_SID
, p
) {
952 p
->signal
->tty
= NULL
;
953 } while_each_task_pid(current
->signal
->session
, PIDTYPE_SID
, p
);
954 read_unlock(&tasklist_lock
);
959 void stop_tty(struct tty_struct
*tty
)
964 if (tty
->link
&& tty
->link
->packet
) {
965 tty
->ctrl_status
&= ~TIOCPKT_START
;
966 tty
->ctrl_status
|= TIOCPKT_STOP
;
967 wake_up_interruptible(&tty
->link
->read_wait
);
969 if (tty
->driver
->stop
)
970 (tty
->driver
->stop
)(tty
);
973 EXPORT_SYMBOL(stop_tty
);
975 void start_tty(struct tty_struct
*tty
)
977 if (!tty
->stopped
|| tty
->flow_stopped
)
980 if (tty
->link
&& tty
->link
->packet
) {
981 tty
->ctrl_status
&= ~TIOCPKT_STOP
;
982 tty
->ctrl_status
|= TIOCPKT_START
;
983 wake_up_interruptible(&tty
->link
->read_wait
);
985 if (tty
->driver
->start
)
986 (tty
->driver
->start
)(tty
);
988 /* If we have a running line discipline it may need kicking */
990 wake_up_interruptible(&tty
->write_wait
);
993 EXPORT_SYMBOL(start_tty
);
995 static ssize_t
tty_read(struct file
* file
, char __user
* buf
, size_t count
,
999 struct tty_struct
* tty
;
1000 struct inode
*inode
;
1001 struct tty_ldisc
*ld
;
1003 tty
= (struct tty_struct
*)file
->private_data
;
1004 inode
= file
->f_dentry
->d_inode
;
1005 if (tty_paranoia_check(tty
, inode
, "tty_read"))
1007 if (!tty
|| (test_bit(TTY_IO_ERROR
, &tty
->flags
)))
1010 /* We want to wait for the line discipline to sort out in this
1012 ld
= tty_ldisc_ref_wait(tty
);
1015 i
= (ld
->read
)(tty
,file
,buf
,count
);
1018 tty_ldisc_deref(ld
);
1021 inode
->i_atime
= current_fs_time(inode
->i_sb
);
1026 * Split writes up in sane blocksizes to avoid
1027 * denial-of-service type attacks
1029 static inline ssize_t
do_tty_write(
1030 ssize_t (*write
)(struct tty_struct
*, struct file
*, const unsigned char *, size_t),
1031 struct tty_struct
*tty
,
1033 const char __user
*buf
,
1036 ssize_t ret
= 0, written
= 0;
1039 if (down_interruptible(&tty
->atomic_write
)) {
1040 return -ERESTARTSYS
;
1044 * We chunk up writes into a temporary buffer. This
1045 * simplifies low-level drivers immensely, since they
1046 * don't have locking issues and user mode accesses.
1048 * But if TTY_NO_WRITE_SPLIT is set, we should use a
1051 * The default chunk-size is 2kB, because the NTTY
1052 * layer has problems with bigger chunks. It will
1053 * claim to be able to handle more characters than
1057 if (test_bit(TTY_NO_WRITE_SPLIT
, &tty
->flags
))
1062 /* write_buf/write_cnt is protected by the atomic_write semaphore */
1063 if (tty
->write_cnt
< chunk
) {
1069 buf
= kmalloc(chunk
, GFP_KERNEL
);
1071 up(&tty
->atomic_write
);
1074 kfree(tty
->write_buf
);
1075 tty
->write_cnt
= chunk
;
1076 tty
->write_buf
= buf
;
1079 /* Do the write .. */
1081 size_t size
= count
;
1085 if (copy_from_user(tty
->write_buf
, buf
, size
))
1088 ret
= write(tty
, file
, tty
->write_buf
, size
);
1098 if (signal_pending(current
))
1103 struct inode
*inode
= file
->f_dentry
->d_inode
;
1104 inode
->i_mtime
= current_fs_time(inode
->i_sb
);
1107 up(&tty
->atomic_write
);
1112 static ssize_t
tty_write(struct file
* file
, const char __user
* buf
, size_t count
,
1115 struct tty_struct
* tty
;
1116 struct inode
*inode
= file
->f_dentry
->d_inode
;
1118 struct tty_ldisc
*ld
;
1120 tty
= (struct tty_struct
*)file
->private_data
;
1121 if (tty_paranoia_check(tty
, inode
, "tty_write"))
1123 if (!tty
|| !tty
->driver
->write
|| (test_bit(TTY_IO_ERROR
, &tty
->flags
)))
1126 ld
= tty_ldisc_ref_wait(tty
);
1130 ret
= do_tty_write(ld
->write
, tty
, file
, buf
, count
);
1131 tty_ldisc_deref(ld
);
1135 ssize_t
redirected_tty_write(struct file
* file
, const char __user
* buf
, size_t count
,
1138 struct file
*p
= NULL
;
1140 spin_lock(&redirect_lock
);
1145 spin_unlock(&redirect_lock
);
1149 res
= vfs_write(p
, buf
, count
, &p
->f_pos
);
1154 return tty_write(file
, buf
, count
, ppos
);
1157 static char ptychar
[] = "pqrstuvwxyzabcde";
1159 static inline void pty_line_name(struct tty_driver
*driver
, int index
, char *p
)
1161 int i
= index
+ driver
->name_base
;
1162 /* ->name is initialized to "ttyp", but "tty" is expected */
1163 sprintf(p
, "%s%c%x",
1164 driver
->subtype
== PTY_TYPE_SLAVE
? "tty" : driver
->name
,
1165 ptychar
[i
>> 4 & 0xf], i
& 0xf);
1168 static inline void tty_line_name(struct tty_driver
*driver
, int index
, char *p
)
1170 sprintf(p
, "%s%d", driver
->name
, index
+ driver
->name_base
);
1174 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
1175 * failed open. The new code protects the open with a semaphore, so it's
1176 * really quite straightforward. The semaphore locking can probably be
1177 * relaxed for the (most common) case of reopening a tty.
1179 static int init_dev(struct tty_driver
*driver
, int idx
,
1180 struct tty_struct
**ret_tty
)
1182 struct tty_struct
*tty
, *o_tty
;
1183 struct termios
*tp
, **tp_loc
, *o_tp
, **o_tp_loc
;
1184 struct termios
*ltp
, **ltp_loc
, *o_ltp
, **o_ltp_loc
;
1187 /* check whether we're reopening an existing tty */
1188 if (driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) {
1189 tty
= devpts_get_tty(idx
);
1190 if (tty
&& driver
->subtype
== PTY_TYPE_MASTER
)
1193 tty
= driver
->ttys
[idx
];
1195 if (tty
) goto fast_track
;
1198 * First time open is complex, especially for PTY devices.
1199 * This code guarantees that either everything succeeds and the
1200 * TTY is ready for operation, or else the table slots are vacated
1201 * and the allocated memory released. (Except that the termios
1202 * and locked termios may be retained.)
1205 if (!try_module_get(driver
->owner
)) {
1214 tty
= alloc_tty_struct();
1217 initialize_tty_struct(tty
);
1218 tty
->driver
= driver
;
1220 tty_line_name(driver
, idx
, tty
->name
);
1222 if (driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) {
1223 tp_loc
= &tty
->termios
;
1224 ltp_loc
= &tty
->termios_locked
;
1226 tp_loc
= &driver
->termios
[idx
];
1227 ltp_loc
= &driver
->termios_locked
[idx
];
1231 tp
= (struct termios
*) kmalloc(sizeof(struct termios
),
1235 *tp
= driver
->init_termios
;
1239 ltp
= (struct termios
*) kmalloc(sizeof(struct termios
),
1243 memset(ltp
, 0, sizeof(struct termios
));
1246 if (driver
->type
== TTY_DRIVER_TYPE_PTY
) {
1247 o_tty
= alloc_tty_struct();
1250 initialize_tty_struct(o_tty
);
1251 o_tty
->driver
= driver
->other
;
1253 tty_line_name(driver
->other
, idx
, o_tty
->name
);
1255 if (driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) {
1256 o_tp_loc
= &o_tty
->termios
;
1257 o_ltp_loc
= &o_tty
->termios_locked
;
1259 o_tp_loc
= &driver
->other
->termios
[idx
];
1260 o_ltp_loc
= &driver
->other
->termios_locked
[idx
];
1264 o_tp
= (struct termios
*)
1265 kmalloc(sizeof(struct termios
), GFP_KERNEL
);
1268 *o_tp
= driver
->other
->init_termios
;
1272 o_ltp
= (struct termios
*)
1273 kmalloc(sizeof(struct termios
), GFP_KERNEL
);
1276 memset(o_ltp
, 0, sizeof(struct termios
));
1280 * Everything allocated ... set up the o_tty structure.
1282 if (!(driver
->other
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
1283 driver
->other
->ttys
[idx
] = o_tty
;
1289 o_tty
->termios
= *o_tp_loc
;
1290 o_tty
->termios_locked
= *o_ltp_loc
;
1291 driver
->other
->refcount
++;
1292 if (driver
->subtype
== PTY_TYPE_MASTER
)
1295 /* Establish the links in both directions */
1301 * All structures have been allocated, so now we install them.
1302 * Failures after this point use release_mem to clean up, so
1303 * there's no need to null out the local pointers.
1305 if (!(driver
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
1306 driver
->ttys
[idx
] = tty
;
1313 tty
->termios
= *tp_loc
;
1314 tty
->termios_locked
= *ltp_loc
;
1319 * Structures all installed ... call the ldisc open routines.
1320 * If we fail here just call release_mem to clean up. No need
1321 * to decrement the use counts, as release_mem doesn't care.
1324 if (tty
->ldisc
.open
) {
1325 retval
= (tty
->ldisc
.open
)(tty
);
1327 goto release_mem_out
;
1329 if (o_tty
&& o_tty
->ldisc
.open
) {
1330 retval
= (o_tty
->ldisc
.open
)(o_tty
);
1332 if (tty
->ldisc
.close
)
1333 (tty
->ldisc
.close
)(tty
);
1334 goto release_mem_out
;
1336 tty_ldisc_enable(o_tty
);
1338 tty_ldisc_enable(tty
);
1342 * This fast open can be used if the tty is already open.
1343 * No memory is allocated, and the only failures are from
1344 * attempting to open a closing tty or attempting multiple
1345 * opens on a pty master.
1348 if (test_bit(TTY_CLOSING
, &tty
->flags
)) {
1352 if (driver
->type
== TTY_DRIVER_TYPE_PTY
&&
1353 driver
->subtype
== PTY_TYPE_MASTER
) {
1355 * special case for PTY masters: only one open permitted,
1356 * and the slave side open count is incremented as well.
1365 tty
->driver
= driver
; /* N.B. why do this every time?? */
1368 if(!test_bit(TTY_LDISC
, &tty
->flags
))
1369 printk(KERN_ERR
"init_dev but no ldisc\n");
1373 /* All paths come through here to release the semaphore */
1377 /* Release locally allocated memory ... nothing placed in slots */
1382 free_tty_struct(o_tty
);
1387 free_tty_struct(tty
);
1390 module_put(driver
->owner
);
1394 /* call the tty release_mem routine to clean out this slot */
1396 printk(KERN_INFO
"init_dev: ldisc open failed, "
1397 "clearing slot %d\n", idx
);
1398 release_mem(tty
, idx
);
1403 * Releases memory associated with a tty structure, and clears out the
1404 * driver table slots.
1406 static void release_mem(struct tty_struct
*tty
, int idx
)
1408 struct tty_struct
*o_tty
;
1410 int devpts
= tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
;
1412 if ((o_tty
= tty
->link
) != NULL
) {
1414 o_tty
->driver
->ttys
[idx
] = NULL
;
1415 if (o_tty
->driver
->flags
& TTY_DRIVER_RESET_TERMIOS
) {
1416 tp
= o_tty
->termios
;
1418 o_tty
->driver
->termios
[idx
] = NULL
;
1421 tp
= o_tty
->termios_locked
;
1423 o_tty
->driver
->termios_locked
[idx
] = NULL
;
1427 o_tty
->driver
->refcount
--;
1429 list_del_init(&o_tty
->tty_files
);
1431 free_tty_struct(o_tty
);
1435 tty
->driver
->ttys
[idx
] = NULL
;
1436 if (tty
->driver
->flags
& TTY_DRIVER_RESET_TERMIOS
) {
1439 tty
->driver
->termios
[idx
] = NULL
;
1442 tp
= tty
->termios_locked
;
1444 tty
->driver
->termios_locked
[idx
] = NULL
;
1449 tty
->driver
->refcount
--;
1451 list_del_init(&tty
->tty_files
);
1453 module_put(tty
->driver
->owner
);
1454 free_tty_struct(tty
);
1458 * Even releasing the tty structures is a tricky business.. We have
1459 * to be very careful that the structures are all released at the
1460 * same time, as interrupts might otherwise get the wrong pointers.
1462 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1463 * lead to double frees or releasing memory still in use.
1465 static void release_dev(struct file
* filp
)
1467 struct tty_struct
*tty
, *o_tty
;
1468 int pty_master
, tty_closing
, o_tty_closing
, do_sleep
;
1469 int devpts_master
, devpts
;
1472 unsigned long flags
;
1474 tty
= (struct tty_struct
*)filp
->private_data
;
1475 if (tty_paranoia_check(tty
, filp
->f_dentry
->d_inode
, "release_dev"))
1478 check_tty_count(tty
, "release_dev");
1480 tty_fasync(-1, filp
, 0);
1483 pty_master
= (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
1484 tty
->driver
->subtype
== PTY_TYPE_MASTER
);
1485 devpts
= (tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
) != 0;
1486 devpts_master
= pty_master
&& devpts
;
1489 #ifdef TTY_PARANOIA_CHECK
1490 if (idx
< 0 || idx
>= tty
->driver
->num
) {
1491 printk(KERN_DEBUG
"release_dev: bad idx when trying to "
1492 "free (%s)\n", tty
->name
);
1495 if (!(tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
1496 if (tty
!= tty
->driver
->ttys
[idx
]) {
1497 printk(KERN_DEBUG
"release_dev: driver.table[%d] not tty "
1498 "for (%s)\n", idx
, tty
->name
);
1501 if (tty
->termios
!= tty
->driver
->termios
[idx
]) {
1502 printk(KERN_DEBUG
"release_dev: driver.termios[%d] not termios "
1507 if (tty
->termios_locked
!= tty
->driver
->termios_locked
[idx
]) {
1508 printk(KERN_DEBUG
"release_dev: driver.termios_locked[%d] not "
1509 "termios_locked for (%s)\n",
1516 #ifdef TTY_DEBUG_HANGUP
1517 printk(KERN_DEBUG
"release_dev of %s (tty count=%d)...",
1518 tty_name(tty
, buf
), tty
->count
);
1521 #ifdef TTY_PARANOIA_CHECK
1522 if (tty
->driver
->other
&&
1523 !(tty
->driver
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
1524 if (o_tty
!= tty
->driver
->other
->ttys
[idx
]) {
1525 printk(KERN_DEBUG
"release_dev: other->table[%d] "
1526 "not o_tty for (%s)\n",
1530 if (o_tty
->termios
!= tty
->driver
->other
->termios
[idx
]) {
1531 printk(KERN_DEBUG
"release_dev: other->termios[%d] "
1532 "not o_termios for (%s)\n",
1536 if (o_tty
->termios_locked
!=
1537 tty
->driver
->other
->termios_locked
[idx
]) {
1538 printk(KERN_DEBUG
"release_dev: other->termios_locked["
1539 "%d] not o_termios_locked for (%s)\n",
1543 if (o_tty
->link
!= tty
) {
1544 printk(KERN_DEBUG
"release_dev: bad pty pointers\n");
1549 if (tty
->driver
->close
)
1550 tty
->driver
->close(tty
, filp
);
1553 * Sanity check: if tty->count is going to zero, there shouldn't be
1554 * any waiters on tty->read_wait or tty->write_wait. We test the
1555 * wait queues and kick everyone out _before_ actually starting to
1556 * close. This ensures that we won't block while releasing the tty
1559 * The test for the o_tty closing is necessary, since the master and
1560 * slave sides may close in any order. If the slave side closes out
1561 * first, its count will be one, since the master side holds an open.
1562 * Thus this test wouldn't be triggered at the time the slave closes,
1565 * Note that it's possible for the tty to be opened again while we're
1566 * flushing out waiters. By recalculating the closing flags before
1567 * each iteration we avoid any problems.
1570 /* Guard against races with tty->count changes elsewhere and
1571 opens on /dev/tty */
1574 tty_closing
= tty
->count
<= 1;
1575 o_tty_closing
= o_tty
&&
1576 (o_tty
->count
<= (pty_master
? 1 : 0));
1581 if (waitqueue_active(&tty
->read_wait
)) {
1582 wake_up(&tty
->read_wait
);
1585 if (waitqueue_active(&tty
->write_wait
)) {
1586 wake_up(&tty
->write_wait
);
1590 if (o_tty_closing
) {
1591 if (waitqueue_active(&o_tty
->read_wait
)) {
1592 wake_up(&o_tty
->read_wait
);
1595 if (waitqueue_active(&o_tty
->write_wait
)) {
1596 wake_up(&o_tty
->write_wait
);
1603 printk(KERN_WARNING
"release_dev: %s: read/write wait queue "
1604 "active!\n", tty_name(tty
, buf
));
1609 * The closing flags are now consistent with the open counts on
1610 * both sides, and we've completed the last operation that could
1611 * block, so it's safe to proceed with closing.
1616 if (--o_tty
->count
< 0) {
1617 printk(KERN_WARNING
"release_dev: bad pty slave count "
1619 o_tty
->count
, tty_name(o_tty
, buf
));
1623 if (--tty
->count
< 0) {
1624 printk(KERN_WARNING
"release_dev: bad tty->count (%d) for %s\n",
1625 tty
->count
, tty_name(tty
, buf
));
1631 * We've decremented tty->count, so we need to remove this file
1632 * descriptor off the tty->tty_files list; this serves two
1634 * - check_tty_count sees the correct number of file descriptors
1635 * associated with this tty.
1636 * - do_tty_hangup no longer sees this file descriptor as
1637 * something that needs to be handled for hangups.
1640 filp
->private_data
= NULL
;
1643 * Perform some housekeeping before deciding whether to return.
1645 * Set the TTY_CLOSING flag if this was the last open. In the
1646 * case of a pty we may have to wait around for the other side
1647 * to close, and TTY_CLOSING makes sure we can't be reopened.
1650 set_bit(TTY_CLOSING
, &tty
->flags
);
1652 set_bit(TTY_CLOSING
, &o_tty
->flags
);
1655 * If _either_ side is closing, make sure there aren't any
1656 * processes that still think tty or o_tty is their controlling
1659 if (tty_closing
|| o_tty_closing
) {
1660 struct task_struct
*p
;
1662 read_lock(&tasklist_lock
);
1663 do_each_task_pid(tty
->session
, PIDTYPE_SID
, p
) {
1664 p
->signal
->tty
= NULL
;
1665 } while_each_task_pid(tty
->session
, PIDTYPE_SID
, p
);
1667 do_each_task_pid(o_tty
->session
, PIDTYPE_SID
, p
) {
1668 p
->signal
->tty
= NULL
;
1669 } while_each_task_pid(o_tty
->session
, PIDTYPE_SID
, p
);
1670 read_unlock(&tasklist_lock
);
1673 /* check whether both sides are closing ... */
1674 if (!tty_closing
|| (o_tty
&& !o_tty_closing
))
1677 #ifdef TTY_DEBUG_HANGUP
1678 printk(KERN_DEBUG
"freeing tty structure...");
1681 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
1682 * kill any delayed work. As this is the final close it does not
1683 * race with the set_ldisc code path.
1685 clear_bit(TTY_LDISC
, &tty
->flags
);
1686 clear_bit(TTY_DONT_FLIP
, &tty
->flags
);
1687 cancel_delayed_work(&tty
->flip
.work
);
1690 * Wait for ->hangup_work and ->flip.work handlers to terminate
1693 flush_scheduled_work();
1696 * Wait for any short term users (we know they are just driver
1697 * side waiters as the file is closing so user count on the file
1700 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
1701 while(tty
->ldisc
.refcount
)
1703 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
1704 wait_event(tty_ldisc_wait
, tty
->ldisc
.refcount
== 0);
1705 spin_lock_irqsave(&tty_ldisc_lock
, flags
);
1707 spin_unlock_irqrestore(&tty_ldisc_lock
, flags
);
1709 * Shutdown the current line discipline, and reset it to N_TTY.
1710 * N.B. why reset ldisc when we're releasing the memory??
1712 * FIXME: this MUST get fixed for the new reflocking
1714 if (tty
->ldisc
.close
)
1715 (tty
->ldisc
.close
)(tty
);
1716 tty_ldisc_put(tty
->ldisc
.num
);
1719 * Switch the line discipline back
1721 tty_ldisc_assign(tty
, tty_ldisc_get(N_TTY
));
1722 tty_set_termios_ldisc(tty
,N_TTY
);
1724 /* FIXME: could o_tty be in setldisc here ? */
1725 clear_bit(TTY_LDISC
, &o_tty
->flags
);
1726 if (o_tty
->ldisc
.close
)
1727 (o_tty
->ldisc
.close
)(o_tty
);
1728 tty_ldisc_put(o_tty
->ldisc
.num
);
1729 tty_ldisc_assign(o_tty
, tty_ldisc_get(N_TTY
));
1730 tty_set_termios_ldisc(o_tty
,N_TTY
);
1733 * The release_mem function takes care of the details of clearing
1734 * the slots and preserving the termios structure.
1736 release_mem(tty
, idx
);
1738 #ifdef CONFIG_UNIX98_PTYS
1739 /* Make this pty number available for reallocation */
1741 down(&allocated_ptys_lock
);
1742 idr_remove(&allocated_ptys
, idx
);
1743 up(&allocated_ptys_lock
);
1750 * tty_open and tty_release keep up the tty count that contains the
1751 * number of opens done on a tty. We cannot use the inode-count, as
1752 * different inodes might point to the same tty.
1754 * Open-counting is needed for pty masters, as well as for keeping
1755 * track of serial lines: DTR is dropped when the last close happens.
1756 * (This is not done solely through tty->count, now. - Ted 1/27/92)
1758 * The termios state of a pty is reset on first open so that
1759 * settings don't persist across reuse.
1761 static int tty_open(struct inode
* inode
, struct file
* filp
)
1763 struct tty_struct
*tty
;
1765 struct tty_driver
*driver
;
1767 dev_t device
= inode
->i_rdev
;
1768 unsigned short saved_flags
= filp
->f_flags
;
1770 nonseekable_open(inode
, filp
);
1773 noctty
= filp
->f_flags
& O_NOCTTY
;
1779 if (device
== MKDEV(TTYAUX_MAJOR
,0)) {
1780 if (!current
->signal
->tty
) {
1784 driver
= current
->signal
->tty
->driver
;
1785 index
= current
->signal
->tty
->index
;
1786 filp
->f_flags
|= O_NONBLOCK
; /* Don't let /dev/tty block */
1791 if (device
== MKDEV(TTY_MAJOR
,0)) {
1792 extern struct tty_driver
*console_driver
;
1793 driver
= console_driver
;
1799 if (device
== MKDEV(TTYAUX_MAJOR
,1)) {
1800 driver
= console_device(&index
);
1802 /* Don't let /dev/console block */
1803 filp
->f_flags
|= O_NONBLOCK
;
1811 driver
= get_tty_driver(device
, &index
);
1817 retval
= init_dev(driver
, index
, &tty
);
1822 filp
->private_data
= tty
;
1823 file_move(filp
, &tty
->tty_files
);
1824 check_tty_count(tty
, "tty_open");
1825 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
1826 tty
->driver
->subtype
== PTY_TYPE_MASTER
)
1828 #ifdef TTY_DEBUG_HANGUP
1829 printk(KERN_DEBUG
"opening %s...", tty
->name
);
1832 if (tty
->driver
->open
)
1833 retval
= tty
->driver
->open(tty
, filp
);
1837 filp
->f_flags
= saved_flags
;
1839 if (!retval
&& test_bit(TTY_EXCLUSIVE
, &tty
->flags
) && !capable(CAP_SYS_ADMIN
))
1843 #ifdef TTY_DEBUG_HANGUP
1844 printk(KERN_DEBUG
"error %d in opening %s...", retval
,
1848 if (retval
!= -ERESTARTSYS
)
1850 if (signal_pending(current
))
1854 * Need to reset f_op in case a hangup happened.
1856 if (filp
->f_op
== &hung_up_tty_fops
)
1857 filp
->f_op
= &tty_fops
;
1861 current
->signal
->leader
&&
1862 !current
->signal
->tty
&&
1863 tty
->session
== 0) {
1865 current
->signal
->tty
= tty
;
1866 task_unlock(current
);
1867 current
->signal
->tty_old_pgrp
= 0;
1868 tty
->session
= current
->signal
->session
;
1869 tty
->pgrp
= process_group(current
);
1874 #ifdef CONFIG_UNIX98_PTYS
1875 static int ptmx_open(struct inode
* inode
, struct file
* filp
)
1877 struct tty_struct
*tty
;
1882 nonseekable_open(inode
, filp
);
1884 /* find a device that is not in use. */
1885 down(&allocated_ptys_lock
);
1886 if (!idr_pre_get(&allocated_ptys
, GFP_KERNEL
)) {
1887 up(&allocated_ptys_lock
);
1890 idr_ret
= idr_get_new(&allocated_ptys
, NULL
, &index
);
1892 up(&allocated_ptys_lock
);
1893 if (idr_ret
== -EAGAIN
)
1897 if (index
>= pty_limit
) {
1898 idr_remove(&allocated_ptys
, index
);
1899 up(&allocated_ptys_lock
);
1902 up(&allocated_ptys_lock
);
1905 retval
= init_dev(ptm_driver
, index
, &tty
);
1911 set_bit(TTY_PTY_LOCK
, &tty
->flags
); /* LOCK THE SLAVE */
1912 filp
->private_data
= tty
;
1913 file_move(filp
, &tty
->tty_files
);
1916 if (devpts_pty_new(tty
->link
))
1919 check_tty_count(tty
, "tty_open");
1920 retval
= ptm_driver
->open(tty
, filp
);
1926 down(&allocated_ptys_lock
);
1927 idr_remove(&allocated_ptys
, index
);
1928 up(&allocated_ptys_lock
);
1933 static int tty_release(struct inode
* inode
, struct file
* filp
)
1941 /* No kernel lock held - fine */
1942 static unsigned int tty_poll(struct file
* filp
, poll_table
* wait
)
1944 struct tty_struct
* tty
;
1945 struct tty_ldisc
*ld
;
1948 tty
= (struct tty_struct
*)filp
->private_data
;
1949 if (tty_paranoia_check(tty
, filp
->f_dentry
->d_inode
, "tty_poll"))
1952 ld
= tty_ldisc_ref_wait(tty
);
1954 ret
= (ld
->poll
)(tty
, filp
, wait
);
1955 tty_ldisc_deref(ld
);
1959 static int tty_fasync(int fd
, struct file
* filp
, int on
)
1961 struct tty_struct
* tty
;
1964 tty
= (struct tty_struct
*)filp
->private_data
;
1965 if (tty_paranoia_check(tty
, filp
->f_dentry
->d_inode
, "tty_fasync"))
1968 retval
= fasync_helper(fd
, filp
, on
, &tty
->fasync
);
1973 if (!waitqueue_active(&tty
->read_wait
))
1974 tty
->minimum_to_wake
= 1;
1975 retval
= f_setown(filp
, (-tty
->pgrp
) ? : current
->pid
, 0);
1979 if (!tty
->fasync
&& !waitqueue_active(&tty
->read_wait
))
1980 tty
->minimum_to_wake
= N_TTY_BUF_SIZE
;
1985 static int tiocsti(struct tty_struct
*tty
, char __user
*p
)
1988 struct tty_ldisc
*ld
;
1990 if ((current
->signal
->tty
!= tty
) && !capable(CAP_SYS_ADMIN
))
1992 if (get_user(ch
, p
))
1994 ld
= tty_ldisc_ref_wait(tty
);
1995 ld
->receive_buf(tty
, &ch
, &mbz
, 1);
1996 tty_ldisc_deref(ld
);
2000 static int tiocgwinsz(struct tty_struct
*tty
, struct winsize __user
* arg
)
2002 if (copy_to_user(arg
, &tty
->winsize
, sizeof(*arg
)))
2007 static int tiocswinsz(struct tty_struct
*tty
, struct tty_struct
*real_tty
,
2008 struct winsize __user
* arg
)
2010 struct winsize tmp_ws
;
2012 if (copy_from_user(&tmp_ws
, arg
, sizeof(*arg
)))
2014 if (!memcmp(&tmp_ws
, &tty
->winsize
, sizeof(*arg
)))
2017 if (tty
->driver
->type
== TTY_DRIVER_TYPE_CONSOLE
) {
2020 acquire_console_sem();
2021 rc
= vc_resize(tty
->driver_data
, tmp_ws
.ws_col
, tmp_ws
.ws_row
);
2022 release_console_sem();
2028 kill_pg(tty
->pgrp
, SIGWINCH
, 1);
2029 if ((real_tty
->pgrp
!= tty
->pgrp
) && (real_tty
->pgrp
> 0))
2030 kill_pg(real_tty
->pgrp
, SIGWINCH
, 1);
2031 tty
->winsize
= tmp_ws
;
2032 real_tty
->winsize
= tmp_ws
;
2036 static int tioccons(struct file
*file
)
2038 if (!capable(CAP_SYS_ADMIN
))
2040 if (file
->f_op
->write
== redirected_tty_write
) {
2042 spin_lock(&redirect_lock
);
2045 spin_unlock(&redirect_lock
);
2050 spin_lock(&redirect_lock
);
2052 spin_unlock(&redirect_lock
);
2057 spin_unlock(&redirect_lock
);
2062 static int fionbio(struct file
*file
, int __user
*p
)
2066 if (get_user(nonblock
, p
))
2070 file
->f_flags
|= O_NONBLOCK
;
2072 file
->f_flags
&= ~O_NONBLOCK
;
2076 static int tiocsctty(struct tty_struct
*tty
, int arg
)
2080 if (current
->signal
->leader
&&
2081 (current
->signal
->session
== tty
->session
))
2084 * The process must be a session leader and
2085 * not have a controlling tty already.
2087 if (!current
->signal
->leader
|| current
->signal
->tty
)
2089 if (tty
->session
> 0) {
2091 * This tty is already the controlling
2092 * tty for another session group!
2094 if ((arg
== 1) && capable(CAP_SYS_ADMIN
)) {
2099 read_lock(&tasklist_lock
);
2100 do_each_task_pid(tty
->session
, PIDTYPE_SID
, p
) {
2101 p
->signal
->tty
= NULL
;
2102 } while_each_task_pid(tty
->session
, PIDTYPE_SID
, p
);
2103 read_unlock(&tasklist_lock
);
2108 current
->signal
->tty
= tty
;
2109 task_unlock(current
);
2110 current
->signal
->tty_old_pgrp
= 0;
2111 tty
->session
= current
->signal
->session
;
2112 tty
->pgrp
= process_group(current
);
2116 static int tiocgpgrp(struct tty_struct
*tty
, struct tty_struct
*real_tty
, pid_t __user
*p
)
2119 * (tty == real_tty) is a cheap way of
2120 * testing if the tty is NOT a master pty.
2122 if (tty
== real_tty
&& current
->signal
->tty
!= real_tty
)
2124 return put_user(real_tty
->pgrp
, p
);
2127 static int tiocspgrp(struct tty_struct
*tty
, struct tty_struct
*real_tty
, pid_t __user
*p
)
2130 int retval
= tty_check_change(real_tty
);
2136 if (!current
->signal
->tty
||
2137 (current
->signal
->tty
!= real_tty
) ||
2138 (real_tty
->session
!= current
->signal
->session
))
2140 if (get_user(pgrp
, p
))
2144 if (session_of_pgrp(pgrp
) != current
->signal
->session
)
2146 real_tty
->pgrp
= pgrp
;
2150 static int tiocgsid(struct tty_struct
*tty
, struct tty_struct
*real_tty
, pid_t __user
*p
)
2153 * (tty == real_tty) is a cheap way of
2154 * testing if the tty is NOT a master pty.
2156 if (tty
== real_tty
&& current
->signal
->tty
!= real_tty
)
2158 if (real_tty
->session
<= 0)
2160 return put_user(real_tty
->session
, p
);
2163 static int tiocsetd(struct tty_struct
*tty
, int __user
*p
)
2167 if (get_user(ldisc
, p
))
2169 return tty_set_ldisc(tty
, ldisc
);
2172 static int send_break(struct tty_struct
*tty
, int duration
)
2174 tty
->driver
->break_ctl(tty
, -1);
2175 if (!signal_pending(current
)) {
2176 set_current_state(TASK_INTERRUPTIBLE
);
2177 schedule_timeout(duration
);
2179 tty
->driver
->break_ctl(tty
, 0);
2180 if (signal_pending(current
))
2186 tty_tiocmget(struct tty_struct
*tty
, struct file
*file
, int __user
*p
)
2188 int retval
= -EINVAL
;
2190 if (tty
->driver
->tiocmget
) {
2191 retval
= tty
->driver
->tiocmget(tty
, file
);
2194 retval
= put_user(retval
, p
);
2200 tty_tiocmset(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
,
2203 int retval
= -EINVAL
;
2205 if (tty
->driver
->tiocmset
) {
2206 unsigned int set
, clear
, val
;
2208 retval
= get_user(val
, p
);
2226 set
&= TIOCM_DTR
|TIOCM_RTS
|TIOCM_OUT1
|TIOCM_OUT2
|TIOCM_LOOP
;
2227 clear
&= TIOCM_DTR
|TIOCM_RTS
|TIOCM_OUT1
|TIOCM_OUT2
|TIOCM_LOOP
;
2229 retval
= tty
->driver
->tiocmset(tty
, file
, set
, clear
);
2235 * Split this up, as gcc can choke on it otherwise..
2237 int tty_ioctl(struct inode
* inode
, struct file
* file
,
2238 unsigned int cmd
, unsigned long arg
)
2240 struct tty_struct
*tty
, *real_tty
;
2241 void __user
*p
= (void __user
*)arg
;
2243 struct tty_ldisc
*ld
;
2245 tty
= (struct tty_struct
*)file
->private_data
;
2246 if (tty_paranoia_check(tty
, inode
, "tty_ioctl"))
2250 if (tty
->driver
->type
== TTY_DRIVER_TYPE_PTY
&&
2251 tty
->driver
->subtype
== PTY_TYPE_MASTER
)
2252 real_tty
= tty
->link
;
2255 * Break handling by driver
2257 if (!tty
->driver
->break_ctl
) {
2261 if (tty
->driver
->ioctl
)
2262 return tty
->driver
->ioctl(tty
, file
, cmd
, arg
);
2265 /* These two ioctl's always return success; even if */
2266 /* the driver doesn't support them. */
2269 if (!tty
->driver
->ioctl
)
2271 retval
= tty
->driver
->ioctl(tty
, file
, cmd
, arg
);
2272 if (retval
== -ENOIOCTLCMD
)
2279 * Factor out some common prep work
2287 retval
= tty_check_change(tty
);
2290 if (cmd
!= TIOCCBRK
) {
2291 tty_wait_until_sent(tty
, 0);
2292 if (signal_pending(current
))
2300 return tiocsti(tty
, p
);
2302 return tiocgwinsz(tty
, p
);
2304 return tiocswinsz(tty
, real_tty
, p
);
2306 return real_tty
!=tty
? -EINVAL
: tioccons(file
);
2308 return fionbio(file
, p
);
2310 set_bit(TTY_EXCLUSIVE
, &tty
->flags
);
2313 clear_bit(TTY_EXCLUSIVE
, &tty
->flags
);
2316 if (current
->signal
->tty
!= tty
)
2318 if (current
->signal
->leader
)
2319 disassociate_ctty(0);
2321 current
->signal
->tty
= NULL
;
2322 task_unlock(current
);
2325 return tiocsctty(tty
, arg
);
2327 return tiocgpgrp(tty
, real_tty
, p
);
2329 return tiocspgrp(tty
, real_tty
, p
);
2331 return tiocgsid(tty
, real_tty
, p
);
2333 /* FIXME: check this is ok */
2334 return put_user(tty
->ldisc
.num
, (int __user
*)p
);
2336 return tiocsetd(tty
, p
);
2339 return tioclinux(tty
, arg
);
2344 case TIOCSBRK
: /* Turn break on, unconditionally */
2345 tty
->driver
->break_ctl(tty
, -1);
2348 case TIOCCBRK
: /* Turn break off, unconditionally */
2349 tty
->driver
->break_ctl(tty
, 0);
2351 case TCSBRK
: /* SVID version: non-zero arg --> no break */
2353 * XXX is the above comment correct, or the
2354 * code below correct? Is this ioctl used at
2358 return send_break(tty
, HZ
/4);
2360 case TCSBRKP
: /* support for POSIX tcsendbreak() */
2361 return send_break(tty
, arg
? arg
*(HZ
/10) : HZ
/4);
2364 return tty_tiocmget(tty
, file
, p
);
2369 return tty_tiocmset(tty
, file
, cmd
, p
);
2371 if (tty
->driver
->ioctl
) {
2372 retval
= (tty
->driver
->ioctl
)(tty
, file
, cmd
, arg
);
2373 if (retval
!= -ENOIOCTLCMD
)
2376 ld
= tty_ldisc_ref_wait(tty
);
2379 retval
= ld
->ioctl(tty
, file
, cmd
, arg
);
2380 if (retval
== -ENOIOCTLCMD
)
2383 tty_ldisc_deref(ld
);
2389 * This implements the "Secure Attention Key" --- the idea is to
2390 * prevent trojan horses by killing all processes associated with this
2391 * tty when the user hits the "Secure Attention Key". Required for
2392 * super-paranoid applications --- see the Orange Book for more details.
2394 * This code could be nicer; ideally it should send a HUP, wait a few
2395 * seconds, then send a INT, and then a KILL signal. But you then
2396 * have to coordinate with the init process, since all processes associated
2397 * with the current tty must be dead before the new getty is allowed
2400 * Now, if it would be correct ;-/ The current code has a nasty hole -
2401 * it doesn't catch files in flight. We may send the descriptor to ourselves
2402 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2404 * Nasty bug: do_SAK is being called in interrupt context. This can
2405 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2407 static void __do_SAK(void *arg
)
2412 struct tty_struct
*tty
= arg
;
2413 struct task_struct
*p
;
2417 struct tty_ldisc
*disc
;
2421 session
= tty
->session
;
2423 /* We don't want an ldisc switch during this */
2424 disc
= tty_ldisc_ref(tty
);
2425 if (disc
&& disc
->flush_buffer
)
2426 disc
->flush_buffer(tty
);
2427 tty_ldisc_deref(disc
);
2429 if (tty
->driver
->flush_buffer
)
2430 tty
->driver
->flush_buffer(tty
);
2432 read_lock(&tasklist_lock
);
2433 do_each_task_pid(session
, PIDTYPE_SID
, p
) {
2434 if (p
->signal
->tty
== tty
|| session
> 0) {
2435 printk(KERN_NOTICE
"SAK: killed process %d"
2436 " (%s): p->signal->session==tty->session\n",
2438 send_sig(SIGKILL
, p
, 1);
2443 spin_lock(&p
->files
->file_lock
);
2444 for (i
=0; i
< p
->files
->max_fds
; i
++) {
2445 filp
= fcheck_files(p
->files
, i
);
2448 if (filp
->f_op
->read
== tty_read
&&
2449 filp
->private_data
== tty
) {
2450 printk(KERN_NOTICE
"SAK: killed process %d"
2451 " (%s): fd#%d opened to the tty\n",
2452 p
->pid
, p
->comm
, i
);
2453 send_sig(SIGKILL
, p
, 1);
2457 spin_unlock(&p
->files
->file_lock
);
2460 } while_each_task_pid(session
, PIDTYPE_SID
, p
);
2461 read_unlock(&tasklist_lock
);
2466 * The tq handling here is a little racy - tty->SAK_work may already be queued.
2467 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
2468 * the values which we write to it will be identical to the values which it
2469 * already has. --akpm
2471 void do_SAK(struct tty_struct
*tty
)
2475 PREPARE_WORK(&tty
->SAK_work
, __do_SAK
, tty
);
2476 schedule_work(&tty
->SAK_work
);
2479 EXPORT_SYMBOL(do_SAK
);
2482 * This routine is called out of the software interrupt to flush data
2483 * from the flip buffer to the line discipline.
2486 static void flush_to_ldisc(void *private_
)
2488 struct tty_struct
*tty
= (struct tty_struct
*) private_
;
2492 unsigned long flags
;
2493 struct tty_ldisc
*disc
;
2495 disc
= tty_ldisc_ref(tty
);
2496 if (disc
== NULL
) /* !TTY_LDISC */
2499 if (test_bit(TTY_DONT_FLIP
, &tty
->flags
)) {
2501 * Do it after the next timer tick:
2503 schedule_delayed_work(&tty
->flip
.work
, 1);
2506 spin_lock_irqsave(&tty
->read_lock
, flags
);
2507 if (tty
->flip
.buf_num
) {
2508 cp
= tty
->flip
.char_buf
+ TTY_FLIPBUF_SIZE
;
2509 fp
= tty
->flip
.flag_buf
+ TTY_FLIPBUF_SIZE
;
2510 tty
->flip
.buf_num
= 0;
2511 tty
->flip
.char_buf_ptr
= tty
->flip
.char_buf
;
2512 tty
->flip
.flag_buf_ptr
= tty
->flip
.flag_buf
;
2514 cp
= tty
->flip
.char_buf
;
2515 fp
= tty
->flip
.flag_buf
;
2516 tty
->flip
.buf_num
= 1;
2517 tty
->flip
.char_buf_ptr
= tty
->flip
.char_buf
+ TTY_FLIPBUF_SIZE
;
2518 tty
->flip
.flag_buf_ptr
= tty
->flip
.flag_buf
+ TTY_FLIPBUF_SIZE
;
2520 count
= tty
->flip
.count
;
2521 tty
->flip
.count
= 0;
2522 spin_unlock_irqrestore(&tty
->read_lock
, flags
);
2524 disc
->receive_buf(tty
, cp
, fp
, count
);
2526 tty_ldisc_deref(disc
);
2530 * Routine which returns the baud rate of the tty
2532 * Note that the baud_table needs to be kept in sync with the
2533 * include/asm/termbits.h file.
2535 static int baud_table
[] = {
2536 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
2537 9600, 19200, 38400, 57600, 115200, 230400, 460800,
2539 76800, 153600, 307200, 614400, 921600
2541 500000, 576000, 921600, 1000000, 1152000, 1500000, 2000000,
2542 2500000, 3000000, 3500000, 4000000
2546 static int n_baud_table
= ARRAY_SIZE(baud_table
);
2549 * tty_termios_baud_rate
2550 * @termios: termios structure
2552 * Convert termios baud rate data into a speed. This should be called
2553 * with the termios lock held if this termios is a terminal termios
2554 * structure. May change the termios data.
2557 int tty_termios_baud_rate(struct termios
*termios
)
2561 cbaud
= termios
->c_cflag
& CBAUD
;
2563 if (cbaud
& CBAUDEX
) {
2566 if (cbaud
< 1 || cbaud
+ 15 > n_baud_table
)
2567 termios
->c_cflag
&= ~CBAUDEX
;
2571 return baud_table
[cbaud
];
2574 EXPORT_SYMBOL(tty_termios_baud_rate
);
2577 * tty_get_baud_rate - get tty bit rates
2578 * @tty: tty to query
2580 * Returns the baud rate as an integer for this terminal. The
2581 * termios lock must be held by the caller and the terminal bit
2582 * flags may be updated.
2585 int tty_get_baud_rate(struct tty_struct
*tty
)
2587 int baud
= tty_termios_baud_rate(tty
->termios
);
2589 if (baud
== 38400 && tty
->alt_speed
) {
2591 printk(KERN_WARNING
"Use of setserial/setrocket to "
2592 "set SPD_* flags is deprecated\n");
2595 baud
= tty
->alt_speed
;
2601 EXPORT_SYMBOL(tty_get_baud_rate
);
2604 * tty_flip_buffer_push - terminal
2607 * Queue a push of the terminal flip buffers to the line discipline. This
2608 * function must not be called from IRQ context if tty->low_latency is set.
2610 * In the event of the queue being busy for flipping the work will be
2611 * held off and retried later.
2614 void tty_flip_buffer_push(struct tty_struct
*tty
)
2616 if (tty
->low_latency
)
2617 flush_to_ldisc((void *) tty
);
2619 schedule_delayed_work(&tty
->flip
.work
, 1);
2622 EXPORT_SYMBOL(tty_flip_buffer_push
);
2625 * This subroutine initializes a tty structure.
2627 static void initialize_tty_struct(struct tty_struct
*tty
)
2629 memset(tty
, 0, sizeof(struct tty_struct
));
2630 tty
->magic
= TTY_MAGIC
;
2631 tty_ldisc_assign(tty
, tty_ldisc_get(N_TTY
));
2633 tty
->overrun_time
= jiffies
;
2634 tty
->flip
.char_buf_ptr
= tty
->flip
.char_buf
;
2635 tty
->flip
.flag_buf_ptr
= tty
->flip
.flag_buf
;
2636 INIT_WORK(&tty
->flip
.work
, flush_to_ldisc
, tty
);
2637 init_MUTEX(&tty
->flip
.pty_sem
);
2638 init_MUTEX(&tty
->termios_sem
);
2639 init_waitqueue_head(&tty
->write_wait
);
2640 init_waitqueue_head(&tty
->read_wait
);
2641 INIT_WORK(&tty
->hangup_work
, do_tty_hangup
, tty
);
2642 sema_init(&tty
->atomic_read
, 1);
2643 sema_init(&tty
->atomic_write
, 1);
2644 spin_lock_init(&tty
->read_lock
);
2645 INIT_LIST_HEAD(&tty
->tty_files
);
2646 INIT_WORK(&tty
->SAK_work
, NULL
, NULL
);
2650 * The default put_char routine if the driver did not define one.
2652 static void tty_default_put_char(struct tty_struct
*tty
, unsigned char ch
)
2654 tty
->driver
->write(tty
, &ch
, 1);
2657 static struct class_simple
*tty_class
;
2660 * tty_register_device - register a tty device
2661 * @driver: the tty driver that describes the tty device
2662 * @index: the index in the tty driver for this tty device
2663 * @device: a struct device that is associated with this tty device.
2664 * This field is optional, if there is no known struct device for this
2665 * tty device it can be set to NULL safely.
2667 * This call is required to be made to register an individual tty device if
2668 * the tty driver's flags have the TTY_DRIVER_NO_DEVFS bit set. If that
2669 * bit is not set, this function should not be called.
2671 void tty_register_device(struct tty_driver
*driver
, unsigned index
,
2672 struct device
*device
)
2675 dev_t dev
= MKDEV(driver
->major
, driver
->minor_start
) + index
;
2677 if (index
>= driver
->num
) {
2678 printk(KERN_ERR
"Attempt to register invalid tty line number "
2683 devfs_mk_cdev(dev
, S_IFCHR
| S_IRUSR
| S_IWUSR
,
2684 "%s%d", driver
->devfs_name
, index
+ driver
->name_base
);
2686 if (driver
->type
== TTY_DRIVER_TYPE_PTY
)
2687 pty_line_name(driver
, index
, name
);
2689 tty_line_name(driver
, index
, name
);
2690 class_simple_device_add(tty_class
, dev
, device
, name
);
2694 * tty_unregister_device - unregister a tty device
2695 * @driver: the tty driver that describes the tty device
2696 * @index: the index in the tty driver for this tty device
2698 * If a tty device is registered with a call to tty_register_device() then
2699 * this function must be made when the tty device is gone.
2701 void tty_unregister_device(struct tty_driver
*driver
, unsigned index
)
2703 devfs_remove("%s%d", driver
->devfs_name
, index
+ driver
->name_base
);
2704 class_simple_device_remove(MKDEV(driver
->major
, driver
->minor_start
) + index
);
2707 EXPORT_SYMBOL(tty_register_device
);
2708 EXPORT_SYMBOL(tty_unregister_device
);
2710 struct tty_driver
*alloc_tty_driver(int lines
)
2712 struct tty_driver
*driver
;
2714 driver
= kmalloc(sizeof(struct tty_driver
), GFP_KERNEL
);
2716 memset(driver
, 0, sizeof(struct tty_driver
));
2717 driver
->magic
= TTY_DRIVER_MAGIC
;
2718 driver
->num
= lines
;
2719 /* later we'll move allocation of tables here */
2724 void put_tty_driver(struct tty_driver
*driver
)
2729 void tty_set_operations(struct tty_driver
*driver
, struct tty_operations
*op
)
2731 driver
->open
= op
->open
;
2732 driver
->close
= op
->close
;
2733 driver
->write
= op
->write
;
2734 driver
->put_char
= op
->put_char
;
2735 driver
->flush_chars
= op
->flush_chars
;
2736 driver
->write_room
= op
->write_room
;
2737 driver
->chars_in_buffer
= op
->chars_in_buffer
;
2738 driver
->ioctl
= op
->ioctl
;
2739 driver
->set_termios
= op
->set_termios
;
2740 driver
->throttle
= op
->throttle
;
2741 driver
->unthrottle
= op
->unthrottle
;
2742 driver
->stop
= op
->stop
;
2743 driver
->start
= op
->start
;
2744 driver
->hangup
= op
->hangup
;
2745 driver
->break_ctl
= op
->break_ctl
;
2746 driver
->flush_buffer
= op
->flush_buffer
;
2747 driver
->set_ldisc
= op
->set_ldisc
;
2748 driver
->wait_until_sent
= op
->wait_until_sent
;
2749 driver
->send_xchar
= op
->send_xchar
;
2750 driver
->read_proc
= op
->read_proc
;
2751 driver
->write_proc
= op
->write_proc
;
2752 driver
->tiocmget
= op
->tiocmget
;
2753 driver
->tiocmset
= op
->tiocmset
;
2757 EXPORT_SYMBOL(alloc_tty_driver
);
2758 EXPORT_SYMBOL(put_tty_driver
);
2759 EXPORT_SYMBOL(tty_set_operations
);
2762 * Called by a tty driver to register itself.
2764 int tty_register_driver(struct tty_driver
*driver
)
2771 if (driver
->flags
& TTY_DRIVER_INSTALLED
)
2774 if (!(driver
->flags
& TTY_DRIVER_DEVPTS_MEM
)) {
2775 p
= kmalloc(driver
->num
* 3 * sizeof(void *), GFP_KERNEL
);
2778 memset(p
, 0, driver
->num
* 3 * sizeof(void *));
2781 if (!driver
->major
) {
2782 error
= alloc_chrdev_region(&dev
, driver
->minor_start
, driver
->num
,
2783 (char*)driver
->name
);
2785 driver
->major
= MAJOR(dev
);
2786 driver
->minor_start
= MINOR(dev
);
2789 dev
= MKDEV(driver
->major
, driver
->minor_start
);
2790 error
= register_chrdev_region(dev
, driver
->num
,
2791 (char*)driver
->name
);
2799 driver
->ttys
= (struct tty_struct
**)p
;
2800 driver
->termios
= (struct termios
**)(p
+ driver
->num
);
2801 driver
->termios_locked
= (struct termios
**)(p
+ driver
->num
* 2);
2803 driver
->ttys
= NULL
;
2804 driver
->termios
= NULL
;
2805 driver
->termios_locked
= NULL
;
2808 cdev_init(&driver
->cdev
, &tty_fops
);
2809 driver
->cdev
.owner
= driver
->owner
;
2810 error
= cdev_add(&driver
->cdev
, dev
, driver
->num
);
2812 cdev_del(&driver
->cdev
);
2813 unregister_chrdev_region(dev
, driver
->num
);
2814 driver
->ttys
= NULL
;
2815 driver
->termios
= driver
->termios_locked
= NULL
;
2820 if (!driver
->put_char
)
2821 driver
->put_char
= tty_default_put_char
;
2823 list_add(&driver
->tty_drivers
, &tty_drivers
);
2825 if ( !(driver
->flags
& TTY_DRIVER_NO_DEVFS
) ) {
2826 for(i
= 0; i
< driver
->num
; i
++)
2827 tty_register_device(driver
, i
, NULL
);
2829 proc_tty_register_driver(driver
);
2833 EXPORT_SYMBOL(tty_register_driver
);
2836 * Called by a tty driver to unregister itself.
2838 int tty_unregister_driver(struct tty_driver
*driver
)
2844 if (driver
->refcount
)
2847 unregister_chrdev_region(MKDEV(driver
->major
, driver
->minor_start
),
2850 list_del(&driver
->tty_drivers
);
2853 * Free the termios and termios_locked structures because
2854 * we don't want to get memory leaks when modular tty
2855 * drivers are removed from the kernel.
2857 for (i
= 0; i
< driver
->num
; i
++) {
2858 tp
= driver
->termios
[i
];
2860 driver
->termios
[i
] = NULL
;
2863 tp
= driver
->termios_locked
[i
];
2865 driver
->termios_locked
[i
] = NULL
;
2868 if (!(driver
->flags
& TTY_DRIVER_NO_DEVFS
))
2869 tty_unregister_device(driver
, i
);
2872 proc_tty_unregister_driver(driver
);
2873 driver
->ttys
= NULL
;
2874 driver
->termios
= driver
->termios_locked
= NULL
;
2876 cdev_del(&driver
->cdev
);
2880 EXPORT_SYMBOL(tty_unregister_driver
);
2884 * Initialize the console device. This is called *early*, so
2885 * we can't necessarily depend on lots of kernel help here.
2886 * Just do some early initializations, and do the complex setup
2889 void __init
console_init(void)
2893 /* Setup the default TTY line discipline. */
2894 (void) tty_register_ldisc(N_TTY
, &tty_ldisc_N_TTY
);
2897 * set up the console device so that later boot sequences can
2898 * inform about problems etc..
2900 #ifdef CONFIG_EARLY_PRINTK
2901 disable_early_printk();
2903 #ifdef CONFIG_SERIAL_68360
2904 /* This is not a console initcall. I know not what it's doing here.
2905 So I haven't moved it. dwmw2 */
2908 call
= __con_initcall_start
;
2909 while (call
< __con_initcall_end
) {
2916 extern int vty_init(void);
2919 static int __init
tty_class_init(void)
2921 tty_class
= class_simple_create(THIS_MODULE
, "tty");
2922 if (IS_ERR(tty_class
))
2923 return PTR_ERR(tty_class
);
2927 postcore_initcall(tty_class_init
);
2929 /* 3/2004 jmc: why do these devices exist? */
2931 static struct cdev tty_cdev
, console_cdev
;
2932 #ifdef CONFIG_UNIX98_PTYS
2933 static struct cdev ptmx_cdev
;
2936 static struct cdev vc0_cdev
;
2940 * Ok, now we can initialize the rest of the tty devices and can count
2941 * on memory allocations, interrupts etc..
2943 static int __init
tty_init(void)
2945 cdev_init(&tty_cdev
, &tty_fops
);
2946 if (cdev_add(&tty_cdev
, MKDEV(TTYAUX_MAJOR
, 0), 1) ||
2947 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 0), 1, "/dev/tty") < 0)
2948 panic("Couldn't register /dev/tty driver\n");
2949 devfs_mk_cdev(MKDEV(TTYAUX_MAJOR
, 0), S_IFCHR
|S_IRUGO
|S_IWUGO
, "tty");
2950 class_simple_device_add(tty_class
, MKDEV(TTYAUX_MAJOR
, 0), NULL
, "tty");
2952 cdev_init(&console_cdev
, &console_fops
);
2953 if (cdev_add(&console_cdev
, MKDEV(TTYAUX_MAJOR
, 1), 1) ||
2954 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 1), 1, "/dev/console") < 0)
2955 panic("Couldn't register /dev/console driver\n");
2956 devfs_mk_cdev(MKDEV(TTYAUX_MAJOR
, 1), S_IFCHR
|S_IRUSR
|S_IWUSR
, "console");
2957 class_simple_device_add(tty_class
, MKDEV(TTYAUX_MAJOR
, 1), NULL
, "console");
2959 #ifdef CONFIG_UNIX98_PTYS
2960 cdev_init(&ptmx_cdev
, &ptmx_fops
);
2961 if (cdev_add(&ptmx_cdev
, MKDEV(TTYAUX_MAJOR
, 2), 1) ||
2962 register_chrdev_region(MKDEV(TTYAUX_MAJOR
, 2), 1, "/dev/ptmx") < 0)
2963 panic("Couldn't register /dev/ptmx driver\n");
2964 devfs_mk_cdev(MKDEV(TTYAUX_MAJOR
, 2), S_IFCHR
|S_IRUGO
|S_IWUGO
, "ptmx");
2965 class_simple_device_add(tty_class
, MKDEV(TTYAUX_MAJOR
, 2), NULL
, "ptmx");
2969 cdev_init(&vc0_cdev
, &console_fops
);
2970 if (cdev_add(&vc0_cdev
, MKDEV(TTY_MAJOR
, 0), 1) ||
2971 register_chrdev_region(MKDEV(TTY_MAJOR
, 0), 1, "/dev/vc/0") < 0)
2972 panic("Couldn't register /dev/tty0 driver\n");
2973 devfs_mk_cdev(MKDEV(TTY_MAJOR
, 0), S_IFCHR
|S_IRUSR
|S_IWUSR
, "vc/0");
2974 class_simple_device_add(tty_class
, MKDEV(TTY_MAJOR
, 0), NULL
, "tty0");
2980 module_init(tty_init
);