mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: ebiederm@xmission.com (Eric W. Biederman)
To: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Andrew Morton <akpm@osdl.org>,
	Alexey Dobriyan <adobriyan@gmail.com>,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] make consistent errno value when open pident vs exit(2) race
Date: Wed, 08 Apr 2009 20:35:31 -0700	[thread overview]
Message-ID: <m14owymrcs.fsf@fess.ebiederm.org> (raw)
In-Reply-To: <20090409121756.B3DD.A69D9226@jp.fujitsu.com> (KOSAKI Motohiro's message of "Thu\,  9 Apr 2009 12\:23\:01 +0900 \(JST\)")

KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> writes:

> proc_pident_instantiate() has following call flow.
>
> proc_pident_lookup()
>   proc_pident_instantiate()
>     proc_pid_make_inode()
>
> And, proc_pident_lookup() has following error handling.
>
> 	const struct pid_entry *p, *last;
> 	error = ERR_PTR(-ENOENT);
> 	if (!task)
> 		goto out_no_task;
>
> Then, proc_pident_instantiate should return ENOENT too when racing against
> exit(2) occur.
>
> EINAL has two bad reason. 
>   - it implies caller is wrong. bad the race isn't caller's mistake. 
>   - man 2 open don't explain EINVAL. user often don't handle it.
>
>
> Note: Other proc_pid_make_inode() caller already use ENOENT properly.

Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>

Looks reasonable to me.


> Cc: Eric W. Biederman <ebiederm@xmission.com>
> Cc: Andrew Morton <akpm@osdl.org>
> Cc: Alexey Dobriyan <adobriyan@gmail.com>
> Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
> --
>  fs/proc/base.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/proc/base.c b/fs/proc/base.c
> index f715597..803d09e 100644
> --- a/fs/proc/base.c
> +++ b/fs/proc/base.c
> @@ -1953,7 +1953,7 @@ static struct dentry *proc_pident_instantiate(struct inode *dir,
>  	const struct pid_entry *p = ptr;
>  	struct inode *inode;
>  	struct proc_inode *ei;
> -	struct dentry *error = ERR_PTR(-EINVAL);
> +	struct dentry *error = ERR_PTR(-ENOENT);
>  
>  	inode = proc_pid_make_inode(dir->i_sb, task);
>  	if (!inode)

      reply	other threads:[~2009-04-09  3:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-09  3:23 KOSAKI Motohiro
2009-04-09  3:35 ` Eric W. Biederman [this message]

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=m14owymrcs.fsf@fess.ebiederm.org \
    --to=ebiederm@xmission.com \
    --cc=adobriyan@gmail.com \
    --cc=akpm@osdl.org \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --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

Powered by JetHome