MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / char / tty_io.c
blobadfa7ae7700d30484730e2c5b6408fa85fdfa46f
1 /*
2 * linux/drivers/char/tty_io.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
7 /*
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...
30 * -- TYT, 1/31/92
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>
84 #include <linux/kd.h>
85 #include <linux/mm.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>
97 #include <asm/uaccess.h>
98 #include <asm/system.h>
99 #include <asm/bitops.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,
119 .c_cc = INIT_C_CC
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
126 into this file */
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 #endif
141 extern void disable_early_printk(void);
143 static void initialize_tty_struct(struct tty_struct *tty);
145 static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
146 static ssize_t tty_write(struct file *, const char __user *, size_t, loff_t *);
147 ssize_t redirected_tty_write(struct file *, const char __user *, size_t, loff_t *);
148 static unsigned int tty_poll(struct file *, poll_table *);
149 static int tty_open(struct inode *, struct file *);
150 static int ptmx_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);
164 if (tty)
165 memset(tty, 0, sizeof(struct tty_struct));
166 return tty;
169 static inline void free_tty_struct(struct tty_struct *tty)
171 kfree(tty);
174 #define TTY_NUMBER(tty) ((tty)->index + (tty)->driver->name_base)
176 char *tty_name(struct tty_struct *tty, char *buf)
178 if (!tty) /* Hmm. NULL pointer. That's fun. */
179 strcpy(buf, "NULL tty");
180 else
181 strcpy(buf, tty->name);
182 return buf;
185 EXPORT_SYMBOL(tty_name);
187 inline int tty_paranoia_check(struct tty_struct *tty, struct inode *inode,
188 const char *routine)
190 #ifdef TTY_PARANOIA_CHECK
191 if (!tty) {
192 printk(KERN_WARNING
193 "null TTY for (%d:%d) in %s\n",
194 imajor(inode), iminor(inode), routine);
195 return 1;
197 if (tty->magic != TTY_MAGIC) {
198 printk(KERN_WARNING
199 "bad magic number for tty struct (%d:%d) in %s\n",
200 imajor(inode), iminor(inode), routine);
201 return 1;
203 #endif
204 return 0;
207 static int check_tty_count(struct tty_struct *tty, const char *routine)
209 #ifdef CHECK_TTY_COUNT
210 struct list_head *p;
211 int count = 0;
213 file_list_lock();
214 list_for_each(p, &tty->tty_files) {
215 count++;
217 file_list_unlock();
218 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
219 tty->driver->subtype == PTY_TYPE_SLAVE &&
220 tty->link && tty->link->count)
221 count++;
222 if (tty->count != count) {
223 printk(KERN_WARNING "Warning: dev (%s) tty->count(%d) "
224 "!= #fd's(%d) in %s\n",
225 tty->name, tty->count, count, routine);
226 return count;
228 #endif
229 return 0;
233 * This is probably overkill for real world processors but
234 * they are not on hot paths so a little discipline won't do
235 * any harm.
238 static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
240 down(&tty->termios_sem);
241 tty->termios->c_line = num;
242 up(&tty->termios_sem);
246 * This guards the refcounted line discipline lists. The lock
247 * must be taken with irqs off because there are hangup path
248 * callers who will do ldisc lookups and cannot sleep.
251 static spinlock_t tty_ldisc_lock = SPIN_LOCK_UNLOCKED;
252 static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
253 static struct tty_ldisc tty_ldiscs[NR_LDISCS]; /* line disc dispatch table */
255 int tty_register_ldisc(int disc, struct tty_ldisc *new_ldisc)
257 unsigned long flags;
258 int ret = 0;
260 if (disc < N_TTY || disc >= NR_LDISCS)
261 return -EINVAL;
263 spin_lock_irqsave(&tty_ldisc_lock, flags);
264 if (new_ldisc) {
265 tty_ldiscs[disc] = *new_ldisc;
266 tty_ldiscs[disc].num = disc;
267 tty_ldiscs[disc].flags |= LDISC_FLAG_DEFINED;
268 tty_ldiscs[disc].refcount = 0;
269 } else {
270 if(tty_ldiscs[disc].refcount)
271 ret = -EBUSY;
272 else
273 tty_ldiscs[disc].flags &= ~LDISC_FLAG_DEFINED;
275 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
277 return ret;
280 EXPORT_SYMBOL(tty_register_ldisc);
282 struct tty_ldisc *tty_ldisc_get(int disc)
284 unsigned long flags;
285 struct tty_ldisc *ld;
287 if (disc < N_TTY || disc >= NR_LDISCS)
288 return NULL;
290 spin_lock_irqsave(&tty_ldisc_lock, flags);
292 ld = &tty_ldiscs[disc];
293 /* Check the entry is defined */
294 if(ld->flags & LDISC_FLAG_DEFINED)
296 /* If the module is being unloaded we can't use it */
297 if (!try_module_get(ld->owner))
298 ld = NULL;
299 else /* lock it */
300 ld->refcount++;
302 else
303 ld = NULL;
304 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
305 return ld;
308 EXPORT_SYMBOL_GPL(tty_ldisc_get);
310 void tty_ldisc_put(int disc)
312 struct tty_ldisc *ld;
313 unsigned long flags;
315 if (disc < N_TTY || disc >= NR_LDISCS)
316 BUG();
318 spin_lock_irqsave(&tty_ldisc_lock, flags);
319 ld = &tty_ldiscs[disc];
320 if(ld->refcount == 0)
321 BUG();
322 ld->refcount --;
323 module_put(ld->owner);
324 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
327 EXPORT_SYMBOL_GPL(tty_ldisc_put);
329 void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld)
331 tty->ldisc = *ld;
332 tty->ldisc.refcount = 0;
336 * tty_ldisc_try - internal helper
337 * @tty: the tty
339 * Make a single attempt to grab and bump the refcount on
340 * the tty ldisc. Return 0 on failure or 1 on success. This is
341 * used to implement both the waiting and non waiting versions
342 * of tty_ldisc_ref
345 static int tty_ldisc_try(struct tty_struct *tty)
347 unsigned long flags;
348 struct tty_ldisc *ld;
349 int ret = 0;
351 spin_lock_irqsave(&tty_ldisc_lock, flags);
352 ld = &tty->ldisc;
353 if(test_bit(TTY_LDISC, &tty->flags))
355 ld->refcount++;
356 ret = 1;
358 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
359 return ret;
363 * tty_ldisc_ref_wait - wait for the tty ldisc
364 * @tty: tty device
366 * Dereference the line discipline for the terminal and take a
367 * reference to it. If the line discipline is in flux then
368 * wait patiently until it changes.
370 * Note: Must not be called from an IRQ/timer context. The caller
371 * must also be careful not to hold other locks that will deadlock
372 * against a discipline change, such as an existing ldisc reference
373 * (which we check for)
376 struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
378 /* wait_event is a macro */
379 wait_event(tty_ldisc_wait, tty_ldisc_try(tty));
380 if(tty->ldisc.refcount == 0)
381 printk(KERN_ERR "tty_ldisc_ref_wait\n");
382 return &tty->ldisc;
385 EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);
388 * tty_ldisc_ref - get the tty ldisc
389 * @tty: tty device
391 * Dereference the line discipline for the terminal and take a
392 * reference to it. If the line discipline is in flux then
393 * return NULL. Can be called from IRQ and timer functions.
396 struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
398 if(tty_ldisc_try(tty))
399 return &tty->ldisc;
400 return NULL;
403 EXPORT_SYMBOL_GPL(tty_ldisc_ref);
406 * tty_ldisc_deref - free a tty ldisc reference
407 * @ld: reference to free up
409 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
410 * be called in IRQ context.
413 void tty_ldisc_deref(struct tty_ldisc *ld)
415 unsigned long flags;
417 if(ld == NULL)
418 BUG();
420 spin_lock_irqsave(&tty_ldisc_lock, flags);
421 if(ld->refcount == 0)
422 printk(KERN_ERR "tty_ldisc_deref: no references.\n");
423 else
424 ld->refcount--;
425 if(ld->refcount == 0)
426 wake_up(&tty_ldisc_wait);
427 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
430 EXPORT_SYMBOL_GPL(tty_ldisc_deref);
433 * tty_ldisc_enable - allow ldisc use
434 * @tty: terminal to activate ldisc on
436 * Set the TTY_LDISC flag when the line discipline can be called
437 * again. Do neccessary wakeups for existing sleepers.
439 * Note: nobody should set this bit except via this function. Clearing
440 * directly is allowed.
443 static void tty_ldisc_enable(struct tty_struct *tty)
445 set_bit(TTY_LDISC, &tty->flags);
446 wake_up(&tty_ldisc_wait);
450 * tty_set_ldisc - set line discipline
451 * @tty: the terminal to set
452 * @ldisc: the line discipline
454 * Set the discipline of a tty line. Must be called from a process
455 * context.
458 static int tty_set_ldisc(struct tty_struct *tty, int ldisc)
460 int retval = 0;
461 struct tty_ldisc o_ldisc;
462 char buf[64];
463 int work;
464 unsigned long flags;
465 struct tty_ldisc *ld;
467 if ((ldisc < N_TTY) || (ldisc >= NR_LDISCS))
468 return -EINVAL;
470 restart:
472 if (tty->ldisc.num == ldisc)
473 return 0; /* We are already in the desired discipline */
475 ld = tty_ldisc_get(ldisc);
476 /* Eduardo Blanco <ejbs@cs.cs.com.uy> */
477 /* Cyrus Durgin <cider@speakeasy.org> */
478 if (ld == NULL) {
479 request_module("tty-ldisc-%d", ldisc);
480 ld = tty_ldisc_get(ldisc);
482 if (ld == NULL)
483 return -EINVAL;
485 o_ldisc = tty->ldisc;
487 tty_wait_until_sent(tty, 0);
490 * Make sure we don't change while someone holds a
491 * reference to the line discipline. The TTY_LDISC bit
492 * prevents anyone taking a reference once it is clear.
493 * We need the lock to avoid racing reference takers.
496 spin_lock_irqsave(&tty_ldisc_lock, flags);
497 if(tty->ldisc.refcount)
499 /* Free the new ldisc we grabbed. Must drop the lock
500 first. */
501 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
502 tty_ldisc_put(ldisc);
504 * There are several reasons we may be busy, including
505 * random momentary I/O traffic. We must therefore
506 * retry. We could distinguish between blocking ops
507 * and retries if we made tty_ldisc_wait() smarter. That
508 * is up for discussion.
510 if(wait_event_interruptible(tty_ldisc_wait, tty->ldisc.refcount == 0) < 0)
511 return -ERESTARTSYS;
512 goto restart;
514 clear_bit(TTY_LDISC, &tty->flags);
515 clear_bit(TTY_DONT_FLIP, &tty->flags);
516 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
519 * From this point on we know nobody has an ldisc
520 * usage reference, nor can they obtain one until
521 * we say so later on.
524 work = cancel_delayed_work(&tty->flip.work);
526 * Wait for ->hangup_work and ->flip.work handlers to terminate
529 flush_scheduled_work();
530 /* Shutdown the current discipline. */
531 if (tty->ldisc.close)
532 (tty->ldisc.close)(tty);
534 /* Now set up the new line discipline. */
535 tty_ldisc_assign(tty, ld);
536 tty_set_termios_ldisc(tty, ldisc);
537 if (tty->ldisc.open)
538 retval = (tty->ldisc.open)(tty);
539 if (retval < 0) {
540 tty_ldisc_put(ldisc);
541 /* There is an outstanding reference here so this is safe */
542 tty_ldisc_assign(tty, tty_ldisc_get(o_ldisc.num));
543 tty_set_termios_ldisc(tty, tty->ldisc.num);
544 if (tty->ldisc.open && (tty->ldisc.open(tty) < 0)) {
545 tty_ldisc_put(o_ldisc.num);
546 /* This driver is always present */
547 tty_ldisc_assign(tty, tty_ldisc_get(N_TTY));
548 tty_set_termios_ldisc(tty, N_TTY);
549 if (tty->ldisc.open) {
550 int r = tty->ldisc.open(tty);
552 if (r < 0)
553 panic("Couldn't open N_TTY ldisc for "
554 "%s --- error %d.",
555 tty_name(tty, buf), r);
559 /* At this point we hold a reference to the new ldisc and a
560 a reference to the old ldisc. If we ended up flipping back
561 to the existing ldisc we have two references to it */
563 if (tty->ldisc.num != o_ldisc.num && tty->driver->set_ldisc)
564 tty->driver->set_ldisc(tty);
566 tty_ldisc_put(o_ldisc.num);
569 * Allow ldisc referencing to occur as soon as the driver
570 * ldisc callback completes.
573 tty_ldisc_enable(tty);
575 /* Restart it in case no characters kick it off. Safe if
576 already running */
577 if(work)
578 schedule_delayed_work(&tty->flip.work, 1);
579 return retval;
583 * This routine returns a tty driver structure, given a device number
585 struct tty_driver *get_tty_driver(dev_t device, int *index)
587 struct tty_driver *p;
589 list_for_each_entry(p, &tty_drivers, tty_drivers) {
590 dev_t base = MKDEV(p->major, p->minor_start);
591 if (device < base || device >= base + p->num)
592 continue;
593 *index = device - base;
594 return p;
596 return NULL;
600 * If we try to write to, or set the state of, a terminal and we're
601 * not in the foreground, send a SIGTTOU. If the signal is blocked or
602 * ignored, go ahead and perform the operation. (POSIX 7.2)
604 int tty_check_change(struct tty_struct * tty)
606 if (current->signal->tty != tty)
607 return 0;
608 if (tty->pgrp <= 0) {
609 printk(KERN_WARNING "tty_check_change: tty->pgrp <= 0!\n");
610 return 0;
612 if (process_group(current) == tty->pgrp)
613 return 0;
614 if (is_ignored(SIGTTOU))
615 return 0;
616 if (is_orphaned_pgrp(process_group(current)))
617 return -EIO;
618 (void) kill_pg(process_group(current), SIGTTOU, 1);
619 return -ERESTARTSYS;
622 EXPORT_SYMBOL(tty_check_change);
624 static ssize_t hung_up_tty_read(struct file * file, char __user * buf,
625 size_t count, loff_t *ppos)
627 return 0;
630 static ssize_t hung_up_tty_write(struct file * file, const char __user * buf,
631 size_t count, loff_t *ppos)
633 return -EIO;
636 /* No kernel lock held - none needed ;) */
637 static unsigned int hung_up_tty_poll(struct file * filp, poll_table * wait)
639 return POLLIN | POLLOUT | POLLERR | POLLHUP | POLLRDNORM | POLLWRNORM;
642 static int hung_up_tty_ioctl(struct inode * inode, struct file * file,
643 unsigned int cmd, unsigned long arg)
645 return cmd == TIOCSPGRP ? -ENOTTY : -EIO;
648 static struct file_operations tty_fops = {
649 .llseek = no_llseek,
650 .read = tty_read,
651 .write = tty_write,
652 .poll = tty_poll,
653 .ioctl = tty_ioctl,
654 .open = tty_open,
655 .release = tty_release,
656 .fasync = tty_fasync,
659 #ifdef CONFIG_UNIX98_PTYS
660 static struct file_operations ptmx_fops = {
661 .llseek = no_llseek,
662 .read = tty_read,
663 .write = tty_write,
664 .poll = tty_poll,
665 .ioctl = tty_ioctl,
666 .open = ptmx_open,
667 .release = tty_release,
668 .fasync = tty_fasync,
670 #endif
672 static struct file_operations console_fops = {
673 .llseek = no_llseek,
674 .read = tty_read,
675 .write = redirected_tty_write,
676 .poll = tty_poll,
677 .ioctl = tty_ioctl,
678 .open = tty_open,
679 .release = tty_release,
680 .fasync = tty_fasync,
683 static struct file_operations hung_up_tty_fops = {
684 .llseek = no_llseek,
685 .read = hung_up_tty_read,
686 .write = hung_up_tty_write,
687 .poll = hung_up_tty_poll,
688 .ioctl = hung_up_tty_ioctl,
689 .release = tty_release,
692 static spinlock_t redirect_lock = SPIN_LOCK_UNLOCKED;
693 static struct file *redirect;
696 * tty_wakeup - request more data
697 * @tty: terminal
699 * Internal and external helper for wakeups of tty. This function
700 * informs the line discipline if present that the driver is ready
701 * to receive more output data.
704 void tty_wakeup(struct tty_struct *tty)
706 struct tty_ldisc *ld;
708 if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
709 ld = tty_ldisc_ref(tty);
710 if(ld) {
711 if(ld->write_wakeup)
712 ld->write_wakeup(tty);
713 tty_ldisc_deref(ld);
716 wake_up_interruptible(&tty->write_wait);
719 EXPORT_SYMBOL_GPL(tty_wakeup);
722 * tty_ldisc_flush - flush line discipline queue
723 * @tty: tty
725 * Flush the line discipline queue (if any) for this tty. If there
726 * is no line discipline active this is a no-op.
729 void tty_ldisc_flush(struct tty_struct *tty)
731 struct tty_ldisc *ld = tty_ldisc_ref(tty);
732 if(ld) {
733 if(ld->flush_buffer)
734 ld->flush_buffer(tty);
735 tty_ldisc_deref(ld);
739 EXPORT_SYMBOL_GPL(tty_ldisc_flush);
742 * This can be called by the "eventd" kernel thread. That is process synchronous,
743 * but doesn't hold any locks, so we need to make sure we have the appropriate
744 * locks for what we're doing..
746 void do_tty_hangup(void *data)
748 struct tty_struct *tty = (struct tty_struct *) data;
749 struct file * cons_filp = NULL;
750 struct file *filp, *f = NULL;
751 struct task_struct *p;
752 struct tty_ldisc *ld;
753 int closecount = 0, n;
755 if (!tty)
756 return;
758 /* inuse_filps is protected by the single kernel lock */
759 lock_kernel();
761 spin_lock(&redirect_lock);
762 if (redirect && redirect->private_data == tty) {
763 f = redirect;
764 redirect = NULL;
766 spin_unlock(&redirect_lock);
768 check_tty_count(tty, "do_tty_hangup");
769 file_list_lock();
770 /* This breaks for file handles being sent over AF_UNIX sockets ? */
771 list_for_each_entry(filp, &tty->tty_files, f_list) {
772 if (filp->f_op->write == redirected_tty_write)
773 cons_filp = filp;
774 if (filp->f_op->write != tty_write)
775 continue;
776 closecount++;
777 tty_fasync(-1, filp, 0); /* can't block */
778 filp->f_op = &hung_up_tty_fops;
780 file_list_unlock();
782 /* FIXME! What are the locking issues here? This may me overdoing things..
783 * this question is especially important now that we've removed the irqlock. */
785 ld = tty_ldisc_ref(tty);
786 if(ld != NULL) /* We may have no line discipline at this point */
788 if (ld->flush_buffer)
789 ld->flush_buffer(tty);
790 if (tty->driver->flush_buffer)
791 tty->driver->flush_buffer(tty);
792 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
793 ld->write_wakeup)
794 ld->write_wakeup(tty);
795 if (ld->hangup)
796 ld->hangup(tty);
799 /* FIXME: Once we trust the LDISC code better we can wait here for
800 ldisc completion and fix the driver call race */
802 wake_up_interruptible(&tty->write_wait);
803 wake_up_interruptible(&tty->read_wait);
806 * Shutdown the current line discipline, and reset it to
807 * N_TTY.
809 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS)
811 down(&tty->termios_sem);
812 *tty->termios = tty->driver->init_termios;
813 up(&tty->termios_sem);
816 /* Defer ldisc switch */
817 /* tty_deferred_ldisc_switch(N_TTY);
819 This should get done automatically when the port closes and
820 tty_release is called */
822 read_lock(&tasklist_lock);
823 if (tty->session > 0) {
824 do_each_task_pid(tty->session, PIDTYPE_SID, p) {
825 if (p->signal->tty == tty)
826 p->signal->tty = NULL;
827 if (!p->signal->leader)
828 continue;
829 send_group_sig_info(SIGHUP, SEND_SIG_PRIV, p);
830 send_group_sig_info(SIGCONT, SEND_SIG_PRIV, p);
831 if (tty->pgrp > 0)
832 p->signal->tty_old_pgrp = tty->pgrp;
833 } while_each_task_pid(tty->session, PIDTYPE_SID, p);
835 read_unlock(&tasklist_lock);
837 tty->flags = 0;
838 tty->session = 0;
839 tty->pgrp = -1;
840 tty->ctrl_status = 0;
842 * If one of the devices matches a console pointer, we
843 * cannot just call hangup() because that will cause
844 * tty->count and state->count to go out of sync.
845 * So we just call close() the right number of times.
847 if (cons_filp) {
848 if (tty->driver->close)
849 for (n = 0; n < closecount; n++)
850 tty->driver->close(tty, cons_filp);
851 } else if (tty->driver->hangup)
852 (tty->driver->hangup)(tty);
854 /* We don't want to have driver/ldisc interactions beyond
855 the ones we did here. The driver layer expects no
856 calls after ->hangup() from the ldisc side. However we
857 can't yet guarantee all that */
859 set_bit(TTY_HUPPED, &tty->flags);
860 if (ld) {
861 tty_ldisc_enable(tty);
862 tty_ldisc_deref(ld);
864 unlock_kernel();
865 if (f)
866 fput(f);
869 void tty_hangup(struct tty_struct * tty)
871 #ifdef TTY_DEBUG_HANGUP
872 char buf[64];
874 printk(KERN_DEBUG "%s hangup...\n", tty_name(tty, buf));
875 #endif
876 schedule_work(&tty->hangup_work);
879 EXPORT_SYMBOL(tty_hangup);
881 void tty_vhangup(struct tty_struct * tty)
883 #ifdef TTY_DEBUG_HANGUP
884 char buf[64];
886 printk(KERN_DEBUG "%s vhangup...\n", tty_name(tty, buf));
887 #endif
888 do_tty_hangup((void *) tty);
890 EXPORT_SYMBOL(tty_vhangup);
892 int tty_hung_up_p(struct file * filp)
894 return (filp->f_op == &hung_up_tty_fops);
897 EXPORT_SYMBOL(tty_hung_up_p);
900 * This function is typically called only by the session leader, when
901 * it wants to disassociate itself from its controlling tty.
903 * It performs the following functions:
904 * (1) Sends a SIGHUP and SIGCONT to the foreground process group
905 * (2) Clears the tty from being controlling the session
906 * (3) Clears the controlling tty for all processes in the
907 * session group.
909 * The argument on_exit is set to 1 if called when a process is
910 * exiting; it is 0 if called by the ioctl TIOCNOTTY.
912 void disassociate_ctty(int on_exit)
914 struct tty_struct *tty;
915 struct task_struct *p;
916 int tty_pgrp = -1;
918 lock_kernel();
920 tty = current->signal->tty;
921 if (tty) {
922 tty_pgrp = tty->pgrp;
923 if (on_exit && tty->driver->type != TTY_DRIVER_TYPE_PTY)
924 tty_vhangup(tty);
925 } else {
926 if (current->signal->tty_old_pgrp) {
927 kill_pg(current->signal->tty_old_pgrp, SIGHUP, on_exit);
928 kill_pg(current->signal->tty_old_pgrp, SIGCONT, on_exit);
930 unlock_kernel();
931 return;
933 if (tty_pgrp > 0) {
934 kill_pg(tty_pgrp, SIGHUP, on_exit);
935 if (!on_exit)
936 kill_pg(tty_pgrp, SIGCONT, on_exit);
939 current->signal->tty_old_pgrp = 0;
940 tty->session = 0;
941 tty->pgrp = -1;
943 read_lock(&tasklist_lock);
944 do_each_task_pid(current->signal->session, PIDTYPE_SID, p) {
945 p->signal->tty = NULL;
946 } while_each_task_pid(current->signal->session, PIDTYPE_SID, p);
947 read_unlock(&tasklist_lock);
948 unlock_kernel();
951 void stop_tty(struct tty_struct *tty)
953 if (tty->stopped)
954 return;
955 tty->stopped = 1;
956 if (tty->link && tty->link->packet) {
957 tty->ctrl_status &= ~TIOCPKT_START;
958 tty->ctrl_status |= TIOCPKT_STOP;
959 wake_up_interruptible(&tty->link->read_wait);
961 if (tty->driver->stop)
962 (tty->driver->stop)(tty);
965 EXPORT_SYMBOL(stop_tty);
967 void start_tty(struct tty_struct *tty)
969 if (!tty->stopped || tty->flow_stopped)
970 return;
971 tty->stopped = 0;
972 if (tty->link && tty->link->packet) {
973 tty->ctrl_status &= ~TIOCPKT_STOP;
974 tty->ctrl_status |= TIOCPKT_START;
975 wake_up_interruptible(&tty->link->read_wait);
977 if (tty->driver->start)
978 (tty->driver->start)(tty);
980 /* If we have a running line discipline it may need kicking */
981 tty_wakeup(tty);
982 wake_up_interruptible(&tty->write_wait);
985 EXPORT_SYMBOL(start_tty);
987 static ssize_t tty_read(struct file * file, char __user * buf, size_t count,
988 loff_t *ppos)
990 int i;
991 struct tty_struct * tty;
992 struct inode *inode;
993 struct tty_ldisc *ld;
995 tty = (struct tty_struct *)file->private_data;
996 inode = file->f_dentry->d_inode;
997 if (tty_paranoia_check(tty, inode, "tty_read"))
998 return -EIO;
999 if (!tty || (test_bit(TTY_IO_ERROR, &tty->flags)))
1000 return -EIO;
1002 /* We want to wait for the line discipline to sort out in this
1003 situation */
1004 ld = tty_ldisc_ref_wait(tty);
1005 lock_kernel();
1006 if (ld->read)
1007 i = (ld->read)(tty,file,buf,count);
1008 else
1009 i = -EIO;
1010 tty_ldisc_deref(ld);
1011 unlock_kernel();
1012 if (i > 0)
1013 inode->i_atime = CURRENT_TIME;
1014 return i;
1018 * Split writes up in sane blocksizes to avoid
1019 * denial-of-service type attacks
1021 static inline ssize_t do_tty_write(
1022 ssize_t (*write)(struct tty_struct *, struct file *, const unsigned char __user *, size_t),
1023 struct tty_struct *tty,
1024 struct file *file,
1025 const unsigned char __user *buf,
1026 size_t count)
1028 ssize_t ret = 0, written = 0;
1030 if (down_interruptible(&tty->atomic_write)) {
1031 return -ERESTARTSYS;
1033 if ( test_bit(TTY_NO_WRITE_SPLIT, &tty->flags) ) {
1034 lock_kernel();
1035 written = write(tty, file, buf, count);
1036 unlock_kernel();
1037 } else {
1038 for (;;) {
1039 unsigned long size = max((unsigned long)PAGE_SIZE*2, 16384UL);
1040 if (size > count)
1041 size = count;
1042 lock_kernel();
1043 ret = write(tty, file, buf, size);
1044 unlock_kernel();
1045 if (ret <= 0)
1046 break;
1047 written += ret;
1048 buf += ret;
1049 count -= ret;
1050 if (!count)
1051 break;
1052 ret = -ERESTARTSYS;
1053 if (signal_pending(current))
1054 break;
1055 cond_resched();
1058 if (written) {
1059 file->f_dentry->d_inode->i_mtime = CURRENT_TIME;
1060 ret = written;
1062 up(&tty->atomic_write);
1063 return ret;
1067 static ssize_t tty_write(struct file * file, const char __user * buf, size_t count,
1068 loff_t *ppos)
1070 struct tty_struct * tty;
1071 struct inode *inode = file->f_dentry->d_inode;
1072 ssize_t ret;
1073 struct tty_ldisc *ld;
1075 tty = (struct tty_struct *)file->private_data;
1076 if (tty_paranoia_check(tty, inode, "tty_write"))
1077 return -EIO;
1078 if (!tty || !tty->driver->write || (test_bit(TTY_IO_ERROR, &tty->flags)))
1079 return -EIO;
1081 ld = tty_ldisc_ref_wait(tty);
1082 if (!ld->write)
1083 ret = -EIO;
1084 else
1085 ret = do_tty_write(ld->write, tty, file,
1086 (const unsigned char __user *)buf, count);
1087 tty_ldisc_deref(ld);
1088 return ret;
1091 ssize_t redirected_tty_write(struct file * file, const char __user * buf, size_t count,
1092 loff_t *ppos)
1094 struct file *p = NULL;
1096 spin_lock(&redirect_lock);
1097 if (redirect) {
1098 get_file(redirect);
1099 p = redirect;
1101 spin_unlock(&redirect_lock);
1103 if (p) {
1104 ssize_t res;
1105 res = vfs_write(p, buf, count, &p->f_pos);
1106 fput(p);
1107 return res;
1110 return tty_write(file, buf, count, ppos);
1113 static char ptychar[] = "pqrstuvwxyzabcde";
1115 static inline void pty_line_name(struct tty_driver *driver, int index, char *p)
1117 int i = index + driver->name_base;
1118 /* ->name is initialized to "ttyp", but "tty" is expected */
1119 sprintf(p, "%s%c%x",
1120 driver->subtype == PTY_TYPE_SLAVE ? "tty" : driver->name,
1121 ptychar[i >> 4 & 0xf], i & 0xf);
1124 static inline void tty_line_name(struct tty_driver *driver, int index, char *p)
1126 sprintf(p, "%s%d", driver->name, index + driver->name_base);
1130 * WSH 06/09/97: Rewritten to remove races and properly clean up after a
1131 * failed open. The new code protects the open with a semaphore, so it's
1132 * really quite straightforward. The semaphore locking can probably be
1133 * relaxed for the (most common) case of reopening a tty.
1135 static int init_dev(struct tty_driver *driver, int idx,
1136 struct tty_struct **ret_tty)
1138 struct tty_struct *tty, *o_tty;
1139 struct termios *tp, **tp_loc, *o_tp, **o_tp_loc;
1140 struct termios *ltp, **ltp_loc, *o_ltp, **o_ltp_loc;
1141 int retval=0;
1144 * Check whether we need to acquire the tty semaphore to avoid
1145 * race conditions. For now, play it safe.
1147 down(&tty_sem);
1149 /* check whether we're reopening an existing tty */
1150 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1151 tty = devpts_get_tty(idx);
1152 if (tty && driver->subtype == PTY_TYPE_MASTER)
1153 tty = tty->link;
1154 } else {
1155 tty = driver->ttys[idx];
1157 if (tty) goto fast_track;
1160 * First time open is complex, especially for PTY devices.
1161 * This code guarantees that either everything succeeds and the
1162 * TTY is ready for operation, or else the table slots are vacated
1163 * and the allocated memory released. (Except that the termios
1164 * and locked termios may be retained.)
1167 if (!try_module_get(driver->owner)) {
1168 retval = -ENODEV;
1169 goto end_init;
1172 o_tty = NULL;
1173 tp = o_tp = NULL;
1174 ltp = o_ltp = NULL;
1176 tty = alloc_tty_struct();
1177 if(!tty)
1178 goto fail_no_mem;
1179 initialize_tty_struct(tty);
1180 tty->driver = driver;
1181 tty->index = idx;
1182 tty_line_name(driver, idx, tty->name);
1184 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1185 tp_loc = &tty->termios;
1186 ltp_loc = &tty->termios_locked;
1187 } else {
1188 tp_loc = &driver->termios[idx];
1189 ltp_loc = &driver->termios_locked[idx];
1192 if (!*tp_loc) {
1193 tp = (struct termios *) kmalloc(sizeof(struct termios),
1194 GFP_KERNEL);
1195 if (!tp)
1196 goto free_mem_out;
1197 *tp = driver->init_termios;
1200 if (!*ltp_loc) {
1201 ltp = (struct termios *) kmalloc(sizeof(struct termios),
1202 GFP_KERNEL);
1203 if (!ltp)
1204 goto free_mem_out;
1205 memset(ltp, 0, sizeof(struct termios));
1208 if (driver->type == TTY_DRIVER_TYPE_PTY) {
1209 o_tty = alloc_tty_struct();
1210 if (!o_tty)
1211 goto free_mem_out;
1212 initialize_tty_struct(o_tty);
1213 o_tty->driver = driver->other;
1214 o_tty->index = idx;
1215 tty_line_name(driver->other, idx, o_tty->name);
1217 if (driver->flags & TTY_DRIVER_DEVPTS_MEM) {
1218 o_tp_loc = &o_tty->termios;
1219 o_ltp_loc = &o_tty->termios_locked;
1220 } else {
1221 o_tp_loc = &driver->other->termios[idx];
1222 o_ltp_loc = &driver->other->termios_locked[idx];
1225 if (!*o_tp_loc) {
1226 o_tp = (struct termios *)
1227 kmalloc(sizeof(struct termios), GFP_KERNEL);
1228 if (!o_tp)
1229 goto free_mem_out;
1230 *o_tp = driver->other->init_termios;
1233 if (!*o_ltp_loc) {
1234 o_ltp = (struct termios *)
1235 kmalloc(sizeof(struct termios), GFP_KERNEL);
1236 if (!o_ltp)
1237 goto free_mem_out;
1238 memset(o_ltp, 0, sizeof(struct termios));
1242 * Everything allocated ... set up the o_tty structure.
1244 if (!(driver->other->flags & TTY_DRIVER_DEVPTS_MEM)) {
1245 driver->other->ttys[idx] = o_tty;
1247 if (!*o_tp_loc)
1248 *o_tp_loc = o_tp;
1249 if (!*o_ltp_loc)
1250 *o_ltp_loc = o_ltp;
1251 o_tty->termios = *o_tp_loc;
1252 o_tty->termios_locked = *o_ltp_loc;
1253 driver->other->refcount++;
1254 if (driver->subtype == PTY_TYPE_MASTER)
1255 o_tty->count++;
1257 /* Establish the links in both directions */
1258 tty->link = o_tty;
1259 o_tty->link = tty;
1263 * All structures have been allocated, so now we install them.
1264 * Failures after this point use release_mem to clean up, so
1265 * there's no need to null out the local pointers.
1267 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1268 driver->ttys[idx] = tty;
1271 if (!*tp_loc)
1272 *tp_loc = tp;
1273 if (!*ltp_loc)
1274 *ltp_loc = ltp;
1275 tty->termios = *tp_loc;
1276 tty->termios_locked = *ltp_loc;
1277 driver->refcount++;
1278 tty->count++;
1281 * Structures all installed ... call the ldisc open routines.
1282 * If we fail here just call release_mem to clean up. No need
1283 * to decrement the use counts, as release_mem doesn't care.
1286 if (tty->ldisc.open) {
1287 retval = (tty->ldisc.open)(tty);
1288 if (retval)
1289 goto release_mem_out;
1291 if (o_tty && o_tty->ldisc.open) {
1292 retval = (o_tty->ldisc.open)(o_tty);
1293 if (retval) {
1294 if (tty->ldisc.close)
1295 (tty->ldisc.close)(tty);
1296 goto release_mem_out;
1298 tty_ldisc_enable(o_tty);
1300 tty_ldisc_enable(tty);
1301 goto success;
1304 * This fast open can be used if the tty is already open.
1305 * No memory is allocated, and the only failures are from
1306 * attempting to open a closing tty or attempting multiple
1307 * opens on a pty master.
1309 fast_track:
1310 if (test_bit(TTY_CLOSING, &tty->flags)) {
1311 retval = -EIO;
1312 goto end_init;
1314 if (driver->type == TTY_DRIVER_TYPE_PTY &&
1315 driver->subtype == PTY_TYPE_MASTER) {
1317 * special case for PTY masters: only one open permitted,
1318 * and the slave side open count is incremented as well.
1320 if (tty->count) {
1321 retval = -EIO;
1322 goto end_init;
1324 tty->link->count++;
1326 tty->count++;
1327 tty->driver = driver; /* N.B. why do this every time?? */
1329 /* FIXME */
1330 if(!test_bit(TTY_LDISC, &tty->flags))
1331 printk(KERN_ERR "init_dev but no ldisc\n");
1332 success:
1333 *ret_tty = tty;
1335 /* All paths come through here to release the semaphore */
1336 end_init:
1337 up(&tty_sem);
1338 return retval;
1340 /* Release locally allocated memory ... nothing placed in slots */
1341 free_mem_out:
1342 if (o_tp)
1343 kfree(o_tp);
1344 if (o_tty)
1345 free_tty_struct(o_tty);
1346 if (ltp)
1347 kfree(ltp);
1348 if (tp)
1349 kfree(tp);
1350 free_tty_struct(tty);
1352 fail_no_mem:
1353 module_put(driver->owner);
1354 retval = -ENOMEM;
1355 goto end_init;
1357 /* call the tty release_mem routine to clean out this slot */
1358 release_mem_out:
1359 printk(KERN_INFO "init_dev: ldisc open failed, "
1360 "clearing slot %d\n", idx);
1361 release_mem(tty, idx);
1362 goto end_init;
1366 * Releases memory associated with a tty structure, and clears out the
1367 * driver table slots.
1369 static void release_mem(struct tty_struct *tty, int idx)
1371 struct tty_struct *o_tty;
1372 struct termios *tp;
1373 int devpts = tty->driver->flags & TTY_DRIVER_DEVPTS_MEM;
1375 if ((o_tty = tty->link) != NULL) {
1376 if (!devpts)
1377 o_tty->driver->ttys[idx] = NULL;
1378 if (o_tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
1379 tp = o_tty->termios;
1380 if (!devpts)
1381 o_tty->driver->termios[idx] = NULL;
1382 kfree(tp);
1384 tp = o_tty->termios_locked;
1385 if (!devpts)
1386 o_tty->driver->termios_locked[idx] = NULL;
1387 kfree(tp);
1389 o_tty->magic = 0;
1390 o_tty->driver->refcount--;
1391 file_list_lock();
1392 list_del_init(&o_tty->tty_files);
1393 file_list_unlock();
1394 free_tty_struct(o_tty);
1397 if (!devpts)
1398 tty->driver->ttys[idx] = NULL;
1399 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
1400 tp = tty->termios;
1401 if (!devpts)
1402 tty->driver->termios[idx] = NULL;
1403 kfree(tp);
1405 tp = tty->termios_locked;
1406 if (!devpts)
1407 tty->driver->termios_locked[idx] = NULL;
1408 kfree(tp);
1411 tty->magic = 0;
1412 tty->driver->refcount--;
1413 file_list_lock();
1414 list_del_init(&tty->tty_files);
1415 file_list_unlock();
1416 module_put(tty->driver->owner);
1417 free_tty_struct(tty);
1421 * Even releasing the tty structures is a tricky business.. We have
1422 * to be very careful that the structures are all released at the
1423 * same time, as interrupts might otherwise get the wrong pointers.
1425 * WSH 09/09/97: rewritten to avoid some nasty race conditions that could
1426 * lead to double frees or releasing memory still in use.
1428 static void release_dev(struct file * filp)
1430 struct tty_struct *tty, *o_tty;
1431 int pty_master, tty_closing, o_tty_closing, do_sleep;
1432 int devpts_master, devpts;
1433 int idx;
1434 char buf[64];
1435 unsigned long flags;
1437 tty = (struct tty_struct *)filp->private_data;
1438 if (tty_paranoia_check(tty, filp->f_dentry->d_inode, "release_dev"))
1439 return;
1441 check_tty_count(tty, "release_dev");
1443 tty_fasync(-1, filp, 0);
1445 idx = tty->index;
1446 pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1447 tty->driver->subtype == PTY_TYPE_MASTER);
1448 devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0;
1449 devpts_master = pty_master && devpts;
1450 o_tty = tty->link;
1452 #ifdef TTY_PARANOIA_CHECK
1453 if (idx < 0 || idx >= tty->driver->num) {
1454 printk(KERN_DEBUG "release_dev: bad idx when trying to "
1455 "free (%s)\n", tty->name);
1456 return;
1458 if (!(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1459 if (tty != tty->driver->ttys[idx]) {
1460 printk(KERN_DEBUG "release_dev: driver.table[%d] not tty "
1461 "for (%s)\n", idx, tty->name);
1462 return;
1464 if (tty->termios != tty->driver->termios[idx]) {
1465 printk(KERN_DEBUG "release_dev: driver.termios[%d] not termios "
1466 "for (%s)\n",
1467 idx, tty->name);
1468 return;
1470 if (tty->termios_locked != tty->driver->termios_locked[idx]) {
1471 printk(KERN_DEBUG "release_dev: driver.termios_locked[%d] not "
1472 "termios_locked for (%s)\n",
1473 idx, tty->name);
1474 return;
1477 #endif
1479 #ifdef TTY_DEBUG_HANGUP
1480 printk(KERN_DEBUG "release_dev of %s (tty count=%d)...",
1481 tty_name(tty, buf), tty->count);
1482 #endif
1484 #ifdef TTY_PARANOIA_CHECK
1485 if (tty->driver->other &&
1486 !(tty->driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
1487 if (o_tty != tty->driver->other->ttys[idx]) {
1488 printk(KERN_DEBUG "release_dev: other->table[%d] "
1489 "not o_tty for (%s)\n",
1490 idx, tty->name);
1491 return;
1493 if (o_tty->termios != tty->driver->other->termios[idx]) {
1494 printk(KERN_DEBUG "release_dev: other->termios[%d] "
1495 "not o_termios for (%s)\n",
1496 idx, tty->name);
1497 return;
1499 if (o_tty->termios_locked !=
1500 tty->driver->other->termios_locked[idx]) {
1501 printk(KERN_DEBUG "release_dev: other->termios_locked["
1502 "%d] not o_termios_locked for (%s)\n",
1503 idx, tty->name);
1504 return;
1506 if (o_tty->link != tty) {
1507 printk(KERN_DEBUG "release_dev: bad pty pointers\n");
1508 return;
1511 #endif
1512 if (tty->driver->close)
1513 tty->driver->close(tty, filp);
1516 * Sanity check: if tty->count is going to zero, there shouldn't be
1517 * any waiters on tty->read_wait or tty->write_wait. We test the
1518 * wait queues and kick everyone out _before_ actually starting to
1519 * close. This ensures that we won't block while releasing the tty
1520 * structure.
1522 * The test for the o_tty closing is necessary, since the master and
1523 * slave sides may close in any order. If the slave side closes out
1524 * first, its count will be one, since the master side holds an open.
1525 * Thus this test wouldn't be triggered at the time the slave closes,
1526 * so we do it now.
1528 * Note that it's possible for the tty to be opened again while we're
1529 * flushing out waiters. By recalculating the closing flags before
1530 * each iteration we avoid any problems.
1532 while (1) {
1533 tty_closing = tty->count <= 1;
1534 o_tty_closing = o_tty &&
1535 (o_tty->count <= (pty_master ? 1 : 0));
1536 do_sleep = 0;
1538 if (tty_closing) {
1539 if (waitqueue_active(&tty->read_wait)) {
1540 wake_up(&tty->read_wait);
1541 do_sleep++;
1543 if (waitqueue_active(&tty->write_wait)) {
1544 wake_up(&tty->write_wait);
1545 do_sleep++;
1548 if (o_tty_closing) {
1549 if (waitqueue_active(&o_tty->read_wait)) {
1550 wake_up(&o_tty->read_wait);
1551 do_sleep++;
1553 if (waitqueue_active(&o_tty->write_wait)) {
1554 wake_up(&o_tty->write_wait);
1555 do_sleep++;
1558 if (!do_sleep)
1559 break;
1561 printk(KERN_WARNING "release_dev: %s: read/write wait queue "
1562 "active!\n", tty_name(tty, buf));
1563 schedule();
1567 * The closing flags are now consistent with the open counts on
1568 * both sides, and we've completed the last operation that could
1569 * block, so it's safe to proceed with closing.
1571 if (pty_master) {
1572 if (--o_tty->count < 0) {
1573 printk(KERN_WARNING "release_dev: bad pty slave count "
1574 "(%d) for %s\n",
1575 o_tty->count, tty_name(o_tty, buf));
1576 o_tty->count = 0;
1579 if (--tty->count < 0) {
1580 printk(KERN_WARNING "release_dev: bad tty->count (%d) for %s\n",
1581 tty->count, tty_name(tty, buf));
1582 tty->count = 0;
1586 * We've decremented tty->count, so we need to remove this file
1587 * descriptor off the tty->tty_files list; this serves two
1588 * purposes:
1589 * - check_tty_count sees the correct number of file descriptors
1590 * associated with this tty.
1591 * - do_tty_hangup no longer sees this file descriptor as
1592 * something that needs to be handled for hangups.
1594 file_kill(filp);
1595 filp->private_data = NULL;
1598 * Perform some housekeeping before deciding whether to return.
1600 * Set the TTY_CLOSING flag if this was the last open. In the
1601 * case of a pty we may have to wait around for the other side
1602 * to close, and TTY_CLOSING makes sure we can't be reopened.
1604 if(tty_closing)
1605 set_bit(TTY_CLOSING, &tty->flags);
1606 if(o_tty_closing)
1607 set_bit(TTY_CLOSING, &o_tty->flags);
1610 * If _either_ side is closing, make sure there aren't any
1611 * processes that still think tty or o_tty is their controlling
1612 * tty.
1614 if (tty_closing || o_tty_closing) {
1615 struct task_struct *p;
1617 read_lock(&tasklist_lock);
1618 do_each_task_pid(tty->session, PIDTYPE_SID, p) {
1619 p->signal->tty = NULL;
1620 } while_each_task_pid(tty->session, PIDTYPE_SID, p);
1621 if (o_tty)
1622 do_each_task_pid(o_tty->session, PIDTYPE_SID, p) {
1623 p->signal->tty = NULL;
1624 } while_each_task_pid(o_tty->session, PIDTYPE_SID, p);
1625 read_unlock(&tasklist_lock);
1628 /* check whether both sides are closing ... */
1629 if (!tty_closing || (o_tty && !o_tty_closing))
1630 return;
1632 #ifdef TTY_DEBUG_HANGUP
1633 printk(KERN_DEBUG "freeing tty structure...");
1634 #endif
1636 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
1637 * kill any delayed work. As this is the final close it does not
1638 * race with the set_ldisc code path.
1640 clear_bit(TTY_LDISC, &tty->flags);
1641 clear_bit(TTY_DONT_FLIP, &tty->flags);
1642 cancel_delayed_work(&tty->flip.work);
1645 * Wait for ->hangup_work and ->flip.work handlers to terminate
1648 flush_scheduled_work();
1651 * Wait for any short term users (we know they are just driver
1652 * side waiters as the file is closing so user count on the file
1653 * side is zero.
1655 spin_lock_irqsave(&tty_ldisc_lock, flags);
1656 while(tty->ldisc.refcount)
1658 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
1659 wait_event(tty_ldisc_wait, tty->ldisc.refcount == 0);
1660 spin_lock_irqsave(&tty_ldisc_lock, flags);
1662 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
1664 * Shutdown the current line discipline, and reset it to N_TTY.
1665 * N.B. why reset ldisc when we're releasing the memory??
1667 * FIXME: this MUST get fixed for the new reflocking
1669 if (tty->ldisc.close)
1670 (tty->ldisc.close)(tty);
1671 tty_ldisc_put(tty->ldisc.num);
1674 * Switch the line discipline back
1676 tty_ldisc_assign(tty, tty_ldisc_get(N_TTY));
1677 tty_set_termios_ldisc(tty,N_TTY);
1678 if (o_tty) {
1679 /* FIXME: could o_tty be in setldisc here ? */
1680 clear_bit(TTY_LDISC, &o_tty->flags);
1681 if (o_tty->ldisc.close)
1682 (o_tty->ldisc.close)(o_tty);
1683 tty_ldisc_put(o_tty->ldisc.num);
1684 tty_ldisc_assign(o_tty, tty_ldisc_get(N_TTY));
1685 tty_set_termios_ldisc(o_tty,N_TTY);
1688 * The release_mem function takes care of the details of clearing
1689 * the slots and preserving the termios structure.
1691 release_mem(tty, idx);
1693 #ifdef CONFIG_UNIX98_PTYS
1694 /* Make this pty number available for reallocation */
1695 if (devpts) {
1696 down(&allocated_ptys_lock);
1697 idr_remove(&allocated_ptys, idx);
1698 up(&allocated_ptys_lock);
1700 #endif
1705 * tty_open and tty_release keep up the tty count that contains the
1706 * number of opens done on a tty. We cannot use the inode-count, as
1707 * different inodes might point to the same tty.
1709 * Open-counting is needed for pty masters, as well as for keeping
1710 * track of serial lines: DTR is dropped when the last close happens.
1711 * (This is not done solely through tty->count, now. - Ted 1/27/92)
1713 * The termios state of a pty is reset on first open so that
1714 * settings don't persist across reuse.
1716 static int tty_open(struct inode * inode, struct file * filp)
1718 struct tty_struct *tty;
1719 int noctty, retval;
1720 struct tty_driver *driver;
1721 int index;
1722 dev_t device = inode->i_rdev;
1723 unsigned short saved_flags = filp->f_flags;
1725 nonseekable_open(inode, filp);
1727 retry_open:
1728 noctty = filp->f_flags & O_NOCTTY;
1729 index = -1;
1730 retval = 0;
1732 if (device == MKDEV(TTYAUX_MAJOR,0)) {
1733 if (!current->signal->tty)
1734 return -ENXIO;
1735 driver = current->signal->tty->driver;
1736 index = current->signal->tty->index;
1737 filp->f_flags |= O_NONBLOCK; /* Don't let /dev/tty block */
1738 /* noctty = 1; */
1739 goto got_driver;
1741 #ifdef CONFIG_VT
1742 if (device == MKDEV(TTY_MAJOR,0)) {
1743 extern int fg_console;
1744 extern struct tty_driver *console_driver;
1745 driver = console_driver;
1746 index = fg_console;
1747 noctty = 1;
1748 goto got_driver;
1750 #endif
1751 if (device == MKDEV(TTYAUX_MAJOR,1)) {
1752 driver = console_device(&index);
1753 if (driver) {
1754 /* Don't let /dev/console block */
1755 filp->f_flags |= O_NONBLOCK;
1756 noctty = 1;
1757 goto got_driver;
1759 return -ENODEV;
1762 driver = get_tty_driver(device, &index);
1763 if (!driver)
1764 return -ENODEV;
1765 got_driver:
1766 retval = init_dev(driver, index, &tty);
1767 if (retval)
1768 return retval;
1770 filp->private_data = tty;
1771 file_move(filp, &tty->tty_files);
1772 check_tty_count(tty, "tty_open");
1773 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
1774 tty->driver->subtype == PTY_TYPE_MASTER)
1775 noctty = 1;
1776 #ifdef TTY_DEBUG_HANGUP
1777 printk(KERN_DEBUG "opening %s...", tty->name);
1778 #endif
1779 if (!retval) {
1780 if (tty->driver->open)
1781 retval = tty->driver->open(tty, filp);
1782 else
1783 retval = -ENODEV;
1785 filp->f_flags = saved_flags;
1787 if (!retval && test_bit(TTY_EXCLUSIVE, &tty->flags) && !capable(CAP_SYS_ADMIN))
1788 retval = -EBUSY;
1790 if (retval) {
1791 #ifdef TTY_DEBUG_HANGUP
1792 printk(KERN_DEBUG "error %d in opening %s...", retval,
1793 tty->name);
1794 #endif
1795 release_dev(filp);
1796 if (retval != -ERESTARTSYS)
1797 return retval;
1798 if (signal_pending(current))
1799 return retval;
1800 schedule();
1802 * Need to reset f_op in case a hangup happened.
1804 if (filp->f_op == &hung_up_tty_fops)
1805 filp->f_op = &tty_fops;
1806 goto retry_open;
1808 if (!noctty &&
1809 current->signal->leader &&
1810 !current->signal->tty &&
1811 tty->session == 0) {
1812 task_lock(current);
1813 current->signal->tty = tty;
1814 task_unlock(current);
1815 current->signal->tty_old_pgrp = 0;
1816 tty->session = current->signal->session;
1817 tty->pgrp = process_group(current);
1819 return 0;
1822 #ifdef CONFIG_UNIX98_PTYS
1823 static int ptmx_open(struct inode * inode, struct file * filp)
1825 struct tty_struct *tty;
1826 int retval;
1827 int index;
1828 int idr_ret;
1830 nonseekable_open(inode, filp);
1832 /* find a device that is not in use. */
1833 down(&allocated_ptys_lock);
1834 if (!idr_pre_get(&allocated_ptys, GFP_KERNEL)) {
1835 up(&allocated_ptys_lock);
1836 return -ENOMEM;
1838 idr_ret = idr_get_new(&allocated_ptys, NULL, &index);
1839 if (idr_ret < 0) {
1840 up(&allocated_ptys_lock);
1841 if (idr_ret == -EAGAIN)
1842 return -ENOMEM;
1843 return -EIO;
1845 if (index >= pty_limit) {
1846 idr_remove(&allocated_ptys, index);
1847 up(&allocated_ptys_lock);
1848 return -EIO;
1850 up(&allocated_ptys_lock);
1852 retval = init_dev(ptm_driver, index, &tty);
1853 if (retval)
1854 goto out;
1856 set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */
1857 filp->private_data = tty;
1858 file_move(filp, &tty->tty_files);
1860 retval = -ENOMEM;
1861 if (devpts_pty_new(tty->link))
1862 goto out1;
1864 check_tty_count(tty, "tty_open");
1865 retval = ptm_driver->open(tty, filp);
1866 if (!retval)
1867 return 0;
1868 out1:
1869 release_dev(filp);
1870 out:
1871 down(&allocated_ptys_lock);
1872 idr_remove(&allocated_ptys, index);
1873 up(&allocated_ptys_lock);
1874 return retval;
1876 #endif
1878 static int tty_release(struct inode * inode, struct file * filp)
1880 lock_kernel();
1881 release_dev(filp);
1882 unlock_kernel();
1883 return 0;
1886 /* No kernel lock held - fine */
1887 static unsigned int tty_poll(struct file * filp, poll_table * wait)
1889 struct tty_struct * tty;
1890 struct tty_ldisc *ld;
1891 int ret = 0;
1893 tty = (struct tty_struct *)filp->private_data;
1894 if (tty_paranoia_check(tty, filp->f_dentry->d_inode, "tty_poll"))
1895 return 0;
1897 ld = tty_ldisc_ref_wait(tty);
1898 if (ld->poll)
1899 ret = (ld->poll)(tty, filp, wait);
1900 tty_ldisc_deref(ld);
1901 return ret;
1904 static int tty_fasync(int fd, struct file * filp, int on)
1906 struct tty_struct * tty;
1907 int retval;
1909 tty = (struct tty_struct *)filp->private_data;
1910 if (tty_paranoia_check(tty, filp->f_dentry->d_inode, "tty_fasync"))
1911 return 0;
1913 retval = fasync_helper(fd, filp, on, &tty->fasync);
1914 if (retval <= 0)
1915 return retval;
1917 if (on) {
1918 if (!waitqueue_active(&tty->read_wait))
1919 tty->minimum_to_wake = 1;
1920 retval = f_setown(filp, (-tty->pgrp) ? : current->pid, 0);
1921 if (retval)
1922 return retval;
1923 } else {
1924 if (!tty->fasync && !waitqueue_active(&tty->read_wait))
1925 tty->minimum_to_wake = N_TTY_BUF_SIZE;
1927 return 0;
1930 static int tiocsti(struct tty_struct *tty, char __user *p)
1932 char ch, mbz = 0;
1933 struct tty_ldisc *ld;
1935 if ((current->signal->tty != tty) && !capable(CAP_SYS_ADMIN))
1936 return -EPERM;
1937 if (get_user(ch, p))
1938 return -EFAULT;
1939 ld = tty_ldisc_ref_wait(tty);
1940 ld->receive_buf(tty, &ch, &mbz, 1);
1941 tty_ldisc_deref(ld);
1942 return 0;
1945 static int tiocgwinsz(struct tty_struct *tty, struct winsize __user * arg)
1947 if (copy_to_user(arg, &tty->winsize, sizeof(*arg)))
1948 return -EFAULT;
1949 return 0;
1952 static int tiocswinsz(struct tty_struct *tty, struct tty_struct *real_tty,
1953 struct winsize __user * arg)
1955 struct winsize tmp_ws;
1957 if (copy_from_user(&tmp_ws, arg, sizeof(*arg)))
1958 return -EFAULT;
1959 if (!memcmp(&tmp_ws, &tty->winsize, sizeof(*arg)))
1960 return 0;
1961 #ifdef CONFIG_VT
1962 if (tty->driver->type == TTY_DRIVER_TYPE_CONSOLE) {
1963 unsigned int currcons = tty->index;
1964 int rc;
1966 acquire_console_sem();
1967 rc = vc_resize(currcons, tmp_ws.ws_col, tmp_ws.ws_row);
1968 release_console_sem();
1969 if (rc)
1970 return -ENXIO;
1972 #endif
1973 if (tty->pgrp > 0)
1974 kill_pg(tty->pgrp, SIGWINCH, 1);
1975 if ((real_tty->pgrp != tty->pgrp) && (real_tty->pgrp > 0))
1976 kill_pg(real_tty->pgrp, SIGWINCH, 1);
1977 tty->winsize = tmp_ws;
1978 real_tty->winsize = tmp_ws;
1979 return 0;
1982 static int tioccons(struct file *file)
1984 if (file->f_op->write == redirected_tty_write) {
1985 struct file *f;
1986 if (!capable(CAP_SYS_ADMIN))
1987 return -EPERM;
1988 spin_lock(&redirect_lock);
1989 f = redirect;
1990 redirect = NULL;
1991 spin_unlock(&redirect_lock);
1992 if (f)
1993 fput(f);
1994 return 0;
1996 spin_lock(&redirect_lock);
1997 if (redirect) {
1998 spin_unlock(&redirect_lock);
1999 return -EBUSY;
2001 get_file(file);
2002 redirect = file;
2003 spin_unlock(&redirect_lock);
2004 return 0;
2008 static int fionbio(struct file *file, int __user *p)
2010 int nonblock;
2012 if (get_user(nonblock, p))
2013 return -EFAULT;
2015 if (nonblock)
2016 file->f_flags |= O_NONBLOCK;
2017 else
2018 file->f_flags &= ~O_NONBLOCK;
2019 return 0;
2022 static int tiocsctty(struct tty_struct *tty, int arg)
2024 task_t *p;
2026 if (current->signal->leader &&
2027 (current->signal->session == tty->session))
2028 return 0;
2030 * The process must be a session leader and
2031 * not have a controlling tty already.
2033 if (!current->signal->leader || current->signal->tty)
2034 return -EPERM;
2035 if (tty->session > 0) {
2037 * This tty is already the controlling
2038 * tty for another session group!
2040 if ((arg == 1) && capable(CAP_SYS_ADMIN)) {
2042 * Steal it away
2045 read_lock(&tasklist_lock);
2046 do_each_task_pid(tty->session, PIDTYPE_SID, p) {
2047 p->signal->tty = NULL;
2048 } while_each_task_pid(tty->session, PIDTYPE_SID, p);
2049 read_unlock(&tasklist_lock);
2050 } else
2051 return -EPERM;
2053 task_lock(current);
2054 current->signal->tty = tty;
2055 task_unlock(current);
2056 current->signal->tty_old_pgrp = 0;
2057 tty->session = current->signal->session;
2058 tty->pgrp = process_group(current);
2059 return 0;
2062 static int tiocgpgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2065 * (tty == real_tty) is a cheap way of
2066 * testing if the tty is NOT a master pty.
2068 if (tty == real_tty && current->signal->tty != real_tty)
2069 return -ENOTTY;
2070 return put_user(real_tty->pgrp, p);
2073 static int tiocspgrp(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2075 pid_t pgrp;
2076 int retval = tty_check_change(real_tty);
2078 if (retval == -EIO)
2079 return -ENOTTY;
2080 if (retval)
2081 return retval;
2082 if (!current->signal->tty ||
2083 (current->signal->tty != real_tty) ||
2084 (real_tty->session != current->signal->session))
2085 return -ENOTTY;
2086 if (get_user(pgrp, p))
2087 return -EFAULT;
2088 if (pgrp < 0)
2089 return -EINVAL;
2090 if (session_of_pgrp(pgrp) != current->signal->session)
2091 return -EPERM;
2092 real_tty->pgrp = pgrp;
2093 return 0;
2096 static int tiocgsid(struct tty_struct *tty, struct tty_struct *real_tty, pid_t __user *p)
2099 * (tty == real_tty) is a cheap way of
2100 * testing if the tty is NOT a master pty.
2102 if (tty == real_tty && current->signal->tty != real_tty)
2103 return -ENOTTY;
2104 if (real_tty->session <= 0)
2105 return -ENOTTY;
2106 return put_user(real_tty->session, p);
2109 static int tiocsetd(struct tty_struct *tty, int __user *p)
2111 int ldisc;
2113 if (get_user(ldisc, p))
2114 return -EFAULT;
2115 return tty_set_ldisc(tty, ldisc);
2118 static int send_break(struct tty_struct *tty, int duration)
2120 set_current_state(TASK_INTERRUPTIBLE);
2122 tty->driver->break_ctl(tty, -1);
2123 if (!signal_pending(current))
2124 schedule_timeout(duration);
2125 tty->driver->break_ctl(tty, 0);
2126 if (signal_pending(current))
2127 return -EINTR;
2128 return 0;
2131 static int
2132 tty_tiocmget(struct tty_struct *tty, struct file *file, int __user *p)
2134 int retval = -EINVAL;
2136 if (tty->driver->tiocmget) {
2137 retval = tty->driver->tiocmget(tty, file);
2139 if (retval >= 0)
2140 retval = put_user(retval, p);
2142 return retval;
2145 static int
2146 tty_tiocmset(struct tty_struct *tty, struct file *file, unsigned int cmd,
2147 unsigned __user *p)
2149 int retval = -EINVAL;
2151 if (tty->driver->tiocmset) {
2152 unsigned int set, clear, val;
2154 retval = get_user(val, p);
2155 if (retval)
2156 return retval;
2158 set = clear = 0;
2159 switch (cmd) {
2160 case TIOCMBIS:
2161 set = val;
2162 break;
2163 case TIOCMBIC:
2164 clear = val;
2165 break;
2166 case TIOCMSET:
2167 set = val;
2168 clear = ~val;
2169 break;
2172 set &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2173 clear &= TIOCM_DTR|TIOCM_RTS|TIOCM_OUT1|TIOCM_OUT2|TIOCM_LOOP;
2175 retval = tty->driver->tiocmset(tty, file, set, clear);
2177 return retval;
2181 * Split this up, as gcc can choke on it otherwise..
2183 int tty_ioctl(struct inode * inode, struct file * file,
2184 unsigned int cmd, unsigned long arg)
2186 struct tty_struct *tty, *real_tty;
2187 void __user *p = (void __user *)arg;
2188 int retval;
2189 struct tty_ldisc *ld;
2191 tty = (struct tty_struct *)file->private_data;
2192 if (tty_paranoia_check(tty, inode, "tty_ioctl"))
2193 return -EINVAL;
2195 real_tty = tty;
2196 if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
2197 tty->driver->subtype == PTY_TYPE_MASTER)
2198 real_tty = tty->link;
2201 * Break handling by driver
2203 if (!tty->driver->break_ctl) {
2204 switch(cmd) {
2205 case TIOCSBRK:
2206 case TIOCCBRK:
2207 if (tty->driver->ioctl)
2208 return tty->driver->ioctl(tty, file, cmd, arg);
2209 return -EINVAL;
2211 /* These two ioctl's always return success; even if */
2212 /* the driver doesn't support them. */
2213 case TCSBRK:
2214 case TCSBRKP:
2215 if (!tty->driver->ioctl)
2216 return 0;
2217 retval = tty->driver->ioctl(tty, file, cmd, arg);
2218 if (retval == -ENOIOCTLCMD)
2219 retval = 0;
2220 return retval;
2225 * Factor out some common prep work
2227 switch (cmd) {
2228 case TIOCSETD:
2229 case TIOCSBRK:
2230 case TIOCCBRK:
2231 case TCSBRK:
2232 case TCSBRKP:
2233 retval = tty_check_change(tty);
2234 if (retval)
2235 return retval;
2236 if (cmd != TIOCCBRK) {
2237 tty_wait_until_sent(tty, 0);
2238 if (signal_pending(current))
2239 return -EINTR;
2241 break;
2244 switch (cmd) {
2245 case TIOCSTI:
2246 return tiocsti(tty, p);
2247 case TIOCGWINSZ:
2248 return tiocgwinsz(tty, p);
2249 case TIOCSWINSZ:
2250 return tiocswinsz(tty, real_tty, p);
2251 case TIOCCONS:
2252 return real_tty!=tty ? -EINVAL : tioccons(file);
2253 case FIONBIO:
2254 return fionbio(file, p);
2255 case TIOCEXCL:
2256 set_bit(TTY_EXCLUSIVE, &tty->flags);
2257 return 0;
2258 case TIOCNXCL:
2259 clear_bit(TTY_EXCLUSIVE, &tty->flags);
2260 return 0;
2261 case TIOCNOTTY:
2262 if (current->signal->tty != tty)
2263 return -ENOTTY;
2264 if (current->signal->leader)
2265 disassociate_ctty(0);
2266 task_lock(current);
2267 current->signal->tty = NULL;
2268 task_unlock(current);
2269 return 0;
2270 case TIOCSCTTY:
2271 return tiocsctty(tty, arg);
2272 case TIOCGPGRP:
2273 return tiocgpgrp(tty, real_tty, p);
2274 case TIOCSPGRP:
2275 return tiocspgrp(tty, real_tty, p);
2276 case TIOCGSID:
2277 return tiocgsid(tty, real_tty, p);
2278 case TIOCGETD:
2279 /* FIXME: check this is ok */
2280 return put_user(tty->ldisc.num, (int __user *)p);
2281 case TIOCSETD:
2282 return tiocsetd(tty, p);
2283 #ifdef CONFIG_VT
2284 case TIOCLINUX:
2285 return tioclinux(tty, arg);
2286 #endif
2288 * Break handling
2290 case TIOCSBRK: /* Turn break on, unconditionally */
2291 tty->driver->break_ctl(tty, -1);
2292 return 0;
2294 case TIOCCBRK: /* Turn break off, unconditionally */
2295 tty->driver->break_ctl(tty, 0);
2296 return 0;
2297 case TCSBRK: /* SVID version: non-zero arg --> no break */
2299 * XXX is the above comment correct, or the
2300 * code below correct? Is this ioctl used at
2301 * all by anyone?
2303 if (!arg)
2304 return send_break(tty, HZ/4);
2305 return 0;
2306 case TCSBRKP: /* support for POSIX tcsendbreak() */
2307 return send_break(tty, arg ? arg*(HZ/10) : HZ/4);
2309 case TIOCMGET:
2310 return tty_tiocmget(tty, file, p);
2312 case TIOCMSET:
2313 case TIOCMBIC:
2314 case TIOCMBIS:
2315 return tty_tiocmset(tty, file, cmd, p);
2317 if (tty->driver->ioctl) {
2318 retval = (tty->driver->ioctl)(tty, file, cmd, arg);
2319 if (retval != -ENOIOCTLCMD)
2320 return retval;
2322 ld = tty_ldisc_ref_wait(tty);
2323 retval = -EINVAL;
2324 if (ld->ioctl) {
2325 retval = ld->ioctl(tty, file, cmd, arg);
2326 if (retval == -ENOIOCTLCMD)
2327 retval = -EINVAL;
2329 tty_ldisc_deref(ld);
2330 return retval;
2335 * This implements the "Secure Attention Key" --- the idea is to
2336 * prevent trojan horses by killing all processes associated with this
2337 * tty when the user hits the "Secure Attention Key". Required for
2338 * super-paranoid applications --- see the Orange Book for more details.
2340 * This code could be nicer; ideally it should send a HUP, wait a few
2341 * seconds, then send a INT, and then a KILL signal. But you then
2342 * have to coordinate with the init process, since all processes associated
2343 * with the current tty must be dead before the new getty is allowed
2344 * to spawn.
2346 * Now, if it would be correct ;-/ The current code has a nasty hole -
2347 * it doesn't catch files in flight. We may send the descriptor to ourselves
2348 * via AF_UNIX socket, close it and later fetch from socket. FIXME.
2350 * Nasty bug: do_SAK is being called in interrupt context. This can
2351 * deadlock. We punt it up to process context. AKPM - 16Mar2001
2353 static void __do_SAK(void *arg)
2355 #ifdef TTY_SOFT_SAK
2356 tty_hangup(tty);
2357 #else
2358 struct tty_struct *tty = arg;
2359 struct task_struct *p;
2360 int session;
2361 int i;
2362 struct file *filp;
2363 struct tty_ldisc *disc;
2365 if (!tty)
2366 return;
2367 session = tty->session;
2369 /* We don't want an ldisc switch during this */
2370 disc = tty_ldisc_ref(tty);
2371 if (disc && disc->flush_buffer)
2372 disc->flush_buffer(tty);
2373 tty_ldisc_deref(disc);
2375 if (tty->driver->flush_buffer)
2376 tty->driver->flush_buffer(tty);
2378 read_lock(&tasklist_lock);
2379 do_each_task_pid(session, PIDTYPE_SID, p) {
2380 if (p->signal->tty == tty || session > 0) {
2381 printk(KERN_NOTICE "SAK: killed process %d"
2382 " (%s): p->signal->session==tty->session\n",
2383 p->pid, p->comm);
2384 send_sig(SIGKILL, p, 1);
2385 continue;
2387 task_lock(p);
2388 if (p->files) {
2389 spin_lock(&p->files->file_lock);
2390 for (i=0; i < p->files->max_fds; i++) {
2391 filp = fcheck_files(p->files, i);
2392 if (!filp)
2393 continue;
2394 if (filp->f_op->read == tty_read &&
2395 filp->private_data == tty) {
2396 printk(KERN_NOTICE "SAK: killed process %d"
2397 " (%s): fd#%d opened to the tty\n",
2398 p->pid, p->comm, i);
2399 send_sig(SIGKILL, p, 1);
2400 break;
2403 spin_unlock(&p->files->file_lock);
2405 task_unlock(p);
2406 } while_each_task_pid(session, PIDTYPE_SID, p);
2407 read_unlock(&tasklist_lock);
2408 #endif
2412 * The tq handling here is a little racy - tty->SAK_work may already be queued.
2413 * Fortunately we don't need to worry, because if ->SAK_work is already queued,
2414 * the values which we write to it will be identical to the values which it
2415 * already has. --akpm
2417 void do_SAK(struct tty_struct *tty)
2419 if (!tty)
2420 return;
2421 PREPARE_WORK(&tty->SAK_work, __do_SAK, tty);
2422 schedule_work(&tty->SAK_work);
2425 EXPORT_SYMBOL(do_SAK);
2428 * This routine is called out of the software interrupt to flush data
2429 * from the flip buffer to the line discipline.
2432 static void flush_to_ldisc(void *private_)
2434 struct tty_struct *tty = (struct tty_struct *) private_;
2435 unsigned char *cp;
2436 char *fp;
2437 int count;
2438 unsigned long flags;
2439 struct tty_ldisc *disc;
2441 disc = tty_ldisc_ref(tty);
2442 if (disc == NULL) /* !TTY_LDISC */
2443 return;
2445 if (test_bit(TTY_DONT_FLIP, &tty->flags)) {
2447 * Do it after the next timer tick:
2449 schedule_delayed_work(&tty->flip.work, 1);
2450 goto out;
2452 spin_lock_irqsave(&tty->read_lock, flags);
2453 if (tty->flip.buf_num) {
2454 cp = tty->flip.char_buf + TTY_FLIPBUF_SIZE;
2455 fp = tty->flip.flag_buf + TTY_FLIPBUF_SIZE;
2456 tty->flip.buf_num = 0;
2457 tty->flip.char_buf_ptr = tty->flip.char_buf;
2458 tty->flip.flag_buf_ptr = tty->flip.flag_buf;
2459 } else {
2460 cp = tty->flip.char_buf;
2461 fp = tty->flip.flag_buf;
2462 tty->flip.buf_num = 1;
2463 tty->flip.char_buf_ptr = tty->flip.char_buf + TTY_FLIPBUF_SIZE;
2464 tty->flip.flag_buf_ptr = tty->flip.flag_buf + TTY_FLIPBUF_SIZE;
2466 count = tty->flip.count;
2467 tty->flip.count = 0;
2468 spin_unlock_irqrestore(&tty->read_lock, flags);
2470 disc->receive_buf(tty, cp, fp, count);
2471 out:
2472 tty_ldisc_deref(disc);
2476 * Call the ldisc flush directly from a driver. This function may
2477 * return an error and need retrying by the user.
2480 int tty_push_data(struct tty_struct *tty, unsigned char *cp, unsigned char *fp, int count)
2482 int ret = 0;
2483 struct tty_ldisc *disc;
2485 disc = tty_ldisc_ref(tty);
2486 if(test_bit(TTY_DONT_FLIP, &tty->flags))
2487 ret = -EAGAIN;
2488 else if(disc == NULL)
2489 ret = -EIO;
2490 else
2491 disc->receive_buf(tty, cp, fp, count);
2492 tty_ldisc_deref(disc);
2493 return ret;
2498 * Routine which returns the baud rate of the tty
2500 * Note that the baud_table needs to be kept in sync with the
2501 * include/asm/termbits.h file.
2503 static int baud_table[] = {
2504 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
2505 9600, 19200, 38400, 57600, 115200, 230400, 460800,
2506 #ifdef __sparc__
2507 76800, 153600, 307200, 614400, 921600
2508 #else
2509 500000, 576000, 921600, 1000000, 1152000, 1500000, 2000000,
2510 2500000, 3000000, 3500000, 4000000
2511 #endif
2514 static int n_baud_table = ARRAY_SIZE(baud_table);
2517 * tty_termios_baud_rate
2518 * @termios: termios structure
2520 * Convert termios baud rate data into a speed. This should be called
2521 * with the termios lock held if this termios is a terminal termios
2522 * structure. May change the termios data.
2525 int tty_termios_baud_rate(struct termios *termios)
2527 unsigned int cbaud;
2529 cbaud = termios->c_cflag & CBAUD;
2531 if (cbaud & CBAUDEX) {
2532 cbaud &= ~CBAUDEX;
2534 if (cbaud < 1 || cbaud + 15 > n_baud_table)
2535 termios->c_cflag &= ~CBAUDEX;
2536 else
2537 cbaud += 15;
2539 return baud_table[cbaud];
2542 EXPORT_SYMBOL(tty_termios_baud_rate);
2545 * tty_get_baud_rate - get tty bit rates
2546 * @tty: tty to query
2548 * Returns the baud rate as an integer for this terminal. The
2549 * termios lock must be held by the caller and the terminal bit
2550 * flags may be updated.
2553 int tty_get_baud_rate(struct tty_struct *tty)
2555 int baud = tty_termios_baud_rate(tty->termios);
2557 if (baud == 38400 && tty->alt_speed) {
2558 if (!tty->warned) {
2559 printk(KERN_WARNING "Use of setserial/setrocket to "
2560 "set SPD_* flags is deprecated\n");
2561 tty->warned = 1;
2563 baud = tty->alt_speed;
2566 return baud;
2569 EXPORT_SYMBOL(tty_get_baud_rate);
2572 * tty_flip_buffer_push - terminal
2573 * @tty: tty to push
2575 * Queue a push of the terminal flip buffers to the line discipline. This
2576 * function must not be called from IRQ context if tty->low_latency is set.
2578 * In the event of the queue being busy for flipping the work will be
2579 * held off and retried later.
2582 void tty_flip_buffer_push(struct tty_struct *tty)
2584 if (tty->low_latency)
2585 flush_to_ldisc((void *) tty);
2586 else
2587 schedule_delayed_work(&tty->flip.work, 1);
2590 EXPORT_SYMBOL(tty_flip_buffer_push);
2593 * This subroutine initializes a tty structure.
2595 static void initialize_tty_struct(struct tty_struct *tty)
2597 memset(tty, 0, sizeof(struct tty_struct));
2598 tty->magic = TTY_MAGIC;
2599 tty_ldisc_assign(tty, tty_ldisc_get(N_TTY));
2600 tty->pgrp = -1;
2601 tty->flip.char_buf_ptr = tty->flip.char_buf;
2602 tty->flip.flag_buf_ptr = tty->flip.flag_buf;
2603 INIT_WORK(&tty->flip.work, flush_to_ldisc, tty);
2604 init_MUTEX(&tty->flip.pty_sem);
2605 init_MUTEX(&tty->termios_sem);
2606 init_waitqueue_head(&tty->write_wait);
2607 init_waitqueue_head(&tty->read_wait);
2608 INIT_WORK(&tty->hangup_work, do_tty_hangup, tty);
2609 sema_init(&tty->atomic_read, 1);
2610 sema_init(&tty->atomic_write, 1);
2611 spin_lock_init(&tty->read_lock);
2612 INIT_LIST_HEAD(&tty->tty_files);
2613 INIT_WORK(&tty->SAK_work, NULL, NULL);
2617 * The default put_char routine if the driver did not define one.
2619 static void tty_default_put_char(struct tty_struct *tty, unsigned char ch)
2621 tty->driver->write(tty, 0, &ch, 1);
2624 static struct class_simple *tty_class;
2627 * tty_register_device - register a tty device
2628 * @driver: the tty driver that describes the tty device
2629 * @index: the index in the tty driver for this tty device
2630 * @device: a struct device that is associated with this tty device.
2631 * This field is optional, if there is no known struct device for this
2632 * tty device it can be set to NULL safely.
2634 * This call is required to be made to register an individual tty device if
2635 * the tty driver's flags have the TTY_DRIVER_NO_DEVFS bit set. If that
2636 * bit is not set, this function should not be called.
2638 void tty_register_device(struct tty_driver *driver, unsigned index,
2639 struct device *device)
2641 char name[64];
2642 dev_t dev = MKDEV(driver->major, driver->minor_start) + index;
2644 if (index >= driver->num) {
2645 printk(KERN_ERR "Attempt to register invalid tty line number "
2646 " (%d).\n", index);
2647 return;
2650 devfs_mk_cdev(dev, S_IFCHR | S_IRUSR | S_IWUSR,
2651 "%s%d", driver->devfs_name, index + driver->name_base);
2653 if (driver->type == TTY_DRIVER_TYPE_PTY)
2654 pty_line_name(driver, index, name);
2655 else
2656 tty_line_name(driver, index, name);
2657 class_simple_device_add(tty_class, dev, device, name);
2661 * tty_unregister_device - unregister a tty device
2662 * @driver: the tty driver that describes the tty device
2663 * @index: the index in the tty driver for this tty device
2665 * If a tty device is registered with a call to tty_register_device() then
2666 * this function must be made when the tty device is gone.
2668 void tty_unregister_device(struct tty_driver *driver, unsigned index)
2670 devfs_remove("%s%d", driver->devfs_name, index + driver->name_base);
2671 class_simple_device_remove(MKDEV(driver->major, driver->minor_start) + index);
2674 EXPORT_SYMBOL(tty_register_device);
2675 EXPORT_SYMBOL(tty_unregister_device);
2677 struct tty_driver *alloc_tty_driver(int lines)
2679 struct tty_driver *driver;
2681 driver = kmalloc(sizeof(struct tty_driver), GFP_KERNEL);
2682 if (driver) {
2683 memset(driver, 0, sizeof(struct tty_driver));
2684 driver->magic = TTY_DRIVER_MAGIC;
2685 driver->num = lines;
2686 /* later we'll move allocation of tables here */
2688 return driver;
2691 void put_tty_driver(struct tty_driver *driver)
2693 kfree(driver);
2696 void tty_set_operations(struct tty_driver *driver, struct tty_operations *op)
2698 driver->open = op->open;
2699 driver->close = op->close;
2700 driver->write = op->write;
2701 driver->put_char = op->put_char;
2702 driver->flush_chars = op->flush_chars;
2703 driver->write_room = op->write_room;
2704 driver->chars_in_buffer = op->chars_in_buffer;
2705 driver->ioctl = op->ioctl;
2706 driver->set_termios = op->set_termios;
2707 driver->throttle = op->throttle;
2708 driver->unthrottle = op->unthrottle;
2709 driver->stop = op->stop;
2710 driver->start = op->start;
2711 driver->hangup = op->hangup;
2712 driver->break_ctl = op->break_ctl;
2713 driver->flush_buffer = op->flush_buffer;
2714 driver->set_ldisc = op->set_ldisc;
2715 driver->wait_until_sent = op->wait_until_sent;
2716 driver->send_xchar = op->send_xchar;
2717 driver->read_proc = op->read_proc;
2718 driver->write_proc = op->write_proc;
2719 driver->tiocmget = op->tiocmget;
2720 driver->tiocmset = op->tiocmset;
2724 EXPORT_SYMBOL(alloc_tty_driver);
2725 EXPORT_SYMBOL(put_tty_driver);
2726 EXPORT_SYMBOL(tty_set_operations);
2729 * Called by a tty driver to register itself.
2731 int tty_register_driver(struct tty_driver *driver)
2733 int error;
2734 int i;
2735 dev_t dev;
2736 void **p = NULL;
2738 if (driver->flags & TTY_DRIVER_INSTALLED)
2739 return 0;
2741 if (!(driver->flags & TTY_DRIVER_DEVPTS_MEM)) {
2742 p = kmalloc(driver->num * 3 * sizeof(void *), GFP_KERNEL);
2743 if (!p)
2744 return -ENOMEM;
2745 memset(p, 0, driver->num * 3 * sizeof(void *));
2748 if (!driver->major) {
2749 error = alloc_chrdev_region(&dev, driver->minor_start, driver->num,
2750 (char*)driver->name);
2751 if (!error) {
2752 driver->major = MAJOR(dev);
2753 driver->minor_start = MINOR(dev);
2755 } else {
2756 dev = MKDEV(driver->major, driver->minor_start);
2757 error = register_chrdev_region(dev, driver->num,
2758 (char*)driver->name);
2760 if (error < 0) {
2761 kfree(p);
2762 return error;
2765 if (p) {
2766 driver->ttys = (struct tty_struct **)p;
2767 driver->termios = (struct termios **)(p + driver->num);
2768 driver->termios_locked = (struct termios **)(p + driver->num * 2);
2769 } else {
2770 driver->ttys = NULL;
2771 driver->termios = NULL;
2772 driver->termios_locked = NULL;
2775 cdev_init(&driver->cdev, &tty_fops);
2776 driver->cdev.owner = driver->owner;
2777 error = cdev_add(&driver->cdev, dev, driver->num);
2778 if (error) {
2779 cdev_del(&driver->cdev);
2780 unregister_chrdev_region(dev, driver->num);
2781 driver->ttys = NULL;
2782 driver->termios = driver->termios_locked = NULL;
2783 kfree(p);
2784 return error;
2787 if (!driver->put_char)
2788 driver->put_char = tty_default_put_char;
2790 list_add(&driver->tty_drivers, &tty_drivers);
2792 if ( !(driver->flags & TTY_DRIVER_NO_DEVFS) ) {
2793 for(i = 0; i < driver->num; i++)
2794 tty_register_device(driver, i, NULL);
2796 proc_tty_register_driver(driver);
2797 return 0;
2800 EXPORT_SYMBOL(tty_register_driver);
2803 * Called by a tty driver to unregister itself.
2805 int tty_unregister_driver(struct tty_driver *driver)
2807 int i;
2808 struct termios *tp;
2809 void *p;
2811 if (driver->refcount)
2812 return -EBUSY;
2814 unregister_chrdev_region(MKDEV(driver->major, driver->minor_start),
2815 driver->num);
2817 list_del(&driver->tty_drivers);
2820 * Free the termios and termios_locked structures because
2821 * we don't want to get memory leaks when modular tty
2822 * drivers are removed from the kernel.
2824 for (i = 0; i < driver->num; i++) {
2825 tp = driver->termios[i];
2826 if (tp) {
2827 driver->termios[i] = NULL;
2828 kfree(tp);
2830 tp = driver->termios_locked[i];
2831 if (tp) {
2832 driver->termios_locked[i] = NULL;
2833 kfree(tp);
2835 if (!(driver->flags & TTY_DRIVER_NO_DEVFS))
2836 tty_unregister_device(driver, i);
2838 p = driver->ttys;
2839 proc_tty_unregister_driver(driver);
2840 driver->ttys = NULL;
2841 driver->termios = driver->termios_locked = NULL;
2842 kfree(p);
2843 cdev_del(&driver->cdev);
2844 return 0;
2847 EXPORT_SYMBOL(tty_unregister_driver);
2851 * Initialize the console device. This is called *early*, so
2852 * we can't necessarily depend on lots of kernel help here.
2853 * Just do some early initializations, and do the complex setup
2854 * later.
2856 void __init console_init(void)
2858 initcall_t *call;
2860 /* Setup the default TTY line discipline. */
2861 (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);
2864 * set up the console device so that later boot sequences can
2865 * inform about problems etc..
2867 #ifdef CONFIG_EARLY_PRINTK
2868 disable_early_printk();
2869 #endif
2870 #ifdef CONFIG_SERIAL_68360
2871 /* This is not a console initcall. I know not what it's doing here.
2872 So I haven't moved it. dwmw2 */
2873 rs_360_init();
2874 #endif
2875 #if 0 // add by Victor Yu. 05-18-2005
2876 #ifdef CONFIG_SERIAL_CPE_CONSOLE
2877 extern void cpe_console_init(void);
2878 cpe_console_init();
2879 #endif // CONFIG_SERIAL_CPE_CONSOLE
2880 #endif
2881 call = &__con_initcall_start;
2882 while (call < &__con_initcall_end) {
2883 (*call)();
2884 call++;
2888 #ifdef CONFIG_VT
2889 extern int vty_init(void);
2890 #endif
2892 static int __init tty_class_init(void)
2894 tty_class = class_simple_create(THIS_MODULE, "tty");
2895 if (IS_ERR(tty_class))
2896 return PTR_ERR(tty_class);
2897 return 0;
2900 postcore_initcall(tty_class_init);
2902 /* 3/2004 jmc: why do these devices exist? */
2904 static struct cdev tty_cdev, console_cdev;
2905 #ifdef CONFIG_UNIX98_PTYS
2906 static struct cdev ptmx_cdev;
2907 #endif
2908 #ifdef CONFIG_VT
2909 static struct cdev vc0_cdev;
2910 #endif
2913 * Ok, now we can initialize the rest of the tty devices and can count
2914 * on memory allocations, interrupts etc..
2916 static int __init tty_init(void)
2918 cdev_init(&tty_cdev, &tty_fops);
2919 if (cdev_add(&tty_cdev, MKDEV(TTYAUX_MAJOR, 0), 1) ||
2920 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
2921 panic("Couldn't register /dev/tty driver\n");
2922 devfs_mk_cdev(MKDEV(TTYAUX_MAJOR, 0), S_IFCHR|S_IRUGO|S_IWUGO, "tty");
2923 class_simple_device_add(tty_class, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
2925 cdev_init(&console_cdev, &console_fops);
2926 if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
2927 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
2928 panic("Couldn't register /dev/console driver\n");
2929 devfs_mk_cdev(MKDEV(TTYAUX_MAJOR, 1), S_IFCHR|S_IRUSR|S_IWUSR, "console");
2930 class_simple_device_add(tty_class, MKDEV(TTYAUX_MAJOR, 1), NULL, "console");
2932 #ifdef CONFIG_UNIX98_PTYS
2933 cdev_init(&ptmx_cdev, &ptmx_fops);
2934 if (cdev_add(&ptmx_cdev, MKDEV(TTYAUX_MAJOR, 2), 1) ||
2935 register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
2936 panic("Couldn't register /dev/ptmx driver\n");
2937 devfs_mk_cdev(MKDEV(TTYAUX_MAJOR, 2), S_IFCHR|S_IRUGO|S_IWUGO, "ptmx");
2938 class_simple_device_add(tty_class, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
2939 #endif
2941 #ifdef CONFIG_VT
2942 cdev_init(&vc0_cdev, &console_fops);
2943 if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) ||
2944 register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
2945 panic("Couldn't register /dev/tty0 driver\n");
2946 devfs_mk_cdev(MKDEV(TTY_MAJOR, 0), S_IFCHR|S_IRUSR|S_IWUSR, "vc/0");
2947 class_simple_device_add(tty_class, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
2949 vty_init();
2950 #endif
2951 return 0;
2953 module_init(tty_init);