fs/proc/task_mmu.c: don't use task->mm in m_start() and show_*map()
[deliverable/linux.git] / fs / proc / task_mmu.c
CommitLineData
1da177e4 1#include <linux/mm.h>
615d6e87 2#include <linux/vmacache.h>
1da177e4 3#include <linux/hugetlb.h>
22e057c5 4#include <linux/huge_mm.h>
1da177e4
LT
5#include <linux/mount.h>
6#include <linux/seq_file.h>
e070ad49 7#include <linux/highmem.h>
5096add8 8#include <linux/ptrace.h>
5a0e3ad6 9#include <linux/slab.h>
6e21c8f1
CL
10#include <linux/pagemap.h>
11#include <linux/mempolicy.h>
22e057c5 12#include <linux/rmap.h>
85863e47
MM
13#include <linux/swap.h>
14#include <linux/swapops.h>
0f8975ec 15#include <linux/mmu_notifier.h>
e070ad49 16
1da177e4
LT
17#include <asm/elf.h>
18#include <asm/uaccess.h>
e070ad49 19#include <asm/tlbflush.h>
1da177e4
LT
20#include "internal.h"
21
df5f8314 22void task_mem(struct seq_file *m, struct mm_struct *mm)
1da177e4 23{
b084d435 24 unsigned long data, text, lib, swap;
365e9c87
HD
25 unsigned long hiwater_vm, total_vm, hiwater_rss, total_rss;
26
27 /*
28 * Note: to minimize their overhead, mm maintains hiwater_vm and
29 * hiwater_rss only when about to *lower* total_vm or rss. Any
30 * collector of these hiwater stats must therefore get total_vm
31 * and rss too, which will usually be the higher. Barriers? not
32 * worth the effort, such snapshots can always be inconsistent.
33 */
34 hiwater_vm = total_vm = mm->total_vm;
35 if (hiwater_vm < mm->hiwater_vm)
36 hiwater_vm = mm->hiwater_vm;
37 hiwater_rss = total_rss = get_mm_rss(mm);
38 if (hiwater_rss < mm->hiwater_rss)
39 hiwater_rss = mm->hiwater_rss;
1da177e4
LT
40
41 data = mm->total_vm - mm->shared_vm - mm->stack_vm;
42 text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK)) >> 10;
43 lib = (mm->exec_vm << (PAGE_SHIFT-10)) - text;
b084d435 44 swap = get_mm_counter(mm, MM_SWAPENTS);
df5f8314 45 seq_printf(m,
365e9c87 46 "VmPeak:\t%8lu kB\n"
1da177e4
LT
47 "VmSize:\t%8lu kB\n"
48 "VmLck:\t%8lu kB\n"
bc3e53f6 49 "VmPin:\t%8lu kB\n"
365e9c87 50 "VmHWM:\t%8lu kB\n"
1da177e4
LT
51 "VmRSS:\t%8lu kB\n"
52 "VmData:\t%8lu kB\n"
53 "VmStk:\t%8lu kB\n"
54 "VmExe:\t%8lu kB\n"
55 "VmLib:\t%8lu kB\n"
b084d435
KH
56 "VmPTE:\t%8lu kB\n"
57 "VmSwap:\t%8lu kB\n",
365e9c87 58 hiwater_vm << (PAGE_SHIFT-10),
314e51b9 59 total_vm << (PAGE_SHIFT-10),
1da177e4 60 mm->locked_vm << (PAGE_SHIFT-10),
bc3e53f6 61 mm->pinned_vm << (PAGE_SHIFT-10),
365e9c87
HD
62 hiwater_rss << (PAGE_SHIFT-10),
63 total_rss << (PAGE_SHIFT-10),
1da177e4
LT
64 data << (PAGE_SHIFT-10),
65 mm->stack_vm << (PAGE_SHIFT-10), text, lib,
e1f56c89
KS
66 (PTRS_PER_PTE * sizeof(pte_t) *
67 atomic_long_read(&mm->nr_ptes)) >> 10,
b084d435 68 swap << (PAGE_SHIFT-10));
1da177e4
LT
69}
70
71unsigned long task_vsize(struct mm_struct *mm)
72{
73 return PAGE_SIZE * mm->total_vm;
74}
75
a2ade7b6
AD
76unsigned long task_statm(struct mm_struct *mm,
77 unsigned long *shared, unsigned long *text,
78 unsigned long *data, unsigned long *resident)
1da177e4 79{
d559db08 80 *shared = get_mm_counter(mm, MM_FILEPAGES);
1da177e4
LT
81 *text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK))
82 >> PAGE_SHIFT;
83 *data = mm->total_vm - mm->shared_vm;
d559db08 84 *resident = *shared + get_mm_counter(mm, MM_ANONPAGES);
1da177e4
LT
85 return mm->total_vm;
86}
87
9e781440
KH
88#ifdef CONFIG_NUMA
89/*
90 * These functions are for numa_maps but called in generic **maps seq_file
91 * ->start(), ->stop() ops.
92 *
93 * numa_maps scans all vmas under mmap_sem and checks their mempolicy.
94 * Each mempolicy object is controlled by reference counting. The problem here
95 * is how to avoid accessing dead mempolicy object.
96 *
97 * Because we're holding mmap_sem while reading seq_file, it's safe to access
98 * each vma's mempolicy, no vma objects will never drop refs to mempolicy.
99 *
100 * A task's mempolicy (task->mempolicy) has different behavior. task->mempolicy
101 * is set and replaced under mmap_sem but unrefed and cleared under task_lock().
102 * So, without task_lock(), we cannot trust get_vma_policy() because we cannot
103 * gurantee the task never exits under us. But taking task_lock() around
104 * get_vma_plicy() causes lock order problem.
105 *
106 * To access task->mempolicy without lock, we hold a reference count of an
107 * object pointed by task->mempolicy and remember it. This will guarantee
108 * that task->mempolicy points to an alive object or NULL in numa_maps accesses.
109 */
110static void hold_task_mempolicy(struct proc_maps_private *priv)
111{
112 struct task_struct *task = priv->task;
113
114 task_lock(task);
115 priv->task_mempolicy = task->mempolicy;
116 mpol_get(priv->task_mempolicy);
117 task_unlock(task);
118}
119static void release_task_mempolicy(struct proc_maps_private *priv)
120{
121 mpol_put(priv->task_mempolicy);
122}
123#else
124static void hold_task_mempolicy(struct proc_maps_private *priv)
125{
126}
127static void release_task_mempolicy(struct proc_maps_private *priv)
128{
129}
130#endif
131
a6198797
MM
132static void vma_stop(struct proc_maps_private *priv, struct vm_area_struct *vma)
133{
134 if (vma && vma != priv->tail_vma) {
135 struct mm_struct *mm = vma->vm_mm;
9e781440 136 release_task_mempolicy(priv);
a6198797
MM
137 up_read(&mm->mmap_sem);
138 mmput(mm);
139 }
140}
ec4dd3eb 141
a6198797 142static void *m_start(struct seq_file *m, loff_t *pos)
e070ad49 143{
a6198797
MM
144 struct proc_maps_private *priv = m->private;
145 unsigned long last_addr = m->version;
146 struct mm_struct *mm;
147 struct vm_area_struct *vma, *tail_vma = NULL;
148 loff_t l = *pos;
149
150 /* Clear the per syscall fields in priv */
151 priv->task = NULL;
152 priv->tail_vma = NULL;
153
154 /*
155 * We remember last_addr rather than next_addr to hit with
615d6e87 156 * vmacache most of the time. We have zero last_addr at
a6198797
MM
157 * the beginning and also after lseek. We will have -1 last_addr
158 * after the end of the vmas.
159 */
160
161 if (last_addr == -1UL)
162 return NULL;
163
164 priv->task = get_pid_task(priv->pid, PIDTYPE_PID);
165 if (!priv->task)
ec6fd8a4 166 return ERR_PTR(-ESRCH);
a6198797 167
e7dcd999 168 mm = mm_access(priv->task, PTRACE_MODE_READ);
ec6fd8a4
AV
169 if (!mm || IS_ERR(mm))
170 return mm;
00f89d21 171 down_read(&mm->mmap_sem);
a6198797 172
46c298cf 173 tail_vma = get_gate_vma(mm);
a6198797 174 priv->tail_vma = tail_vma;
9e781440 175 hold_task_mempolicy(priv);
a6198797
MM
176 /* Start with last addr hint */
177 vma = find_vma(mm, last_addr);
178 if (last_addr && vma) {
179 vma = vma->vm_next;
180 goto out;
181 }
182
183 /*
184 * Check the vma index is within the range and do
185 * sequential scan until m_index.
186 */
187 vma = NULL;
188 if ((unsigned long)l < mm->map_count) {
189 vma = mm->mmap;
190 while (l-- && vma)
191 vma = vma->vm_next;
192 goto out;
193 }
194
195 if (l != mm->map_count)
196 tail_vma = NULL; /* After gate vma */
197
198out:
199 if (vma)
200 return vma;
201
9e781440 202 release_task_mempolicy(priv);
a6198797
MM
203 /* End of vmas has been reached */
204 m->version = (tail_vma != NULL)? 0: -1UL;
205 up_read(&mm->mmap_sem);
206 mmput(mm);
207 return tail_vma;
208}
209
210static void *m_next(struct seq_file *m, void *v, loff_t *pos)
211{
212 struct proc_maps_private *priv = m->private;
213 struct vm_area_struct *vma = v;
214 struct vm_area_struct *tail_vma = priv->tail_vma;
215
216 (*pos)++;
217 if (vma && (vma != tail_vma) && vma->vm_next)
218 return vma->vm_next;
219 vma_stop(priv, vma);
220 return (vma != tail_vma)? tail_vma: NULL;
221}
222
223static void m_stop(struct seq_file *m, void *v)
224{
225 struct proc_maps_private *priv = m->private;
226 struct vm_area_struct *vma = v;
227
76597cd3
LT
228 if (!IS_ERR(vma))
229 vma_stop(priv, vma);
a6198797
MM
230 if (priv->task)
231 put_task_struct(priv->task);
232}
233
234static int do_maps_open(struct inode *inode, struct file *file,
03a44825 235 const struct seq_operations *ops)
a6198797
MM
236{
237 struct proc_maps_private *priv;
238 int ret = -ENOMEM;
239 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
240 if (priv) {
241 priv->pid = proc_pid(inode);
242 ret = seq_open(file, ops);
243 if (!ret) {
244 struct seq_file *m = file->private_data;
245 m->private = priv;
246 } else {
247 kfree(priv);
248 }
249 }
250 return ret;
251}
e070ad49 252
b7643757
SP
253static void
254show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
1da177e4 255{
e070ad49
ML
256 struct mm_struct *mm = vma->vm_mm;
257 struct file *file = vma->vm_file;
b7643757
SP
258 struct proc_maps_private *priv = m->private;
259 struct task_struct *task = priv->task;
ca16d140 260 vm_flags_t flags = vma->vm_flags;
1da177e4 261 unsigned long ino = 0;
6260a4b0 262 unsigned long long pgoff = 0;
a09a79f6 263 unsigned long start, end;
1da177e4 264 dev_t dev = 0;
b7643757 265 const char *name = NULL;
1da177e4
LT
266
267 if (file) {
496ad9aa 268 struct inode *inode = file_inode(vma->vm_file);
1da177e4
LT
269 dev = inode->i_sb->s_dev;
270 ino = inode->i_ino;
6260a4b0 271 pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
1da177e4
LT
272 }
273
d7824370
LT
274 /* We don't show the stack guard page in /proc/maps */
275 start = vma->vm_start;
a09a79f6
MP
276 if (stack_guard_page_start(vma, start))
277 start += PAGE_SIZE;
278 end = vma->vm_end;
279 if (stack_guard_page_end(vma, end))
280 end -= PAGE_SIZE;
d7824370 281
652586df
TH
282 seq_setwidth(m, 25 + sizeof(void *) * 6 - 1);
283 seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu ",
d7824370 284 start,
a09a79f6 285 end,
1da177e4
LT
286 flags & VM_READ ? 'r' : '-',
287 flags & VM_WRITE ? 'w' : '-',
288 flags & VM_EXEC ? 'x' : '-',
289 flags & VM_MAYSHARE ? 's' : 'p',
6260a4b0 290 pgoff,
652586df 291 MAJOR(dev), MINOR(dev), ino);
1da177e4
LT
292
293 /*
294 * Print the dentry name for named mappings, and a
295 * special [heap] marker for the heap:
296 */
e070ad49 297 if (file) {
652586df 298 seq_pad(m, ' ');
c32c2f63 299 seq_path(m, &file->f_path, "\n");
b7643757
SP
300 goto done;
301 }
302
78d683e8
AL
303 if (vma->vm_ops && vma->vm_ops->name) {
304 name = vma->vm_ops->name(vma);
305 if (name)
306 goto done;
307 }
308
b7643757
SP
309 name = arch_vma_name(vma);
310 if (!name) {
311 pid_t tid;
312
313 if (!mm) {
314 name = "[vdso]";
315 goto done;
316 }
317
318 if (vma->vm_start <= mm->brk &&
319 vma->vm_end >= mm->start_brk) {
320 name = "[heap]";
321 goto done;
322 }
323
324 tid = vm_is_stack(task, vma, is_pid);
325
326 if (tid != 0) {
327 /*
328 * Thread stack in /proc/PID/task/TID/maps or
329 * the main process stack.
330 */
331 if (!is_pid || (vma->vm_start <= mm->start_stack &&
332 vma->vm_end >= mm->start_stack)) {
333 name = "[stack]";
e6e5494c 334 } else {
b7643757 335 /* Thread stack in /proc/PID/maps */
652586df 336 seq_pad(m, ' ');
b7643757 337 seq_printf(m, "[stack:%d]", tid);
1da177e4 338 }
e6e5494c 339 }
b7643757
SP
340 }
341
342done:
343 if (name) {
652586df 344 seq_pad(m, ' ');
b7643757 345 seq_puts(m, name);
1da177e4
LT
346 }
347 seq_putc(m, '\n');
7c88db0c
JK
348}
349
b7643757 350static int show_map(struct seq_file *m, void *v, int is_pid)
7c88db0c
JK
351{
352 struct vm_area_struct *vma = v;
353 struct proc_maps_private *priv = m->private;
7c88db0c 354
b7643757 355 show_map_vma(m, vma, is_pid);
e070ad49 356
e070ad49 357 if (m->count < m->size) /* vma is copied successfully */
46c298cf 358 m->version = (vma != priv->tail_vma)
31db58b3 359 ? vma->vm_start : 0;
1da177e4
LT
360 return 0;
361}
362
b7643757
SP
363static int show_pid_map(struct seq_file *m, void *v)
364{
365 return show_map(m, v, 1);
366}
367
368static int show_tid_map(struct seq_file *m, void *v)
369{
370 return show_map(m, v, 0);
371}
372
03a44825 373static const struct seq_operations proc_pid_maps_op = {
a6198797
MM
374 .start = m_start,
375 .next = m_next,
376 .stop = m_stop,
b7643757
SP
377 .show = show_pid_map
378};
379
380static const struct seq_operations proc_tid_maps_op = {
381 .start = m_start,
382 .next = m_next,
383 .stop = m_stop,
384 .show = show_tid_map
a6198797
MM
385};
386
b7643757 387static int pid_maps_open(struct inode *inode, struct file *file)
a6198797
MM
388{
389 return do_maps_open(inode, file, &proc_pid_maps_op);
390}
391
b7643757
SP
392static int tid_maps_open(struct inode *inode, struct file *file)
393{
394 return do_maps_open(inode, file, &proc_tid_maps_op);
395}
396
397const struct file_operations proc_pid_maps_operations = {
398 .open = pid_maps_open,
399 .read = seq_read,
400 .llseek = seq_lseek,
401 .release = seq_release_private,
402};
403
404const struct file_operations proc_tid_maps_operations = {
405 .open = tid_maps_open,
a6198797
MM
406 .read = seq_read,
407 .llseek = seq_lseek,
408 .release = seq_release_private,
409};
410
411/*
412 * Proportional Set Size(PSS): my share of RSS.
413 *
414 * PSS of a process is the count of pages it has in memory, where each
415 * page is divided by the number of processes sharing it. So if a
416 * process has 1000 pages all to itself, and 1000 shared with one other
417 * process, its PSS will be 1500.
418 *
419 * To keep (accumulated) division errors low, we adopt a 64bit
420 * fixed-point pss counter to minimize division errors. So (pss >>
421 * PSS_SHIFT) would be the real byte count.
422 *
423 * A shift of 12 before division means (assuming 4K page size):
424 * - 1M 3-user-pages add up to 8KB errors;
425 * - supports mapcount up to 2^24, or 16M;
426 * - supports PSS up to 2^52 bytes, or 4PB.
427 */
428#define PSS_SHIFT 12
429
1e883281 430#ifdef CONFIG_PROC_PAGE_MONITOR
214e471f 431struct mem_size_stats {
a6198797
MM
432 struct vm_area_struct *vma;
433 unsigned long resident;
434 unsigned long shared_clean;
435 unsigned long shared_dirty;
436 unsigned long private_clean;
437 unsigned long private_dirty;
438 unsigned long referenced;
b40d4f84 439 unsigned long anonymous;
4031a219 440 unsigned long anonymous_thp;
214e471f 441 unsigned long swap;
bca15543 442 unsigned long nonlinear;
a6198797
MM
443 u64 pss;
444};
445
ae11c4d9
DH
446
447static void smaps_pte_entry(pte_t ptent, unsigned long addr,
3c9acc78 448 unsigned long ptent_size, struct mm_walk *walk)
ae11c4d9
DH
449{
450 struct mem_size_stats *mss = walk->private;
451 struct vm_area_struct *vma = mss->vma;
bca15543 452 pgoff_t pgoff = linear_page_index(vma, addr);
b1d4d9e0 453 struct page *page = NULL;
ae11c4d9
DH
454 int mapcount;
455
b1d4d9e0
KK
456 if (pte_present(ptent)) {
457 page = vm_normal_page(vma, addr, ptent);
458 } else if (is_swap_pte(ptent)) {
459 swp_entry_t swpent = pte_to_swp_entry(ptent);
ae11c4d9 460
b1d4d9e0
KK
461 if (!non_swap_entry(swpent))
462 mss->swap += ptent_size;
463 else if (is_migration_entry(swpent))
464 page = migration_entry_to_page(swpent);
bca15543
KK
465 } else if (pte_file(ptent)) {
466 if (pte_to_pgoff(ptent) != pgoff)
467 mss->nonlinear += ptent_size;
b1d4d9e0 468 }
ae11c4d9 469
ae11c4d9
DH
470 if (!page)
471 return;
472
473 if (PageAnon(page))
3c9acc78 474 mss->anonymous += ptent_size;
ae11c4d9 475
bca15543
KK
476 if (page->index != pgoff)
477 mss->nonlinear += ptent_size;
478
3c9acc78 479 mss->resident += ptent_size;
ae11c4d9
DH
480 /* Accumulate the size in pages that have been accessed. */
481 if (pte_young(ptent) || PageReferenced(page))
3c9acc78 482 mss->referenced += ptent_size;
ae11c4d9
DH
483 mapcount = page_mapcount(page);
484 if (mapcount >= 2) {
485 if (pte_dirty(ptent) || PageDirty(page))
3c9acc78 486 mss->shared_dirty += ptent_size;
ae11c4d9 487 else
3c9acc78
DH
488 mss->shared_clean += ptent_size;
489 mss->pss += (ptent_size << PSS_SHIFT) / mapcount;
ae11c4d9
DH
490 } else {
491 if (pte_dirty(ptent) || PageDirty(page))
3c9acc78 492 mss->private_dirty += ptent_size;
ae11c4d9 493 else
3c9acc78
DH
494 mss->private_clean += ptent_size;
495 mss->pss += (ptent_size << PSS_SHIFT);
ae11c4d9
DH
496 }
497}
498
b3ae5acb 499static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
2165009b 500 struct mm_walk *walk)
e070ad49 501{
2165009b 502 struct mem_size_stats *mss = walk->private;
b3ae5acb 503 struct vm_area_struct *vma = mss->vma;
ae11c4d9 504 pte_t *pte;
705e87c0 505 spinlock_t *ptl;
e070ad49 506
bf929152 507 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
025c5b24 508 smaps_pte_entry(*(pte_t *)pmd, addr, HPAGE_PMD_SIZE, walk);
bf929152 509 spin_unlock(ptl);
025c5b24
NH
510 mss->anonymous_thp += HPAGE_PMD_SIZE;
511 return 0;
22e057c5 512 }
1a5a9906
AA
513
514 if (pmd_trans_unstable(pmd))
515 return 0;
22e057c5
DH
516 /*
517 * The mmap_sem held all the way back in m_start() is what
518 * keeps khugepaged out of here and from collapsing things
519 * in here.
520 */
705e87c0 521 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
ae11c4d9 522 for (; addr != end; pte++, addr += PAGE_SIZE)
3c9acc78 523 smaps_pte_entry(*pte, addr, PAGE_SIZE, walk);
705e87c0
HD
524 pte_unmap_unlock(pte - 1, ptl);
525 cond_resched();
b3ae5acb 526 return 0;
e070ad49
ML
527}
528
834f82e2
CG
529static void show_smap_vma_flags(struct seq_file *m, struct vm_area_struct *vma)
530{
531 /*
532 * Don't forget to update Documentation/ on changes.
533 */
534 static const char mnemonics[BITS_PER_LONG][2] = {
535 /*
536 * In case if we meet a flag we don't know about.
537 */
538 [0 ... (BITS_PER_LONG-1)] = "??",
539
540 [ilog2(VM_READ)] = "rd",
541 [ilog2(VM_WRITE)] = "wr",
542 [ilog2(VM_EXEC)] = "ex",
543 [ilog2(VM_SHARED)] = "sh",
544 [ilog2(VM_MAYREAD)] = "mr",
545 [ilog2(VM_MAYWRITE)] = "mw",
546 [ilog2(VM_MAYEXEC)] = "me",
547 [ilog2(VM_MAYSHARE)] = "ms",
548 [ilog2(VM_GROWSDOWN)] = "gd",
549 [ilog2(VM_PFNMAP)] = "pf",
550 [ilog2(VM_DENYWRITE)] = "dw",
551 [ilog2(VM_LOCKED)] = "lo",
552 [ilog2(VM_IO)] = "io",
553 [ilog2(VM_SEQ_READ)] = "sr",
554 [ilog2(VM_RAND_READ)] = "rr",
555 [ilog2(VM_DONTCOPY)] = "dc",
556 [ilog2(VM_DONTEXPAND)] = "de",
557 [ilog2(VM_ACCOUNT)] = "ac",
558 [ilog2(VM_NORESERVE)] = "nr",
559 [ilog2(VM_HUGETLB)] = "ht",
560 [ilog2(VM_NONLINEAR)] = "nl",
561 [ilog2(VM_ARCH_1)] = "ar",
562 [ilog2(VM_DONTDUMP)] = "dd",
ec8e41ae
NH
563#ifdef CONFIG_MEM_SOFT_DIRTY
564 [ilog2(VM_SOFTDIRTY)] = "sd",
565#endif
834f82e2
CG
566 [ilog2(VM_MIXEDMAP)] = "mm",
567 [ilog2(VM_HUGEPAGE)] = "hg",
568 [ilog2(VM_NOHUGEPAGE)] = "nh",
569 [ilog2(VM_MERGEABLE)] = "mg",
570 };
571 size_t i;
572
573 seq_puts(m, "VmFlags: ");
574 for (i = 0; i < BITS_PER_LONG; i++) {
575 if (vma->vm_flags & (1UL << i)) {
576 seq_printf(m, "%c%c ",
577 mnemonics[i][0], mnemonics[i][1]);
578 }
579 }
580 seq_putc(m, '\n');
581}
582
b7643757 583static int show_smap(struct seq_file *m, void *v, int is_pid)
e070ad49 584{
7c88db0c 585 struct proc_maps_private *priv = m->private;
e070ad49 586 struct vm_area_struct *vma = v;
e070ad49 587 struct mem_size_stats mss;
2165009b
DH
588 struct mm_walk smaps_walk = {
589 .pmd_entry = smaps_pte_range,
590 .mm = vma->vm_mm,
591 .private = &mss,
592 };
e070ad49
ML
593
594 memset(&mss, 0, sizeof mss);
b3ae5acb 595 mss.vma = vma;
d82ef020 596 /* mmap_sem is held in m_start */
5ddfae16 597 if (vma->vm_mm && !is_vm_hugetlb_page(vma))
2165009b 598 walk_page_range(vma->vm_start, vma->vm_end, &smaps_walk);
4752c369 599
b7643757 600 show_map_vma(m, vma, is_pid);
4752c369
MM
601
602 seq_printf(m,
603 "Size: %8lu kB\n"
604 "Rss: %8lu kB\n"
605 "Pss: %8lu kB\n"
606 "Shared_Clean: %8lu kB\n"
607 "Shared_Dirty: %8lu kB\n"
608 "Private_Clean: %8lu kB\n"
609 "Private_Dirty: %8lu kB\n"
214e471f 610 "Referenced: %8lu kB\n"
b40d4f84 611 "Anonymous: %8lu kB\n"
4031a219 612 "AnonHugePages: %8lu kB\n"
08fba699 613 "Swap: %8lu kB\n"
3340289d 614 "KernelPageSize: %8lu kB\n"
2d90508f
NK
615 "MMUPageSize: %8lu kB\n"
616 "Locked: %8lu kB\n",
4752c369
MM
617 (vma->vm_end - vma->vm_start) >> 10,
618 mss.resident >> 10,
619 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)),
620 mss.shared_clean >> 10,
621 mss.shared_dirty >> 10,
622 mss.private_clean >> 10,
623 mss.private_dirty >> 10,
214e471f 624 mss.referenced >> 10,
b40d4f84 625 mss.anonymous >> 10,
4031a219 626 mss.anonymous_thp >> 10,
08fba699 627 mss.swap >> 10,
3340289d 628 vma_kernel_pagesize(vma) >> 10,
2d90508f
NK
629 vma_mmu_pagesize(vma) >> 10,
630 (vma->vm_flags & VM_LOCKED) ?
631 (unsigned long)(mss.pss >> (10 + PSS_SHIFT)) : 0);
4752c369 632
bca15543
KK
633 if (vma->vm_flags & VM_NONLINEAR)
634 seq_printf(m, "Nonlinear: %8lu kB\n",
635 mss.nonlinear >> 10);
636
834f82e2
CG
637 show_smap_vma_flags(m, vma);
638
7c88db0c 639 if (m->count < m->size) /* vma is copied successfully */
46c298cf 640 m->version = (vma != priv->tail_vma)
31db58b3 641 ? vma->vm_start : 0;
7c88db0c 642 return 0;
e070ad49
ML
643}
644
b7643757
SP
645static int show_pid_smap(struct seq_file *m, void *v)
646{
647 return show_smap(m, v, 1);
648}
649
650static int show_tid_smap(struct seq_file *m, void *v)
651{
652 return show_smap(m, v, 0);
653}
654
03a44825 655static const struct seq_operations proc_pid_smaps_op = {
a6198797
MM
656 .start = m_start,
657 .next = m_next,
658 .stop = m_stop,
b7643757
SP
659 .show = show_pid_smap
660};
661
662static const struct seq_operations proc_tid_smaps_op = {
663 .start = m_start,
664 .next = m_next,
665 .stop = m_stop,
666 .show = show_tid_smap
a6198797
MM
667};
668
b7643757 669static int pid_smaps_open(struct inode *inode, struct file *file)
a6198797
MM
670{
671 return do_maps_open(inode, file, &proc_pid_smaps_op);
672}
673
b7643757
SP
674static int tid_smaps_open(struct inode *inode, struct file *file)
675{
676 return do_maps_open(inode, file, &proc_tid_smaps_op);
677}
678
679const struct file_operations proc_pid_smaps_operations = {
680 .open = pid_smaps_open,
681 .read = seq_read,
682 .llseek = seq_lseek,
683 .release = seq_release_private,
684};
685
686const struct file_operations proc_tid_smaps_operations = {
687 .open = tid_smaps_open,
a6198797
MM
688 .read = seq_read,
689 .llseek = seq_lseek,
690 .release = seq_release_private,
691};
692
541c237c
PE
693/*
694 * We do not want to have constant page-shift bits sitting in
695 * pagemap entries and are about to reuse them some time soon.
696 *
697 * Here's the "migration strategy":
698 * 1. when the system boots these bits remain what they are,
699 * but a warning about future change is printed in log;
700 * 2. once anyone clears soft-dirty bits via clear_refs file,
701 * these flag is set to denote, that user is aware of the
702 * new API and those page-shift bits change their meaning.
703 * The respective warning is printed in dmesg;
704 * 3. In a couple of releases we will remove all the mentions
705 * of page-shift in pagemap entries.
706 */
707
708static bool soft_dirty_cleared __read_mostly;
709
040fa020
PE
710enum clear_refs_types {
711 CLEAR_REFS_ALL = 1,
712 CLEAR_REFS_ANON,
713 CLEAR_REFS_MAPPED,
0f8975ec 714 CLEAR_REFS_SOFT_DIRTY,
040fa020
PE
715 CLEAR_REFS_LAST,
716};
717
af9de7eb
PE
718struct clear_refs_private {
719 struct vm_area_struct *vma;
0f8975ec 720 enum clear_refs_types type;
af9de7eb
PE
721};
722
0f8975ec
PE
723static inline void clear_soft_dirty(struct vm_area_struct *vma,
724 unsigned long addr, pte_t *pte)
725{
726#ifdef CONFIG_MEM_SOFT_DIRTY
727 /*
728 * The soft-dirty tracker uses #PF-s to catch writes
729 * to pages, so write-protect the pte as well. See the
730 * Documentation/vm/soft-dirty.txt for full description
731 * of how soft-dirty works.
732 */
733 pte_t ptent = *pte;
179ef71c
CG
734
735 if (pte_present(ptent)) {
736 ptent = pte_wrprotect(ptent);
737 ptent = pte_clear_flags(ptent, _PAGE_SOFT_DIRTY);
738 } else if (is_swap_pte(ptent)) {
739 ptent = pte_swp_clear_soft_dirty(ptent);
41bb3476
CG
740 } else if (pte_file(ptent)) {
741 ptent = pte_file_clear_soft_dirty(ptent);
179ef71c
CG
742 }
743
0f8975ec
PE
744 set_pte_at(vma->vm_mm, addr, pte, ptent);
745#endif
746}
747
a6198797 748static int clear_refs_pte_range(pmd_t *pmd, unsigned long addr,
2165009b 749 unsigned long end, struct mm_walk *walk)
a6198797 750{
af9de7eb
PE
751 struct clear_refs_private *cp = walk->private;
752 struct vm_area_struct *vma = cp->vma;
a6198797
MM
753 pte_t *pte, ptent;
754 spinlock_t *ptl;
755 struct page *page;
756
e180377f 757 split_huge_page_pmd(vma, addr, pmd);
1a5a9906
AA
758 if (pmd_trans_unstable(pmd))
759 return 0;
03319327 760
a6198797
MM
761 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
762 for (; addr != end; pte++, addr += PAGE_SIZE) {
763 ptent = *pte;
a6198797 764
0f8975ec
PE
765 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
766 clear_soft_dirty(vma, addr, pte);
767 continue;
768 }
769
179ef71c
CG
770 if (!pte_present(ptent))
771 continue;
772
a6198797
MM
773 page = vm_normal_page(vma, addr, ptent);
774 if (!page)
775 continue;
776
777 /* Clear accessed and referenced bits. */
778 ptep_test_and_clear_young(vma, addr, pte);
779 ClearPageReferenced(page);
780 }
781 pte_unmap_unlock(pte - 1, ptl);
782 cond_resched();
783 return 0;
784}
785
f248dcb3
MM
786static ssize_t clear_refs_write(struct file *file, const char __user *buf,
787 size_t count, loff_t *ppos)
b813e931 788{
f248dcb3 789 struct task_struct *task;
fb92a4b0 790 char buffer[PROC_NUMBUF];
f248dcb3 791 struct mm_struct *mm;
b813e931 792 struct vm_area_struct *vma;
040fa020
PE
793 enum clear_refs_types type;
794 int itype;
0a8cb8e3 795 int rv;
b813e931 796
f248dcb3
MM
797 memset(buffer, 0, sizeof(buffer));
798 if (count > sizeof(buffer) - 1)
799 count = sizeof(buffer) - 1;
800 if (copy_from_user(buffer, buf, count))
801 return -EFAULT;
040fa020 802 rv = kstrtoint(strstrip(buffer), 10, &itype);
0a8cb8e3
AD
803 if (rv < 0)
804 return rv;
040fa020
PE
805 type = (enum clear_refs_types)itype;
806 if (type < CLEAR_REFS_ALL || type >= CLEAR_REFS_LAST)
f248dcb3 807 return -EINVAL;
541c237c
PE
808
809 if (type == CLEAR_REFS_SOFT_DIRTY) {
810 soft_dirty_cleared = true;
c86c97ff
CG
811 pr_warn_once("The pagemap bits 55-60 has changed their meaning!"
812 " See the linux/Documentation/vm/pagemap.txt for "
813 "details.\n");
541c237c
PE
814 }
815
496ad9aa 816 task = get_proc_task(file_inode(file));
f248dcb3
MM
817 if (!task)
818 return -ESRCH;
819 mm = get_task_mm(task);
820 if (mm) {
af9de7eb 821 struct clear_refs_private cp = {
0f8975ec 822 .type = type,
af9de7eb 823 };
20cbc972
AM
824 struct mm_walk clear_refs_walk = {
825 .pmd_entry = clear_refs_pte_range,
826 .mm = mm,
af9de7eb 827 .private = &cp,
20cbc972 828 };
f248dcb3 829 down_read(&mm->mmap_sem);
0f8975ec
PE
830 if (type == CLEAR_REFS_SOFT_DIRTY)
831 mmu_notifier_invalidate_range_start(mm, 0, -1);
2165009b 832 for (vma = mm->mmap; vma; vma = vma->vm_next) {
af9de7eb 833 cp.vma = vma;
398499d5
MB
834 if (is_vm_hugetlb_page(vma))
835 continue;
836 /*
837 * Writing 1 to /proc/pid/clear_refs affects all pages.
838 *
839 * Writing 2 to /proc/pid/clear_refs only affects
840 * Anonymous pages.
841 *
842 * Writing 3 to /proc/pid/clear_refs only affects file
843 * mapped pages.
c86c97ff
CG
844 *
845 * Writing 4 to /proc/pid/clear_refs affects all pages.
398499d5
MB
846 */
847 if (type == CLEAR_REFS_ANON && vma->vm_file)
848 continue;
849 if (type == CLEAR_REFS_MAPPED && !vma->vm_file)
850 continue;
c86c97ff
CG
851 if (type == CLEAR_REFS_SOFT_DIRTY) {
852 if (vma->vm_flags & VM_SOFTDIRTY)
853 vma->vm_flags &= ~VM_SOFTDIRTY;
854 }
398499d5
MB
855 walk_page_range(vma->vm_start, vma->vm_end,
856 &clear_refs_walk);
2165009b 857 }
0f8975ec
PE
858 if (type == CLEAR_REFS_SOFT_DIRTY)
859 mmu_notifier_invalidate_range_end(mm, 0, -1);
f248dcb3
MM
860 flush_tlb_mm(mm);
861 up_read(&mm->mmap_sem);
862 mmput(mm);
863 }
864 put_task_struct(task);
fb92a4b0
VL
865
866 return count;
b813e931
DR
867}
868
f248dcb3
MM
869const struct file_operations proc_clear_refs_operations = {
870 .write = clear_refs_write,
6038f373 871 .llseek = noop_llseek,
f248dcb3
MM
872};
873
092b50ba
NH
874typedef struct {
875 u64 pme;
876} pagemap_entry_t;
877
85863e47 878struct pagemapread {
8c829622 879 int pos, len; /* units: PM_ENTRY_BYTES, not bytes */
092b50ba 880 pagemap_entry_t *buffer;
2b0a9f01 881 bool v2;
85863e47
MM
882};
883
5aaabe83
NH
884#define PAGEMAP_WALK_SIZE (PMD_SIZE)
885#define PAGEMAP_WALK_MASK (PMD_MASK)
886
8c829622 887#define PM_ENTRY_BYTES sizeof(pagemap_entry_t)
f16278c6
HR
888#define PM_STATUS_BITS 3
889#define PM_STATUS_OFFSET (64 - PM_STATUS_BITS)
890#define PM_STATUS_MASK (((1LL << PM_STATUS_BITS) - 1) << PM_STATUS_OFFSET)
891#define PM_STATUS(nr) (((nr) << PM_STATUS_OFFSET) & PM_STATUS_MASK)
892#define PM_PSHIFT_BITS 6
893#define PM_PSHIFT_OFFSET (PM_STATUS_OFFSET - PM_PSHIFT_BITS)
894#define PM_PSHIFT_MASK (((1LL << PM_PSHIFT_BITS) - 1) << PM_PSHIFT_OFFSET)
2b0a9f01 895#define __PM_PSHIFT(x) (((u64) (x) << PM_PSHIFT_OFFSET) & PM_PSHIFT_MASK)
f16278c6
HR
896#define PM_PFRAME_MASK ((1LL << PM_PSHIFT_OFFSET) - 1)
897#define PM_PFRAME(x) ((x) & PM_PFRAME_MASK)
2b0a9f01
PE
898/* in "new" pagemap pshift bits are occupied with more status bits */
899#define PM_STATUS2(v2, x) (__PM_PSHIFT(v2 ? x : PAGE_SHIFT))
f16278c6 900
0f8975ec 901#define __PM_SOFT_DIRTY (1LL)
f16278c6
HR
902#define PM_PRESENT PM_STATUS(4LL)
903#define PM_SWAP PM_STATUS(2LL)
052fb0d6 904#define PM_FILE PM_STATUS(1LL)
2b0a9f01 905#define PM_NOT_PRESENT(v2) PM_STATUS2(v2, 0)
85863e47
MM
906#define PM_END_OF_BUFFER 1
907
092b50ba
NH
908static inline pagemap_entry_t make_pme(u64 val)
909{
910 return (pagemap_entry_t) { .pme = val };
911}
912
913static int add_to_pagemap(unsigned long addr, pagemap_entry_t *pme,
85863e47
MM
914 struct pagemapread *pm)
915{
092b50ba 916 pm->buffer[pm->pos++] = *pme;
d82ef020 917 if (pm->pos >= pm->len)
aae8679b 918 return PM_END_OF_BUFFER;
85863e47
MM
919 return 0;
920}
921
922static int pagemap_pte_hole(unsigned long start, unsigned long end,
2165009b 923 struct mm_walk *walk)
85863e47 924{
2165009b 925 struct pagemapread *pm = walk->private;
68b5a652 926 unsigned long addr = start;
85863e47 927 int err = 0;
092b50ba 928
68b5a652
PF
929 while (addr < end) {
930 struct vm_area_struct *vma = find_vma(walk->mm, addr);
931 pagemap_entry_t pme = make_pme(PM_NOT_PRESENT(pm->v2));
87e6d49a
PF
932 /* End of address space hole, which we mark as non-present. */
933 unsigned long hole_end;
68b5a652 934
87e6d49a
PF
935 if (vma)
936 hole_end = min(end, vma->vm_start);
937 else
938 hole_end = end;
939
940 for (; addr < hole_end; addr += PAGE_SIZE) {
941 err = add_to_pagemap(addr, &pme, pm);
942 if (err)
943 goto out;
68b5a652
PF
944 }
945
87e6d49a
PF
946 if (!vma)
947 break;
948
949 /* Addresses in the VMA. */
950 if (vma->vm_flags & VM_SOFTDIRTY)
951 pme.pme |= PM_STATUS2(pm->v2, __PM_SOFT_DIRTY);
952 for (; addr < min(end, vma->vm_end); addr += PAGE_SIZE) {
68b5a652
PF
953 err = add_to_pagemap(addr, &pme, pm);
954 if (err)
955 goto out;
956 }
85863e47 957 }
68b5a652 958out:
85863e47
MM
959 return err;
960}
961
2b0a9f01 962static void pte_to_pagemap_entry(pagemap_entry_t *pme, struct pagemapread *pm,
052fb0d6 963 struct vm_area_struct *vma, unsigned long addr, pte_t pte)
85863e47 964{
052fb0d6
KK
965 u64 frame, flags;
966 struct page *page = NULL;
0f8975ec 967 int flags2 = 0;
85863e47 968
052fb0d6
KK
969 if (pte_present(pte)) {
970 frame = pte_pfn(pte);
971 flags = PM_PRESENT;
972 page = vm_normal_page(vma, addr, pte);
e9cdd6e7
CG
973 if (pte_soft_dirty(pte))
974 flags2 |= __PM_SOFT_DIRTY;
052fb0d6 975 } else if (is_swap_pte(pte)) {
179ef71c
CG
976 swp_entry_t entry;
977 if (pte_swp_soft_dirty(pte))
978 flags2 |= __PM_SOFT_DIRTY;
979 entry = pte_to_swp_entry(pte);
052fb0d6
KK
980 frame = swp_type(entry) |
981 (swp_offset(entry) << MAX_SWAPFILES_SHIFT);
982 flags = PM_SWAP;
983 if (is_migration_entry(entry))
984 page = migration_entry_to_page(entry);
985 } else {
d9104d1c
CG
986 if (vma->vm_flags & VM_SOFTDIRTY)
987 flags2 |= __PM_SOFT_DIRTY;
988 *pme = make_pme(PM_NOT_PRESENT(pm->v2) | PM_STATUS2(pm->v2, flags2));
052fb0d6
KK
989 return;
990 }
991
992 if (page && !PageAnon(page))
993 flags |= PM_FILE;
e9cdd6e7 994 if ((vma->vm_flags & VM_SOFTDIRTY))
0f8975ec 995 flags2 |= __PM_SOFT_DIRTY;
052fb0d6 996
0f8975ec 997 *pme = make_pme(PM_PFRAME(frame) | PM_STATUS2(pm->v2, flags2) | flags);
bcf8039e
DH
998}
999
5aaabe83 1000#ifdef CONFIG_TRANSPARENT_HUGEPAGE
2b0a9f01 1001static void thp_pmd_to_pagemap_entry(pagemap_entry_t *pme, struct pagemapread *pm,
0f8975ec 1002 pmd_t pmd, int offset, int pmd_flags2)
5aaabe83 1003{
5aaabe83
NH
1004 /*
1005 * Currently pmd for thp is always present because thp can not be
1006 * swapped-out, migrated, or HWPOISONed (split in such cases instead.)
1007 * This if-check is just to prepare for future implementation.
1008 */
1009 if (pmd_present(pmd))
092b50ba 1010 *pme = make_pme(PM_PFRAME(pmd_pfn(pmd) + offset)
0f8975ec 1011 | PM_STATUS2(pm->v2, pmd_flags2) | PM_PRESENT);
16fbdce6 1012 else
d9104d1c 1013 *pme = make_pme(PM_NOT_PRESENT(pm->v2) | PM_STATUS2(pm->v2, pmd_flags2));
5aaabe83
NH
1014}
1015#else
2b0a9f01 1016static inline void thp_pmd_to_pagemap_entry(pagemap_entry_t *pme, struct pagemapread *pm,
0f8975ec 1017 pmd_t pmd, int offset, int pmd_flags2)
5aaabe83 1018{
5aaabe83
NH
1019}
1020#endif
1021
85863e47 1022static int pagemap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
2165009b 1023 struct mm_walk *walk)
85863e47 1024{
bcf8039e 1025 struct vm_area_struct *vma;
2165009b 1026 struct pagemapread *pm = walk->private;
bf929152 1027 spinlock_t *ptl;
85863e47
MM
1028 pte_t *pte;
1029 int err = 0;
2b0a9f01 1030 pagemap_entry_t pme = make_pme(PM_NOT_PRESENT(pm->v2));
85863e47 1031
bcf8039e
DH
1032 /* find the first VMA at or above 'addr' */
1033 vma = find_vma(walk->mm, addr);
bf929152 1034 if (vma && pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
0f8975ec
PE
1035 int pmd_flags2;
1036
d9104d1c
CG
1037 if ((vma->vm_flags & VM_SOFTDIRTY) || pmd_soft_dirty(*pmd))
1038 pmd_flags2 = __PM_SOFT_DIRTY;
1039 else
1040 pmd_flags2 = 0;
1041
025c5b24
NH
1042 for (; addr != end; addr += PAGE_SIZE) {
1043 unsigned long offset;
1044
1045 offset = (addr & ~PAGEMAP_WALK_MASK) >>
1046 PAGE_SHIFT;
0f8975ec 1047 thp_pmd_to_pagemap_entry(&pme, pm, *pmd, offset, pmd_flags2);
092b50ba 1048 err = add_to_pagemap(addr, &pme, pm);
025c5b24
NH
1049 if (err)
1050 break;
5aaabe83 1051 }
bf929152 1052 spin_unlock(ptl);
025c5b24 1053 return err;
5aaabe83
NH
1054 }
1055
45f83cef
AA
1056 if (pmd_trans_unstable(pmd))
1057 return 0;
85863e47 1058 for (; addr != end; addr += PAGE_SIZE) {
d9104d1c 1059 int flags2;
bcf8039e
DH
1060
1061 /* check to see if we've left 'vma' behind
1062 * and need a new, higher one */
16fbdce6 1063 if (vma && (addr >= vma->vm_end)) {
bcf8039e 1064 vma = find_vma(walk->mm, addr);
d9104d1c
CG
1065 if (vma && (vma->vm_flags & VM_SOFTDIRTY))
1066 flags2 = __PM_SOFT_DIRTY;
1067 else
1068 flags2 = 0;
1069 pme = make_pme(PM_NOT_PRESENT(pm->v2) | PM_STATUS2(pm->v2, flags2));
16fbdce6 1070 }
bcf8039e
DH
1071
1072 /* check that 'vma' actually covers this address,
1073 * and that it isn't a huge page vma */
1074 if (vma && (vma->vm_start <= addr) &&
1075 !is_vm_hugetlb_page(vma)) {
1076 pte = pte_offset_map(pmd, addr);
2b0a9f01 1077 pte_to_pagemap_entry(&pme, pm, vma, addr, *pte);
bcf8039e
DH
1078 /* unmap before userspace copy */
1079 pte_unmap(pte);
1080 }
092b50ba 1081 err = add_to_pagemap(addr, &pme, pm);
85863e47
MM
1082 if (err)
1083 return err;
1084 }
1085
1086 cond_resched();
1087
1088 return err;
1089}
1090
1a5cb814 1091#ifdef CONFIG_HUGETLB_PAGE
2b0a9f01 1092static void huge_pte_to_pagemap_entry(pagemap_entry_t *pme, struct pagemapread *pm,
d9104d1c 1093 pte_t pte, int offset, int flags2)
5dc37642 1094{
5dc37642 1095 if (pte_present(pte))
d9104d1c
CG
1096 *pme = make_pme(PM_PFRAME(pte_pfn(pte) + offset) |
1097 PM_STATUS2(pm->v2, flags2) |
1098 PM_PRESENT);
16fbdce6 1099 else
d9104d1c
CG
1100 *pme = make_pme(PM_NOT_PRESENT(pm->v2) |
1101 PM_STATUS2(pm->v2, flags2));
5dc37642
NH
1102}
1103
116354d1
NH
1104/* This function walks within one hugetlb entry in the single call */
1105static int pagemap_hugetlb_range(pte_t *pte, unsigned long hmask,
1106 unsigned long addr, unsigned long end,
1107 struct mm_walk *walk)
5dc37642 1108{
5dc37642 1109 struct pagemapread *pm = walk->private;
d9104d1c 1110 struct vm_area_struct *vma;
5dc37642 1111 int err = 0;
d9104d1c 1112 int flags2;
16fbdce6 1113 pagemap_entry_t pme;
5dc37642 1114
d9104d1c
CG
1115 vma = find_vma(walk->mm, addr);
1116 WARN_ON_ONCE(!vma);
1117
1118 if (vma && (vma->vm_flags & VM_SOFTDIRTY))
1119 flags2 = __PM_SOFT_DIRTY;
1120 else
1121 flags2 = 0;
1122
5dc37642 1123 for (; addr != end; addr += PAGE_SIZE) {
116354d1 1124 int offset = (addr & ~hmask) >> PAGE_SHIFT;
d9104d1c 1125 huge_pte_to_pagemap_entry(&pme, pm, *pte, offset, flags2);
092b50ba 1126 err = add_to_pagemap(addr, &pme, pm);
5dc37642
NH
1127 if (err)
1128 return err;
1129 }
1130
1131 cond_resched();
1132
1133 return err;
1134}
1a5cb814 1135#endif /* HUGETLB_PAGE */
5dc37642 1136
85863e47
MM
1137/*
1138 * /proc/pid/pagemap - an array mapping virtual pages to pfns
1139 *
f16278c6
HR
1140 * For each page in the address space, this file contains one 64-bit entry
1141 * consisting of the following:
1142 *
052fb0d6 1143 * Bits 0-54 page frame number (PFN) if present
f16278c6 1144 * Bits 0-4 swap type if swapped
052fb0d6 1145 * Bits 5-54 swap offset if swapped
f16278c6 1146 * Bits 55-60 page shift (page size = 1<<page shift)
052fb0d6 1147 * Bit 61 page is file-page or shared-anon
f16278c6
HR
1148 * Bit 62 page swapped
1149 * Bit 63 page present
1150 *
1151 * If the page is not present but in swap, then the PFN contains an
1152 * encoding of the swap file number and the page's offset into the
1153 * swap. Unmapped pages return a null PFN. This allows determining
85863e47
MM
1154 * precisely which pages are mapped (or in swap) and comparing mapped
1155 * pages between processes.
1156 *
1157 * Efficient users of this interface will use /proc/pid/maps to
1158 * determine which areas of memory are actually mapped and llseek to
1159 * skip over unmapped regions.
1160 */
1161static ssize_t pagemap_read(struct file *file, char __user *buf,
1162 size_t count, loff_t *ppos)
1163{
496ad9aa 1164 struct task_struct *task = get_proc_task(file_inode(file));
85863e47
MM
1165 struct mm_struct *mm;
1166 struct pagemapread pm;
85863e47 1167 int ret = -ESRCH;
ee1e6ab6 1168 struct mm_walk pagemap_walk = {};
5d7e0d2b
AM
1169 unsigned long src;
1170 unsigned long svpfn;
1171 unsigned long start_vaddr;
1172 unsigned long end_vaddr;
d82ef020 1173 int copied = 0;
85863e47
MM
1174
1175 if (!task)
1176 goto out;
1177
85863e47
MM
1178 ret = -EINVAL;
1179 /* file position must be aligned */
aae8679b 1180 if ((*ppos % PM_ENTRY_BYTES) || (count % PM_ENTRY_BYTES))
fb39380b 1181 goto out_task;
85863e47
MM
1182
1183 ret = 0;
08161786
VM
1184 if (!count)
1185 goto out_task;
1186
541c237c 1187 pm.v2 = soft_dirty_cleared;
8c829622 1188 pm.len = (PAGEMAP_WALK_SIZE >> PAGE_SHIFT);
1189 pm.buffer = kmalloc(pm.len * PM_ENTRY_BYTES, GFP_TEMPORARY);
5d7e0d2b 1190 ret = -ENOMEM;
d82ef020 1191 if (!pm.buffer)
98bc93e5
KM
1192 goto out_task;
1193
e7dcd999 1194 mm = mm_access(task, PTRACE_MODE_READ);
98bc93e5
KM
1195 ret = PTR_ERR(mm);
1196 if (!mm || IS_ERR(mm))
1197 goto out_free;
85863e47 1198
5d7e0d2b
AM
1199 pagemap_walk.pmd_entry = pagemap_pte_range;
1200 pagemap_walk.pte_hole = pagemap_pte_hole;
1a5cb814 1201#ifdef CONFIG_HUGETLB_PAGE
5dc37642 1202 pagemap_walk.hugetlb_entry = pagemap_hugetlb_range;
1a5cb814 1203#endif
5d7e0d2b
AM
1204 pagemap_walk.mm = mm;
1205 pagemap_walk.private = &pm;
1206
1207 src = *ppos;
1208 svpfn = src / PM_ENTRY_BYTES;
1209 start_vaddr = svpfn << PAGE_SHIFT;
1210 end_vaddr = TASK_SIZE_OF(task);
1211
1212 /* watch out for wraparound */
1213 if (svpfn > TASK_SIZE_OF(task) >> PAGE_SHIFT)
1214 start_vaddr = end_vaddr;
1215
1216 /*
1217 * The odds are that this will stop walking way
1218 * before end_vaddr, because the length of the
1219 * user buffer is tracked in "pm", and the walk
1220 * will stop when we hit the end of the buffer.
1221 */
d82ef020
KH
1222 ret = 0;
1223 while (count && (start_vaddr < end_vaddr)) {
1224 int len;
1225 unsigned long end;
1226
1227 pm.pos = 0;
ea251c1d 1228 end = (start_vaddr + PAGEMAP_WALK_SIZE) & PAGEMAP_WALK_MASK;
d82ef020
KH
1229 /* overflow ? */
1230 if (end < start_vaddr || end > end_vaddr)
1231 end = end_vaddr;
1232 down_read(&mm->mmap_sem);
1233 ret = walk_page_range(start_vaddr, end, &pagemap_walk);
1234 up_read(&mm->mmap_sem);
1235 start_vaddr = end;
1236
1237 len = min(count, PM_ENTRY_BYTES * pm.pos);
309361e0 1238 if (copy_to_user(buf, pm.buffer, len)) {
d82ef020 1239 ret = -EFAULT;
98bc93e5 1240 goto out_mm;
d82ef020
KH
1241 }
1242 copied += len;
1243 buf += len;
1244 count -= len;
85863e47 1245 }
d82ef020
KH
1246 *ppos += copied;
1247 if (!ret || ret == PM_END_OF_BUFFER)
1248 ret = copied;
1249
fb39380b
MT
1250out_mm:
1251 mmput(mm);
98bc93e5
KM
1252out_free:
1253 kfree(pm.buffer);
85863e47
MM
1254out_task:
1255 put_task_struct(task);
1256out:
1257 return ret;
1258}
1259
541c237c
PE
1260static int pagemap_open(struct inode *inode, struct file *file)
1261{
1262 pr_warn_once("Bits 55-60 of /proc/PID/pagemap entries are about "
1263 "to stop being page-shift some time soon. See the "
1264 "linux/Documentation/vm/pagemap.txt for details.\n");
1265 return 0;
1266}
1267
85863e47
MM
1268const struct file_operations proc_pagemap_operations = {
1269 .llseek = mem_lseek, /* borrow this */
1270 .read = pagemap_read,
541c237c 1271 .open = pagemap_open,
85863e47 1272};
1e883281 1273#endif /* CONFIG_PROC_PAGE_MONITOR */
85863e47 1274
6e21c8f1 1275#ifdef CONFIG_NUMA
6e21c8f1 1276
f69ff943
SW
1277struct numa_maps {
1278 struct vm_area_struct *vma;
1279 unsigned long pages;
1280 unsigned long anon;
1281 unsigned long active;
1282 unsigned long writeback;
1283 unsigned long mapcount_max;
1284 unsigned long dirty;
1285 unsigned long swapcache;
1286 unsigned long node[MAX_NUMNODES];
1287};
1288
5b52fc89
SW
1289struct numa_maps_private {
1290 struct proc_maps_private proc_maps;
1291 struct numa_maps md;
1292};
1293
eb4866d0
DH
1294static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty,
1295 unsigned long nr_pages)
f69ff943
SW
1296{
1297 int count = page_mapcount(page);
1298
eb4866d0 1299 md->pages += nr_pages;
f69ff943 1300 if (pte_dirty || PageDirty(page))
eb4866d0 1301 md->dirty += nr_pages;
f69ff943
SW
1302
1303 if (PageSwapCache(page))
eb4866d0 1304 md->swapcache += nr_pages;
f69ff943
SW
1305
1306 if (PageActive(page) || PageUnevictable(page))
eb4866d0 1307 md->active += nr_pages;
f69ff943
SW
1308
1309 if (PageWriteback(page))
eb4866d0 1310 md->writeback += nr_pages;
f69ff943
SW
1311
1312 if (PageAnon(page))
eb4866d0 1313 md->anon += nr_pages;
f69ff943
SW
1314
1315 if (count > md->mapcount_max)
1316 md->mapcount_max = count;
1317
eb4866d0 1318 md->node[page_to_nid(page)] += nr_pages;
f69ff943
SW
1319}
1320
3200a8aa
DH
1321static struct page *can_gather_numa_stats(pte_t pte, struct vm_area_struct *vma,
1322 unsigned long addr)
1323{
1324 struct page *page;
1325 int nid;
1326
1327 if (!pte_present(pte))
1328 return NULL;
1329
1330 page = vm_normal_page(vma, addr, pte);
1331 if (!page)
1332 return NULL;
1333
1334 if (PageReserved(page))
1335 return NULL;
1336
1337 nid = page_to_nid(page);
4ff1b2c2 1338 if (!node_isset(nid, node_states[N_MEMORY]))
3200a8aa
DH
1339 return NULL;
1340
1341 return page;
1342}
1343
f69ff943
SW
1344static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
1345 unsigned long end, struct mm_walk *walk)
1346{
1347 struct numa_maps *md;
1348 spinlock_t *ptl;
1349 pte_t *orig_pte;
1350 pte_t *pte;
1351
1352 md = walk->private;
025c5b24 1353
bf929152 1354 if (pmd_trans_huge_lock(pmd, md->vma, &ptl) == 1) {
025c5b24
NH
1355 pte_t huge_pte = *(pte_t *)pmd;
1356 struct page *page;
1357
1358 page = can_gather_numa_stats(huge_pte, md->vma, addr);
1359 if (page)
1360 gather_stats(page, md, pte_dirty(huge_pte),
1361 HPAGE_PMD_SIZE/PAGE_SIZE);
bf929152 1362 spin_unlock(ptl);
025c5b24 1363 return 0;
32ef4384
DH
1364 }
1365
1a5a9906
AA
1366 if (pmd_trans_unstable(pmd))
1367 return 0;
f69ff943
SW
1368 orig_pte = pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
1369 do {
3200a8aa 1370 struct page *page = can_gather_numa_stats(*pte, md->vma, addr);
f69ff943
SW
1371 if (!page)
1372 continue;
eb4866d0 1373 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1374
1375 } while (pte++, addr += PAGE_SIZE, addr != end);
1376 pte_unmap_unlock(orig_pte, ptl);
1377 return 0;
1378}
1379#ifdef CONFIG_HUGETLB_PAGE
1380static int gather_hugetbl_stats(pte_t *pte, unsigned long hmask,
1381 unsigned long addr, unsigned long end, struct mm_walk *walk)
1382{
1383 struct numa_maps *md;
1384 struct page *page;
1385
d4c54919 1386 if (!pte_present(*pte))
f69ff943
SW
1387 return 0;
1388
1389 page = pte_page(*pte);
1390 if (!page)
1391 return 0;
1392
1393 md = walk->private;
eb4866d0 1394 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1395 return 0;
1396}
1397
1398#else
1399static int gather_hugetbl_stats(pte_t *pte, unsigned long hmask,
1400 unsigned long addr, unsigned long end, struct mm_walk *walk)
1401{
1402 return 0;
1403}
1404#endif
1405
1406/*
1407 * Display pages allocated per node and memory policy via /proc.
1408 */
b7643757 1409static int show_numa_map(struct seq_file *m, void *v, int is_pid)
f69ff943 1410{
5b52fc89
SW
1411 struct numa_maps_private *numa_priv = m->private;
1412 struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
f69ff943 1413 struct vm_area_struct *vma = v;
5b52fc89 1414 struct numa_maps *md = &numa_priv->md;
f69ff943 1415 struct file *file = vma->vm_file;
32f8516a 1416 struct task_struct *task = proc_priv->task;
f69ff943
SW
1417 struct mm_struct *mm = vma->vm_mm;
1418 struct mm_walk walk = {};
1419 struct mempolicy *pol;
948927ee
DR
1420 char buffer[64];
1421 int nid;
f69ff943
SW
1422
1423 if (!mm)
1424 return 0;
1425
5b52fc89
SW
1426 /* Ensure we start with an empty set of numa_maps statistics. */
1427 memset(md, 0, sizeof(*md));
f69ff943
SW
1428
1429 md->vma = vma;
1430
1431 walk.hugetlb_entry = gather_hugetbl_stats;
1432 walk.pmd_entry = gather_pte_stats;
1433 walk.private = md;
1434 walk.mm = mm;
1435
32f8516a 1436 pol = get_vma_policy(task, vma, vma->vm_start);
948927ee 1437 mpol_to_str(buffer, sizeof(buffer), pol);
f69ff943
SW
1438 mpol_cond_put(pol);
1439
1440 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1441
1442 if (file) {
17c2b4ee 1443 seq_puts(m, " file=");
f69ff943
SW
1444 seq_path(m, &file->f_path, "\n\t= ");
1445 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
17c2b4ee 1446 seq_puts(m, " heap");
b7643757 1447 } else {
32f8516a 1448 pid_t tid = vm_is_stack(task, vma, is_pid);
b7643757
SP
1449 if (tid != 0) {
1450 /*
1451 * Thread stack in /proc/PID/task/TID/maps or
1452 * the main process stack.
1453 */
1454 if (!is_pid || (vma->vm_start <= mm->start_stack &&
1455 vma->vm_end >= mm->start_stack))
17c2b4ee 1456 seq_puts(m, " stack");
b7643757
SP
1457 else
1458 seq_printf(m, " stack:%d", tid);
1459 }
f69ff943
SW
1460 }
1461
fc360bd9 1462 if (is_vm_hugetlb_page(vma))
17c2b4ee 1463 seq_puts(m, " huge");
fc360bd9 1464
f69ff943
SW
1465 walk_page_range(vma->vm_start, vma->vm_end, &walk);
1466
1467 if (!md->pages)
1468 goto out;
1469
1470 if (md->anon)
1471 seq_printf(m, " anon=%lu", md->anon);
1472
1473 if (md->dirty)
1474 seq_printf(m, " dirty=%lu", md->dirty);
1475
1476 if (md->pages != md->anon && md->pages != md->dirty)
1477 seq_printf(m, " mapped=%lu", md->pages);
1478
1479 if (md->mapcount_max > 1)
1480 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1481
1482 if (md->swapcache)
1483 seq_printf(m, " swapcache=%lu", md->swapcache);
1484
1485 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1486 seq_printf(m, " active=%lu", md->active);
1487
1488 if (md->writeback)
1489 seq_printf(m, " writeback=%lu", md->writeback);
1490
948927ee
DR
1491 for_each_node_state(nid, N_MEMORY)
1492 if (md->node[nid])
1493 seq_printf(m, " N%d=%lu", nid, md->node[nid]);
f69ff943
SW
1494out:
1495 seq_putc(m, '\n');
f69ff943
SW
1496
1497 if (m->count < m->size)
5b52fc89 1498 m->version = (vma != proc_priv->tail_vma) ? vma->vm_start : 0;
f69ff943
SW
1499 return 0;
1500}
5b52fc89 1501
b7643757
SP
1502static int show_pid_numa_map(struct seq_file *m, void *v)
1503{
1504 return show_numa_map(m, v, 1);
1505}
1506
1507static int show_tid_numa_map(struct seq_file *m, void *v)
1508{
1509 return show_numa_map(m, v, 0);
1510}
1511
03a44825 1512static const struct seq_operations proc_pid_numa_maps_op = {
b7643757
SP
1513 .start = m_start,
1514 .next = m_next,
1515 .stop = m_stop,
1516 .show = show_pid_numa_map,
6e21c8f1 1517};
662795de 1518
b7643757
SP
1519static const struct seq_operations proc_tid_numa_maps_op = {
1520 .start = m_start,
1521 .next = m_next,
1522 .stop = m_stop,
1523 .show = show_tid_numa_map,
1524};
1525
1526static int numa_maps_open(struct inode *inode, struct file *file,
1527 const struct seq_operations *ops)
662795de 1528{
5b52fc89
SW
1529 struct numa_maps_private *priv;
1530 int ret = -ENOMEM;
1531 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
1532 if (priv) {
1533 priv->proc_maps.pid = proc_pid(inode);
b7643757 1534 ret = seq_open(file, ops);
5b52fc89
SW
1535 if (!ret) {
1536 struct seq_file *m = file->private_data;
1537 m->private = priv;
1538 } else {
1539 kfree(priv);
1540 }
1541 }
1542 return ret;
662795de
EB
1543}
1544
b7643757
SP
1545static int pid_numa_maps_open(struct inode *inode, struct file *file)
1546{
1547 return numa_maps_open(inode, file, &proc_pid_numa_maps_op);
1548}
1549
1550static int tid_numa_maps_open(struct inode *inode, struct file *file)
1551{
1552 return numa_maps_open(inode, file, &proc_tid_numa_maps_op);
1553}
1554
1555const struct file_operations proc_pid_numa_maps_operations = {
1556 .open = pid_numa_maps_open,
1557 .read = seq_read,
1558 .llseek = seq_lseek,
1559 .release = seq_release_private,
1560};
1561
1562const struct file_operations proc_tid_numa_maps_operations = {
1563 .open = tid_numa_maps_open,
662795de
EB
1564 .read = seq_read,
1565 .llseek = seq_lseek,
99f89551 1566 .release = seq_release_private,
662795de 1567};
f69ff943 1568#endif /* CONFIG_NUMA */
This page took 1.034275 seconds and 5 git commands to generate.