Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267354
b: refs/heads/master
c: fa90e1c
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Slaby authored and Greg Kroah-Hartman committed Oct 18, 2011
1 parent 25de575 commit faccf9c
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c290f8358acaeffd8e0c551ddcc24d1206143376
refs/heads/master: fa90e1c935472281de314e6d7c9a37db9cbc2e4e
16 changes: 11 additions & 5 deletions trunk/drivers/tty/pty.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,12 +657,18 @@ static int ptmx_open(struct inode *inode, struct file *filp)

nonseekable_open(inode, filp);

retval = tty_alloc_file(filp);
if (retval)
return retval;

/* find a device that is not in use. */
tty_lock();
index = devpts_new_index(inode);
tty_unlock();
if (index < 0)
return index;
if (index < 0) {
retval = index;
goto err_file;
}

mutex_lock(&tty_mutex);
tty_lock();
Expand All @@ -676,9 +682,7 @@ static int ptmx_open(struct inode *inode, struct file *filp)

set_bit(TTY_PTY_LOCK, &tty->flags); /* LOCK THE SLAVE */

retval = tty_add_file(tty, filp);
if (retval)
goto out;
tty_add_file(tty, filp);

retval = devpts_pty_new(inode, tty->link);
if (retval)
Expand All @@ -697,6 +701,8 @@ static int ptmx_open(struct inode *inode, struct file *filp)
out:
devpts_kill_index(inode, index);
tty_unlock();
err_file:
tty_free_file(filp);
return retval;
}

Expand Down
47 changes: 35 additions & 12 deletions trunk/drivers/tty/tty_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,24 +194,44 @@ static inline struct tty_struct *file_tty(struct file *file)
return ((struct tty_file_private *)file->private_data)->tty;
}

/* Associate a new file with the tty structure */
int tty_add_file(struct tty_struct *tty, struct file *file)
int tty_alloc_file(struct file *file)
{
struct tty_file_private *priv;

priv = kmalloc(sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;

file->private_data = priv;

return 0;
}

/* Associate a new file with the tty structure */
void tty_add_file(struct tty_struct *tty, struct file *file)
{
struct tty_file_private *priv = file->private_data;

priv->tty = tty;
priv->file = file;
file->private_data = priv;

spin_lock(&tty_files_lock);
list_add(&priv->list, &tty->tty_files);
spin_unlock(&tty_files_lock);
}

return 0;
/**
* tty_free_file - free file->private_data
*
* This shall be used only for fail path handling when tty_add_file was not
* called yet.
*/
void tty_free_file(struct file *file)
{
struct tty_file_private *priv = file->private_data;

file->private_data = NULL;
kfree(priv);
}

/* Delete file from its tty */
Expand All @@ -222,8 +242,7 @@ void tty_del_file(struct file *file)
spin_lock(&tty_files_lock);
list_del(&priv->list);
spin_unlock(&tty_files_lock);
file->private_data = NULL;
kfree(priv);
tty_free_file(file);
}


Expand Down Expand Up @@ -1812,6 +1831,10 @@ static int tty_open(struct inode *inode, struct file *filp)
nonseekable_open(inode, filp);

retry_open:
retval = tty_alloc_file(filp);
if (retval)
return -ENOMEM;

noctty = filp->f_flags & O_NOCTTY;
index = -1;
retval = 0;
Expand All @@ -1824,6 +1847,7 @@ static int tty_open(struct inode *inode, struct file *filp)
if (!tty) {
tty_unlock();
mutex_unlock(&tty_mutex);
tty_free_file(filp);
return -ENXIO;
}
driver = tty_driver_kref_get(tty->driver);
Expand Down Expand Up @@ -1856,13 +1880,15 @@ static int tty_open(struct inode *inode, struct file *filp)
}
tty_unlock();
mutex_unlock(&tty_mutex);
tty_free_file(filp);
return -ENODEV;
}

driver = get_tty_driver(device, &index);
if (!driver) {
tty_unlock();
mutex_unlock(&tty_mutex);
tty_free_file(filp);
return -ENODEV;
}
got_driver:
Expand All @@ -1874,6 +1900,7 @@ static int tty_open(struct inode *inode, struct file *filp)
tty_unlock();
mutex_unlock(&tty_mutex);
tty_driver_kref_put(driver);
tty_free_file(filp);
return PTR_ERR(tty);
}
}
Expand All @@ -1889,15 +1916,11 @@ static int tty_open(struct inode *inode, struct file *filp)
tty_driver_kref_put(driver);
if (IS_ERR(tty)) {
tty_unlock();
tty_free_file(filp);
return PTR_ERR(tty);
}

retval = tty_add_file(tty, filp);
if (retval) {
tty_unlock();
tty_release(inode, filp);
return retval;
}
tty_add_file(tty, filp);

check_tty_count(tty, "tty_open");
if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
Expand Down
4 changes: 3 additions & 1 deletion trunk/include/linux/tty.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,9 @@ extern void proc_clear_tty(struct task_struct *p);
extern struct tty_struct *get_current_tty(void);
extern void tty_default_fops(struct file_operations *fops);
extern struct tty_struct *alloc_tty_struct(void);
extern int tty_add_file(struct tty_struct *tty, struct file *file);
extern int tty_alloc_file(struct file *file);
extern void tty_add_file(struct tty_struct *tty, struct file *file);
extern void tty_free_file(struct file *file);
extern void free_tty_struct(struct tty_struct *tty);
extern void initialize_tty_struct(struct tty_struct *tty,
struct tty_driver *driver, int idx);
Expand Down

0 comments on commit faccf9c

Please sign in to comment.