All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] make consistent errno value when open pident vs exit(2) race
@ 2009-04-09  3:23 KOSAKI Motohiro
  2009-04-09  3:35 ` Eric W. Biederman
  0 siblings, 1 reply; 2+ messages in thread
From: KOSAKI Motohiro @ 2009-04-09  3:23 UTC (permalink / raw)
  To: Eric W. Biederman, Andrew Morton, Alexey Dobriyan, LKML; +Cc: kosaki.motohiro


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.

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)



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-04-09  3:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-09  3:23 [PATCH] make consistent errno value when open pident vs exit(2) race KOSAKI Motohiro
2009-04-09  3:35 ` Eric W. Biederman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.