aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@evo.osdl.org>2006-07-15 12:20:05 -0700
committerLinus Torvalds <torvalds@evo.osdl.org>2006-07-15 12:20:05 -0700
commit92d032855e64834283de5acfb0463232e0ab128e (patch)
treedb0d8c49b821c8ed9f31691dca54f0297c16ce02
parent2724a1a55f847e2b5007cf294e03cfa09d0d22f3 (diff)
downloadlinux-92d032855e64834283de5acfb0463232e0ab128e.tar.gz
Mark /proc MS_NOSUID and MS_NOEXEC
Not that we really need this any more, but at the same time there's no reason not to do this. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--fs/proc/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/inode.c b/fs/proc/inode.c
index 6dcef089e18e71..49dfb2ab783e6f 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -192,7 +192,7 @@ int proc_fill_super(struct super_block *s, void *data, int silent)
{
struct inode * root_inode;
- s->s_flags |= MS_NODIRATIME;
+ s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC;
s->s_blocksize = 1024;
s->s_blocksize_bits = 10;
s->s_magic = PROC_SUPER_MAGIC;