blob: 328843de6e9f13314aa680c376ee8c35cc4d8005 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/mm.h>
2#include <linux/hugetlb.h>
Dave Hansen22e057c2011-03-22 16:33:00 -07003#include <linux/huge_mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/mount.h>
5#include <linux/seq_file.h>
Mauricio Line070ad42005-09-03 15:55:10 -07006#include <linux/highmem.h>
Kees Cook5096add2007-05-08 00:26:04 -07007#include <linux/ptrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07009#include <linux/pagemap.h>
10#include <linux/mempolicy.h>
Dave Hansen22e057c2011-03-22 16:33:00 -070011#include <linux/rmap.h>
Matt Mackall85863e42008-02-04 22:29:04 -080012#include <linux/swap.h>
13#include <linux/swapops.h>
Mauricio Line070ad42005-09-03 15:55:10 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/elf.h>
16#include <asm/uaccess.h>
Mauricio Line070ad42005-09-03 15:55:10 -070017#include <asm/tlbflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "internal.h"
19
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080020void task_mem(struct seq_file *m, struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -080022 unsigned long data, text, lib, swap;
Hugh Dickins365e9c872005-10-29 18:16:18 -070023 unsigned long hiwater_vm, total_vm, hiwater_rss, total_rss;
24
25 /*
26 * Note: to minimize their overhead, mm maintains hiwater_vm and
27 * hiwater_rss only when about to *lower* total_vm or rss. Any
28 * collector of these hiwater stats must therefore get total_vm
29 * and rss too, which will usually be the higher. Barriers? not
30 * worth the effort, such snapshots can always be inconsistent.
31 */
32 hiwater_vm = total_vm = mm->total_vm;
33 if (hiwater_vm < mm->hiwater_vm)
34 hiwater_vm = mm->hiwater_vm;
35 hiwater_rss = total_rss = get_mm_rss(mm);
36 if (hiwater_rss < mm->hiwater_rss)
37 hiwater_rss = mm->hiwater_rss;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 data = mm->total_vm - mm->shared_vm - mm->stack_vm;
40 text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK)) >> 10;
41 lib = (mm->exec_vm << (PAGE_SHIFT-10)) - text;
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -080042 swap = get_mm_counter(mm, MM_SWAPENTS);
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080043 seq_printf(m,
Hugh Dickins365e9c872005-10-29 18:16:18 -070044 "VmPeak:\t%8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 "VmSize:\t%8lu kB\n"
46 "VmLck:\t%8lu kB\n"
Christoph Lameterbc3e53f2011-10-31 17:07:30 -070047 "VmPin:\t%8lu kB\n"
Hugh Dickins365e9c872005-10-29 18:16:18 -070048 "VmHWM:\t%8lu kB\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 "VmRSS:\t%8lu kB\n"
50 "VmData:\t%8lu kB\n"
51 "VmStk:\t%8lu kB\n"
52 "VmExe:\t%8lu kB\n"
53 "VmLib:\t%8lu kB\n"
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -080054 "VmPTE:\t%8lu kB\n"
55 "VmSwap:\t%8lu kB\n",
Hugh Dickins365e9c872005-10-29 18:16:18 -070056 hiwater_vm << (PAGE_SHIFT-10),
57 (total_vm - mm->reserved_vm) << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 mm->locked_vm << (PAGE_SHIFT-10),
Christoph Lameterbc3e53f2011-10-31 17:07:30 -070059 mm->pinned_vm << (PAGE_SHIFT-10),
Hugh Dickins365e9c872005-10-29 18:16:18 -070060 hiwater_rss << (PAGE_SHIFT-10),
61 total_rss << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 data << (PAGE_SHIFT-10),
63 mm->stack_vm << (PAGE_SHIFT-10), text, lib,
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -080064 (PTRS_PER_PTE*sizeof(pte_t)*mm->nr_ptes) >> 10,
65 swap << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68unsigned long task_vsize(struct mm_struct *mm)
69{
70 return PAGE_SIZE * mm->total_vm;
71}
72
Alexey Dobriyana2ade7b2011-01-12 17:00:32 -080073unsigned long task_statm(struct mm_struct *mm,
74 unsigned long *shared, unsigned long *text,
75 unsigned long *data, unsigned long *resident)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -080077 *shared = get_mm_counter(mm, MM_FILEPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK))
79 >> PAGE_SHIFT;
80 *data = mm->total_vm - mm->shared_vm;
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -080081 *resident = *shared + get_mm_counter(mm, MM_ANONPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return mm->total_vm;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static void pad_len_spaces(struct seq_file *m, int len)
86{
87 len = 25 + sizeof(void*) * 6 - len;
88 if (len < 1)
89 len = 1;
90 seq_printf(m, "%*c", len, ' ');
91}
92
Matt Mackalla6198792008-02-04 22:29:03 -080093static void vma_stop(struct proc_maps_private *priv, struct vm_area_struct *vma)
Mauricio Line070ad42005-09-03 15:55:10 -070094{
Matt Mackalla6198792008-02-04 22:29:03 -080095 if (vma && vma != priv->tail_vma) {
96 struct mm_struct *mm = vma->vm_mm;
97 up_read(&mm->mmap_sem);
98 mmput(mm);
99 }
100}
101
102static void *m_start(struct seq_file *m, loff_t *pos)
103{
104 struct proc_maps_private *priv = m->private;
105 unsigned long last_addr = m->version;
106 struct mm_struct *mm;
107 struct vm_area_struct *vma, *tail_vma = NULL;
108 loff_t l = *pos;
109
110 /* Clear the per syscall fields in priv */
111 priv->task = NULL;
112 priv->tail_vma = NULL;
113
114 /*
115 * We remember last_addr rather than next_addr to hit with
116 * mmap_cache most of the time. We have zero last_addr at
117 * the beginning and also after lseek. We will have -1 last_addr
118 * after the end of the vmas.
119 */
120
121 if (last_addr == -1UL)
122 return NULL;
123
124 priv->task = get_pid_task(priv->pid, PIDTYPE_PID);
125 if (!priv->task)
Al Viroec6fd8a2011-02-15 22:22:54 -0500126 return ERR_PTR(-ESRCH);
Matt Mackalla6198792008-02-04 22:29:03 -0800127
128 mm = mm_for_maps(priv->task);
Al Viroec6fd8a2011-02-15 22:22:54 -0500129 if (!mm || IS_ERR(mm))
130 return mm;
Oleg Nesterov00f89d22009-07-10 03:27:38 +0200131 down_read(&mm->mmap_sem);
Matt Mackalla6198792008-02-04 22:29:03 -0800132
Stephen Wilson31db58b2011-03-13 15:49:15 -0400133 tail_vma = get_gate_vma(priv->task->mm);
Matt Mackalla6198792008-02-04 22:29:03 -0800134 priv->tail_vma = tail_vma;
135
136 /* Start with last addr hint */
137 vma = find_vma(mm, last_addr);
138 if (last_addr && vma) {
139 vma = vma->vm_next;
140 goto out;
141 }
142
143 /*
144 * Check the vma index is within the range and do
145 * sequential scan until m_index.
146 */
147 vma = NULL;
148 if ((unsigned long)l < mm->map_count) {
149 vma = mm->mmap;
150 while (l-- && vma)
151 vma = vma->vm_next;
152 goto out;
153 }
154
155 if (l != mm->map_count)
156 tail_vma = NULL; /* After gate vma */
157
158out:
159 if (vma)
160 return vma;
161
162 /* End of vmas has been reached */
163 m->version = (tail_vma != NULL)? 0: -1UL;
164 up_read(&mm->mmap_sem);
165 mmput(mm);
166 return tail_vma;
167}
168
169static void *m_next(struct seq_file *m, void *v, loff_t *pos)
170{
171 struct proc_maps_private *priv = m->private;
172 struct vm_area_struct *vma = v;
173 struct vm_area_struct *tail_vma = priv->tail_vma;
174
175 (*pos)++;
176 if (vma && (vma != tail_vma) && vma->vm_next)
177 return vma->vm_next;
178 vma_stop(priv, vma);
179 return (vma != tail_vma)? tail_vma: NULL;
180}
181
182static void m_stop(struct seq_file *m, void *v)
183{
184 struct proc_maps_private *priv = m->private;
185 struct vm_area_struct *vma = v;
186
Linus Torvalds76597cd2011-03-27 19:09:29 -0700187 if (!IS_ERR(vma))
188 vma_stop(priv, vma);
Matt Mackalla6198792008-02-04 22:29:03 -0800189 if (priv->task)
190 put_task_struct(priv->task);
191}
192
193static int do_maps_open(struct inode *inode, struct file *file,
Jan Engelhardt03a44822008-02-08 04:21:19 -0800194 const struct seq_operations *ops)
Matt Mackalla6198792008-02-04 22:29:03 -0800195{
196 struct proc_maps_private *priv;
197 int ret = -ENOMEM;
198 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
199 if (priv) {
200 priv->pid = proc_pid(inode);
201 ret = seq_open(file, ops);
202 if (!ret) {
203 struct seq_file *m = file->private_data;
204 m->private = priv;
205 } else {
206 kfree(priv);
207 }
208 }
209 return ret;
210}
Mauricio Line070ad42005-09-03 15:55:10 -0700211
Joe Korty7c88db02008-10-16 15:27:09 +0400212static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Mauricio Line070ad42005-09-03 15:55:10 -0700214 struct mm_struct *mm = vma->vm_mm;
215 struct file *file = vma->vm_file;
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900216 vm_flags_t flags = vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 unsigned long ino = 0;
KAMEZAWA Hiroyuki6260a4b2009-04-06 19:00:30 -0700218 unsigned long long pgoff = 0;
Mikulas Patockaa09a79f2011-05-09 13:01:09 +0200219 unsigned long start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 dev_t dev = 0;
221 int len;
222
223 if (file) {
Josef "Jeff" Sipek2fddfee2006-12-08 02:36:36 -0800224 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 dev = inode->i_sb->s_dev;
226 ino = inode->i_ino;
KAMEZAWA Hiroyuki6260a4b2009-04-06 19:00:30 -0700227 pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229
Linus Torvaldsd7824372010-08-15 11:35:52 -0700230 /* We don't show the stack guard page in /proc/maps */
231 start = vma->vm_start;
Mikulas Patockaa09a79f2011-05-09 13:01:09 +0200232 if (stack_guard_page_start(vma, start))
233 start += PAGE_SIZE;
234 end = vma->vm_end;
235 if (stack_guard_page_end(vma, end))
236 end -= PAGE_SIZE;
Linus Torvaldsd7824372010-08-15 11:35:52 -0700237
Clement Calmels1804dc62008-08-20 14:09:00 -0700238 seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
Linus Torvaldsd7824372010-08-15 11:35:52 -0700239 start,
Mikulas Patockaa09a79f2011-05-09 13:01:09 +0200240 end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 flags & VM_READ ? 'r' : '-',
242 flags & VM_WRITE ? 'w' : '-',
243 flags & VM_EXEC ? 'x' : '-',
244 flags & VM_MAYSHARE ? 's' : 'p',
KAMEZAWA Hiroyuki6260a4b2009-04-06 19:00:30 -0700245 pgoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 MAJOR(dev), MINOR(dev), ino, &len);
247
248 /*
249 * Print the dentry name for named mappings, and a
250 * special [heap] marker for the heap:
251 */
Mauricio Line070ad42005-09-03 15:55:10 -0700252 if (file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 pad_len_spaces(m, len);
Jan Blunckc32c2f62008-02-14 19:38:43 -0800254 seq_path(m, &file->f_path, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 } else {
Ingo Molnare6e54942006-06-27 02:53:50 -0700256 const char *name = arch_vma_name(vma);
257 if (!name) {
258 if (mm) {
Aaro Koskinen0db0c012011-03-23 16:42:50 -0700259 if (vma->vm_start <= mm->brk &&
260 vma->vm_end >= mm->start_brk) {
Ingo Molnare6e54942006-06-27 02:53:50 -0700261 name = "[heap]";
262 } else if (vma->vm_start <= mm->start_stack &&
263 vma->vm_end >= mm->start_stack) {
264 name = "[stack]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Ingo Molnare6e54942006-06-27 02:53:50 -0700266 } else {
267 name = "[vdso]";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
Ingo Molnare6e54942006-06-27 02:53:50 -0700269 }
270 if (name) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 pad_len_spaces(m, len);
Ingo Molnare6e54942006-06-27 02:53:50 -0700272 seq_puts(m, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274 }
275 seq_putc(m, '\n');
Joe Korty7c88db02008-10-16 15:27:09 +0400276}
277
278static int show_map(struct seq_file *m, void *v)
279{
280 struct vm_area_struct *vma = v;
281 struct proc_maps_private *priv = m->private;
282 struct task_struct *task = priv->task;
283
284 show_map_vma(m, vma);
Mauricio Line070ad42005-09-03 15:55:10 -0700285
Mauricio Line070ad42005-09-03 15:55:10 -0700286 if (m->count < m->size) /* vma is copied successfully */
Stephen Wilson31db58b2011-03-13 15:49:15 -0400287 m->version = (vma != get_gate_vma(task->mm))
288 ? vma->vm_start : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return 0;
290}
291
Jan Engelhardt03a44822008-02-08 04:21:19 -0800292static const struct seq_operations proc_pid_maps_op = {
Matt Mackalla6198792008-02-04 22:29:03 -0800293 .start = m_start,
294 .next = m_next,
295 .stop = m_stop,
296 .show = show_map
297};
298
299static int maps_open(struct inode *inode, struct file *file)
300{
301 return do_maps_open(inode, file, &proc_pid_maps_op);
302}
303
304const struct file_operations proc_maps_operations = {
305 .open = maps_open,
306 .read = seq_read,
307 .llseek = seq_lseek,
308 .release = seq_release_private,
309};
310
311/*
312 * Proportional Set Size(PSS): my share of RSS.
313 *
314 * PSS of a process is the count of pages it has in memory, where each
315 * page is divided by the number of processes sharing it. So if a
316 * process has 1000 pages all to itself, and 1000 shared with one other
317 * process, its PSS will be 1500.
318 *
319 * To keep (accumulated) division errors low, we adopt a 64bit
320 * fixed-point pss counter to minimize division errors. So (pss >>
321 * PSS_SHIFT) would be the real byte count.
322 *
323 * A shift of 12 before division means (assuming 4K page size):
324 * - 1M 3-user-pages add up to 8KB errors;
325 * - supports mapcount up to 2^24, or 16M;
326 * - supports PSS up to 2^52 bytes, or 4PB.
327 */
328#define PSS_SHIFT 12
329
Matt Mackall1e883282008-02-04 22:29:07 -0800330#ifdef CONFIG_PROC_PAGE_MONITOR
Peter Zijlstra214e4712008-04-28 02:12:55 -0700331struct mem_size_stats {
Matt Mackalla6198792008-02-04 22:29:03 -0800332 struct vm_area_struct *vma;
333 unsigned long resident;
334 unsigned long shared_clean;
335 unsigned long shared_dirty;
336 unsigned long private_clean;
337 unsigned long private_dirty;
338 unsigned long referenced;
Nikanth Karthikesanb40d4f82010-10-27 15:34:10 -0700339 unsigned long anonymous;
Dave Hansen4031a212011-03-22 16:33:01 -0700340 unsigned long anonymous_thp;
Peter Zijlstra214e4712008-04-28 02:12:55 -0700341 unsigned long swap;
Matt Mackalla6198792008-02-04 22:29:03 -0800342 u64 pss;
343};
344
Dave Hansenae11c4d2011-03-22 16:32:58 -0700345
346static void smaps_pte_entry(pte_t ptent, unsigned long addr,
Dave Hansen3c9acc72011-03-22 16:32:59 -0700347 unsigned long ptent_size, struct mm_walk *walk)
Dave Hansenae11c4d2011-03-22 16:32:58 -0700348{
349 struct mem_size_stats *mss = walk->private;
350 struct vm_area_struct *vma = mss->vma;
351 struct page *page;
352 int mapcount;
353
354 if (is_swap_pte(ptent)) {
Dave Hansen3c9acc72011-03-22 16:32:59 -0700355 mss->swap += ptent_size;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700356 return;
357 }
358
359 if (!pte_present(ptent))
360 return;
361
362 page = vm_normal_page(vma, addr, ptent);
363 if (!page)
364 return;
365
366 if (PageAnon(page))
Dave Hansen3c9acc72011-03-22 16:32:59 -0700367 mss->anonymous += ptent_size;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700368
Dave Hansen3c9acc72011-03-22 16:32:59 -0700369 mss->resident += ptent_size;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700370 /* Accumulate the size in pages that have been accessed. */
371 if (pte_young(ptent) || PageReferenced(page))
Dave Hansen3c9acc72011-03-22 16:32:59 -0700372 mss->referenced += ptent_size;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700373 mapcount = page_mapcount(page);
374 if (mapcount >= 2) {
375 if (pte_dirty(ptent) || PageDirty(page))
Dave Hansen3c9acc72011-03-22 16:32:59 -0700376 mss->shared_dirty += ptent_size;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700377 else
Dave Hansen3c9acc72011-03-22 16:32:59 -0700378 mss->shared_clean += ptent_size;
379 mss->pss += (ptent_size << PSS_SHIFT) / mapcount;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700380 } else {
381 if (pte_dirty(ptent) || PageDirty(page))
Dave Hansen3c9acc72011-03-22 16:32:59 -0700382 mss->private_dirty += ptent_size;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700383 else
Dave Hansen3c9acc72011-03-22 16:32:59 -0700384 mss->private_clean += ptent_size;
385 mss->pss += (ptent_size << PSS_SHIFT);
Dave Hansenae11c4d2011-03-22 16:32:58 -0700386 }
387}
388
Matt Mackallb3ae5ac2008-02-04 22:29:01 -0800389static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
Dave Hansen21650092008-06-12 15:21:47 -0700390 struct mm_walk *walk)
Mauricio Line070ad42005-09-03 15:55:10 -0700391{
Dave Hansen21650092008-06-12 15:21:47 -0700392 struct mem_size_stats *mss = walk->private;
Matt Mackallb3ae5ac2008-02-04 22:29:01 -0800393 struct vm_area_struct *vma = mss->vma;
Dave Hansenae11c4d2011-03-22 16:32:58 -0700394 pte_t *pte;
Hugh Dickins705e87c2005-10-29 18:16:27 -0700395 spinlock_t *ptl;
Mauricio Line070ad42005-09-03 15:55:10 -0700396
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700397 if (pmd_trans_huge_lock(pmd, vma) == 1) {
398 smaps_pte_entry(*(pte_t *)pmd, addr, HPAGE_PMD_SIZE, walk);
Dave Hansen22e057c2011-03-22 16:33:00 -0700399 spin_unlock(&walk->mm->page_table_lock);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700400 mss->anonymous_thp += HPAGE_PMD_SIZE;
401 return 0;
Dave Hansen22e057c2011-03-22 16:33:00 -0700402 }
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -0700403
404 if (pmd_trans_unstable(pmd))
405 return 0;
Dave Hansen22e057c2011-03-22 16:33:00 -0700406 /*
407 * The mmap_sem held all the way back in m_start() is what
408 * keeps khugepaged out of here and from collapsing things
409 * in here.
410 */
Hugh Dickins705e87c2005-10-29 18:16:27 -0700411 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Dave Hansenae11c4d2011-03-22 16:32:58 -0700412 for (; addr != end; pte++, addr += PAGE_SIZE)
Dave Hansen3c9acc72011-03-22 16:32:59 -0700413 smaps_pte_entry(*pte, addr, PAGE_SIZE, walk);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700414 pte_unmap_unlock(pte - 1, ptl);
415 cond_resched();
Matt Mackallb3ae5ac2008-02-04 22:29:01 -0800416 return 0;
Mauricio Line070ad42005-09-03 15:55:10 -0700417}
418
Mauricio Line070ad42005-09-03 15:55:10 -0700419static int show_smap(struct seq_file *m, void *v)
420{
Joe Korty7c88db02008-10-16 15:27:09 +0400421 struct proc_maps_private *priv = m->private;
422 struct task_struct *task = priv->task;
Mauricio Line070ad42005-09-03 15:55:10 -0700423 struct vm_area_struct *vma = v;
Mauricio Line070ad42005-09-03 15:55:10 -0700424 struct mem_size_stats mss;
Dave Hansen21650092008-06-12 15:21:47 -0700425 struct mm_walk smaps_walk = {
426 .pmd_entry = smaps_pte_range,
427 .mm = vma->vm_mm,
428 .private = &mss,
429 };
Mauricio Line070ad42005-09-03 15:55:10 -0700430
431 memset(&mss, 0, sizeof mss);
Matt Mackallb3ae5ac2008-02-04 22:29:01 -0800432 mss.vma = vma;
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900433 /* mmap_sem is held in m_start */
Nick Piggin5ddfae12006-03-06 15:42:57 -0800434 if (vma->vm_mm && !is_vm_hugetlb_page(vma))
Dave Hansen21650092008-06-12 15:21:47 -0700435 walk_page_range(vma->vm_start, vma->vm_end, &smaps_walk);
Matt Mackall4752c362008-02-04 22:29:02 -0800436
Joe Korty7c88db02008-10-16 15:27:09 +0400437 show_map_vma(m, vma);
Matt Mackall4752c362008-02-04 22:29:02 -0800438
439 seq_printf(m,
440 "Size: %8lu kB\n"
441 "Rss: %8lu kB\n"
442 "Pss: %8lu kB\n"
443 "Shared_Clean: %8lu kB\n"
444 "Shared_Dirty: %8lu kB\n"
445 "Private_Clean: %8lu kB\n"
446 "Private_Dirty: %8lu kB\n"
Peter Zijlstra214e4712008-04-28 02:12:55 -0700447 "Referenced: %8lu kB\n"
Nikanth Karthikesanb40d4f82010-10-27 15:34:10 -0700448 "Anonymous: %8lu kB\n"
Dave Hansen4031a212011-03-22 16:33:01 -0700449 "AnonHugePages: %8lu kB\n"
Mel Gorman08fba692009-01-06 14:38:53 -0800450 "Swap: %8lu kB\n"
Mel Gorman33402892009-01-06 14:38:54 -0800451 "KernelPageSize: %8lu kB\n"
Nikanth Karthikesan2d905082011-01-13 15:45:53 -0800452 "MMUPageSize: %8lu kB\n"
453 "Locked: %8lu kB\n",
Matt Mackall4752c362008-02-04 22:29:02 -0800454 (vma->vm_end - vma->vm_start) >> 10,
455 mss.resident >> 10,
456 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)),
457 mss.shared_clean >> 10,
458 mss.shared_dirty >> 10,
459 mss.private_clean >> 10,
460 mss.private_dirty >> 10,
Peter Zijlstra214e4712008-04-28 02:12:55 -0700461 mss.referenced >> 10,
Nikanth Karthikesanb40d4f82010-10-27 15:34:10 -0700462 mss.anonymous >> 10,
Dave Hansen4031a212011-03-22 16:33:01 -0700463 mss.anonymous_thp >> 10,
Mel Gorman08fba692009-01-06 14:38:53 -0800464 mss.swap >> 10,
Mel Gorman33402892009-01-06 14:38:54 -0800465 vma_kernel_pagesize(vma) >> 10,
Nikanth Karthikesan2d905082011-01-13 15:45:53 -0800466 vma_mmu_pagesize(vma) >> 10,
467 (vma->vm_flags & VM_LOCKED) ?
468 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)) : 0);
Matt Mackall4752c362008-02-04 22:29:02 -0800469
Joe Korty7c88db02008-10-16 15:27:09 +0400470 if (m->count < m->size) /* vma is copied successfully */
Stephen Wilson31db58b2011-03-13 15:49:15 -0400471 m->version = (vma != get_gate_vma(task->mm))
472 ? vma->vm_start : 0;
Joe Korty7c88db02008-10-16 15:27:09 +0400473 return 0;
Mauricio Line070ad42005-09-03 15:55:10 -0700474}
475
Jan Engelhardt03a44822008-02-08 04:21:19 -0800476static const struct seq_operations proc_pid_smaps_op = {
Matt Mackalla6198792008-02-04 22:29:03 -0800477 .start = m_start,
478 .next = m_next,
479 .stop = m_stop,
480 .show = show_smap
481};
482
483static int smaps_open(struct inode *inode, struct file *file)
484{
485 return do_maps_open(inode, file, &proc_pid_smaps_op);
486}
487
488const struct file_operations proc_smaps_operations = {
489 .open = smaps_open,
490 .read = seq_read,
491 .llseek = seq_lseek,
492 .release = seq_release_private,
493};
494
495static int clear_refs_pte_range(pmd_t *pmd, unsigned long addr,
Dave Hansen21650092008-06-12 15:21:47 -0700496 unsigned long end, struct mm_walk *walk)
Matt Mackalla6198792008-02-04 22:29:03 -0800497{
Dave Hansen21650092008-06-12 15:21:47 -0700498 struct vm_area_struct *vma = walk->private;
Matt Mackalla6198792008-02-04 22:29:03 -0800499 pte_t *pte, ptent;
500 spinlock_t *ptl;
501 struct page *page;
502
Dave Hansen03319322011-03-22 16:32:56 -0700503 split_huge_page_pmd(walk->mm, pmd);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -0700504 if (pmd_trans_unstable(pmd))
505 return 0;
Dave Hansen03319322011-03-22 16:32:56 -0700506
Matt Mackalla6198792008-02-04 22:29:03 -0800507 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
508 for (; addr != end; pte++, addr += PAGE_SIZE) {
509 ptent = *pte;
510 if (!pte_present(ptent))
511 continue;
512
513 page = vm_normal_page(vma, addr, ptent);
514 if (!page)
515 continue;
516
Will Deacon85e72aa2012-01-20 14:34:09 -0800517 if (PageReserved(page))
518 continue;
519
Matt Mackalla6198792008-02-04 22:29:03 -0800520 /* Clear accessed and referenced bits. */
521 ptep_test_and_clear_young(vma, addr, pte);
522 ClearPageReferenced(page);
523 }
524 pte_unmap_unlock(pte - 1, ptl);
525 cond_resched();
526 return 0;
527}
528
Moussa A. Ba398499d2009-09-21 17:02:29 -0700529#define CLEAR_REFS_ALL 1
530#define CLEAR_REFS_ANON 2
531#define CLEAR_REFS_MAPPED 3
532
Matt Mackallf248dcb2008-02-04 22:29:03 -0800533static ssize_t clear_refs_write(struct file *file, const char __user *buf,
534 size_t count, loff_t *ppos)
David Rientjesb813e932007-05-06 14:49:24 -0700535{
Matt Mackallf248dcb2008-02-04 22:29:03 -0800536 struct task_struct *task;
Vincent Lifb92a4b2009-09-22 16:45:36 -0700537 char buffer[PROC_NUMBUF];
Matt Mackallf248dcb2008-02-04 22:29:03 -0800538 struct mm_struct *mm;
David Rientjesb813e932007-05-06 14:49:24 -0700539 struct vm_area_struct *vma;
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -0700540 int type;
541 int rv;
David Rientjesb813e932007-05-06 14:49:24 -0700542
Matt Mackallf248dcb2008-02-04 22:29:03 -0800543 memset(buffer, 0, sizeof(buffer));
544 if (count > sizeof(buffer) - 1)
545 count = sizeof(buffer) - 1;
546 if (copy_from_user(buffer, buf, count))
547 return -EFAULT;
Alexey Dobriyan0a8cb8e2011-05-26 16:25:50 -0700548 rv = kstrtoint(strstrip(buffer), 10, &type);
549 if (rv < 0)
550 return rv;
Moussa A. Ba398499d2009-09-21 17:02:29 -0700551 if (type < CLEAR_REFS_ALL || type > CLEAR_REFS_MAPPED)
Matt Mackallf248dcb2008-02-04 22:29:03 -0800552 return -EINVAL;
Matt Mackallf248dcb2008-02-04 22:29:03 -0800553 task = get_proc_task(file->f_path.dentry->d_inode);
554 if (!task)
555 return -ESRCH;
556 mm = get_task_mm(task);
557 if (mm) {
Andrew Morton20cbc972008-07-05 12:29:05 -0700558 struct mm_walk clear_refs_walk = {
559 .pmd_entry = clear_refs_pte_range,
560 .mm = mm,
561 };
Matt Mackallf248dcb2008-02-04 22:29:03 -0800562 down_read(&mm->mmap_sem);
Dave Hansen21650092008-06-12 15:21:47 -0700563 for (vma = mm->mmap; vma; vma = vma->vm_next) {
564 clear_refs_walk.private = vma;
Moussa A. Ba398499d2009-09-21 17:02:29 -0700565 if (is_vm_hugetlb_page(vma))
566 continue;
567 /*
568 * Writing 1 to /proc/pid/clear_refs affects all pages.
569 *
570 * Writing 2 to /proc/pid/clear_refs only affects
571 * Anonymous pages.
572 *
573 * Writing 3 to /proc/pid/clear_refs only affects file
574 * mapped pages.
575 */
576 if (type == CLEAR_REFS_ANON && vma->vm_file)
577 continue;
578 if (type == CLEAR_REFS_MAPPED && !vma->vm_file)
579 continue;
580 walk_page_range(vma->vm_start, vma->vm_end,
581 &clear_refs_walk);
Dave Hansen21650092008-06-12 15:21:47 -0700582 }
Matt Mackallf248dcb2008-02-04 22:29:03 -0800583 flush_tlb_mm(mm);
584 up_read(&mm->mmap_sem);
585 mmput(mm);
586 }
587 put_task_struct(task);
Vincent Lifb92a4b2009-09-22 16:45:36 -0700588
589 return count;
David Rientjesb813e932007-05-06 14:49:24 -0700590}
591
Matt Mackallf248dcb2008-02-04 22:29:03 -0800592const struct file_operations proc_clear_refs_operations = {
593 .write = clear_refs_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200594 .llseek = noop_llseek,
Matt Mackallf248dcb2008-02-04 22:29:03 -0800595};
596
Matt Mackall85863e42008-02-04 22:29:04 -0800597struct pagemapread {
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900598 int pos, len;
599 u64 *buffer;
Matt Mackall85863e42008-02-04 22:29:04 -0800600};
601
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700602#define PAGEMAP_WALK_SIZE (PMD_SIZE)
603#define PAGEMAP_WALK_MASK (PMD_MASK)
604
Hans Rosenfeldf16278c2008-03-21 18:46:59 -0500605#define PM_ENTRY_BYTES sizeof(u64)
606#define PM_STATUS_BITS 3
607#define PM_STATUS_OFFSET (64 - PM_STATUS_BITS)
608#define PM_STATUS_MASK (((1LL << PM_STATUS_BITS) - 1) << PM_STATUS_OFFSET)
609#define PM_STATUS(nr) (((nr) << PM_STATUS_OFFSET) & PM_STATUS_MASK)
610#define PM_PSHIFT_BITS 6
611#define PM_PSHIFT_OFFSET (PM_STATUS_OFFSET - PM_PSHIFT_BITS)
612#define PM_PSHIFT_MASK (((1LL << PM_PSHIFT_BITS) - 1) << PM_PSHIFT_OFFSET)
613#define PM_PSHIFT(x) (((u64) (x) << PM_PSHIFT_OFFSET) & PM_PSHIFT_MASK)
614#define PM_PFRAME_MASK ((1LL << PM_PSHIFT_OFFSET) - 1)
615#define PM_PFRAME(x) ((x) & PM_PFRAME_MASK)
616
617#define PM_PRESENT PM_STATUS(4LL)
618#define PM_SWAP PM_STATUS(2LL)
619#define PM_NOT_PRESENT PM_PSHIFT(PAGE_SHIFT)
Matt Mackall85863e42008-02-04 22:29:04 -0800620#define PM_END_OF_BUFFER 1
621
622static int add_to_pagemap(unsigned long addr, u64 pfn,
623 struct pagemapread *pm)
624{
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900625 pm->buffer[pm->pos++] = pfn;
626 if (pm->pos >= pm->len)
Thomas Tuttleaae86792008-06-05 22:46:31 -0700627 return PM_END_OF_BUFFER;
Matt Mackall85863e42008-02-04 22:29:04 -0800628 return 0;
629}
630
631static int pagemap_pte_hole(unsigned long start, unsigned long end,
Dave Hansen21650092008-06-12 15:21:47 -0700632 struct mm_walk *walk)
Matt Mackall85863e42008-02-04 22:29:04 -0800633{
Dave Hansen21650092008-06-12 15:21:47 -0700634 struct pagemapread *pm = walk->private;
Matt Mackall85863e42008-02-04 22:29:04 -0800635 unsigned long addr;
636 int err = 0;
637 for (addr = start; addr < end; addr += PAGE_SIZE) {
638 err = add_to_pagemap(addr, PM_NOT_PRESENT, pm);
639 if (err)
640 break;
641 }
642 return err;
643}
644
Adrian Bunk9d02dbc2008-04-28 02:12:11 -0700645static u64 swap_pte_to_pagemap_entry(pte_t pte)
Matt Mackall85863e42008-02-04 22:29:04 -0800646{
647 swp_entry_t e = pte_to_swp_entry(pte);
Hans Rosenfeldf16278c2008-03-21 18:46:59 -0500648 return swp_type(e) | (swp_offset(e) << MAX_SWAPFILES_SHIFT);
Matt Mackall85863e42008-02-04 22:29:04 -0800649}
650
Matt Mackall49c50342008-12-09 13:14:21 -0800651static u64 pte_to_pagemap_entry(pte_t pte)
Dave Hansenbcf80392008-06-12 15:21:48 -0700652{
Matt Mackall49c50342008-12-09 13:14:21 -0800653 u64 pme = 0;
Dave Hansenbcf80392008-06-12 15:21:48 -0700654 if (is_swap_pte(pte))
655 pme = PM_PFRAME(swap_pte_to_pagemap_entry(pte))
656 | PM_PSHIFT(PAGE_SHIFT) | PM_SWAP;
657 else if (pte_present(pte))
658 pme = PM_PFRAME(pte_pfn(pte))
659 | PM_PSHIFT(PAGE_SHIFT) | PM_PRESENT;
660 return pme;
661}
662
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700663#ifdef CONFIG_TRANSPARENT_HUGEPAGE
664static u64 thp_pmd_to_pagemap_entry(pmd_t pmd, int offset)
665{
666 u64 pme = 0;
667 /*
668 * Currently pmd for thp is always present because thp can not be
669 * swapped-out, migrated, or HWPOISONed (split in such cases instead.)
670 * This if-check is just to prepare for future implementation.
671 */
672 if (pmd_present(pmd))
673 pme = PM_PFRAME(pmd_pfn(pmd) + offset)
674 | PM_PSHIFT(PAGE_SHIFT) | PM_PRESENT;
675 return pme;
676}
677#else
678static inline u64 thp_pmd_to_pagemap_entry(pmd_t pmd, int offset)
679{
680 return 0;
681}
682#endif
683
Matt Mackall85863e42008-02-04 22:29:04 -0800684static int pagemap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
Dave Hansen21650092008-06-12 15:21:47 -0700685 struct mm_walk *walk)
Matt Mackall85863e42008-02-04 22:29:04 -0800686{
Dave Hansenbcf80392008-06-12 15:21:48 -0700687 struct vm_area_struct *vma;
Dave Hansen21650092008-06-12 15:21:47 -0700688 struct pagemapread *pm = walk->private;
Matt Mackall85863e42008-02-04 22:29:04 -0800689 pte_t *pte;
690 int err = 0;
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700691 u64 pfn = PM_NOT_PRESENT;
Matt Mackall85863e42008-02-04 22:29:04 -0800692
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -0700693 if (pmd_trans_unstable(pmd))
694 return 0;
Dave Hansen03319322011-03-22 16:32:56 -0700695
Dave Hansenbcf80392008-06-12 15:21:48 -0700696 /* find the first VMA at or above 'addr' */
697 vma = find_vma(walk->mm, addr);
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700698 spin_lock(&walk->mm->page_table_lock);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700699 if (pmd_trans_huge_lock(pmd, vma) == 1) {
700 for (; addr != end; addr += PAGE_SIZE) {
701 unsigned long offset;
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700702
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700703 offset = (addr & ~PAGEMAP_WALK_MASK) >>
704 PAGE_SHIFT;
705 pfn = thp_pmd_to_pagemap_entry(*pmd, offset);
706 err = add_to_pagemap(addr, pfn, pm);
707 if (err)
708 break;
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700709 }
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700710 spin_unlock(&walk->mm->page_table_lock);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700711 return err;
Naoya Horiguchi5aaabe82012-03-21 16:33:57 -0700712 }
713
Matt Mackall85863e42008-02-04 22:29:04 -0800714 for (; addr != end; addr += PAGE_SIZE) {
Dave Hansenbcf80392008-06-12 15:21:48 -0700715
716 /* check to see if we've left 'vma' behind
717 * and need a new, higher one */
718 if (vma && (addr >= vma->vm_end))
719 vma = find_vma(walk->mm, addr);
720
721 /* check that 'vma' actually covers this address,
722 * and that it isn't a huge page vma */
723 if (vma && (vma->vm_start <= addr) &&
724 !is_vm_hugetlb_page(vma)) {
725 pte = pte_offset_map(pmd, addr);
726 pfn = pte_to_pagemap_entry(*pte);
727 /* unmap before userspace copy */
728 pte_unmap(pte);
729 }
Matt Mackall85863e42008-02-04 22:29:04 -0800730 err = add_to_pagemap(addr, pfn, pm);
731 if (err)
732 return err;
733 }
734
735 cond_resched();
736
737 return err;
738}
739
Naoya Horiguchi1a5cb812010-05-24 14:32:12 -0700740#ifdef CONFIG_HUGETLB_PAGE
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800741static u64 huge_pte_to_pagemap_entry(pte_t pte, int offset)
742{
743 u64 pme = 0;
744 if (pte_present(pte))
745 pme = PM_PFRAME(pte_pfn(pte) + offset)
746 | PM_PSHIFT(PAGE_SHIFT) | PM_PRESENT;
747 return pme;
748}
749
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700750/* This function walks within one hugetlb entry in the single call */
751static int pagemap_hugetlb_range(pte_t *pte, unsigned long hmask,
752 unsigned long addr, unsigned long end,
753 struct mm_walk *walk)
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800754{
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800755 struct pagemapread *pm = walk->private;
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800756 int err = 0;
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700757 u64 pfn;
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800758
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800759 for (; addr != end; addr += PAGE_SIZE) {
Naoya Horiguchi116354d2010-04-06 14:35:04 -0700760 int offset = (addr & ~hmask) >> PAGE_SHIFT;
761 pfn = huge_pte_to_pagemap_entry(*pte, offset);
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800762 err = add_to_pagemap(addr, pfn, pm);
763 if (err)
764 return err;
765 }
766
767 cond_resched();
768
769 return err;
770}
Naoya Horiguchi1a5cb812010-05-24 14:32:12 -0700771#endif /* HUGETLB_PAGE */
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800772
Matt Mackall85863e42008-02-04 22:29:04 -0800773/*
774 * /proc/pid/pagemap - an array mapping virtual pages to pfns
775 *
Hans Rosenfeldf16278c2008-03-21 18:46:59 -0500776 * For each page in the address space, this file contains one 64-bit entry
777 * consisting of the following:
778 *
779 * Bits 0-55 page frame number (PFN) if present
780 * Bits 0-4 swap type if swapped
781 * Bits 5-55 swap offset if swapped
782 * Bits 55-60 page shift (page size = 1<<page shift)
783 * Bit 61 reserved for future use
784 * Bit 62 page swapped
785 * Bit 63 page present
786 *
787 * If the page is not present but in swap, then the PFN contains an
788 * encoding of the swap file number and the page's offset into the
789 * swap. Unmapped pages return a null PFN. This allows determining
Matt Mackall85863e42008-02-04 22:29:04 -0800790 * precisely which pages are mapped (or in swap) and comparing mapped
791 * pages between processes.
792 *
793 * Efficient users of this interface will use /proc/pid/maps to
794 * determine which areas of memory are actually mapped and llseek to
795 * skip over unmapped regions.
796 */
797static ssize_t pagemap_read(struct file *file, char __user *buf,
798 size_t count, loff_t *ppos)
799{
800 struct task_struct *task = get_proc_task(file->f_path.dentry->d_inode);
Matt Mackall85863e42008-02-04 22:29:04 -0800801 struct mm_struct *mm;
802 struct pagemapread pm;
Matt Mackall85863e42008-02-04 22:29:04 -0800803 int ret = -ESRCH;
Alexey Dobriyanee1e6ab2008-07-21 14:21:36 -0700804 struct mm_walk pagemap_walk = {};
Andrew Morton5d7e0d22008-07-05 01:02:01 -0700805 unsigned long src;
806 unsigned long svpfn;
807 unsigned long start_vaddr;
808 unsigned long end_vaddr;
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900809 int copied = 0;
Matt Mackall85863e42008-02-04 22:29:04 -0800810
811 if (!task)
812 goto out;
813
Matt Mackall85863e42008-02-04 22:29:04 -0800814 ret = -EINVAL;
815 /* file position must be aligned */
Thomas Tuttleaae86792008-06-05 22:46:31 -0700816 if ((*ppos % PM_ENTRY_BYTES) || (count % PM_ENTRY_BYTES))
Marcelo Tosattifb393802008-03-13 12:32:35 -0700817 goto out_task;
Matt Mackall85863e42008-02-04 22:29:04 -0800818
819 ret = 0;
Vitaly Mayatskikh08161782009-04-30 15:08:18 -0700820 if (!count)
821 goto out_task;
822
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900823 pm.len = PM_ENTRY_BYTES * (PAGEMAP_WALK_SIZE >> PAGE_SHIFT);
824 pm.buffer = kmalloc(pm.len, GFP_TEMPORARY);
Andrew Morton5d7e0d22008-07-05 01:02:01 -0700825 ret = -ENOMEM;
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900826 if (!pm.buffer)
KOSAKI Motohiro98bc93e2011-05-26 16:25:53 -0700827 goto out_task;
828
829 mm = mm_for_maps(task);
830 ret = PTR_ERR(mm);
831 if (!mm || IS_ERR(mm))
832 goto out_free;
Matt Mackall85863e42008-02-04 22:29:04 -0800833
Andrew Morton5d7e0d22008-07-05 01:02:01 -0700834 pagemap_walk.pmd_entry = pagemap_pte_range;
835 pagemap_walk.pte_hole = pagemap_pte_hole;
Naoya Horiguchi1a5cb812010-05-24 14:32:12 -0700836#ifdef CONFIG_HUGETLB_PAGE
Naoya Horiguchi5dc37642009-12-14 18:00:01 -0800837 pagemap_walk.hugetlb_entry = pagemap_hugetlb_range;
Naoya Horiguchi1a5cb812010-05-24 14:32:12 -0700838#endif
Andrew Morton5d7e0d22008-07-05 01:02:01 -0700839 pagemap_walk.mm = mm;
840 pagemap_walk.private = &pm;
Matt Mackall85863e42008-02-04 22:29:04 -0800841
Andrew Morton5d7e0d22008-07-05 01:02:01 -0700842 src = *ppos;
843 svpfn = src / PM_ENTRY_BYTES;
844 start_vaddr = svpfn << PAGE_SHIFT;
845 end_vaddr = TASK_SIZE_OF(task);
Matt Mackall85863e42008-02-04 22:29:04 -0800846
Andrew Morton5d7e0d22008-07-05 01:02:01 -0700847 /* watch out for wraparound */
848 if (svpfn > TASK_SIZE_OF(task) >> PAGE_SHIFT)
849 start_vaddr = end_vaddr;
850
851 /*
852 * The odds are that this will stop walking way
853 * before end_vaddr, because the length of the
854 * user buffer is tracked in "pm", and the walk
855 * will stop when we hit the end of the buffer.
856 */
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900857 ret = 0;
858 while (count && (start_vaddr < end_vaddr)) {
859 int len;
860 unsigned long end;
Matt Mackall85863e42008-02-04 22:29:04 -0800861
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900862 pm.pos = 0;
Naoya Horiguchiea251c12010-11-24 12:57:13 -0800863 end = (start_vaddr + PAGEMAP_WALK_SIZE) & PAGEMAP_WALK_MASK;
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900864 /* overflow ? */
865 if (end < start_vaddr || end > end_vaddr)
866 end = end_vaddr;
867 down_read(&mm->mmap_sem);
868 ret = walk_page_range(start_vaddr, end, &pagemap_walk);
869 up_read(&mm->mmap_sem);
870 start_vaddr = end;
871
872 len = min(count, PM_ENTRY_BYTES * pm.pos);
Dan Carpenter309361e2010-04-06 13:45:39 +0300873 if (copy_to_user(buf, pm.buffer, len)) {
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900874 ret = -EFAULT;
KOSAKI Motohiro98bc93e2011-05-26 16:25:53 -0700875 goto out_mm;
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900876 }
877 copied += len;
878 buf += len;
879 count -= len;
Matt Mackall85863e42008-02-04 22:29:04 -0800880 }
KAMEZAWA Hiroyukid82ef022010-04-02 09:11:29 +0900881 *ppos += copied;
882 if (!ret || ret == PM_END_OF_BUFFER)
883 ret = copied;
884
Marcelo Tosattifb393802008-03-13 12:32:35 -0700885out_mm:
886 mmput(mm);
KOSAKI Motohiro98bc93e2011-05-26 16:25:53 -0700887out_free:
888 kfree(pm.buffer);
Matt Mackall85863e42008-02-04 22:29:04 -0800889out_task:
890 put_task_struct(task);
891out:
892 return ret;
893}
894
895const struct file_operations proc_pagemap_operations = {
896 .llseek = mem_lseek, /* borrow this */
897 .read = pagemap_read,
898};
Matt Mackall1e883282008-02-04 22:29:07 -0800899#endif /* CONFIG_PROC_PAGE_MONITOR */
Matt Mackall85863e42008-02-04 22:29:04 -0800900
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700901#ifdef CONFIG_NUMA
Christoph Lameter6e21c8f2005-09-03 15:54:45 -0700902
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700903struct numa_maps {
904 struct vm_area_struct *vma;
905 unsigned long pages;
906 unsigned long anon;
907 unsigned long active;
908 unsigned long writeback;
909 unsigned long mapcount_max;
910 unsigned long dirty;
911 unsigned long swapcache;
912 unsigned long node[MAX_NUMNODES];
913};
914
Stephen Wilson5b52fc82011-05-24 17:12:49 -0700915struct numa_maps_private {
916 struct proc_maps_private proc_maps;
917 struct numa_maps md;
918};
919
Dave Hanseneb4866d2011-09-20 15:19:38 -0700920static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty,
921 unsigned long nr_pages)
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700922{
923 int count = page_mapcount(page);
924
Dave Hanseneb4866d2011-09-20 15:19:38 -0700925 md->pages += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700926 if (pte_dirty || PageDirty(page))
Dave Hanseneb4866d2011-09-20 15:19:38 -0700927 md->dirty += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700928
929 if (PageSwapCache(page))
Dave Hanseneb4866d2011-09-20 15:19:38 -0700930 md->swapcache += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700931
932 if (PageActive(page) || PageUnevictable(page))
Dave Hanseneb4866d2011-09-20 15:19:38 -0700933 md->active += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700934
935 if (PageWriteback(page))
Dave Hanseneb4866d2011-09-20 15:19:38 -0700936 md->writeback += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700937
938 if (PageAnon(page))
Dave Hanseneb4866d2011-09-20 15:19:38 -0700939 md->anon += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700940
941 if (count > md->mapcount_max)
942 md->mapcount_max = count;
943
Dave Hanseneb4866d2011-09-20 15:19:38 -0700944 md->node[page_to_nid(page)] += nr_pages;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700945}
946
Dave Hansen3200a8a2011-09-20 15:19:39 -0700947static struct page *can_gather_numa_stats(pte_t pte, struct vm_area_struct *vma,
948 unsigned long addr)
949{
950 struct page *page;
951 int nid;
952
953 if (!pte_present(pte))
954 return NULL;
955
956 page = vm_normal_page(vma, addr, pte);
957 if (!page)
958 return NULL;
959
960 if (PageReserved(page))
961 return NULL;
962
963 nid = page_to_nid(page);
964 if (!node_isset(nid, node_states[N_HIGH_MEMORY]))
965 return NULL;
966
967 return page;
968}
969
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700970static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
971 unsigned long end, struct mm_walk *walk)
972{
973 struct numa_maps *md;
974 spinlock_t *ptl;
975 pte_t *orig_pte;
976 pte_t *pte;
977
978 md = walk->private;
Dave Hansen32ef4382011-09-20 15:19:41 -0700979
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700980 if (pmd_trans_huge_lock(pmd, md->vma) == 1) {
981 pte_t huge_pte = *(pte_t *)pmd;
982 struct page *page;
983
984 page = can_gather_numa_stats(huge_pte, md->vma, addr);
985 if (page)
986 gather_stats(page, md, pte_dirty(huge_pte),
987 HPAGE_PMD_SIZE/PAGE_SIZE);
Dave Hansen32ef4382011-09-20 15:19:41 -0700988 spin_unlock(&walk->mm->page_table_lock);
Naoya Horiguchi025c5b22012-03-21 16:33:57 -0700989 return 0;
Dave Hansen32ef4382011-09-20 15:19:41 -0700990 }
991
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -0700992 if (pmd_trans_unstable(pmd))
993 return 0;
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700994 orig_pte = pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
995 do {
Dave Hansen3200a8a2011-09-20 15:19:39 -0700996 struct page *page = can_gather_numa_stats(*pte, md->vma, addr);
Stephen Wilsonf69ff942011-05-24 17:12:47 -0700997 if (!page)
998 continue;
Dave Hanseneb4866d2011-09-20 15:19:38 -0700999 gather_stats(page, md, pte_dirty(*pte), 1);
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001000
1001 } while (pte++, addr += PAGE_SIZE, addr != end);
1002 pte_unmap_unlock(orig_pte, ptl);
1003 return 0;
1004}
1005#ifdef CONFIG_HUGETLB_PAGE
1006static int gather_hugetbl_stats(pte_t *pte, unsigned long hmask,
1007 unsigned long addr, unsigned long end, struct mm_walk *walk)
1008{
1009 struct numa_maps *md;
1010 struct page *page;
1011
1012 if (pte_none(*pte))
1013 return 0;
1014
1015 page = pte_page(*pte);
1016 if (!page)
1017 return 0;
1018
1019 md = walk->private;
Dave Hanseneb4866d2011-09-20 15:19:38 -07001020 gather_stats(page, md, pte_dirty(*pte), 1);
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001021 return 0;
1022}
1023
1024#else
1025static int gather_hugetbl_stats(pte_t *pte, unsigned long hmask,
1026 unsigned long addr, unsigned long end, struct mm_walk *walk)
1027{
1028 return 0;
1029}
1030#endif
1031
1032/*
1033 * Display pages allocated per node and memory policy via /proc.
1034 */
1035static int show_numa_map(struct seq_file *m, void *v)
1036{
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001037 struct numa_maps_private *numa_priv = m->private;
1038 struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001039 struct vm_area_struct *vma = v;
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001040 struct numa_maps *md = &numa_priv->md;
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001041 struct file *file = vma->vm_file;
1042 struct mm_struct *mm = vma->vm_mm;
1043 struct mm_walk walk = {};
1044 struct mempolicy *pol;
1045 int n;
1046 char buffer[50];
1047
1048 if (!mm)
1049 return 0;
1050
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001051 /* Ensure we start with an empty set of numa_maps statistics. */
1052 memset(md, 0, sizeof(*md));
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001053
1054 md->vma = vma;
1055
1056 walk.hugetlb_entry = gather_hugetbl_stats;
1057 walk.pmd_entry = gather_pte_stats;
1058 walk.private = md;
1059 walk.mm = mm;
1060
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001061 pol = get_vma_policy(proc_priv->task, vma, vma->vm_start);
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001062 mpol_to_str(buffer, sizeof(buffer), pol, 0);
1063 mpol_cond_put(pol);
1064
1065 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1066
1067 if (file) {
1068 seq_printf(m, " file=");
1069 seq_path(m, &file->f_path, "\n\t= ");
1070 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
1071 seq_printf(m, " heap");
1072 } else if (vma->vm_start <= mm->start_stack &&
1073 vma->vm_end >= mm->start_stack) {
1074 seq_printf(m, " stack");
1075 }
1076
Andrew Mortonfc360bd2011-10-31 17:06:32 -07001077 if (is_vm_hugetlb_page(vma))
1078 seq_printf(m, " huge");
1079
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001080 walk_page_range(vma->vm_start, vma->vm_end, &walk);
1081
1082 if (!md->pages)
1083 goto out;
1084
1085 if (md->anon)
1086 seq_printf(m, " anon=%lu", md->anon);
1087
1088 if (md->dirty)
1089 seq_printf(m, " dirty=%lu", md->dirty);
1090
1091 if (md->pages != md->anon && md->pages != md->dirty)
1092 seq_printf(m, " mapped=%lu", md->pages);
1093
1094 if (md->mapcount_max > 1)
1095 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1096
1097 if (md->swapcache)
1098 seq_printf(m, " swapcache=%lu", md->swapcache);
1099
1100 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1101 seq_printf(m, " active=%lu", md->active);
1102
1103 if (md->writeback)
1104 seq_printf(m, " writeback=%lu", md->writeback);
1105
1106 for_each_node_state(n, N_HIGH_MEMORY)
1107 if (md->node[n])
1108 seq_printf(m, " N%d=%lu", n, md->node[n]);
1109out:
1110 seq_putc(m, '\n');
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001111
1112 if (m->count < m->size)
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001113 m->version = (vma != proc_priv->tail_vma) ? vma->vm_start : 0;
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001114 return 0;
1115}
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001116
Jan Engelhardt03a44822008-02-08 04:21:19 -08001117static const struct seq_operations proc_pid_numa_maps_op = {
Christoph Lameter1a75a6c2006-01-08 01:01:02 -08001118 .start = m_start,
1119 .next = m_next,
1120 .stop = m_stop,
Alexey Dobriyan3bbfe052008-10-10 03:27:16 +04001121 .show = show_numa_map,
Christoph Lameter6e21c8f2005-09-03 15:54:45 -07001122};
Eric W. Biederman662795d2006-06-26 00:25:48 -07001123
1124static int numa_maps_open(struct inode *inode, struct file *file)
1125{
Stephen Wilson5b52fc82011-05-24 17:12:49 -07001126 struct numa_maps_private *priv;
1127 int ret = -ENOMEM;
1128 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1129 if (priv) {
1130 priv->proc_maps.pid = proc_pid(inode);
1131 ret = seq_open(file, &proc_pid_numa_maps_op);
1132 if (!ret) {
1133 struct seq_file *m = file->private_data;
1134 m->private = priv;
1135 } else {
1136 kfree(priv);
1137 }
1138 }
1139 return ret;
Eric W. Biederman662795d2006-06-26 00:25:48 -07001140}
1141
Arjan van de Ven00977a52007-02-12 00:55:34 -08001142const struct file_operations proc_numa_maps_operations = {
Eric W. Biederman662795d2006-06-26 00:25:48 -07001143 .open = numa_maps_open,
1144 .read = seq_read,
1145 .llseek = seq_lseek,
Eric W. Biederman99f89552006-06-26 00:25:55 -07001146 .release = seq_release_private,
Eric W. Biederman662795d2006-06-26 00:25:48 -07001147};
Stephen Wilsonf69ff942011-05-24 17:12:47 -07001148#endif /* CONFIG_NUMA */