mm: hugetlb: proc: add HugetlbPages field to /proc/PID/status
[linux-2.6-block.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)) {
795 ptent = pte_wrprotect(ptent);
a7b76174 796 ptent = pte_clear_soft_dirty(ptent);
179ef71c
CG
797 } else if (is_swap_pte(ptent)) {
798 ptent = pte_swp_clear_soft_dirty(ptent);
799 }
800
0f8975ec 801 set_pte_at(vma->vm_mm, addr, pte, ptent);
0f8975ec
PE
802}
803
7d5b3bfa
KS
804static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
805 unsigned long addr, pmd_t *pmdp)
806{
807 pmd_t pmd = *pmdp;
808
809 pmd = pmd_wrprotect(pmd);
a7b76174 810 pmd = pmd_clear_soft_dirty(pmd);
7d5b3bfa
KS
811
812 if (vma->vm_flags & VM_SOFTDIRTY)
813 vma->vm_flags &= ~VM_SOFTDIRTY;
814
815 set_pmd_at(vma->vm_mm, addr, pmdp, pmd);
816}
817
818#else
819
820static inline void clear_soft_dirty(struct vm_area_struct *vma,
821 unsigned long addr, pte_t *pte)
822{
823}
824
825static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
826 unsigned long addr, pmd_t *pmdp)
827{
828}
829#endif
830
a6198797 831static int clear_refs_pte_range(pmd_t *pmd, unsigned long addr,
2165009b 832 unsigned long end, struct mm_walk *walk)
a6198797 833{
af9de7eb 834 struct clear_refs_private *cp = walk->private;
5c64f52a 835 struct vm_area_struct *vma = walk->vma;
a6198797
MM
836 pte_t *pte, ptent;
837 spinlock_t *ptl;
838 struct page *page;
839
7d5b3bfa
KS
840 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
841 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
842 clear_soft_dirty_pmd(vma, addr, pmd);
843 goto out;
844 }
845
846 page = pmd_page(*pmd);
847
848 /* Clear accessed and referenced bits. */
849 pmdp_test_and_clear_young(vma, addr, pmd);
33c3fc71 850 test_and_clear_page_young(page);
7d5b3bfa
KS
851 ClearPageReferenced(page);
852out:
853 spin_unlock(ptl);
854 return 0;
855 }
856
1a5a9906
AA
857 if (pmd_trans_unstable(pmd))
858 return 0;
03319327 859
a6198797
MM
860 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
861 for (; addr != end; pte++, addr += PAGE_SIZE) {
862 ptent = *pte;
a6198797 863
0f8975ec
PE
864 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
865 clear_soft_dirty(vma, addr, pte);
866 continue;
867 }
868
179ef71c
CG
869 if (!pte_present(ptent))
870 continue;
871
a6198797
MM
872 page = vm_normal_page(vma, addr, ptent);
873 if (!page)
874 continue;
875
876 /* Clear accessed and referenced bits. */
877 ptep_test_and_clear_young(vma, addr, pte);
33c3fc71 878 test_and_clear_page_young(page);
a6198797
MM
879 ClearPageReferenced(page);
880 }
881 pte_unmap_unlock(pte - 1, ptl);
882 cond_resched();
883 return 0;
884}
885
5c64f52a
NH
886static int clear_refs_test_walk(unsigned long start, unsigned long end,
887 struct mm_walk *walk)
888{
889 struct clear_refs_private *cp = walk->private;
890 struct vm_area_struct *vma = walk->vma;
891
48684a65
NH
892 if (vma->vm_flags & VM_PFNMAP)
893 return 1;
894
5c64f52a
NH
895 /*
896 * Writing 1 to /proc/pid/clear_refs affects all pages.
897 * Writing 2 to /proc/pid/clear_refs only affects anonymous pages.
898 * Writing 3 to /proc/pid/clear_refs only affects file mapped pages.
899 * Writing 4 to /proc/pid/clear_refs affects all pages.
900 */
901 if (cp->type == CLEAR_REFS_ANON && vma->vm_file)
902 return 1;
903 if (cp->type == CLEAR_REFS_MAPPED && !vma->vm_file)
904 return 1;
905 return 0;
906}
907
f248dcb3
MM
908static ssize_t clear_refs_write(struct file *file, const char __user *buf,
909 size_t count, loff_t *ppos)
b813e931 910{
f248dcb3 911 struct task_struct *task;
fb92a4b0 912 char buffer[PROC_NUMBUF];
f248dcb3 913 struct mm_struct *mm;
b813e931 914 struct vm_area_struct *vma;
040fa020
PE
915 enum clear_refs_types type;
916 int itype;
0a8cb8e3 917 int rv;
b813e931 918
f248dcb3
MM
919 memset(buffer, 0, sizeof(buffer));
920 if (count > sizeof(buffer) - 1)
921 count = sizeof(buffer) - 1;
922 if (copy_from_user(buffer, buf, count))
923 return -EFAULT;
040fa020 924 rv = kstrtoint(strstrip(buffer), 10, &itype);
0a8cb8e3
AD
925 if (rv < 0)
926 return rv;
040fa020
PE
927 type = (enum clear_refs_types)itype;
928 if (type < CLEAR_REFS_ALL || type >= CLEAR_REFS_LAST)
f248dcb3 929 return -EINVAL;
541c237c 930
496ad9aa 931 task = get_proc_task(file_inode(file));
f248dcb3
MM
932 if (!task)
933 return -ESRCH;
934 mm = get_task_mm(task);
935 if (mm) {
af9de7eb 936 struct clear_refs_private cp = {
0f8975ec 937 .type = type,
af9de7eb 938 };
20cbc972
AM
939 struct mm_walk clear_refs_walk = {
940 .pmd_entry = clear_refs_pte_range,
5c64f52a 941 .test_walk = clear_refs_test_walk,
20cbc972 942 .mm = mm,
af9de7eb 943 .private = &cp,
20cbc972 944 };
695f0559
PC
945
946 if (type == CLEAR_REFS_MM_HIWATER_RSS) {
947 /*
948 * Writing 5 to /proc/pid/clear_refs resets the peak
949 * resident set size to this mm's current rss value.
950 */
951 down_write(&mm->mmap_sem);
952 reset_mm_hiwater_rss(mm);
953 up_write(&mm->mmap_sem);
954 goto out_mm;
955 }
956
f248dcb3 957 down_read(&mm->mmap_sem);
64e45507
PF
958 if (type == CLEAR_REFS_SOFT_DIRTY) {
959 for (vma = mm->mmap; vma; vma = vma->vm_next) {
960 if (!(vma->vm_flags & VM_SOFTDIRTY))
961 continue;
962 up_read(&mm->mmap_sem);
963 down_write(&mm->mmap_sem);
964 for (vma = mm->mmap; vma; vma = vma->vm_next) {
965 vma->vm_flags &= ~VM_SOFTDIRTY;
966 vma_set_page_prot(vma);
967 }
968 downgrade_write(&mm->mmap_sem);
969 break;
970 }
0f8975ec 971 mmu_notifier_invalidate_range_start(mm, 0, -1);
64e45507 972 }
5c64f52a 973 walk_page_range(0, ~0UL, &clear_refs_walk);
0f8975ec
PE
974 if (type == CLEAR_REFS_SOFT_DIRTY)
975 mmu_notifier_invalidate_range_end(mm, 0, -1);
f248dcb3
MM
976 flush_tlb_mm(mm);
977 up_read(&mm->mmap_sem);
695f0559 978out_mm:
f248dcb3
MM
979 mmput(mm);
980 }
981 put_task_struct(task);
fb92a4b0
VL
982
983 return count;
b813e931
DR
984}
985
f248dcb3
MM
986const struct file_operations proc_clear_refs_operations = {
987 .write = clear_refs_write,
6038f373 988 .llseek = noop_llseek,
f248dcb3
MM
989};
990
092b50ba
NH
991typedef struct {
992 u64 pme;
993} pagemap_entry_t;
994
85863e47 995struct pagemapread {
8c829622 996 int pos, len; /* units: PM_ENTRY_BYTES, not bytes */
092b50ba 997 pagemap_entry_t *buffer;
1c90308e 998 bool show_pfn;
85863e47
MM
999};
1000
5aaabe83
NH
1001#define PAGEMAP_WALK_SIZE (PMD_SIZE)
1002#define PAGEMAP_WALK_MASK (PMD_MASK)
1003
deb94544
KK
1004#define PM_ENTRY_BYTES sizeof(pagemap_entry_t)
1005#define PM_PFRAME_BITS 55
1006#define PM_PFRAME_MASK GENMASK_ULL(PM_PFRAME_BITS - 1, 0)
1007#define PM_SOFT_DIRTY BIT_ULL(55)
77bb499b 1008#define PM_MMAP_EXCLUSIVE BIT_ULL(56)
deb94544
KK
1009#define PM_FILE BIT_ULL(61)
1010#define PM_SWAP BIT_ULL(62)
1011#define PM_PRESENT BIT_ULL(63)
1012
85863e47
MM
1013#define PM_END_OF_BUFFER 1
1014
deb94544 1015static inline pagemap_entry_t make_pme(u64 frame, u64 flags)
092b50ba 1016{
deb94544 1017 return (pagemap_entry_t) { .pme = (frame & PM_PFRAME_MASK) | flags };
092b50ba
NH
1018}
1019
1020static int add_to_pagemap(unsigned long addr, pagemap_entry_t *pme,
85863e47
MM
1021 struct pagemapread *pm)
1022{
092b50ba 1023 pm->buffer[pm->pos++] = *pme;
d82ef020 1024 if (pm->pos >= pm->len)
aae8679b 1025 return PM_END_OF_BUFFER;
85863e47
MM
1026 return 0;
1027}
1028
1029static int pagemap_pte_hole(unsigned long start, unsigned long end,
2165009b 1030 struct mm_walk *walk)
85863e47 1031{
2165009b 1032 struct pagemapread *pm = walk->private;
68b5a652 1033 unsigned long addr = start;
85863e47 1034 int err = 0;
092b50ba 1035
68b5a652
PF
1036 while (addr < end) {
1037 struct vm_area_struct *vma = find_vma(walk->mm, addr);
deb94544 1038 pagemap_entry_t pme = make_pme(0, 0);
87e6d49a
PF
1039 /* End of address space hole, which we mark as non-present. */
1040 unsigned long hole_end;
68b5a652 1041
87e6d49a
PF
1042 if (vma)
1043 hole_end = min(end, vma->vm_start);
1044 else
1045 hole_end = end;
1046
1047 for (; addr < hole_end; addr += PAGE_SIZE) {
1048 err = add_to_pagemap(addr, &pme, pm);
1049 if (err)
1050 goto out;
68b5a652
PF
1051 }
1052
87e6d49a
PF
1053 if (!vma)
1054 break;
1055
1056 /* Addresses in the VMA. */
1057 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1058 pme = make_pme(0, PM_SOFT_DIRTY);
87e6d49a 1059 for (; addr < min(end, vma->vm_end); addr += PAGE_SIZE) {
68b5a652
PF
1060 err = add_to_pagemap(addr, &pme, pm);
1061 if (err)
1062 goto out;
1063 }
85863e47 1064 }
68b5a652 1065out:
85863e47
MM
1066 return err;
1067}
1068
deb94544 1069static pagemap_entry_t pte_to_pagemap_entry(struct pagemapread *pm,
052fb0d6 1070 struct vm_area_struct *vma, unsigned long addr, pte_t pte)
85863e47 1071{
deb94544 1072 u64 frame = 0, flags = 0;
052fb0d6 1073 struct page *page = NULL;
85863e47 1074
052fb0d6 1075 if (pte_present(pte)) {
1c90308e
KK
1076 if (pm->show_pfn)
1077 frame = pte_pfn(pte);
deb94544 1078 flags |= PM_PRESENT;
052fb0d6 1079 page = vm_normal_page(vma, addr, pte);
e9cdd6e7 1080 if (pte_soft_dirty(pte))
deb94544 1081 flags |= PM_SOFT_DIRTY;
052fb0d6 1082 } else if (is_swap_pte(pte)) {
179ef71c
CG
1083 swp_entry_t entry;
1084 if (pte_swp_soft_dirty(pte))
deb94544 1085 flags |= PM_SOFT_DIRTY;
179ef71c 1086 entry = pte_to_swp_entry(pte);
052fb0d6
KK
1087 frame = swp_type(entry) |
1088 (swp_offset(entry) << MAX_SWAPFILES_SHIFT);
deb94544 1089 flags |= PM_SWAP;
052fb0d6
KK
1090 if (is_migration_entry(entry))
1091 page = migration_entry_to_page(entry);
052fb0d6
KK
1092 }
1093
1094 if (page && !PageAnon(page))
1095 flags |= PM_FILE;
77bb499b
KK
1096 if (page && page_mapcount(page) == 1)
1097 flags |= PM_MMAP_EXCLUSIVE;
deb94544
KK
1098 if (vma->vm_flags & VM_SOFTDIRTY)
1099 flags |= PM_SOFT_DIRTY;
052fb0d6 1100
deb94544 1101 return make_pme(frame, flags);
bcf8039e
DH
1102}
1103
356515e7 1104static int pagemap_pmd_range(pmd_t *pmdp, unsigned long addr, unsigned long end,
2165009b 1105 struct mm_walk *walk)
85863e47 1106{
f995ece2 1107 struct vm_area_struct *vma = walk->vma;
2165009b 1108 struct pagemapread *pm = walk->private;
bf929152 1109 spinlock_t *ptl;
05fbf357 1110 pte_t *pte, *orig_pte;
85863e47
MM
1111 int err = 0;
1112
356515e7
KK
1113#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1114 if (pmd_trans_huge_lock(pmdp, vma, &ptl) == 1) {
1115 u64 flags = 0, frame = 0;
1116 pmd_t pmd = *pmdp;
0f8975ec 1117
356515e7 1118 if ((vma->vm_flags & VM_SOFTDIRTY) || pmd_soft_dirty(pmd))
deb94544 1119 flags |= PM_SOFT_DIRTY;
d9104d1c 1120
356515e7
KK
1121 /*
1122 * Currently pmd for thp is always present because thp
1123 * can not be swapped-out, migrated, or HWPOISONed
1124 * (split in such cases instead.)
1125 * This if-check is just to prepare for future implementation.
1126 */
1127 if (pmd_present(pmd)) {
77bb499b
KK
1128 struct page *page = pmd_page(pmd);
1129
1130 if (page_mapcount(page) == 1)
1131 flags |= PM_MMAP_EXCLUSIVE;
1132
356515e7 1133 flags |= PM_PRESENT;
1c90308e
KK
1134 if (pm->show_pfn)
1135 frame = pmd_pfn(pmd) +
1136 ((addr & ~PMD_MASK) >> PAGE_SHIFT);
356515e7
KK
1137 }
1138
025c5b24 1139 for (; addr != end; addr += PAGE_SIZE) {
356515e7 1140 pagemap_entry_t pme = make_pme(frame, flags);
025c5b24 1141
092b50ba 1142 err = add_to_pagemap(addr, &pme, pm);
025c5b24
NH
1143 if (err)
1144 break;
1c90308e 1145 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1146 frame++;
5aaabe83 1147 }
bf929152 1148 spin_unlock(ptl);
025c5b24 1149 return err;
5aaabe83
NH
1150 }
1151
356515e7 1152 if (pmd_trans_unstable(pmdp))
45f83cef 1153 return 0;
356515e7 1154#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
81d0fa62 1155
f995ece2
NH
1156 /*
1157 * We can assume that @vma always points to a valid one and @end never
1158 * goes beyond vma->vm_end.
1159 */
356515e7 1160 orig_pte = pte = pte_offset_map_lock(walk->mm, pmdp, addr, &ptl);
f995ece2
NH
1161 for (; addr < end; pte++, addr += PAGE_SIZE) {
1162 pagemap_entry_t pme;
05fbf357 1163
deb94544 1164 pme = pte_to_pagemap_entry(pm, vma, addr, *pte);
f995ece2 1165 err = add_to_pagemap(addr, &pme, pm);
05fbf357 1166 if (err)
81d0fa62 1167 break;
85863e47 1168 }
f995ece2 1169 pte_unmap_unlock(orig_pte, ptl);
85863e47
MM
1170
1171 cond_resched();
1172
1173 return err;
1174}
1175
1a5cb814 1176#ifdef CONFIG_HUGETLB_PAGE
116354d1 1177/* This function walks within one hugetlb entry in the single call */
356515e7 1178static int pagemap_hugetlb_range(pte_t *ptep, unsigned long hmask,
116354d1
NH
1179 unsigned long addr, unsigned long end,
1180 struct mm_walk *walk)
5dc37642 1181{
5dc37642 1182 struct pagemapread *pm = walk->private;
f995ece2 1183 struct vm_area_struct *vma = walk->vma;
356515e7 1184 u64 flags = 0, frame = 0;
5dc37642 1185 int err = 0;
356515e7 1186 pte_t pte;
5dc37642 1187
f995ece2 1188 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1189 flags |= PM_SOFT_DIRTY;
d9104d1c 1190
356515e7
KK
1191 pte = huge_ptep_get(ptep);
1192 if (pte_present(pte)) {
1193 struct page *page = pte_page(pte);
1194
1195 if (!PageAnon(page))
1196 flags |= PM_FILE;
1197
77bb499b
KK
1198 if (page_mapcount(page) == 1)
1199 flags |= PM_MMAP_EXCLUSIVE;
1200
356515e7 1201 flags |= PM_PRESENT;
1c90308e
KK
1202 if (pm->show_pfn)
1203 frame = pte_pfn(pte) +
1204 ((addr & ~hmask) >> PAGE_SHIFT);
356515e7
KK
1205 }
1206
5dc37642 1207 for (; addr != end; addr += PAGE_SIZE) {
356515e7
KK
1208 pagemap_entry_t pme = make_pme(frame, flags);
1209
092b50ba 1210 err = add_to_pagemap(addr, &pme, pm);
5dc37642
NH
1211 if (err)
1212 return err;
1c90308e 1213 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1214 frame++;
5dc37642
NH
1215 }
1216
1217 cond_resched();
1218
1219 return err;
1220}
1a5cb814 1221#endif /* HUGETLB_PAGE */
5dc37642 1222
85863e47
MM
1223/*
1224 * /proc/pid/pagemap - an array mapping virtual pages to pfns
1225 *
f16278c6
HR
1226 * For each page in the address space, this file contains one 64-bit entry
1227 * consisting of the following:
1228 *
052fb0d6 1229 * Bits 0-54 page frame number (PFN) if present
f16278c6 1230 * Bits 0-4 swap type if swapped
052fb0d6 1231 * Bits 5-54 swap offset if swapped
deb94544 1232 * Bit 55 pte is soft-dirty (see Documentation/vm/soft-dirty.txt)
77bb499b
KK
1233 * Bit 56 page exclusively mapped
1234 * Bits 57-60 zero
052fb0d6 1235 * Bit 61 page is file-page or shared-anon
f16278c6
HR
1236 * Bit 62 page swapped
1237 * Bit 63 page present
1238 *
1239 * If the page is not present but in swap, then the PFN contains an
1240 * encoding of the swap file number and the page's offset into the
1241 * swap. Unmapped pages return a null PFN. This allows determining
85863e47
MM
1242 * precisely which pages are mapped (or in swap) and comparing mapped
1243 * pages between processes.
1244 *
1245 * Efficient users of this interface will use /proc/pid/maps to
1246 * determine which areas of memory are actually mapped and llseek to
1247 * skip over unmapped regions.
1248 */
1249static ssize_t pagemap_read(struct file *file, char __user *buf,
1250 size_t count, loff_t *ppos)
1251{
a06db751 1252 struct mm_struct *mm = file->private_data;
85863e47 1253 struct pagemapread pm;
ee1e6ab6 1254 struct mm_walk pagemap_walk = {};
5d7e0d2b
AM
1255 unsigned long src;
1256 unsigned long svpfn;
1257 unsigned long start_vaddr;
1258 unsigned long end_vaddr;
a06db751 1259 int ret = 0, copied = 0;
85863e47 1260
a06db751 1261 if (!mm || !atomic_inc_not_zero(&mm->mm_users))
85863e47
MM
1262 goto out;
1263
85863e47
MM
1264 ret = -EINVAL;
1265 /* file position must be aligned */
aae8679b 1266 if ((*ppos % PM_ENTRY_BYTES) || (count % PM_ENTRY_BYTES))
a06db751 1267 goto out_mm;
85863e47
MM
1268
1269 ret = 0;
08161786 1270 if (!count)
a06db751 1271 goto out_mm;
08161786 1272
1c90308e
KK
1273 /* do not disclose physical addresses: attack vector */
1274 pm.show_pfn = file_ns_capable(file, &init_user_ns, CAP_SYS_ADMIN);
1275
8c829622 1276 pm.len = (PAGEMAP_WALK_SIZE >> PAGE_SHIFT);
1277 pm.buffer = kmalloc(pm.len * PM_ENTRY_BYTES, GFP_TEMPORARY);
5d7e0d2b 1278 ret = -ENOMEM;
d82ef020 1279 if (!pm.buffer)
a06db751 1280 goto out_mm;
85863e47 1281
356515e7 1282 pagemap_walk.pmd_entry = pagemap_pmd_range;
5d7e0d2b 1283 pagemap_walk.pte_hole = pagemap_pte_hole;
1a5cb814 1284#ifdef CONFIG_HUGETLB_PAGE
5dc37642 1285 pagemap_walk.hugetlb_entry = pagemap_hugetlb_range;
1a5cb814 1286#endif
5d7e0d2b
AM
1287 pagemap_walk.mm = mm;
1288 pagemap_walk.private = &pm;
1289
1290 src = *ppos;
1291 svpfn = src / PM_ENTRY_BYTES;
1292 start_vaddr = svpfn << PAGE_SHIFT;
a06db751 1293 end_vaddr = mm->task_size;
5d7e0d2b
AM
1294
1295 /* watch out for wraparound */
a06db751 1296 if (svpfn > mm->task_size >> PAGE_SHIFT)
5d7e0d2b
AM
1297 start_vaddr = end_vaddr;
1298
1299 /*
1300 * The odds are that this will stop walking way
1301 * before end_vaddr, because the length of the
1302 * user buffer is tracked in "pm", and the walk
1303 * will stop when we hit the end of the buffer.
1304 */
d82ef020
KH
1305 ret = 0;
1306 while (count && (start_vaddr < end_vaddr)) {
1307 int len;
1308 unsigned long end;
1309
1310 pm.pos = 0;
ea251c1d 1311 end = (start_vaddr + PAGEMAP_WALK_SIZE) & PAGEMAP_WALK_MASK;
d82ef020
KH
1312 /* overflow ? */
1313 if (end < start_vaddr || end > end_vaddr)
1314 end = end_vaddr;
1315 down_read(&mm->mmap_sem);
1316 ret = walk_page_range(start_vaddr, end, &pagemap_walk);
1317 up_read(&mm->mmap_sem);
1318 start_vaddr = end;
1319
1320 len = min(count, PM_ENTRY_BYTES * pm.pos);
309361e0 1321 if (copy_to_user(buf, pm.buffer, len)) {
d82ef020 1322 ret = -EFAULT;
a06db751 1323 goto out_free;
d82ef020
KH
1324 }
1325 copied += len;
1326 buf += len;
1327 count -= len;
85863e47 1328 }
d82ef020
KH
1329 *ppos += copied;
1330 if (!ret || ret == PM_END_OF_BUFFER)
1331 ret = copied;
1332
98bc93e5
KM
1333out_free:
1334 kfree(pm.buffer);
a06db751
KK
1335out_mm:
1336 mmput(mm);
85863e47
MM
1337out:
1338 return ret;
1339}
1340
541c237c
PE
1341static int pagemap_open(struct inode *inode, struct file *file)
1342{
a06db751
KK
1343 struct mm_struct *mm;
1344
a06db751
KK
1345 mm = proc_mem_open(inode, PTRACE_MODE_READ);
1346 if (IS_ERR(mm))
1347 return PTR_ERR(mm);
1348 file->private_data = mm;
1349 return 0;
1350}
1351
1352static int pagemap_release(struct inode *inode, struct file *file)
1353{
1354 struct mm_struct *mm = file->private_data;
1355
1356 if (mm)
1357 mmdrop(mm);
541c237c
PE
1358 return 0;
1359}
1360
85863e47
MM
1361const struct file_operations proc_pagemap_operations = {
1362 .llseek = mem_lseek, /* borrow this */
1363 .read = pagemap_read,
541c237c 1364 .open = pagemap_open,
a06db751 1365 .release = pagemap_release,
85863e47 1366};
1e883281 1367#endif /* CONFIG_PROC_PAGE_MONITOR */
85863e47 1368
6e21c8f1 1369#ifdef CONFIG_NUMA
6e21c8f1 1370
f69ff943 1371struct numa_maps {
f69ff943
SW
1372 unsigned long pages;
1373 unsigned long anon;
1374 unsigned long active;
1375 unsigned long writeback;
1376 unsigned long mapcount_max;
1377 unsigned long dirty;
1378 unsigned long swapcache;
1379 unsigned long node[MAX_NUMNODES];
1380};
1381
5b52fc89
SW
1382struct numa_maps_private {
1383 struct proc_maps_private proc_maps;
1384 struct numa_maps md;
1385};
1386
eb4866d0
DH
1387static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty,
1388 unsigned long nr_pages)
f69ff943
SW
1389{
1390 int count = page_mapcount(page);
1391
eb4866d0 1392 md->pages += nr_pages;
f69ff943 1393 if (pte_dirty || PageDirty(page))
eb4866d0 1394 md->dirty += nr_pages;
f69ff943
SW
1395
1396 if (PageSwapCache(page))
eb4866d0 1397 md->swapcache += nr_pages;
f69ff943
SW
1398
1399 if (PageActive(page) || PageUnevictable(page))
eb4866d0 1400 md->active += nr_pages;
f69ff943
SW
1401
1402 if (PageWriteback(page))
eb4866d0 1403 md->writeback += nr_pages;
f69ff943
SW
1404
1405 if (PageAnon(page))
eb4866d0 1406 md->anon += nr_pages;
f69ff943
SW
1407
1408 if (count > md->mapcount_max)
1409 md->mapcount_max = count;
1410
eb4866d0 1411 md->node[page_to_nid(page)] += nr_pages;
f69ff943
SW
1412}
1413
3200a8aa
DH
1414static struct page *can_gather_numa_stats(pte_t pte, struct vm_area_struct *vma,
1415 unsigned long addr)
1416{
1417 struct page *page;
1418 int nid;
1419
1420 if (!pte_present(pte))
1421 return NULL;
1422
1423 page = vm_normal_page(vma, addr, pte);
1424 if (!page)
1425 return NULL;
1426
1427 if (PageReserved(page))
1428 return NULL;
1429
1430 nid = page_to_nid(page);
4ff1b2c2 1431 if (!node_isset(nid, node_states[N_MEMORY]))
3200a8aa
DH
1432 return NULL;
1433
1434 return page;
1435}
1436
f69ff943
SW
1437static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
1438 unsigned long end, struct mm_walk *walk)
1439{
d85f4d6d
NH
1440 struct numa_maps *md = walk->private;
1441 struct vm_area_struct *vma = walk->vma;
f69ff943
SW
1442 spinlock_t *ptl;
1443 pte_t *orig_pte;
1444 pte_t *pte;
1445
d85f4d6d 1446 if (pmd_trans_huge_lock(pmd, vma, &ptl) == 1) {
025c5b24
NH
1447 pte_t huge_pte = *(pte_t *)pmd;
1448 struct page *page;
1449
d85f4d6d 1450 page = can_gather_numa_stats(huge_pte, vma, addr);
025c5b24
NH
1451 if (page)
1452 gather_stats(page, md, pte_dirty(huge_pte),
1453 HPAGE_PMD_SIZE/PAGE_SIZE);
bf929152 1454 spin_unlock(ptl);
025c5b24 1455 return 0;
32ef4384
DH
1456 }
1457
1a5a9906
AA
1458 if (pmd_trans_unstable(pmd))
1459 return 0;
f69ff943
SW
1460 orig_pte = pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
1461 do {
d85f4d6d 1462 struct page *page = can_gather_numa_stats(*pte, vma, addr);
f69ff943
SW
1463 if (!page)
1464 continue;
eb4866d0 1465 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1466
1467 } while (pte++, addr += PAGE_SIZE, addr != end);
1468 pte_unmap_unlock(orig_pte, ptl);
1469 return 0;
1470}
1471#ifdef CONFIG_HUGETLB_PAGE
632fd60f 1472static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1473 unsigned long addr, unsigned long end, struct mm_walk *walk)
1474{
1475 struct numa_maps *md;
1476 struct page *page;
1477
d4c54919 1478 if (!pte_present(*pte))
f69ff943
SW
1479 return 0;
1480
1481 page = pte_page(*pte);
1482 if (!page)
1483 return 0;
1484
1485 md = walk->private;
eb4866d0 1486 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1487 return 0;
1488}
1489
1490#else
632fd60f 1491static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1492 unsigned long addr, unsigned long end, struct mm_walk *walk)
1493{
1494 return 0;
1495}
1496#endif
1497
1498/*
1499 * Display pages allocated per node and memory policy via /proc.
1500 */
b7643757 1501static int show_numa_map(struct seq_file *m, void *v, int is_pid)
f69ff943 1502{
5b52fc89
SW
1503 struct numa_maps_private *numa_priv = m->private;
1504 struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
f69ff943 1505 struct vm_area_struct *vma = v;
5b52fc89 1506 struct numa_maps *md = &numa_priv->md;
f69ff943
SW
1507 struct file *file = vma->vm_file;
1508 struct mm_struct *mm = vma->vm_mm;
d85f4d6d
NH
1509 struct mm_walk walk = {
1510 .hugetlb_entry = gather_hugetlb_stats,
1511 .pmd_entry = gather_pte_stats,
1512 .private = md,
1513 .mm = mm,
1514 };
f69ff943 1515 struct mempolicy *pol;
948927ee
DR
1516 char buffer[64];
1517 int nid;
f69ff943
SW
1518
1519 if (!mm)
1520 return 0;
1521
5b52fc89
SW
1522 /* Ensure we start with an empty set of numa_maps statistics. */
1523 memset(md, 0, sizeof(*md));
f69ff943 1524
498f2371
ON
1525 pol = __get_vma_policy(vma, vma->vm_start);
1526 if (pol) {
1527 mpol_to_str(buffer, sizeof(buffer), pol);
1528 mpol_cond_put(pol);
1529 } else {
1530 mpol_to_str(buffer, sizeof(buffer), proc_priv->task_mempolicy);
1531 }
f69ff943
SW
1532
1533 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1534
1535 if (file) {
17c2b4ee 1536 seq_puts(m, " file=");
2726d566 1537 seq_file_path(m, file, "\n\t= ");
f69ff943 1538 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
17c2b4ee 1539 seq_puts(m, " heap");
b7643757 1540 } else {
58cb6548 1541 pid_t tid = pid_of_stack(proc_priv, vma, is_pid);
b7643757
SP
1542 if (tid != 0) {
1543 /*
1544 * Thread stack in /proc/PID/task/TID/maps or
1545 * the main process stack.
1546 */
1547 if (!is_pid || (vma->vm_start <= mm->start_stack &&
1548 vma->vm_end >= mm->start_stack))
17c2b4ee 1549 seq_puts(m, " stack");
b7643757
SP
1550 else
1551 seq_printf(m, " stack:%d", tid);
1552 }
f69ff943
SW
1553 }
1554
fc360bd9 1555 if (is_vm_hugetlb_page(vma))
17c2b4ee 1556 seq_puts(m, " huge");
fc360bd9 1557
d85f4d6d
NH
1558 /* mmap_sem is held by m_start */
1559 walk_page_vma(vma, &walk);
f69ff943
SW
1560
1561 if (!md->pages)
1562 goto out;
1563
1564 if (md->anon)
1565 seq_printf(m, " anon=%lu", md->anon);
1566
1567 if (md->dirty)
1568 seq_printf(m, " dirty=%lu", md->dirty);
1569
1570 if (md->pages != md->anon && md->pages != md->dirty)
1571 seq_printf(m, " mapped=%lu", md->pages);
1572
1573 if (md->mapcount_max > 1)
1574 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1575
1576 if (md->swapcache)
1577 seq_printf(m, " swapcache=%lu", md->swapcache);
1578
1579 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1580 seq_printf(m, " active=%lu", md->active);
1581
1582 if (md->writeback)
1583 seq_printf(m, " writeback=%lu", md->writeback);
1584
948927ee
DR
1585 for_each_node_state(nid, N_MEMORY)
1586 if (md->node[nid])
1587 seq_printf(m, " N%d=%lu", nid, md->node[nid]);
198d1597
RA
1588
1589 seq_printf(m, " kernelpagesize_kB=%lu", vma_kernel_pagesize(vma) >> 10);
f69ff943
SW
1590out:
1591 seq_putc(m, '\n');
b8c20a9b 1592 m_cache_vma(m, vma);
f69ff943
SW
1593 return 0;
1594}
5b52fc89 1595
b7643757
SP
1596static int show_pid_numa_map(struct seq_file *m, void *v)
1597{
1598 return show_numa_map(m, v, 1);
1599}
1600
1601static int show_tid_numa_map(struct seq_file *m, void *v)
1602{
1603 return show_numa_map(m, v, 0);
1604}
1605
03a44825 1606static const struct seq_operations proc_pid_numa_maps_op = {
b7643757
SP
1607 .start = m_start,
1608 .next = m_next,
1609 .stop = m_stop,
1610 .show = show_pid_numa_map,
6e21c8f1 1611};
662795de 1612
b7643757
SP
1613static const struct seq_operations proc_tid_numa_maps_op = {
1614 .start = m_start,
1615 .next = m_next,
1616 .stop = m_stop,
1617 .show = show_tid_numa_map,
1618};
1619
1620static int numa_maps_open(struct inode *inode, struct file *file,
1621 const struct seq_operations *ops)
662795de 1622{
4db7d0ee
ON
1623 return proc_maps_open(inode, file, ops,
1624 sizeof(struct numa_maps_private));
662795de
EB
1625}
1626
b7643757
SP
1627static int pid_numa_maps_open(struct inode *inode, struct file *file)
1628{
1629 return numa_maps_open(inode, file, &proc_pid_numa_maps_op);
1630}
1631
1632static int tid_numa_maps_open(struct inode *inode, struct file *file)
1633{
1634 return numa_maps_open(inode, file, &proc_tid_numa_maps_op);
1635}
1636
1637const struct file_operations proc_pid_numa_maps_operations = {
1638 .open = pid_numa_maps_open,
1639 .read = seq_read,
1640 .llseek = seq_lseek,
29a40ace 1641 .release = proc_map_release,
b7643757
SP
1642};
1643
1644const struct file_operations proc_tid_numa_maps_operations = {
1645 .open = tid_numa_maps_open,
662795de
EB
1646 .read = seq_read,
1647 .llseek = seq_lseek,
29a40ace 1648 .release = proc_map_release,
662795de 1649};
f69ff943 1650#endif /* CONFIG_NUMA */