blob: 8043a3eab52ce49f14f0b23f863b8fb77c6916ba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/mm.h>
2#include <linux/hugetlb.h>
3#include <linux/mount.h>
4#include <linux/seq_file.h>
Mauricio Line070ad42005-09-03 15:55:10 -07005#include <linux/highmem.h>
Kees Cook5096add2007-05-08 00:26:04 -07006#include <linux/ptrace.h>
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07007#include <linux/pagemap.h>
8#include <linux/mempolicy.h>
Mauricio Line070ad42005-09-03 15:55:10 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/elf.h>
11#include <asm/uaccess.h>
Mauricio Line070ad42005-09-03 15:55:10 -070012#include <asm/tlbflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "internal.h"
14
15char *task_mem(struct mm_struct *mm, char *buffer)
16{
17 unsigned long data, text, lib;
Hugh Dickins365e9c872005-10-29 18:16:18 -070018 unsigned long hiwater_vm, total_vm, hiwater_rss, total_rss;
19
20 /*
21 * Note: to minimize their overhead, mm maintains hiwater_vm and
22 * hiwater_rss only when about to *lower* total_vm or rss. Any
23 * collector of these hiwater stats must therefore get total_vm
24 * and rss too, which will usually be the higher. Barriers? not
25 * worth the effort, such snapshots can always be inconsistent.
26 */
27 hiwater_vm = total_vm = mm->total_vm;
28 if (hiwater_vm < mm->hiwater_vm)
29 hiwater_vm = mm->hiwater_vm;
30 hiwater_rss = total_rss = get_mm_rss(mm);
31 if (hiwater_rss < mm->hiwater_rss)
32 hiwater_rss = mm->hiwater_rss;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 data = mm->total_vm - mm->shared_vm - mm->stack_vm;
35 text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK)) >> 10;
36 lib = (mm->exec_vm << (PAGE_SHIFT-10)) - text;
37 buffer += sprintf(buffer,
Hugh Dickins365e9c872005-10-29 18:16:18 -070038 "VmPeak:\t%8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 "VmSize:\t%8lu kB\n"
40 "VmLck:\t%8lu kB\n"
Hugh Dickins365e9c872005-10-29 18:16:18 -070041 "VmHWM:\t%8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 "VmRSS:\t%8lu kB\n"
43 "VmData:\t%8lu kB\n"
44 "VmStk:\t%8lu kB\n"
45 "VmExe:\t%8lu kB\n"
46 "VmLib:\t%8lu kB\n"
47 "VmPTE:\t%8lu kB\n",
Hugh Dickins365e9c872005-10-29 18:16:18 -070048 hiwater_vm << (PAGE_SHIFT-10),
49 (total_vm - mm->reserved_vm) << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 mm->locked_vm << (PAGE_SHIFT-10),
Hugh Dickins365e9c872005-10-29 18:16:18 -070051 hiwater_rss << (PAGE_SHIFT-10),
52 total_rss << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 data << (PAGE_SHIFT-10),
54 mm->stack_vm << (PAGE_SHIFT-10), text, lib,
55 (PTRS_PER_PTE*sizeof(pte_t)*mm->nr_ptes) >> 10);
56 return buffer;
57}
58
59unsigned long task_vsize(struct mm_struct *mm)
60{
61 return PAGE_SIZE * mm->total_vm;
62}
63
64int task_statm(struct mm_struct *mm, int *shared, int *text,
65 int *data, int *resident)
66{
Hugh Dickins42946212005-10-29 18:16:05 -070067 *shared = get_mm_counter(mm, file_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 *text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK))
69 >> PAGE_SHIFT;
70 *data = mm->total_vm - mm->shared_vm;
Hugh Dickins42946212005-10-29 18:16:05 -070071 *resident = *shared + get_mm_counter(mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return mm->total_vm;
73}
74
75int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt)
76{
77 struct vm_area_struct * vma;
78 int result = -ENOENT;
Eric W. Biederman99f89552006-06-26 00:25:55 -070079 struct task_struct *task = get_proc_task(inode);
80 struct mm_struct * mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Eric W. Biederman99f89552006-06-26 00:25:55 -070082 if (task) {
83 mm = get_task_mm(task);
84 put_task_struct(task);
85 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 if (!mm)
87 goto out;
88 down_read(&mm->mmap_sem);
89
90 vma = mm->mmap;
91 while (vma) {
92 if ((vma->vm_flags & VM_EXECUTABLE) && vma->vm_file)
93 break;
94 vma = vma->vm_next;
95 }
96
97 if (vma) {
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -080098 *mnt = mntget(vma->vm_file->f_path.mnt);
99 *dentry = dget(vma->vm_file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 result = 0;
101 }
102
103 up_read(&mm->mmap_sem);
104 mmput(mm);
105out:
106 return result;
107}
108
109static void pad_len_spaces(struct seq_file *m, int len)
110{
111 len = 25 + sizeof(void*) * 6 - len;
112 if (len < 1)
113 len = 1;
114 seq_printf(m, "%*c", len, ' ');
115}
116
Mauricio Line070ad42005-09-03 15:55:10 -0700117struct mem_size_stats
118{
119 unsigned long resident;
120 unsigned long shared_clean;
121 unsigned long shared_dirty;
122 unsigned long private_clean;
123 unsigned long private_dirty;
David Rientjesf79f1772007-05-06 14:49:22 -0700124 unsigned long referenced;
Mauricio Line070ad42005-09-03 15:55:10 -0700125};
126
David Rientjes826fad12007-05-06 14:49:21 -0700127struct pmd_walker {
128 struct vm_area_struct *vma;
129 void *private;
130 void (*action)(struct vm_area_struct *, pmd_t *, unsigned long,
131 unsigned long, void *);
132};
133
Mauricio Line070ad42005-09-03 15:55:10 -0700134static int show_map_internal(struct seq_file *m, void *v, struct mem_size_stats *mss)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700136 struct proc_maps_private *priv = m->private;
137 struct task_struct *task = priv->task;
Mauricio Line070ad42005-09-03 15:55:10 -0700138 struct vm_area_struct *vma = v;
139 struct mm_struct *mm = vma->vm_mm;
140 struct file *file = vma->vm_file;
141 int flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 unsigned long ino = 0;
143 dev_t dev = 0;
144 int len;
145
Kees Cook5096add2007-05-08 00:26:04 -0700146 if (maps_protect && !ptrace_may_attach(task))
147 return -EACCES;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (file) {
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800150 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 dev = inode->i_sb->s_dev;
152 ino = inode->i_ino;
153 }
154
155 seq_printf(m, "%08lx-%08lx %c%c%c%c %08lx %02x:%02x %lu %n",
Mauricio Line070ad42005-09-03 15:55:10 -0700156 vma->vm_start,
157 vma->vm_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 flags & VM_READ ? 'r' : '-',
159 flags & VM_WRITE ? 'w' : '-',
160 flags & VM_EXEC ? 'x' : '-',
161 flags & VM_MAYSHARE ? 's' : 'p',
Mauricio Line070ad42005-09-03 15:55:10 -0700162 vma->vm_pgoff << PAGE_SHIFT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 MAJOR(dev), MINOR(dev), ino, &len);
164
165 /*
166 * Print the dentry name for named mappings, and a
167 * special [heap] marker for the heap:
168 */
Mauricio Line070ad42005-09-03 15:55:10 -0700169 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 pad_len_spaces(m, len);
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800171 seq_path(m, file->f_path.mnt, file->f_path.dentry, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 } else {
Ingo Molnare6e54942006-06-27 02:53:50 -0700173 const char *name = arch_vma_name(vma);
174 if (!name) {
175 if (mm) {
176 if (vma->vm_start <= mm->start_brk &&
Mauricio Line070ad42005-09-03 15:55:10 -0700177 vma->vm_end >= mm->brk) {
Ingo Molnare6e54942006-06-27 02:53:50 -0700178 name = "[heap]";
179 } else if (vma->vm_start <= mm->start_stack &&
180 vma->vm_end >= mm->start_stack) {
181 name = "[stack]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
Ingo Molnare6e54942006-06-27 02:53:50 -0700183 } else {
184 name = "[vdso]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Ingo Molnare6e54942006-06-27 02:53:50 -0700186 }
187 if (name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 pad_len_spaces(m, len);
Ingo Molnare6e54942006-06-27 02:53:50 -0700189 seq_puts(m, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191 }
192 seq_putc(m, '\n');
Mauricio Line070ad42005-09-03 15:55:10 -0700193
194 if (mss)
195 seq_printf(m,
David Rientjesf79f1772007-05-06 14:49:22 -0700196 "Size: %8lu kB\n"
197 "Rss: %8lu kB\n"
198 "Shared_Clean: %8lu kB\n"
199 "Shared_Dirty: %8lu kB\n"
200 "Private_Clean: %8lu kB\n"
201 "Private_Dirty: %8lu kB\n"
David Rientjesb813e932007-05-06 14:49:24 -0700202 "Referenced: %8lu kB\n",
Mauricio Line070ad42005-09-03 15:55:10 -0700203 (vma->vm_end - vma->vm_start) >> 10,
204 mss->resident >> 10,
205 mss->shared_clean >> 10,
206 mss->shared_dirty >> 10,
207 mss->private_clean >> 10,
David Rientjesf79f1772007-05-06 14:49:22 -0700208 mss->private_dirty >> 10,
209 mss->referenced >> 10);
Mauricio Line070ad42005-09-03 15:55:10 -0700210
211 if (m->count < m->size) /* vma is copied successfully */
212 m->version = (vma != get_gate_vma(task))? vma->vm_start: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return 0;
214}
215
Mauricio Line070ad42005-09-03 15:55:10 -0700216static int show_map(struct seq_file *m, void *v)
217{
Luiz Fernando Capitulino0f5c79f2005-11-13 16:07:20 -0800218 return show_map_internal(m, v, NULL);
Mauricio Line070ad42005-09-03 15:55:10 -0700219}
220
David Rientjesb813e932007-05-06 14:49:24 -0700221static void smaps_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
222 unsigned long addr, unsigned long end,
223 void *private)
Mauricio Line070ad42005-09-03 15:55:10 -0700224{
David Rientjes826fad12007-05-06 14:49:21 -0700225 struct mem_size_stats *mss = private;
Mauricio Line070ad42005-09-03 15:55:10 -0700226 pte_t *pte, ptent;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700227 spinlock_t *ptl;
Mauricio Line070ad42005-09-03 15:55:10 -0700228 struct page *page;
229
Hugh Dickins705e87c2005-10-29 18:16:27 -0700230 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
David Rientjes826fad12007-05-06 14:49:21 -0700231 for (; addr != end; pte++, addr += PAGE_SIZE) {
Mauricio Line070ad42005-09-03 15:55:10 -0700232 ptent = *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700233 if (!pte_present(ptent))
Mauricio Line070ad42005-09-03 15:55:10 -0700234 continue;
235
236 mss->resident += PAGE_SIZE;
Nick Pigginad820c5d2006-03-06 15:42:58 -0800237
238 page = vm_normal_page(vma, addr, ptent);
239 if (!page)
Mauricio Line070ad42005-09-03 15:55:10 -0700240 continue;
241
David Rientjesf79f1772007-05-06 14:49:22 -0700242 /* Accumulate the size in pages that have been accessed. */
243 if (pte_young(ptent) || PageReferenced(page))
244 mss->referenced += PAGE_SIZE;
Nick Pigginad820c5d2006-03-06 15:42:58 -0800245 if (page_mapcount(page) >= 2) {
Mauricio Line070ad42005-09-03 15:55:10 -0700246 if (pte_dirty(ptent))
247 mss->shared_dirty += PAGE_SIZE;
248 else
249 mss->shared_clean += PAGE_SIZE;
250 } else {
251 if (pte_dirty(ptent))
252 mss->private_dirty += PAGE_SIZE;
253 else
254 mss->private_clean += PAGE_SIZE;
255 }
David Rientjes826fad12007-05-06 14:49:21 -0700256 }
Hugh Dickins705e87c2005-10-29 18:16:27 -0700257 pte_unmap_unlock(pte - 1, ptl);
258 cond_resched();
Mauricio Line070ad42005-09-03 15:55:10 -0700259}
260
David Rientjesb813e932007-05-06 14:49:24 -0700261static void clear_refs_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
262 unsigned long addr, unsigned long end,
263 void *private)
264{
265 pte_t *pte, ptent;
266 spinlock_t *ptl;
267 struct page *page;
268
269 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
270 for (; addr != end; pte++, addr += PAGE_SIZE) {
271 ptent = *pte;
272 if (!pte_present(ptent))
273 continue;
274
275 page = vm_normal_page(vma, addr, ptent);
276 if (!page)
277 continue;
278
279 /* Clear accessed and referenced bits. */
280 ptep_test_and_clear_young(vma, addr, pte);
281 ClearPageReferenced(page);
282 }
283 pte_unmap_unlock(pte - 1, ptl);
284 cond_resched();
285}
286
287static inline void walk_pmd_range(struct pmd_walker *walker, pud_t *pud,
288 unsigned long addr, unsigned long end)
Mauricio Line070ad42005-09-03 15:55:10 -0700289{
290 pmd_t *pmd;
291 unsigned long next;
292
David Rientjes826fad12007-05-06 14:49:21 -0700293 for (pmd = pmd_offset(pud, addr); addr != end;
294 pmd++, addr = next) {
Mauricio Line070ad42005-09-03 15:55:10 -0700295 next = pmd_addr_end(addr, end);
296 if (pmd_none_or_clear_bad(pmd))
297 continue;
David Rientjes826fad12007-05-06 14:49:21 -0700298 walker->action(walker->vma, pmd, addr, next, walker->private);
299 }
Mauricio Line070ad42005-09-03 15:55:10 -0700300}
301
David Rientjesb813e932007-05-06 14:49:24 -0700302static inline void walk_pud_range(struct pmd_walker *walker, pgd_t *pgd,
303 unsigned long addr, unsigned long end)
Mauricio Line070ad42005-09-03 15:55:10 -0700304{
305 pud_t *pud;
306 unsigned long next;
307
David Rientjes826fad12007-05-06 14:49:21 -0700308 for (pud = pud_offset(pgd, addr); addr != end;
309 pud++, addr = next) {
Mauricio Line070ad42005-09-03 15:55:10 -0700310 next = pud_addr_end(addr, end);
311 if (pud_none_or_clear_bad(pud))
312 continue;
David Rientjesb813e932007-05-06 14:49:24 -0700313 walk_pmd_range(walker, pud, addr, next);
David Rientjes826fad12007-05-06 14:49:21 -0700314 }
Mauricio Line070ad42005-09-03 15:55:10 -0700315}
316
David Rientjesb813e932007-05-06 14:49:24 -0700317/*
318 * walk_page_range - walk the page tables of a VMA with a callback
319 * @vma - VMA to walk
320 * @action - callback invoked for every bottom-level (PTE) page table
321 * @private - private data passed to the callback function
322 *
323 * Recursively walk the page table for the memory area in a VMA, calling
324 * a callback for every bottom-level (PTE) page table.
325 */
326static inline void walk_page_range(struct vm_area_struct *vma,
327 void (*action)(struct vm_area_struct *,
328 pmd_t *, unsigned long,
329 unsigned long, void *),
330 void *private)
Mauricio Line070ad42005-09-03 15:55:10 -0700331{
David Rientjes826fad12007-05-06 14:49:21 -0700332 unsigned long addr = vma->vm_start;
333 unsigned long end = vma->vm_end;
334 struct pmd_walker walker = {
335 .vma = vma,
336 .private = private,
337 .action = action,
338 };
Mauricio Line070ad42005-09-03 15:55:10 -0700339 pgd_t *pgd;
340 unsigned long next;
341
David Rientjes826fad12007-05-06 14:49:21 -0700342 for (pgd = pgd_offset(vma->vm_mm, addr); addr != end;
343 pgd++, addr = next) {
Mauricio Line070ad42005-09-03 15:55:10 -0700344 next = pgd_addr_end(addr, end);
345 if (pgd_none_or_clear_bad(pgd))
346 continue;
David Rientjesb813e932007-05-06 14:49:24 -0700347 walk_pud_range(&walker, pgd, addr, next);
David Rientjes826fad12007-05-06 14:49:21 -0700348 }
Mauricio Line070ad42005-09-03 15:55:10 -0700349}
350
351static int show_smap(struct seq_file *m, void *v)
352{
353 struct vm_area_struct *vma = v;
Mauricio Line070ad42005-09-03 15:55:10 -0700354 struct mem_size_stats mss;
355
356 memset(&mss, 0, sizeof mss);
Nick Piggin5ddfae12006-03-06 15:42:57 -0800357 if (vma->vm_mm && !is_vm_hugetlb_page(vma))
David Rientjesb813e932007-05-06 14:49:24 -0700358 walk_page_range(vma, smaps_pte_range, &mss);
Mauricio Line070ad42005-09-03 15:55:10 -0700359 return show_map_internal(m, v, &mss);
360}
361
David Rientjesb813e932007-05-06 14:49:24 -0700362void clear_refs_smap(struct mm_struct *mm)
363{
364 struct vm_area_struct *vma;
365
366 down_read(&mm->mmap_sem);
367 for (vma = mm->mmap; vma; vma = vma->vm_next)
368 if (vma->vm_mm && !is_vm_hugetlb_page(vma))
369 walk_page_range(vma, clear_refs_pte_range, NULL);
370 flush_tlb_mm(mm);
371 up_read(&mm->mmap_sem);
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static void *m_start(struct seq_file *m, loff_t *pos)
375{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700376 struct proc_maps_private *priv = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 unsigned long last_addr = m->version;
378 struct mm_struct *mm;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700379 struct vm_area_struct *vma, *tail_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 loff_t l = *pos;
381
Eric W. Biederman99f89552006-06-26 00:25:55 -0700382 /* Clear the per syscall fields in priv */
383 priv->task = NULL;
384 priv->tail_vma = NULL;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /*
387 * We remember last_addr rather than next_addr to hit with
388 * mmap_cache most of the time. We have zero last_addr at
Mauricio Line070ad42005-09-03 15:55:10 -0700389 * the beginning and also after lseek. We will have -1 last_addr
390 * after the end of the vmas.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
392
393 if (last_addr == -1UL)
394 return NULL;
395
Eric W. Biederman13b41b02006-06-26 00:25:56 -0700396 priv->task = get_pid_task(priv->pid, PIDTYPE_PID);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700397 if (!priv->task)
398 return NULL;
399
Al Viro831830b2008-01-02 14:09:57 +0000400 mm = mm_for_maps(priv->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (!mm)
402 return NULL;
403
Eric W. Biederman99f89552006-06-26 00:25:55 -0700404 priv->tail_vma = tail_vma = get_gate_vma(priv->task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 /* Start with last addr hint */
Mauricio Line070ad42005-09-03 15:55:10 -0700407 if (last_addr && (vma = find_vma(mm, last_addr))) {
408 vma = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto out;
410 }
411
412 /*
Mauricio Line070ad42005-09-03 15:55:10 -0700413 * Check the vma index is within the range and do
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * sequential scan until m_index.
415 */
Mauricio Line070ad42005-09-03 15:55:10 -0700416 vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if ((unsigned long)l < mm->map_count) {
Mauricio Line070ad42005-09-03 15:55:10 -0700418 vma = mm->mmap;
419 while (l-- && vma)
420 vma = vma->vm_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 goto out;
422 }
423
424 if (l != mm->map_count)
Mauricio Line070ad42005-09-03 15:55:10 -0700425 tail_vma = NULL; /* After gate vma */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427out:
Mauricio Line070ad42005-09-03 15:55:10 -0700428 if (vma)
429 return vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Mauricio Line070ad42005-09-03 15:55:10 -0700431 /* End of vmas has been reached */
432 m->version = (tail_vma != NULL)? 0: -1UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 up_read(&mm->mmap_sem);
434 mmput(mm);
Mauricio Line070ad42005-09-03 15:55:10 -0700435 return tail_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Eric W. Biederman99f89552006-06-26 00:25:55 -0700438static void vma_stop(struct proc_maps_private *priv, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700440 if (vma && vma != priv->tail_vma) {
Mauricio Line070ad42005-09-03 15:55:10 -0700441 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 up_read(&mm->mmap_sem);
443 mmput(mm);
444 }
445}
446
447static void *m_next(struct seq_file *m, void *v, loff_t *pos)
448{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700449 struct proc_maps_private *priv = m->private;
Mauricio Line070ad42005-09-03 15:55:10 -0700450 struct vm_area_struct *vma = v;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700451 struct vm_area_struct *tail_vma = priv->tail_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 (*pos)++;
Mauricio Line070ad42005-09-03 15:55:10 -0700454 if (vma && (vma != tail_vma) && vma->vm_next)
455 return vma->vm_next;
Eric W. Biederman99f89552006-06-26 00:25:55 -0700456 vma_stop(priv, vma);
Mauricio Line070ad42005-09-03 15:55:10 -0700457 return (vma != tail_vma)? tail_vma: NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Eric W. Biederman99f89552006-06-26 00:25:55 -0700460static void m_stop(struct seq_file *m, void *v)
461{
462 struct proc_maps_private *priv = m->private;
463 struct vm_area_struct *vma = v;
464
465 vma_stop(priv, vma);
466 if (priv->task)
467 put_task_struct(priv->task);
468}
469
Eric W. Biederman662795d2006-06-26 00:25:48 -0700470static struct seq_operations proc_pid_maps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .start = m_start,
472 .next = m_next,
473 .stop = m_stop,
474 .show = show_map
475};
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700476
Eric W. Biederman662795d2006-06-26 00:25:48 -0700477static struct seq_operations proc_pid_smaps_op = {
Mauricio Line070ad42005-09-03 15:55:10 -0700478 .start = m_start,
479 .next = m_next,
480 .stop = m_stop,
481 .show = show_smap
482};
483
Eric W. Biederman662795d2006-06-26 00:25:48 -0700484static int do_maps_open(struct inode *inode, struct file *file,
485 struct seq_operations *ops)
486{
Eric W. Biederman99f89552006-06-26 00:25:55 -0700487 struct proc_maps_private *priv;
488 int ret = -ENOMEM;
489 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
490 if (priv) {
Eric W. Biederman13b41b02006-06-26 00:25:56 -0700491 priv->pid = proc_pid(inode);
Eric W. Biederman99f89552006-06-26 00:25:55 -0700492 ret = seq_open(file, ops);
493 if (!ret) {
494 struct seq_file *m = file->private_data;
495 m->private = priv;
496 } else {
497 kfree(priv);
498 }
Eric W. Biederman662795d2006-06-26 00:25:48 -0700499 }
500 return ret;
501}
502
503static int maps_open(struct inode *inode, struct file *file)
504{
505 return do_maps_open(inode, file, &proc_pid_maps_op);
506}
507
Arjan van de Ven00977a52007-02-12 00:55:34 -0800508const struct file_operations proc_maps_operations = {
Eric W. Biederman662795d2006-06-26 00:25:48 -0700509 .open = maps_open,
510 .read = seq_read,
511 .llseek = seq_lseek,
Eric W. Biederman99f89552006-06-26 00:25:55 -0700512 .release = seq_release_private,
Eric W. Biederman662795d2006-06-26 00:25:48 -0700513};
514
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700515#ifdef CONFIG_NUMA
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800516extern int show_numa_map(struct seq_file *m, void *v);
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700517
Kees Cook5096add2007-05-08 00:26:04 -0700518static int show_numa_map_checked(struct seq_file *m, void *v)
519{
520 struct proc_maps_private *priv = m->private;
521 struct task_struct *task = priv->task;
522
523 if (maps_protect && !ptrace_may_attach(task))
524 return -EACCES;
525
526 return show_numa_map(m, v);
527}
528
Eric W. Biederman662795d2006-06-26 00:25:48 -0700529static struct seq_operations proc_pid_numa_maps_op = {
Christoph Lameter1a75a6c2006-01-08 01:01:02 -0800530 .start = m_start,
531 .next = m_next,
532 .stop = m_stop,
Kees Cook5096add2007-05-08 00:26:04 -0700533 .show = show_numa_map_checked
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700534};
Eric W. Biederman662795d2006-06-26 00:25:48 -0700535
536static int numa_maps_open(struct inode *inode, struct file *file)
537{
538 return do_maps_open(inode, file, &proc_pid_numa_maps_op);
539}
540
Arjan van de Ven00977a52007-02-12 00:55:34 -0800541const struct file_operations proc_numa_maps_operations = {
Eric W. Biederman662795d2006-06-26 00:25:48 -0700542 .open = numa_maps_open,
543 .read = seq_read,
544 .llseek = seq_lseek,
Eric W. Biederman99f89552006-06-26 00:25:55 -0700545 .release = seq_release_private,
Eric W. Biederman662795d2006-06-26 00:25:48 -0700546};
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700547#endif
Eric W. Biederman662795d2006-06-26 00:25:48 -0700548
549static int smaps_open(struct inode *inode, struct file *file)
550{
551 return do_maps_open(inode, file, &proc_pid_smaps_op);
552}
553
Arjan van de Ven00977a52007-02-12 00:55:34 -0800554const struct file_operations proc_smaps_operations = {
Eric W. Biederman662795d2006-06-26 00:25:48 -0700555 .open = smaps_open,
556 .read = seq_read,
557 .llseek = seq_lseek,
Eric W. Biederman99f89552006-06-26 00:25:55 -0700558 .release = seq_release_private,
Eric W. Biederman662795d2006-06-26 00:25:48 -0700559};