diff options
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/base.c | 4 | ||||
-rw-r--r-- | fs/proc/internal.h | 2 | ||||
-rw-r--r-- | fs/proc/task_mmu.c | 17 | ||||
-rw-r--r-- | fs/proc/task_nommu.c | 7 |
4 files changed, 29 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index a721acfd4fdc..17f7a7ee6c5e 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -64,6 +64,7 @@ | |||
64 | #include <linux/smp_lock.h> | 64 | #include <linux/smp_lock.h> |
65 | #include <linux/rcupdate.h> | 65 | #include <linux/rcupdate.h> |
66 | #include <linux/kallsyms.h> | 66 | #include <linux/kallsyms.h> |
67 | #include <linux/module.h> | ||
67 | #include <linux/mount.h> | 68 | #include <linux/mount.h> |
68 | #include <linux/security.h> | 69 | #include <linux/security.h> |
69 | #include <linux/ptrace.h> | 70 | #include <linux/ptrace.h> |
@@ -123,6 +124,9 @@ struct pid_entry { | |||
123 | NULL, &proc_info_file_operations, \ | 124 | NULL, &proc_info_file_operations, \ |
124 | { .proc_read = &proc_##OTYPE } ) | 125 | { .proc_read = &proc_##OTYPE } ) |
125 | 126 | ||
127 | int maps_protect; | ||
128 | EXPORT_SYMBOL(maps_protect); | ||
129 | |||
126 | static struct fs_struct *get_fs_struct(struct task_struct *task) | 130 | static struct fs_struct *get_fs_struct(struct task_struct *task) |
127 | { | 131 | { |
128 | struct fs_struct *fs; | 132 | struct fs_struct *fs; |
diff --git a/fs/proc/internal.h b/fs/proc/internal.h index f771889183c3..b215c3524fa6 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h | |||
@@ -37,6 +37,8 @@ do { \ | |||
37 | extern int nommu_vma_show(struct seq_file *, struct vm_area_struct *); | 37 | extern int nommu_vma_show(struct seq_file *, struct vm_area_struct *); |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | extern int maps_protect; | ||
41 | |||
40 | extern void create_seq_entry(char *name, mode_t mode, const struct file_operations *f); | 42 | extern void create_seq_entry(char *name, mode_t mode, const struct file_operations *f); |
41 | extern int proc_exe_link(struct inode *, struct dentry **, struct vfsmount **); | 43 | extern int proc_exe_link(struct inode *, struct dentry **, struct vfsmount **); |
42 | extern int proc_tid_stat(struct task_struct *, char *); | 44 | extern int proc_tid_stat(struct task_struct *, char *); |
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c index 4008c060f7ef..c24d81a5a040 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c | |||
@@ -3,6 +3,7 @@ | |||
3 | #include <linux/mount.h> | 3 | #include <linux/mount.h> |
4 | #include <linux/seq_file.h> | 4 | #include <linux/seq_file.h> |
5 | #include <linux/highmem.h> | 5 | #include <linux/highmem.h> |
6 | #include <linux/ptrace.h> | ||
6 | #include <linux/pagemap.h> | 7 | #include <linux/pagemap.h> |
7 | #include <linux/mempolicy.h> | 8 | #include <linux/mempolicy.h> |
8 | 9 | ||
@@ -142,6 +143,9 @@ static int show_map_internal(struct seq_file *m, void *v, struct mem_size_stats | |||
142 | dev_t dev = 0; | 143 | dev_t dev = 0; |
143 | int len; | 144 | int len; |
144 | 145 | ||
146 | if (maps_protect && !ptrace_may_attach(task)) | ||
147 | return -EACCES; | ||
148 | |||
145 | if (file) { | 149 | if (file) { |
146 | struct inode *inode = vma->vm_file->f_path.dentry->d_inode; | 150 | struct inode *inode = vma->vm_file->f_path.dentry->d_inode; |
147 | dev = inode->i_sb->s_dev; | 151 | dev = inode->i_sb->s_dev; |
@@ -512,11 +516,22 @@ const struct file_operations proc_maps_operations = { | |||
512 | #ifdef CONFIG_NUMA | 516 | #ifdef CONFIG_NUMA |
513 | extern int show_numa_map(struct seq_file *m, void *v); | 517 | extern int show_numa_map(struct seq_file *m, void *v); |
514 | 518 | ||
519 | static int show_numa_map_checked(struct seq_file *m, void *v) | ||
520 | { | ||
521 | struct proc_maps_private *priv = m->private; | ||
522 | struct task_struct *task = priv->task; | ||
523 | |||
524 | if (maps_protect && !ptrace_may_attach(task)) | ||
525 | return -EACCES; | ||
526 | |||
527 | return show_numa_map(m, v); | ||
528 | } | ||
529 | |||
515 | static struct seq_operations proc_pid_numa_maps_op = { | 530 | static struct seq_operations proc_pid_numa_maps_op = { |
516 | .start = m_start, | 531 | .start = m_start, |
517 | .next = m_next, | 532 | .next = m_next, |
518 | .stop = m_stop, | 533 | .stop = m_stop, |
519 | .show = show_numa_map | 534 | .show = show_numa_map_checked |
520 | }; | 535 | }; |
521 | 536 | ||
522 | static int numa_maps_open(struct inode *inode, struct file *file) | 537 | static int numa_maps_open(struct inode *inode, struct file *file) |
diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c index 7cddf6b8635a..d8b8c7183c24 100644 --- a/fs/proc/task_nommu.c +++ b/fs/proc/task_nommu.c | |||
@@ -2,6 +2,7 @@ | |||
2 | #include <linux/mm.h> | 2 | #include <linux/mm.h> |
3 | #include <linux/file.h> | 3 | #include <linux/file.h> |
4 | #include <linux/mount.h> | 4 | #include <linux/mount.h> |
5 | #include <linux/ptrace.h> | ||
5 | #include <linux/seq_file.h> | 6 | #include <linux/seq_file.h> |
6 | #include "internal.h" | 7 | #include "internal.h" |
7 | 8 | ||
@@ -143,6 +144,12 @@ out: | |||
143 | static int show_map(struct seq_file *m, void *_vml) | 144 | static int show_map(struct seq_file *m, void *_vml) |
144 | { | 145 | { |
145 | struct vm_list_struct *vml = _vml; | 146 | struct vm_list_struct *vml = _vml; |
147 | struct proc_maps_private *priv = m->private; | ||
148 | struct task_struct *task = priv->task; | ||
149 | |||
150 | if (maps_protect && !ptrace_may_attach(task)) | ||
151 | return -EACCES; | ||
152 | |||
146 | return nommu_vma_show(m, vml->vma); | 153 | return nommu_vma_show(m, vml->vma); |
147 | } | 154 | } |
148 | 155 | ||