All of lore.kernel.org
 help / color / mirror / Atom feed
From: Al Viro <viro@ZenIV.linux.org.uk>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "linux-fsdevel@vger.kernel.org" <linux-fsdevel@vger.kernel.org>,
	Sanil kumar <sanil.kumar@huawei.com>,
	shyju pv <shyju.pv@huawei.com>,
	Nagamani Mantha <nagamani.mantha@huawei.com>,
	"Maxiansheng (Max)" <max.maxiansheng@huawei.com>
Subject: Re: dup2 return value mismatch
Date: Wed, 31 Oct 2012 03:00:02 +0000	[thread overview]
Message-ID: <20121031030002.GF2616@ZenIV.linux.org.uk> (raw)
In-Reply-To: <D7504F77ECABB0449431598E06DDF6E9179A540B@szxeml526-mbx.china.huawei.com>

On Wed, Oct 31, 2012 at 02:18:12AM +0000, Linliangjie wrote:
> 
> Test:
> negative test for dup2 call with maxfd
> 
> 
> It has been noticed that new changes return directly -EMFILE when the newfd is larger than maxfd in 3.7-rc3 instead of EBADF in 3.6-rc6
> file changed : /fs/fcntl.c
> Kernel Commit id of the change : f33ff9927f42045116d738ee47ff7bc59f739bd7
> 
> 
> More details: "https://bugzilla.kernel.org/show_bug.cgi?id=49791"
> 
> 
> IS this an issue or is there a man page update required?

Umm...  After looking at what POSIX actually says...  There is an issue,
all right.  Thanks for spotting.  Fix follows:

Return the right error value when dup2() or dup3() newfd argument is too large

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
diff --git a/fs/file.c b/fs/file.c
index ec20de9..ddf57c5 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -894,7 +894,7 @@ int replace_fd(unsigned fd, struct file *file, unsigned flags)
 		return __close_fd(files, fd);
 
 	if (fd >= rlimit(RLIMIT_NOFILE))
-		return -EMFILE;
+		return -EBADF;
 
 	spin_lock(&files->file_lock);
 	err = expand_files(files, fd);

  reply	other threads:[~2012-10-31  3:00 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-31  2:18 dup2 return value mismatch Linliangjie
2012-10-31  3:00 ` Al Viro [this message]
2012-10-31  3:14   ` Linus Torvalds
2012-10-31  3:37     ` Al Viro
2012-10-31  3:39       ` Al Viro

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=20121031030002.GF2616@ZenIV.linux.org.uk \
    --to=viro@zeniv.linux.org.uk \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=max.maxiansheng@huawei.com \
    --cc=nagamani.mantha@huawei.com \
    --cc=sanil.kumar@huawei.com \
    --cc=shyju.pv@huawei.com \
    --cc=torvalds@linux-foundation.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 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.