From: Christoph Hellwig <hch@caldera.de>
To: torvalds@transmeta.com
Cc: alan@redhat.com, linux-kernel@vger.kernel.org,
linux-privs-discuss@sourceforge.net
Subject: [PATCH] fix permission checks for executables
Date: Wed, 8 Aug 2001 18:22:19 +0200 [thread overview]
Message-ID: <20010808182219.A12652@caldera.de> (raw)
Hi Linux,
vfs_permission in the Linux 2.4 series tries to check for
CAP_DAC_OVERRIDE if the modes didn't match. This means even
for an file without executable bits set at all, root will
be reported that it is. I've actually found one apllication
(scomail under linux-abi) that fails because of this, besides
not matching my reading of Posix 1003.1e.
Of the operating systems with capabilty-like features at least
OpenUNIX gets it right, of the others at least OpenServer and
4.4BSD, but these semantics seem natural to me anyway..
Please aplly the attached patch.
Christoph
--
Whip me. Beat me. Make me maintain AIX.
--- linux.really_plain/fs/namei.c Wed Aug 8 17:56:58 2001
+++ linux.plain/fs/namei.c Wed Aug 8 18:13:22 2001
@@ -163,9 +163,13 @@
else if (in_group_p(inode->i_gid))
mode >>= 3;
- if (((mode & mask & S_IRWXO) == mask) || capable(CAP_DAC_OVERRIDE))
+ if (((mode & mask & S_IRWXO) == mask))
return 0;
+ if (!(mask & S_IXOTH) || S_ISDIR(inode->i_mode))
+ if (capable(CAP_DAC_OVERRIDE))
+ return 0;
+
/* read and search access */
if ((mask == S_IROTH) ||
(S_ISDIR(inode->i_mode) && !(mask & ~(S_IROTH | S_IXOTH))))
next reply other threads:[~2001-08-08 16:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-08-08 16:22 Christoph Hellwig [this message]
2001-08-08 17:32 ` [Linux-privs-discuss] [PATCH] fix permission checks for executables Christoph Hellwig
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=20010808182219.A12652@caldera.de \
--to=hch@caldera.de \
--cc=alan@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-privs-discuss@sourceforge.net \
--cc=torvalds@transmeta.com \
/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