S3C: Backported openmoko's touchscreen filters
[linux-2.6/mini2440.git] / drivers / char / tty_ldisc.c
blobfeb55075819bab4f7d9f75ce11f7aa7232ba9dc1
1 #include <linux/types.h>
2 #include <linux/major.h>
3 #include <linux/errno.h>
4 #include <linux/signal.h>
5 #include <linux/fcntl.h>
6 #include <linux/sched.h>
7 #include <linux/interrupt.h>
8 #include <linux/tty.h>
9 #include <linux/tty_driver.h>
10 #include <linux/tty_flip.h>
11 #include <linux/devpts_fs.h>
12 #include <linux/file.h>
13 #include <linux/console.h>
14 #include <linux/timer.h>
15 #include <linux/ctype.h>
16 #include <linux/kd.h>
17 #include <linux/mm.h>
18 #include <linux/string.h>
19 #include <linux/slab.h>
20 #include <linux/poll.h>
21 #include <linux/proc_fs.h>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/device.h>
25 #include <linux/wait.h>
26 #include <linux/bitops.h>
27 #include <linux/delay.h>
28 #include <linux/seq_file.h>
30 #include <linux/uaccess.h>
31 #include <asm/system.h>
33 #include <linux/kbd_kern.h>
34 #include <linux/vt_kern.h>
35 #include <linux/selection.h>
37 #include <linux/kmod.h>
38 #include <linux/nsproxy.h>
41 * This guards the refcounted line discipline lists. The lock
42 * must be taken with irqs off because there are hangup path
43 * callers who will do ldisc lookups and cannot sleep.
46 static DEFINE_SPINLOCK(tty_ldisc_lock);
47 static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
48 /* Line disc dispatch table */
49 static struct tty_ldisc_ops *tty_ldiscs[NR_LDISCS];
51 static inline struct tty_ldisc *get_ldisc(struct tty_ldisc *ld)
53 if (ld)
54 atomic_inc(&ld->users);
55 return ld;
58 static void put_ldisc(struct tty_ldisc *ld)
60 unsigned long flags;
62 if (WARN_ON_ONCE(!ld))
63 return;
66 * If this is the last user, free the ldisc, and
67 * release the ldisc ops.
69 * We really want an "atomic_dec_and_lock_irqsave()",
70 * but we don't have it, so this does it by hand.
72 local_irq_save(flags);
73 if (atomic_dec_and_lock(&ld->users, &tty_ldisc_lock)) {
74 struct tty_ldisc_ops *ldo = ld->ops;
76 ldo->refcount--;
77 module_put(ldo->owner);
78 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
80 kfree(ld);
81 return;
83 local_irq_restore(flags);
86 /**
87 * tty_register_ldisc - install a line discipline
88 * @disc: ldisc number
89 * @new_ldisc: pointer to the ldisc object
91 * Installs a new line discipline into the kernel. The discipline
92 * is set up as unreferenced and then made available to the kernel
93 * from this point onwards.
95 * Locking:
96 * takes tty_ldisc_lock to guard against ldisc races
99 int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc)
101 unsigned long flags;
102 int ret = 0;
104 if (disc < N_TTY || disc >= NR_LDISCS)
105 return -EINVAL;
107 spin_lock_irqsave(&tty_ldisc_lock, flags);
108 tty_ldiscs[disc] = new_ldisc;
109 new_ldisc->num = disc;
110 new_ldisc->refcount = 0;
111 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
113 return ret;
115 EXPORT_SYMBOL(tty_register_ldisc);
118 * tty_unregister_ldisc - unload a line discipline
119 * @disc: ldisc number
120 * @new_ldisc: pointer to the ldisc object
122 * Remove a line discipline from the kernel providing it is not
123 * currently in use.
125 * Locking:
126 * takes tty_ldisc_lock to guard against ldisc races
129 int tty_unregister_ldisc(int disc)
131 unsigned long flags;
132 int ret = 0;
134 if (disc < N_TTY || disc >= NR_LDISCS)
135 return -EINVAL;
137 spin_lock_irqsave(&tty_ldisc_lock, flags);
138 if (tty_ldiscs[disc]->refcount)
139 ret = -EBUSY;
140 else
141 tty_ldiscs[disc] = NULL;
142 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
144 return ret;
146 EXPORT_SYMBOL(tty_unregister_ldisc);
148 static struct tty_ldisc_ops *get_ldops(int disc)
150 unsigned long flags;
151 struct tty_ldisc_ops *ldops, *ret;
153 spin_lock_irqsave(&tty_ldisc_lock, flags);
154 ret = ERR_PTR(-EINVAL);
155 ldops = tty_ldiscs[disc];
156 if (ldops) {
157 ret = ERR_PTR(-EAGAIN);
158 if (try_module_get(ldops->owner)) {
159 ldops->refcount++;
160 ret = ldops;
163 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
164 return ret;
167 static void put_ldops(struct tty_ldisc_ops *ldops)
169 unsigned long flags;
171 spin_lock_irqsave(&tty_ldisc_lock, flags);
172 ldops->refcount--;
173 module_put(ldops->owner);
174 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
178 * tty_ldisc_get - take a reference to an ldisc
179 * @disc: ldisc number
181 * Takes a reference to a line discipline. Deals with refcounts and
182 * module locking counts. Returns NULL if the discipline is not available.
183 * Returns a pointer to the discipline and bumps the ref count if it is
184 * available
186 * Locking:
187 * takes tty_ldisc_lock to guard against ldisc races
190 static struct tty_ldisc *tty_ldisc_get(int disc)
192 struct tty_ldisc *ld;
193 struct tty_ldisc_ops *ldops;
195 if (disc < N_TTY || disc >= NR_LDISCS)
196 return ERR_PTR(-EINVAL);
199 * Get the ldisc ops - we may need to request them to be loaded
200 * dynamically and try again.
202 ldops = get_ldops(disc);
203 if (IS_ERR(ldops)) {
204 request_module("tty-ldisc-%d", disc);
205 ldops = get_ldops(disc);
206 if (IS_ERR(ldops))
207 return ERR_CAST(ldops);
210 ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL);
211 if (ld == NULL) {
212 put_ldops(ldops);
213 return ERR_PTR(-ENOMEM);
216 ld->ops = ldops;
217 atomic_set(&ld->users, 1);
218 return ld;
221 static void *tty_ldiscs_seq_start(struct seq_file *m, loff_t *pos)
223 return (*pos < NR_LDISCS) ? pos : NULL;
226 static void *tty_ldiscs_seq_next(struct seq_file *m, void *v, loff_t *pos)
228 (*pos)++;
229 return (*pos < NR_LDISCS) ? pos : NULL;
232 static void tty_ldiscs_seq_stop(struct seq_file *m, void *v)
236 static int tty_ldiscs_seq_show(struct seq_file *m, void *v)
238 int i = *(loff_t *)v;
239 struct tty_ldisc_ops *ldops;
241 ldops = get_ldops(i);
242 if (IS_ERR(ldops))
243 return 0;
244 seq_printf(m, "%-10s %2d\n", ldops->name ? ldops->name : "???", i);
245 put_ldops(ldops);
246 return 0;
249 static const struct seq_operations tty_ldiscs_seq_ops = {
250 .start = tty_ldiscs_seq_start,
251 .next = tty_ldiscs_seq_next,
252 .stop = tty_ldiscs_seq_stop,
253 .show = tty_ldiscs_seq_show,
256 static int proc_tty_ldiscs_open(struct inode *inode, struct file *file)
258 return seq_open(file, &tty_ldiscs_seq_ops);
261 const struct file_operations tty_ldiscs_proc_fops = {
262 .owner = THIS_MODULE,
263 .open = proc_tty_ldiscs_open,
264 .read = seq_read,
265 .llseek = seq_lseek,
266 .release = seq_release,
270 * tty_ldisc_assign - set ldisc on a tty
271 * @tty: tty to assign
272 * @ld: line discipline
274 * Install an instance of a line discipline into a tty structure. The
275 * ldisc must have a reference count above zero to ensure it remains.
276 * The tty instance refcount starts at zero.
278 * Locking:
279 * Caller must hold references
282 static void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld)
284 tty->ldisc = ld;
288 * tty_ldisc_try - internal helper
289 * @tty: the tty
291 * Make a single attempt to grab and bump the refcount on
292 * the tty ldisc. Return 0 on failure or 1 on success. This is
293 * used to implement both the waiting and non waiting versions
294 * of tty_ldisc_ref
296 * Locking: takes tty_ldisc_lock
299 static struct tty_ldisc *tty_ldisc_try(struct tty_struct *tty)
301 unsigned long flags;
302 struct tty_ldisc *ld;
304 spin_lock_irqsave(&tty_ldisc_lock, flags);
305 ld = NULL;
306 if (test_bit(TTY_LDISC, &tty->flags))
307 ld = get_ldisc(tty->ldisc);
308 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
309 return ld;
313 * tty_ldisc_ref_wait - wait for the tty ldisc
314 * @tty: tty device
316 * Dereference the line discipline for the terminal and take a
317 * reference to it. If the line discipline is in flux then
318 * wait patiently until it changes.
320 * Note: Must not be called from an IRQ/timer context. The caller
321 * must also be careful not to hold other locks that will deadlock
322 * against a discipline change, such as an existing ldisc reference
323 * (which we check for)
325 * Locking: call functions take tty_ldisc_lock
328 struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
330 struct tty_ldisc *ld;
332 /* wait_event is a macro */
333 wait_event(tty_ldisc_wait, (ld = tty_ldisc_try(tty)) != NULL);
334 return ld;
336 EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);
339 * tty_ldisc_ref - get the tty ldisc
340 * @tty: tty device
342 * Dereference the line discipline for the terminal and take a
343 * reference to it. If the line discipline is in flux then
344 * return NULL. Can be called from IRQ and timer functions.
346 * Locking: called functions take tty_ldisc_lock
349 struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
351 return tty_ldisc_try(tty);
353 EXPORT_SYMBOL_GPL(tty_ldisc_ref);
356 * tty_ldisc_deref - free a tty ldisc reference
357 * @ld: reference to free up
359 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
360 * be called in IRQ context.
362 * Locking: takes tty_ldisc_lock
365 void tty_ldisc_deref(struct tty_ldisc *ld)
367 put_ldisc(ld);
369 EXPORT_SYMBOL_GPL(tty_ldisc_deref);
371 static inline void tty_ldisc_put(struct tty_ldisc *ld)
373 put_ldisc(ld);
377 * tty_ldisc_enable - allow ldisc use
378 * @tty: terminal to activate ldisc on
380 * Set the TTY_LDISC flag when the line discipline can be called
381 * again. Do necessary wakeups for existing sleepers. Clear the LDISC
382 * changing flag to indicate any ldisc change is now over.
384 * Note: nobody should set the TTY_LDISC bit except via this function.
385 * Clearing directly is allowed.
388 void tty_ldisc_enable(struct tty_struct *tty)
390 set_bit(TTY_LDISC, &tty->flags);
391 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
392 wake_up(&tty_ldisc_wait);
396 * tty_ldisc_flush - flush line discipline queue
397 * @tty: tty
399 * Flush the line discipline queue (if any) for this tty. If there
400 * is no line discipline active this is a no-op.
403 void tty_ldisc_flush(struct tty_struct *tty)
405 struct tty_ldisc *ld = tty_ldisc_ref(tty);
406 if (ld) {
407 if (ld->ops->flush_buffer)
408 ld->ops->flush_buffer(tty);
409 tty_ldisc_deref(ld);
411 tty_buffer_flush(tty);
413 EXPORT_SYMBOL_GPL(tty_ldisc_flush);
416 * tty_set_termios_ldisc - set ldisc field
417 * @tty: tty structure
418 * @num: line discipline number
420 * This is probably overkill for real world processors but
421 * they are not on hot paths so a little discipline won't do
422 * any harm.
424 * Locking: takes termios_mutex
427 static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
429 mutex_lock(&tty->termios_mutex);
430 tty->termios->c_line = num;
431 mutex_unlock(&tty->termios_mutex);
435 * tty_ldisc_open - open a line discipline
436 * @tty: tty we are opening the ldisc on
437 * @ld: discipline to open
439 * A helper opening method. Also a convenient debugging and check
440 * point.
443 static int tty_ldisc_open(struct tty_struct *tty, struct tty_ldisc *ld)
445 WARN_ON(test_and_set_bit(TTY_LDISC_OPEN, &tty->flags));
446 if (ld->ops->open)
447 return ld->ops->open(tty);
448 return 0;
452 * tty_ldisc_close - close a line discipline
453 * @tty: tty we are opening the ldisc on
454 * @ld: discipline to close
456 * A helper close method. Also a convenient debugging and check
457 * point.
460 static void tty_ldisc_close(struct tty_struct *tty, struct tty_ldisc *ld)
462 WARN_ON(!test_bit(TTY_LDISC_OPEN, &tty->flags));
463 clear_bit(TTY_LDISC_OPEN, &tty->flags);
464 if (ld->ops->close)
465 ld->ops->close(tty);
469 * tty_ldisc_restore - helper for tty ldisc change
470 * @tty: tty to recover
471 * @old: previous ldisc
473 * Restore the previous line discipline or N_TTY when a line discipline
474 * change fails due to an open error
477 static void tty_ldisc_restore(struct tty_struct *tty, struct tty_ldisc *old)
479 char buf[64];
480 struct tty_ldisc *new_ldisc;
481 int r;
483 /* There is an outstanding reference here so this is safe */
484 old = tty_ldisc_get(old->ops->num);
485 WARN_ON(IS_ERR(old));
486 tty_ldisc_assign(tty, old);
487 tty_set_termios_ldisc(tty, old->ops->num);
488 if (tty_ldisc_open(tty, old) < 0) {
489 tty_ldisc_put(old);
490 /* This driver is always present */
491 new_ldisc = tty_ldisc_get(N_TTY);
492 if (IS_ERR(new_ldisc))
493 panic("n_tty: get");
494 tty_ldisc_assign(tty, new_ldisc);
495 tty_set_termios_ldisc(tty, N_TTY);
496 r = tty_ldisc_open(tty, new_ldisc);
497 if (r < 0)
498 panic("Couldn't open N_TTY ldisc for "
499 "%s --- error %d.",
500 tty_name(tty, buf), r);
505 * tty_ldisc_halt - shut down the line discipline
506 * @tty: tty device
508 * Shut down the line discipline and work queue for this tty device.
509 * The TTY_LDISC flag being cleared ensures no further references can
510 * be obtained while the delayed work queue halt ensures that no more
511 * data is fed to the ldisc.
513 * You need to do a 'flush_scheduled_work()' (outside the ldisc_mutex)
514 * in order to make sure any currently executing ldisc work is also
515 * flushed.
518 static int tty_ldisc_halt(struct tty_struct *tty)
520 clear_bit(TTY_LDISC, &tty->flags);
521 return cancel_delayed_work_sync(&tty->buf.work);
525 * tty_set_ldisc - set line discipline
526 * @tty: the terminal to set
527 * @ldisc: the line discipline
529 * Set the discipline of a tty line. Must be called from a process
530 * context. The ldisc change logic has to protect itself against any
531 * overlapping ldisc change (including on the other end of pty pairs),
532 * the close of one side of a tty/pty pair, and eventually hangup.
534 * Locking: takes tty_ldisc_lock, termios_mutex
537 int tty_set_ldisc(struct tty_struct *tty, int ldisc)
539 int retval;
540 struct tty_ldisc *o_ldisc, *new_ldisc;
541 int work, o_work = 0;
542 struct tty_struct *o_tty;
544 new_ldisc = tty_ldisc_get(ldisc);
545 if (IS_ERR(new_ldisc))
546 return PTR_ERR(new_ldisc);
549 * We need to look at the tty locking here for pty/tty pairs
550 * when both sides try to change in parallel.
553 o_tty = tty->link; /* o_tty is the pty side or NULL */
557 * Check the no-op case
560 if (tty->ldisc->ops->num == ldisc) {
561 tty_ldisc_put(new_ldisc);
562 return 0;
566 * Problem: What do we do if this blocks ?
567 * We could deadlock here
570 tty_wait_until_sent(tty, 0);
572 mutex_lock(&tty->ldisc_mutex);
575 * We could be midstream of another ldisc change which has
576 * dropped the lock during processing. If so we need to wait.
579 while (test_bit(TTY_LDISC_CHANGING, &tty->flags)) {
580 mutex_unlock(&tty->ldisc_mutex);
581 wait_event(tty_ldisc_wait,
582 test_bit(TTY_LDISC_CHANGING, &tty->flags) == 0);
583 mutex_lock(&tty->ldisc_mutex);
585 set_bit(TTY_LDISC_CHANGING, &tty->flags);
588 * No more input please, we are switching. The new ldisc
589 * will update this value in the ldisc open function
592 tty->receive_room = 0;
594 o_ldisc = tty->ldisc;
596 * Make sure we don't change while someone holds a
597 * reference to the line discipline. The TTY_LDISC bit
598 * prevents anyone taking a reference once it is clear.
599 * We need the lock to avoid racing reference takers.
601 * We must clear the TTY_LDISC bit here to avoid a livelock
602 * with a userspace app continually trying to use the tty in
603 * parallel to the change and re-referencing the tty.
606 work = tty_ldisc_halt(tty);
607 if (o_tty)
608 o_work = tty_ldisc_halt(o_tty);
611 * Wait for ->hangup_work and ->buf.work handlers to terminate.
612 * We must drop the mutex here in case a hangup is also in process.
615 mutex_unlock(&tty->ldisc_mutex);
617 flush_scheduled_work();
619 mutex_lock(&tty->ldisc_mutex);
620 if (test_bit(TTY_HUPPED, &tty->flags)) {
621 /* We were raced by the hangup method. It will have stomped
622 the ldisc data and closed the ldisc down */
623 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
624 mutex_unlock(&tty->ldisc_mutex);
625 tty_ldisc_put(new_ldisc);
626 return -EIO;
629 /* Shutdown the current discipline. */
630 tty_ldisc_close(tty, o_ldisc);
632 /* Now set up the new line discipline. */
633 tty_ldisc_assign(tty, new_ldisc);
634 tty_set_termios_ldisc(tty, ldisc);
636 retval = tty_ldisc_open(tty, new_ldisc);
637 if (retval < 0) {
638 /* Back to the old one or N_TTY if we can't */
639 tty_ldisc_put(new_ldisc);
640 tty_ldisc_restore(tty, o_ldisc);
643 /* At this point we hold a reference to the new ldisc and a
644 a reference to the old ldisc. If we ended up flipping back
645 to the existing ldisc we have two references to it */
647 if (tty->ldisc->ops->num != o_ldisc->ops->num && tty->ops->set_ldisc)
648 tty->ops->set_ldisc(tty);
650 tty_ldisc_put(o_ldisc);
653 * Allow ldisc referencing to occur again
656 tty_ldisc_enable(tty);
657 if (o_tty)
658 tty_ldisc_enable(o_tty);
660 /* Restart the work queue in case no characters kick it off. Safe if
661 already running */
662 if (work)
663 schedule_delayed_work(&tty->buf.work, 1);
664 if (o_work)
665 schedule_delayed_work(&o_tty->buf.work, 1);
666 mutex_unlock(&tty->ldisc_mutex);
667 return retval;
671 * tty_reset_termios - reset terminal state
672 * @tty: tty to reset
674 * Restore a terminal to the driver default state.
677 static void tty_reset_termios(struct tty_struct *tty)
679 mutex_lock(&tty->termios_mutex);
680 *tty->termios = tty->driver->init_termios;
681 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
682 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
683 mutex_unlock(&tty->termios_mutex);
688 * tty_ldisc_reinit - reinitialise the tty ldisc
689 * @tty: tty to reinit
691 * Switch the tty back to N_TTY line discipline and leave the
692 * ldisc state closed
695 static void tty_ldisc_reinit(struct tty_struct *tty)
697 struct tty_ldisc *ld;
699 tty_ldisc_close(tty, tty->ldisc);
700 tty_ldisc_put(tty->ldisc);
701 tty->ldisc = NULL;
703 * Switch the line discipline back
705 ld = tty_ldisc_get(N_TTY);
706 BUG_ON(IS_ERR(ld));
707 tty_ldisc_assign(tty, ld);
708 tty_set_termios_ldisc(tty, N_TTY);
712 * tty_ldisc_hangup - hangup ldisc reset
713 * @tty: tty being hung up
715 * Some tty devices reset their termios when they receive a hangup
716 * event. In that situation we must also switch back to N_TTY properly
717 * before we reset the termios data.
719 * Locking: We can take the ldisc mutex as the rest of the code is
720 * careful to allow for this.
722 * In the pty pair case this occurs in the close() path of the
723 * tty itself so we must be careful about locking rules.
726 void tty_ldisc_hangup(struct tty_struct *tty)
728 struct tty_ldisc *ld;
731 * FIXME! What are the locking issues here? This may me overdoing
732 * things... This question is especially important now that we've
733 * removed the irqlock.
735 ld = tty_ldisc_ref(tty);
736 if (ld != NULL) {
737 /* We may have no line discipline at this point */
738 if (ld->ops->flush_buffer)
739 ld->ops->flush_buffer(tty);
740 tty_driver_flush_buffer(tty);
741 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
742 ld->ops->write_wakeup)
743 ld->ops->write_wakeup(tty);
744 if (ld->ops->hangup)
745 ld->ops->hangup(tty);
746 tty_ldisc_deref(ld);
749 * FIXME: Once we trust the LDISC code better we can wait here for
750 * ldisc completion and fix the driver call race
752 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
753 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
755 * Shutdown the current line discipline, and reset it to
756 * N_TTY.
758 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
759 /* Avoid racing set_ldisc or tty_ldisc_release */
760 mutex_lock(&tty->ldisc_mutex);
761 tty_ldisc_halt(tty);
762 if (tty->ldisc) { /* Not yet closed */
763 /* Switch back to N_TTY */
764 tty_ldisc_reinit(tty);
765 /* At this point we have a closed ldisc and we want to
766 reopen it. We could defer this to the next open but
767 it means auditing a lot of other paths so this is
768 a FIXME */
769 WARN_ON(tty_ldisc_open(tty, tty->ldisc));
770 tty_ldisc_enable(tty);
772 mutex_unlock(&tty->ldisc_mutex);
773 tty_reset_termios(tty);
778 * tty_ldisc_setup - open line discipline
779 * @tty: tty being shut down
780 * @o_tty: pair tty for pty/tty pairs
782 * Called during the initial open of a tty/pty pair in order to set up the
783 * line disciplines and bind them to the tty. This has no locking issues
784 * as the device isn't yet active.
787 int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty)
789 struct tty_ldisc *ld = tty->ldisc;
790 int retval;
792 retval = tty_ldisc_open(tty, ld);
793 if (retval)
794 return retval;
796 if (o_tty) {
797 retval = tty_ldisc_open(o_tty, o_tty->ldisc);
798 if (retval) {
799 tty_ldisc_close(tty, ld);
800 return retval;
802 tty_ldisc_enable(o_tty);
804 tty_ldisc_enable(tty);
805 return 0;
808 * tty_ldisc_release - release line discipline
809 * @tty: tty being shut down
810 * @o_tty: pair tty for pty/tty pairs
812 * Called during the final close of a tty/pty pair in order to shut down
813 * the line discpline layer. On exit the ldisc assigned is N_TTY and the
814 * ldisc has not been opened.
817 void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty)
820 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
821 * kill any delayed work. As this is the final close it does not
822 * race with the set_ldisc code path.
825 tty_ldisc_halt(tty);
826 flush_scheduled_work();
828 mutex_lock(&tty->ldisc_mutex);
830 * Now kill off the ldisc
832 tty_ldisc_close(tty, tty->ldisc);
833 tty_ldisc_put(tty->ldisc);
834 /* Force an oops if we mess this up */
835 tty->ldisc = NULL;
837 /* Ensure the next open requests the N_TTY ldisc */
838 tty_set_termios_ldisc(tty, N_TTY);
839 mutex_unlock(&tty->ldisc_mutex);
841 /* This will need doing differently if we need to lock */
842 if (o_tty)
843 tty_ldisc_release(o_tty, NULL);
845 /* And the memory resources remaining (buffers, termios) will be
846 disposed of when the kref hits zero */
850 * tty_ldisc_init - ldisc setup for new tty
851 * @tty: tty being allocated
853 * Set up the line discipline objects for a newly allocated tty. Note that
854 * the tty structure is not completely set up when this call is made.
857 void tty_ldisc_init(struct tty_struct *tty)
859 struct tty_ldisc *ld = tty_ldisc_get(N_TTY);
860 if (IS_ERR(ld))
861 panic("n_tty: init_tty");
862 tty_ldisc_assign(tty, ld);
865 void tty_ldisc_begin(void)
867 /* Setup the default TTY line discipline. */
868 (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);