mm: gup: pack has_pinned in MMF_HAS_PINNED
[linux-block.git] / fs / proc / task_mmu.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
a520110e 2#include <linux/pagewalk.h>
615d6e87 3#include <linux/vmacache.h>
1da177e4 4#include <linux/hugetlb.h>
22e057c5 5#include <linux/huge_mm.h>
1da177e4
LT
6#include <linux/mount.h>
7#include <linux/seq_file.h>
e070ad49 8#include <linux/highmem.h>
5096add8 9#include <linux/ptrace.h>
5a0e3ad6 10#include <linux/slab.h>
6e21c8f1
CL
11#include <linux/pagemap.h>
12#include <linux/mempolicy.h>
22e057c5 13#include <linux/rmap.h>
85863e47 14#include <linux/swap.h>
6e84f315 15#include <linux/sched/mm.h>
85863e47 16#include <linux/swapops.h>
0f8975ec 17#include <linux/mmu_notifier.h>
33c3fc71 18#include <linux/page_idle.h>
6a15a370 19#include <linux/shmem_fs.h>
b3a81d08 20#include <linux/uaccess.h>
27cca866 21#include <linux/pkeys.h>
e070ad49 22
1da177e4 23#include <asm/elf.h>
b3a81d08 24#include <asm/tlb.h>
e070ad49 25#include <asm/tlbflush.h>
1da177e4
LT
26#include "internal.h"
27
d1be35cb
AV
28#define SEQ_PUT_DEC(str, val) \
29 seq_put_decimal_ull_width(m, str, (val) << (PAGE_SHIFT-10), 8)
df5f8314 30void task_mem(struct seq_file *m, struct mm_struct *mm)
1da177e4 31{
af5b0f6a 32 unsigned long text, lib, swap, anon, file, shmem;
365e9c87
HD
33 unsigned long hiwater_vm, total_vm, hiwater_rss, total_rss;
34
8cee852e
JM
35 anon = get_mm_counter(mm, MM_ANONPAGES);
36 file = get_mm_counter(mm, MM_FILEPAGES);
37 shmem = get_mm_counter(mm, MM_SHMEMPAGES);
38
365e9c87
HD
39 /*
40 * Note: to minimize their overhead, mm maintains hiwater_vm and
41 * hiwater_rss only when about to *lower* total_vm or rss. Any
42 * collector of these hiwater stats must therefore get total_vm
43 * and rss too, which will usually be the higher. Barriers? not
44 * worth the effort, such snapshots can always be inconsistent.
45 */
46 hiwater_vm = total_vm = mm->total_vm;
47 if (hiwater_vm < mm->hiwater_vm)
48 hiwater_vm = mm->hiwater_vm;
8cee852e 49 hiwater_rss = total_rss = anon + file + shmem;
365e9c87
HD
50 if (hiwater_rss < mm->hiwater_rss)
51 hiwater_rss = mm->hiwater_rss;
1da177e4 52
8526d84f
KK
53 /* split executable areas between text and lib */
54 text = PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK);
55 text = min(text, mm->exec_vm << PAGE_SHIFT);
56 lib = (mm->exec_vm << PAGE_SHIFT) - text;
57
b084d435 58 swap = get_mm_counter(mm, MM_SWAPENTS);
d1be35cb
AV
59 SEQ_PUT_DEC("VmPeak:\t", hiwater_vm);
60 SEQ_PUT_DEC(" kB\nVmSize:\t", total_vm);
61 SEQ_PUT_DEC(" kB\nVmLck:\t", mm->locked_vm);
70f8a3ca 62 SEQ_PUT_DEC(" kB\nVmPin:\t", atomic64_read(&mm->pinned_vm));
d1be35cb
AV
63 SEQ_PUT_DEC(" kB\nVmHWM:\t", hiwater_rss);
64 SEQ_PUT_DEC(" kB\nVmRSS:\t", total_rss);
65 SEQ_PUT_DEC(" kB\nRssAnon:\t", anon);
66 SEQ_PUT_DEC(" kB\nRssFile:\t", file);
67 SEQ_PUT_DEC(" kB\nRssShmem:\t", shmem);
68 SEQ_PUT_DEC(" kB\nVmData:\t", mm->data_vm);
69 SEQ_PUT_DEC(" kB\nVmStk:\t", mm->stack_vm);
70 seq_put_decimal_ull_width(m,
71 " kB\nVmExe:\t", text >> 10, 8);
72 seq_put_decimal_ull_width(m,
73 " kB\nVmLib:\t", lib >> 10, 8);
74 seq_put_decimal_ull_width(m,
75 " kB\nVmPTE:\t", mm_pgtables_bytes(mm) >> 10, 8);
76 SEQ_PUT_DEC(" kB\nVmSwap:\t", swap);
77 seq_puts(m, " kB\n");
5d317b2b 78 hugetlb_report_usage(m, mm);
1da177e4 79}
d1be35cb 80#undef SEQ_PUT_DEC
1da177e4
LT
81
82unsigned long task_vsize(struct mm_struct *mm)
83{
84 return PAGE_SIZE * mm->total_vm;
85}
86
a2ade7b6
AD
87unsigned long task_statm(struct mm_struct *mm,
88 unsigned long *shared, unsigned long *text,
89 unsigned long *data, unsigned long *resident)
1da177e4 90{
eca56ff9
JM
91 *shared = get_mm_counter(mm, MM_FILEPAGES) +
92 get_mm_counter(mm, MM_SHMEMPAGES);
1da177e4
LT
93 *text = (PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK))
94 >> PAGE_SHIFT;
84638335 95 *data = mm->data_vm + mm->stack_vm;
d559db08 96 *resident = *shared + get_mm_counter(mm, MM_ANONPAGES);
1da177e4
LT
97 return mm->total_vm;
98}
99
9e781440
KH
100#ifdef CONFIG_NUMA
101/*
498f2371 102 * Save get_task_policy() for show_numa_map().
9e781440
KH
103 */
104static void hold_task_mempolicy(struct proc_maps_private *priv)
105{
106 struct task_struct *task = priv->task;
107
108 task_lock(task);
498f2371 109 priv->task_mempolicy = get_task_policy(task);
9e781440
KH
110 mpol_get(priv->task_mempolicy);
111 task_unlock(task);
112}
113static void release_task_mempolicy(struct proc_maps_private *priv)
114{
115 mpol_put(priv->task_mempolicy);
116}
117#else
118static void hold_task_mempolicy(struct proc_maps_private *priv)
119{
120}
121static void release_task_mempolicy(struct proc_maps_private *priv)
122{
123}
124#endif
125
0c255321 126static void *m_start(struct seq_file *m, loff_t *ppos)
e070ad49 127{
a6198797 128 struct proc_maps_private *priv = m->private;
4781f2c3 129 unsigned long last_addr = *ppos;
a6198797 130 struct mm_struct *mm;
0c255321 131 struct vm_area_struct *vma;
a6198797 132
c2e88d22 133 /* See m_next(). Zero at the start or after lseek. */
b8c20a9b
ON
134 if (last_addr == -1UL)
135 return NULL;
136
2c03376d 137 priv->task = get_proc_task(priv->inode);
a6198797 138 if (!priv->task)
ec6fd8a4 139 return ERR_PTR(-ESRCH);
a6198797 140
29a40ace 141 mm = priv->mm;
d07ded61
MWO
142 if (!mm || !mmget_not_zero(mm)) {
143 put_task_struct(priv->task);
144 priv->task = NULL;
29a40ace 145 return NULL;
d07ded61 146 }
a6198797 147
d8ed45c5 148 if (mmap_read_lock_killable(mm)) {
8a713e7d 149 mmput(mm);
d07ded61
MWO
150 put_task_struct(priv->task);
151 priv->task = NULL;
8a713e7d
KK
152 return ERR_PTR(-EINTR);
153 }
154
9e781440 155 hold_task_mempolicy(priv);
0c255321 156 priv->tail_vma = get_gate_vma(mm);
a6198797 157
c2e88d22
MWO
158 vma = find_vma(mm, last_addr);
159 if (vma)
a6198797 160 return vma;
59b4bf12 161
c2e88d22 162 return priv->tail_vma;
a6198797
MM
163}
164
4781f2c3 165static void *m_next(struct seq_file *m, void *v, loff_t *ppos)
a6198797
MM
166{
167 struct proc_maps_private *priv = m->private;
fad95500
MWO
168 struct vm_area_struct *next, *vma = v;
169
170 if (vma == priv->tail_vma)
171 next = NULL;
172 else if (vma->vm_next)
173 next = vma->vm_next;
174 else
175 next = priv->tail_vma;
a6198797 176
4781f2c3 177 *ppos = next ? next->vm_start : -1UL;
c2e88d22 178
59b4bf12 179 return next;
a6198797
MM
180}
181
182static void m_stop(struct seq_file *m, void *v)
183{
184 struct proc_maps_private *priv = m->private;
d07ded61 185 struct mm_struct *mm = priv->mm;
a6198797 186
d07ded61
MWO
187 if (!priv->task)
188 return;
189
190 release_task_mempolicy(priv);
d8ed45c5 191 mmap_read_unlock(mm);
d07ded61
MWO
192 mmput(mm);
193 put_task_struct(priv->task);
194 priv->task = NULL;
a6198797
MM
195}
196
4db7d0ee
ON
197static int proc_maps_open(struct inode *inode, struct file *file,
198 const struct seq_operations *ops, int psize)
199{
200 struct proc_maps_private *priv = __seq_open_private(file, ops, psize);
201
202 if (!priv)
203 return -ENOMEM;
204
2c03376d 205 priv->inode = inode;
29a40ace
ON
206 priv->mm = proc_mem_open(inode, PTRACE_MODE_READ);
207 if (IS_ERR(priv->mm)) {
208 int err = PTR_ERR(priv->mm);
209
210 seq_release_private(inode, file);
211 return err;
212 }
213
4db7d0ee
ON
214 return 0;
215}
216
29a40ace
ON
217static int proc_map_release(struct inode *inode, struct file *file)
218{
219 struct seq_file *seq = file->private_data;
220 struct proc_maps_private *priv = seq->private;
221
222 if (priv->mm)
223 mmdrop(priv->mm);
224
225 return seq_release_private(inode, file);
226}
227
a6198797 228static int do_maps_open(struct inode *inode, struct file *file,
03a44825 229 const struct seq_operations *ops)
a6198797 230{
4db7d0ee
ON
231 return proc_maps_open(inode, file, ops,
232 sizeof(struct proc_maps_private));
a6198797 233}
e070ad49 234
65376df5
JW
235/*
236 * Indicate if the VMA is a stack for the given task; for
237 * /proc/PID/maps that is the stack of the main task.
238 */
1240ea0d 239static int is_stack(struct vm_area_struct *vma)
58cb6548 240{
b18cb64e
AL
241 /*
242 * We make no effort to guess what a given thread considers to be
243 * its "stack". It's not even well-defined for programs written
244 * languages like Go.
245 */
246 return vma->vm_start <= vma->vm_mm->start_stack &&
247 vma->vm_end >= vma->vm_mm->start_stack;
58cb6548
ON
248}
249
493b0e9d
DC
250static void show_vma_header_prefix(struct seq_file *m,
251 unsigned long start, unsigned long end,
252 vm_flags_t flags, unsigned long long pgoff,
253 dev_t dev, unsigned long ino)
254{
255 seq_setwidth(m, 25 + sizeof(void *) * 6 - 1);
0e3dc019
AV
256 seq_put_hex_ll(m, NULL, start, 8);
257 seq_put_hex_ll(m, "-", end, 8);
258 seq_putc(m, ' ');
259 seq_putc(m, flags & VM_READ ? 'r' : '-');
260 seq_putc(m, flags & VM_WRITE ? 'w' : '-');
261 seq_putc(m, flags & VM_EXEC ? 'x' : '-');
262 seq_putc(m, flags & VM_MAYSHARE ? 's' : 'p');
263 seq_put_hex_ll(m, " ", pgoff, 8);
264 seq_put_hex_ll(m, " ", MAJOR(dev), 2);
265 seq_put_hex_ll(m, ":", MINOR(dev), 2);
266 seq_put_decimal_ull(m, " ", ino);
267 seq_putc(m, ' ');
493b0e9d
DC
268}
269
b7643757 270static void
871305bb 271show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
1da177e4 272{
e070ad49
ML
273 struct mm_struct *mm = vma->vm_mm;
274 struct file *file = vma->vm_file;
ca16d140 275 vm_flags_t flags = vma->vm_flags;
1da177e4 276 unsigned long ino = 0;
6260a4b0 277 unsigned long long pgoff = 0;
a09a79f6 278 unsigned long start, end;
1da177e4 279 dev_t dev = 0;
b7643757 280 const char *name = NULL;
1da177e4
LT
281
282 if (file) {
496ad9aa 283 struct inode *inode = file_inode(vma->vm_file);
1da177e4
LT
284 dev = inode->i_sb->s_dev;
285 ino = inode->i_ino;
6260a4b0 286 pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
1da177e4
LT
287 }
288
d7824370 289 start = vma->vm_start;
a09a79f6 290 end = vma->vm_end;
493b0e9d 291 show_vma_header_prefix(m, start, end, flags, pgoff, dev, ino);
1da177e4
LT
292
293 /*
294 * Print the dentry name for named mappings, and a
295 * special [heap] marker for the heap:
296 */
e070ad49 297 if (file) {
652586df 298 seq_pad(m, ' ');
2726d566 299 seq_file_path(m, file, "\n");
b7643757
SP
300 goto done;
301 }
302
78d683e8
AL
303 if (vma->vm_ops && vma->vm_ops->name) {
304 name = vma->vm_ops->name(vma);
305 if (name)
306 goto done;
307 }
308
b7643757
SP
309 name = arch_vma_name(vma);
310 if (!name) {
b7643757
SP
311 if (!mm) {
312 name = "[vdso]";
313 goto done;
314 }
315
316 if (vma->vm_start <= mm->brk &&
317 vma->vm_end >= mm->start_brk) {
318 name = "[heap]";
319 goto done;
320 }
321
1240ea0d 322 if (is_stack(vma))
65376df5 323 name = "[stack]";
b7643757
SP
324 }
325
326done:
327 if (name) {
652586df 328 seq_pad(m, ' ');
b7643757 329 seq_puts(m, name);
1da177e4
LT
330 }
331 seq_putc(m, '\n');
7c88db0c
JK
332}
333
871305bb 334static int show_map(struct seq_file *m, void *v)
7c88db0c 335{
871305bb 336 show_map_vma(m, v);
1da177e4
LT
337 return 0;
338}
339
03a44825 340static const struct seq_operations proc_pid_maps_op = {
a6198797
MM
341 .start = m_start,
342 .next = m_next,
343 .stop = m_stop,
871305bb 344 .show = show_map
a6198797
MM
345};
346
b7643757 347static int pid_maps_open(struct inode *inode, struct file *file)
a6198797
MM
348{
349 return do_maps_open(inode, file, &proc_pid_maps_op);
350}
351
b7643757
SP
352const struct file_operations proc_pid_maps_operations = {
353 .open = pid_maps_open,
354 .read = seq_read,
355 .llseek = seq_lseek,
29a40ace 356 .release = proc_map_release,
b7643757
SP
357};
358
a6198797
MM
359/*
360 * Proportional Set Size(PSS): my share of RSS.
361 *
362 * PSS of a process is the count of pages it has in memory, where each
363 * page is divided by the number of processes sharing it. So if a
364 * process has 1000 pages all to itself, and 1000 shared with one other
365 * process, its PSS will be 1500.
366 *
367 * To keep (accumulated) division errors low, we adopt a 64bit
368 * fixed-point pss counter to minimize division errors. So (pss >>
369 * PSS_SHIFT) would be the real byte count.
370 *
371 * A shift of 12 before division means (assuming 4K page size):
372 * - 1M 3-user-pages add up to 8KB errors;
373 * - supports mapcount up to 2^24, or 16M;
374 * - supports PSS up to 2^52 bytes, or 4PB.
375 */
376#define PSS_SHIFT 12
377
1e883281 378#ifdef CONFIG_PROC_PAGE_MONITOR
214e471f 379struct mem_size_stats {
a6198797
MM
380 unsigned long resident;
381 unsigned long shared_clean;
382 unsigned long shared_dirty;
383 unsigned long private_clean;
384 unsigned long private_dirty;
385 unsigned long referenced;
b40d4f84 386 unsigned long anonymous;
cf8496ea 387 unsigned long lazyfree;
4031a219 388 unsigned long anonymous_thp;
65c45377 389 unsigned long shmem_thp;
60fbf0ab 390 unsigned long file_thp;
214e471f 391 unsigned long swap;
25ee01a2
NH
392 unsigned long shared_hugetlb;
393 unsigned long private_hugetlb;
a6198797 394 u64 pss;
ee2ad71b
LS
395 u64 pss_anon;
396 u64 pss_file;
397 u64 pss_shmem;
493b0e9d 398 u64 pss_locked;
8334b962 399 u64 swap_pss;
c261e7d9 400 bool check_shmem_swap;
a6198797
MM
401};
402
ee2ad71b
LS
403static void smaps_page_accumulate(struct mem_size_stats *mss,
404 struct page *page, unsigned long size, unsigned long pss,
405 bool dirty, bool locked, bool private)
406{
407 mss->pss += pss;
408
409 if (PageAnon(page))
410 mss->pss_anon += pss;
411 else if (PageSwapBacked(page))
412 mss->pss_shmem += pss;
413 else
414 mss->pss_file += pss;
415
416 if (locked)
417 mss->pss_locked += pss;
418
419 if (dirty || PageDirty(page)) {
420 if (private)
421 mss->private_dirty += size;
422 else
423 mss->shared_dirty += size;
424 } else {
425 if (private)
426 mss->private_clean += size;
427 else
428 mss->shared_clean += size;
429 }
430}
431
c164e038 432static void smaps_account(struct mem_size_stats *mss, struct page *page,
27dd768e 433 bool compound, bool young, bool dirty, bool locked)
c164e038 434{
d8c6546b 435 int i, nr = compound ? compound_nr(page) : 1;
afd9883f 436 unsigned long size = nr * PAGE_SIZE;
c164e038 437
ee2ad71b
LS
438 /*
439 * First accumulate quantities that depend only on |size| and the type
440 * of the compound page.
441 */
cf8496ea 442 if (PageAnon(page)) {
c164e038 443 mss->anonymous += size;
cf8496ea
SL
444 if (!PageSwapBacked(page) && !dirty && !PageDirty(page))
445 mss->lazyfree += size;
446 }
c164e038
KS
447
448 mss->resident += size;
449 /* Accumulate the size in pages that have been accessed. */
33c3fc71 450 if (young || page_is_young(page) || PageReferenced(page))
c164e038 451 mss->referenced += size;
c164e038 452
afd9883f 453 /*
ee2ad71b
LS
454 * Then accumulate quantities that may depend on sharing, or that may
455 * differ page-by-page.
456 *
afd9883f
KS
457 * page_count(page) == 1 guarantees the page is mapped exactly once.
458 * If any subpage of the compound page mapped with PTE it would elevate
459 * page_count().
460 */
461 if (page_count(page) == 1) {
ee2ad71b
LS
462 smaps_page_accumulate(mss, page, size, size << PSS_SHIFT, dirty,
463 locked, true);
afd9883f
KS
464 return;
465 }
afd9883f
KS
466 for (i = 0; i < nr; i++, page++) {
467 int mapcount = page_mapcount(page);
ee2ad71b
LS
468 unsigned long pss = PAGE_SIZE << PSS_SHIFT;
469 if (mapcount >= 2)
470 pss /= mapcount;
471 smaps_page_accumulate(mss, page, PAGE_SIZE, pss, dirty, locked,
472 mapcount < 2);
c164e038
KS
473 }
474}
ae11c4d9 475
c261e7d9 476#ifdef CONFIG_SHMEM
c261e7d9 477static int smaps_pte_hole(unsigned long addr, unsigned long end,
b7a16c7a 478 __always_unused int depth, struct mm_walk *walk)
c261e7d9
VB
479{
480 struct mem_size_stats *mss = walk->private;
481
48131e03
VB
482 mss->swap += shmem_partial_swap_usage(
483 walk->vma->vm_file->f_mapping, addr, end);
c261e7d9
VB
484
485 return 0;
486}
7b86ac33
CH
487#else
488#define smaps_pte_hole NULL
489#endif /* CONFIG_SHMEM */
c261e7d9 490
c164e038
KS
491static void smaps_pte_entry(pte_t *pte, unsigned long addr,
492 struct mm_walk *walk)
ae11c4d9
DH
493{
494 struct mem_size_stats *mss = walk->private;
14eb6fdd 495 struct vm_area_struct *vma = walk->vma;
27dd768e 496 bool locked = !!(vma->vm_flags & VM_LOCKED);
b1d4d9e0 497 struct page *page = NULL;
ae11c4d9 498
c164e038
KS
499 if (pte_present(*pte)) {
500 page = vm_normal_page(vma, addr, *pte);
501 } else if (is_swap_pte(*pte)) {
502 swp_entry_t swpent = pte_to_swp_entry(*pte);
ae11c4d9 503
8334b962
MK
504 if (!non_swap_entry(swpent)) {
505 int mapcount;
506
c164e038 507 mss->swap += PAGE_SIZE;
8334b962
MK
508 mapcount = swp_swapcount(swpent);
509 if (mapcount >= 2) {
510 u64 pss_delta = (u64)PAGE_SIZE << PSS_SHIFT;
511
512 do_div(pss_delta, mapcount);
513 mss->swap_pss += pss_delta;
514 } else {
515 mss->swap_pss += (u64)PAGE_SIZE << PSS_SHIFT;
516 }
517 } else if (is_migration_entry(swpent))
b1d4d9e0 518 page = migration_entry_to_page(swpent);
5042db43
JG
519 else if (is_device_private_entry(swpent))
520 page = device_private_entry_to_page(swpent);
c261e7d9
VB
521 } else if (unlikely(IS_ENABLED(CONFIG_SHMEM) && mss->check_shmem_swap
522 && pte_none(*pte))) {
8cf88646 523 page = xa_load(&vma->vm_file->f_mapping->i_pages,
48131e03 524 linear_page_index(vma, addr));
3159f943 525 if (xa_is_value(page))
48131e03 526 mss->swap += PAGE_SIZE;
48131e03 527 return;
b1d4d9e0 528 }
ae11c4d9 529
ae11c4d9
DH
530 if (!page)
531 return;
afd9883f 532
27dd768e 533 smaps_account(mss, page, false, pte_young(*pte), pte_dirty(*pte), locked);
ae11c4d9
DH
534}
535
c164e038
KS
536#ifdef CONFIG_TRANSPARENT_HUGEPAGE
537static void smaps_pmd_entry(pmd_t *pmd, unsigned long addr,
538 struct mm_walk *walk)
539{
540 struct mem_size_stats *mss = walk->private;
14eb6fdd 541 struct vm_area_struct *vma = walk->vma;
27dd768e 542 bool locked = !!(vma->vm_flags & VM_LOCKED);
c94b6923
HY
543 struct page *page = NULL;
544
545 if (pmd_present(*pmd)) {
546 /* FOLL_DUMP will return -EFAULT on huge zero page */
547 page = follow_trans_huge_pmd(vma, addr, pmd, FOLL_DUMP);
548 } else if (unlikely(thp_migration_supported() && is_swap_pmd(*pmd))) {
549 swp_entry_t entry = pmd_to_swp_entry(*pmd);
c164e038 550
c94b6923
HY
551 if (is_migration_entry(entry))
552 page = migration_entry_to_page(entry);
553 }
c164e038
KS
554 if (IS_ERR_OR_NULL(page))
555 return;
65c45377
KS
556 if (PageAnon(page))
557 mss->anonymous_thp += HPAGE_PMD_SIZE;
558 else if (PageSwapBacked(page))
559 mss->shmem_thp += HPAGE_PMD_SIZE;
ca120cf6
DW
560 else if (is_zone_device_page(page))
561 /* pass */;
65c45377 562 else
60fbf0ab 563 mss->file_thp += HPAGE_PMD_SIZE;
27dd768e 564 smaps_account(mss, page, true, pmd_young(*pmd), pmd_dirty(*pmd), locked);
c164e038
KS
565}
566#else
567static void smaps_pmd_entry(pmd_t *pmd, unsigned long addr,
568 struct mm_walk *walk)
569{
570}
571#endif
572
b3ae5acb 573static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
2165009b 574 struct mm_walk *walk)
e070ad49 575{
14eb6fdd 576 struct vm_area_struct *vma = walk->vma;
ae11c4d9 577 pte_t *pte;
705e87c0 578 spinlock_t *ptl;
e070ad49 579
b6ec57f4
KS
580 ptl = pmd_trans_huge_lock(pmd, vma);
581 if (ptl) {
c94b6923 582 smaps_pmd_entry(pmd, addr, walk);
bf929152 583 spin_unlock(ptl);
14038302 584 goto out;
22e057c5 585 }
1a5a9906
AA
586
587 if (pmd_trans_unstable(pmd))
14038302 588 goto out;
22e057c5 589 /*
c1e8d7c6 590 * The mmap_lock held all the way back in m_start() is what
22e057c5
DH
591 * keeps khugepaged out of here and from collapsing things
592 * in here.
593 */
705e87c0 594 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
ae11c4d9 595 for (; addr != end; pte++, addr += PAGE_SIZE)
c164e038 596 smaps_pte_entry(pte, addr, walk);
705e87c0 597 pte_unmap_unlock(pte - 1, ptl);
14038302 598out:
705e87c0 599 cond_resched();
b3ae5acb 600 return 0;
e070ad49
ML
601}
602
834f82e2
CG
603static void show_smap_vma_flags(struct seq_file *m, struct vm_area_struct *vma)
604{
605 /*
606 * Don't forget to update Documentation/ on changes.
607 */
608 static const char mnemonics[BITS_PER_LONG][2] = {
609 /*
610 * In case if we meet a flag we don't know about.
611 */
612 [0 ... (BITS_PER_LONG-1)] = "??",
613
614 [ilog2(VM_READ)] = "rd",
615 [ilog2(VM_WRITE)] = "wr",
616 [ilog2(VM_EXEC)] = "ex",
617 [ilog2(VM_SHARED)] = "sh",
618 [ilog2(VM_MAYREAD)] = "mr",
619 [ilog2(VM_MAYWRITE)] = "mw",
620 [ilog2(VM_MAYEXEC)] = "me",
621 [ilog2(VM_MAYSHARE)] = "ms",
622 [ilog2(VM_GROWSDOWN)] = "gd",
623 [ilog2(VM_PFNMAP)] = "pf",
624 [ilog2(VM_DENYWRITE)] = "dw",
625 [ilog2(VM_LOCKED)] = "lo",
626 [ilog2(VM_IO)] = "io",
627 [ilog2(VM_SEQ_READ)] = "sr",
628 [ilog2(VM_RAND_READ)] = "rr",
629 [ilog2(VM_DONTCOPY)] = "dc",
630 [ilog2(VM_DONTEXPAND)] = "de",
631 [ilog2(VM_ACCOUNT)] = "ac",
632 [ilog2(VM_NORESERVE)] = "nr",
633 [ilog2(VM_HUGETLB)] = "ht",
b6fb293f 634 [ilog2(VM_SYNC)] = "sf",
834f82e2 635 [ilog2(VM_ARCH_1)] = "ar",
d2cd9ede 636 [ilog2(VM_WIPEONFORK)] = "wf",
834f82e2 637 [ilog2(VM_DONTDUMP)] = "dd",
424037b7
DK
638#ifdef CONFIG_ARM64_BTI
639 [ilog2(VM_ARM64_BTI)] = "bt",
640#endif
ec8e41ae
NH
641#ifdef CONFIG_MEM_SOFT_DIRTY
642 [ilog2(VM_SOFTDIRTY)] = "sd",
643#endif
834f82e2
CG
644 [ilog2(VM_MIXEDMAP)] = "mm",
645 [ilog2(VM_HUGEPAGE)] = "hg",
646 [ilog2(VM_NOHUGEPAGE)] = "nh",
647 [ilog2(VM_MERGEABLE)] = "mg",
16ba6f81
AA
648 [ilog2(VM_UFFD_MISSING)]= "um",
649 [ilog2(VM_UFFD_WP)] = "uw",
9f341931
CM
650#ifdef CONFIG_ARM64_MTE
651 [ilog2(VM_MTE)] = "mt",
652 [ilog2(VM_MTE_ALLOWED)] = "",
653#endif
5212213a 654#ifdef CONFIG_ARCH_HAS_PKEYS
c1192f84
DH
655 /* These come out via ProtectionKey: */
656 [ilog2(VM_PKEY_BIT0)] = "",
657 [ilog2(VM_PKEY_BIT1)] = "",
658 [ilog2(VM_PKEY_BIT2)] = "",
659 [ilog2(VM_PKEY_BIT3)] = "",
2c9e0a6f
RP
660#if VM_PKEY_BIT4
661 [ilog2(VM_PKEY_BIT4)] = "",
c1192f84 662#endif
5212213a 663#endif /* CONFIG_ARCH_HAS_PKEYS */
7677f7fd
AR
664#ifdef CONFIG_HAVE_ARCH_USERFAULTFD_MINOR
665 [ilog2(VM_UFFD_MINOR)] = "ui",
666#endif /* CONFIG_HAVE_ARCH_USERFAULTFD_MINOR */
834f82e2
CG
667 };
668 size_t i;
669
670 seq_puts(m, "VmFlags: ");
671 for (i = 0; i < BITS_PER_LONG; i++) {
c1192f84
DH
672 if (!mnemonics[i][0])
673 continue;
834f82e2 674 if (vma->vm_flags & (1UL << i)) {
f6640663
AV
675 seq_putc(m, mnemonics[i][0]);
676 seq_putc(m, mnemonics[i][1]);
677 seq_putc(m, ' ');
834f82e2
CG
678 }
679 }
680 seq_putc(m, '\n');
681}
682
25ee01a2
NH
683#ifdef CONFIG_HUGETLB_PAGE
684static int smaps_hugetlb_range(pte_t *pte, unsigned long hmask,
685 unsigned long addr, unsigned long end,
686 struct mm_walk *walk)
687{
688 struct mem_size_stats *mss = walk->private;
689 struct vm_area_struct *vma = walk->vma;
690 struct page *page = NULL;
691
692 if (pte_present(*pte)) {
693 page = vm_normal_page(vma, addr, *pte);
694 } else if (is_swap_pte(*pte)) {
695 swp_entry_t swpent = pte_to_swp_entry(*pte);
696
697 if (is_migration_entry(swpent))
698 page = migration_entry_to_page(swpent);
5042db43
JG
699 else if (is_device_private_entry(swpent))
700 page = device_private_entry_to_page(swpent);
25ee01a2
NH
701 }
702 if (page) {
703 int mapcount = page_mapcount(page);
704
705 if (mapcount >= 2)
706 mss->shared_hugetlb += huge_page_size(hstate_vma(vma));
707 else
708 mss->private_hugetlb += huge_page_size(hstate_vma(vma));
709 }
710 return 0;
711}
7b86ac33
CH
712#else
713#define smaps_hugetlb_range NULL
25ee01a2
NH
714#endif /* HUGETLB_PAGE */
715
7b86ac33
CH
716static const struct mm_walk_ops smaps_walk_ops = {
717 .pmd_entry = smaps_pte_range,
718 .hugetlb_entry = smaps_hugetlb_range,
719};
720
721static const struct mm_walk_ops smaps_shmem_walk_ops = {
722 .pmd_entry = smaps_pte_range,
723 .hugetlb_entry = smaps_hugetlb_range,
724 .pte_hole = smaps_pte_hole,
725};
726
03b4b114
CC
727/*
728 * Gather mem stats from @vma with the indicated beginning
729 * address @start, and keep them in @mss.
730 *
731 * Use vm_start of @vma as the beginning address if @start is 0.
732 */
8e68d689 733static void smap_gather_stats(struct vm_area_struct *vma,
03b4b114 734 struct mem_size_stats *mss, unsigned long start)
e070ad49 735{
03b4b114
CC
736 const struct mm_walk_ops *ops = &smaps_walk_ops;
737
738 /* Invalid start */
739 if (start >= vma->vm_end)
740 return;
741
c261e7d9 742#ifdef CONFIG_SHMEM
fa76da46
VB
743 /* In case of smaps_rollup, reset the value from previous vma */
744 mss->check_shmem_swap = false;
c261e7d9 745 if (vma->vm_file && shmem_mapping(vma->vm_file->f_mapping)) {
6a15a370
VB
746 /*
747 * For shared or readonly shmem mappings we know that all
748 * swapped out pages belong to the shmem object, and we can
749 * obtain the swap value much more efficiently. For private
750 * writable mappings, we might have COW pages that are
751 * not affected by the parent swapped out pages of the shmem
752 * object, so we have to distinguish them during the page walk.
753 * Unless we know that the shmem object (or the part mapped by
754 * our VMA) has no swapped out pages at all.
755 */
756 unsigned long shmem_swapped = shmem_swap_usage(vma);
757
03b4b114
CC
758 if (!start && (!shmem_swapped || (vma->vm_flags & VM_SHARED) ||
759 !(vma->vm_flags & VM_WRITE))) {
fa76da46 760 mss->swap += shmem_swapped;
6a15a370 761 } else {
493b0e9d 762 mss->check_shmem_swap = true;
03b4b114 763 ops = &smaps_shmem_walk_ops;
6a15a370 764 }
c261e7d9
VB
765 }
766#endif
c1e8d7c6 767 /* mmap_lock is held in m_start */
03b4b114
CC
768 if (!start)
769 walk_page_vma(vma, ops, mss);
770 else
771 walk_page_range(vma->vm_mm, start, vma->vm_end, ops, mss);
8e68d689
VB
772}
773
774#define SEQ_PUT_DEC(str, val) \
775 seq_put_decimal_ull_width(m, str, (val) >> 10, 8)
f1547959
VB
776
777/* Show the contents common for smaps and smaps_rollup */
ee2ad71b
LS
778static void __show_smap(struct seq_file *m, const struct mem_size_stats *mss,
779 bool rollup_mode)
f1547959
VB
780{
781 SEQ_PUT_DEC("Rss: ", mss->resident);
782 SEQ_PUT_DEC(" kB\nPss: ", mss->pss >> PSS_SHIFT);
ee2ad71b
LS
783 if (rollup_mode) {
784 /*
785 * These are meaningful only for smaps_rollup, otherwise two of
786 * them are zero, and the other one is the same as Pss.
787 */
788 SEQ_PUT_DEC(" kB\nPss_Anon: ",
789 mss->pss_anon >> PSS_SHIFT);
790 SEQ_PUT_DEC(" kB\nPss_File: ",
791 mss->pss_file >> PSS_SHIFT);
792 SEQ_PUT_DEC(" kB\nPss_Shmem: ",
793 mss->pss_shmem >> PSS_SHIFT);
794 }
f1547959
VB
795 SEQ_PUT_DEC(" kB\nShared_Clean: ", mss->shared_clean);
796 SEQ_PUT_DEC(" kB\nShared_Dirty: ", mss->shared_dirty);
797 SEQ_PUT_DEC(" kB\nPrivate_Clean: ", mss->private_clean);
798 SEQ_PUT_DEC(" kB\nPrivate_Dirty: ", mss->private_dirty);
799 SEQ_PUT_DEC(" kB\nReferenced: ", mss->referenced);
800 SEQ_PUT_DEC(" kB\nAnonymous: ", mss->anonymous);
801 SEQ_PUT_DEC(" kB\nLazyFree: ", mss->lazyfree);
802 SEQ_PUT_DEC(" kB\nAnonHugePages: ", mss->anonymous_thp);
803 SEQ_PUT_DEC(" kB\nShmemPmdMapped: ", mss->shmem_thp);
471e78cc 804 SEQ_PUT_DEC(" kB\nFilePmdMapped: ", mss->file_thp);
f1547959
VB
805 SEQ_PUT_DEC(" kB\nShared_Hugetlb: ", mss->shared_hugetlb);
806 seq_put_decimal_ull_width(m, " kB\nPrivate_Hugetlb: ",
807 mss->private_hugetlb >> 10, 7);
808 SEQ_PUT_DEC(" kB\nSwap: ", mss->swap);
809 SEQ_PUT_DEC(" kB\nSwapPss: ",
810 mss->swap_pss >> PSS_SHIFT);
811 SEQ_PUT_DEC(" kB\nLocked: ",
812 mss->pss_locked >> PSS_SHIFT);
813 seq_puts(m, " kB\n");
814}
815
8e68d689
VB
816static int show_smap(struct seq_file *m, void *v)
817{
8e68d689 818 struct vm_area_struct *vma = v;
258f669e
VB
819 struct mem_size_stats mss;
820
821 memset(&mss, 0, sizeof(mss));
822
03b4b114 823 smap_gather_stats(vma, &mss, 0);
258f669e
VB
824
825 show_map_vma(m, vma);
826
827 SEQ_PUT_DEC("Size: ", vma->vm_end - vma->vm_start);
828 SEQ_PUT_DEC(" kB\nKernelPageSize: ", vma_kernel_pagesize(vma));
829 SEQ_PUT_DEC(" kB\nMMUPageSize: ", vma_mmu_pagesize(vma));
830 seq_puts(m, " kB\n");
831
ee2ad71b 832 __show_smap(m, &mss, false);
258f669e 833
471e78cc 834 seq_printf(m, "THPeligible: %d\n",
c0630669 835 transparent_hugepage_enabled(vma));
7635d9cb 836
258f669e
VB
837 if (arch_pkeys_enabled())
838 seq_printf(m, "ProtectionKey: %8u\n", vma_pkey(vma));
839 show_smap_vma_flags(m, vma);
840
258f669e
VB
841 return 0;
842}
843
844static int show_smaps_rollup(struct seq_file *m, void *v)
845{
846 struct proc_maps_private *priv = m->private;
847 struct mem_size_stats mss;
848 struct mm_struct *mm;
849 struct vm_area_struct *vma;
850 unsigned long last_vma_end = 0;
8e68d689 851 int ret = 0;
8e68d689 852
258f669e
VB
853 priv->task = get_proc_task(priv->inode);
854 if (!priv->task)
855 return -ESRCH;
493b0e9d 856
258f669e
VB
857 mm = priv->mm;
858 if (!mm || !mmget_not_zero(mm)) {
859 ret = -ESRCH;
860 goto out_put_task;
493b0e9d 861 }
4752c369 862
258f669e 863 memset(&mss, 0, sizeof(mss));
493b0e9d 864
d8ed45c5 865 ret = mmap_read_lock_killable(mm);
a26a9781
KK
866 if (ret)
867 goto out_put_mm;
868
258f669e 869 hold_task_mempolicy(priv);
f1547959 870
ff9f47f6 871 for (vma = priv->mm->mmap; vma;) {
03b4b114 872 smap_gather_stats(vma, &mss, 0);
258f669e 873 last_vma_end = vma->vm_end;
ff9f47f6
CC
874
875 /*
876 * Release mmap_lock temporarily if someone wants to
877 * access it for write request.
878 */
879 if (mmap_lock_is_contended(mm)) {
880 mmap_read_unlock(mm);
881 ret = mmap_read_lock_killable(mm);
882 if (ret) {
883 release_task_mempolicy(priv);
884 goto out_put_mm;
885 }
886
887 /*
888 * After dropping the lock, there are four cases to
889 * consider. See the following example for explanation.
890 *
891 * +------+------+-----------+
892 * | VMA1 | VMA2 | VMA3 |
893 * +------+------+-----------+
894 * | | | |
895 * 4k 8k 16k 400k
896 *
897 * Suppose we drop the lock after reading VMA2 due to
898 * contention, then we get:
899 *
900 * last_vma_end = 16k
901 *
902 * 1) VMA2 is freed, but VMA3 exists:
903 *
904 * find_vma(mm, 16k - 1) will return VMA3.
905 * In this case, just continue from VMA3.
906 *
907 * 2) VMA2 still exists:
908 *
909 * find_vma(mm, 16k - 1) will return VMA2.
910 * Iterate the loop like the original one.
911 *
912 * 3) No more VMAs can be found:
913 *
914 * find_vma(mm, 16k - 1) will return NULL.
915 * No more things to do, just break.
916 *
917 * 4) (last_vma_end - 1) is the middle of a vma (VMA'):
918 *
919 * find_vma(mm, 16k - 1) will return VMA' whose range
920 * contains last_vma_end.
921 * Iterate VMA' from last_vma_end.
922 */
923 vma = find_vma(mm, last_vma_end - 1);
924 /* Case 3 above */
925 if (!vma)
926 break;
927
928 /* Case 1 above */
929 if (vma->vm_start >= last_vma_end)
930 continue;
931
932 /* Case 4 above */
933 if (vma->vm_end > last_vma_end)
934 smap_gather_stats(vma, &mss, last_vma_end);
935 }
936 /* Case 2 above */
937 vma = vma->vm_next;
493b0e9d 938 }
258f669e
VB
939
940 show_vma_header_prefix(m, priv->mm->mmap->vm_start,
941 last_vma_end, 0, 0, 0, 0);
942 seq_pad(m, ' ');
943 seq_puts(m, "[rollup]\n");
944
ee2ad71b 945 __show_smap(m, &mss, true);
258f669e
VB
946
947 release_task_mempolicy(priv);
d8ed45c5 948 mmap_read_unlock(mm);
258f669e 949
a26a9781
KK
950out_put_mm:
951 mmput(mm);
258f669e
VB
952out_put_task:
953 put_task_struct(priv->task);
954 priv->task = NULL;
955
493b0e9d 956 return ret;
e070ad49 957}
d1be35cb 958#undef SEQ_PUT_DEC
e070ad49 959
03a44825 960static const struct seq_operations proc_pid_smaps_op = {
a6198797
MM
961 .start = m_start,
962 .next = m_next,
963 .stop = m_stop,
871305bb 964 .show = show_smap
a6198797
MM
965};
966
b7643757 967static int pid_smaps_open(struct inode *inode, struct file *file)
a6198797
MM
968{
969 return do_maps_open(inode, file, &proc_pid_smaps_op);
970}
971
258f669e 972static int smaps_rollup_open(struct inode *inode, struct file *file)
493b0e9d 973{
258f669e 974 int ret;
493b0e9d 975 struct proc_maps_private *priv;
258f669e
VB
976
977 priv = kzalloc(sizeof(*priv), GFP_KERNEL_ACCOUNT);
978 if (!priv)
493b0e9d 979 return -ENOMEM;
258f669e
VB
980
981 ret = single_open(file, show_smaps_rollup, priv);
982 if (ret)
983 goto out_free;
984
985 priv->inode = inode;
986 priv->mm = proc_mem_open(inode, PTRACE_MODE_READ);
987 if (IS_ERR(priv->mm)) {
988 ret = PTR_ERR(priv->mm);
989
990 single_release(inode, file);
991 goto out_free;
493b0e9d 992 }
258f669e 993
493b0e9d 994 return 0;
258f669e
VB
995
996out_free:
997 kfree(priv);
998 return ret;
999}
1000
1001static int smaps_rollup_release(struct inode *inode, struct file *file)
1002{
1003 struct seq_file *seq = file->private_data;
1004 struct proc_maps_private *priv = seq->private;
1005
1006 if (priv->mm)
1007 mmdrop(priv->mm);
1008
1009 kfree(priv);
1010 return single_release(inode, file);
493b0e9d
DC
1011}
1012
b7643757
SP
1013const struct file_operations proc_pid_smaps_operations = {
1014 .open = pid_smaps_open,
1015 .read = seq_read,
1016 .llseek = seq_lseek,
29a40ace 1017 .release = proc_map_release,
b7643757
SP
1018};
1019
493b0e9d 1020const struct file_operations proc_pid_smaps_rollup_operations = {
258f669e 1021 .open = smaps_rollup_open,
493b0e9d
DC
1022 .read = seq_read,
1023 .llseek = seq_lseek,
258f669e 1024 .release = smaps_rollup_release,
493b0e9d
DC
1025};
1026
040fa020
PE
1027enum clear_refs_types {
1028 CLEAR_REFS_ALL = 1,
1029 CLEAR_REFS_ANON,
1030 CLEAR_REFS_MAPPED,
0f8975ec 1031 CLEAR_REFS_SOFT_DIRTY,
695f0559 1032 CLEAR_REFS_MM_HIWATER_RSS,
040fa020
PE
1033 CLEAR_REFS_LAST,
1034};
1035
af9de7eb 1036struct clear_refs_private {
0f8975ec 1037 enum clear_refs_types type;
af9de7eb
PE
1038};
1039
7d5b3bfa 1040#ifdef CONFIG_MEM_SOFT_DIRTY
9348b73c 1041
9348b73c
LT
1042static inline bool pte_is_pinned(struct vm_area_struct *vma, unsigned long addr, pte_t pte)
1043{
1044 struct page *page;
1045
1046 if (!pte_write(pte))
1047 return false;
1048 if (!is_cow_mapping(vma->vm_flags))
1049 return false;
a458b76a 1050 if (likely(!test_bit(MMF_HAS_PINNED, &vma->vm_mm->flags)))
9348b73c
LT
1051 return false;
1052 page = vm_normal_page(vma, addr, pte);
1053 if (!page)
1054 return false;
1055 return page_maybe_dma_pinned(page);
1056}
1057
0f8975ec
PE
1058static inline void clear_soft_dirty(struct vm_area_struct *vma,
1059 unsigned long addr, pte_t *pte)
1060{
0f8975ec
PE
1061 /*
1062 * The soft-dirty tracker uses #PF-s to catch writes
1063 * to pages, so write-protect the pte as well. See the
1ad1335d 1064 * Documentation/admin-guide/mm/soft-dirty.rst for full description
0f8975ec
PE
1065 * of how soft-dirty works.
1066 */
1067 pte_t ptent = *pte;
179ef71c
CG
1068
1069 if (pte_present(ptent)) {
04a86453
AK
1070 pte_t old_pte;
1071
9348b73c
LT
1072 if (pte_is_pinned(vma, addr, ptent))
1073 return;
04a86453
AK
1074 old_pte = ptep_modify_prot_start(vma, addr, pte);
1075 ptent = pte_wrprotect(old_pte);
a7b76174 1076 ptent = pte_clear_soft_dirty(ptent);
04a86453 1077 ptep_modify_prot_commit(vma, addr, pte, old_pte, ptent);
179ef71c
CG
1078 } else if (is_swap_pte(ptent)) {
1079 ptent = pte_swp_clear_soft_dirty(ptent);
326c2597 1080 set_pte_at(vma->vm_mm, addr, pte, ptent);
179ef71c 1081 }
0f8975ec 1082}
5d3875a0
LD
1083#else
1084static inline void clear_soft_dirty(struct vm_area_struct *vma,
1085 unsigned long addr, pte_t *pte)
1086{
1087}
1088#endif
0f8975ec 1089
5d3875a0 1090#if defined(CONFIG_MEM_SOFT_DIRTY) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
7d5b3bfa
KS
1091static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
1092 unsigned long addr, pmd_t *pmdp)
1093{
a3cf988f 1094 pmd_t old, pmd = *pmdp;
5b7abeae 1095
ab6e3d09
NH
1096 if (pmd_present(pmd)) {
1097 /* See comment in change_huge_pmd() */
a3cf988f
KS
1098 old = pmdp_invalidate(vma, addr, pmdp);
1099 if (pmd_dirty(old))
ab6e3d09 1100 pmd = pmd_mkdirty(pmd);
a3cf988f 1101 if (pmd_young(old))
ab6e3d09
NH
1102 pmd = pmd_mkyoung(pmd);
1103
1104 pmd = pmd_wrprotect(pmd);
1105 pmd = pmd_clear_soft_dirty(pmd);
1106
1107 set_pmd_at(vma->vm_mm, addr, pmdp, pmd);
1108 } else if (is_migration_entry(pmd_to_swp_entry(pmd))) {
1109 pmd = pmd_swp_clear_soft_dirty(pmd);
1110 set_pmd_at(vma->vm_mm, addr, pmdp, pmd);
1111 }
7d5b3bfa 1112}
7d5b3bfa 1113#else
7d5b3bfa
KS
1114static inline void clear_soft_dirty_pmd(struct vm_area_struct *vma,
1115 unsigned long addr, pmd_t *pmdp)
1116{
1117}
1118#endif
1119
a6198797 1120static int clear_refs_pte_range(pmd_t *pmd, unsigned long addr,
2165009b 1121 unsigned long end, struct mm_walk *walk)
a6198797 1122{
af9de7eb 1123 struct clear_refs_private *cp = walk->private;
5c64f52a 1124 struct vm_area_struct *vma = walk->vma;
a6198797
MM
1125 pte_t *pte, ptent;
1126 spinlock_t *ptl;
1127 struct page *page;
1128
b6ec57f4
KS
1129 ptl = pmd_trans_huge_lock(pmd, vma);
1130 if (ptl) {
7d5b3bfa
KS
1131 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
1132 clear_soft_dirty_pmd(vma, addr, pmd);
1133 goto out;
1134 }
1135
84c3fc4e
ZY
1136 if (!pmd_present(*pmd))
1137 goto out;
1138
7d5b3bfa
KS
1139 page = pmd_page(*pmd);
1140
1141 /* Clear accessed and referenced bits. */
1142 pmdp_test_and_clear_young(vma, addr, pmd);
33c3fc71 1143 test_and_clear_page_young(page);
7d5b3bfa
KS
1144 ClearPageReferenced(page);
1145out:
1146 spin_unlock(ptl);
1147 return 0;
1148 }
1149
1a5a9906
AA
1150 if (pmd_trans_unstable(pmd))
1151 return 0;
03319327 1152
a6198797
MM
1153 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
1154 for (; addr != end; pte++, addr += PAGE_SIZE) {
1155 ptent = *pte;
a6198797 1156
0f8975ec
PE
1157 if (cp->type == CLEAR_REFS_SOFT_DIRTY) {
1158 clear_soft_dirty(vma, addr, pte);
1159 continue;
1160 }
1161
179ef71c
CG
1162 if (!pte_present(ptent))
1163 continue;
1164
a6198797
MM
1165 page = vm_normal_page(vma, addr, ptent);
1166 if (!page)
1167 continue;
1168
1169 /* Clear accessed and referenced bits. */
1170 ptep_test_and_clear_young(vma, addr, pte);
33c3fc71 1171 test_and_clear_page_young(page);
a6198797
MM
1172 ClearPageReferenced(page);
1173 }
1174 pte_unmap_unlock(pte - 1, ptl);
1175 cond_resched();
1176 return 0;
1177}
1178
5c64f52a
NH
1179static int clear_refs_test_walk(unsigned long start, unsigned long end,
1180 struct mm_walk *walk)
1181{
1182 struct clear_refs_private *cp = walk->private;
1183 struct vm_area_struct *vma = walk->vma;
1184
48684a65
NH
1185 if (vma->vm_flags & VM_PFNMAP)
1186 return 1;
1187
5c64f52a
NH
1188 /*
1189 * Writing 1 to /proc/pid/clear_refs affects all pages.
1190 * Writing 2 to /proc/pid/clear_refs only affects anonymous pages.
1191 * Writing 3 to /proc/pid/clear_refs only affects file mapped pages.
1192 * Writing 4 to /proc/pid/clear_refs affects all pages.
1193 */
1194 if (cp->type == CLEAR_REFS_ANON && vma->vm_file)
1195 return 1;
1196 if (cp->type == CLEAR_REFS_MAPPED && !vma->vm_file)
1197 return 1;
1198 return 0;
1199}
1200
7b86ac33
CH
1201static const struct mm_walk_ops clear_refs_walk_ops = {
1202 .pmd_entry = clear_refs_pte_range,
1203 .test_walk = clear_refs_test_walk,
1204};
1205
f248dcb3
MM
1206static ssize_t clear_refs_write(struct file *file, const char __user *buf,
1207 size_t count, loff_t *ppos)
b813e931 1208{
f248dcb3 1209 struct task_struct *task;
fb92a4b0 1210 char buffer[PROC_NUMBUF];
f248dcb3 1211 struct mm_struct *mm;
b813e931 1212 struct vm_area_struct *vma;
040fa020
PE
1213 enum clear_refs_types type;
1214 int itype;
0a8cb8e3 1215 int rv;
b813e931 1216
f248dcb3
MM
1217 memset(buffer, 0, sizeof(buffer));
1218 if (count > sizeof(buffer) - 1)
1219 count = sizeof(buffer) - 1;
1220 if (copy_from_user(buffer, buf, count))
1221 return -EFAULT;
040fa020 1222 rv = kstrtoint(strstrip(buffer), 10, &itype);
0a8cb8e3
AD
1223 if (rv < 0)
1224 return rv;
040fa020
PE
1225 type = (enum clear_refs_types)itype;
1226 if (type < CLEAR_REFS_ALL || type >= CLEAR_REFS_LAST)
f248dcb3 1227 return -EINVAL;
541c237c 1228
496ad9aa 1229 task = get_proc_task(file_inode(file));
f248dcb3
MM
1230 if (!task)
1231 return -ESRCH;
1232 mm = get_task_mm(task);
1233 if (mm) {
ac46d4f3 1234 struct mmu_notifier_range range;
af9de7eb 1235 struct clear_refs_private cp = {
0f8975ec 1236 .type = type,
af9de7eb 1237 };
695f0559 1238
29a951df
LT
1239 if (mmap_write_lock_killable(mm)) {
1240 count = -EINTR;
1241 goto out_mm;
1242 }
695f0559
PC
1243 if (type == CLEAR_REFS_MM_HIWATER_RSS) {
1244 /*
1245 * Writing 5 to /proc/pid/clear_refs resets the peak
1246 * resident set size to this mm's current rss value.
1247 */
695f0559 1248 reset_mm_hiwater_rss(mm);
29a951df 1249 goto out_unlock;
695f0559
PC
1250 }
1251
64e45507
PF
1252 if (type == CLEAR_REFS_SOFT_DIRTY) {
1253 for (vma = mm->mmap; vma; vma = vma->vm_next) {
1254 if (!(vma->vm_flags & VM_SOFTDIRTY))
1255 continue;
29a951df
LT
1256 vma->vm_flags &= ~VM_SOFTDIRTY;
1257 vma_set_page_prot(vma);
64e45507 1258 }
ac46d4f3 1259
912efa17 1260 inc_tlb_flush_pending(mm);
7269f999
JG
1261 mmu_notifier_range_init(&range, MMU_NOTIFY_SOFT_DIRTY,
1262 0, NULL, mm, 0, -1UL);
ac46d4f3 1263 mmu_notifier_invalidate_range_start(&range);
64e45507 1264 }
7b86ac33
CH
1265 walk_page_range(mm, 0, mm->highest_vm_end, &clear_refs_walk_ops,
1266 &cp);
912efa17 1267 if (type == CLEAR_REFS_SOFT_DIRTY) {
ac46d4f3 1268 mmu_notifier_invalidate_range_end(&range);
912efa17
WD
1269 flush_tlb_mm(mm);
1270 dec_tlb_flush_pending(mm);
1271 }
29a951df
LT
1272out_unlock:
1273 mmap_write_unlock(mm);
695f0559 1274out_mm:
f248dcb3
MM
1275 mmput(mm);
1276 }
1277 put_task_struct(task);
fb92a4b0
VL
1278
1279 return count;
b813e931
DR
1280}
1281
f248dcb3
MM
1282const struct file_operations proc_clear_refs_operations = {
1283 .write = clear_refs_write,
6038f373 1284 .llseek = noop_llseek,
f248dcb3
MM
1285};
1286
092b50ba
NH
1287typedef struct {
1288 u64 pme;
1289} pagemap_entry_t;
1290
85863e47 1291struct pagemapread {
8c829622 1292 int pos, len; /* units: PM_ENTRY_BYTES, not bytes */
092b50ba 1293 pagemap_entry_t *buffer;
1c90308e 1294 bool show_pfn;
85863e47
MM
1295};
1296
5aaabe83
NH
1297#define PAGEMAP_WALK_SIZE (PMD_SIZE)
1298#define PAGEMAP_WALK_MASK (PMD_MASK)
1299
deb94544
KK
1300#define PM_ENTRY_BYTES sizeof(pagemap_entry_t)
1301#define PM_PFRAME_BITS 55
1302#define PM_PFRAME_MASK GENMASK_ULL(PM_PFRAME_BITS - 1, 0)
1303#define PM_SOFT_DIRTY BIT_ULL(55)
77bb499b 1304#define PM_MMAP_EXCLUSIVE BIT_ULL(56)
deb94544
KK
1305#define PM_FILE BIT_ULL(61)
1306#define PM_SWAP BIT_ULL(62)
1307#define PM_PRESENT BIT_ULL(63)
1308
85863e47
MM
1309#define PM_END_OF_BUFFER 1
1310
deb94544 1311static inline pagemap_entry_t make_pme(u64 frame, u64 flags)
092b50ba 1312{
deb94544 1313 return (pagemap_entry_t) { .pme = (frame & PM_PFRAME_MASK) | flags };
092b50ba
NH
1314}
1315
1316static int add_to_pagemap(unsigned long addr, pagemap_entry_t *pme,
85863e47
MM
1317 struct pagemapread *pm)
1318{
092b50ba 1319 pm->buffer[pm->pos++] = *pme;
d82ef020 1320 if (pm->pos >= pm->len)
aae8679b 1321 return PM_END_OF_BUFFER;
85863e47
MM
1322 return 0;
1323}
1324
1325static int pagemap_pte_hole(unsigned long start, unsigned long end,
b7a16c7a 1326 __always_unused int depth, struct mm_walk *walk)
85863e47 1327{
2165009b 1328 struct pagemapread *pm = walk->private;
68b5a652 1329 unsigned long addr = start;
85863e47 1330 int err = 0;
092b50ba 1331
68b5a652
PF
1332 while (addr < end) {
1333 struct vm_area_struct *vma = find_vma(walk->mm, addr);
deb94544 1334 pagemap_entry_t pme = make_pme(0, 0);
87e6d49a
PF
1335 /* End of address space hole, which we mark as non-present. */
1336 unsigned long hole_end;
68b5a652 1337
87e6d49a
PF
1338 if (vma)
1339 hole_end = min(end, vma->vm_start);
1340 else
1341 hole_end = end;
1342
1343 for (; addr < hole_end; addr += PAGE_SIZE) {
1344 err = add_to_pagemap(addr, &pme, pm);
1345 if (err)
1346 goto out;
68b5a652
PF
1347 }
1348
87e6d49a
PF
1349 if (!vma)
1350 break;
1351
1352 /* Addresses in the VMA. */
1353 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1354 pme = make_pme(0, PM_SOFT_DIRTY);
87e6d49a 1355 for (; addr < min(end, vma->vm_end); addr += PAGE_SIZE) {
68b5a652
PF
1356 err = add_to_pagemap(addr, &pme, pm);
1357 if (err)
1358 goto out;
1359 }
85863e47 1360 }
68b5a652 1361out:
85863e47
MM
1362 return err;
1363}
1364
deb94544 1365static pagemap_entry_t pte_to_pagemap_entry(struct pagemapread *pm,
052fb0d6 1366 struct vm_area_struct *vma, unsigned long addr, pte_t pte)
85863e47 1367{
deb94544 1368 u64 frame = 0, flags = 0;
052fb0d6 1369 struct page *page = NULL;
85863e47 1370
052fb0d6 1371 if (pte_present(pte)) {
1c90308e
KK
1372 if (pm->show_pfn)
1373 frame = pte_pfn(pte);
deb94544 1374 flags |= PM_PRESENT;
25b2995a 1375 page = vm_normal_page(vma, addr, pte);
e9cdd6e7 1376 if (pte_soft_dirty(pte))
deb94544 1377 flags |= PM_SOFT_DIRTY;
052fb0d6 1378 } else if (is_swap_pte(pte)) {
179ef71c
CG
1379 swp_entry_t entry;
1380 if (pte_swp_soft_dirty(pte))
deb94544 1381 flags |= PM_SOFT_DIRTY;
179ef71c 1382 entry = pte_to_swp_entry(pte);
ab6ecf24
HY
1383 if (pm->show_pfn)
1384 frame = swp_type(entry) |
1385 (swp_offset(entry) << MAX_SWAPFILES_SHIFT);
deb94544 1386 flags |= PM_SWAP;
052fb0d6
KK
1387 if (is_migration_entry(entry))
1388 page = migration_entry_to_page(entry);
5042db43
JG
1389
1390 if (is_device_private_entry(entry))
1391 page = device_private_entry_to_page(entry);
052fb0d6
KK
1392 }
1393
1394 if (page && !PageAnon(page))
1395 flags |= PM_FILE;
77bb499b
KK
1396 if (page && page_mapcount(page) == 1)
1397 flags |= PM_MMAP_EXCLUSIVE;
deb94544
KK
1398 if (vma->vm_flags & VM_SOFTDIRTY)
1399 flags |= PM_SOFT_DIRTY;
052fb0d6 1400
deb94544 1401 return make_pme(frame, flags);
bcf8039e
DH
1402}
1403
356515e7 1404static int pagemap_pmd_range(pmd_t *pmdp, unsigned long addr, unsigned long end,
2165009b 1405 struct mm_walk *walk)
85863e47 1406{
f995ece2 1407 struct vm_area_struct *vma = walk->vma;
2165009b 1408 struct pagemapread *pm = walk->private;
bf929152 1409 spinlock_t *ptl;
05fbf357 1410 pte_t *pte, *orig_pte;
85863e47
MM
1411 int err = 0;
1412
356515e7 1413#ifdef CONFIG_TRANSPARENT_HUGEPAGE
b6ec57f4
KS
1414 ptl = pmd_trans_huge_lock(pmdp, vma);
1415 if (ptl) {
356515e7
KK
1416 u64 flags = 0, frame = 0;
1417 pmd_t pmd = *pmdp;
84c3fc4e 1418 struct page *page = NULL;
0f8975ec 1419
b83d7e43 1420 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1421 flags |= PM_SOFT_DIRTY;
d9104d1c 1422
356515e7 1423 if (pmd_present(pmd)) {
84c3fc4e 1424 page = pmd_page(pmd);
77bb499b 1425
356515e7 1426 flags |= PM_PRESENT;
b83d7e43
HY
1427 if (pmd_soft_dirty(pmd))
1428 flags |= PM_SOFT_DIRTY;
1c90308e
KK
1429 if (pm->show_pfn)
1430 frame = pmd_pfn(pmd) +
1431 ((addr & ~PMD_MASK) >> PAGE_SHIFT);
356515e7 1432 }
84c3fc4e
ZY
1433#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1434 else if (is_swap_pmd(pmd)) {
1435 swp_entry_t entry = pmd_to_swp_entry(pmd);
ab6ecf24 1436 unsigned long offset;
84c3fc4e 1437
ab6ecf24
HY
1438 if (pm->show_pfn) {
1439 offset = swp_offset(entry) +
1440 ((addr & ~PMD_MASK) >> PAGE_SHIFT);
1441 frame = swp_type(entry) |
1442 (offset << MAX_SWAPFILES_SHIFT);
1443 }
84c3fc4e 1444 flags |= PM_SWAP;
b83d7e43
HY
1445 if (pmd_swp_soft_dirty(pmd))
1446 flags |= PM_SOFT_DIRTY;
84c3fc4e
ZY
1447 VM_BUG_ON(!is_pmd_migration_entry(pmd));
1448 page = migration_entry_to_page(entry);
1449 }
1450#endif
1451
1452 if (page && page_mapcount(page) == 1)
1453 flags |= PM_MMAP_EXCLUSIVE;
356515e7 1454
025c5b24 1455 for (; addr != end; addr += PAGE_SIZE) {
356515e7 1456 pagemap_entry_t pme = make_pme(frame, flags);
025c5b24 1457
092b50ba 1458 err = add_to_pagemap(addr, &pme, pm);
025c5b24
NH
1459 if (err)
1460 break;
ab6ecf24
HY
1461 if (pm->show_pfn) {
1462 if (flags & PM_PRESENT)
1463 frame++;
1464 else if (flags & PM_SWAP)
1465 frame += (1 << MAX_SWAPFILES_SHIFT);
1466 }
5aaabe83 1467 }
bf929152 1468 spin_unlock(ptl);
025c5b24 1469 return err;
5aaabe83
NH
1470 }
1471
356515e7 1472 if (pmd_trans_unstable(pmdp))
45f83cef 1473 return 0;
356515e7 1474#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
81d0fa62 1475
f995ece2
NH
1476 /*
1477 * We can assume that @vma always points to a valid one and @end never
1478 * goes beyond vma->vm_end.
1479 */
356515e7 1480 orig_pte = pte = pte_offset_map_lock(walk->mm, pmdp, addr, &ptl);
f995ece2
NH
1481 for (; addr < end; pte++, addr += PAGE_SIZE) {
1482 pagemap_entry_t pme;
05fbf357 1483
deb94544 1484 pme = pte_to_pagemap_entry(pm, vma, addr, *pte);
f995ece2 1485 err = add_to_pagemap(addr, &pme, pm);
05fbf357 1486 if (err)
81d0fa62 1487 break;
85863e47 1488 }
f995ece2 1489 pte_unmap_unlock(orig_pte, ptl);
85863e47
MM
1490
1491 cond_resched();
1492
1493 return err;
1494}
1495
1a5cb814 1496#ifdef CONFIG_HUGETLB_PAGE
116354d1 1497/* This function walks within one hugetlb entry in the single call */
356515e7 1498static int pagemap_hugetlb_range(pte_t *ptep, unsigned long hmask,
116354d1
NH
1499 unsigned long addr, unsigned long end,
1500 struct mm_walk *walk)
5dc37642 1501{
5dc37642 1502 struct pagemapread *pm = walk->private;
f995ece2 1503 struct vm_area_struct *vma = walk->vma;
356515e7 1504 u64 flags = 0, frame = 0;
5dc37642 1505 int err = 0;
356515e7 1506 pte_t pte;
5dc37642 1507
f995ece2 1508 if (vma->vm_flags & VM_SOFTDIRTY)
deb94544 1509 flags |= PM_SOFT_DIRTY;
d9104d1c 1510
356515e7
KK
1511 pte = huge_ptep_get(ptep);
1512 if (pte_present(pte)) {
1513 struct page *page = pte_page(pte);
1514
1515 if (!PageAnon(page))
1516 flags |= PM_FILE;
1517
77bb499b
KK
1518 if (page_mapcount(page) == 1)
1519 flags |= PM_MMAP_EXCLUSIVE;
1520
356515e7 1521 flags |= PM_PRESENT;
1c90308e
KK
1522 if (pm->show_pfn)
1523 frame = pte_pfn(pte) +
1524 ((addr & ~hmask) >> PAGE_SHIFT);
356515e7
KK
1525 }
1526
5dc37642 1527 for (; addr != end; addr += PAGE_SIZE) {
356515e7
KK
1528 pagemap_entry_t pme = make_pme(frame, flags);
1529
092b50ba 1530 err = add_to_pagemap(addr, &pme, pm);
5dc37642
NH
1531 if (err)
1532 return err;
1c90308e 1533 if (pm->show_pfn && (flags & PM_PRESENT))
356515e7 1534 frame++;
5dc37642
NH
1535 }
1536
1537 cond_resched();
1538
1539 return err;
1540}
7b86ac33
CH
1541#else
1542#define pagemap_hugetlb_range NULL
1a5cb814 1543#endif /* HUGETLB_PAGE */
5dc37642 1544
7b86ac33
CH
1545static const struct mm_walk_ops pagemap_ops = {
1546 .pmd_entry = pagemap_pmd_range,
1547 .pte_hole = pagemap_pte_hole,
1548 .hugetlb_entry = pagemap_hugetlb_range,
1549};
1550
85863e47
MM
1551/*
1552 * /proc/pid/pagemap - an array mapping virtual pages to pfns
1553 *
f16278c6
HR
1554 * For each page in the address space, this file contains one 64-bit entry
1555 * consisting of the following:
1556 *
052fb0d6 1557 * Bits 0-54 page frame number (PFN) if present
f16278c6 1558 * Bits 0-4 swap type if swapped
052fb0d6 1559 * Bits 5-54 swap offset if swapped
1ad1335d 1560 * Bit 55 pte is soft-dirty (see Documentation/admin-guide/mm/soft-dirty.rst)
77bb499b
KK
1561 * Bit 56 page exclusively mapped
1562 * Bits 57-60 zero
052fb0d6 1563 * Bit 61 page is file-page or shared-anon
f16278c6
HR
1564 * Bit 62 page swapped
1565 * Bit 63 page present
1566 *
1567 * If the page is not present but in swap, then the PFN contains an
1568 * encoding of the swap file number and the page's offset into the
1569 * swap. Unmapped pages return a null PFN. This allows determining
85863e47
MM
1570 * precisely which pages are mapped (or in swap) and comparing mapped
1571 * pages between processes.
1572 *
1573 * Efficient users of this interface will use /proc/pid/maps to
1574 * determine which areas of memory are actually mapped and llseek to
1575 * skip over unmapped regions.
1576 */
1577static ssize_t pagemap_read(struct file *file, char __user *buf,
1578 size_t count, loff_t *ppos)
1579{
a06db751 1580 struct mm_struct *mm = file->private_data;
85863e47 1581 struct pagemapread pm;
5d7e0d2b
AM
1582 unsigned long src;
1583 unsigned long svpfn;
1584 unsigned long start_vaddr;
1585 unsigned long end_vaddr;
a06db751 1586 int ret = 0, copied = 0;
85863e47 1587
388f7934 1588 if (!mm || !mmget_not_zero(mm))
85863e47
MM
1589 goto out;
1590
85863e47
MM
1591 ret = -EINVAL;
1592 /* file position must be aligned */
aae8679b 1593 if ((*ppos % PM_ENTRY_BYTES) || (count % PM_ENTRY_BYTES))
a06db751 1594 goto out_mm;
85863e47
MM
1595
1596 ret = 0;
08161786 1597 if (!count)
a06db751 1598 goto out_mm;
08161786 1599
1c90308e
KK
1600 /* do not disclose physical addresses: attack vector */
1601 pm.show_pfn = file_ns_capable(file, &init_user_ns, CAP_SYS_ADMIN);
1602
8c829622 1603 pm.len = (PAGEMAP_WALK_SIZE >> PAGE_SHIFT);
6da2ec56 1604 pm.buffer = kmalloc_array(pm.len, PM_ENTRY_BYTES, GFP_KERNEL);
5d7e0d2b 1605 ret = -ENOMEM;
d82ef020 1606 if (!pm.buffer)
a06db751 1607 goto out_mm;
85863e47 1608
5d7e0d2b
AM
1609 src = *ppos;
1610 svpfn = src / PM_ENTRY_BYTES;
a06db751 1611 end_vaddr = mm->task_size;
5d7e0d2b
AM
1612
1613 /* watch out for wraparound */
40d6366e
MC
1614 start_vaddr = end_vaddr;
1615 if (svpfn <= (ULONG_MAX >> PAGE_SHIFT))
1616 start_vaddr = untagged_addr(svpfn << PAGE_SHIFT);
1617
1618 /* Ensure the address is inside the task */
1619 if (start_vaddr > mm->task_size)
5d7e0d2b
AM
1620 start_vaddr = end_vaddr;
1621
1622 /*
1623 * The odds are that this will stop walking way
1624 * before end_vaddr, because the length of the
1625 * user buffer is tracked in "pm", and the walk
1626 * will stop when we hit the end of the buffer.
1627 */
d82ef020
KH
1628 ret = 0;
1629 while (count && (start_vaddr < end_vaddr)) {
1630 int len;
1631 unsigned long end;
1632
1633 pm.pos = 0;
ea251c1d 1634 end = (start_vaddr + PAGEMAP_WALK_SIZE) & PAGEMAP_WALK_MASK;
d82ef020
KH
1635 /* overflow ? */
1636 if (end < start_vaddr || end > end_vaddr)
1637 end = end_vaddr;
d8ed45c5 1638 ret = mmap_read_lock_killable(mm);
ad80b932
KK
1639 if (ret)
1640 goto out_free;
7b86ac33 1641 ret = walk_page_range(mm, start_vaddr, end, &pagemap_ops, &pm);
d8ed45c5 1642 mmap_read_unlock(mm);
d82ef020
KH
1643 start_vaddr = end;
1644
1645 len = min(count, PM_ENTRY_BYTES * pm.pos);
309361e0 1646 if (copy_to_user(buf, pm.buffer, len)) {
d82ef020 1647 ret = -EFAULT;
a06db751 1648 goto out_free;
d82ef020
KH
1649 }
1650 copied += len;
1651 buf += len;
1652 count -= len;
85863e47 1653 }
d82ef020
KH
1654 *ppos += copied;
1655 if (!ret || ret == PM_END_OF_BUFFER)
1656 ret = copied;
1657
98bc93e5
KM
1658out_free:
1659 kfree(pm.buffer);
a06db751
KK
1660out_mm:
1661 mmput(mm);
85863e47
MM
1662out:
1663 return ret;
1664}
1665
541c237c
PE
1666static int pagemap_open(struct inode *inode, struct file *file)
1667{
a06db751
KK
1668 struct mm_struct *mm;
1669
a06db751
KK
1670 mm = proc_mem_open(inode, PTRACE_MODE_READ);
1671 if (IS_ERR(mm))
1672 return PTR_ERR(mm);
1673 file->private_data = mm;
1674 return 0;
1675}
1676
1677static int pagemap_release(struct inode *inode, struct file *file)
1678{
1679 struct mm_struct *mm = file->private_data;
1680
1681 if (mm)
1682 mmdrop(mm);
541c237c
PE
1683 return 0;
1684}
1685
85863e47
MM
1686const struct file_operations proc_pagemap_operations = {
1687 .llseek = mem_lseek, /* borrow this */
1688 .read = pagemap_read,
541c237c 1689 .open = pagemap_open,
a06db751 1690 .release = pagemap_release,
85863e47 1691};
1e883281 1692#endif /* CONFIG_PROC_PAGE_MONITOR */
85863e47 1693
6e21c8f1 1694#ifdef CONFIG_NUMA
6e21c8f1 1695
f69ff943 1696struct numa_maps {
f69ff943
SW
1697 unsigned long pages;
1698 unsigned long anon;
1699 unsigned long active;
1700 unsigned long writeback;
1701 unsigned long mapcount_max;
1702 unsigned long dirty;
1703 unsigned long swapcache;
1704 unsigned long node[MAX_NUMNODES];
1705};
1706
5b52fc89
SW
1707struct numa_maps_private {
1708 struct proc_maps_private proc_maps;
1709 struct numa_maps md;
1710};
1711
eb4866d0
DH
1712static void gather_stats(struct page *page, struct numa_maps *md, int pte_dirty,
1713 unsigned long nr_pages)
f69ff943
SW
1714{
1715 int count = page_mapcount(page);
1716
eb4866d0 1717 md->pages += nr_pages;
f69ff943 1718 if (pte_dirty || PageDirty(page))
eb4866d0 1719 md->dirty += nr_pages;
f69ff943
SW
1720
1721 if (PageSwapCache(page))
eb4866d0 1722 md->swapcache += nr_pages;
f69ff943
SW
1723
1724 if (PageActive(page) || PageUnevictable(page))
eb4866d0 1725 md->active += nr_pages;
f69ff943
SW
1726
1727 if (PageWriteback(page))
eb4866d0 1728 md->writeback += nr_pages;
f69ff943
SW
1729
1730 if (PageAnon(page))
eb4866d0 1731 md->anon += nr_pages;
f69ff943
SW
1732
1733 if (count > md->mapcount_max)
1734 md->mapcount_max = count;
1735
eb4866d0 1736 md->node[page_to_nid(page)] += nr_pages;
f69ff943
SW
1737}
1738
3200a8aa
DH
1739static struct page *can_gather_numa_stats(pte_t pte, struct vm_area_struct *vma,
1740 unsigned long addr)
1741{
1742 struct page *page;
1743 int nid;
1744
1745 if (!pte_present(pte))
1746 return NULL;
1747
1748 page = vm_normal_page(vma, addr, pte);
1749 if (!page)
1750 return NULL;
1751
1752 if (PageReserved(page))
1753 return NULL;
1754
1755 nid = page_to_nid(page);
4ff1b2c2 1756 if (!node_isset(nid, node_states[N_MEMORY]))
3200a8aa
DH
1757 return NULL;
1758
1759 return page;
1760}
1761
28093f9f
GS
1762#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1763static struct page *can_gather_numa_stats_pmd(pmd_t pmd,
1764 struct vm_area_struct *vma,
1765 unsigned long addr)
1766{
1767 struct page *page;
1768 int nid;
1769
1770 if (!pmd_present(pmd))
1771 return NULL;
1772
1773 page = vm_normal_page_pmd(vma, addr, pmd);
1774 if (!page)
1775 return NULL;
1776
1777 if (PageReserved(page))
1778 return NULL;
1779
1780 nid = page_to_nid(page);
1781 if (!node_isset(nid, node_states[N_MEMORY]))
1782 return NULL;
1783
1784 return page;
1785}
1786#endif
1787
f69ff943
SW
1788static int gather_pte_stats(pmd_t *pmd, unsigned long addr,
1789 unsigned long end, struct mm_walk *walk)
1790{
d85f4d6d
NH
1791 struct numa_maps *md = walk->private;
1792 struct vm_area_struct *vma = walk->vma;
f69ff943
SW
1793 spinlock_t *ptl;
1794 pte_t *orig_pte;
1795 pte_t *pte;
1796
28093f9f 1797#ifdef CONFIG_TRANSPARENT_HUGEPAGE
b6ec57f4
KS
1798 ptl = pmd_trans_huge_lock(pmd, vma);
1799 if (ptl) {
025c5b24
NH
1800 struct page *page;
1801
28093f9f 1802 page = can_gather_numa_stats_pmd(*pmd, vma, addr);
025c5b24 1803 if (page)
28093f9f 1804 gather_stats(page, md, pmd_dirty(*pmd),
025c5b24 1805 HPAGE_PMD_SIZE/PAGE_SIZE);
bf929152 1806 spin_unlock(ptl);
025c5b24 1807 return 0;
32ef4384
DH
1808 }
1809
1a5a9906
AA
1810 if (pmd_trans_unstable(pmd))
1811 return 0;
28093f9f 1812#endif
f69ff943
SW
1813 orig_pte = pte = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
1814 do {
d85f4d6d 1815 struct page *page = can_gather_numa_stats(*pte, vma, addr);
f69ff943
SW
1816 if (!page)
1817 continue;
eb4866d0 1818 gather_stats(page, md, pte_dirty(*pte), 1);
f69ff943
SW
1819
1820 } while (pte++, addr += PAGE_SIZE, addr != end);
1821 pte_unmap_unlock(orig_pte, ptl);
a66c0410 1822 cond_resched();
f69ff943
SW
1823 return 0;
1824}
1825#ifdef CONFIG_HUGETLB_PAGE
632fd60f 1826static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1827 unsigned long addr, unsigned long end, struct mm_walk *walk)
1828{
5c2ff95e 1829 pte_t huge_pte = huge_ptep_get(pte);
f69ff943
SW
1830 struct numa_maps *md;
1831 struct page *page;
1832
5c2ff95e 1833 if (!pte_present(huge_pte))
f69ff943
SW
1834 return 0;
1835
5c2ff95e 1836 page = pte_page(huge_pte);
f69ff943
SW
1837 if (!page)
1838 return 0;
1839
1840 md = walk->private;
5c2ff95e 1841 gather_stats(page, md, pte_dirty(huge_pte), 1);
f69ff943
SW
1842 return 0;
1843}
1844
1845#else
632fd60f 1846static int gather_hugetlb_stats(pte_t *pte, unsigned long hmask,
f69ff943
SW
1847 unsigned long addr, unsigned long end, struct mm_walk *walk)
1848{
1849 return 0;
1850}
1851#endif
1852
7b86ac33
CH
1853static const struct mm_walk_ops show_numa_ops = {
1854 .hugetlb_entry = gather_hugetlb_stats,
1855 .pmd_entry = gather_pte_stats,
1856};
1857
f69ff943
SW
1858/*
1859 * Display pages allocated per node and memory policy via /proc.
1860 */
871305bb 1861static int show_numa_map(struct seq_file *m, void *v)
f69ff943 1862{
5b52fc89
SW
1863 struct numa_maps_private *numa_priv = m->private;
1864 struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
f69ff943 1865 struct vm_area_struct *vma = v;
5b52fc89 1866 struct numa_maps *md = &numa_priv->md;
f69ff943
SW
1867 struct file *file = vma->vm_file;
1868 struct mm_struct *mm = vma->vm_mm;
f69ff943 1869 struct mempolicy *pol;
948927ee
DR
1870 char buffer[64];
1871 int nid;
f69ff943
SW
1872
1873 if (!mm)
1874 return 0;
1875
5b52fc89
SW
1876 /* Ensure we start with an empty set of numa_maps statistics. */
1877 memset(md, 0, sizeof(*md));
f69ff943 1878
498f2371
ON
1879 pol = __get_vma_policy(vma, vma->vm_start);
1880 if (pol) {
1881 mpol_to_str(buffer, sizeof(buffer), pol);
1882 mpol_cond_put(pol);
1883 } else {
1884 mpol_to_str(buffer, sizeof(buffer), proc_priv->task_mempolicy);
1885 }
f69ff943
SW
1886
1887 seq_printf(m, "%08lx %s", vma->vm_start, buffer);
1888
1889 if (file) {
17c2b4ee 1890 seq_puts(m, " file=");
2726d566 1891 seq_file_path(m, file, "\n\t= ");
f69ff943 1892 } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
17c2b4ee 1893 seq_puts(m, " heap");
1240ea0d 1894 } else if (is_stack(vma)) {
65376df5 1895 seq_puts(m, " stack");
f69ff943
SW
1896 }
1897
fc360bd9 1898 if (is_vm_hugetlb_page(vma))
17c2b4ee 1899 seq_puts(m, " huge");
fc360bd9 1900
c1e8d7c6 1901 /* mmap_lock is held by m_start */
7b86ac33 1902 walk_page_vma(vma, &show_numa_ops, md);
f69ff943
SW
1903
1904 if (!md->pages)
1905 goto out;
1906
1907 if (md->anon)
1908 seq_printf(m, " anon=%lu", md->anon);
1909
1910 if (md->dirty)
1911 seq_printf(m, " dirty=%lu", md->dirty);
1912
1913 if (md->pages != md->anon && md->pages != md->dirty)
1914 seq_printf(m, " mapped=%lu", md->pages);
1915
1916 if (md->mapcount_max > 1)
1917 seq_printf(m, " mapmax=%lu", md->mapcount_max);
1918
1919 if (md->swapcache)
1920 seq_printf(m, " swapcache=%lu", md->swapcache);
1921
1922 if (md->active < md->pages && !is_vm_hugetlb_page(vma))
1923 seq_printf(m, " active=%lu", md->active);
1924
1925 if (md->writeback)
1926 seq_printf(m, " writeback=%lu", md->writeback);
1927
948927ee
DR
1928 for_each_node_state(nid, N_MEMORY)
1929 if (md->node[nid])
1930 seq_printf(m, " N%d=%lu", nid, md->node[nid]);
198d1597
RA
1931
1932 seq_printf(m, " kernelpagesize_kB=%lu", vma_kernel_pagesize(vma) >> 10);
f69ff943
SW
1933out:
1934 seq_putc(m, '\n');
f69ff943
SW
1935 return 0;
1936}
5b52fc89 1937
03a44825 1938static const struct seq_operations proc_pid_numa_maps_op = {
b7643757
SP
1939 .start = m_start,
1940 .next = m_next,
1941 .stop = m_stop,
871305bb 1942 .show = show_numa_map,
6e21c8f1 1943};
662795de 1944
b7643757
SP
1945static int pid_numa_maps_open(struct inode *inode, struct file *file)
1946{
871305bb
VB
1947 return proc_maps_open(inode, file, &proc_pid_numa_maps_op,
1948 sizeof(struct numa_maps_private));
b7643757
SP
1949}
1950
1951const struct file_operations proc_pid_numa_maps_operations = {
1952 .open = pid_numa_maps_open,
1953 .read = seq_read,
1954 .llseek = seq_lseek,
29a40ace 1955 .release = proc_map_release,
b7643757
SP
1956};
1957
f69ff943 1958#endif /* CONFIG_NUMA */