]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/char/tty_ldisc.c
tty: moxa: split open lock
[mirror_ubuntu-eoan-kernel.git] / drivers / char / tty_ldisc.c
CommitLineData
01e1abb2
AC
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>
01e1abb2
AC
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>
01e1abb2
AC
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>
29
30#include <linux/uaccess.h>
31#include <asm/system.h>
32
33#include <linux/kbd_kern.h>
34#include <linux/vt_kern.h>
35#include <linux/selection.h>
36
37#include <linux/kmod.h>
38#include <linux/nsproxy.h>
39
40/*
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.
44 */
45
46static DEFINE_SPINLOCK(tty_ldisc_lock);
47static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
48/* Line disc dispatch table */
49static struct tty_ldisc_ops *tty_ldiscs[NR_LDISCS];
50
65b77046
LT
51static inline struct tty_ldisc *get_ldisc(struct tty_ldisc *ld)
52{
53 if (ld)
54 atomic_inc(&ld->users);
55 return ld;
56}
57
cbe9352f 58static void put_ldisc(struct tty_ldisc *ld)
65b77046 59{
cbe9352f
LT
60 unsigned long flags;
61
65b77046
LT
62 if (WARN_ON_ONCE(!ld))
63 return;
64
65 /*
66 * If this is the last user, free the ldisc, and
67 * release the ldisc ops.
cbe9352f
LT
68 *
69 * We really want an "atomic_dec_and_lock_irqsave()",
70 * but we don't have it, so this does it by hand.
65b77046 71 */
cbe9352f
LT
72 local_irq_save(flags);
73 if (atomic_dec_and_lock(&ld->users, &tty_ldisc_lock)) {
65b77046
LT
74 struct tty_ldisc_ops *ldo = ld->ops;
75
65b77046
LT
76 ldo->refcount--;
77 module_put(ldo->owner);
78 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
cbe9352f
LT
79
80 kfree(ld);
81 return;
65b77046 82 }
cbe9352f 83 local_irq_restore(flags);
65b77046
LT
84}
85
01e1abb2
AC
86/**
87 * tty_register_ldisc - install a line discipline
88 * @disc: ldisc number
89 * @new_ldisc: pointer to the ldisc object
90 *
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.
94 *
95 * Locking:
96 * takes tty_ldisc_lock to guard against ldisc races
97 */
98
99int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc)
100{
101 unsigned long flags;
102 int ret = 0;
103
104 if (disc < N_TTY || disc >= NR_LDISCS)
105 return -EINVAL;
106
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);
112
113 return ret;
114}
115EXPORT_SYMBOL(tty_register_ldisc);
116
117/**
118 * tty_unregister_ldisc - unload a line discipline
119 * @disc: ldisc number
120 * @new_ldisc: pointer to the ldisc object
121 *
122 * Remove a line discipline from the kernel providing it is not
123 * currently in use.
124 *
125 * Locking:
126 * takes tty_ldisc_lock to guard against ldisc races
127 */
128
129int tty_unregister_ldisc(int disc)
130{
131 unsigned long flags;
132 int ret = 0;
133
134 if (disc < N_TTY || disc >= NR_LDISCS)
135 return -EINVAL;
136
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);
143
144 return ret;
145}
146EXPORT_SYMBOL(tty_unregister_ldisc);
147
f0de0e8d
LT
148static struct tty_ldisc_ops *get_ldops(int disc)
149{
150 unsigned long flags;
151 struct tty_ldisc_ops *ldops, *ret;
152
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;
161 }
162 }
163 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
164 return ret;
165}
166
167static void put_ldops(struct tty_ldisc_ops *ldops)
168{
169 unsigned long flags;
170
171 spin_lock_irqsave(&tty_ldisc_lock, flags);
172 ldops->refcount--;
173 module_put(ldops->owner);
174 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
175}
01e1abb2 176
01e1abb2
AC
177/**
178 * tty_ldisc_get - take a reference to an ldisc
179 * @disc: ldisc number
01e1abb2
AC
180 *
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
185 *
186 * Locking:
187 * takes tty_ldisc_lock to guard against ldisc races
188 */
189
c65c9bc3 190static struct tty_ldisc *tty_ldisc_get(int disc)
01e1abb2 191{
c65c9bc3 192 struct tty_ldisc *ld;
182274f8 193 struct tty_ldisc_ops *ldops;
01e1abb2
AC
194
195 if (disc < N_TTY || disc >= NR_LDISCS)
c65c9bc3 196 return ERR_PTR(-EINVAL);
182274f8
LT
197
198 /*
199 * Get the ldisc ops - we may need to request them to be loaded
200 * dynamically and try again.
201 */
202 ldops = get_ldops(disc);
203 if (IS_ERR(ldops)) {
01e1abb2 204 request_module("tty-ldisc-%d", disc);
182274f8
LT
205 ldops = get_ldops(disc);
206 if (IS_ERR(ldops))
207 return ERR_CAST(ldops);
208 }
209
210 ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL);
211 if (ld == NULL) {
212 put_ldops(ldops);
213 return ERR_PTR(-ENOMEM);
01e1abb2 214 }
182274f8
LT
215
216 ld->ops = ldops;
217 atomic_set(&ld->users, 1);
c65c9bc3 218 return ld;
01e1abb2
AC
219}
220
852e99d2 221static void *tty_ldiscs_seq_start(struct seq_file *m, loff_t *pos)
01e1abb2
AC
222{
223 return (*pos < NR_LDISCS) ? pos : NULL;
224}
225
852e99d2 226static void *tty_ldiscs_seq_next(struct seq_file *m, void *v, loff_t *pos)
01e1abb2
AC
227{
228 (*pos)++;
229 return (*pos < NR_LDISCS) ? pos : NULL;
230}
231
232static void tty_ldiscs_seq_stop(struct seq_file *m, void *v)
233{
234}
235
236static int tty_ldiscs_seq_show(struct seq_file *m, void *v)
237{
238 int i = *(loff_t *)v;
f0de0e8d 239 struct tty_ldisc_ops *ldops;
852e99d2 240
f0de0e8d
LT
241 ldops = get_ldops(i);
242 if (IS_ERR(ldops))
01e1abb2 243 return 0;
f0de0e8d
LT
244 seq_printf(m, "%-10s %2d\n", ldops->name ? ldops->name : "???", i);
245 put_ldops(ldops);
01e1abb2
AC
246 return 0;
247}
248
249static 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,
254};
255
256static int proc_tty_ldiscs_open(struct inode *inode, struct file *file)
257{
258 return seq_open(file, &tty_ldiscs_seq_ops);
259}
260
261const 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,
267};
268
269/**
270 * tty_ldisc_assign - set ldisc on a tty
271 * @tty: tty to assign
272 * @ld: line discipline
273 *
274 * Install an instance of a line discipline into a tty structure. The
8d2ead74 275 * ldisc must have a reference count above zero to ensure it remains.
01e1abb2
AC
276 * The tty instance refcount starts at zero.
277 *
278 * Locking:
279 * Caller must hold references
280 */
281
282static void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld)
283{
c65c9bc3 284 tty->ldisc = ld;
01e1abb2
AC
285}
286
287/**
288 * tty_ldisc_try - internal helper
289 * @tty: the tty
290 *
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
295 *
296 * Locking: takes tty_ldisc_lock
297 */
298
65b77046 299static struct tty_ldisc *tty_ldisc_try(struct tty_struct *tty)
01e1abb2
AC
300{
301 unsigned long flags;
302 struct tty_ldisc *ld;
01e1abb2
AC
303
304 spin_lock_irqsave(&tty_ldisc_lock, flags);
65b77046
LT
305 ld = NULL;
306 if (test_bit(TTY_LDISC, &tty->flags))
307 ld = get_ldisc(tty->ldisc);
01e1abb2 308 spin_unlock_irqrestore(&tty_ldisc_lock, flags);
65b77046 309 return ld;
01e1abb2
AC
310}
311
312/**
313 * tty_ldisc_ref_wait - wait for the tty ldisc
314 * @tty: tty device
315 *
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.
319 *
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)
324 *
325 * Locking: call functions take tty_ldisc_lock
326 */
327
328struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
329{
65b77046
LT
330 struct tty_ldisc *ld;
331
01e1abb2 332 /* wait_event is a macro */
65b77046
LT
333 wait_event(tty_ldisc_wait, (ld = tty_ldisc_try(tty)) != NULL);
334 return ld;
01e1abb2 335}
01e1abb2
AC
336EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);
337
338/**
339 * tty_ldisc_ref - get the tty ldisc
340 * @tty: tty device
341 *
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.
345 *
346 * Locking: called functions take tty_ldisc_lock
347 */
348
349struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
350{
65b77046 351 return tty_ldisc_try(tty);
01e1abb2 352}
01e1abb2
AC
353EXPORT_SYMBOL_GPL(tty_ldisc_ref);
354
355/**
356 * tty_ldisc_deref - free a tty ldisc reference
357 * @ld: reference to free up
358 *
359 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
360 * be called in IRQ context.
361 *
362 * Locking: takes tty_ldisc_lock
363 */
364
365void tty_ldisc_deref(struct tty_ldisc *ld)
366{
65b77046 367 put_ldisc(ld);
01e1abb2 368}
01e1abb2
AC
369EXPORT_SYMBOL_GPL(tty_ldisc_deref);
370
65b77046
LT
371static inline void tty_ldisc_put(struct tty_ldisc *ld)
372{
373 put_ldisc(ld);
374}
375
01e1abb2
AC
376/**
377 * tty_ldisc_enable - allow ldisc use
378 * @tty: terminal to activate ldisc on
379 *
380 * Set the TTY_LDISC flag when the line discipline can be called
c9b3976e
AC
381 * again. Do necessary wakeups for existing sleepers. Clear the LDISC
382 * changing flag to indicate any ldisc change is now over.
01e1abb2 383 *
c9b3976e
AC
384 * Note: nobody should set the TTY_LDISC bit except via this function.
385 * Clearing directly is allowed.
01e1abb2
AC
386 */
387
388void tty_ldisc_enable(struct tty_struct *tty)
389{
390 set_bit(TTY_LDISC, &tty->flags);
c9b3976e 391 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
01e1abb2
AC
392 wake_up(&tty_ldisc_wait);
393}
394
f2c4c65c
AC
395/**
396 * tty_ldisc_flush - flush line discipline queue
397 * @tty: tty
398 *
399 * Flush the line discipline queue (if any) for this tty. If there
400 * is no line discipline active this is a no-op.
401 */
402
403void tty_ldisc_flush(struct tty_struct *tty)
404{
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);
410 }
411 tty_buffer_flush(tty);
412}
f2c4c65c
AC
413EXPORT_SYMBOL_GPL(tty_ldisc_flush);
414
01e1abb2
AC
415/**
416 * tty_set_termios_ldisc - set ldisc field
417 * @tty: tty structure
418 * @num: line discipline number
419 *
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.
423 *
424 * Locking: takes termios_mutex
425 */
426
427static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
428{
429 mutex_lock(&tty->termios_mutex);
430 tty->termios->c_line = num;
431 mutex_unlock(&tty->termios_mutex);
432}
433
c65c9bc3
AC
434/**
435 * tty_ldisc_open - open a line discipline
436 * @tty: tty we are opening the ldisc on
437 * @ld: discipline to open
438 *
439 * A helper opening method. Also a convenient debugging and check
440 * point.
441 */
442
443static int tty_ldisc_open(struct tty_struct *tty, struct tty_ldisc *ld)
444{
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;
449}
450
451/**
452 * tty_ldisc_close - close a line discipline
453 * @tty: tty we are opening the ldisc on
454 * @ld: discipline to close
455 *
456 * A helper close method. Also a convenient debugging and check
457 * point.
458 */
459
460static void tty_ldisc_close(struct tty_struct *tty, struct tty_ldisc *ld)
461{
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);
466}
01e1abb2
AC
467
468/**
469 * tty_ldisc_restore - helper for tty ldisc change
470 * @tty: tty to recover
471 * @old: previous ldisc
472 *
473 * Restore the previous line discipline or N_TTY when a line discipline
474 * change fails due to an open error
475 */
476
477static void tty_ldisc_restore(struct tty_struct *tty, struct tty_ldisc *old)
478{
479 char buf[64];
c65c9bc3
AC
480 struct tty_ldisc *new_ldisc;
481 int r;
01e1abb2
AC
482
483 /* There is an outstanding reference here so this is safe */
c65c9bc3
AC
484 old = tty_ldisc_get(old->ops->num);
485 WARN_ON(IS_ERR(old));
01e1abb2
AC
486 tty_ldisc_assign(tty, old);
487 tty_set_termios_ldisc(tty, old->ops->num);
c65c9bc3
AC
488 if (tty_ldisc_open(tty, old) < 0) {
489 tty_ldisc_put(old);
01e1abb2 490 /* This driver is always present */
852e99d2 491 new_ldisc = tty_ldisc_get(N_TTY);
c65c9bc3 492 if (IS_ERR(new_ldisc))
01e1abb2 493 panic("n_tty: get");
c65c9bc3 494 tty_ldisc_assign(tty, new_ldisc);
01e1abb2 495 tty_set_termios_ldisc(tty, N_TTY);
c65c9bc3
AC
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);
01e1abb2
AC
501 }
502}
503
e8b70e7d 504/**
c65c9bc3 505 * tty_ldisc_halt - shut down the line discipline
e8b70e7d
AC
506 * @tty: tty device
507 *
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.
512 *
5c58ceff
LT
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.
e8b70e7d
AC
516 */
517
c65c9bc3 518static int tty_ldisc_halt(struct tty_struct *tty)
e8b70e7d
AC
519{
520 clear_bit(TTY_LDISC, &tty->flags);
0b5759c6 521 return cancel_delayed_work_sync(&tty->buf.work);
e8b70e7d
AC
522}
523
01e1abb2
AC
524/**
525 * tty_set_ldisc - set line discipline
526 * @tty: the terminal to set
527 * @ldisc: the line discipline
528 *
529 * Set the discipline of a tty line. Must be called from a process
c65c9bc3
AC
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.
01e1abb2 533 *
c65c9bc3 534 * Locking: takes tty_ldisc_lock, termios_mutex
01e1abb2
AC
535 */
536
537int tty_set_ldisc(struct tty_struct *tty, int ldisc)
538{
539 int retval;
c65c9bc3
AC
540 struct tty_ldisc *o_ldisc, *new_ldisc;
541 int work, o_work = 0;
01e1abb2
AC
542 struct tty_struct *o_tty;
543
c65c9bc3
AC
544 new_ldisc = tty_ldisc_get(ldisc);
545 if (IS_ERR(new_ldisc))
546 return PTR_ERR(new_ldisc);
01e1abb2
AC
547
548 /*
c65c9bc3
AC
549 * We need to look at the tty locking here for pty/tty pairs
550 * when both sides try to change in parallel.
01e1abb2
AC
551 */
552
c65c9bc3
AC
553 o_tty = tty->link; /* o_tty is the pty side or NULL */
554
01e1abb2 555
c65c9bc3
AC
556 /*
557 * Check the no-op case
558 */
559
560 if (tty->ldisc->ops->num == ldisc) {
561 tty_ldisc_put(new_ldisc);
01e1abb2
AC
562 return 0;
563 }
564
c65c9bc3
AC
565 /*
566 * Problem: What do we do if this blocks ?
567 * We could deadlock here
568 */
569
570 tty_wait_until_sent(tty, 0);
571
572 mutex_lock(&tty->ldisc_mutex);
573
574 /*
575 * We could be midstream of another ldisc change which has
576 * dropped the lock during processing. If so we need to wait.
577 */
578
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);
584 }
585 set_bit(TTY_LDISC_CHANGING, &tty->flags);
852e99d2 586
01e1abb2
AC
587 /*
588 * No more input please, we are switching. The new ldisc
589 * will update this value in the ldisc open function
590 */
591
592 tty->receive_room = 0;
593
594 o_ldisc = tty->ldisc;
01e1abb2
AC
595 /*
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.
c9b3976e
AC
600 *
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.
01e1abb2
AC
604 */
605
c65c9bc3 606 work = tty_ldisc_halt(tty);
01e1abb2 607 if (o_tty)
c65c9bc3 608 o_work = tty_ldisc_halt(o_tty);
01e1abb2 609
01e1abb2 610 /*
c65c9bc3
AC
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.
01e1abb2 613 */
c65c9bc3
AC
614
615 mutex_unlock(&tty->ldisc_mutex);
616
01e1abb2 617 flush_scheduled_work();
c65c9bc3 618
c65c9bc3
AC
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;
627 }
628
01e1abb2 629 /* Shutdown the current discipline. */
c65c9bc3 630 tty_ldisc_close(tty, o_ldisc);
01e1abb2
AC
631
632 /* Now set up the new line discipline. */
c65c9bc3 633 tty_ldisc_assign(tty, new_ldisc);
01e1abb2 634 tty_set_termios_ldisc(tty, ldisc);
c65c9bc3
AC
635
636 retval = tty_ldisc_open(tty, new_ldisc);
01e1abb2 637 if (retval < 0) {
c65c9bc3
AC
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);
01e1abb2 641 }
c65c9bc3 642
01e1abb2
AC
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 */
646
c65c9bc3 647 if (tty->ldisc->ops->num != o_ldisc->ops->num && tty->ops->set_ldisc)
01e1abb2
AC
648 tty->ops->set_ldisc(tty);
649
c65c9bc3 650 tty_ldisc_put(o_ldisc);
01e1abb2
AC
651
652 /*
c65c9bc3 653 * Allow ldisc referencing to occur again
01e1abb2
AC
654 */
655
656 tty_ldisc_enable(tty);
657 if (o_tty)
658 tty_ldisc_enable(o_tty);
659
c65c9bc3 660 /* Restart the work queue in case no characters kick it off. Safe if
01e1abb2
AC
661 already running */
662 if (work)
663 schedule_delayed_work(&tty->buf.work, 1);
c65c9bc3
AC
664 if (o_work)
665 schedule_delayed_work(&o_tty->buf.work, 1);
666 mutex_unlock(&tty->ldisc_mutex);
01e1abb2
AC
667 return retval;
668}
669
c65c9bc3
AC
670/**
671 * tty_reset_termios - reset terminal state
672 * @tty: tty to reset
673 *
674 * Restore a terminal to the driver default state.
675 */
676
677static void tty_reset_termios(struct tty_struct *tty)
678{
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);
684}
685
686
687/**
688 * tty_ldisc_reinit - reinitialise the tty ldisc
689 * @tty: tty to reinit
690 *
691 * Switch the tty back to N_TTY line discipline and leave the
692 * ldisc state closed
693 */
694
695static void tty_ldisc_reinit(struct tty_struct *tty)
696{
697 struct tty_ldisc *ld;
698
699 tty_ldisc_close(tty, tty->ldisc);
700 tty_ldisc_put(tty->ldisc);
701 tty->ldisc = NULL;
702 /*
703 * Switch the line discipline back
704 */
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);
709}
710
711/**
712 * tty_ldisc_hangup - hangup ldisc reset
713 * @tty: tty being hung up
714 *
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.
718 *
719 * Locking: We can take the ldisc mutex as the rest of the code is
720 * careful to allow for this.
721 *
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.
724 */
725
726void tty_ldisc_hangup(struct tty_struct *tty)
727{
728 struct tty_ldisc *ld;
729
730 /*
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.
734 */
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);
747 }
748 /*
749 * FIXME: Once we trust the LDISC code better we can wait here for
750 * ldisc completion and fix the driver call race
751 */
752 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
753 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
754 /*
755 * Shutdown the current line discipline, and reset it to
756 * N_TTY.
757 */
758 if (tty->driver->flags & TTY_DRIVER_RESET_TERMIOS) {
c8d50041 759 /* Avoid racing set_ldisc or tty_ldisc_release */
c65c9bc3 760 mutex_lock(&tty->ldisc_mutex);
0b5759c6 761 tty_ldisc_halt(tty);
c8d50041
AC
762 if (tty->ldisc) { /* Not yet closed */
763 /* Switch back to N_TTY */
c8d50041
AC
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);
771 }
c65c9bc3
AC
772 mutex_unlock(&tty->ldisc_mutex);
773 tty_reset_termios(tty);
774 }
775}
01e1abb2
AC
776
777/**
778 * tty_ldisc_setup - open line discipline
779 * @tty: tty being shut down
780 * @o_tty: pair tty for pty/tty pairs
781 *
782 * Called during the initial open of a tty/pty pair in order to set up the
c65c9bc3
AC
783 * line disciplines and bind them to the tty. This has no locking issues
784 * as the device isn't yet active.
01e1abb2
AC
785 */
786
787int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty)
788{
c65c9bc3 789 struct tty_ldisc *ld = tty->ldisc;
01e1abb2
AC
790 int retval;
791
c65c9bc3
AC
792 retval = tty_ldisc_open(tty, ld);
793 if (retval)
794 return retval;
795
796 if (o_tty) {
797 retval = tty_ldisc_open(o_tty, o_tty->ldisc);
01e1abb2 798 if (retval) {
c65c9bc3 799 tty_ldisc_close(tty, ld);
01e1abb2
AC
800 return retval;
801 }
802 tty_ldisc_enable(o_tty);
803 }
804 tty_ldisc_enable(tty);
805 return 0;
806}
01e1abb2
AC
807/**
808 * tty_ldisc_release - release line discipline
809 * @tty: tty being shut down
810 * @o_tty: pair tty for pty/tty pairs
811 *
852e99d2
AC
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
c65c9bc3 814 * ldisc has not been opened.
01e1abb2
AC
815 */
816
817void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty)
818{
01e1abb2
AC
819 /*
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.
823 */
01e1abb2 824
e8b70e7d 825 tty_ldisc_halt(tty);
c65c9bc3 826 flush_scheduled_work();
01e1abb2 827
c8d50041 828 mutex_lock(&tty->ldisc_mutex);
01e1abb2 829 /*
aef29bc2 830 * Now kill off the ldisc
01e1abb2 831 */
aef29bc2
AC
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;
836
837 /* Ensure the next open requests the N_TTY ldisc */
838 tty_set_termios_ldisc(tty, N_TTY);
c8d50041 839 mutex_unlock(&tty->ldisc_mutex);
01e1abb2 840
c65c9bc3
AC
841 /* This will need doing differently if we need to lock */
842 if (o_tty)
843 tty_ldisc_release(o_tty, NULL);
aef29bc2
AC
844
845 /* And the memory resources remaining (buffers, termios) will be
846 disposed of when the kref hits zero */
01e1abb2
AC
847}
848
849/**
850 * tty_ldisc_init - ldisc setup for new tty
851 * @tty: tty being allocated
852 *
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.
855 */
856
857void tty_ldisc_init(struct tty_struct *tty)
858{
c65c9bc3
AC
859 struct tty_ldisc *ld = tty_ldisc_get(N_TTY);
860 if (IS_ERR(ld))
01e1abb2 861 panic("n_tty: init_tty");
c65c9bc3 862 tty_ldisc_assign(tty, ld);
01e1abb2
AC
863}
864
865void tty_ldisc_begin(void)
866{
867 /* Setup the default TTY line discipline. */
868 (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);
869}