2010-08-07 03:40:30 +08:00
|
|
|
#include <linux/tty.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kallsyms.h>
|
|
|
|
#include <linux/semaphore.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
|
2012-08-08 23:30:13 +08:00
|
|
|
/* Legacy tty mutex glue */
|
|
|
|
|
2010-08-07 03:40:30 +08:00
|
|
|
/*
|
|
|
|
* Getting the big tty mutex.
|
|
|
|
*/
|
2012-08-08 23:30:13 +08:00
|
|
|
|
2016-01-10 13:13:51 +08:00
|
|
|
void tty_lock(struct tty_struct *tty)
|
2010-08-07 03:40:30 +08:00
|
|
|
{
|
2015-11-09 02:01:20 +08:00
|
|
|
if (WARN(tty->magic != TTY_MAGIC, "L Bad %p\n", tty))
|
2012-08-08 23:30:13 +08:00
|
|
|
return;
|
|
|
|
tty_kref_get(tty);
|
2014-11-06 01:13:02 +08:00
|
|
|
mutex_lock(&tty->legacy_mutex);
|
2010-08-07 03:40:30 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(tty_lock);
|
|
|
|
|
2016-01-10 13:13:44 +08:00
|
|
|
int tty_lock_interruptible(struct tty_struct *tty)
|
|
|
|
{
|
2016-02-06 02:49:36 +08:00
|
|
|
int ret;
|
|
|
|
|
2016-01-10 13:13:44 +08:00
|
|
|
if (WARN(tty->magic != TTY_MAGIC, "L Bad %p\n", tty))
|
|
|
|
return -EIO;
|
|
|
|
tty_kref_get(tty);
|
2016-02-06 02:49:36 +08:00
|
|
|
ret = mutex_lock_interruptible(&tty->legacy_mutex);
|
|
|
|
if (ret)
|
|
|
|
tty_kref_put(tty);
|
|
|
|
return ret;
|
2016-01-10 13:13:44 +08:00
|
|
|
}
|
|
|
|
|
2016-01-10 13:13:51 +08:00
|
|
|
void tty_unlock(struct tty_struct *tty)
|
2010-08-07 03:40:30 +08:00
|
|
|
{
|
2015-11-09 02:01:20 +08:00
|
|
|
if (WARN(tty->magic != TTY_MAGIC, "U Bad %p\n", tty))
|
2012-08-08 23:30:13 +08:00
|
|
|
return;
|
|
|
|
mutex_unlock(&tty->legacy_mutex);
|
|
|
|
tty_kref_put(tty);
|
2010-08-07 03:40:30 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(tty_unlock);
|
2012-08-08 23:30:13 +08:00
|
|
|
|
2016-01-10 13:13:51 +08:00
|
|
|
void tty_lock_slave(struct tty_struct *tty)
|
2012-08-08 23:30:13 +08:00
|
|
|
{
|
2014-12-30 20:11:11 +08:00
|
|
|
if (tty && tty != tty->link)
|
2014-11-06 01:13:02 +08:00
|
|
|
tty_lock(tty);
|
2012-08-08 23:30:13 +08:00
|
|
|
}
|
|
|
|
|
2016-01-10 13:13:51 +08:00
|
|
|
void tty_unlock_slave(struct tty_struct *tty)
|
2012-08-08 23:30:13 +08:00
|
|
|
{
|
2014-11-06 01:13:01 +08:00
|
|
|
if (tty && tty != tty->link)
|
|
|
|
tty_unlock(tty);
|
2012-08-08 23:30:13 +08:00
|
|
|
}
|
2014-11-06 01:13:02 +08:00
|
|
|
|
|
|
|
void tty_set_lock_subclass(struct tty_struct *tty)
|
|
|
|
{
|
2015-01-18 04:42:04 +08:00
|
|
|
lockdep_set_subclass(&tty->legacy_mutex, TTY_LOCK_SLAVE);
|
2014-11-06 01:13:02 +08:00
|
|
|
}
|