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