diff options
| -rw-r--r-- | drivers/tty/amiserial.c | 14 | ||||
| -rw-r--r-- | drivers/tty/cyclades.c | 2 | ||||
| -rw-r--r-- | drivers/tty/n_r3964.c | 10 | ||||
| -rw-r--r-- | drivers/tty/pty.c | 25 | ||||
| -rw-r--r-- | drivers/tty/serial/crisv10.c | 8 | ||||
| -rw-r--r-- | drivers/tty/synclink.c | 4 | ||||
| -rw-r--r-- | drivers/tty/synclink_gt.c | 4 | ||||
| -rw-r--r-- | drivers/tty/synclinkmp.c | 4 | ||||
| -rw-r--r-- | drivers/tty/tty_io.c | 67 | ||||
| -rw-r--r-- | drivers/tty/tty_ldisc.c | 67 | ||||
| -rw-r--r-- | drivers/tty/tty_mutex.c | 71 | ||||
| -rw-r--r-- | drivers/tty/tty_port.c | 6 | ||||
| -rw-r--r-- | include/linux/tty.h | 23 | ||||
| -rw-r--r-- | net/bluetooth/rfcomm/tty.c | 4 |
14 files changed, 190 insertions, 119 deletions
diff --git a/drivers/tty/amiserial.c b/drivers/tty/amiserial.c index 6cc4358f68c1..35819e312624 100644 --- a/drivers/tty/amiserial.c +++ b/drivers/tty/amiserial.c | |||
| @@ -1033,7 +1033,7 @@ static int get_serial_info(struct tty_struct *tty, struct serial_state *state, | |||
| 1033 | if (!retinfo) | 1033 | if (!retinfo) |
| 1034 | return -EFAULT; | 1034 | return -EFAULT; |
| 1035 | memset(&tmp, 0, sizeof(tmp)); | 1035 | memset(&tmp, 0, sizeof(tmp)); |
| 1036 | tty_lock(); | 1036 | tty_lock(tty); |
| 1037 | tmp.line = tty->index; | 1037 | tmp.line = tty->index; |
| 1038 | tmp.port = state->port; | 1038 | tmp.port = state->port; |
| 1039 | tmp.flags = state->tport.flags; | 1039 | tmp.flags = state->tport.flags; |
| @@ -1042,7 +1042,7 @@ static int get_serial_info(struct tty_struct *tty, struct serial_state *state, | |||
| 1042 | tmp.close_delay = state->tport.close_delay; | 1042 | tmp.close_delay = state->tport.close_delay; |
| 1043 | tmp.closing_wait = state->tport.closing_wait; | 1043 | tmp.closing_wait = state->tport.closing_wait; |
| 1044 | tmp.custom_divisor = state->custom_divisor; | 1044 | tmp.custom_divisor = state->custom_divisor; |
| 1045 | tty_unlock(); | 1045 | tty_unlock(tty); |
| 1046 | if (copy_to_user(retinfo,&tmp,sizeof(*retinfo))) | 1046 | if (copy_to_user(retinfo,&tmp,sizeof(*retinfo))) |
| 1047 | return -EFAULT; | 1047 | return -EFAULT; |
| 1048 | return 0; | 1048 | return 0; |
| @@ -1059,12 +1059,12 @@ static int set_serial_info(struct tty_struct *tty, struct serial_state *state, | |||
| 1059 | if (copy_from_user(&new_serial,new_info,sizeof(new_serial))) | 1059 | if (copy_from_user(&new_serial,new_info,sizeof(new_serial))) |
| 1060 | return -EFAULT; | 1060 | return -EFAULT; |
| 1061 | 1061 | ||
| 1062 | tty_lock(); | 1062 | tty_lock(tty); |
| 1063 | change_spd = ((new_serial.flags ^ port->flags) & ASYNC_SPD_MASK) || | 1063 | change_spd = ((new_serial.flags ^ port->flags) & ASYNC_SPD_MASK) || |
| 1064 | new_serial.custom_divisor != state->custom_divisor; | 1064 | new_serial.custom_divisor != state->custom_divisor; |
| 1065 | if (new_serial.irq || new_serial.port != state->port || | 1065 | if (new_serial.irq || new_serial.port != state->port || |
| 1066 | new_serial.xmit_fifo_size != state->xmit_fifo_size) { | 1066 | new_serial.xmit_fifo_size != state->xmit_fifo_size) { |
| 1067 | tty_unlock(); | 1067 | tty_unlock(tty); |
| 1068 | return -EINVAL; | 1068 | return -EINVAL; |
| 1069 | } | 1069 | } |
| 1070 | 1070 | ||
| @@ -1074,7 +1074,7 @@ static int set_serial_info(struct tty_struct *tty, struct serial_state *state, | |||
| 1074 | (new_serial.xmit_fifo_size != state->xmit_fifo_size) || | 1074 | (new_serial.xmit_fifo_size != state->xmit_fifo_size) || |
| 1075 | ((new_serial.flags & ~ASYNC_USR_MASK) != | 1075 | ((new_serial.flags & ~ASYNC_USR_MASK) != |
| 1076 | (port->flags & ~ASYNC_USR_MASK))) { | 1076 | (port->flags & ~ASYNC_USR_MASK))) { |
| 1077 | tty_unlock(); | 1077 | tty_unlock(tty); |
| 1078 | return -EPERM; | 1078 | return -EPERM; |
| 1079 | } | 1079 | } |
| 1080 | port->flags = ((port->flags & ~ASYNC_USR_MASK) | | 1080 | port->flags = ((port->flags & ~ASYNC_USR_MASK) | |
| @@ -1084,7 +1084,7 @@ static int set_serial_info(struct tty_struct *tty, struct serial_state *state, | |||
| 1084 | } | 1084 | } |
| 1085 | 1085 | ||
| 1086 | if (new_serial.baud_base < 9600) { | 1086 | if (new_serial.baud_base < 9600) { |
| 1087 | tty_unlock(); | 1087 | tty_unlock(tty); |
| 1088 | return -EINVAL; | 1088 | return -EINVAL; |
| 1089 | } | 1089 | } |
| 1090 | 1090 | ||
| @@ -1116,7 +1116,7 @@ check_and_exit: | |||
| 1116 | } | 1116 | } |
| 1117 | } else | 1117 | } else |
| 1118 | retval = startup(tty, state); | 1118 | retval = startup(tty, state); |
| 1119 | tty_unlock(); | 1119 | tty_unlock(tty); |
| 1120 | return retval; | 1120 | return retval; |
| 1121 | } | 1121 | } |
| 1122 | 1122 | ||
diff --git a/drivers/tty/cyclades.c b/drivers/tty/cyclades.c index cff546839db9..69e9ca2dd4b3 100644 --- a/drivers/tty/cyclades.c +++ b/drivers/tty/cyclades.c | |||
| @@ -1599,7 +1599,7 @@ static int cy_open(struct tty_struct *tty, struct file *filp) | |||
| 1599 | * If the port is the middle of closing, bail out now | 1599 | * If the port is the middle of closing, bail out now |
| 1600 | */ | 1600 | */ |
| 1601 | if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) { | 1601 | if (tty_hung_up_p(filp) || (info->port.flags & ASYNC_CLOSING)) { |
| 1602 | wait_event_interruptible_tty(info->port.close_wait, | 1602 | wait_event_interruptible_tty(tty, info->port.close_wait, |
| 1603 | !(info->port.flags & ASYNC_CLOSING)); | 1603 | !(info->port.flags & ASYNC_CLOSING)); |
| 1604 | return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS; | 1604 | return (info->port.flags & ASYNC_HUP_NOTIFY) ? -EAGAIN: -ERESTARTSYS; |
| 1605 | } | 1605 | } |
diff --git a/drivers/tty/n_r3964.c b/drivers/tty/n_r3964.c index 5c6c31459a2f..1e6405070ce6 100644 --- a/drivers/tty/n_r3964.c +++ b/drivers/tty/n_r3964.c | |||
| @@ -1065,7 +1065,7 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file, | |||
| 1065 | 1065 | ||
| 1066 | TRACE_L("read()"); | 1066 | TRACE_L("read()"); |
| 1067 | 1067 | ||
| 1068 | tty_lock(); | 1068 | tty_lock(tty); |
| 1069 | 1069 | ||
| 1070 | pClient = findClient(pInfo, task_pid(current)); | 1070 | pClient = findClient(pInfo, task_pid(current)); |
| 1071 | if (pClient) { | 1071 | if (pClient) { |
| @@ -1077,7 +1077,7 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file, | |||
| 1077 | goto unlock; | 1077 | goto unlock; |
| 1078 | } | 1078 | } |
| 1079 | /* block until there is a message: */ | 1079 | /* block until there is a message: */ |
| 1080 | wait_event_interruptible_tty(pInfo->read_wait, | 1080 | wait_event_interruptible_tty(tty, pInfo->read_wait, |
| 1081 | (pMsg = remove_msg(pInfo, pClient))); | 1081 | (pMsg = remove_msg(pInfo, pClient))); |
| 1082 | } | 1082 | } |
| 1083 | 1083 | ||
| @@ -1107,7 +1107,7 @@ static ssize_t r3964_read(struct tty_struct *tty, struct file *file, | |||
| 1107 | } | 1107 | } |
| 1108 | ret = -EPERM; | 1108 | ret = -EPERM; |
| 1109 | unlock: | 1109 | unlock: |
| 1110 | tty_unlock(); | 1110 | tty_unlock(tty); |
| 1111 | return ret; | 1111 | return ret; |
| 1112 | } | 1112 | } |
| 1113 | 1113 | ||
| @@ -1156,7 +1156,7 @@ static ssize_t r3964_write(struct tty_struct *tty, struct file *file, | |||
| 1156 | pHeader->locks = 0; | 1156 | pHeader->locks = 0; |
| 1157 | pHeader->owner = NULL; | 1157 | pHeader->owner = NULL; |
| 1158 | 1158 | ||
| 1159 | tty_lock(); | 1159 | tty_lock(tty); |
| 1160 | 1160 | ||
| 1161 | pClient = findClient(pInfo, task_pid(current)); | 1161 | pClient = findClient(pInfo, task_pid(current)); |
| 1162 | if (pClient) { | 1162 | if (pClient) { |
| @@ -1175,7 +1175,7 @@ static ssize_t r3964_write(struct tty_struct *tty, struct file *file, | |||
| 1175 | add_tx_queue(pInfo, pHeader); | 1175 | add_tx_queue(pInfo, pHeader); |
| 1176 | trigger_transmit(pInfo); | 1176 | trigger_transmit(pInfo); |
| 1177 | 1177 | ||
| 1178 | tty_unlock(); | 1178 | tty_unlock(tty); |
| 1179 | 1179 | ||
| 1180 | return 0; | 1180 | return 0; |
| 1181 | } | 1181 | } |
diff --git a/drivers/tty/pty.c b/drivers/tty/pty.c index b50fc1c01415..d8558834ce57 100644 --- a/drivers/tty/pty.c +++ b/drivers/tty/pty.c | |||
| @@ -47,6 +47,7 @@ static void pty_close(struct tty_struct *tty, struct file *filp) | |||
| 47 | wake_up_interruptible(&tty->read_wait); | 47 | wake_up_interruptible(&tty->read_wait); |
| 48 | wake_up_interruptible(&tty->write_wait); | 48 | wake_up_interruptible(&tty->write_wait); |
| 49 | tty->packet = 0; | 49 | tty->packet = 0; |
| 50 | /* Review - krefs on tty_link ?? */ | ||
| 50 | if (!tty->link) | 51 | if (!tty->link) |
| 51 | return; | 52 | return; |
| 52 | tty->link->packet = 0; | 53 | tty->link->packet = 0; |
| @@ -62,9 +63,9 @@ static void pty_close(struct tty_struct *tty, struct file *filp) | |||
| 62 | mutex_unlock(&devpts_mutex); | 63 | mutex_unlock(&devpts_mutex); |
| 63 | } | 64 | } |
| 64 | #endif | 65 | #endif |
| 65 | tty_unlock(); | 66 | tty_unlock(tty); |
| 66 | tty_vhangup(tty->link); | 67 | tty_vhangup(tty->link); |
| 67 | tty_lock(); | 68 | tty_lock(tty); |
| 68 | } | 69 | } |
| 69 | } | 70 | } |
| 70 | 71 | ||
| @@ -615,26 +616,27 @@ static int ptmx_open(struct inode *inode, struct file *filp) | |||
| 615 | return retval; | 616 | return retval; |
| 616 | 617 | ||
| 617 | /* find a device that is not in use. */ | 618 | /* find a device that is not in use. */ |
| 618 | tty_lock(); | 619 | mutex_lock(&devpts_mutex); |
| 619 | index = devpts_new_index(inode); | 620 | index = devpts_new_index(inode); |
| 620 | tty_unlock(); | ||
| 621 | if (index < 0) { | 621 | if (index < 0) { |
| 622 | retval = index; | 622 | retval = index; |
| 623 | goto err_file; | 623 | goto err_file; |
| 624 | } | 624 | } |
| 625 | 625 | ||
| 626 | mutex_unlock(&devpts_mutex); | ||
| 627 | |||
| 626 | mutex_lock(&tty_mutex); | 628 | mutex_lock(&tty_mutex); |
| 627 | mutex_lock(&devpts_mutex); | ||
| 628 | tty = tty_init_dev(ptm_driver, index); | 629 | tty = tty_init_dev(ptm_driver, index); |
| 629 | mutex_unlock(&devpts_mutex); | ||
| 630 | tty_lock(); | ||
| 631 | mutex_unlock(&tty_mutex); | ||
| 632 | 630 | ||
| 633 | if (IS_ERR(tty)) { | 631 | if (IS_ERR(tty)) { |
| 634 | retval = PTR_ERR(tty); | 632 | retval = PTR_ERR(tty); |
| 635 | goto out; | 633 | goto out; |
| 636 | } | 634 | } |
| 637 | 635 | ||
| 636 | /* The tty returned here is locked so we can safely | ||
| 637 | drop the mutex */ | ||
| 638 | mutex_unlock(&tty_mutex); | ||
| 639 | |||
| 638 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ | 640 | set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */ |
| 639 | 641 | ||
| 640 | tty_add_file(tty, filp); | 642 | tty_add_file(tty, filp); |
| @@ -647,16 +649,17 @@ static int ptmx_open(struct inode *inode, struct file *filp) | |||
| 647 | if (retval) | 649 | if (retval) |
| 648 | goto err_release; | 650 | goto err_release; |
| 649 | 651 | ||
| 650 | tty_unlock(); | 652 | tty_unlock(tty); |
| 651 | return 0; | 653 | return 0; |
| 652 | err_release: | 654 | err_release: |
| 653 | tty_unlock(); | 655 | tty_unlock(tty); |
| 654 | tty_release(inode, filp); | 656 | tty_release(inode, filp); |
| 655 | return retval; | 657 | return retval; |
| 656 | out: | 658 | out: |
| 659 | mutex_unlock(&tty_mutex); | ||
| 657 | devpts_kill_index(inode, index); | 660 | devpts_kill_index(inode, index); |
| 658 | tty_unlock(); | ||
| 659 | err_file: | 661 | err_file: |
| 662 | mutex_unlock(&devpts_mutex); | ||
| 660 | tty_free_file(filp); | 663 | tty_free_file(filp); |
| 661 | return retval; | 664 | return retval; |
| 662 | } | 665 | } |
diff --git a/drivers/tty/serial/crisv10.c b/drivers/tty/serial/crisv10.c index 80b6b1b1f725..7264d4d26717 100644 --- a/drivers/tty/serial/crisv10.c +++ b/drivers/tty/serial/crisv10.c | |||
| @@ -3976,7 +3976,7 @@ block_til_ready(struct tty_struct *tty, struct file * filp, | |||
| 3976 | */ | 3976 | */ |
| 3977 | if (tty_hung_up_p(filp) || | 3977 | if (tty_hung_up_p(filp) || |
| 3978 | (info->flags & ASYNC_CLOSING)) { | 3978 | (info->flags & ASYNC_CLOSING)) { |
| 3979 | wait_event_interruptible_tty(info->close_wait, | 3979 | wait_event_interruptible_tty(tty, info->close_wait, |
| 3980 | !(info->flags & ASYNC_CLOSING)); | 3980 | !(info->flags & ASYNC_CLOSING)); |
| 3981 | #ifdef SERIAL_DO_RESTART | 3981 | #ifdef SERIAL_DO_RESTART |
| 3982 | if (info->flags & ASYNC_HUP_NOTIFY) | 3982 | if (info->flags & ASYNC_HUP_NOTIFY) |
| @@ -4052,9 +4052,9 @@ block_til_ready(struct tty_struct *tty, struct file * filp, | |||
| 4052 | printk("block_til_ready blocking: ttyS%d, count = %d\n", | 4052 | printk("block_til_ready blocking: ttyS%d, count = %d\n", |
| 4053 | info->line, info->count); | 4053 | info->line, info->count); |
| 4054 | #endif | 4054 | #endif |
| 4055 | tty_unlock(); | 4055 | tty_unlock(tty); |
| 4056 | schedule(); | 4056 | schedule(); |
| 4057 | tty_lock(); | 4057 | tty_lock(tty); |
| 4058 | } | 4058 | } |
| 4059 | set_current_state(TASK_RUNNING); | 4059 | set_current_state(TASK_RUNNING); |
| 4060 | remove_wait_queue(&info->open_wait, &wait); | 4060 | remove_wait_queue(&info->open_wait, &wait); |
| @@ -4115,7 +4115,7 @@ rs_open(struct tty_struct *tty, struct file * filp) | |||
| 4115 | */ | 4115 | */ |
| 4116 | if (tty_hung_up_p(filp) || | 4116 | if (tty_hung_up_p(filp) || |
| 4117 | (info->flags & ASYNC_CLOSING)) { | 4117 | (info->flags & ASYNC_CLOSING)) { |
| 4118 | wait_event_interruptible_tty(info->close_wait, | 4118 | wait_event_interruptible_tty(tty, info->close_wait, |
| 4119 | !(info->flags & ASYNC_CLOSING)); | 4119 | !(info->flags & ASYNC_CLOSING)); |
| 4120 | #ifdef SERIAL_DO_RESTART | 4120 | #ifdef SERIAL_DO_RESTART |
| 4121 | return ((info->flags & ASYNC_HUP_NOTIFY) ? | 4121 | return ((info->flags & ASYNC_HUP_NOTIFY) ? |
diff --git a/drivers/tty/synclink.c b/drivers/tty/synclink.c index 593d40ad0a6b..5ed0daae6564 100644 --- a/drivers/tty/synclink.c +++ b/drivers/tty/synclink.c | |||
| @@ -3338,9 +3338,9 @@ static int block_til_ready(struct tty_struct *tty, struct file * filp, | |||
| 3338 | printk("%s(%d):block_til_ready blocking on %s count=%d\n", | 3338 | printk("%s(%d):block_til_ready blocking on %s count=%d\n", |
| 3339 | __FILE__,__LINE__, tty->driver->name, port->count ); | 3339 | __FILE__,__LINE__, tty->driver->name, port->count ); |
| 3340 | 3340 | ||
| 3341 | tty_unlock(); | 3341 | tty_unlock(tty); |
| 3342 | schedule(); | 3342 | schedule(); |
| 3343 | tty_lock(); | 3343 | tty_lock(tty); |
| 3344 | } | 3344 | } |
| 3345 | 3345 | ||
| 3346 | set_current_state(TASK_RUNNING); | 3346 | set_current_state(TASK_RUNNING); |
diff --git a/drivers/tty/synclink_gt.c b/drivers/tty/synclink_gt.c index aa1debf97cc7..45b43f11ca39 100644 --- a/drivers/tty/synclink_gt.c +++ b/drivers/tty/synclink_gt.c | |||
| @@ -3336,9 +3336,9 @@ static int block_til_ready(struct tty_struct *tty, struct file *filp, | |||
| 3336 | } | 3336 | } |
| 3337 | 3337 | ||
| 3338 | DBGINFO(("%s block_til_ready wait\n", tty->driver->name)); | 3338 | DBGINFO(("%s block_til_ready wait\n", tty->driver->name)); |
| 3339 | tty_unlock(); | 3339 | tty_unlock(tty); |
| 3340 | schedule(); | 3340 | schedule(); |
| 3341 | tty_lock(); | 3341 | tty_lock(tty); |
| 3342 | } | 3342 | } |
| 3343 | 3343 | ||
| 3344 | set_current_state(TASK_RUNNING); | 3344 | set_current_state(TASK_RUNNING); |
diff --git a/drivers/tty/synclinkmp.c b/drivers/tty/synclinkmp.c index a3dddc12d2fe..4a1e4f07765b 100644 --- a/drivers/tty/synclinkmp.c +++ b/drivers/tty/synclinkmp.c | |||
| @@ -3357,9 +3357,9 @@ static int block_til_ready(struct tty_struct *tty, struct file *filp, | |||
| 3357 | printk("%s(%d):%s block_til_ready() count=%d\n", | 3357 | printk("%s(%d):%s block_til_ready() count=%d\n", |
| 3358 | __FILE__,__LINE__, tty->driver->name, port->count ); | 3358 | __FILE__,__LINE__, tty->driver->name, port->count ); |
| 3359 | 3359 | ||
| 3360 | tty_unlock(); | 3360 | tty_unlock(tty); |
| 3361 | schedule(); | 3361 | schedule(); |
| 3362 | tty_lock(); | 3362 | tty_lock(tty); |
| 3363 | } | 3363 | } |
| 3364 | 3364 | ||
| 3365 | set_current_state(TASK_RUNNING); | 3365 | set_current_state(TASK_RUNNING); |
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index ac96f74573d0..ca7c25d9f6d5 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c | |||
| @@ -185,6 +185,7 @@ void free_tty_struct(struct tty_struct *tty) | |||
| 185 | put_device(tty->dev); | 185 | put_device(tty->dev); |
| 186 | kfree(tty->write_buf); | 186 | kfree(tty->write_buf); |
| 187 | tty_buffer_free_all(tty); | 187 | tty_buffer_free_all(tty); |
| 188 | tty->magic = 0xDEADDEAD; | ||
| 188 | kfree(tty); | 189 | kfree(tty); |
| 189 | } | 190 | } |
| 190 | 191 | ||
| @@ -573,7 +574,7 @@ void __tty_hangup(struct tty_struct *tty) | |||
| 573 | } | 574 | } |
| 574 | spin_unlock(&redirect_lock); | 575 | spin_unlock(&redirect_lock); |
| 575 | 576 | ||
| 576 | tty_lock(); | 577 | tty_lock(tty); |
| 577 | 578 | ||
| 578 | /* some functions below drop BTM, so we need this bit */ | 579 | /* some functions below drop BTM, so we need this bit */ |
| 579 | set_bit(TTY_HUPPING, &tty->flags); | 580 | set_bit(TTY_HUPPING, &tty->flags); |
| @@ -666,7 +667,7 @@ void __tty_hangup(struct tty_struct *tty) | |||
| 666 | clear_bit(TTY_HUPPING, &tty->flags); | 667 | clear_bit(TTY_HUPPING, &tty->flags); |
| 667 | tty_ldisc_enable(tty); | 668 | tty_ldisc_enable(tty); |
| 668 | 669 | ||
| 669 | tty_unlock(); | 670 | tty_unlock(tty); |
| 670 | 671 | ||
| 671 | if (f) | 672 | if (f) |
| 672 | fput(f); | 673 | fput(f); |
| @@ -1103,12 +1104,12 @@ void tty_write_message(struct tty_struct *tty, char *msg) | |||
| 1103 | { | 1104 | { |
| 1104 | if (tty) { | 1105 | if (tty) { |
| 1105 | mutex_lock(&tty->atomic_write_lock); | 1106 | mutex_lock(&tty->atomic_write_lock); |
| 1106 | tty_lock(); | 1107 | tty_lock(tty); |
| 1107 | if (tty->ops->write && !test_bit(TTY_CLOSING, &tty->flags)) { | 1108 | if (tty->ops->write && !test_bit(TTY_CLOSING, &tty->flags)) { |
| 1108 | tty_unlock(); | 1109 | tty_unlock(tty); |
| 1109 | tty->ops->write(tty, msg, strlen(msg)); | 1110 | tty->ops->write(tty, msg, strlen(msg)); |
| 1110 | } else | 1111 | } else |
| 1111 | tty_unlock(); | 1112 | tty_unlock(tty); |
| 1112 | tty_write_unlock(tty); | 1113 | tty_write_unlock(tty); |
| 1113 | } | 1114 | } |
| 1114 | return; | 1115 | return; |
| @@ -1403,6 +1404,7 @@ struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx) | |||
| 1403 | } | 1404 | } |
| 1404 | initialize_tty_struct(tty, driver, idx); | 1405 | initialize_tty_struct(tty, driver, idx); |
| 1405 | 1406 | ||
| 1407 | tty_lock(tty); | ||
| 1406 | retval = tty_driver_install_tty(driver, tty); | 1408 | retval = tty_driver_install_tty(driver, tty); |
| 1407 | if (retval < 0) | 1409 | if (retval < 0) |
| 1408 | goto err_deinit_tty; | 1410 | goto err_deinit_tty; |
| @@ -1418,9 +1420,11 @@ struct tty_struct *tty_init_dev(struct tty_driver *driver, int idx) | |||
| 1418 | retval = tty_ldisc_setup(tty, tty->link); | 1420 | retval = tty_ldisc_setup(tty, tty->link); |
| 1419 | if (retval) | 1421 | if (retval) |
| 1420 | goto err_release_tty; | 1422 | goto err_release_tty; |
| 1423 | /* Return the tty locked so that it cannot vanish under the caller */ | ||
| 1421 | return tty; | 1424 | return tty; |
| 1422 | 1425 | ||
| 1423 | err_deinit_tty: | 1426 | err_deinit_tty: |
| 1427 | tty_unlock(tty); | ||
| 1424 | deinitialize_tty_struct(tty); | 1428 | deinitialize_tty_struct(tty); |
| 1425 | free_tty_struct(tty); | 1429 | free_tty_struct(tty); |
| 1426 | err_module_put: | 1430 | err_module_put: |
| @@ -1429,6 +1433,7 @@ err_module_put: | |||
| 1429 | 1433 | ||
| 1430 | /* call the tty release_tty routine to clean out this slot */ | 1434 | /* call the tty release_tty routine to clean out this slot */ |
| 1431 | err_release_tty: | 1435 | err_release_tty: |
| 1436 | tty_unlock(tty); | ||
| 1432 | printk_ratelimited(KERN_INFO "tty_init_dev: ldisc open failed, " | 1437 | printk_ratelimited(KERN_INFO "tty_init_dev: ldisc open failed, " |
| 1433 | "clearing slot %d\n", idx); | 1438 | "clearing slot %d\n", idx); |
| 1434 | release_tty(tty, idx); | 1439 | release_tty(tty, idx); |
| @@ -1631,7 +1636,7 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1631 | if (tty_paranoia_check(tty, inode, __func__)) | 1636 | if (tty_paranoia_check(tty, inode, __func__)) |
| 1632 | return 0; | 1637 | return 0; |
| 1633 | 1638 | ||
| 1634 | tty_lock(); | 1639 | tty_lock(tty); |
| 1635 | check_tty_count(tty, __func__); | 1640 | check_tty_count(tty, __func__); |
| 1636 | 1641 | ||
| 1637 | __tty_fasync(-1, filp, 0); | 1642 | __tty_fasync(-1, filp, 0); |
| @@ -1640,10 +1645,11 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1640 | pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY && | 1645 | pty_master = (tty->driver->type == TTY_DRIVER_TYPE_PTY && |
| 1641 | tty->driver->subtype == PTY_TYPE_MASTER); | 1646 | tty->driver->subtype == PTY_TYPE_MASTER); |
| 1642 | devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0; | 1647 | devpts = (tty->driver->flags & TTY_DRIVER_DEVPTS_MEM) != 0; |
| 1648 | /* Review: parallel close */ | ||
| 1643 | o_tty = tty->link; | 1649 | o_tty = tty->link; |
| 1644 | 1650 | ||
| 1645 | if (tty_release_checks(tty, o_tty, idx)) { | 1651 | if (tty_release_checks(tty, o_tty, idx)) { |
| 1646 | tty_unlock(); | 1652 | tty_unlock(tty); |
| 1647 | return 0; | 1653 | return 0; |
| 1648 | } | 1654 | } |
| 1649 | 1655 | ||
| @@ -1655,7 +1661,7 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1655 | if (tty->ops->close) | 1661 | if (tty->ops->close) |
| 1656 | tty->ops->close(tty, filp); | 1662 | tty->ops->close(tty, filp); |
| 1657 | 1663 | ||
| 1658 | tty_unlock(); | 1664 | tty_unlock(tty); |
| 1659 | /* | 1665 | /* |
| 1660 | * Sanity check: if tty->count is going to zero, there shouldn't be | 1666 | * Sanity check: if tty->count is going to zero, there shouldn't be |
| 1661 | * any waiters on tty->read_wait or tty->write_wait. We test the | 1667 | * any waiters on tty->read_wait or tty->write_wait. We test the |
| @@ -1678,7 +1684,7 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1678 | opens on /dev/tty */ | 1684 | opens on /dev/tty */ |
| 1679 | 1685 | ||
| 1680 | mutex_lock(&tty_mutex); | 1686 | mutex_lock(&tty_mutex); |
| 1681 | tty_lock(); | 1687 | tty_lock_pair(tty, o_tty); |
| 1682 | tty_closing = tty->count <= 1; | 1688 | tty_closing = tty->count <= 1; |
| 1683 | o_tty_closing = o_tty && | 1689 | o_tty_closing = o_tty && |
| 1684 | (o_tty->count <= (pty_master ? 1 : 0)); | 1690 | (o_tty->count <= (pty_master ? 1 : 0)); |
| @@ -1709,7 +1715,7 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1709 | 1715 | ||
| 1710 | printk(KERN_WARNING "%s: %s: read/write wait queue active!\n", | 1716 | printk(KERN_WARNING "%s: %s: read/write wait queue active!\n", |
| 1711 | __func__, tty_name(tty, buf)); | 1717 | __func__, tty_name(tty, buf)); |
| 1712 | tty_unlock(); | 1718 | tty_unlock_pair(tty, o_tty); |
| 1713 | mutex_unlock(&tty_mutex); | 1719 | mutex_unlock(&tty_mutex); |
| 1714 | schedule(); | 1720 | schedule(); |
| 1715 | } | 1721 | } |
| @@ -1772,7 +1778,7 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1772 | 1778 | ||
| 1773 | /* check whether both sides are closing ... */ | 1779 | /* check whether both sides are closing ... */ |
| 1774 | if (!tty_closing || (o_tty && !o_tty_closing)) { | 1780 | if (!tty_closing || (o_tty && !o_tty_closing)) { |
| 1775 | tty_unlock(); | 1781 | tty_unlock_pair(tty, o_tty); |
| 1776 | return 0; | 1782 | return 0; |
| 1777 | } | 1783 | } |
| 1778 | 1784 | ||
| @@ -1785,14 +1791,16 @@ int tty_release(struct inode *inode, struct file *filp) | |||
| 1785 | tty_ldisc_release(tty, o_tty); | 1791 | tty_ldisc_release(tty, o_tty); |
| 1786 | /* | 1792 | /* |
| 1787 | * The release_tty function takes care of the details of clearing | 1793 | * The release_tty function takes care of the details of clearing |
| 1788 | * the slots and preserving the termios structure. | 1794 | * the slots and preserving the termios structure. The tty_unlock_pair |
| 1795 | * should be safe as we keep a kref while the tty is locked (so the | ||
| 1796 | * unlock never unlocks a freed tty). | ||
| 1789 | */ | 1797 | */ |
| 1790 | release_tty(tty, idx); | 1798 | release_tty(tty, idx); |
| 1799 | tty_unlock_pair(tty, o_tty); | ||
| 1791 | 1800 | ||
| 1792 | /* Make this pty number available for reallocation */ | 1801 | /* Make this pty number available for reallocation */ |
| 1793 | if (devpts) | 1802 | if (devpts) |
| 1794 | devpts_kill_index(inode, idx); | 1803 | devpts_kill_index(inode, idx); |
| 1795 | tty_unlock(); | ||
| 1796 | return 0; | 1804 | return 0; |
| 1797 | } | 1805 | } |
| 1798 | 1806 | ||
| @@ -1896,6 +1904,9 @@ static struct tty_driver *tty_lookup_driver(dev_t device, struct file *filp, | |||
| 1896 | * Locking: tty_mutex protects tty, tty_lookup_driver and tty_init_dev. | 1904 | * Locking: tty_mutex protects tty, tty_lookup_driver and tty_init_dev. |
| 1897 | * tty->count should protect the rest. | 1905 | * tty->count should protect the rest. |
| 1898 | * ->siglock protects ->signal/->sighand | 1906 | * ->siglock protects ->signal/->sighand |
| 1907 | * | ||
| 1908 | * Note: the tty_unlock/lock cases without a ref are only safe due to | ||
| 1909 | * tty_mutex | ||
| 1899 | */ | 1910 | */ |
| 1900 | 1911 | ||
| 1901 | static int tty_open(struct inode *inode, struct file *filp) | 1912 | static int tty_open(struct inode *inode, struct file *filp) |
| @@ -1919,8 +1930,7 @@ retry_open: | |||
| 1919 | retval = 0; | 1930 | retval = 0; |
| 1920 | 1931 | ||
| 1921 | mutex_lock(&tty_mutex); | 1932 | mutex_lock(&tty_mutex); |
| 1922 | tty_lock(); | 1933 | /* This is protected by the tty_mutex */ |
| 1923 | |||
| 1924 | tty = tty_open_current_tty(device, filp); | 1934 | tty = tty_open_current_tty(device, filp); |
| 1925 | if (IS_ERR(tty)) { | 1935 | if (IS_ERR(tty)) { |
| 1926 | retval = PTR_ERR(tty); | 1936 | retval = PTR_ERR(tty); |
| @@ -1941,17 +1951,19 @@ retry_open: | |||
| 1941 | } | 1951 | } |
| 1942 | 1952 | ||
| 1943 | if (tty) { | 1953 | if (tty) { |
| 1954 | tty_lock(tty); | ||
| 1944 | retval = tty_reopen(tty); | 1955 | retval = tty_reopen(tty); |
| 1945 | if (retval) | 1956 | if (retval < 0) { |
| 1957 | tty_unlock(tty); | ||
| 1946 | tty = ERR_PTR(retval); | 1958 | tty = ERR_PTR(retval); |
| 1947 | } else | 1959 | } |
| 1960 | } else /* Returns with the tty_lock held for now */ | ||
| 1948 | tty = tty_init_dev(driver, index); | 1961 | tty = tty_init_dev(driver, index); |
| 1949 | 1962 | ||
| 1950 | mutex_unlock(&tty_mutex); | 1963 | mutex_unlock(&tty_mutex); |
| 1951 | if (driver) | 1964 | if (driver) |
| 1952 | tty_driver_kref_put(driver); | 1965 | tty_driver_kref_put(driver); |
| 1953 | if (IS_ERR(tty)) { | 1966 | if (IS_ERR(tty)) { |
| 1954 | tty_unlock(); | ||
| 1955 | retval = PTR_ERR(tty); | 1967 | retval = PTR_ERR(tty); |
| 1956 | goto err_file; | 1968 | goto err_file; |
| 1957 | } | 1969 | } |
| @@ -1980,7 +1992,7 @@ retry_open: | |||
| 1980 | printk(KERN_DEBUG "%s: error %d in opening %s...\n", __func__, | 1992 | printk(KERN_DEBUG "%s: error %d in opening %s...\n", __func__, |
| 1981 | retval, tty->name); | 1993 | retval, tty->name); |
| 1982 | #endif | 1994 | #endif |
| 1983 | tty_unlock(); /* need to call tty_release without BTM */ | 1995 | tty_unlock(tty); /* need to call tty_release without BTM */ |
| 1984 | tty_release(inode, filp); | 1996 | tty_release(inode, filp); |
| 1985 | if (retval != -ERESTARTSYS) | 1997 | if (retval != -ERESTARTSYS) |
| 1986 | return retval; | 1998 | return retval; |
| @@ -1992,17 +2004,15 @@ retry_open: | |||
| 1992 | /* | 2004 | /* |
| 1993 | * Need to reset f_op in case a hangup happened. | 2005 | * Need to reset f_op in case a hangup happened. |
| 1994 | */ | 2006 | */ |
| 1995 | tty_lock(); | ||
| 1996 | if (filp->f_op == &hung_up_tty_fops) | 2007 | if (filp->f_op == &hung_up_tty_fops) |
| 1997 | filp->f_op = &tty_fops; | 2008 | filp->f_op = &tty_fops; |
| 1998 | tty_unlock(); | ||
| 1999 | goto retry_open; | 2009 | goto retry_open; |
| 2000 | } | 2010 | } |
| 2001 | tty_unlock(); | 2011 | tty_unlock(tty); |
| 2002 | 2012 | ||
| 2003 | 2013 | ||
| 2004 | mutex_lock(&tty_mutex); | 2014 | mutex_lock(&tty_mutex); |
| 2005 | tty_lock(); | 2015 | tty_lock(tty); |
| 2006 | spin_lock_irq(¤t->sighand->siglock); | 2016 | spin_lock_irq(¤t->sighand->siglock); |
| 2007 | if (!noctty && | 2017 | if (!noctty && |
| 2008 | current->signal->leader && | 2018 | current->signal->leader && |
| @@ -2010,11 +2020,10 @@ retry_open: | |||
| 2010 | tty->session == NULL) | 2020 | tty->session == NULL) |
| 2011 | __proc_set_tty(current, tty); | 2021 | __proc_set_tty(current, tty); |
| 2012 | spin_unlock_irq(¤t->sighand->siglock); | 2022 | spin_unlock_irq(¤t->sighand->siglock); |
| 2013 | tty_unlock(); | 2023 | tty_unlock(tty); |
| 2014 | mutex_unlock(&tty_mutex); | 2024 | mutex_unlock(&tty_mutex); |
| 2015 | return 0; | 2025 | return 0; |
| 2016 | err_unlock: | 2026 | err_unlock: |
| 2017 | tty_unlock(); | ||
| 2018 | mutex_unlock(&tty_mutex); | 2027 | mutex_unlock(&tty_mutex); |
| 2019 | /* after locks to avoid deadlock */ | 2028 | /* after locks to avoid deadlock */ |
| 2020 | if (!IS_ERR_OR_NULL(driver)) | 2029 | if (!IS_ERR_OR_NULL(driver)) |
| @@ -2097,10 +2106,13 @@ out: | |||
| 2097 | 2106 | ||
| 2098 | static int tty_fasync(int fd, struct file *filp, int on) | 2107 | static int tty_fasync(int fd, struct file *filp, int on) |
| 2099 | { | 2108 | { |
| 2109 | struct tty_struct *tty = file_tty(filp); | ||
| 2100 | int retval; | 2110 | int retval; |
| 2101 | tty_lock(); | 2111 | |
| 2112 | tty_lock(tty); | ||
| 2102 | retval = __tty_fasync(fd, filp, on); | 2113 | retval = __tty_fasync(fd, filp, on); |
| 2103 | tty_unlock(); | 2114 | tty_unlock(tty); |
| 2115 | |||
| 2104 | return retval; | 2116 | return retval; |
| 2105 | } | 2117 | } |
| 2106 | 2118 | ||
| @@ -2937,6 +2949,7 @@ void initialize_tty_struct(struct tty_struct *tty, | |||
| 2937 | tty->pgrp = NULL; | 2949 | tty->pgrp = NULL; |
| 2938 | tty->overrun_time = jiffies; | 2950 | tty->overrun_time = jiffies; |
| 2939 | tty_buffer_init(tty); | 2951 | tty_buffer_init(tty); |
| 2952 | mutex_init(&tty->legacy_mutex); | ||
| 2940 | mutex_init(&tty->termios_mutex); | 2953 | mutex_init(&tty->termios_mutex); |
| 2941 | mutex_init(&tty->ldisc_mutex); | 2954 | mutex_init(&tty->ldisc_mutex); |
| 2942 | init_waitqueue_head(&tty->write_wait); | 2955 | init_waitqueue_head(&tty->write_wait); |
diff --git a/drivers/tty/tty_ldisc.c b/drivers/tty/tty_ldisc.c index 9911eb6b34cd..ba8be396a621 100644 --- a/drivers/tty/tty_ldisc.c +++ b/drivers/tty/tty_ldisc.c | |||
| @@ -568,7 +568,7 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 568 | if (IS_ERR(new_ldisc)) | 568 | if (IS_ERR(new_ldisc)) |
| 569 | return PTR_ERR(new_ldisc); | 569 | return PTR_ERR(new_ldisc); |
| 570 | 570 | ||
| 571 | tty_lock(); | 571 | tty_lock(tty); |
| 572 | /* | 572 | /* |
| 573 | * We need to look at the tty locking here for pty/tty pairs | 573 | * We need to look at the tty locking here for pty/tty pairs |
| 574 | * when both sides try to change in parallel. | 574 | * when both sides try to change in parallel. |
| @@ -582,12 +582,12 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 582 | */ | 582 | */ |
| 583 | 583 | ||
| 584 | if (tty->ldisc->ops->num == ldisc) { | 584 | if (tty->ldisc->ops->num == ldisc) { |
| 585 | tty_unlock(); | 585 | tty_unlock(tty); |
| 586 | tty_ldisc_put(new_ldisc); | 586 | tty_ldisc_put(new_ldisc); |
| 587 | return 0; | 587 | return 0; |
| 588 | } | 588 | } |
| 589 | 589 | ||
| 590 | tty_unlock(); | 590 | tty_unlock(tty); |
| 591 | /* | 591 | /* |
| 592 | * Problem: What do we do if this blocks ? | 592 | * Problem: What do we do if this blocks ? |
| 593 | * We could deadlock here | 593 | * We could deadlock here |
| @@ -595,7 +595,7 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 595 | 595 | ||
| 596 | tty_wait_until_sent(tty, 0); | 596 | tty_wait_until_sent(tty, 0); |
| 597 | 597 | ||
| 598 | tty_lock(); | 598 | tty_lock(tty); |
| 599 | mutex_lock(&tty->ldisc_mutex); | 599 | mutex_lock(&tty->ldisc_mutex); |
| 600 | 600 | ||
| 601 | /* | 601 | /* |
| @@ -605,10 +605,10 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 605 | 605 | ||
| 606 | while (test_bit(TTY_LDISC_CHANGING, &tty->flags)) { | 606 | while (test_bit(TTY_LDISC_CHANGING, &tty->flags)) { |
| 607 | mutex_unlock(&tty->ldisc_mutex); | 607 | mutex_unlock(&tty->ldisc_mutex); |
| 608 | tty_unlock(); | 608 | tty_unlock(tty); |
| 609 | wait_event(tty_ldisc_wait, | 609 | wait_event(tty_ldisc_wait, |
| 610 | test_bit(TTY_LDISC_CHANGING, &tty->flags) == 0); | 610 | test_bit(TTY_LDISC_CHANGING, &tty->flags) == 0); |
| 611 | tty_lock(); | 611 | tty_lock(tty); |
| 612 | mutex_lock(&tty->ldisc_mutex); | 612 | mutex_lock(&tty->ldisc_mutex); |
| 613 | } | 613 | } |
| 614 | 614 | ||
| @@ -623,7 +623,7 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 623 | 623 | ||
| 624 | o_ldisc = tty->ldisc; | 624 | o_ldisc = tty->ldisc; |
| 625 | 625 | ||
| 626 | tty_unlock(); | 626 | tty_unlock(tty); |
| 627 | /* | 627 | /* |
| 628 | * Make sure we don't change while someone holds a | 628 | * Make sure we don't change while someone holds a |
| 629 | * reference to the line discipline. The TTY_LDISC bit | 629 | * reference to the line discipline. The TTY_LDISC bit |
| @@ -650,7 +650,7 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 650 | 650 | ||
| 651 | retval = tty_ldisc_wait_idle(tty, 5 * HZ); | 651 | retval = tty_ldisc_wait_idle(tty, 5 * HZ); |
| 652 | 652 | ||
| 653 | tty_lock(); | 653 | tty_lock(tty); |
| 654 | mutex_lock(&tty->ldisc_mutex); | 654 | mutex_lock(&tty->ldisc_mutex); |
| 655 | 655 | ||
| 656 | /* handle wait idle failure locked */ | 656 | /* handle wait idle failure locked */ |
| @@ -665,7 +665,7 @@ int tty_set_ldisc(struct tty_struct *tty, int ldisc) | |||
| 665 | clear_bit(TTY_LDISC_CHANGING, &tty->flags); | 665 | clear_bit(TTY_LDISC_CHANGING, &tty->flags); |
| 666 | mutex_unlock(&tty->ldisc_mutex); | 666 | mutex_unlock(&tty->ldisc_mutex); |
| 667 | tty_ldisc_put(new_ldisc); | 667 | tty_ldisc_put(new_ldisc); |
| 668 | tty_unlock(); | 668 | tty_unlock(tty); |
| 669 | return -EIO; | 669 | return -EIO; |
| 670 | } | 670 | } |
| 671 | 671 | ||
| @@ -708,7 +708,7 @@ enable: | |||
| 708 | if (o_work) | 708 | if (o_work) |
| 709 | schedule_work(&o_tty->buf.work); | 709 | schedule_work(&o_tty->buf.work); |
| 710 | mutex_unlock(&tty->ldisc_mutex); | 710 | mutex_unlock(&tty->ldisc_mutex); |
| 711 | tty_unlock(); | 711 | tty_unlock(tty); |
| 712 | return retval; | 712 | return retval; |
| 713 | } | 713 | } |
| 714 | 714 | ||
| @@ -816,11 +816,11 @@ void tty_ldisc_hangup(struct tty_struct *tty) | |||
| 816 | * need to wait for another function taking the BTM | 816 | * need to wait for another function taking the BTM |
| 817 | */ | 817 | */ |
| 818 | clear_bit(TTY_LDISC, &tty->flags); | 818 | clear_bit(TTY_LDISC, &tty->flags); |
| 819 | tty_unlock(); | 819 | tty_unlock(tty); |
| 820 | cancel_work_sync(&tty->buf.work); | 820 | cancel_work_sync(&tty->buf.work); |
| 821 | mutex_unlock(&tty->ldisc_mutex); | 821 | mutex_unlock(&tty->ldisc_mutex); |
| 822 | retry: | 822 | retry: |
| 823 | tty_lock(); | 823 | tty_lock(tty); |
| 824 | mutex_lock(&tty->ldisc_mutex); | 824 | mutex_lock(&tty->ldisc_mutex); |
| 825 | 825 | ||
| 826 | /* At this point we have a closed ldisc and we want to | 826 | /* At this point we have a closed ldisc and we want to |
| @@ -831,7 +831,7 @@ retry: | |||
| 831 | if (atomic_read(&tty->ldisc->users) != 1) { | 831 | if (atomic_read(&tty->ldisc->users) != 1) { |
| 832 | char cur_n[TASK_COMM_LEN], tty_n[64]; | 832 | char cur_n[TASK_COMM_LEN], tty_n[64]; |
| 833 | long timeout = 3 * HZ; | 833 | long timeout = 3 * HZ; |
| 834 | tty_unlock(); | 834 | tty_unlock(tty); |
| 835 | 835 | ||
| 836 | while (tty_ldisc_wait_idle(tty, timeout) == -EBUSY) { | 836 | while (tty_ldisc_wait_idle(tty, timeout) == -EBUSY) { |
| 837 | timeout = MAX_SCHEDULE_TIMEOUT; | 837 | timeout = MAX_SCHEDULE_TIMEOUT; |
| @@ -894,6 +894,23 @@ int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty) | |||
| 894 | tty_ldisc_enable(tty); | 894 | tty_ldisc_enable(tty); |
| 895 | return 0; | 895 | return 0; |
| 896 | } | 896 | } |
| 897 | |||
| 898 | static void tty_ldisc_kill(struct tty_struct *tty) | ||
| 899 | { | ||
| 900 | mutex_lock(&tty->ldisc_mutex); | ||
| 901 | /* | ||
| 902 | * Now kill off the ldisc | ||
| 903 | */ | ||
| 904 | tty_ldisc_close(tty, tty->ldisc); | ||
| 905 | tty_ldisc_put(tty->ldisc); | ||
| 906 | /* Force an oops if we mess this up */ | ||
| 907 | tty->ldisc = NULL; | ||
| 908 | |||
| 909 | /* Ensure the next open requests the N_TTY ldisc */ | ||
| 910 | tty_set_termios_ldisc(tty, N_TTY); | ||
| 911 | mutex_unlock(&tty->ldisc_mutex); | ||
| 912 | } | ||
| 913 | |||
| 897 | /** | 914 | /** |
| 898 | * tty_ldisc_release - release line discipline | 915 | * tty_ldisc_release - release line discipline |
| 899 | * @tty: tty being shut down | 916 | * @tty: tty being shut down |
| @@ -912,27 +929,19 @@ void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty) | |||
| 912 | * race with the set_ldisc code path. | 929 | * race with the set_ldisc code path. |
| 913 | */ | 930 | */ |
| 914 | 931 | ||
| 915 | tty_unlock(); | 932 | tty_unlock_pair(tty, o_tty); |
| 916 | tty_ldisc_halt(tty); | 933 | tty_ldisc_halt(tty); |
| 917 | tty_ldisc_flush_works(tty); | 934 | tty_ldisc_flush_works(tty); |
| 918 | tty_lock(); | 935 | if (o_tty) { |
| 919 | 936 | tty_ldisc_halt(o_tty); | |
| 920 | mutex_lock(&tty->ldisc_mutex); | 937 | tty_ldisc_flush_works(o_tty); |
| 921 | /* | 938 | } |
| 922 | * Now kill off the ldisc | 939 | tty_lock_pair(tty, o_tty); |
| 923 | */ | ||
| 924 | tty_ldisc_close(tty, tty->ldisc); | ||
| 925 | tty_ldisc_put(tty->ldisc); | ||
| 926 | /* Force an oops if we mess this up */ | ||
| 927 | tty->ldisc = NULL; | ||
| 928 | 940 | ||
| 929 | /* Ensure the next open requests the N_TTY ldisc */ | ||
| 930 | tty_set_termios_ldisc(tty, N_TTY); | ||
| 931 | mutex_unlock(&tty->ldisc_mutex); | ||
| 932 | 941 | ||
| 933 | /* This will need doing differently if we need to lock */ | 942 | tty_ldisc_kill(tty); |
| 934 | if (o_tty) | 943 | if (o_tty) |
| 935 | tty_ldisc_release(o_tty, NULL); | 944 | tty_ldisc_kill(o_tty); |
| 936 | 945 | ||
| 937 | /* And the memory resources remaining (buffers, termios) will be | 946 | /* And the memory resources remaining (buffers, termios) will be |
| 938 | disposed of when the kref hits zero */ | 947 | disposed of when the kref hits zero */ |
diff --git a/drivers/tty/tty_mutex.c b/drivers/tty/tty_mutex.c index 9ff986c32a21..67feac9e6ebb 100644 --- a/drivers/tty/tty_mutex.c +++ b/drivers/tty/tty_mutex.c | |||
| @@ -4,29 +4,70 @@ | |||
| 4 | #include <linux/semaphore.h> | 4 | #include <linux/semaphore.h> |
| 5 | #include <linux/sched.h> | 5 | #include <linux/sched.h> |
| 6 | 6 | ||
| 7 | /* | 7 | /* Legacy tty mutex glue */ |
| 8 | * The 'big tty mutex' | 8 | |
| 9 | * | 9 | enum { |
| 10 | * This mutex is taken and released by tty_lock() and tty_unlock(), | 10 | TTY_MUTEX_NORMAL, |
| 11 | * replacing the older big kernel lock. | 11 | TTY_MUTEX_NESTED, |
| 12 | * It can no longer be taken recursively, and does not get | 12 | }; |
| 13 | * released implicitly while sleeping. | ||
| 14 | * | ||
| 15 | * Don't use in new code. | ||
| 16 | */ | ||
| 17 | static DEFINE_MUTEX(big_tty_mutex); | ||
| 18 | 13 | ||
| 19 | /* | 14 | /* |
| 20 | * Getting the big tty mutex. | 15 | * Getting the big tty mutex. |
| 21 | */ | 16 | */ |
| 22 | void __lockfunc tty_lock(void) | 17 | |
| 18 | static void __lockfunc tty_lock_nested(struct tty_struct *tty, | ||
| 19 | unsigned int subclass) | ||
| 23 | { | 20 | { |
| 24 | mutex_lock(&big_tty_mutex); | 21 | if (tty->magic != TTY_MAGIC) { |
| 22 | printk(KERN_ERR "L Bad %p\n", tty); | ||
| 23 | WARN_ON(1); | ||
| 24 | return; | ||
| 25 | } | ||
| 26 | tty_kref_get(tty); | ||
| 27 | mutex_lock_nested(&tty->legacy_mutex, subclass); | ||
| 28 | } | ||
| 29 | |||
| 30 | void __lockfunc tty_lock(struct tty_struct *tty) | ||
| 31 | { | ||
| 32 | return tty_lock_nested(tty, TTY_MUTEX_NORMAL); | ||
| 25 | } | 33 | } |
| 26 | EXPORT_SYMBOL(tty_lock); | 34 | EXPORT_SYMBOL(tty_lock); |
| 27 | 35 | ||
| 28 | void __lockfunc tty_unlock(void) | 36 | void __lockfunc tty_unlock(struct tty_struct *tty) |
| 29 | { | 37 | { |
| 30 | mutex_unlock(&big_tty_mutex); | 38 | if (tty->magic != TTY_MAGIC) { |
| 39 | printk(KERN_ERR "U Bad %p\n", tty); | ||
| 40 | WARN_ON(1); | ||
| 41 | return; | ||
| 42 | } | ||
| 43 | mutex_unlock(&tty->legacy_mutex); | ||
| 44 | tty_kref_put(tty); | ||
| 31 | } | 45 | } |
| 32 | EXPORT_SYMBOL(tty_unlock); | 46 | EXPORT_SYMBOL(tty_unlock); |
| 47 | |||
| 48 | /* | ||
| 49 | * Getting the big tty mutex for a pair of ttys with lock ordering | ||
| 50 | * On a non pty/tty pair tty2 can be NULL which is just fine. | ||
| 51 | */ | ||
| 52 | void __lockfunc tty_lock_pair(struct tty_struct *tty, | ||
| 53 | struct tty_struct *tty2) | ||
| 54 | { | ||
| 55 | if (tty < tty2) { | ||
| 56 | tty_lock(tty); | ||
| 57 | tty_lock_nested(tty2, TTY_MUTEX_NESTED); | ||
| 58 | } else { | ||
| 59 | if (tty2 && tty2 != tty) | ||
| 60 | tty_lock(tty2); | ||
| 61 | tty_lock_nested(tty, TTY_MUTEX_NESTED); | ||
| 62 | } | ||
| 63 | } | ||
| 64 | EXPORT_SYMBOL(tty_lock_pair); | ||
| 65 | |||
| 66 | void __lockfunc tty_unlock_pair(struct tty_struct *tty, | ||
| 67 | struct tty_struct *tty2) | ||
| 68 | { | ||
| 69 | tty_unlock(tty); | ||
| 70 | if (tty2 && tty2 != tty) | ||
| 71 | tty_unlock(tty2); | ||
| 72 | } | ||
| 73 | EXPORT_SYMBOL(tty_unlock_pair); | ||
diff --git a/drivers/tty/tty_port.c b/drivers/tty/tty_port.c index 4e9d2b291f4a..a3ba776c574c 100644 --- a/drivers/tty/tty_port.c +++ b/drivers/tty/tty_port.c | |||
| @@ -239,7 +239,7 @@ int tty_port_block_til_ready(struct tty_port *port, | |||
| 239 | 239 | ||
| 240 | /* block if port is in the process of being closed */ | 240 | /* block if port is in the process of being closed */ |
| 241 | if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) { | 241 | if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) { |
| 242 | wait_event_interruptible_tty(port->close_wait, | 242 | wait_event_interruptible_tty(tty, port->close_wait, |
| 243 | !(port->flags & ASYNC_CLOSING)); | 243 | !(port->flags & ASYNC_CLOSING)); |
| 244 | if (port->flags & ASYNC_HUP_NOTIFY) | 244 | if (port->flags & ASYNC_HUP_NOTIFY) |
| 245 | return -EAGAIN; | 245 | return -EAGAIN; |
| @@ -305,9 +305,9 @@ int tty_port_block_til_ready(struct tty_port *port, | |||
| 305 | retval = -ERESTARTSYS; | 305 | retval = -ERESTARTSYS; |
| 306 | break; | 306 | break; |
| 307 | } | 307 | } |
| 308 | tty_unlock(); | 308 | tty_unlock(tty); |
| 309 | schedule(); | 309 | schedule(); |
| 310 | tty_lock(); | 310 | tty_lock(tty); |
| 311 | } | 311 | } |
| 312 | finish_wait(&port->open_wait, &wait); | 312 | finish_wait(&port->open_wait, &wait); |
| 313 | 313 | ||
diff --git a/include/linux/tty.h b/include/linux/tty.h index 40b18d7ad929..7f9d7df9b131 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
| @@ -268,6 +268,7 @@ struct tty_struct { | |||
| 268 | struct mutex ldisc_mutex; | 268 | struct mutex ldisc_mutex; |
| 269 | struct tty_ldisc *ldisc; | 269 | struct tty_ldisc *ldisc; |
| 270 | 270 | ||
| 271 | struct mutex legacy_mutex; | ||
| 271 | struct mutex termios_mutex; | 272 | struct mutex termios_mutex; |
| 272 | spinlock_t ctrl_lock; | 273 | spinlock_t ctrl_lock; |
| 273 | /* Termios values are protected by the termios mutex */ | 274 | /* Termios values are protected by the termios mutex */ |
| @@ -610,8 +611,12 @@ extern long vt_compat_ioctl(struct tty_struct *tty, | |||
| 610 | 611 | ||
| 611 | /* tty_mutex.c */ | 612 | /* tty_mutex.c */ |
| 612 | /* functions for preparation of BKL removal */ | 613 | /* functions for preparation of BKL removal */ |
| 613 | extern void __lockfunc tty_lock(void) __acquires(tty_lock); | 614 | extern void __lockfunc tty_lock(struct tty_struct *tty); |
| 614 | extern void __lockfunc tty_unlock(void) __releases(tty_lock); | 615 | extern void __lockfunc tty_unlock(struct tty_struct *tty); |
| 616 | extern void __lockfunc tty_lock_pair(struct tty_struct *tty, | ||
| 617 | struct tty_struct *tty2); | ||
| 618 | extern void __lockfunc tty_unlock_pair(struct tty_struct *tty, | ||
| 619 | struct tty_struct *tty2); | ||
| 615 | 620 | ||
| 616 | /* | 621 | /* |
| 617 | * this shall be called only from where BTM is held (like close) | 622 | * this shall be called only from where BTM is held (like close) |
| @@ -626,9 +631,9 @@ extern void __lockfunc tty_unlock(void) __releases(tty_lock); | |||
| 626 | static inline void tty_wait_until_sent_from_close(struct tty_struct *tty, | 631 | static inline void tty_wait_until_sent_from_close(struct tty_struct *tty, |
| 627 | long timeout) | 632 | long timeout) |
| 628 | { | 633 | { |
| 629 | tty_unlock(); /* tty->ops->close holds the BTM, drop it while waiting */ | 634 | tty_unlock(tty); /* tty->ops->close holds the BTM, drop it while waiting */ |
| 630 | tty_wait_until_sent(tty, timeout); | 635 | tty_wait_until_sent(tty, timeout); |
| 631 | tty_lock(); | 636 | tty_lock(tty); |
| 632 | } | 637 | } |
| 633 | 638 | ||
| 634 | /* | 639 | /* |
| @@ -643,16 +648,16 @@ static inline void tty_wait_until_sent_from_close(struct tty_struct *tty, | |||
| 643 | * | 648 | * |
| 644 | * Do not use in new code. | 649 | * Do not use in new code. |
| 645 | */ | 650 | */ |
| 646 | #define wait_event_interruptible_tty(wq, condition) \ | 651 | #define wait_event_interruptible_tty(tty, wq, condition) \ |
| 647 | ({ \ | 652 | ({ \ |
| 648 | int __ret = 0; \ | 653 | int __ret = 0; \ |
| 649 | if (!(condition)) { \ | 654 | if (!(condition)) { \ |
| 650 | __wait_event_interruptible_tty(wq, condition, __ret); \ | 655 | __wait_event_interruptible_tty(tty, wq, condition, __ret); \ |
| 651 | } \ | 656 | } \ |
| 652 | __ret; \ | 657 | __ret; \ |
| 653 | }) | 658 | }) |
| 654 | 659 | ||
| 655 | #define __wait_event_interruptible_tty(wq, condition, ret) \ | 660 | #define __wait_event_interruptible_tty(tty, wq, condition, ret) \ |
| 656 | do { \ | 661 | do { \ |
| 657 | DEFINE_WAIT(__wait); \ | 662 | DEFINE_WAIT(__wait); \ |
| 658 | \ | 663 | \ |
| @@ -661,9 +666,9 @@ do { \ | |||
| 661 | if (condition) \ | 666 | if (condition) \ |
| 662 | break; \ | 667 | break; \ |
| 663 | if (!signal_pending(current)) { \ | 668 | if (!signal_pending(current)) { \ |
| 664 | tty_unlock(); \ | 669 | tty_unlock(tty); \ |
| 665 | schedule(); \ | 670 | schedule(); \ |
| 666 | tty_lock(); \ | 671 | tty_lock(tty); \ |
| 667 | continue; \ | 672 | continue; \ |
| 668 | } \ | 673 | } \ |
| 669 | ret = -ERESTARTSYS; \ | 674 | ret = -ERESTARTSYS; \ |
diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c index d1820ff14aee..aa5d73b786ac 100644 --- a/net/bluetooth/rfcomm/tty.c +++ b/net/bluetooth/rfcomm/tty.c | |||
| @@ -710,9 +710,9 @@ static int rfcomm_tty_open(struct tty_struct *tty, struct file *filp) | |||
| 710 | break; | 710 | break; |
| 711 | } | 711 | } |
| 712 | 712 | ||
| 713 | tty_unlock(); | 713 | tty_unlock(tty); |
| 714 | schedule(); | 714 | schedule(); |
| 715 | tty_lock(); | 715 | tty_lock(tty); |
| 716 | } | 716 | } |
| 717 | set_current_state(TASK_RUNNING); | 717 | set_current_state(TASK_RUNNING); |
| 718 | remove_wait_queue(&dev->wait, &wait); | 718 | remove_wait_queue(&dev->wait, &wait); |
