tty: Complete ownership transfer of flip buffers
[deliverable/linux.git] / drivers / tty / tty_ldisc.c
CommitLineData
01e1abb2 1#include <linux/types.h>
01e1abb2 2#include <linux/errno.h>
8b3ffa17 3#include <linux/kmod.h>
01e1abb2
AC
4#include <linux/sched.h>
5#include <linux/interrupt.h>
6#include <linux/tty.h>
7#include <linux/tty_driver.h>
01e1abb2 8#include <linux/file.h>
01e1abb2
AC
9#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>
01e1abb2
AC
16#include <linux/device.h>
17#include <linux/wait.h>
18#include <linux/bitops.h>
01e1abb2 19#include <linux/seq_file.h>
01e1abb2 20#include <linux/uaccess.h>
0c73c08e 21#include <linux/ratelimit.h>
01e1abb2
AC
22
23/*
24 * This guards the refcounted line discipline lists. The lock
25 * must be taken with irqs off because there are hangup path
26 * callers who will do ldisc lookups and cannot sleep.
27 */
28
c9739941 29static DEFINE_RAW_SPINLOCK(tty_ldisc_lock);
01e1abb2
AC
30static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait);
31/* Line disc dispatch table */
32static struct tty_ldisc_ops *tty_ldiscs[NR_LDISCS];
33
65b77046
LT
34static inline struct tty_ldisc *get_ldisc(struct tty_ldisc *ld)
35{
36 if (ld)
37 atomic_inc(&ld->users);
38 return ld;
39}
40
cbe9352f 41static void put_ldisc(struct tty_ldisc *ld)
65b77046 42{
cbe9352f
LT
43 unsigned long flags;
44
65b77046
LT
45 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.
cbe9352f 51 *
c9739941 52 * We really want an "atomic_dec_and_raw_lock_irqsave()",
cbe9352f 53 * but we don't have it, so this does it by hand.
65b77046 54 */
c9739941
IS
55 raw_spin_lock_irqsave(&tty_ldisc_lock, flags);
56 if (atomic_dec_and_test(&ld->users)) {
65b77046
LT
57 struct tty_ldisc_ops *ldo = ld->ops;
58
65b77046
LT
59 ldo->refcount--;
60 module_put(ldo->owner);
c9739941 61 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
cbe9352f
LT
62
63 kfree(ld);
64 return;
65b77046 65 }
c9739941 66 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
bd5d7ce9
IS
67
68 if (waitqueue_active(&ld->wq_idle))
69 wake_up(&ld->wq_idle);
65b77046
LT
70}
71
01e1abb2
AC
72/**
73 * tty_register_ldisc - install a line discipline
74 * @disc: ldisc number
75 * @new_ldisc: pointer to the ldisc object
76 *
77 * Installs a new line discipline into the kernel. The discipline
78 * is set up as unreferenced and then made available to the kernel
79 * from this point onwards.
80 *
81 * Locking:
82 * takes tty_ldisc_lock to guard against ldisc races
83 */
84
85int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc)
86{
87 unsigned long flags;
88 int ret = 0;
89
90 if (disc < N_TTY || disc >= NR_LDISCS)
91 return -EINVAL;
92
c9739941 93 raw_spin_lock_irqsave(&tty_ldisc_lock, flags);
01e1abb2
AC
94 tty_ldiscs[disc] = new_ldisc;
95 new_ldisc->num = disc;
96 new_ldisc->refcount = 0;
c9739941 97 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
01e1abb2
AC
98
99 return ret;
100}
101EXPORT_SYMBOL(tty_register_ldisc);
102
103/**
104 * tty_unregister_ldisc - unload a line discipline
105 * @disc: ldisc number
106 * @new_ldisc: pointer to the ldisc object
107 *
108 * Remove a line discipline from the kernel providing it is not
109 * currently in use.
110 *
111 * Locking:
112 * takes tty_ldisc_lock to guard against ldisc races
113 */
114
115int tty_unregister_ldisc(int disc)
116{
117 unsigned long flags;
118 int ret = 0;
119
120 if (disc < N_TTY || disc >= NR_LDISCS)
121 return -EINVAL;
122
c9739941 123 raw_spin_lock_irqsave(&tty_ldisc_lock, flags);
01e1abb2
AC
124 if (tty_ldiscs[disc]->refcount)
125 ret = -EBUSY;
126 else
127 tty_ldiscs[disc] = NULL;
c9739941 128 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
01e1abb2
AC
129
130 return ret;
131}
132EXPORT_SYMBOL(tty_unregister_ldisc);
133
f0de0e8d
LT
134static struct tty_ldisc_ops *get_ldops(int disc)
135{
136 unsigned long flags;
137 struct tty_ldisc_ops *ldops, *ret;
138
c9739941 139 raw_spin_lock_irqsave(&tty_ldisc_lock, flags);
f0de0e8d
LT
140 ret = ERR_PTR(-EINVAL);
141 ldops = tty_ldiscs[disc];
142 if (ldops) {
143 ret = ERR_PTR(-EAGAIN);
144 if (try_module_get(ldops->owner)) {
145 ldops->refcount++;
146 ret = ldops;
147 }
148 }
c9739941 149 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
f0de0e8d
LT
150 return ret;
151}
152
153static void put_ldops(struct tty_ldisc_ops *ldops)
154{
155 unsigned long flags;
156
c9739941 157 raw_spin_lock_irqsave(&tty_ldisc_lock, flags);
f0de0e8d
LT
158 ldops->refcount--;
159 module_put(ldops->owner);
c9739941 160 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
f0de0e8d 161}
01e1abb2 162
01e1abb2
AC
163/**
164 * tty_ldisc_get - take a reference to an ldisc
165 * @disc: ldisc number
01e1abb2
AC
166 *
167 * Takes a reference to a line discipline. Deals with refcounts and
168 * module locking counts. Returns NULL if the discipline is not available.
169 * Returns a pointer to the discipline and bumps the ref count if it is
170 * available
171 *
172 * Locking:
173 * takes tty_ldisc_lock to guard against ldisc races
174 */
175
c65c9bc3 176static struct tty_ldisc *tty_ldisc_get(int disc)
01e1abb2 177{
c65c9bc3 178 struct tty_ldisc *ld;
182274f8 179 struct tty_ldisc_ops *ldops;
01e1abb2
AC
180
181 if (disc < N_TTY || disc >= NR_LDISCS)
c65c9bc3 182 return ERR_PTR(-EINVAL);
182274f8
LT
183
184 /*
185 * Get the ldisc ops - we may need to request them to be loaded
186 * dynamically and try again.
187 */
188 ldops = get_ldops(disc);
189 if (IS_ERR(ldops)) {
01e1abb2 190 request_module("tty-ldisc-%d", disc);
182274f8
LT
191 ldops = get_ldops(disc);
192 if (IS_ERR(ldops))
193 return ERR_CAST(ldops);
194 }
195
196 ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL);
197 if (ld == NULL) {
198 put_ldops(ldops);
199 return ERR_PTR(-ENOMEM);
01e1abb2 200 }
182274f8
LT
201
202 ld->ops = ldops;
203 atomic_set(&ld->users, 1);
1541f845
IS
204 init_waitqueue_head(&ld->wq_idle);
205
c65c9bc3 206 return ld;
01e1abb2
AC
207}
208
852e99d2 209static void *tty_ldiscs_seq_start(struct seq_file *m, loff_t *pos)
01e1abb2
AC
210{
211 return (*pos < NR_LDISCS) ? pos : NULL;
212}
213
852e99d2 214static void *tty_ldiscs_seq_next(struct seq_file *m, void *v, loff_t *pos)
01e1abb2
AC
215{
216 (*pos)++;
217 return (*pos < NR_LDISCS) ? pos : NULL;
218}
219
220static void tty_ldiscs_seq_stop(struct seq_file *m, void *v)
221{
222}
223
224static int tty_ldiscs_seq_show(struct seq_file *m, void *v)
225{
226 int i = *(loff_t *)v;
f0de0e8d 227 struct tty_ldisc_ops *ldops;
852e99d2 228
f0de0e8d
LT
229 ldops = get_ldops(i);
230 if (IS_ERR(ldops))
01e1abb2 231 return 0;
f0de0e8d
LT
232 seq_printf(m, "%-10s %2d\n", ldops->name ? ldops->name : "???", i);
233 put_ldops(ldops);
01e1abb2
AC
234 return 0;
235}
236
237static const struct seq_operations tty_ldiscs_seq_ops = {
238 .start = tty_ldiscs_seq_start,
239 .next = tty_ldiscs_seq_next,
240 .stop = tty_ldiscs_seq_stop,
241 .show = tty_ldiscs_seq_show,
242};
243
244static int proc_tty_ldiscs_open(struct inode *inode, struct file *file)
245{
246 return seq_open(file, &tty_ldiscs_seq_ops);
247}
248
249const struct file_operations tty_ldiscs_proc_fops = {
250 .owner = THIS_MODULE,
251 .open = proc_tty_ldiscs_open,
252 .read = seq_read,
253 .llseek = seq_lseek,
254 .release = seq_release,
255};
256
257/**
258 * tty_ldisc_assign - set ldisc on a tty
259 * @tty: tty to assign
260 * @ld: line discipline
261 *
262 * Install an instance of a line discipline into a tty structure. The
8d2ead74 263 * ldisc must have a reference count above zero to ensure it remains.
01e1abb2
AC
264 * The tty instance refcount starts at zero.
265 *
266 * Locking:
267 * Caller must hold references
268 */
269
270static void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld)
271{
c65c9bc3 272 tty->ldisc = ld;
01e1abb2
AC
273}
274
275/**
276 * tty_ldisc_try - internal helper
277 * @tty: the tty
278 *
279 * Make a single attempt to grab and bump the refcount on
280 * the tty ldisc. Return 0 on failure or 1 on success. This is
281 * used to implement both the waiting and non waiting versions
282 * of tty_ldisc_ref
283 *
284 * Locking: takes tty_ldisc_lock
285 */
286
65b77046 287static struct tty_ldisc *tty_ldisc_try(struct tty_struct *tty)
01e1abb2
AC
288{
289 unsigned long flags;
290 struct tty_ldisc *ld;
01e1abb2 291
c9739941 292 raw_spin_lock_irqsave(&tty_ldisc_lock, flags);
65b77046
LT
293 ld = NULL;
294 if (test_bit(TTY_LDISC, &tty->flags))
295 ld = get_ldisc(tty->ldisc);
c9739941 296 raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags);
65b77046 297 return ld;
01e1abb2
AC
298}
299
300/**
301 * tty_ldisc_ref_wait - wait for the tty ldisc
302 * @tty: tty device
303 *
304 * Dereference the line discipline for the terminal and take a
305 * reference to it. If the line discipline is in flux then
306 * wait patiently until it changes.
307 *
308 * Note: Must not be called from an IRQ/timer context. The caller
309 * must also be careful not to hold other locks that will deadlock
310 * against a discipline change, such as an existing ldisc reference
311 * (which we check for)
312 *
313 * Locking: call functions take tty_ldisc_lock
314 */
315
316struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty)
317{
65b77046
LT
318 struct tty_ldisc *ld;
319
01e1abb2 320 /* wait_event is a macro */
65b77046
LT
321 wait_event(tty_ldisc_wait, (ld = tty_ldisc_try(tty)) != NULL);
322 return ld;
01e1abb2 323}
01e1abb2
AC
324EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait);
325
326/**
327 * tty_ldisc_ref - get the tty ldisc
328 * @tty: tty device
329 *
330 * Dereference the line discipline for the terminal and take a
331 * reference to it. If the line discipline is in flux then
332 * return NULL. Can be called from IRQ and timer functions.
333 *
334 * Locking: called functions take tty_ldisc_lock
335 */
336
337struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty)
338{
65b77046 339 return tty_ldisc_try(tty);
01e1abb2 340}
01e1abb2
AC
341EXPORT_SYMBOL_GPL(tty_ldisc_ref);
342
343/**
344 * tty_ldisc_deref - free a tty ldisc reference
345 * @ld: reference to free up
346 *
347 * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May
348 * be called in IRQ context.
349 *
350 * Locking: takes tty_ldisc_lock
351 */
352
353void tty_ldisc_deref(struct tty_ldisc *ld)
354{
65b77046 355 put_ldisc(ld);
01e1abb2 356}
01e1abb2
AC
357EXPORT_SYMBOL_GPL(tty_ldisc_deref);
358
65b77046
LT
359static inline void tty_ldisc_put(struct tty_ldisc *ld)
360{
361 put_ldisc(ld);
362}
363
01e1abb2
AC
364/**
365 * tty_ldisc_enable - allow ldisc use
366 * @tty: terminal to activate ldisc on
367 *
368 * Set the TTY_LDISC flag when the line discipline can be called
c9b3976e
AC
369 * again. Do necessary wakeups for existing sleepers. Clear the LDISC
370 * changing flag to indicate any ldisc change is now over.
01e1abb2 371 *
c9b3976e
AC
372 * Note: nobody should set the TTY_LDISC bit except via this function.
373 * Clearing directly is allowed.
01e1abb2
AC
374 */
375
d9121566 376static void tty_ldisc_enable(struct tty_struct *tty)
01e1abb2 377{
21622939 378 clear_bit(TTY_LDISC_HALTED, &tty->flags);
01e1abb2 379 set_bit(TTY_LDISC, &tty->flags);
c9b3976e 380 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
01e1abb2
AC
381 wake_up(&tty_ldisc_wait);
382}
383
f2c4c65c
AC
384/**
385 * tty_ldisc_flush - flush line discipline queue
386 * @tty: tty
387 *
388 * Flush the line discipline queue (if any) for this tty. If there
389 * is no line discipline active this is a no-op.
390 */
391
392void tty_ldisc_flush(struct tty_struct *tty)
393{
394 struct tty_ldisc *ld = tty_ldisc_ref(tty);
395 if (ld) {
396 if (ld->ops->flush_buffer)
397 ld->ops->flush_buffer(tty);
398 tty_ldisc_deref(ld);
399 }
400 tty_buffer_flush(tty);
401}
f2c4c65c
AC
402EXPORT_SYMBOL_GPL(tty_ldisc_flush);
403
01e1abb2
AC
404/**
405 * tty_set_termios_ldisc - set ldisc field
406 * @tty: tty structure
407 * @num: line discipline number
408 *
409 * This is probably overkill for real world processors but
410 * they are not on hot paths so a little discipline won't do
411 * any harm.
412 *
413 * Locking: takes termios_mutex
414 */
415
416static void tty_set_termios_ldisc(struct tty_struct *tty, int num)
417{
418 mutex_lock(&tty->termios_mutex);
adc8d746 419 tty->termios.c_line = num;
01e1abb2
AC
420 mutex_unlock(&tty->termios_mutex);
421}
422
c65c9bc3
AC
423/**
424 * tty_ldisc_open - open a line discipline
425 * @tty: tty we are opening the ldisc on
426 * @ld: discipline to open
427 *
428 * A helper opening method. Also a convenient debugging and check
429 * point.
ec79d605
AB
430 *
431 * Locking: always called with BTM already held.
c65c9bc3
AC
432 */
433
434static int tty_ldisc_open(struct tty_struct *tty, struct tty_ldisc *ld)
435{
436 WARN_ON(test_and_set_bit(TTY_LDISC_OPEN, &tty->flags));
f18f9498
AC
437 if (ld->ops->open) {
438 int ret;
ec79d605 439 /* BTM here locks versus a hangup event */
f18f9498 440 ret = ld->ops->open(tty);
7f90cfc5
JS
441 if (ret)
442 clear_bit(TTY_LDISC_OPEN, &tty->flags);
f18f9498
AC
443 return ret;
444 }
c65c9bc3
AC
445 return 0;
446}
447
448/**
449 * tty_ldisc_close - close a line discipline
450 * @tty: tty we are opening the ldisc on
451 * @ld: discipline to close
452 *
453 * A helper close method. Also a convenient debugging and check
454 * point.
455 */
456
457static void tty_ldisc_close(struct tty_struct *tty, struct tty_ldisc *ld)
458{
459 WARN_ON(!test_bit(TTY_LDISC_OPEN, &tty->flags));
460 clear_bit(TTY_LDISC_OPEN, &tty->flags);
461 if (ld->ops->close)
462 ld->ops->close(tty);
463}
01e1abb2
AC
464
465/**
466 * tty_ldisc_restore - helper for tty ldisc change
467 * @tty: tty to recover
468 * @old: previous ldisc
469 *
470 * Restore the previous line discipline or N_TTY when a line discipline
471 * change fails due to an open error
472 */
473
474static void tty_ldisc_restore(struct tty_struct *tty, struct tty_ldisc *old)
475{
476 char buf[64];
c65c9bc3
AC
477 struct tty_ldisc *new_ldisc;
478 int r;
01e1abb2
AC
479
480 /* There is an outstanding reference here so this is safe */
c65c9bc3
AC
481 old = tty_ldisc_get(old->ops->num);
482 WARN_ON(IS_ERR(old));
01e1abb2
AC
483 tty_ldisc_assign(tty, old);
484 tty_set_termios_ldisc(tty, old->ops->num);
c65c9bc3
AC
485 if (tty_ldisc_open(tty, old) < 0) {
486 tty_ldisc_put(old);
01e1abb2 487 /* This driver is always present */
852e99d2 488 new_ldisc = tty_ldisc_get(N_TTY);
c65c9bc3 489 if (IS_ERR(new_ldisc))
01e1abb2 490 panic("n_tty: get");
c65c9bc3 491 tty_ldisc_assign(tty, new_ldisc);
01e1abb2 492 tty_set_termios_ldisc(tty, N_TTY);
c65c9bc3
AC
493 r = tty_ldisc_open(tty, new_ldisc);
494 if (r < 0)
495 panic("Couldn't open N_TTY ldisc for "
496 "%s --- error %d.",
497 tty_name(tty, buf), r);
01e1abb2
AC
498 }
499}
500
0a1f1a0b
TH
501/**
502 * tty_ldisc_flush_works - flush all works of a tty
503 * @tty: tty device to flush works for
504 *
505 * Sync flush all works belonging to @tty.
506 */
507static void tty_ldisc_flush_works(struct tty_struct *tty)
508{
43829731 509 flush_work(&tty->SAK_work);
977066e7 510 flush_work(&tty->hangup_work);
0a1f1a0b
TH
511}
512
100eeae2
JS
513/**
514 * tty_ldisc_wait_idle - wait for the ldisc to become idle
515 * @tty: tty to wait for
df92d056 516 * @timeout: for how long to wait at most
100eeae2
JS
517 *
518 * Wait for the line discipline to become idle. The discipline must
519 * have been halted for this to guarantee it remains idle.
520 */
df92d056 521static int tty_ldisc_wait_idle(struct tty_struct *tty, long timeout)
100eeae2 522{
df92d056 523 long ret;
1541f845 524 ret = wait_event_timeout(tty->ldisc->wq_idle,
df92d056 525 atomic_read(&tty->ldisc->users) == 1, timeout);
100eeae2
JS
526 return ret > 0 ? 0 : -EBUSY;
527}
528
11cf48ea
PH
529/**
530 * tty_ldisc_halt - shut down the line discipline
531 * @tty: tty device
f4cf7a38 532 * @o_tty: paired pty device (can be NULL)
cf528476 533 * @timeout: # of jiffies to wait for ldisc refs to be released
11cf48ea 534 *
f4cf7a38
PH
535 * Shut down the line discipline and work queue for this tty device and
536 * its paired pty (if exists). Clearing the TTY_LDISC flag ensures
4f98d467
PH
537 * no further references can be obtained, while waiting for existing
538 * references to be released ensures no more data is fed to the ldisc.
cf528476 539 *
11cf48ea
PH
540 * You need to do a 'flush_scheduled_work()' (outside the ldisc_mutex)
541 * in order to make sure any currently executing ldisc work is also
542 * flushed.
543 */
544
f4cf7a38 545static int tty_ldisc_halt(struct tty_struct *tty, struct tty_struct *o_tty,
4f98d467 546 long timeout)
11cf48ea 547{
4f98d467 548 int retval;
cf528476 549
11cf48ea 550 clear_bit(TTY_LDISC, &tty->flags);
f4cf7a38
PH
551 if (o_tty)
552 clear_bit(TTY_LDISC, &o_tty->flags);
553
cf528476 554 retval = tty_ldisc_wait_idle(tty, timeout);
f4cf7a38
PH
555 if (!retval && o_tty)
556 retval = tty_ldisc_wait_idle(o_tty, timeout);
cf528476
PH
557 if (retval)
558 return retval;
559
11cf48ea 560 set_bit(TTY_LDISC_HALTED, &tty->flags);
4f98d467 561 if (o_tty)
f4cf7a38 562 set_bit(TTY_LDISC_HALTED, &o_tty->flags);
f4cf7a38 563
cf528476 564 return 0;
11cf48ea
PH
565}
566
168942c9 567/**
76bc35e7
PH
568 * tty_ldisc_hangup_halt - halt the line discipline for hangup
569 * @tty: tty being hung up
168942c9 570 *
76bc35e7
PH
571 * Shut down the line discipline and work queue for the tty device
572 * being hungup. Clear the TTY_LDISC flag to ensure no further
4f98d467
PH
573 * references can be obtained and wait for remaining references to be
574 * released to ensure no more data is fed to this ldisc.
168942c9 575 * Caller must hold legacy and ->ldisc_mutex.
2276ad97
PH
576 *
577 * NB: tty_set_ldisc() is prevented from changing the ldisc concurrently
578 * with this function by checking the TTY_HUPPING flag.
168942c9 579 */
76bc35e7 580static bool tty_ldisc_hangup_halt(struct tty_struct *tty)
168942c9 581{
2276ad97
PH
582 char cur_n[TASK_COMM_LEN], tty_n[64];
583 long timeout = 3 * HZ;
584
76bc35e7
PH
585 clear_bit(TTY_LDISC, &tty->flags);
586
2276ad97
PH
587 if (tty->ldisc) { /* Not yet closed */
588 tty_unlock(tty);
589
590 while (tty_ldisc_wait_idle(tty, timeout) == -EBUSY) {
591 timeout = MAX_SCHEDULE_TIMEOUT;
592 printk_ratelimited(KERN_WARNING
593 "%s: waiting (%s) for %s took too long, but we keep waiting...\n",
594 __func__, get_task_comm(cur_n, current),
595 tty_name(tty, tty_n));
168942c9 596 }
76bc35e7 597
76bc35e7
PH
598 set_bit(TTY_LDISC_HALTED, &tty->flags);
599
2276ad97
PH
600 /* must reacquire both locks and preserve lock order */
601 mutex_unlock(&tty->ldisc_mutex);
602 tty_lock(tty);
603 mutex_lock(&tty->ldisc_mutex);
168942c9
PH
604 }
605 return !!tty->ldisc;
606}
607
01e1abb2
AC
608/**
609 * tty_set_ldisc - set line discipline
610 * @tty: the terminal to set
611 * @ldisc: the line discipline
612 *
613 * Set the discipline of a tty line. Must be called from a process
c65c9bc3
AC
614 * context. The ldisc change logic has to protect itself against any
615 * overlapping ldisc change (including on the other end of pty pairs),
616 * the close of one side of a tty/pty pair, and eventually hangup.
01e1abb2 617 *
c65c9bc3 618 * Locking: takes tty_ldisc_lock, termios_mutex
01e1abb2
AC
619 */
620
621int tty_set_ldisc(struct tty_struct *tty, int ldisc)
622{
623 int retval;
c65c9bc3 624 struct tty_ldisc *o_ldisc, *new_ldisc;
01e1abb2
AC
625 struct tty_struct *o_tty;
626
c65c9bc3
AC
627 new_ldisc = tty_ldisc_get(ldisc);
628 if (IS_ERR(new_ldisc))
629 return PTR_ERR(new_ldisc);
01e1abb2 630
89c8d91e 631 tty_lock(tty);
01e1abb2 632 /*
c65c9bc3
AC
633 * We need to look at the tty locking here for pty/tty pairs
634 * when both sides try to change in parallel.
01e1abb2
AC
635 */
636
c65c9bc3
AC
637 o_tty = tty->link; /* o_tty is the pty side or NULL */
638
01e1abb2 639
c65c9bc3
AC
640 /*
641 * Check the no-op case
642 */
643
644 if (tty->ldisc->ops->num == ldisc) {
89c8d91e 645 tty_unlock(tty);
c65c9bc3 646 tty_ldisc_put(new_ldisc);
01e1abb2
AC
647 return 0;
648 }
649
89c8d91e 650 tty_unlock(tty);
c65c9bc3
AC
651 /*
652 * Problem: What do we do if this blocks ?
653 * We could deadlock here
654 */
655
656 tty_wait_until_sent(tty, 0);
657
89c8d91e 658 tty_lock(tty);
c65c9bc3
AC
659 mutex_lock(&tty->ldisc_mutex);
660
661 /*
662 * We could be midstream of another ldisc change which has
663 * dropped the lock during processing. If so we need to wait.
664 */
665
666 while (test_bit(TTY_LDISC_CHANGING, &tty->flags)) {
667 mutex_unlock(&tty->ldisc_mutex);
89c8d91e 668 tty_unlock(tty);
c65c9bc3
AC
669 wait_event(tty_ldisc_wait,
670 test_bit(TTY_LDISC_CHANGING, &tty->flags) == 0);
89c8d91e 671 tty_lock(tty);
c65c9bc3
AC
672 mutex_lock(&tty->ldisc_mutex);
673 }
eeb89d91 674
c65c9bc3 675 set_bit(TTY_LDISC_CHANGING, &tty->flags);
852e99d2 676
01e1abb2
AC
677 /*
678 * No more input please, we are switching. The new ldisc
679 * will update this value in the ldisc open function
680 */
681
682 tty->receive_room = 0;
683
684 o_ldisc = tty->ldisc;
eeb89d91 685
89c8d91e 686 tty_unlock(tty);
01e1abb2
AC
687 /*
688 * Make sure we don't change while someone holds a
689 * reference to the line discipline. The TTY_LDISC bit
690 * prevents anyone taking a reference once it is clear.
691 * We need the lock to avoid racing reference takers.
c9b3976e
AC
692 *
693 * We must clear the TTY_LDISC bit here to avoid a livelock
694 * with a userspace app continually trying to use the tty in
695 * parallel to the change and re-referencing the tty.
01e1abb2
AC
696 */
697
4f98d467 698 retval = tty_ldisc_halt(tty, o_tty, 5 * HZ);
01e1abb2 699
01e1abb2 700 /*
c65c9bc3
AC
701 * Wait for ->hangup_work and ->buf.work handlers to terminate.
702 * We must drop the mutex here in case a hangup is also in process.
01e1abb2 703 */
c65c9bc3
AC
704
705 mutex_unlock(&tty->ldisc_mutex);
706
0a1f1a0b 707 tty_ldisc_flush_works(tty);
c65c9bc3 708
89c8d91e 709 tty_lock(tty);
60af22d2 710 mutex_lock(&tty->ldisc_mutex);
100eeae2
JS
711
712 /* handle wait idle failure locked */
713 if (retval) {
714 tty_ldisc_put(new_ldisc);
715 goto enable;
716 }
717
40c9f61e 718 if (test_bit(TTY_HUPPING, &tty->flags)) {
c65c9bc3
AC
719 /* We were raced by the hangup method. It will have stomped
720 the ldisc data and closed the ldisc down */
721 clear_bit(TTY_LDISC_CHANGING, &tty->flags);
722 mutex_unlock(&tty->ldisc_mutex);
723 tty_ldisc_put(new_ldisc);
89c8d91e 724 tty_unlock(tty);
c65c9bc3
AC
725 return -EIO;
726 }
727
01e1abb2 728 /* Shutdown the current discipline. */
c65c9bc3 729 tty_ldisc_close(tty, o_ldisc);
01e1abb2
AC
730
731 /* Now set up the new line discipline. */
c65c9bc3 732 tty_ldisc_assign(tty, new_ldisc);
01e1abb2 733 tty_set_termios_ldisc(tty, ldisc);
c65c9bc3
AC
734
735 retval = tty_ldisc_open(tty, new_ldisc);
01e1abb2 736 if (retval < 0) {
c65c9bc3
AC
737 /* Back to the old one or N_TTY if we can't */
738 tty_ldisc_put(new_ldisc);
739 tty_ldisc_restore(tty, o_ldisc);
01e1abb2 740 }
c65c9bc3 741
01e1abb2
AC
742 /* At this point we hold a reference to the new ldisc and a
743 a reference to the old ldisc. If we ended up flipping back
744 to the existing ldisc we have two references to it */
745
c65c9bc3 746 if (tty->ldisc->ops->num != o_ldisc->ops->num && tty->ops->set_ldisc)
01e1abb2
AC
747 tty->ops->set_ldisc(tty);
748
c65c9bc3 749 tty_ldisc_put(o_ldisc);
01e1abb2 750
100eeae2 751enable:
01e1abb2 752 /*
c65c9bc3 753 * Allow ldisc referencing to occur again
01e1abb2
AC
754 */
755
756 tty_ldisc_enable(tty);
757 if (o_tty)
758 tty_ldisc_enable(o_tty);
759
c65c9bc3 760 /* Restart the work queue in case no characters kick it off. Safe if
01e1abb2 761 already running */
4f98d467
PH
762 schedule_work(&tty->port->buf.work);
763 if (o_tty)
ecbbfd44 764 schedule_work(&o_tty->port->buf.work);
4f98d467 765
c65c9bc3 766 mutex_unlock(&tty->ldisc_mutex);
89c8d91e 767 tty_unlock(tty);
01e1abb2
AC
768 return retval;
769}
770
c65c9bc3
AC
771/**
772 * tty_reset_termios - reset terminal state
773 * @tty: tty to reset
774 *
775 * Restore a terminal to the driver default state.
776 */
777
778static void tty_reset_termios(struct tty_struct *tty)
779{
780 mutex_lock(&tty->termios_mutex);
adc8d746
AC
781 tty->termios = tty->driver->init_termios;
782 tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios);
783 tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios);
c65c9bc3
AC
784 mutex_unlock(&tty->termios_mutex);
785}
786
787
788/**
789 * tty_ldisc_reinit - reinitialise the tty ldisc
790 * @tty: tty to reinit
638b9648 791 * @ldisc: line discipline to reinitialize
c65c9bc3 792 *
638b9648
AC
793 * Switch the tty to a line discipline and leave the ldisc
794 * state closed
c65c9bc3
AC
795 */
796
1c95ba1e 797static int tty_ldisc_reinit(struct tty_struct *tty, int ldisc)
c65c9bc3 798{
1c95ba1e
PR
799 struct tty_ldisc *ld = tty_ldisc_get(ldisc);
800
801 if (IS_ERR(ld))
802 return -1;
c65c9bc3
AC
803
804 tty_ldisc_close(tty, tty->ldisc);
805 tty_ldisc_put(tty->ldisc);
806 tty->ldisc = NULL;
807 /*
808 * Switch the line discipline back
809 */
c65c9bc3 810 tty_ldisc_assign(tty, ld);
638b9648 811 tty_set_termios_ldisc(tty, ldisc);
1c95ba1e
PR
812
813 return 0;
c65c9bc3
AC
814}
815
816/**
817 * tty_ldisc_hangup - hangup ldisc reset
818 * @tty: tty being hung up
819 *
820 * Some tty devices reset their termios when they receive a hangup
821 * event. In that situation we must also switch back to N_TTY properly
822 * before we reset the termios data.
823 *
824 * Locking: We can take the ldisc mutex as the rest of the code is
825 * careful to allow for this.
826 *
827 * In the pty pair case this occurs in the close() path of the
828 * tty itself so we must be careful about locking rules.
829 */
830
831void tty_ldisc_hangup(struct tty_struct *tty)
832{
833 struct tty_ldisc *ld;
638b9648
AC
834 int reset = tty->driver->flags & TTY_DRIVER_RESET_TERMIOS;
835 int err = 0;
c65c9bc3
AC
836
837 /*
838 * FIXME! What are the locking issues here? This may me overdoing
839 * things... This question is especially important now that we've
840 * removed the irqlock.
841 */
842 ld = tty_ldisc_ref(tty);
843 if (ld != NULL) {
844 /* We may have no line discipline at this point */
845 if (ld->ops->flush_buffer)
846 ld->ops->flush_buffer(tty);
847 tty_driver_flush_buffer(tty);
848 if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) &&
849 ld->ops->write_wakeup)
850 ld->ops->write_wakeup(tty);
851 if (ld->ops->hangup)
852 ld->ops->hangup(tty);
853 tty_ldisc_deref(ld);
854 }
855 /*
856 * FIXME: Once we trust the LDISC code better we can wait here for
857 * ldisc completion and fix the driver call race
858 */
859 wake_up_interruptible_poll(&tty->write_wait, POLLOUT);
860 wake_up_interruptible_poll(&tty->read_wait, POLLIN);
861 /*
862 * Shutdown the current line discipline, and reset it to
638b9648
AC
863 * N_TTY if need be.
864 *
865 * Avoid racing set_ldisc or tty_ldisc_release
c65c9bc3 866 */
638b9648 867 mutex_lock(&tty->ldisc_mutex);
60af22d2 868
638b9648
AC
869 /* At this point we have a closed ldisc and we want to
870 reopen it. We could defer this to the next open but
871 it means auditing a lot of other paths so this is
872 a FIXME */
76bc35e7 873 if (tty_ldisc_hangup_halt(tty)) {
638b9648 874 if (reset == 0) {
1c95ba1e 875
adc8d746 876 if (!tty_ldisc_reinit(tty, tty->termios.c_line))
1c95ba1e
PR
877 err = tty_ldisc_open(tty, tty->ldisc);
878 else
879 err = 1;
638b9648
AC
880 }
881 /* If the re-open fails or we reset then go to N_TTY. The
882 N_TTY open cannot fail */
883 if (reset || err) {
1c95ba1e 884 BUG_ON(tty_ldisc_reinit(tty, N_TTY));
c8d50041 885 WARN_ON(tty_ldisc_open(tty, tty->ldisc));
c8d50041 886 }
638b9648 887 tty_ldisc_enable(tty);
c65c9bc3 888 }
638b9648
AC
889 mutex_unlock(&tty->ldisc_mutex);
890 if (reset)
891 tty_reset_termios(tty);
c65c9bc3 892}
01e1abb2
AC
893
894/**
895 * tty_ldisc_setup - open line discipline
896 * @tty: tty being shut down
897 * @o_tty: pair tty for pty/tty pairs
898 *
899 * Called during the initial open of a tty/pty pair in order to set up the
c65c9bc3
AC
900 * line disciplines and bind them to the tty. This has no locking issues
901 * as the device isn't yet active.
01e1abb2
AC
902 */
903
904int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty)
905{
c65c9bc3 906 struct tty_ldisc *ld = tty->ldisc;
01e1abb2
AC
907 int retval;
908
c65c9bc3
AC
909 retval = tty_ldisc_open(tty, ld);
910 if (retval)
911 return retval;
912
913 if (o_tty) {
914 retval = tty_ldisc_open(o_tty, o_tty->ldisc);
01e1abb2 915 if (retval) {
c65c9bc3 916 tty_ldisc_close(tty, ld);
01e1abb2
AC
917 return retval;
918 }
919 tty_ldisc_enable(o_tty);
920 }
921 tty_ldisc_enable(tty);
922 return 0;
923}
89c8d91e
AC
924
925static void tty_ldisc_kill(struct tty_struct *tty)
926{
927 mutex_lock(&tty->ldisc_mutex);
928 /*
929 * Now kill off the ldisc
930 */
931 tty_ldisc_close(tty, tty->ldisc);
932 tty_ldisc_put(tty->ldisc);
933 /* Force an oops if we mess this up */
934 tty->ldisc = NULL;
935
936 /* Ensure the next open requests the N_TTY ldisc */
937 tty_set_termios_ldisc(tty, N_TTY);
938 mutex_unlock(&tty->ldisc_mutex);
939}
940
01e1abb2
AC
941/**
942 * tty_ldisc_release - release line discipline
943 * @tty: tty being shut down
944 * @o_tty: pair tty for pty/tty pairs
945 *
852e99d2
AC
946 * Called during the final close of a tty/pty pair in order to shut down
947 * the line discpline layer. On exit the ldisc assigned is N_TTY and the
c65c9bc3 948 * ldisc has not been opened.
01e1abb2
AC
949 */
950
951void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty)
952{
01e1abb2
AC
953 /*
954 * Prevent flush_to_ldisc() from rescheduling the work for later. Then
955 * kill any delayed work. As this is the final close it does not
956 * race with the set_ldisc code path.
957 */
01e1abb2 958
4f98d467 959 tty_ldisc_halt(tty, o_tty, MAX_SCHEDULE_TIMEOUT);
852e4a81 960 tty_ldisc_flush_works(tty);
f4cf7a38 961 if (o_tty)
89c8d91e 962 tty_ldisc_flush_works(o_tty);
d155255a 963
852e4a81 964 tty_lock_pair(tty, o_tty);
6d31a88c 965 /* This will need doing differently if we need to lock */
89c8d91e 966 tty_ldisc_kill(tty);
c65c9bc3 967 if (o_tty)
89c8d91e 968 tty_ldisc_kill(o_tty);
aef29bc2 969
89c8d91e 970 tty_unlock_pair(tty, o_tty);
aef29bc2
AC
971 /* And the memory resources remaining (buffers, termios) will be
972 disposed of when the kref hits zero */
01e1abb2
AC
973}
974
975/**
976 * tty_ldisc_init - ldisc setup for new tty
977 * @tty: tty being allocated
978 *
979 * Set up the line discipline objects for a newly allocated tty. Note that
980 * the tty structure is not completely set up when this call is made.
981 */
982
983void tty_ldisc_init(struct tty_struct *tty)
984{
c65c9bc3
AC
985 struct tty_ldisc *ld = tty_ldisc_get(N_TTY);
986 if (IS_ERR(ld))
01e1abb2 987 panic("n_tty: init_tty");
c65c9bc3 988 tty_ldisc_assign(tty, ld);
01e1abb2
AC
989}
990
6716671d
JS
991/**
992 * tty_ldisc_init - ldisc cleanup for new tty
993 * @tty: tty that was allocated recently
994 *
995 * The tty structure must not becompletely set up (tty_ldisc_setup) when
996 * this call is made.
997 */
998void tty_ldisc_deinit(struct tty_struct *tty)
999{
1000 put_ldisc(tty->ldisc);
1001 tty_ldisc_assign(tty, NULL);
1002}
1003
01e1abb2
AC
1004void tty_ldisc_begin(void)
1005{
1006 /* Setup the default TTY line discipline. */
1007 (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY);
1008}
This page took 0.361304 seconds and 5 git commands to generate.