diff options
| author | Linus Torvalds <torvalds@evo.osdl.org> | 2006-07-15 15:20:05 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@evo.osdl.org> | 2006-07-15 15:20:05 -0400 |
| commit | 92d032855e64834283de5acfb0463232e0ab128e (patch) | |
| tree | db0d8c49b821c8ed9f31691dca54f0297c16ce02 | |
| parent | 2724a1a55f847e2b5007cf294e03cfa09d0d22f3 (diff) | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/inode.c b/fs/proc/inode.c index 6dcef089e18e..49dfb2ab783e 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) | |||
| 192 | { | 192 | { |
| 193 | struct inode * root_inode; | 193 | struct inode * root_inode; |
| 194 | 194 | ||
| 195 | s->s_flags |= MS_NODIRATIME; | 195 | s->s_flags |= MS_NODIRATIME | MS_NOSUID | MS_NOEXEC; |
| 196 | s->s_blocksize = 1024; | 196 | s->s_blocksize = 1024; |
| 197 | s->s_blocksize_bits = 10; | 197 | s->s_blocksize_bits = 10; |
| 198 | s->s_magic = PROC_SUPER_MAGIC; | 198 | s->s_magic = PROC_SUPER_MAGIC; |
