From: Andries.Brouwer@cwi.nl
To: linux-kernel@vger.kernel.org, viro@math.psu.edu
Subject: Bug in unlink error return
Date: Thu, 17 May 2001 13:26:44 +0200 (MET DST) [thread overview]
Message-ID: <UTC200105171126.NAA37619.aeb@vlet.cwi.nl> (raw)
Someone complained a moment ago about the error return in unlink.
And indeed, it used to be correct but since 2.1.132 we return a
buggy (or at least non-POSIX) error for unlink(directory).
Just changed the man page to say
unlink(2)
...
EPERM The system does not allow unlinking of directories,
or unlinking of directories requires privileges
that the current process doesn't have. (This is
the POSIX prescribed error return.)
EISDIR pathname refers to a directory. (This is the non-
POSIX value returned by Linux since 2.1.132.)
...
Probably this should be fixed again, both in 2.2 and 2.4.
2.0 is still correct (I checked only ext2).
Andries
[The EISDIR is correct for rename(), and the cleanup that
made a nice uniform may_delete() in namei.c introduced this bug.
The very simple but slightly ugly fix is to write (in vfs_unlink)
error = may_delete(dir, dentry, 0);
if (error == -EISDIR)
error = -EPERM;
]
next reply other threads:[~2001-05-17 11:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-05-17 11:26 Andries.Brouwer [this message]
2001-05-17 11:45 ` Alan Cox
2001-05-17 12:29 ` Alexander Viro
2001-05-17 12:46 Andries.Brouwer
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=UTC200105171126.NAA37619.aeb@vlet.cwi.nl \
--to=andries.brouwer@cwi.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=viro@math.psu.edu \
/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
all inboxes | Powered by JetHome®