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