public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Pavel Emelyanov <xemul@parallels.com>
To: Cyrill Gorcunov <gorcunov@gmail.com>,
	LKML <linux-kernel@vger.kernel.org>, Jiri Slaby <jslaby@suse.cz>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: Question on release_one_tty
Date: Thu, 7 Aug 2014 12:28:58 +0400	[thread overview]
Message-ID: <53E338CA.9070503@parallels.com> (raw)
In-Reply-To: <20140807082544.GP20553@moon>

On 08/07/2014 12:25 PM, Cyrill Gorcunov wrote:
> Hi guys, could you please explain me the sequence
> 
> static void release_one_tty(struct work_struct *work)
> {
> 	struct tty_struct *tty =
> 		container_of(work, struct tty_struct, hangup_work);
> 	struct tty_driver *driver = tty->driver;
> 
> 	if (tty->ops->cleanup)
> 		tty->ops->cleanup(tty);
> 
> 	tty->magic = 0;
> -->	tty_driver_kref_put(driver);
> -->	module_put(driver->owner);
> 
> why tty_driver_kref_put is called before module_put? As far as I understand
> tty_driver_kref_put may call the destruct_tty_driver which eventually does
> 
> static void destruct_tty_driver(struct kref *kref)
> {
> 	struct tty_driver *driver = container_of(kref, struct tty_driver, kref);
> 	...
> 	kfree(driver->cdevs);
> 	kfree(driver->ports);
> 	kfree(driver->termios);
> 	kfree(driver->ttys);
> -->	kfree(driver);
> }
> 
> so that the module_put(driver->owner) would access freed memory. Should not we
> call the reverse module_put and then tty_driver_kref_put, or I miss something
> obvious?

If you put the module it can be unloaded at any time killing the code that would
be potentially required by kref_put.

> 	Cyrill
> .
> 


  reply	other threads:[~2014-08-07  8:29 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-07  8:25 Question on release_one_tty Cyrill Gorcunov
2014-08-07  8:28 ` Pavel Emelyanov [this message]
2014-08-07  8:34   ` Cyrill Gorcunov
2014-08-07  9:05     ` Pavel Emelyanov
2014-08-07  9:18       ` Cyrill Gorcunov
2014-08-07  9:34         ` [PATCH] tty: Fix potential use after free in release_one_tty Cyrill Gorcunov
2014-08-07 20:22           ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=53E338CA.9070503@parallels.com \
    --to=xemul@parallels.com \
    --cc=gorcunov@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jslaby@suse.cz \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox