blob: 8f5c05d3dbd3e2aaa4abcd3fcc92af79e324daca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2#include <linux/mm.h>
3#include <linux/file.h>
Bryan Wueb280622008-05-04 23:12:55 +08004#include <linux/fdtable.h>
Al Viro5ad4e532009-03-29 19:50:06 -04005#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/mount.h>
Kees Cook5096add2007-05-08 00:26:04 -07007#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/seq_file.h>
9#include "internal.h"
10
11/*
12 * Logic: we've got two memory sums for each process, "shared", and
Frederik Schwarzer025dfda2008-10-16 19:02:37 +020013 * "non-shared". Shared memory may get counted more than once, for
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * each process that owns it. Non-shared memory is counted
15 * accurately.
16 */
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080017void task_mem(struct seq_file *m, struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
David Howells8feae132009-01-08 12:04:47 +000019 struct vm_area_struct *vma;
David Howells38f71472009-01-08 12:04:47 +000020 struct vm_region *region;
David Howells8feae132009-01-08 12:04:47 +000021 struct rb_node *p;
David Howells38f71472009-01-08 12:04:47 +000022 unsigned long bytes = 0, sbytes = 0, slack = 0, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24 down_read(&mm->mmap_sem);
David Howells8feae132009-01-08 12:04:47 +000025 for (p = rb_first(&mm->mm_rb); p; p = rb_next(p)) {
26 vma = rb_entry(p, struct vm_area_struct, vm_rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
David Howells8feae132009-01-08 12:04:47 +000028 bytes += kobjsize(vma);
David Howells38f71472009-01-08 12:04:47 +000029
30 region = vma->vm_region;
31 if (region) {
32 size = kobjsize(region);
33 size += region->vm_end - region->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 } else {
David Howells38f71472009-01-08 12:04:47 +000035 size = vma->vm_end - vma->vm_start;
36 }
37
38 if (atomic_read(&mm->mm_count) > 1 ||
39 vma->vm_flags & VM_MAYSHARE) {
40 sbytes += size;
41 } else {
42 bytes += size;
43 if (region)
44 slack = region->vm_end - vma->vm_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 }
46 }
47
48 if (atomic_read(&mm->mm_count) > 1)
49 sbytes += kobjsize(mm);
50 else
51 bytes += kobjsize(mm);
52
Al Viro498052b2009-03-30 07:20:30 -040053 if (current->fs && current->fs->users > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 sbytes += kobjsize(current->fs);
55 else
56 bytes += kobjsize(current->fs);
57
58 if (current->files && atomic_read(&current->files->count) > 1)
59 sbytes += kobjsize(current->files);
60 else
61 bytes += kobjsize(current->files);
62
63 if (current->sighand && atomic_read(&current->sighand->count) > 1)
64 sbytes += kobjsize(current->sighand);
65 else
66 bytes += kobjsize(current->sighand);
67
68 bytes += kobjsize(current); /* includes kernel stack */
69
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080070 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 "Mem:\t%8lu bytes\n"
72 "Slack:\t%8lu bytes\n"
73 "Shared:\t%8lu bytes\n",
74 bytes, slack, sbytes);
75
76 up_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79unsigned long task_vsize(struct mm_struct *mm)
80{
David Howells8feae132009-01-08 12:04:47 +000081 struct vm_area_struct *vma;
82 struct rb_node *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 unsigned long vsize = 0;
84
85 down_read(&mm->mmap_sem);
David Howells8feae132009-01-08 12:04:47 +000086 for (p = rb_first(&mm->mm_rb); p; p = rb_next(p)) {
87 vma = rb_entry(p, struct vm_area_struct, vm_rb);
David Howells38f71472009-01-08 12:04:47 +000088 vsize += vma->vm_end - vma->vm_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
90 up_read(&mm->mmap_sem);
91 return vsize;
92}
93
94int task_statm(struct mm_struct *mm, int *shared, int *text,
95 int *data, int *resident)
96{
David Howells8feae132009-01-08 12:04:47 +000097 struct vm_area_struct *vma;
David Howells38f71472009-01-08 12:04:47 +000098 struct vm_region *region;
David Howells8feae132009-01-08 12:04:47 +000099 struct rb_node *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 int size = kobjsize(mm);
101
102 down_read(&mm->mmap_sem);
David Howells8feae132009-01-08 12:04:47 +0000103 for (p = rb_first(&mm->mm_rb); p; p = rb_next(p)) {
104 vma = rb_entry(p, struct vm_area_struct, vm_rb);
105 size += kobjsize(vma);
David Howells38f71472009-01-08 12:04:47 +0000106 region = vma->vm_region;
107 if (region) {
108 size += kobjsize(region);
109 size += region->vm_end - region->vm_start;
110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
113 size += (*text = mm->end_code - mm->start_code);
114 size += (*data = mm->start_stack - mm->start_data);
115 up_read(&mm->mmap_sem);
116 *resident = size;
117 return size;
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
David Howells8feae132009-01-08 12:04:47 +0000121 * display a single VMA to a sequenced file
122 */
123static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma)
124{
125 unsigned long ino = 0;
126 struct file *file;
127 dev_t dev = 0;
128 int flags, len;
KAMEZAWA Hiroyuki6260a4b2009-04-06 19:00:30 -0700129 unsigned long long pgoff = 0;
David Howells8feae132009-01-08 12:04:47 +0000130
131 flags = vma->vm_flags;
132 file = vma->vm_file;
133
134 if (file) {
135 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
136 dev = inode->i_sb->s_dev;
137 ino = inode->i_ino;
Nobuhiro Iwamatsu4c967292009-04-07 21:21:43 -0700138 pgoff = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
David Howells8feae132009-01-08 12:04:47 +0000139 }
140
141 seq_printf(m,
David Howells33e5d7692009-04-02 16:56:32 -0700142 "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
David Howells8feae132009-01-08 12:04:47 +0000143 vma->vm_start,
144 vma->vm_end,
145 flags & VM_READ ? 'r' : '-',
146 flags & VM_WRITE ? 'w' : '-',
147 flags & VM_EXEC ? 'x' : '-',
148 flags & VM_MAYSHARE ? flags & VM_SHARED ? 'S' : 's' : 'p',
KAMEZAWA Hiroyuki6260a4b2009-04-06 19:00:30 -0700149 pgoff,
David Howells8feae132009-01-08 12:04:47 +0000150 MAJOR(dev), MINOR(dev), ino, &len);
151
152 if (file) {
153 len = 25 + sizeof(void *) * 6 - len;
154 if (len < 1)
155 len = 1;
156 seq_printf(m, "%*c", len, ' ');
157 seq_path(m, &file->f_path, "");
158 }
159
160 seq_putc(m, '\n');
161 return 0;
162}
163
164/*
David Howellsdbf86852006-09-27 01:50:19 -0700165 * display mapping lines for a particular process's /proc/pid/maps
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 */
David Howells8feae132009-01-08 12:04:47 +0000167static int show_map(struct seq_file *m, void *_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
David Howells8feae132009-01-08 12:04:47 +0000169 struct rb_node *p = _p;
Kees Cook5096add2007-05-08 00:26:04 -0700170
David Howells8feae132009-01-08 12:04:47 +0000171 return nommu_vma_show(m, rb_entry(p, struct vm_area_struct, vm_rb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
David Howellsdbf86852006-09-27 01:50:19 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static void *m_start(struct seq_file *m, loff_t *pos)
175{
David Howellsdbf86852006-09-27 01:50:19 -0700176 struct proc_maps_private *priv = m->private;
David Howellsdbf86852006-09-27 01:50:19 -0700177 struct mm_struct *mm;
David Howells8feae132009-01-08 12:04:47 +0000178 struct rb_node *p;
David Howellsdbf86852006-09-27 01:50:19 -0700179 loff_t n = *pos;
180
181 /* pin the task and mm whilst we play with them */
182 priv->task = get_pid_task(priv->pid, PIDTYPE_PID);
183 if (!priv->task)
184 return NULL;
185
Al Viro831830b2008-01-02 14:09:57 +0000186 mm = mm_for_maps(priv->task);
David Howellsdbf86852006-09-27 01:50:19 -0700187 if (!mm) {
188 put_task_struct(priv->task);
189 priv->task = NULL;
190 return NULL;
191 }
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200192 down_read(&mm->mmap_sem);
David Howellsdbf86852006-09-27 01:50:19 -0700193
David Howellsdbf86852006-09-27 01:50:19 -0700194 /* start from the Nth VMA */
David Howells8feae132009-01-08 12:04:47 +0000195 for (p = rb_first(&mm->mm_rb); p; p = rb_next(p))
David Howellsdbf86852006-09-27 01:50:19 -0700196 if (n-- == 0)
David Howells8feae132009-01-08 12:04:47 +0000197 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return NULL;
199}
David Howellsdbf86852006-09-27 01:50:19 -0700200
201static void m_stop(struct seq_file *m, void *_vml)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
David Howellsdbf86852006-09-27 01:50:19 -0700203 struct proc_maps_private *priv = m->private;
204
205 if (priv->task) {
206 struct mm_struct *mm = priv->task->mm;
207 up_read(&mm->mmap_sem);
208 mmput(mm);
209 put_task_struct(priv->task);
210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
David Howellsdbf86852006-09-27 01:50:19 -0700212
David Howells8feae132009-01-08 12:04:47 +0000213static void *m_next(struct seq_file *m, void *_p, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
David Howells8feae132009-01-08 12:04:47 +0000215 struct rb_node *p = _p;
David Howellsdbf86852006-09-27 01:50:19 -0700216
217 (*pos)++;
David Howells8feae132009-01-08 12:04:47 +0000218 return p ? rb_next(p) : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
David Howellsdbf86852006-09-27 01:50:19 -0700220
Jan Engelhardt03a44822008-02-08 04:21:19 -0800221static const struct seq_operations proc_pid_maps_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .start = m_start,
223 .next = m_next,
224 .stop = m_stop,
225 .show = show_map
226};
Eric W. Biederman662795d2006-06-26 00:25:48 -0700227
228static int maps_open(struct inode *inode, struct file *file)
229{
David Howellsdbf86852006-09-27 01:50:19 -0700230 struct proc_maps_private *priv;
231 int ret = -ENOMEM;
232
233 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
234 if (priv) {
235 priv->pid = proc_pid(inode);
236 ret = seq_open(file, &proc_pid_maps_ops);
237 if (!ret) {
238 struct seq_file *m = file->private_data;
239 m->private = priv;
240 } else {
241 kfree(priv);
242 }
Eric W. Biederman662795d2006-06-26 00:25:48 -0700243 }
244 return ret;
245}
246
Arjan van de Ven00977a52007-02-12 00:55:34 -0800247const struct file_operations proc_maps_operations = {
Eric W. Biederman662795d2006-06-26 00:25:48 -0700248 .open = maps_open,
249 .read = seq_read,
250 .llseek = seq_lseek,
David Howellsdbf86852006-09-27 01:50:19 -0700251 .release = seq_release_private,
Eric W. Biederman662795d2006-06-26 00:25:48 -0700252};
253