Arnd Bergmann | b07471f | 2010-08-06 21:40:30 +0200 | [diff] [blame] | 1 | #include <linux/tty.h> |
| 2 | #include <linux/module.h> |
| 3 | #include <linux/kallsyms.h> |
| 4 | #include <linux/semaphore.h> |
| 5 | #include <linux/sched.h> |
| 6 | |
Peter Hurley | 2aff5e2 | 2014-11-05 12:13:01 -0500 | [diff] [blame^] | 7 | /* |
| 8 | * Nested tty locks are necessary for releasing pty pairs. |
| 9 | * The stable lock order is master pty first, then slave pty. |
| 10 | */ |
| 11 | |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 12 | /* Legacy tty mutex glue */ |
| 13 | |
| 14 | enum { |
| 15 | TTY_MUTEX_NORMAL, |
| 16 | TTY_MUTEX_NESTED, |
| 17 | }; |
Eric Dumazet | fde86d3 | 2012-05-31 11:35:18 +0200 | [diff] [blame] | 18 | |
Arnd Bergmann | b07471f | 2010-08-06 21:40:30 +0200 | [diff] [blame] | 19 | /* |
| 20 | * Getting the big tty mutex. |
| 21 | */ |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 22 | |
| 23 | static void __lockfunc tty_lock_nested(struct tty_struct *tty, |
| 24 | unsigned int subclass) |
Arnd Bergmann | b07471f | 2010-08-06 21:40:30 +0200 | [diff] [blame] | 25 | { |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 26 | if (tty->magic != TTY_MAGIC) { |
Sangho Yi | 7a0c4ed | 2012-10-18 00:15:13 +0900 | [diff] [blame] | 27 | pr_err("L Bad %p\n", tty); |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 28 | WARN_ON(1); |
| 29 | return; |
| 30 | } |
| 31 | tty_kref_get(tty); |
| 32 | mutex_lock_nested(&tty->legacy_mutex, subclass); |
| 33 | } |
| 34 | |
| 35 | void __lockfunc tty_lock(struct tty_struct *tty) |
| 36 | { |
| 37 | return tty_lock_nested(tty, TTY_MUTEX_NORMAL); |
Arnd Bergmann | b07471f | 2010-08-06 21:40:30 +0200 | [diff] [blame] | 38 | } |
| 39 | EXPORT_SYMBOL(tty_lock); |
| 40 | |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 41 | void __lockfunc tty_unlock(struct tty_struct *tty) |
Arnd Bergmann | b07471f | 2010-08-06 21:40:30 +0200 | [diff] [blame] | 42 | { |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 43 | if (tty->magic != TTY_MAGIC) { |
Sangho Yi | 7a0c4ed | 2012-10-18 00:15:13 +0900 | [diff] [blame] | 44 | pr_err("U Bad %p\n", tty); |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 45 | WARN_ON(1); |
| 46 | return; |
| 47 | } |
| 48 | mutex_unlock(&tty->legacy_mutex); |
| 49 | tty_kref_put(tty); |
Arnd Bergmann | b07471f | 2010-08-06 21:40:30 +0200 | [diff] [blame] | 50 | } |
| 51 | EXPORT_SYMBOL(tty_unlock); |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 52 | |
Peter Hurley | 2aff5e2 | 2014-11-05 12:13:01 -0500 | [diff] [blame^] | 53 | void __lockfunc tty_lock_slave(struct tty_struct *tty) |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 54 | { |
Peter Hurley | 2aff5e2 | 2014-11-05 12:13:01 -0500 | [diff] [blame^] | 55 | if (tty && tty != tty->link) { |
| 56 | WARN_ON(!mutex_is_locked(&tty->link->legacy_mutex) || |
| 57 | !tty->driver->type == TTY_DRIVER_TYPE_PTY || |
| 58 | !tty->driver->type == PTY_TYPE_SLAVE); |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 59 | tty_lock_nested(tty, TTY_MUTEX_NESTED); |
| 60 | } |
| 61 | } |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 62 | |
Peter Hurley | 2aff5e2 | 2014-11-05 12:13:01 -0500 | [diff] [blame^] | 63 | void __lockfunc tty_unlock_slave(struct tty_struct *tty) |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 64 | { |
Peter Hurley | 2aff5e2 | 2014-11-05 12:13:01 -0500 | [diff] [blame^] | 65 | if (tty && tty != tty->link) |
| 66 | tty_unlock(tty); |
Alan Cox | 89c8d91 | 2012-08-08 16:30:13 +0100 | [diff] [blame] | 67 | } |