196fd7ce5SGreg Kroah-Hartman #include <linux/types.h> 296fd7ce5SGreg Kroah-Hartman #include <linux/errno.h> 38b3ffa17SJiri Slaby #include <linux/kmod.h> 496fd7ce5SGreg Kroah-Hartman #include <linux/sched.h> 596fd7ce5SGreg Kroah-Hartman #include <linux/interrupt.h> 696fd7ce5SGreg Kroah-Hartman #include <linux/tty.h> 796fd7ce5SGreg Kroah-Hartman #include <linux/tty_driver.h> 896fd7ce5SGreg Kroah-Hartman #include <linux/file.h> 996fd7ce5SGreg Kroah-Hartman #include <linux/mm.h> 1096fd7ce5SGreg Kroah-Hartman #include <linux/string.h> 1196fd7ce5SGreg Kroah-Hartman #include <linux/slab.h> 1296fd7ce5SGreg Kroah-Hartman #include <linux/poll.h> 1396fd7ce5SGreg Kroah-Hartman #include <linux/proc_fs.h> 1496fd7ce5SGreg Kroah-Hartman #include <linux/init.h> 1596fd7ce5SGreg Kroah-Hartman #include <linux/module.h> 1696fd7ce5SGreg Kroah-Hartman #include <linux/device.h> 1796fd7ce5SGreg Kroah-Hartman #include <linux/wait.h> 1896fd7ce5SGreg Kroah-Hartman #include <linux/bitops.h> 1996fd7ce5SGreg Kroah-Hartman #include <linux/seq_file.h> 2096fd7ce5SGreg Kroah-Hartman #include <linux/uaccess.h> 210c73c08eSJiri Slaby #include <linux/ratelimit.h> 2296fd7ce5SGreg Kroah-Hartman 23fc575ee6SPeter Hurley #undef LDISC_DEBUG_HANGUP 24fc575ee6SPeter Hurley 25fc575ee6SPeter Hurley #ifdef LDISC_DEBUG_HANGUP 26fc575ee6SPeter Hurley #define tty_ldisc_debug(tty, f, args...) ({ \ 27fc575ee6SPeter Hurley char __b[64]; \ 28fc575ee6SPeter Hurley printk(KERN_DEBUG "%s: %s: " f, __func__, tty_name(tty, __b), ##args); \ 29fc575ee6SPeter Hurley }) 30fc575ee6SPeter Hurley #else 31fc575ee6SPeter Hurley #define tty_ldisc_debug(tty, f, args...) 32fc575ee6SPeter Hurley #endif 33fc575ee6SPeter Hurley 3496fd7ce5SGreg Kroah-Hartman /* 3596fd7ce5SGreg Kroah-Hartman * This guards the refcounted line discipline lists. The lock 3696fd7ce5SGreg Kroah-Hartman * must be taken with irqs off because there are hangup path 3796fd7ce5SGreg Kroah-Hartman * callers who will do ldisc lookups and cannot sleep. 3896fd7ce5SGreg Kroah-Hartman */ 3996fd7ce5SGreg Kroah-Hartman 40c9739941SIvo Sieben static DEFINE_RAW_SPINLOCK(tty_ldisc_lock); 4196fd7ce5SGreg Kroah-Hartman static DECLARE_WAIT_QUEUE_HEAD(tty_ldisc_wait); 4296fd7ce5SGreg Kroah-Hartman /* Line disc dispatch table */ 4396fd7ce5SGreg Kroah-Hartman static struct tty_ldisc_ops *tty_ldiscs[NR_LDISCS]; 4496fd7ce5SGreg Kroah-Hartman 4596fd7ce5SGreg Kroah-Hartman /** 4696fd7ce5SGreg Kroah-Hartman * tty_register_ldisc - install a line discipline 4796fd7ce5SGreg Kroah-Hartman * @disc: ldisc number 4896fd7ce5SGreg Kroah-Hartman * @new_ldisc: pointer to the ldisc object 4996fd7ce5SGreg Kroah-Hartman * 5096fd7ce5SGreg Kroah-Hartman * Installs a new line discipline into the kernel. The discipline 5196fd7ce5SGreg Kroah-Hartman * is set up as unreferenced and then made available to the kernel 5296fd7ce5SGreg Kroah-Hartman * from this point onwards. 5396fd7ce5SGreg Kroah-Hartman * 5496fd7ce5SGreg Kroah-Hartman * Locking: 5596fd7ce5SGreg Kroah-Hartman * takes tty_ldisc_lock to guard against ldisc races 5696fd7ce5SGreg Kroah-Hartman */ 5796fd7ce5SGreg Kroah-Hartman 5896fd7ce5SGreg Kroah-Hartman int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc) 5996fd7ce5SGreg Kroah-Hartman { 6096fd7ce5SGreg Kroah-Hartman unsigned long flags; 6196fd7ce5SGreg Kroah-Hartman int ret = 0; 6296fd7ce5SGreg Kroah-Hartman 6396fd7ce5SGreg Kroah-Hartman if (disc < N_TTY || disc >= NR_LDISCS) 6496fd7ce5SGreg Kroah-Hartman return -EINVAL; 6596fd7ce5SGreg Kroah-Hartman 66c9739941SIvo Sieben raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 6796fd7ce5SGreg Kroah-Hartman tty_ldiscs[disc] = new_ldisc; 6896fd7ce5SGreg Kroah-Hartman new_ldisc->num = disc; 6996fd7ce5SGreg Kroah-Hartman new_ldisc->refcount = 0; 70c9739941SIvo Sieben raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 7196fd7ce5SGreg Kroah-Hartman 7296fd7ce5SGreg Kroah-Hartman return ret; 7396fd7ce5SGreg Kroah-Hartman } 7496fd7ce5SGreg Kroah-Hartman EXPORT_SYMBOL(tty_register_ldisc); 7596fd7ce5SGreg Kroah-Hartman 7696fd7ce5SGreg Kroah-Hartman /** 7796fd7ce5SGreg Kroah-Hartman * tty_unregister_ldisc - unload a line discipline 7896fd7ce5SGreg Kroah-Hartman * @disc: ldisc number 7996fd7ce5SGreg Kroah-Hartman * @new_ldisc: pointer to the ldisc object 8096fd7ce5SGreg Kroah-Hartman * 8196fd7ce5SGreg Kroah-Hartman * Remove a line discipline from the kernel providing it is not 8296fd7ce5SGreg Kroah-Hartman * currently in use. 8396fd7ce5SGreg Kroah-Hartman * 8496fd7ce5SGreg Kroah-Hartman * Locking: 8596fd7ce5SGreg Kroah-Hartman * takes tty_ldisc_lock to guard against ldisc races 8696fd7ce5SGreg Kroah-Hartman */ 8796fd7ce5SGreg Kroah-Hartman 8896fd7ce5SGreg Kroah-Hartman int tty_unregister_ldisc(int disc) 8996fd7ce5SGreg Kroah-Hartman { 9096fd7ce5SGreg Kroah-Hartman unsigned long flags; 9196fd7ce5SGreg Kroah-Hartman int ret = 0; 9296fd7ce5SGreg Kroah-Hartman 9396fd7ce5SGreg Kroah-Hartman if (disc < N_TTY || disc >= NR_LDISCS) 9496fd7ce5SGreg Kroah-Hartman return -EINVAL; 9596fd7ce5SGreg Kroah-Hartman 96c9739941SIvo Sieben raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 9796fd7ce5SGreg Kroah-Hartman if (tty_ldiscs[disc]->refcount) 9896fd7ce5SGreg Kroah-Hartman ret = -EBUSY; 9996fd7ce5SGreg Kroah-Hartman else 10096fd7ce5SGreg Kroah-Hartman tty_ldiscs[disc] = NULL; 101c9739941SIvo Sieben raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 10296fd7ce5SGreg Kroah-Hartman 10396fd7ce5SGreg Kroah-Hartman return ret; 10496fd7ce5SGreg Kroah-Hartman } 10596fd7ce5SGreg Kroah-Hartman EXPORT_SYMBOL(tty_unregister_ldisc); 10696fd7ce5SGreg Kroah-Hartman 10796fd7ce5SGreg Kroah-Hartman static struct tty_ldisc_ops *get_ldops(int disc) 10896fd7ce5SGreg Kroah-Hartman { 10996fd7ce5SGreg Kroah-Hartman unsigned long flags; 11096fd7ce5SGreg Kroah-Hartman struct tty_ldisc_ops *ldops, *ret; 11196fd7ce5SGreg Kroah-Hartman 112c9739941SIvo Sieben raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 11396fd7ce5SGreg Kroah-Hartman ret = ERR_PTR(-EINVAL); 11496fd7ce5SGreg Kroah-Hartman ldops = tty_ldiscs[disc]; 11596fd7ce5SGreg Kroah-Hartman if (ldops) { 11696fd7ce5SGreg Kroah-Hartman ret = ERR_PTR(-EAGAIN); 11796fd7ce5SGreg Kroah-Hartman if (try_module_get(ldops->owner)) { 11896fd7ce5SGreg Kroah-Hartman ldops->refcount++; 11996fd7ce5SGreg Kroah-Hartman ret = ldops; 12096fd7ce5SGreg Kroah-Hartman } 12196fd7ce5SGreg Kroah-Hartman } 122c9739941SIvo Sieben raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 12396fd7ce5SGreg Kroah-Hartman return ret; 12496fd7ce5SGreg Kroah-Hartman } 12596fd7ce5SGreg Kroah-Hartman 12696fd7ce5SGreg Kroah-Hartman static void put_ldops(struct tty_ldisc_ops *ldops) 12796fd7ce5SGreg Kroah-Hartman { 12896fd7ce5SGreg Kroah-Hartman unsigned long flags; 12996fd7ce5SGreg Kroah-Hartman 130c9739941SIvo Sieben raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 13196fd7ce5SGreg Kroah-Hartman ldops->refcount--; 13296fd7ce5SGreg Kroah-Hartman module_put(ldops->owner); 133c9739941SIvo Sieben raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 13496fd7ce5SGreg Kroah-Hartman } 13596fd7ce5SGreg Kroah-Hartman 13696fd7ce5SGreg Kroah-Hartman /** 13796fd7ce5SGreg Kroah-Hartman * tty_ldisc_get - take a reference to an ldisc 13896fd7ce5SGreg Kroah-Hartman * @disc: ldisc number 13996fd7ce5SGreg Kroah-Hartman * 14096fd7ce5SGreg Kroah-Hartman * Takes a reference to a line discipline. Deals with refcounts and 14196fd7ce5SGreg Kroah-Hartman * module locking counts. Returns NULL if the discipline is not available. 14296fd7ce5SGreg Kroah-Hartman * Returns a pointer to the discipline and bumps the ref count if it is 14396fd7ce5SGreg Kroah-Hartman * available 14496fd7ce5SGreg Kroah-Hartman * 14596fd7ce5SGreg Kroah-Hartman * Locking: 14696fd7ce5SGreg Kroah-Hartman * takes tty_ldisc_lock to guard against ldisc races 14796fd7ce5SGreg Kroah-Hartman */ 14896fd7ce5SGreg Kroah-Hartman 14996fd7ce5SGreg Kroah-Hartman static struct tty_ldisc *tty_ldisc_get(int disc) 15096fd7ce5SGreg Kroah-Hartman { 15196fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld; 15296fd7ce5SGreg Kroah-Hartman struct tty_ldisc_ops *ldops; 15396fd7ce5SGreg Kroah-Hartman 15496fd7ce5SGreg Kroah-Hartman if (disc < N_TTY || disc >= NR_LDISCS) 15596fd7ce5SGreg Kroah-Hartman return ERR_PTR(-EINVAL); 15696fd7ce5SGreg Kroah-Hartman 15796fd7ce5SGreg Kroah-Hartman /* 15896fd7ce5SGreg Kroah-Hartman * Get the ldisc ops - we may need to request them to be loaded 15996fd7ce5SGreg Kroah-Hartman * dynamically and try again. 16096fd7ce5SGreg Kroah-Hartman */ 16196fd7ce5SGreg Kroah-Hartman ldops = get_ldops(disc); 16296fd7ce5SGreg Kroah-Hartman if (IS_ERR(ldops)) { 16396fd7ce5SGreg Kroah-Hartman request_module("tty-ldisc-%d", disc); 16496fd7ce5SGreg Kroah-Hartman ldops = get_ldops(disc); 16596fd7ce5SGreg Kroah-Hartman if (IS_ERR(ldops)) 16696fd7ce5SGreg Kroah-Hartman return ERR_CAST(ldops); 16796fd7ce5SGreg Kroah-Hartman } 16896fd7ce5SGreg Kroah-Hartman 16996fd7ce5SGreg Kroah-Hartman ld = kmalloc(sizeof(struct tty_ldisc), GFP_KERNEL); 17096fd7ce5SGreg Kroah-Hartman if (ld == NULL) { 17196fd7ce5SGreg Kroah-Hartman put_ldops(ldops); 17296fd7ce5SGreg Kroah-Hartman return ERR_PTR(-ENOMEM); 17396fd7ce5SGreg Kroah-Hartman } 17496fd7ce5SGreg Kroah-Hartman 17596fd7ce5SGreg Kroah-Hartman ld->ops = ldops; 17696fd7ce5SGreg Kroah-Hartman atomic_set(&ld->users, 1); 1771541f845SIvo Sieben init_waitqueue_head(&ld->wq_idle); 1781541f845SIvo Sieben 17996fd7ce5SGreg Kroah-Hartman return ld; 18096fd7ce5SGreg Kroah-Hartman } 18196fd7ce5SGreg Kroah-Hartman 18296fd7ce5SGreg Kroah-Hartman static void *tty_ldiscs_seq_start(struct seq_file *m, loff_t *pos) 18396fd7ce5SGreg Kroah-Hartman { 18496fd7ce5SGreg Kroah-Hartman return (*pos < NR_LDISCS) ? pos : NULL; 18596fd7ce5SGreg Kroah-Hartman } 18696fd7ce5SGreg Kroah-Hartman 18796fd7ce5SGreg Kroah-Hartman static void *tty_ldiscs_seq_next(struct seq_file *m, void *v, loff_t *pos) 18896fd7ce5SGreg Kroah-Hartman { 18996fd7ce5SGreg Kroah-Hartman (*pos)++; 19096fd7ce5SGreg Kroah-Hartman return (*pos < NR_LDISCS) ? pos : NULL; 19196fd7ce5SGreg Kroah-Hartman } 19296fd7ce5SGreg Kroah-Hartman 19396fd7ce5SGreg Kroah-Hartman static void tty_ldiscs_seq_stop(struct seq_file *m, void *v) 19496fd7ce5SGreg Kroah-Hartman { 19596fd7ce5SGreg Kroah-Hartman } 19696fd7ce5SGreg Kroah-Hartman 19796fd7ce5SGreg Kroah-Hartman static int tty_ldiscs_seq_show(struct seq_file *m, void *v) 19896fd7ce5SGreg Kroah-Hartman { 19996fd7ce5SGreg Kroah-Hartman int i = *(loff_t *)v; 20096fd7ce5SGreg Kroah-Hartman struct tty_ldisc_ops *ldops; 20196fd7ce5SGreg Kroah-Hartman 20296fd7ce5SGreg Kroah-Hartman ldops = get_ldops(i); 20396fd7ce5SGreg Kroah-Hartman if (IS_ERR(ldops)) 20496fd7ce5SGreg Kroah-Hartman return 0; 20596fd7ce5SGreg Kroah-Hartman seq_printf(m, "%-10s %2d\n", ldops->name ? ldops->name : "???", i); 20696fd7ce5SGreg Kroah-Hartman put_ldops(ldops); 20796fd7ce5SGreg Kroah-Hartman return 0; 20896fd7ce5SGreg Kroah-Hartman } 20996fd7ce5SGreg Kroah-Hartman 21096fd7ce5SGreg Kroah-Hartman static const struct seq_operations tty_ldiscs_seq_ops = { 21196fd7ce5SGreg Kroah-Hartman .start = tty_ldiscs_seq_start, 21296fd7ce5SGreg Kroah-Hartman .next = tty_ldiscs_seq_next, 21396fd7ce5SGreg Kroah-Hartman .stop = tty_ldiscs_seq_stop, 21496fd7ce5SGreg Kroah-Hartman .show = tty_ldiscs_seq_show, 21596fd7ce5SGreg Kroah-Hartman }; 21696fd7ce5SGreg Kroah-Hartman 21796fd7ce5SGreg Kroah-Hartman static int proc_tty_ldiscs_open(struct inode *inode, struct file *file) 21896fd7ce5SGreg Kroah-Hartman { 21996fd7ce5SGreg Kroah-Hartman return seq_open(file, &tty_ldiscs_seq_ops); 22096fd7ce5SGreg Kroah-Hartman } 22196fd7ce5SGreg Kroah-Hartman 22296fd7ce5SGreg Kroah-Hartman const struct file_operations tty_ldiscs_proc_fops = { 22396fd7ce5SGreg Kroah-Hartman .owner = THIS_MODULE, 22496fd7ce5SGreg Kroah-Hartman .open = proc_tty_ldiscs_open, 22596fd7ce5SGreg Kroah-Hartman .read = seq_read, 22696fd7ce5SGreg Kroah-Hartman .llseek = seq_lseek, 22796fd7ce5SGreg Kroah-Hartman .release = seq_release, 22896fd7ce5SGreg Kroah-Hartman }; 22996fd7ce5SGreg Kroah-Hartman 23096fd7ce5SGreg Kroah-Hartman /** 23196fd7ce5SGreg Kroah-Hartman * tty_ldisc_assign - set ldisc on a tty 23296fd7ce5SGreg Kroah-Hartman * @tty: tty to assign 23396fd7ce5SGreg Kroah-Hartman * @ld: line discipline 23496fd7ce5SGreg Kroah-Hartman * 23596fd7ce5SGreg Kroah-Hartman * Install an instance of a line discipline into a tty structure. The 23696fd7ce5SGreg Kroah-Hartman * ldisc must have a reference count above zero to ensure it remains. 23796fd7ce5SGreg Kroah-Hartman * The tty instance refcount starts at zero. 23896fd7ce5SGreg Kroah-Hartman * 23996fd7ce5SGreg Kroah-Hartman * Locking: 24096fd7ce5SGreg Kroah-Hartman * Caller must hold references 24196fd7ce5SGreg Kroah-Hartman */ 24296fd7ce5SGreg Kroah-Hartman 24396fd7ce5SGreg Kroah-Hartman static void tty_ldisc_assign(struct tty_struct *tty, struct tty_ldisc *ld) 24496fd7ce5SGreg Kroah-Hartman { 24596fd7ce5SGreg Kroah-Hartman tty->ldisc = ld; 24696fd7ce5SGreg Kroah-Hartman } 24796fd7ce5SGreg Kroah-Hartman 24896fd7ce5SGreg Kroah-Hartman /** 24996fd7ce5SGreg Kroah-Hartman * tty_ldisc_try - internal helper 25096fd7ce5SGreg Kroah-Hartman * @tty: the tty 25196fd7ce5SGreg Kroah-Hartman * 25296fd7ce5SGreg Kroah-Hartman * Make a single attempt to grab and bump the refcount on 25396fd7ce5SGreg Kroah-Hartman * the tty ldisc. Return 0 on failure or 1 on success. This is 25496fd7ce5SGreg Kroah-Hartman * used to implement both the waiting and non waiting versions 25596fd7ce5SGreg Kroah-Hartman * of tty_ldisc_ref 25696fd7ce5SGreg Kroah-Hartman * 25796fd7ce5SGreg Kroah-Hartman * Locking: takes tty_ldisc_lock 25896fd7ce5SGreg Kroah-Hartman */ 25996fd7ce5SGreg Kroah-Hartman 26096fd7ce5SGreg Kroah-Hartman static struct tty_ldisc *tty_ldisc_try(struct tty_struct *tty) 26196fd7ce5SGreg Kroah-Hartman { 26296fd7ce5SGreg Kroah-Hartman unsigned long flags; 26396fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld; 26496fd7ce5SGreg Kroah-Hartman 26516759f6cSPeter Hurley /* FIXME: this allows reference acquire after TTY_LDISC is cleared */ 266c9739941SIvo Sieben raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 26796fd7ce5SGreg Kroah-Hartman ld = NULL; 26816759f6cSPeter Hurley if (test_bit(TTY_LDISC, &tty->flags) && tty->ldisc) { 26916759f6cSPeter Hurley ld = tty->ldisc; 27016759f6cSPeter Hurley atomic_inc(&ld->users); 27116759f6cSPeter Hurley } 272c9739941SIvo Sieben raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 27396fd7ce5SGreg Kroah-Hartman return ld; 27496fd7ce5SGreg Kroah-Hartman } 27596fd7ce5SGreg Kroah-Hartman 27696fd7ce5SGreg Kroah-Hartman /** 27796fd7ce5SGreg Kroah-Hartman * tty_ldisc_ref_wait - wait for the tty ldisc 27896fd7ce5SGreg Kroah-Hartman * @tty: tty device 27996fd7ce5SGreg Kroah-Hartman * 28096fd7ce5SGreg Kroah-Hartman * Dereference the line discipline for the terminal and take a 28196fd7ce5SGreg Kroah-Hartman * reference to it. If the line discipline is in flux then 28296fd7ce5SGreg Kroah-Hartman * wait patiently until it changes. 28396fd7ce5SGreg Kroah-Hartman * 28496fd7ce5SGreg Kroah-Hartman * Note: Must not be called from an IRQ/timer context. The caller 28596fd7ce5SGreg Kroah-Hartman * must also be careful not to hold other locks that will deadlock 28696fd7ce5SGreg Kroah-Hartman * against a discipline change, such as an existing ldisc reference 28796fd7ce5SGreg Kroah-Hartman * (which we check for) 28896fd7ce5SGreg Kroah-Hartman * 28996fd7ce5SGreg Kroah-Hartman * Locking: call functions take tty_ldisc_lock 29096fd7ce5SGreg Kroah-Hartman */ 29196fd7ce5SGreg Kroah-Hartman 29296fd7ce5SGreg Kroah-Hartman struct tty_ldisc *tty_ldisc_ref_wait(struct tty_struct *tty) 29396fd7ce5SGreg Kroah-Hartman { 29496fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld; 29596fd7ce5SGreg Kroah-Hartman 29696fd7ce5SGreg Kroah-Hartman /* wait_event is a macro */ 29796fd7ce5SGreg Kroah-Hartman wait_event(tty_ldisc_wait, (ld = tty_ldisc_try(tty)) != NULL); 29896fd7ce5SGreg Kroah-Hartman return ld; 29996fd7ce5SGreg Kroah-Hartman } 30096fd7ce5SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(tty_ldisc_ref_wait); 30196fd7ce5SGreg Kroah-Hartman 30296fd7ce5SGreg Kroah-Hartman /** 30396fd7ce5SGreg Kroah-Hartman * tty_ldisc_ref - get the tty ldisc 30496fd7ce5SGreg Kroah-Hartman * @tty: tty device 30596fd7ce5SGreg Kroah-Hartman * 30696fd7ce5SGreg Kroah-Hartman * Dereference the line discipline for the terminal and take a 30796fd7ce5SGreg Kroah-Hartman * reference to it. If the line discipline is in flux then 30896fd7ce5SGreg Kroah-Hartman * return NULL. Can be called from IRQ and timer functions. 30996fd7ce5SGreg Kroah-Hartman * 31096fd7ce5SGreg Kroah-Hartman * Locking: called functions take tty_ldisc_lock 31196fd7ce5SGreg Kroah-Hartman */ 31296fd7ce5SGreg Kroah-Hartman 31396fd7ce5SGreg Kroah-Hartman struct tty_ldisc *tty_ldisc_ref(struct tty_struct *tty) 31496fd7ce5SGreg Kroah-Hartman { 31596fd7ce5SGreg Kroah-Hartman return tty_ldisc_try(tty); 31696fd7ce5SGreg Kroah-Hartman } 31796fd7ce5SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(tty_ldisc_ref); 31896fd7ce5SGreg Kroah-Hartman 31996fd7ce5SGreg Kroah-Hartman /** 32096fd7ce5SGreg Kroah-Hartman * tty_ldisc_deref - free a tty ldisc reference 32196fd7ce5SGreg Kroah-Hartman * @ld: reference to free up 32296fd7ce5SGreg Kroah-Hartman * 32396fd7ce5SGreg Kroah-Hartman * Undoes the effect of tty_ldisc_ref or tty_ldisc_ref_wait. May 32496fd7ce5SGreg Kroah-Hartman * be called in IRQ context. 32596fd7ce5SGreg Kroah-Hartman * 32696fd7ce5SGreg Kroah-Hartman * Locking: takes tty_ldisc_lock 32796fd7ce5SGreg Kroah-Hartman */ 32896fd7ce5SGreg Kroah-Hartman 32996fd7ce5SGreg Kroah-Hartman void tty_ldisc_deref(struct tty_ldisc *ld) 33096fd7ce5SGreg Kroah-Hartman { 331ebc9baedSPeter Hurley unsigned long flags; 332ebc9baedSPeter Hurley 333ebc9baedSPeter Hurley if (WARN_ON_ONCE(!ld)) 334ebc9baedSPeter Hurley return; 335ebc9baedSPeter Hurley 336ebc9baedSPeter Hurley raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 337ebc9baedSPeter Hurley /* 338ebc9baedSPeter Hurley * WARNs if one-too-many reader references were released 339ebc9baedSPeter Hurley * - the last reference must be released with tty_ldisc_put 340ebc9baedSPeter Hurley */ 341ebc9baedSPeter Hurley WARN_ON(atomic_dec_and_test(&ld->users)); 342ebc9baedSPeter Hurley raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 343ebc9baedSPeter Hurley 344ebc9baedSPeter Hurley if (waitqueue_active(&ld->wq_idle)) 345ebc9baedSPeter Hurley wake_up(&ld->wq_idle); 34696fd7ce5SGreg Kroah-Hartman } 34796fd7ce5SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(tty_ldisc_deref); 34896fd7ce5SGreg Kroah-Hartman 349ebc9baedSPeter Hurley /** 350ebc9baedSPeter Hurley * tty_ldisc_put - release the ldisc 351ebc9baedSPeter Hurley * 352ebc9baedSPeter Hurley * Complement of tty_ldisc_get(). 353ebc9baedSPeter Hurley */ 35496fd7ce5SGreg Kroah-Hartman static inline void tty_ldisc_put(struct tty_ldisc *ld) 35596fd7ce5SGreg Kroah-Hartman { 356ebc9baedSPeter Hurley unsigned long flags; 357ebc9baedSPeter Hurley 358ebc9baedSPeter Hurley if (WARN_ON_ONCE(!ld)) 359ebc9baedSPeter Hurley return; 360ebc9baedSPeter Hurley 361ebc9baedSPeter Hurley raw_spin_lock_irqsave(&tty_ldisc_lock, flags); 362ebc9baedSPeter Hurley 363ebc9baedSPeter Hurley /* unreleased reader reference(s) will cause this WARN */ 364ebc9baedSPeter Hurley WARN_ON(!atomic_dec_and_test(&ld->users)); 365ebc9baedSPeter Hurley 366ebc9baedSPeter Hurley ld->ops->refcount--; 367ebc9baedSPeter Hurley module_put(ld->ops->owner); 368ebc9baedSPeter Hurley kfree(ld); 369ebc9baedSPeter Hurley raw_spin_unlock_irqrestore(&tty_ldisc_lock, flags); 37096fd7ce5SGreg Kroah-Hartman } 37196fd7ce5SGreg Kroah-Hartman 37296fd7ce5SGreg Kroah-Hartman /** 37396fd7ce5SGreg Kroah-Hartman * tty_ldisc_enable - allow ldisc use 37496fd7ce5SGreg Kroah-Hartman * @tty: terminal to activate ldisc on 37596fd7ce5SGreg Kroah-Hartman * 37696fd7ce5SGreg Kroah-Hartman * Set the TTY_LDISC flag when the line discipline can be called 37796fd7ce5SGreg Kroah-Hartman * again. Do necessary wakeups for existing sleepers. Clear the LDISC 37896fd7ce5SGreg Kroah-Hartman * changing flag to indicate any ldisc change is now over. 37996fd7ce5SGreg Kroah-Hartman * 38096fd7ce5SGreg Kroah-Hartman * Note: nobody should set the TTY_LDISC bit except via this function. 38196fd7ce5SGreg Kroah-Hartman * Clearing directly is allowed. 38296fd7ce5SGreg Kroah-Hartman */ 38396fd7ce5SGreg Kroah-Hartman 384d9121566SPeter Hurley static void tty_ldisc_enable(struct tty_struct *tty) 38596fd7ce5SGreg Kroah-Hartman { 38621622939SPeter Hurley clear_bit(TTY_LDISC_HALTED, &tty->flags); 38796fd7ce5SGreg Kroah-Hartman set_bit(TTY_LDISC, &tty->flags); 38896fd7ce5SGreg Kroah-Hartman clear_bit(TTY_LDISC_CHANGING, &tty->flags); 38996fd7ce5SGreg Kroah-Hartman wake_up(&tty_ldisc_wait); 39096fd7ce5SGreg Kroah-Hartman } 39196fd7ce5SGreg Kroah-Hartman 39296fd7ce5SGreg Kroah-Hartman /** 39396fd7ce5SGreg Kroah-Hartman * tty_ldisc_flush - flush line discipline queue 39496fd7ce5SGreg Kroah-Hartman * @tty: tty 39596fd7ce5SGreg Kroah-Hartman * 39696fd7ce5SGreg Kroah-Hartman * Flush the line discipline queue (if any) for this tty. If there 39796fd7ce5SGreg Kroah-Hartman * is no line discipline active this is a no-op. 39896fd7ce5SGreg Kroah-Hartman */ 39996fd7ce5SGreg Kroah-Hartman 40096fd7ce5SGreg Kroah-Hartman void tty_ldisc_flush(struct tty_struct *tty) 40196fd7ce5SGreg Kroah-Hartman { 40296fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld = tty_ldisc_ref(tty); 40396fd7ce5SGreg Kroah-Hartman if (ld) { 40496fd7ce5SGreg Kroah-Hartman if (ld->ops->flush_buffer) 40596fd7ce5SGreg Kroah-Hartman ld->ops->flush_buffer(tty); 40696fd7ce5SGreg Kroah-Hartman tty_ldisc_deref(ld); 40796fd7ce5SGreg Kroah-Hartman } 40896fd7ce5SGreg Kroah-Hartman tty_buffer_flush(tty); 40996fd7ce5SGreg Kroah-Hartman } 41096fd7ce5SGreg Kroah-Hartman EXPORT_SYMBOL_GPL(tty_ldisc_flush); 41196fd7ce5SGreg Kroah-Hartman 41296fd7ce5SGreg Kroah-Hartman /** 41396fd7ce5SGreg Kroah-Hartman * tty_set_termios_ldisc - set ldisc field 41496fd7ce5SGreg Kroah-Hartman * @tty: tty structure 41596fd7ce5SGreg Kroah-Hartman * @num: line discipline number 41696fd7ce5SGreg Kroah-Hartman * 41796fd7ce5SGreg Kroah-Hartman * This is probably overkill for real world processors but 41896fd7ce5SGreg Kroah-Hartman * they are not on hot paths so a little discipline won't do 41996fd7ce5SGreg Kroah-Hartman * any harm. 42096fd7ce5SGreg Kroah-Hartman * 42196fd7ce5SGreg Kroah-Hartman * Locking: takes termios_mutex 42296fd7ce5SGreg Kroah-Hartman */ 42396fd7ce5SGreg Kroah-Hartman 42496fd7ce5SGreg Kroah-Hartman static void tty_set_termios_ldisc(struct tty_struct *tty, int num) 42596fd7ce5SGreg Kroah-Hartman { 42696fd7ce5SGreg Kroah-Hartman mutex_lock(&tty->termios_mutex); 427adc8d746SAlan Cox tty->termios.c_line = num; 42896fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->termios_mutex); 42996fd7ce5SGreg Kroah-Hartman } 43096fd7ce5SGreg Kroah-Hartman 43196fd7ce5SGreg Kroah-Hartman /** 43296fd7ce5SGreg Kroah-Hartman * tty_ldisc_open - open a line discipline 43396fd7ce5SGreg Kroah-Hartman * @tty: tty we are opening the ldisc on 43496fd7ce5SGreg Kroah-Hartman * @ld: discipline to open 43596fd7ce5SGreg Kroah-Hartman * 43696fd7ce5SGreg Kroah-Hartman * A helper opening method. Also a convenient debugging and check 43796fd7ce5SGreg Kroah-Hartman * point. 43896fd7ce5SGreg Kroah-Hartman * 43996fd7ce5SGreg Kroah-Hartman * Locking: always called with BTM already held. 44096fd7ce5SGreg Kroah-Hartman */ 44196fd7ce5SGreg Kroah-Hartman 44296fd7ce5SGreg Kroah-Hartman static int tty_ldisc_open(struct tty_struct *tty, struct tty_ldisc *ld) 44396fd7ce5SGreg Kroah-Hartman { 44496fd7ce5SGreg Kroah-Hartman WARN_ON(test_and_set_bit(TTY_LDISC_OPEN, &tty->flags)); 44596fd7ce5SGreg Kroah-Hartman if (ld->ops->open) { 44696fd7ce5SGreg Kroah-Hartman int ret; 44796fd7ce5SGreg Kroah-Hartman /* BTM here locks versus a hangup event */ 44896fd7ce5SGreg Kroah-Hartman ret = ld->ops->open(tty); 4497f90cfc5SJiri Slaby if (ret) 4507f90cfc5SJiri Slaby clear_bit(TTY_LDISC_OPEN, &tty->flags); 45196fd7ce5SGreg Kroah-Hartman return ret; 45296fd7ce5SGreg Kroah-Hartman } 45396fd7ce5SGreg Kroah-Hartman return 0; 45496fd7ce5SGreg Kroah-Hartman } 45596fd7ce5SGreg Kroah-Hartman 45696fd7ce5SGreg Kroah-Hartman /** 45796fd7ce5SGreg Kroah-Hartman * tty_ldisc_close - close a line discipline 45896fd7ce5SGreg Kroah-Hartman * @tty: tty we are opening the ldisc on 45996fd7ce5SGreg Kroah-Hartman * @ld: discipline to close 46096fd7ce5SGreg Kroah-Hartman * 46196fd7ce5SGreg Kroah-Hartman * A helper close method. Also a convenient debugging and check 46296fd7ce5SGreg Kroah-Hartman * point. 46396fd7ce5SGreg Kroah-Hartman */ 46496fd7ce5SGreg Kroah-Hartman 46596fd7ce5SGreg Kroah-Hartman static void tty_ldisc_close(struct tty_struct *tty, struct tty_ldisc *ld) 46696fd7ce5SGreg Kroah-Hartman { 46796fd7ce5SGreg Kroah-Hartman WARN_ON(!test_bit(TTY_LDISC_OPEN, &tty->flags)); 46896fd7ce5SGreg Kroah-Hartman clear_bit(TTY_LDISC_OPEN, &tty->flags); 46996fd7ce5SGreg Kroah-Hartman if (ld->ops->close) 47096fd7ce5SGreg Kroah-Hartman ld->ops->close(tty); 47196fd7ce5SGreg Kroah-Hartman } 47296fd7ce5SGreg Kroah-Hartman 47396fd7ce5SGreg Kroah-Hartman /** 47496fd7ce5SGreg Kroah-Hartman * tty_ldisc_restore - helper for tty ldisc change 47596fd7ce5SGreg Kroah-Hartman * @tty: tty to recover 47696fd7ce5SGreg Kroah-Hartman * @old: previous ldisc 47796fd7ce5SGreg Kroah-Hartman * 47896fd7ce5SGreg Kroah-Hartman * Restore the previous line discipline or N_TTY when a line discipline 47996fd7ce5SGreg Kroah-Hartman * change fails due to an open error 48096fd7ce5SGreg Kroah-Hartman */ 48196fd7ce5SGreg Kroah-Hartman 48296fd7ce5SGreg Kroah-Hartman static void tty_ldisc_restore(struct tty_struct *tty, struct tty_ldisc *old) 48396fd7ce5SGreg Kroah-Hartman { 48496fd7ce5SGreg Kroah-Hartman char buf[64]; 48596fd7ce5SGreg Kroah-Hartman struct tty_ldisc *new_ldisc; 48696fd7ce5SGreg Kroah-Hartman int r; 48796fd7ce5SGreg Kroah-Hartman 48896fd7ce5SGreg Kroah-Hartman /* There is an outstanding reference here so this is safe */ 48996fd7ce5SGreg Kroah-Hartman old = tty_ldisc_get(old->ops->num); 49096fd7ce5SGreg Kroah-Hartman WARN_ON(IS_ERR(old)); 49196fd7ce5SGreg Kroah-Hartman tty_ldisc_assign(tty, old); 49296fd7ce5SGreg Kroah-Hartman tty_set_termios_ldisc(tty, old->ops->num); 49396fd7ce5SGreg Kroah-Hartman if (tty_ldisc_open(tty, old) < 0) { 49496fd7ce5SGreg Kroah-Hartman tty_ldisc_put(old); 49596fd7ce5SGreg Kroah-Hartman /* This driver is always present */ 49696fd7ce5SGreg Kroah-Hartman new_ldisc = tty_ldisc_get(N_TTY); 49796fd7ce5SGreg Kroah-Hartman if (IS_ERR(new_ldisc)) 49896fd7ce5SGreg Kroah-Hartman panic("n_tty: get"); 49996fd7ce5SGreg Kroah-Hartman tty_ldisc_assign(tty, new_ldisc); 50096fd7ce5SGreg Kroah-Hartman tty_set_termios_ldisc(tty, N_TTY); 50196fd7ce5SGreg Kroah-Hartman r = tty_ldisc_open(tty, new_ldisc); 50296fd7ce5SGreg Kroah-Hartman if (r < 0) 50396fd7ce5SGreg Kroah-Hartman panic("Couldn't open N_TTY ldisc for " 50496fd7ce5SGreg Kroah-Hartman "%s --- error %d.", 50596fd7ce5SGreg Kroah-Hartman tty_name(tty, buf), r); 50696fd7ce5SGreg Kroah-Hartman } 50796fd7ce5SGreg Kroah-Hartman } 50896fd7ce5SGreg Kroah-Hartman 50996fd7ce5SGreg Kroah-Hartman /** 510100eeae2SJiri Slaby * tty_ldisc_wait_idle - wait for the ldisc to become idle 511100eeae2SJiri Slaby * @tty: tty to wait for 512df92d056SJiri Slaby * @timeout: for how long to wait at most 513100eeae2SJiri Slaby * 514100eeae2SJiri Slaby * Wait for the line discipline to become idle. The discipline must 515100eeae2SJiri Slaby * have been halted for this to guarantee it remains idle. 516100eeae2SJiri Slaby */ 517df92d056SJiri Slaby static int tty_ldisc_wait_idle(struct tty_struct *tty, long timeout) 518100eeae2SJiri Slaby { 519df92d056SJiri Slaby long ret; 5201541f845SIvo Sieben ret = wait_event_timeout(tty->ldisc->wq_idle, 521df92d056SJiri Slaby atomic_read(&tty->ldisc->users) == 1, timeout); 522100eeae2SJiri Slaby return ret > 0 ? 0 : -EBUSY; 523100eeae2SJiri Slaby } 524100eeae2SJiri Slaby 525100eeae2SJiri Slaby /** 52611cf48eaSPeter Hurley * tty_ldisc_halt - shut down the line discipline 52711cf48eaSPeter Hurley * @tty: tty device 528f4cf7a38SPeter Hurley * @o_tty: paired pty device (can be NULL) 529cf528476SPeter Hurley * @timeout: # of jiffies to wait for ldisc refs to be released 53011cf48eaSPeter Hurley * 531f4cf7a38SPeter Hurley * Shut down the line discipline and work queue for this tty device and 532f4cf7a38SPeter Hurley * its paired pty (if exists). Clearing the TTY_LDISC flag ensures 5334f98d467SPeter Hurley * no further references can be obtained, while waiting for existing 5344f98d467SPeter Hurley * references to be released ensures no more data is fed to the ldisc. 535cf528476SPeter Hurley * 53611cf48eaSPeter Hurley * You need to do a 'flush_scheduled_work()' (outside the ldisc_mutex) 53711cf48eaSPeter Hurley * in order to make sure any currently executing ldisc work is also 53811cf48eaSPeter Hurley * flushed. 53911cf48eaSPeter Hurley */ 54011cf48eaSPeter Hurley 541f4cf7a38SPeter Hurley static int tty_ldisc_halt(struct tty_struct *tty, struct tty_struct *o_tty, 5424f98d467SPeter Hurley long timeout) 54311cf48eaSPeter Hurley { 5444f98d467SPeter Hurley int retval; 545cf528476SPeter Hurley 54611cf48eaSPeter Hurley clear_bit(TTY_LDISC, &tty->flags); 547f4cf7a38SPeter Hurley if (o_tty) 548f4cf7a38SPeter Hurley clear_bit(TTY_LDISC, &o_tty->flags); 549f4cf7a38SPeter Hurley 550cf528476SPeter Hurley retval = tty_ldisc_wait_idle(tty, timeout); 551f4cf7a38SPeter Hurley if (!retval && o_tty) 552f4cf7a38SPeter Hurley retval = tty_ldisc_wait_idle(o_tty, timeout); 553cf528476SPeter Hurley if (retval) 554cf528476SPeter Hurley return retval; 555cf528476SPeter Hurley 55611cf48eaSPeter Hurley set_bit(TTY_LDISC_HALTED, &tty->flags); 5574f98d467SPeter Hurley if (o_tty) 558f4cf7a38SPeter Hurley set_bit(TTY_LDISC_HALTED, &o_tty->flags); 559f4cf7a38SPeter Hurley 560cf528476SPeter Hurley return 0; 56111cf48eaSPeter Hurley } 56211cf48eaSPeter Hurley 56311cf48eaSPeter Hurley /** 56476bc35e7SPeter Hurley * tty_ldisc_hangup_halt - halt the line discipline for hangup 56576bc35e7SPeter Hurley * @tty: tty being hung up 566168942c9SPeter Hurley * 56776bc35e7SPeter Hurley * Shut down the line discipline and work queue for the tty device 56876bc35e7SPeter Hurley * being hungup. Clear the TTY_LDISC flag to ensure no further 5694f98d467SPeter Hurley * references can be obtained and wait for remaining references to be 5704f98d467SPeter Hurley * released to ensure no more data is fed to this ldisc. 571168942c9SPeter Hurley * Caller must hold legacy and ->ldisc_mutex. 5722276ad97SPeter Hurley * 5732276ad97SPeter Hurley * NB: tty_set_ldisc() is prevented from changing the ldisc concurrently 5742276ad97SPeter Hurley * with this function by checking the TTY_HUPPING flag. 575168942c9SPeter Hurley */ 57676bc35e7SPeter Hurley static bool tty_ldisc_hangup_halt(struct tty_struct *tty) 577168942c9SPeter Hurley { 578168942c9SPeter Hurley char cur_n[TASK_COMM_LEN], tty_n[64]; 579168942c9SPeter Hurley long timeout = 3 * HZ; 5802276ad97SPeter Hurley 58176bc35e7SPeter Hurley clear_bit(TTY_LDISC, &tty->flags); 58276bc35e7SPeter Hurley 5832276ad97SPeter Hurley if (tty->ldisc) { /* Not yet closed */ 584168942c9SPeter Hurley tty_unlock(tty); 585168942c9SPeter Hurley 586168942c9SPeter Hurley while (tty_ldisc_wait_idle(tty, timeout) == -EBUSY) { 587168942c9SPeter Hurley timeout = MAX_SCHEDULE_TIMEOUT; 588168942c9SPeter Hurley printk_ratelimited(KERN_WARNING 589168942c9SPeter Hurley "%s: waiting (%s) for %s took too long, but we keep waiting...\n", 590168942c9SPeter Hurley __func__, get_task_comm(cur_n, current), 591168942c9SPeter Hurley tty_name(tty, tty_n)); 592168942c9SPeter Hurley } 59376bc35e7SPeter Hurley 59476bc35e7SPeter Hurley set_bit(TTY_LDISC_HALTED, &tty->flags); 59576bc35e7SPeter Hurley 596168942c9SPeter Hurley /* must reacquire both locks and preserve lock order */ 597168942c9SPeter Hurley mutex_unlock(&tty->ldisc_mutex); 598168942c9SPeter Hurley tty_lock(tty); 599168942c9SPeter Hurley mutex_lock(&tty->ldisc_mutex); 600168942c9SPeter Hurley } 601168942c9SPeter Hurley return !!tty->ldisc; 602168942c9SPeter Hurley } 603168942c9SPeter Hurley 604168942c9SPeter Hurley /** 60596fd7ce5SGreg Kroah-Hartman * tty_set_ldisc - set line discipline 60696fd7ce5SGreg Kroah-Hartman * @tty: the terminal to set 60796fd7ce5SGreg Kroah-Hartman * @ldisc: the line discipline 60896fd7ce5SGreg Kroah-Hartman * 60996fd7ce5SGreg Kroah-Hartman * Set the discipline of a tty line. Must be called from a process 61096fd7ce5SGreg Kroah-Hartman * context. The ldisc change logic has to protect itself against any 61196fd7ce5SGreg Kroah-Hartman * overlapping ldisc change (including on the other end of pty pairs), 61296fd7ce5SGreg Kroah-Hartman * the close of one side of a tty/pty pair, and eventually hangup. 61396fd7ce5SGreg Kroah-Hartman * 61496fd7ce5SGreg Kroah-Hartman * Locking: takes tty_ldisc_lock, termios_mutex 61596fd7ce5SGreg Kroah-Hartman */ 61696fd7ce5SGreg Kroah-Hartman 61796fd7ce5SGreg Kroah-Hartman int tty_set_ldisc(struct tty_struct *tty, int ldisc) 61896fd7ce5SGreg Kroah-Hartman { 61996fd7ce5SGreg Kroah-Hartman int retval; 62096fd7ce5SGreg Kroah-Hartman struct tty_ldisc *o_ldisc, *new_ldisc; 62196fd7ce5SGreg Kroah-Hartman struct tty_struct *o_tty; 62296fd7ce5SGreg Kroah-Hartman 62396fd7ce5SGreg Kroah-Hartman new_ldisc = tty_ldisc_get(ldisc); 62496fd7ce5SGreg Kroah-Hartman if (IS_ERR(new_ldisc)) 62596fd7ce5SGreg Kroah-Hartman return PTR_ERR(new_ldisc); 62696fd7ce5SGreg Kroah-Hartman 62789c8d91eSAlan Cox tty_lock(tty); 62896fd7ce5SGreg Kroah-Hartman /* 62996fd7ce5SGreg Kroah-Hartman * We need to look at the tty locking here for pty/tty pairs 63096fd7ce5SGreg Kroah-Hartman * when both sides try to change in parallel. 63196fd7ce5SGreg Kroah-Hartman */ 63296fd7ce5SGreg Kroah-Hartman 63396fd7ce5SGreg Kroah-Hartman o_tty = tty->link; /* o_tty is the pty side or NULL */ 63496fd7ce5SGreg Kroah-Hartman 63596fd7ce5SGreg Kroah-Hartman 63696fd7ce5SGreg Kroah-Hartman /* 63796fd7ce5SGreg Kroah-Hartman * Check the no-op case 63896fd7ce5SGreg Kroah-Hartman */ 63996fd7ce5SGreg Kroah-Hartman 64096fd7ce5SGreg Kroah-Hartman if (tty->ldisc->ops->num == ldisc) { 64189c8d91eSAlan Cox tty_unlock(tty); 64296fd7ce5SGreg Kroah-Hartman tty_ldisc_put(new_ldisc); 64396fd7ce5SGreg Kroah-Hartman return 0; 64496fd7ce5SGreg Kroah-Hartman } 64596fd7ce5SGreg Kroah-Hartman 64689c8d91eSAlan Cox tty_unlock(tty); 64796fd7ce5SGreg Kroah-Hartman /* 64896fd7ce5SGreg Kroah-Hartman * Problem: What do we do if this blocks ? 64996fd7ce5SGreg Kroah-Hartman * We could deadlock here 65096fd7ce5SGreg Kroah-Hartman */ 65196fd7ce5SGreg Kroah-Hartman 65296fd7ce5SGreg Kroah-Hartman tty_wait_until_sent(tty, 0); 65396fd7ce5SGreg Kroah-Hartman 65489c8d91eSAlan Cox tty_lock(tty); 65596fd7ce5SGreg Kroah-Hartman mutex_lock(&tty->ldisc_mutex); 65696fd7ce5SGreg Kroah-Hartman 65796fd7ce5SGreg Kroah-Hartman /* 65896fd7ce5SGreg Kroah-Hartman * We could be midstream of another ldisc change which has 65996fd7ce5SGreg Kroah-Hartman * dropped the lock during processing. If so we need to wait. 66096fd7ce5SGreg Kroah-Hartman */ 66196fd7ce5SGreg Kroah-Hartman 66296fd7ce5SGreg Kroah-Hartman while (test_bit(TTY_LDISC_CHANGING, &tty->flags)) { 66396fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->ldisc_mutex); 66489c8d91eSAlan Cox tty_unlock(tty); 66596fd7ce5SGreg Kroah-Hartman wait_event(tty_ldisc_wait, 66696fd7ce5SGreg Kroah-Hartman test_bit(TTY_LDISC_CHANGING, &tty->flags) == 0); 66789c8d91eSAlan Cox tty_lock(tty); 66896fd7ce5SGreg Kroah-Hartman mutex_lock(&tty->ldisc_mutex); 66996fd7ce5SGreg Kroah-Hartman } 67096fd7ce5SGreg Kroah-Hartman 67196fd7ce5SGreg Kroah-Hartman set_bit(TTY_LDISC_CHANGING, &tty->flags); 67296fd7ce5SGreg Kroah-Hartman 67396fd7ce5SGreg Kroah-Hartman /* 67496fd7ce5SGreg Kroah-Hartman * No more input please, we are switching. The new ldisc 67596fd7ce5SGreg Kroah-Hartman * will update this value in the ldisc open function 67696fd7ce5SGreg Kroah-Hartman */ 67796fd7ce5SGreg Kroah-Hartman 67896fd7ce5SGreg Kroah-Hartman tty->receive_room = 0; 67996fd7ce5SGreg Kroah-Hartman 68096fd7ce5SGreg Kroah-Hartman o_ldisc = tty->ldisc; 68196fd7ce5SGreg Kroah-Hartman 68289c8d91eSAlan Cox tty_unlock(tty); 68396fd7ce5SGreg Kroah-Hartman /* 68496fd7ce5SGreg Kroah-Hartman * Make sure we don't change while someone holds a 68596fd7ce5SGreg Kroah-Hartman * reference to the line discipline. The TTY_LDISC bit 68696fd7ce5SGreg Kroah-Hartman * prevents anyone taking a reference once it is clear. 68796fd7ce5SGreg Kroah-Hartman * We need the lock to avoid racing reference takers. 68896fd7ce5SGreg Kroah-Hartman * 68996fd7ce5SGreg Kroah-Hartman * We must clear the TTY_LDISC bit here to avoid a livelock 69096fd7ce5SGreg Kroah-Hartman * with a userspace app continually trying to use the tty in 69196fd7ce5SGreg Kroah-Hartman * parallel to the change and re-referencing the tty. 69296fd7ce5SGreg Kroah-Hartman */ 69396fd7ce5SGreg Kroah-Hartman 6944f98d467SPeter Hurley retval = tty_ldisc_halt(tty, o_tty, 5 * HZ); 69596fd7ce5SGreg Kroah-Hartman 69696fd7ce5SGreg Kroah-Hartman /* 697a2965b7bSPeter Hurley * Wait for hangup to complete, if pending. 69896fd7ce5SGreg Kroah-Hartman * We must drop the mutex here in case a hangup is also in process. 69996fd7ce5SGreg Kroah-Hartman */ 70096fd7ce5SGreg Kroah-Hartman 70196fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->ldisc_mutex); 70296fd7ce5SGreg Kroah-Hartman 703a2965b7bSPeter Hurley flush_work(&tty->hangup_work); 70496fd7ce5SGreg Kroah-Hartman 70589c8d91eSAlan Cox tty_lock(tty); 70696fd7ce5SGreg Kroah-Hartman mutex_lock(&tty->ldisc_mutex); 707100eeae2SJiri Slaby 708100eeae2SJiri Slaby /* handle wait idle failure locked */ 709100eeae2SJiri Slaby if (retval) { 710100eeae2SJiri Slaby tty_ldisc_put(new_ldisc); 711100eeae2SJiri Slaby goto enable; 712100eeae2SJiri Slaby } 713100eeae2SJiri Slaby 71440c9f61eSShachar Shemesh if (test_bit(TTY_HUPPING, &tty->flags)) { 71596fd7ce5SGreg Kroah-Hartman /* We were raced by the hangup method. It will have stomped 71696fd7ce5SGreg Kroah-Hartman the ldisc data and closed the ldisc down */ 71796fd7ce5SGreg Kroah-Hartman clear_bit(TTY_LDISC_CHANGING, &tty->flags); 71896fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->ldisc_mutex); 71996fd7ce5SGreg Kroah-Hartman tty_ldisc_put(new_ldisc); 72089c8d91eSAlan Cox tty_unlock(tty); 72196fd7ce5SGreg Kroah-Hartman return -EIO; 72296fd7ce5SGreg Kroah-Hartman } 72396fd7ce5SGreg Kroah-Hartman 72496fd7ce5SGreg Kroah-Hartman /* Shutdown the current discipline. */ 72596fd7ce5SGreg Kroah-Hartman tty_ldisc_close(tty, o_ldisc); 72696fd7ce5SGreg Kroah-Hartman 72796fd7ce5SGreg Kroah-Hartman /* Now set up the new line discipline. */ 72896fd7ce5SGreg Kroah-Hartman tty_ldisc_assign(tty, new_ldisc); 72996fd7ce5SGreg Kroah-Hartman tty_set_termios_ldisc(tty, ldisc); 73096fd7ce5SGreg Kroah-Hartman 73196fd7ce5SGreg Kroah-Hartman retval = tty_ldisc_open(tty, new_ldisc); 73296fd7ce5SGreg Kroah-Hartman if (retval < 0) { 73396fd7ce5SGreg Kroah-Hartman /* Back to the old one or N_TTY if we can't */ 73496fd7ce5SGreg Kroah-Hartman tty_ldisc_put(new_ldisc); 73596fd7ce5SGreg Kroah-Hartman tty_ldisc_restore(tty, o_ldisc); 73696fd7ce5SGreg Kroah-Hartman } 73796fd7ce5SGreg Kroah-Hartman 73896fd7ce5SGreg Kroah-Hartman /* At this point we hold a reference to the new ldisc and a 73996fd7ce5SGreg Kroah-Hartman a reference to the old ldisc. If we ended up flipping back 74096fd7ce5SGreg Kroah-Hartman to the existing ldisc we have two references to it */ 74196fd7ce5SGreg Kroah-Hartman 74296fd7ce5SGreg Kroah-Hartman if (tty->ldisc->ops->num != o_ldisc->ops->num && tty->ops->set_ldisc) 74396fd7ce5SGreg Kroah-Hartman tty->ops->set_ldisc(tty); 74496fd7ce5SGreg Kroah-Hartman 74596fd7ce5SGreg Kroah-Hartman tty_ldisc_put(o_ldisc); 74696fd7ce5SGreg Kroah-Hartman 747100eeae2SJiri Slaby enable: 74896fd7ce5SGreg Kroah-Hartman /* 74996fd7ce5SGreg Kroah-Hartman * Allow ldisc referencing to occur again 75096fd7ce5SGreg Kroah-Hartman */ 75196fd7ce5SGreg Kroah-Hartman 75296fd7ce5SGreg Kroah-Hartman tty_ldisc_enable(tty); 75396fd7ce5SGreg Kroah-Hartman if (o_tty) 75496fd7ce5SGreg Kroah-Hartman tty_ldisc_enable(o_tty); 75596fd7ce5SGreg Kroah-Hartman 75696fd7ce5SGreg Kroah-Hartman /* Restart the work queue in case no characters kick it off. Safe if 75796fd7ce5SGreg Kroah-Hartman already running */ 758ecbbfd44SJiri Slaby schedule_work(&tty->port->buf.work); 7594f98d467SPeter Hurley if (o_tty) 760ecbbfd44SJiri Slaby schedule_work(&o_tty->port->buf.work); 7614f98d467SPeter Hurley 76296fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->ldisc_mutex); 76389c8d91eSAlan Cox tty_unlock(tty); 76496fd7ce5SGreg Kroah-Hartman return retval; 76596fd7ce5SGreg Kroah-Hartman } 76696fd7ce5SGreg Kroah-Hartman 76796fd7ce5SGreg Kroah-Hartman /** 76896fd7ce5SGreg Kroah-Hartman * tty_reset_termios - reset terminal state 76996fd7ce5SGreg Kroah-Hartman * @tty: tty to reset 77096fd7ce5SGreg Kroah-Hartman * 77196fd7ce5SGreg Kroah-Hartman * Restore a terminal to the driver default state. 77296fd7ce5SGreg Kroah-Hartman */ 77396fd7ce5SGreg Kroah-Hartman 77496fd7ce5SGreg Kroah-Hartman static void tty_reset_termios(struct tty_struct *tty) 77596fd7ce5SGreg Kroah-Hartman { 77696fd7ce5SGreg Kroah-Hartman mutex_lock(&tty->termios_mutex); 777adc8d746SAlan Cox tty->termios = tty->driver->init_termios; 778adc8d746SAlan Cox tty->termios.c_ispeed = tty_termios_input_baud_rate(&tty->termios); 779adc8d746SAlan Cox tty->termios.c_ospeed = tty_termios_baud_rate(&tty->termios); 78096fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->termios_mutex); 78196fd7ce5SGreg Kroah-Hartman } 78296fd7ce5SGreg Kroah-Hartman 78396fd7ce5SGreg Kroah-Hartman 78496fd7ce5SGreg Kroah-Hartman /** 78596fd7ce5SGreg Kroah-Hartman * tty_ldisc_reinit - reinitialise the tty ldisc 78696fd7ce5SGreg Kroah-Hartman * @tty: tty to reinit 78796fd7ce5SGreg Kroah-Hartman * @ldisc: line discipline to reinitialize 78896fd7ce5SGreg Kroah-Hartman * 78996fd7ce5SGreg Kroah-Hartman * Switch the tty to a line discipline and leave the ldisc 79096fd7ce5SGreg Kroah-Hartman * state closed 79196fd7ce5SGreg Kroah-Hartman */ 79296fd7ce5SGreg Kroah-Hartman 7931c95ba1eSPhilippe Rétornaz static int tty_ldisc_reinit(struct tty_struct *tty, int ldisc) 79496fd7ce5SGreg Kroah-Hartman { 7951c95ba1eSPhilippe Rétornaz struct tty_ldisc *ld = tty_ldisc_get(ldisc); 7961c95ba1eSPhilippe Rétornaz 7971c95ba1eSPhilippe Rétornaz if (IS_ERR(ld)) 7981c95ba1eSPhilippe Rétornaz return -1; 79996fd7ce5SGreg Kroah-Hartman 80096fd7ce5SGreg Kroah-Hartman tty_ldisc_close(tty, tty->ldisc); 80196fd7ce5SGreg Kroah-Hartman tty_ldisc_put(tty->ldisc); 80296fd7ce5SGreg Kroah-Hartman tty->ldisc = NULL; 80396fd7ce5SGreg Kroah-Hartman /* 80496fd7ce5SGreg Kroah-Hartman * Switch the line discipline back 80596fd7ce5SGreg Kroah-Hartman */ 80696fd7ce5SGreg Kroah-Hartman tty_ldisc_assign(tty, ld); 80796fd7ce5SGreg Kroah-Hartman tty_set_termios_ldisc(tty, ldisc); 8081c95ba1eSPhilippe Rétornaz 8091c95ba1eSPhilippe Rétornaz return 0; 81096fd7ce5SGreg Kroah-Hartman } 81196fd7ce5SGreg Kroah-Hartman 81296fd7ce5SGreg Kroah-Hartman /** 81396fd7ce5SGreg Kroah-Hartman * tty_ldisc_hangup - hangup ldisc reset 81496fd7ce5SGreg Kroah-Hartman * @tty: tty being hung up 81596fd7ce5SGreg Kroah-Hartman * 81696fd7ce5SGreg Kroah-Hartman * Some tty devices reset their termios when they receive a hangup 81796fd7ce5SGreg Kroah-Hartman * event. In that situation we must also switch back to N_TTY properly 81896fd7ce5SGreg Kroah-Hartman * before we reset the termios data. 81996fd7ce5SGreg Kroah-Hartman * 82096fd7ce5SGreg Kroah-Hartman * Locking: We can take the ldisc mutex as the rest of the code is 82196fd7ce5SGreg Kroah-Hartman * careful to allow for this. 82296fd7ce5SGreg Kroah-Hartman * 82396fd7ce5SGreg Kroah-Hartman * In the pty pair case this occurs in the close() path of the 82496fd7ce5SGreg Kroah-Hartman * tty itself so we must be careful about locking rules. 82596fd7ce5SGreg Kroah-Hartman */ 82696fd7ce5SGreg Kroah-Hartman 82796fd7ce5SGreg Kroah-Hartman void tty_ldisc_hangup(struct tty_struct *tty) 82896fd7ce5SGreg Kroah-Hartman { 82996fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld; 83096fd7ce5SGreg Kroah-Hartman int reset = tty->driver->flags & TTY_DRIVER_RESET_TERMIOS; 83196fd7ce5SGreg Kroah-Hartman int err = 0; 83296fd7ce5SGreg Kroah-Hartman 833fc575ee6SPeter Hurley tty_ldisc_debug(tty, "closing ldisc: %p\n", tty->ldisc); 834fc575ee6SPeter Hurley 83596fd7ce5SGreg Kroah-Hartman /* 83696fd7ce5SGreg Kroah-Hartman * FIXME! What are the locking issues here? This may me overdoing 83796fd7ce5SGreg Kroah-Hartman * things... This question is especially important now that we've 83896fd7ce5SGreg Kroah-Hartman * removed the irqlock. 83996fd7ce5SGreg Kroah-Hartman */ 84096fd7ce5SGreg Kroah-Hartman ld = tty_ldisc_ref(tty); 84196fd7ce5SGreg Kroah-Hartman if (ld != NULL) { 84296fd7ce5SGreg Kroah-Hartman /* We may have no line discipline at this point */ 84396fd7ce5SGreg Kroah-Hartman if (ld->ops->flush_buffer) 84496fd7ce5SGreg Kroah-Hartman ld->ops->flush_buffer(tty); 84596fd7ce5SGreg Kroah-Hartman tty_driver_flush_buffer(tty); 84696fd7ce5SGreg Kroah-Hartman if ((test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) && 84796fd7ce5SGreg Kroah-Hartman ld->ops->write_wakeup) 84896fd7ce5SGreg Kroah-Hartman ld->ops->write_wakeup(tty); 84996fd7ce5SGreg Kroah-Hartman if (ld->ops->hangup) 85096fd7ce5SGreg Kroah-Hartman ld->ops->hangup(tty); 85196fd7ce5SGreg Kroah-Hartman tty_ldisc_deref(ld); 85296fd7ce5SGreg Kroah-Hartman } 85396fd7ce5SGreg Kroah-Hartman /* 85496fd7ce5SGreg Kroah-Hartman * FIXME: Once we trust the LDISC code better we can wait here for 85596fd7ce5SGreg Kroah-Hartman * ldisc completion and fix the driver call race 85696fd7ce5SGreg Kroah-Hartman */ 85796fd7ce5SGreg Kroah-Hartman wake_up_interruptible_poll(&tty->write_wait, POLLOUT); 85896fd7ce5SGreg Kroah-Hartman wake_up_interruptible_poll(&tty->read_wait, POLLIN); 85996fd7ce5SGreg Kroah-Hartman /* 86096fd7ce5SGreg Kroah-Hartman * Shutdown the current line discipline, and reset it to 86196fd7ce5SGreg Kroah-Hartman * N_TTY if need be. 86296fd7ce5SGreg Kroah-Hartman * 86396fd7ce5SGreg Kroah-Hartman * Avoid racing set_ldisc or tty_ldisc_release 86496fd7ce5SGreg Kroah-Hartman */ 86596fd7ce5SGreg Kroah-Hartman mutex_lock(&tty->ldisc_mutex); 86696fd7ce5SGreg Kroah-Hartman 86776bc35e7SPeter Hurley if (tty_ldisc_hangup_halt(tty)) { 868c8785241SPeter Hurley 869c8785241SPeter Hurley /* At this point we have a halted ldisc; we want to close it and 870c8785241SPeter Hurley reopen a new ldisc. We could defer the reopen to the next 871c8785241SPeter Hurley open but it means auditing a lot of other paths so this is 872c8785241SPeter Hurley a FIXME */ 87396fd7ce5SGreg Kroah-Hartman if (reset == 0) { 8741c95ba1eSPhilippe Rétornaz 875adc8d746SAlan Cox if (!tty_ldisc_reinit(tty, tty->termios.c_line)) 87696fd7ce5SGreg Kroah-Hartman err = tty_ldisc_open(tty, tty->ldisc); 8771c95ba1eSPhilippe Rétornaz else 8781c95ba1eSPhilippe Rétornaz err = 1; 87996fd7ce5SGreg Kroah-Hartman } 88096fd7ce5SGreg Kroah-Hartman /* If the re-open fails or we reset then go to N_TTY. The 88196fd7ce5SGreg Kroah-Hartman N_TTY open cannot fail */ 88296fd7ce5SGreg Kroah-Hartman if (reset || err) { 8831c95ba1eSPhilippe Rétornaz BUG_ON(tty_ldisc_reinit(tty, N_TTY)); 88496fd7ce5SGreg Kroah-Hartman WARN_ON(tty_ldisc_open(tty, tty->ldisc)); 88596fd7ce5SGreg Kroah-Hartman } 88696fd7ce5SGreg Kroah-Hartman tty_ldisc_enable(tty); 88796fd7ce5SGreg Kroah-Hartman } 88896fd7ce5SGreg Kroah-Hartman mutex_unlock(&tty->ldisc_mutex); 88996fd7ce5SGreg Kroah-Hartman if (reset) 89096fd7ce5SGreg Kroah-Hartman tty_reset_termios(tty); 891fc575ee6SPeter Hurley 892fc575ee6SPeter Hurley tty_ldisc_debug(tty, "re-opened ldisc: %p\n", tty->ldisc); 89396fd7ce5SGreg Kroah-Hartman } 89496fd7ce5SGreg Kroah-Hartman 89596fd7ce5SGreg Kroah-Hartman /** 89696fd7ce5SGreg Kroah-Hartman * tty_ldisc_setup - open line discipline 89796fd7ce5SGreg Kroah-Hartman * @tty: tty being shut down 89896fd7ce5SGreg Kroah-Hartman * @o_tty: pair tty for pty/tty pairs 89996fd7ce5SGreg Kroah-Hartman * 90096fd7ce5SGreg Kroah-Hartman * Called during the initial open of a tty/pty pair in order to set up the 90196fd7ce5SGreg Kroah-Hartman * line disciplines and bind them to the tty. This has no locking issues 90296fd7ce5SGreg Kroah-Hartman * as the device isn't yet active. 90396fd7ce5SGreg Kroah-Hartman */ 90496fd7ce5SGreg Kroah-Hartman 90596fd7ce5SGreg Kroah-Hartman int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty) 90696fd7ce5SGreg Kroah-Hartman { 90796fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld = tty->ldisc; 90896fd7ce5SGreg Kroah-Hartman int retval; 90996fd7ce5SGreg Kroah-Hartman 91096fd7ce5SGreg Kroah-Hartman retval = tty_ldisc_open(tty, ld); 91196fd7ce5SGreg Kroah-Hartman if (retval) 91296fd7ce5SGreg Kroah-Hartman return retval; 91396fd7ce5SGreg Kroah-Hartman 91496fd7ce5SGreg Kroah-Hartman if (o_tty) { 91596fd7ce5SGreg Kroah-Hartman retval = tty_ldisc_open(o_tty, o_tty->ldisc); 91696fd7ce5SGreg Kroah-Hartman if (retval) { 91796fd7ce5SGreg Kroah-Hartman tty_ldisc_close(tty, ld); 91896fd7ce5SGreg Kroah-Hartman return retval; 91996fd7ce5SGreg Kroah-Hartman } 92096fd7ce5SGreg Kroah-Hartman tty_ldisc_enable(o_tty); 92196fd7ce5SGreg Kroah-Hartman } 92296fd7ce5SGreg Kroah-Hartman tty_ldisc_enable(tty); 92396fd7ce5SGreg Kroah-Hartman return 0; 92496fd7ce5SGreg Kroah-Hartman } 92589c8d91eSAlan Cox 92689c8d91eSAlan Cox static void tty_ldisc_kill(struct tty_struct *tty) 92789c8d91eSAlan Cox { 92889c8d91eSAlan Cox mutex_lock(&tty->ldisc_mutex); 92989c8d91eSAlan Cox /* 93089c8d91eSAlan Cox * Now kill off the ldisc 93189c8d91eSAlan Cox */ 93289c8d91eSAlan Cox tty_ldisc_close(tty, tty->ldisc); 93389c8d91eSAlan Cox tty_ldisc_put(tty->ldisc); 93489c8d91eSAlan Cox /* Force an oops if we mess this up */ 93589c8d91eSAlan Cox tty->ldisc = NULL; 93689c8d91eSAlan Cox 93789c8d91eSAlan Cox /* Ensure the next open requests the N_TTY ldisc */ 93889c8d91eSAlan Cox tty_set_termios_ldisc(tty, N_TTY); 93989c8d91eSAlan Cox mutex_unlock(&tty->ldisc_mutex); 94089c8d91eSAlan Cox } 94189c8d91eSAlan Cox 94296fd7ce5SGreg Kroah-Hartman /** 94396fd7ce5SGreg Kroah-Hartman * tty_ldisc_release - release line discipline 94496fd7ce5SGreg Kroah-Hartman * @tty: tty being shut down 94596fd7ce5SGreg Kroah-Hartman * @o_tty: pair tty for pty/tty pairs 94696fd7ce5SGreg Kroah-Hartman * 94796fd7ce5SGreg Kroah-Hartman * Called during the final close of a tty/pty pair in order to shut down 94896fd7ce5SGreg Kroah-Hartman * the line discpline layer. On exit the ldisc assigned is N_TTY and the 94996fd7ce5SGreg Kroah-Hartman * ldisc has not been opened. 95096fd7ce5SGreg Kroah-Hartman */ 95196fd7ce5SGreg Kroah-Hartman 95296fd7ce5SGreg Kroah-Hartman void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty) 95396fd7ce5SGreg Kroah-Hartman { 95496fd7ce5SGreg Kroah-Hartman /* 955a2965b7bSPeter Hurley * Shutdown this line discipline. As this is the final close, 956a2965b7bSPeter Hurley * it does not race with the set_ldisc code path. 95796fd7ce5SGreg Kroah-Hartman */ 95896fd7ce5SGreg Kroah-Hartman 959fc575ee6SPeter Hurley tty_ldisc_debug(tty, "closing ldisc: %p\n", tty->ldisc); 960fc575ee6SPeter Hurley 9614f98d467SPeter Hurley tty_ldisc_halt(tty, o_tty, MAX_SCHEDULE_TIMEOUT); 962852e4a81SSebastian Andrzej Siewior 963852e4a81SSebastian Andrzej Siewior tty_lock_pair(tty, o_tty); 9646d31a88cSAlan Cox /* This will need doing differently if we need to lock */ 96589c8d91eSAlan Cox tty_ldisc_kill(tty); 96689c8d91eSAlan Cox if (o_tty) 96789c8d91eSAlan Cox tty_ldisc_kill(o_tty); 96889c8d91eSAlan Cox 96989c8d91eSAlan Cox tty_unlock_pair(tty, o_tty); 97096fd7ce5SGreg Kroah-Hartman /* And the memory resources remaining (buffers, termios) will be 97196fd7ce5SGreg Kroah-Hartman disposed of when the kref hits zero */ 972fc575ee6SPeter Hurley 973fc575ee6SPeter Hurley tty_ldisc_debug(tty, "ldisc closed\n"); 97496fd7ce5SGreg Kroah-Hartman } 97596fd7ce5SGreg Kroah-Hartman 97696fd7ce5SGreg Kroah-Hartman /** 97796fd7ce5SGreg Kroah-Hartman * tty_ldisc_init - ldisc setup for new tty 97896fd7ce5SGreg Kroah-Hartman * @tty: tty being allocated 97996fd7ce5SGreg Kroah-Hartman * 98096fd7ce5SGreg Kroah-Hartman * Set up the line discipline objects for a newly allocated tty. Note that 98196fd7ce5SGreg Kroah-Hartman * the tty structure is not completely set up when this call is made. 98296fd7ce5SGreg Kroah-Hartman */ 98396fd7ce5SGreg Kroah-Hartman 98496fd7ce5SGreg Kroah-Hartman void tty_ldisc_init(struct tty_struct *tty) 98596fd7ce5SGreg Kroah-Hartman { 98696fd7ce5SGreg Kroah-Hartman struct tty_ldisc *ld = tty_ldisc_get(N_TTY); 98796fd7ce5SGreg Kroah-Hartman if (IS_ERR(ld)) 98896fd7ce5SGreg Kroah-Hartman panic("n_tty: init_tty"); 98996fd7ce5SGreg Kroah-Hartman tty_ldisc_assign(tty, ld); 99096fd7ce5SGreg Kroah-Hartman } 99196fd7ce5SGreg Kroah-Hartman 9926716671dSJiri Slaby /** 9936716671dSJiri Slaby * tty_ldisc_init - ldisc cleanup for new tty 9946716671dSJiri Slaby * @tty: tty that was allocated recently 9956716671dSJiri Slaby * 9966716671dSJiri Slaby * The tty structure must not becompletely set up (tty_ldisc_setup) when 9976716671dSJiri Slaby * this call is made. 9986716671dSJiri Slaby */ 9996716671dSJiri Slaby void tty_ldisc_deinit(struct tty_struct *tty) 10006716671dSJiri Slaby { 1001ebc9baedSPeter Hurley tty_ldisc_put(tty->ldisc); 10026716671dSJiri Slaby tty_ldisc_assign(tty, NULL); 10036716671dSJiri Slaby } 10046716671dSJiri Slaby 100596fd7ce5SGreg Kroah-Hartman void tty_ldisc_begin(void) 100696fd7ce5SGreg Kroah-Hartman { 100796fd7ce5SGreg Kroah-Hartman /* Setup the default TTY line discipline. */ 100896fd7ce5SGreg Kroah-Hartman (void) tty_register_ldisc(N_TTY, &tty_ldisc_N_TTY); 100996fd7ce5SGreg Kroah-Hartman } 1010