blob: 1932c2ca345729580c60f5a0a2b8187779b9c450 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2#include <linux/mm.h>
3#include <linux/file.h>
4#include <linux/mount.h>
Kees Cook5096add2007-05-08 00:26:04 -07005#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/seq_file.h>
7#include "internal.h"
8
9/*
10 * Logic: we've got two memory sums for each process, "shared", and
11 * "non-shared". Shared memory may get counted more then once, for
12 * each process that owns it. Non-shared memory is counted
13 * accurately.
14 */
15char *task_mem(struct mm_struct *mm, char *buffer)
16{
17 struct vm_list_struct *vml;
18 unsigned long bytes = 0, sbytes = 0, slack = 0;
19
20 down_read(&mm->mmap_sem);
21 for (vml = mm->context.vmlist; vml; vml = vml->next) {
22 if (!vml->vma)
23 continue;
24
25 bytes += kobjsize(vml);
26 if (atomic_read(&mm->mm_count) > 1 ||
27 atomic_read(&vml->vma->vm_usage) > 1
28 ) {
29 sbytes += kobjsize((void *) vml->vma->vm_start);
30 sbytes += kobjsize(vml->vma);
31 } else {
32 bytes += kobjsize((void *) vml->vma->vm_start);
33 bytes += kobjsize(vml->vma);
34 slack += kobjsize((void *) vml->vma->vm_start) -
35 (vml->vma->vm_end - vml->vma->vm_start);
36 }
37 }
38
39 if (atomic_read(&mm->mm_count) > 1)
40 sbytes += kobjsize(mm);
41 else
42 bytes += kobjsize(mm);
43
44 if (current->fs && atomic_read(&current->fs->count) > 1)
45 sbytes += kobjsize(current->fs);
46 else
47 bytes += kobjsize(current->fs);
48
49 if (current->files && atomic_read(&current->files->count) > 1)
50 sbytes += kobjsize(current->files);
51 else
52 bytes += kobjsize(current->files);
53
54 if (current->sighand && atomic_read(&current->sighand->count) > 1)
55 sbytes += kobjsize(current->sighand);
56 else
57 bytes += kobjsize(current->sighand);
58
59 bytes += kobjsize(current); /* includes kernel stack */
60
61 buffer += sprintf(buffer,
62 "Mem:\t%8lu bytes\n"
63 "Slack:\t%8lu bytes\n"
64 "Shared:\t%8lu bytes\n",
65 bytes, slack, sbytes);
66
67 up_read(&mm->mmap_sem);
68 return buffer;
69}
70
71unsigned long task_vsize(struct mm_struct *mm)
72{
73 struct vm_list_struct *tbp;
74 unsigned long vsize = 0;
75
76 down_read(&mm->mmap_sem);
77 for (tbp = mm->context.vmlist; tbp; tbp = tbp->next) {
78 if (tbp->vma)
79 vsize += kobjsize((void *) tbp->vma->vm_start);
80 }
81 up_read(&mm->mmap_sem);
82 return vsize;
83}
84
85int task_statm(struct mm_struct *mm, int *shared, int *text,
86 int *data, int *resident)
87{
88 struct vm_list_struct *tbp;
89 int size = kobjsize(mm);
90
91 down_read(&mm->mmap_sem);
92 for (tbp = mm->context.vmlist; tbp; tbp = tbp->next) {
93 size += kobjsize(tbp);
94 if (tbp->vma) {
95 size += kobjsize(tbp->vma);
96 size += kobjsize((void *) tbp->vma->vm_start);
97 }
98 }
99
100 size += (*text = mm->end_code - mm->start_code);
101 size += (*data = mm->start_stack - mm->start_data);
102 up_read(&mm->mmap_sem);
103 *resident = size;
104 return size;
105}
106
107int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
108{
109 struct vm_list_struct *vml;
110 struct vm_area_struct *vma;
Greg Ungerer31304c92006-07-04 15:04:39 +1000111 struct task_struct *task = get_proc_task(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct mm_struct *mm = get_task_mm(task);
113 int result = -ENOENT;
114
115 if (!mm)
116 goto out;
117 down_read(&mm->mmap_sem);
118
119 vml = mm->context.vmlist;
120 vma = NULL;
121 while (vml) {
122 if ((vml->vma->vm_flags & VM_EXECUTABLE) && vml->vma->vm_file) {
123 vma = vml->vma;
124 break;
125 }
126 vml = vml->next;
127 }
128
129 if (vma) {
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800130 *mnt = mntget(vma->vm_file->f_path.mnt);
131 *dentry = dget(vma->vm_file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 result = 0;
133 }
134
135 up_read(&mm->mmap_sem);
136 mmput(mm);
137out:
138 return result;
139}
140
141/*
David Howellsdbf86852006-09-27 01:50:19 -0700142 * display mapping lines for a particular process's /proc/pid/maps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 */
David Howellsdbf86852006-09-27 01:50:19 -0700144static int show_map(struct seq_file *m, void *_vml)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
David Howellsdbf86852006-09-27 01:50:19 -0700146 struct vm_list_struct *vml = _vml;
Kees Cook5096add2007-05-08 00:26:04 -0700147 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
David Howellsdbf86852006-09-27 01:50:19 -0700153 return nommu_vma_show(m, vml->vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
David Howellsdbf86852006-09-27 01:50:19 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static void *m_start(struct seq_file *m, loff_t *pos)
157{
David Howellsdbf86852006-09-27 01:50:19 -0700158 struct proc_maps_private *priv = m->private;
159 struct vm_list_struct *vml;
160 struct mm_struct *mm;
161 loff_t n = *pos;
162
163 /* pin the task and mm whilst we play with them */
164 priv->task = get_pid_task(priv->pid, PIDTYPE_PID);
165 if (!priv->task)
166 return NULL;
167
Al Viro831830b2008-01-02 14:09:57 +0000168 mm = mm_for_maps(priv->task);
David Howellsdbf86852006-09-27 01:50:19 -0700169 if (!mm) {
170 put_task_struct(priv->task);
171 priv->task = NULL;
172 return NULL;
173 }
174
David Howellsdbf86852006-09-27 01:50:19 -0700175 /* start from the Nth VMA */
176 for (vml = mm->context.vmlist; vml; vml = vml->next)
177 if (n-- == 0)
178 return vml;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return NULL;
180}
David Howellsdbf86852006-09-27 01:50:19 -0700181
182static void m_stop(struct seq_file *m, void *_vml)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
David Howellsdbf86852006-09-27 01:50:19 -0700184 struct proc_maps_private *priv = m->private;
185
186 if (priv->task) {
187 struct mm_struct *mm = priv->task->mm;
188 up_read(&mm->mmap_sem);
189 mmput(mm);
190 put_task_struct(priv->task);
191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
David Howellsdbf86852006-09-27 01:50:19 -0700193
194static void *m_next(struct seq_file *m, void *_vml, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
David Howellsdbf86852006-09-27 01:50:19 -0700196 struct vm_list_struct *vml = _vml;
197
198 (*pos)++;
199 return vml ? vml->next : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
David Howellsdbf86852006-09-27 01:50:19 -0700201
202static struct seq_operations proc_pid_maps_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 .start = m_start,
204 .next = m_next,
205 .stop = m_stop,
206 .show = show_map
207};
Eric W. Biederman662795d2006-06-26 00:25:48 -0700208
209static int maps_open(struct inode *inode, struct file *file)
210{
David Howellsdbf86852006-09-27 01:50:19 -0700211 struct proc_maps_private *priv;
212 int ret = -ENOMEM;
213
214 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
215 if (priv) {
216 priv->pid = proc_pid(inode);
217 ret = seq_open(file, &proc_pid_maps_ops);
218 if (!ret) {
219 struct seq_file *m = file->private_data;
220 m->private = priv;
221 } else {
222 kfree(priv);
223 }
Eric W. Biederman662795d2006-06-26 00:25:48 -0700224 }
225 return ret;
226}
227
Arjan van de Ven00977a52007-02-12 00:55:34 -0800228const struct file_operations proc_maps_operations = {
Eric W. Biederman662795d2006-06-26 00:25:48 -0700229 .open = maps_open,
230 .read = seq_read,
231 .llseek = seq_lseek,
David Howellsdbf86852006-09-27 01:50:19 -0700232 .release = seq_release_private,
Eric W. Biederman662795d2006-06-26 00:25:48 -0700233};
234