blob: 174db3b0c09e634ec42a8d4747ac83bb99640062 [file] [log] [blame]
Alan Cox01e1abb2008-07-22 11:16:55 +01001#include <linux/types.h>
Alan Cox01e1abb2008-07-22 11:16:55 +01002#include <linux/errno.h>
Jiri Slaby8b3ffa12011-11-16 16:27:10 +01003#include <linux/kmod.h>
Alan Cox01e1abb2008-07-22 11:16:55 +01004#include <linux/sched.h>
5#include <linux/interrupt.h>
6#include <linux/tty.h>
7#include <linux/tty_driver.h>
Alan Cox01e1abb2008-07-22 11:16:55 +01008#include <linux/file.h>
Alan Cox01e1abb2008-07-22 11:16:55 +01009#include <linux/mm.h>
10#include <linux/string.h>
11#include <linux/slab.h>
12#include <linux/poll.h>
13#include <linux/proc_fs.h>
14#include <linux/init.h>
15#include <linux/module.h>
Alan Cox01e1abb2008-07-22 11:16:55 +010016#include <linux/device.h>
17#include <linux/wait.h>
18#include <linux/bitops.h>
Alan Cox01e1abb2008-07-22 11:16:55 +010019#include <linux/seq_file.h>
Alan Cox01e1abb2008-07-22 11:16:55 +010020#include <linux/uaccess.h>
Alan Cox01e1abb2008-07-22 11:16:55 +010021
22/*
23 * This guards the refcounted line discipline lists. The lock
24 * must be taken with irqs off because there are hangup path
25 * callers who will do ldisc lookups and cannot sleep.
26 */
27
28static DEFINE_SPINLOCK(tty_ldisc_lock);
29static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
Jiri Slaby100eeae2010-10-31 23:17:51 +010030static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_idle);
Alan Cox01e1abb2008-07-22 11:16:55 +010031/* Line disc dispatch table */
32static struct tty_ldisc_ops *tty_ldiscs[NR_LDISCS];
33
Linus Torvalds65b77042009-08-03 11:11:19 -070034static inline struct tty_ldisc *get_ldisc(struct tty_ldisc *ld)
35{
36 if (ld)
37 atomic_inc(&ld->users);
38 return ld;
39}
40
Linus Torvaldscbe93522009-08-03 14:54:56 -070041static void put_ldisc(struct tty_ldisc *ld)
Linus Torvalds65b77042009-08-03 11:11:19 -070042{
Linus Torvaldscbe93522009-08-03 14:54:56 -070043 unsigned long flags;
44
Linus Torvalds65b77042009-08-03 11:11:19 -070045 if (WARN_ON_ONCE(!ld))
46 return;
47
48 /*
49 * If this is the last user, free the ldisc, and
50 * release the ldisc ops.
Linus Torvaldscbe93522009-08-03 14:54:56 -070051 *
52 * We really want an "atomic_dec_and_lock_irqsave()",
53 * but we don't have it, so this does it by hand.
Linus Torvalds65b77042009-08-03 11:11:19 -070054 */
Linus Torvaldscbe93522009-08-03 14:54:56 -070055 local_irq_save(flags);
56 if (atomic_dec_and_lock(&ld->users, &tty_ldisc_lock)) {
Linus Torvalds65b77042009-08-03 11:11:19 -070057 struct tty_ldisc_ops *ldo = ld->ops;
58
Linus Torvalds65b77042009-08-03 11:11:19 -070059 ldo->refcount--;
60 module_put(ldo->owner);
61 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
Linus Torvaldscbe93522009-08-03 14:54:56 -070062
63 kfree(ld);
64 return;
Linus Torvalds65b77042009-08-03 11:11:19 -070065 }
Linus Torvaldscbe93522009-08-03 14:54:56 -070066 local_irq_restore(flags);
Jiri Slaby100eeae2010-10-31 23:17:51 +010067 wake_up(&tty_ldisc_idle);
Linus Torvalds65b77042009-08-03 11:11:19 -070068}
69
Alan Cox01e1abb2008-07-22 11:16:55 +010070/**
71 * tty_register_ldisc - install a line discipline
72 * @disc: ldisc number
73 * @new_ldisc: pointer to the ldisc object
74 *
75 * Installs a new line discipline into the kernel. The discipline
76 * is set up as unreferenced and then made available to the kernel
77 * from this point onwards.
78 *
79 * Locking:
80 * takes tty_ldisc_lock to guard against ldisc races
81 */
82
83int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc)
84{
85 unsigned long flags;
86 int ret = 0;
87
88 if (disc < N_TTY || disc >= NR_LDISCS)
89 return -EINVAL;
90
91 spin_lock_irqsave(&tty_ldisc_lock, flags);
92 tty_ldiscs[disc] = new_ldisc;
93 new_ldisc->num = disc;
94 new_ldisc->refcount = 0;
95 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
96
97 return ret;
98}
99EXPORT_SYMBOL(tty_register_ldisc);
100
101/**
102 * tty_unregister_ldisc - unload a line discipline
103 * @disc: ldisc number
104 * @new_ldisc: pointer to the ldisc object
105 *
106 * Remove a line discipline from the kernel providing it is not
107 * currently in use.
108 *
109 * Locking:
110 * takes tty_ldisc_lock to guard against ldisc races
111 */
112
113int tty_unregister_ldisc(int disc)
114{
115 unsigned long flags;
116 int ret = 0;
117
118 if (disc < N_TTY || disc >= NR_LDISCS)
119 return -EINVAL;
120
121 spin_lock_irqsave(&tty_ldisc_lock, flags);
122 if (tty_ldiscs[disc]->refcount)
123 ret = -EBUSY;
124 else
125 tty_ldiscs[disc] = NULL;
126 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
127
128 return ret;
129}
130EXPORT_SYMBOL(tty_unregister_ldisc);
131
Linus Torvaldsf0de0e82009-08-03 16:00:15 -0700132static struct tty_ldisc_ops *get_ldops(int disc)
133{
134 unsigned long flags;
135 struct tty_ldisc_ops *ldops, *ret;
136
137 spin_lock_irqsave(&tty_ldisc_lock, flags);
138 ret = ERR_PTR(-EINVAL);
139 ldops = tty_ldiscs[disc];
140 if (ldops) {
141 ret = ERR_PTR(-EAGAIN);
142 if (try_module_get(ldops->owner)) {
143 ldops->refcount++;
144 ret = ldops;
145 }
146 }
147 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
148 return ret;
149}
150
151static void put_ldops(struct tty_ldisc_ops *ldops)
152{
153 unsigned long flags;
154
155 spin_lock_irqsave(&tty_ldisc_lock, flags);
156 ldops->refcount--;
157 module_put(ldops->owner);
158 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
159}
Alan Cox01e1abb2008-07-22 11:16:55 +0100160
161/**
Alan Cox01e1abb2008-07-22 11:16:55 +0100162 * tty_ldisc_get - take a reference to an ldisc
163 * @disc: ldisc number
Alan Cox01e1abb2008-07-22 11:16:55 +0100164 *
165 * Takes a reference to a line discipline. Deals with refcounts and
166 * module locking counts. Returns NULL if the discipline is not available.
167 * Returns a pointer to the discipline and bumps the ref count if it is
168 * available
169 *
170 * Locking:
171 * takes tty_ldisc_lock to guard against ldisc races
172 */
173
Alan Coxc65c9bc2009-06-11 12:50:12 +0100174static struct tty_ldisc *tty_ldisc_get(int disc)
Alan Cox01e1abb2008-07-22 11:16:55 +0100175{
Alan Coxc65c9bc2009-06-11 12:50:12 +0100176 struct tty_ldisc *ld;
Linus Torvalds182274f2009-08-03 16:01:28 -0700177 struct tty_ldisc_ops *ldops;
Alan Cox01e1abb2008-07-22 11:16:55 +0100178
179 if (disc < N_TTY || disc >= NR_LDISCS)
Alan Coxc65c9bc2009-06-11 12:50:12 +0100180 return ERR_PTR(-EINVAL);
Linus Torvalds182274f2009-08-03 16:01:28 -0700181
182 /*
183 * Get the ldisc ops - we may need to request them to be loaded
184 * dynamically and try again.
185 */
186 ldops = get_ldops(disc);
187 if (IS_ERR(ldops)) {
Alan Cox01e1abb2008-07-22 11:16:55 +0100188 request_module("tty-ldisc-%d", disc);
Linus Torvalds182274f2009-08-03 16:01:28 -0700189 ldops = get_ldops(disc);
190 if (IS_ERR(ldops))
191 return ERR_CAST(ldops);
Alan Cox01e1abb2008-07-22 11:16:55 +0100192 }
Linus Torvalds182274f2009-08-03 16:01:28 -0700193
194 ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL);
195 if (ld == NULL) {
196 put_ldops(ldops);
197 return ERR_PTR(-ENOMEM);
198 }
199
200 ld->ops = ldops;
201 atomic_set(&ld->users, 1);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100202 return ld;
Alan Cox01e1abb2008-07-22 11:16:55 +0100203}
204
Alan Cox852e99d2009-06-11 12:51:41 +0100205static void *tty_ldiscs_seq_start(struct seq_file *m, loff_t *pos)
Alan Cox01e1abb2008-07-22 11:16:55 +0100206{
207 return (*pos < NR_LDISCS) ? pos : NULL;
208}
209
Alan Cox852e99d2009-06-11 12:51:41 +0100210static void *tty_ldiscs_seq_next(struct seq_file *m, void *v, loff_t *pos)
Alan Cox01e1abb2008-07-22 11:16:55 +0100211{
212 (*pos)++;
213 return (*pos < NR_LDISCS) ? pos : NULL;
214}
215
216static void tty_ldiscs_seq_stop(struct seq_file *m, void *v)
217{
218}
219
220static int tty_ldiscs_seq_show(struct seq_file *m, void *v)
221{
222 int i = *(loff_t *)v;
Linus Torvaldsf0de0e82009-08-03 16:00:15 -0700223 struct tty_ldisc_ops *ldops;
Alan Cox852e99d2009-06-11 12:51:41 +0100224
Linus Torvaldsf0de0e82009-08-03 16:00:15 -0700225 ldops = get_ldops(i);
226 if (IS_ERR(ldops))
Alan Cox01e1abb2008-07-22 11:16:55 +0100227 return 0;
Linus Torvaldsf0de0e82009-08-03 16:00:15 -0700228 seq_printf(m, "%-10s %2d\n", ldops->name ? ldops->name : "???", i);
229 put_ldops(ldops);
Alan Cox01e1abb2008-07-22 11:16:55 +0100230 return 0;
231}
232
233static const struct seq_operations tty_ldiscs_seq_ops = {
234 .start = tty_ldiscs_seq_start,
235 .next = tty_ldiscs_seq_next,
236 .stop = tty_ldiscs_seq_stop,
237 .show = tty_ldiscs_seq_show,
238};
239
240static int proc_tty_ldiscs_open(struct inode *inode, struct file *file)
241{
242 return seq_open(file, &tty_ldiscs_seq_ops);
243}
244
245const struct file_operations tty_ldiscs_proc_fops = {
246 .owner = THIS_MODULE,
247 .open = proc_tty_ldiscs_open,
248 .read = seq_read,
249 .llseek = seq_lseek,
250 .release = seq_release,
251};
252
253/**
254 * tty_ldisc_assign - set ldisc on a tty
255 * @tty: tty to assign
256 * @ld: line discipline
257 *
258 * Install an instance of a line discipline into a tty structure. The
Alan Cox8d2ead72009-06-16 17:00:26 +0100259 * ldisc must have a reference count above zero to ensure it remains.
Alan Cox01e1abb2008-07-22 11:16:55 +0100260 * The tty instance refcount starts at zero.
261 *
262 * Locking:
263 * Caller must hold references
264 */
265
266static void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld)
267{
Alan Coxc65c9bc2009-06-11 12:50:12 +0100268 tty->ldisc = ld;
Alan Cox01e1abb2008-07-22 11:16:55 +0100269}
270
271/**
272 * tty_ldisc_try - internal helper
273 * @tty: the tty
274 *
275 * Make a single attempt to grab and bump the refcount on
276 * the tty ldisc. Return 0 on failure or 1 on success. This is
277 * used to implement both the waiting and non waiting versions
278 * of tty_ldisc_ref
279 *
280 * Locking: takes tty_ldisc_lock
281 */
282
Linus Torvalds65b77042009-08-03 11:11:19 -0700283static struct tty_ldisc *tty_ldisc_try(struct tty_struct *tty)
Alan Cox01e1abb2008-07-22 11:16:55 +0100284{
285 unsigned long flags;
286 struct tty_ldisc *ld;
Alan Cox01e1abb2008-07-22 11:16:55 +0100287
288 spin_lock_irqsave(&tty_ldisc_lock, flags);
Linus Torvalds65b77042009-08-03 11:11:19 -0700289 ld = NULL;
290 if (test_bit(TTY_LDISC, &tty->flags))
291 ld = get_ldisc(tty->ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100292 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
Linus Torvalds65b77042009-08-03 11:11:19 -0700293 return ld;
Alan Cox01e1abb2008-07-22 11:16:55 +0100294}
295
296/**
297 * tty_ldisc_ref_wait - wait for the tty ldisc
298 * @tty: tty device
299 *
300 * Dereference the line discipline for the terminal and take a
301 * reference to it. If the line discipline is in flux then
302 * wait patiently until it changes.
303 *
304 * Note: Must not be called from an IRQ/timer context. The caller
305 * must also be careful not to hold other locks that will deadlock
306 * against a discipline change, such as an existing ldisc reference
307 * (which we check for)
308 *
309 * Locking: call functions take tty_ldisc_lock
310 */
311
312struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
313{
Linus Torvalds65b77042009-08-03 11:11:19 -0700314 struct tty_ldisc *ld;
315
Alan Cox01e1abb2008-07-22 11:16:55 +0100316 /* wait_event is a macro */
Linus Torvalds65b77042009-08-03 11:11:19 -0700317 wait_event(tty_ldisc_wait, (ld = tty_ldisc_try(tty)) != NULL);
318 return ld;
Alan Cox01e1abb2008-07-22 11:16:55 +0100319}
Alan Cox01e1abb2008-07-22 11:16:55 +0100320EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);
321
322/**
323 * tty_ldisc_ref - get the tty ldisc
324 * @tty: tty device
325 *
326 * Dereference the line discipline for the terminal and take a
327 * reference to it. If the line discipline is in flux then
328 * return NULL. Can be called from IRQ and timer functions.
329 *
330 * Locking: called functions take tty_ldisc_lock
331 */
332
333struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
334{
Linus Torvalds65b77042009-08-03 11:11:19 -0700335 return tty_ldisc_try(tty);
Alan Cox01e1abb2008-07-22 11:16:55 +0100336}
Alan Cox01e1abb2008-07-22 11:16:55 +0100337EXPORT_SYMBOL_GPL(tty_ldisc_ref);
338
339/**
340 * tty_ldisc_deref - free a tty ldisc reference
341 * @ld: reference to free up
342 *
343 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
344 * be called in IRQ context.
345 *
346 * Locking: takes tty_ldisc_lock
347 */
348
349void tty_ldisc_deref(struct tty_ldisc *ld)
350{
Linus Torvalds65b77042009-08-03 11:11:19 -0700351 put_ldisc(ld);
Alan Cox01e1abb2008-07-22 11:16:55 +0100352}
Alan Cox01e1abb2008-07-22 11:16:55 +0100353EXPORT_SYMBOL_GPL(tty_ldisc_deref);
354
Linus Torvalds65b77042009-08-03 11:11:19 -0700355static inline void tty_ldisc_put(struct tty_ldisc *ld)
356{
357 put_ldisc(ld);
358}
359
Alan Cox01e1abb2008-07-22 11:16:55 +0100360/**
361 * tty_ldisc_enable - allow ldisc use
362 * @tty: terminal to activate ldisc on
363 *
364 * Set the TTY_LDISC flag when the line discipline can be called
Alan Coxc9b39762009-01-02 13:44:56 +0000365 * again. Do necessary wakeups for existing sleepers. Clear the LDISC
366 * changing flag to indicate any ldisc change is now over.
Alan Cox01e1abb2008-07-22 11:16:55 +0100367 *
Alan Coxc9b39762009-01-02 13:44:56 +0000368 * Note: nobody should set the TTY_LDISC bit except via this function.
369 * Clearing directly is allowed.
Alan Cox01e1abb2008-07-22 11:16:55 +0100370 */
371
372void tty_ldisc_enable(struct tty_struct *tty)
373{
374 set_bit(TTY_LDISC, &tty->flags);
Alan Coxc9b39762009-01-02 13:44:56 +0000375 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
Alan Cox01e1abb2008-07-22 11:16:55 +0100376 wake_up(&tty_ldisc_wait);
377}
378
379/**
Alan Coxf2c4c652009-06-11 12:50:58 +0100380 * tty_ldisc_flush - flush line discipline queue
381 * @tty: tty
382 *
383 * Flush the line discipline queue (if any) for this tty. If there
384 * is no line discipline active this is a no-op.
385 */
386
387void tty_ldisc_flush(struct tty_struct *tty)
388{
389 struct tty_ldisc *ld = tty_ldisc_ref(tty);
390 if (ld) {
391 if (ld->ops->flush_buffer)
392 ld->ops->flush_buffer(tty);
393 tty_ldisc_deref(ld);
394 }
395 tty_buffer_flush(tty);
396}
Alan Coxf2c4c652009-06-11 12:50:58 +0100397EXPORT_SYMBOL_GPL(tty_ldisc_flush);
398
399/**
Alan Cox01e1abb2008-07-22 11:16:55 +0100400 * tty_set_termios_ldisc - set ldisc field
401 * @tty: tty structure
402 * @num: line discipline number
403 *
404 * This is probably overkill for real world processors but
405 * they are not on hot paths so a little discipline won't do
406 * any harm.
407 *
408 * Locking: takes termios_mutex
409 */
410
411static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
412{
413 mutex_lock(&tty->termios_mutex);
414 tty->termios->c_line = num;
415 mutex_unlock(&tty->termios_mutex);
416}
417
Alan Coxc65c9bc2009-06-11 12:50:12 +0100418/**
419 * tty_ldisc_open - open a line discipline
420 * @tty: tty we are opening the ldisc on
421 * @ld: discipline to open
422 *
423 * A helper opening method. Also a convenient debugging and check
424 * point.
Arnd Bergmannec79d602010-06-01 22:53:01 +0200425 *
426 * Locking: always called with BTM already held.
Alan Coxc65c9bc2009-06-11 12:50:12 +0100427 */
428
429static int tty_ldisc_open(struct tty_struct *tty, struct tty_ldisc *ld)
430{
431 WARN_ON(test_and_set_bit(TTY_LDISC_OPEN, &tty->flags));
Alan Coxf18f9492009-11-30 13:18:35 +0000432 if (ld->ops->open) {
433 int ret;
Arnd Bergmannec79d602010-06-01 22:53:01 +0200434 /* BTM here locks versus a hangup event */
Alan Coxf18f9492009-11-30 13:18:35 +0000435 ret = ld->ops->open(tty);
Jiri Slaby7f90cfc2010-11-25 00:27:54 +0100436 if (ret)
437 clear_bit(TTY_LDISC_OPEN, &tty->flags);
Alan Coxf18f9492009-11-30 13:18:35 +0000438 return ret;
439 }
Alan Coxc65c9bc2009-06-11 12:50:12 +0100440 return 0;
441}
442
443/**
444 * tty_ldisc_close - close a line discipline
445 * @tty: tty we are opening the ldisc on
446 * @ld: discipline to close
447 *
448 * A helper close method. Also a convenient debugging and check
449 * point.
450 */
451
452static void tty_ldisc_close(struct tty_struct *tty, struct tty_ldisc *ld)
453{
454 WARN_ON(!test_bit(TTY_LDISC_OPEN, &tty->flags));
455 clear_bit(TTY_LDISC_OPEN, &tty->flags);
456 if (ld->ops->close)
457 ld->ops->close(tty);
458}
Alan Cox01e1abb2008-07-22 11:16:55 +0100459
460/**
461 * tty_ldisc_restore - helper for tty ldisc change
462 * @tty: tty to recover
463 * @old: previous ldisc
464 *
465 * Restore the previous line discipline or N_TTY when a line discipline
466 * change fails due to an open error
467 */
468
469static void tty_ldisc_restore(struct tty_struct *tty, struct tty_ldisc *old)
470{
471 char buf[64];
Alan Coxc65c9bc2009-06-11 12:50:12 +0100472 struct tty_ldisc *new_ldisc;
473 int r;
Alan Cox01e1abb2008-07-22 11:16:55 +0100474
475 /* There is an outstanding reference here so this is safe */
Alan Coxc65c9bc2009-06-11 12:50:12 +0100476 old = tty_ldisc_get(old->ops->num);
477 WARN_ON(IS_ERR(old));
Alan Cox01e1abb2008-07-22 11:16:55 +0100478 tty_ldisc_assign(tty, old);
479 tty_set_termios_ldisc(tty, old->ops->num);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100480 if (tty_ldisc_open(tty, old) < 0) {
481 tty_ldisc_put(old);
Alan Cox01e1abb2008-07-22 11:16:55 +0100482 /* This driver is always present */
Alan Cox852e99d2009-06-11 12:51:41 +0100483 new_ldisc = tty_ldisc_get(N_TTY);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100484 if (IS_ERR(new_ldisc))
Alan Cox01e1abb2008-07-22 11:16:55 +0100485 panic("n_tty: get");
Alan Coxc65c9bc2009-06-11 12:50:12 +0100486 tty_ldisc_assign(tty, new_ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100487 tty_set_termios_ldisc(tty, N_TTY);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100488 r = tty_ldisc_open(tty, new_ldisc);
489 if (r < 0)
490 panic("Couldn't open N_TTY ldisc for "
491 "%s --- error %d.",
492 tty_name(tty, buf), r);
Alan Cox01e1abb2008-07-22 11:16:55 +0100493 }
494}
495
496/**
Alan Coxc65c9bc2009-06-11 12:50:12 +0100497 * tty_ldisc_halt - shut down the line discipline
Alan Coxe8b70e72009-06-11 12:48:02 +0100498 * @tty: tty device
499 *
500 * Shut down the line discipline and work queue for this tty device.
501 * The TTY_LDISC flag being cleared ensures no further references can
502 * be obtained while the delayed work queue halt ensures that no more
503 * data is fed to the ldisc.
504 *
Linus Torvalds5c58cef2009-08-25 09:12:43 -0700505 * You need to do a 'flush_scheduled_work()' (outside the ldisc_mutex)
506 * in order to make sure any currently executing ldisc work is also
507 * flushed.
Alan Coxe8b70e72009-06-11 12:48:02 +0100508 */
509
Alan Coxc65c9bc2009-06-11 12:50:12 +0100510static int tty_ldisc_halt(struct tty_struct *tty)
Alan Coxe8b70e72009-06-11 12:48:02 +0100511{
512 clear_bit(TTY_LDISC, &tty->flags);
Linus Torvaldsf23eb2b2011-03-22 16:17:32 -0700513 return cancel_work_sync(&tty->buf.work);
Alan Coxe8b70e72009-06-11 12:48:02 +0100514}
515
516/**
Tejun Heo0a1f1a02011-01-24 17:54:12 +0100517 * tty_ldisc_flush_works - flush all works of a tty
518 * @tty: tty device to flush works for
519 *
520 * Sync flush all works belonging to @tty.
521 */
522static void tty_ldisc_flush_works(struct tty_struct *tty)
523{
524 flush_work_sync(&tty->hangup_work);
525 flush_work_sync(&tty->SAK_work);
Linus Torvaldsf23eb2b2011-03-22 16:17:32 -0700526 flush_work_sync(&tty->buf.work);
Tejun Heo0a1f1a02011-01-24 17:54:12 +0100527}
528
529/**
Jiri Slaby100eeae2010-10-31 23:17:51 +0100530 * tty_ldisc_wait_idle - wait for the ldisc to become idle
531 * @tty: tty to wait for
532 *
533 * Wait for the line discipline to become idle. The discipline must
534 * have been halted for this to guarantee it remains idle.
535 */
536static int tty_ldisc_wait_idle(struct tty_struct *tty)
537{
538 int ret;
Jiri Slaby92f6fa02011-06-05 14:16:16 +0200539 ret = wait_event_timeout(tty_ldisc_idle,
Jiri Slaby100eeae2010-10-31 23:17:51 +0100540 atomic_read(&tty->ldisc->users) == 1, 5 * HZ);
Jiri Slaby100eeae2010-10-31 23:17:51 +0100541 return ret > 0 ? 0 : -EBUSY;
542}
543
544/**
Alan Cox01e1abb2008-07-22 11:16:55 +0100545 * tty_set_ldisc - set line discipline
546 * @tty: the terminal to set
547 * @ldisc: the line discipline
548 *
549 * Set the discipline of a tty line. Must be called from a process
Alan Coxc65c9bc2009-06-11 12:50:12 +0100550 * context. The ldisc change logic has to protect itself against any
551 * overlapping ldisc change (including on the other end of pty pairs),
552 * the close of one side of a tty/pty pair, and eventually hangup.
Alan Cox01e1abb2008-07-22 11:16:55 +0100553 *
Alan Coxc65c9bc2009-06-11 12:50:12 +0100554 * Locking: takes tty_ldisc_lock, termios_mutex
Alan Cox01e1abb2008-07-22 11:16:55 +0100555 */
556
557int tty_set_ldisc(struct tty_struct *tty, int ldisc)
558{
559 int retval;
Alan Coxc65c9bc2009-06-11 12:50:12 +0100560 struct tty_ldisc *o_ldisc, *new_ldisc;
561 int work, o_work = 0;
Alan Cox01e1abb2008-07-22 11:16:55 +0100562 struct tty_struct *o_tty;
563
Alan Coxc65c9bc2009-06-11 12:50:12 +0100564 new_ldisc = tty_ldisc_get(ldisc);
565 if (IS_ERR(new_ldisc))
566 return PTR_ERR(new_ldisc);
567
Arnd Bergmannec79d602010-06-01 22:53:01 +0200568 tty_lock();
Alan Coxc65c9bc2009-06-11 12:50:12 +0100569 /*
570 * We need to look at the tty locking here for pty/tty pairs
571 * when both sides try to change in parallel.
572 */
573
574 o_tty = tty->link; /* o_tty is the pty side or NULL */
575
576
577 /*
578 * Check the no-op case
579 */
580
581 if (tty->ldisc->ops->num == ldisc) {
Arnd Bergmannec79d602010-06-01 22:53:01 +0200582 tty_unlock();
Alan Coxc65c9bc2009-06-11 12:50:12 +0100583 tty_ldisc_put(new_ldisc);
584 return 0;
585 }
Alan Cox01e1abb2008-07-22 11:16:55 +0100586
Arnd Bergmannec79d602010-06-01 22:53:01 +0200587 tty_unlock();
Alan Cox01e1abb2008-07-22 11:16:55 +0100588 /*
589 * Problem: What do we do if this blocks ?
Alan Coxc65c9bc2009-06-11 12:50:12 +0100590 * We could deadlock here
Alan Cox01e1abb2008-07-22 11:16:55 +0100591 */
592
593 tty_wait_until_sent(tty, 0);
594
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200595 tty_lock();
Alan Coxc65c9bc2009-06-11 12:50:12 +0100596 mutex_lock(&tty->ldisc_mutex);
Alan Cox01e1abb2008-07-22 11:16:55 +0100597
598 /*
Alan Coxc65c9bc2009-06-11 12:50:12 +0100599 * We could be midstream of another ldisc change which has
600 * dropped the lock during processing. If so we need to wait.
601 */
602
603 while (test_bit(TTY_LDISC_CHANGING, &tty->flags)) {
604 mutex_unlock(&tty->ldisc_mutex);
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200605 tty_unlock();
Alan Coxc65c9bc2009-06-11 12:50:12 +0100606 wait_event(tty_ldisc_wait,
607 test_bit(TTY_LDISC_CHANGING, &tty->flags) == 0);
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200608 tty_lock();
Alan Coxc65c9bc2009-06-11 12:50:12 +0100609 mutex_lock(&tty->ldisc_mutex);
610 }
Alan Coxeeb89d92009-11-30 13:18:29 +0000611
Alan Coxc65c9bc2009-06-11 12:50:12 +0100612 set_bit(TTY_LDISC_CHANGING, &tty->flags);
Alan Cox852e99d2009-06-11 12:51:41 +0100613
Alan Coxc65c9bc2009-06-11 12:50:12 +0100614 /*
Alan Cox01e1abb2008-07-22 11:16:55 +0100615 * No more input please, we are switching. The new ldisc
616 * will update this value in the ldisc open function
617 */
618
619 tty->receive_room = 0;
620
621 o_ldisc = tty->ldisc;
Alan Coxeeb89d92009-11-30 13:18:29 +0000622
Arnd Bergmannec79d602010-06-01 22:53:01 +0200623 tty_unlock();
Alan Cox01e1abb2008-07-22 11:16:55 +0100624 /*
625 * Make sure we don't change while someone holds a
626 * reference to the line discipline. The TTY_LDISC bit
627 * prevents anyone taking a reference once it is clear.
628 * We need the lock to avoid racing reference takers.
Alan Coxc9b39762009-01-02 13:44:56 +0000629 *
630 * We must clear the TTY_LDISC bit here to avoid a livelock
631 * with a userspace app continually trying to use the tty in
632 * parallel to the change and re-referencing the tty.
Alan Cox01e1abb2008-07-22 11:16:55 +0100633 */
634
Alan Coxc65c9bc2009-06-11 12:50:12 +0100635 work = tty_ldisc_halt(tty);
Alan Cox01e1abb2008-07-22 11:16:55 +0100636 if (o_tty)
Alan Coxc65c9bc2009-06-11 12:50:12 +0100637 o_work = tty_ldisc_halt(o_tty);
638
Alan Cox01e1abb2008-07-22 11:16:55 +0100639 /*
Alan Coxc65c9bc2009-06-11 12:50:12 +0100640 * Wait for ->hangup_work and ->buf.work handlers to terminate.
641 * We must drop the mutex here in case a hangup is also in process.
Alan Cox01e1abb2008-07-22 11:16:55 +0100642 */
643
Alan Coxc65c9bc2009-06-11 12:50:12 +0100644 mutex_unlock(&tty->ldisc_mutex);
645
Tejun Heo0a1f1a02011-01-24 17:54:12 +0100646 tty_ldisc_flush_works(tty);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100647
Jiri Slaby100eeae2010-10-31 23:17:51 +0100648 retval = tty_ldisc_wait_idle(tty);
649
Arnd Bergmannec79d602010-06-01 22:53:01 +0200650 tty_lock();
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200651 mutex_lock(&tty->ldisc_mutex);
Jiri Slaby100eeae2010-10-31 23:17:51 +0100652
653 /* handle wait idle failure locked */
654 if (retval) {
655 tty_ldisc_put(new_ldisc);
656 goto enable;
657 }
658
Alan Coxc65c9bc2009-06-11 12:50:12 +0100659 if (test_bit(TTY_HUPPED, &tty->flags)) {
660 /* We were raced by the hangup method. It will have stomped
661 the ldisc data and closed the ldisc down */
662 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
663 mutex_unlock(&tty->ldisc_mutex);
664 tty_ldisc_put(new_ldisc);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200665 tty_unlock();
Alan Coxc65c9bc2009-06-11 12:50:12 +0100666 return -EIO;
667 }
668
Alan Cox01e1abb2008-07-22 11:16:55 +0100669 /* Shutdown the current discipline. */
Alan Coxc65c9bc2009-06-11 12:50:12 +0100670 tty_ldisc_close(tty, o_ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100671
672 /* Now set up the new line discipline. */
Alan Coxc65c9bc2009-06-11 12:50:12 +0100673 tty_ldisc_assign(tty, new_ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100674 tty_set_termios_ldisc(tty, ldisc);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100675
676 retval = tty_ldisc_open(tty, new_ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100677 if (retval < 0) {
Alan Coxc65c9bc2009-06-11 12:50:12 +0100678 /* Back to the old one or N_TTY if we can't */
679 tty_ldisc_put(new_ldisc);
680 tty_ldisc_restore(tty, o_ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100681 }
Alan Coxc65c9bc2009-06-11 12:50:12 +0100682
Alan Cox01e1abb2008-07-22 11:16:55 +0100683 /* At this point we hold a reference to the new ldisc and a
684 a reference to the old ldisc. If we ended up flipping back
685 to the existing ldisc we have two references to it */
686
Alan Coxc65c9bc2009-06-11 12:50:12 +0100687 if (tty->ldisc->ops->num != o_ldisc->ops->num && tty->ops->set_ldisc)
Alan Cox01e1abb2008-07-22 11:16:55 +0100688 tty->ops->set_ldisc(tty);
689
Alan Coxc65c9bc2009-06-11 12:50:12 +0100690 tty_ldisc_put(o_ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100691
Jiri Slaby100eeae2010-10-31 23:17:51 +0100692enable:
Alan Cox01e1abb2008-07-22 11:16:55 +0100693 /*
Alan Coxc65c9bc2009-06-11 12:50:12 +0100694 * Allow ldisc referencing to occur again
Alan Cox01e1abb2008-07-22 11:16:55 +0100695 */
696
697 tty_ldisc_enable(tty);
698 if (o_tty)
699 tty_ldisc_enable(o_tty);
700
Alan Coxc65c9bc2009-06-11 12:50:12 +0100701 /* Restart the work queue in case no characters kick it off. Safe if
Alan Cox01e1abb2008-07-22 11:16:55 +0100702 already running */
703 if (work)
Linus Torvaldsf23eb2b2011-03-22 16:17:32 -0700704 schedule_work(&tty->buf.work);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100705 if (o_work)
Linus Torvaldsf23eb2b2011-03-22 16:17:32 -0700706 schedule_work(&o_tty->buf.work);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100707 mutex_unlock(&tty->ldisc_mutex);
Arnd Bergmannec79d602010-06-01 22:53:01 +0200708 tty_unlock();
Alan Cox01e1abb2008-07-22 11:16:55 +0100709 return retval;
710}
711
Alan Coxc65c9bc2009-06-11 12:50:12 +0100712/**
713 * tty_reset_termios - reset terminal state
714 * @tty: tty to reset
715 *
716 * Restore a terminal to the driver default state.
717 */
718
719static void tty_reset_termios(struct tty_struct *tty)
720{
721 mutex_lock(&tty->termios_mutex);
722 *tty->termios = tty->driver->init_termios;
723 tty->termios->c_ispeed = tty_termios_input_baud_rate(tty->termios);
724 tty->termios->c_ospeed = tty_termios_baud_rate(tty->termios);
725 mutex_unlock(&tty->termios_mutex);
726}
727
728
729/**
730 * tty_ldisc_reinit - reinitialise the tty ldisc
731 * @tty: tty to reinit
Alan Cox638b9642010-02-08 10:09:26 +0000732 * @ldisc: line discipline to reinitialize
Alan Coxc65c9bc2009-06-11 12:50:12 +0100733 *
Alan Cox638b9642010-02-08 10:09:26 +0000734 * Switch the tty to a line discipline and leave the ldisc
735 * state closed
Alan Coxc65c9bc2009-06-11 12:50:12 +0100736 */
737
Philippe Rétornaz1c95ba12010-10-27 17:13:21 +0200738static int tty_ldisc_reinit(struct tty_struct *tty, int ldisc)
Alan Coxc65c9bc2009-06-11 12:50:12 +0100739{
Philippe Rétornaz1c95ba12010-10-27 17:13:21 +0200740 struct tty_ldisc *ld = tty_ldisc_get(ldisc);
741
742 if (IS_ERR(ld))
743 return -1;
Alan Coxc65c9bc2009-06-11 12:50:12 +0100744
Jiri Slaby92f6fa02011-06-05 14:16:16 +0200745 WARN_ON_ONCE(tty_ldisc_wait_idle(tty));
746
Alan Coxc65c9bc2009-06-11 12:50:12 +0100747 tty_ldisc_close(tty, tty->ldisc);
748 tty_ldisc_put(tty->ldisc);
749 tty->ldisc = NULL;
750 /*
751 * Switch the line discipline back
752 */
Alan Coxc65c9bc2009-06-11 12:50:12 +0100753 tty_ldisc_assign(tty, ld);
Alan Cox638b9642010-02-08 10:09:26 +0000754 tty_set_termios_ldisc(tty, ldisc);
Philippe Rétornaz1c95ba12010-10-27 17:13:21 +0200755
756 return 0;
Alan Coxc65c9bc2009-06-11 12:50:12 +0100757}
758
759/**
760 * tty_ldisc_hangup - hangup ldisc reset
761 * @tty: tty being hung up
762 *
763 * Some tty devices reset their termios when they receive a hangup
764 * event. In that situation we must also switch back to N_TTY properly
765 * before we reset the termios data.
766 *
767 * Locking: We can take the ldisc mutex as the rest of the code is
768 * careful to allow for this.
769 *
770 * In the pty pair case this occurs in the close() path of the
771 * tty itself so we must be careful about locking rules.
772 */
773
774void tty_ldisc_hangup(struct tty_struct *tty)
775{
776 struct tty_ldisc *ld;
Alan Cox638b9642010-02-08 10:09:26 +0000777 int reset = tty->driver->flags & TTY_DRIVER_RESET_TERMIOS;
778 int err = 0;
Alan Coxc65c9bc2009-06-11 12:50:12 +0100779
780 /*
781 * FIXME! What are the locking issues here? This may me overdoing
782 * things... This question is especially important now that we've
783 * removed the irqlock.
784 */
785 ld = tty_ldisc_ref(tty);
786 if (ld != NULL) {
787 /* We may have no line discipline at this point */
788 if (ld->ops->flush_buffer)
789 ld->ops->flush_buffer(tty);
790 tty_driver_flush_buffer(tty);
791 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
792 ld->ops->write_wakeup)
793 ld->ops->write_wakeup(tty);
794 if (ld->ops->hangup)
795 ld->ops->hangup(tty);
796 tty_ldisc_deref(ld);
797 }
798 /*
799 * FIXME: Once we trust the LDISC code better we can wait here for
800 * ldisc completion and fix the driver call race
801 */
802 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
803 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
804 /*
805 * Shutdown the current line discipline, and reset it to
Alan Cox638b9642010-02-08 10:09:26 +0000806 * N_TTY if need be.
807 *
808 * Avoid racing set_ldisc or tty_ldisc_release
Alan Coxc65c9bc2009-06-11 12:50:12 +0100809 */
Alan Cox638b9642010-02-08 10:09:26 +0000810 mutex_lock(&tty->ldisc_mutex);
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200811
812 /*
813 * this is like tty_ldisc_halt, but we need to give up
Linus Torvaldsf23eb2b2011-03-22 16:17:32 -0700814 * the BTM before calling cancel_work_sync, which may
815 * need to wait for another function taking the BTM
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200816 */
817 clear_bit(TTY_LDISC, &tty->flags);
818 tty_unlock();
Linus Torvaldsf23eb2b2011-03-22 16:17:32 -0700819 cancel_work_sync(&tty->buf.work);
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200820 mutex_unlock(&tty->ldisc_mutex);
821
822 tty_lock();
823 mutex_lock(&tty->ldisc_mutex);
824
Alan Cox638b9642010-02-08 10:09:26 +0000825 /* At this point we have a closed ldisc and we want to
826 reopen it. We could defer this to the next open but
827 it means auditing a lot of other paths so this is
828 a FIXME */
829 if (tty->ldisc) { /* Not yet closed */
830 if (reset == 0) {
Philippe Rétornaz1c95ba12010-10-27 17:13:21 +0200831
832 if (!tty_ldisc_reinit(tty, tty->termios->c_line))
833 err = tty_ldisc_open(tty, tty->ldisc);
834 else
835 err = 1;
Alan Coxc8d50042009-07-16 16:05:08 +0100836 }
Alan Cox638b9642010-02-08 10:09:26 +0000837 /* If the re-open fails or we reset then go to N_TTY. The
838 N_TTY open cannot fail */
839 if (reset || err) {
Philippe Rétornaz1c95ba12010-10-27 17:13:21 +0200840 BUG_ON(tty_ldisc_reinit(tty, N_TTY));
Alan Cox638b9642010-02-08 10:09:26 +0000841 WARN_ON(tty_ldisc_open(tty, tty->ldisc));
842 }
843 tty_ldisc_enable(tty);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100844 }
Alan Cox638b9642010-02-08 10:09:26 +0000845 mutex_unlock(&tty->ldisc_mutex);
846 if (reset)
847 tty_reset_termios(tty);
Alan Coxc65c9bc2009-06-11 12:50:12 +0100848}
Alan Cox01e1abb2008-07-22 11:16:55 +0100849
850/**
851 * tty_ldisc_setup - open line discipline
852 * @tty: tty being shut down
853 * @o_tty: pair tty for pty/tty pairs
854 *
855 * Called during the initial open of a tty/pty pair in order to set up the
Alan Coxc65c9bc2009-06-11 12:50:12 +0100856 * line disciplines and bind them to the tty. This has no locking issues
857 * as the device isn't yet active.
Alan Cox01e1abb2008-07-22 11:16:55 +0100858 */
859
860int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty)
861{
Alan Coxc65c9bc2009-06-11 12:50:12 +0100862 struct tty_ldisc *ld = tty->ldisc;
Alan Cox01e1abb2008-07-22 11:16:55 +0100863 int retval;
864
Alan Coxc65c9bc2009-06-11 12:50:12 +0100865 retval = tty_ldisc_open(tty, ld);
866 if (retval)
867 return retval;
868
869 if (o_tty) {
870 retval = tty_ldisc_open(o_tty, o_tty->ldisc);
Alan Cox01e1abb2008-07-22 11:16:55 +0100871 if (retval) {
Alan Coxc65c9bc2009-06-11 12:50:12 +0100872 tty_ldisc_close(tty, ld);
Alan Cox01e1abb2008-07-22 11:16:55 +0100873 return retval;
874 }
875 tty_ldisc_enable(o_tty);
876 }
877 tty_ldisc_enable(tty);
878 return 0;
879}
Alan Cox01e1abb2008-07-22 11:16:55 +0100880/**
881 * tty_ldisc_release - release line discipline
882 * @tty: tty being shut down
883 * @o_tty: pair tty for pty/tty pairs
884 *
Alan Cox852e99d2009-06-11 12:51:41 +0100885 * Called during the final close of a tty/pty pair in order to shut down
886 * the line discpline layer. On exit the ldisc assigned is N_TTY and the
Alan Coxc65c9bc2009-06-11 12:50:12 +0100887 * ldisc has not been opened.
Alan Cox01e1abb2008-07-22 11:16:55 +0100888 */
889
890void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty)
891{
Alan Cox01e1abb2008-07-22 11:16:55 +0100892 /*
893 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
894 * kill any delayed work. As this is the final close it does not
895 * race with the set_ldisc code path.
896 */
Alan Cox01e1abb2008-07-22 11:16:55 +0100897
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200898 tty_unlock();
Alan Coxe8b70e72009-06-11 12:48:02 +0100899 tty_ldisc_halt(tty);
Tejun Heo0a1f1a02011-01-24 17:54:12 +0100900 tty_ldisc_flush_works(tty);
Arnd Bergmann60af22d2010-06-01 22:53:06 +0200901 tty_lock();
Alan Cox01e1abb2008-07-22 11:16:55 +0100902
Alan Coxc8d50042009-07-16 16:05:08 +0100903 mutex_lock(&tty->ldisc_mutex);
Alan Cox01e1abb2008-07-22 11:16:55 +0100904 /*
Alan Coxaef29bc2009-06-29 15:21:47 +0100905 * Now kill off the ldisc
Alan Cox01e1abb2008-07-22 11:16:55 +0100906 */
Alan Coxaef29bc2009-06-29 15:21:47 +0100907 tty_ldisc_close(tty, tty->ldisc);
908 tty_ldisc_put(tty->ldisc);
909 /* Force an oops if we mess this up */
910 tty->ldisc = NULL;
Alan Cox01e1abb2008-07-22 11:16:55 +0100911
Alan Coxaef29bc2009-06-29 15:21:47 +0100912 /* Ensure the next open requests the N_TTY ldisc */
913 tty_set_termios_ldisc(tty, N_TTY);
Alan Coxc8d50042009-07-16 16:05:08 +0100914 mutex_unlock(&tty->ldisc_mutex);
Alan Coxaef29bc2009-06-29 15:21:47 +0100915
Alan Coxc65c9bc2009-06-11 12:50:12 +0100916 /* This will need doing differently if we need to lock */
917 if (o_tty)
918 tty_ldisc_release(o_tty, NULL);
Alan Coxaef29bc2009-06-29 15:21:47 +0100919
920 /* And the memory resources remaining (buffers, termios) will be
921 disposed of when the kref hits zero */
Alan Cox01e1abb2008-07-22 11:16:55 +0100922}
923
924/**
925 * tty_ldisc_init - ldisc setup for new tty
926 * @tty: tty being allocated
927 *
928 * Set up the line discipline objects for a newly allocated tty. Note that
929 * the tty structure is not completely set up when this call is made.
930 */
931
932void tty_ldisc_init(struct tty_struct *tty)
933{
Alan Coxc65c9bc2009-06-11 12:50:12 +0100934 struct tty_ldisc *ld = tty_ldisc_get(N_TTY);
935 if (IS_ERR(ld))
Alan Cox01e1abb2008-07-22 11:16:55 +0100936 panic("n_tty: init_tty");
Alan Coxc65c9bc2009-06-11 12:50:12 +0100937 tty_ldisc_assign(tty, ld);
Alan Cox01e1abb2008-07-22 11:16:55 +0100938}
939
Jiri Slaby67166712011-03-23 10:48:35 +0100940/**
941 * tty_ldisc_init - ldisc cleanup for new tty
942 * @tty: tty that was allocated recently
943 *
944 * The tty structure must not becompletely set up (tty_ldisc_setup) when
945 * this call is made.
946 */
947void tty_ldisc_deinit(struct tty_struct *tty)
948{
949 put_ldisc(tty->ldisc);
950 tty_ldisc_assign(tty, NULL);
951}
952
Alan Cox01e1abb2008-07-22 11:16:55 +0100953void tty_ldisc_begin(void)
954{
955 /* Setup the default TTY line discipline. */
956 (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);
957}