public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Alexander Atanasov <alexander.atanasov@virtuozzo.com>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>,
	kernel@openvz.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] devtmpfs: move NULLing the thread pointer before unregistering fs
Date: Fri, 2 Dec 2022 16:56:05 +0100	[thread overview]
Message-ID: <Y4ogFSOaQtZ+5Xqy@kroah.com> (raw)
In-Reply-To: <20221202124502.217462-1-alexander.atanasov@virtuozzo.com>

On Fri, Dec 02, 2022 at 02:45:01PM +0200, Alexander Atanasov wrote:
> In commit
> 31c779f293b3 ("devtmpfs: fix the dangling pointer of global devtmpfsd thread")
> a dangling pointer on an error condition was fixed. But the fix
> left the dangling pointer during unregister_filesystem and printk calls.

And how could it be used there?

> Improve the fix to clear the pointer before unregistration to close
> the window  where the dangling pointer can be potentially used.

Again, how can that happen?  And you have an extra ' ' in that line :(

> Make it clear the pointer at only one place in the function.
> 
> Signed-off-by: Alexander Atanasov <alexander.atanasov@virtuozzo.com>
> ---
>  drivers/base/devtmpfs.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/base/devtmpfs.c b/drivers/base/devtmpfs.c
> index e4bffeabf344..773e66ef5642 100644
> --- a/drivers/base/devtmpfs.c
> +++ b/drivers/base/devtmpfs.c
> @@ -472,17 +472,15 @@ int __init devtmpfs_init(void)
>  	}
>  
>  	thread = kthread_run(devtmpfsd, &err, "kdevtmpfs");
> -	if (!IS_ERR(thread)) {
> +	if (!IS_ERR(thread))
>  		wait_for_completion(&setup_done);
> -	} else {
> +	else
>  		err = PTR_ERR(thread);
> -		thread = NULL;
> -	}
>  
>  	if (err) {
> +		thread = NULL;
>  		printk(KERN_ERR "devtmpfs: unable to create devtmpfs %i\n", err);
>  		unregister_filesystem(&dev_fs_type);
> -		thread = NULL;
>  		return err;
>  	}

This all feels wrong and way too complex to have to clean up from a call
to kthread_run().  Are you sure this is the correct way to do this?

And how was this "issue" found?  How does the call to kthread_run() ever
fail for you?

thanks,

greg k-h

  reply	other threads:[~2022-12-02 15:56 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-02 12:45 [PATCH] devtmpfs: move NULLing the thread pointer before unregistering fs Alexander Atanasov
2022-12-02 15:56 ` Greg Kroah-Hartman [this message]
2022-12-02 19:49   ` Alexander Atanasov

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=Y4ogFSOaQtZ+5Xqy@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.atanasov@virtuozzo.com \
    --cc=kernel@openvz.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael@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