2 #include <linux/hugetlb.h>
3 #include <linux/huge_mm.h>
4 #include <linux/mount.h>
5 #include <linux/seq_file.h>
6 #include <linux/highmem.h>
7 #include <linux/ptrace.h>
8 #include <linux/slab.h>
9 #include <linux/pagemap.h>
10 #include <linux/mempolicy.h>
11 #include <linux/rmap.h>
12 #include <linux/swap.h>
13 #include <linux/swapops.h>
16 #include <asm/uaccess.h>
17 #include <asm/tlbflush.h>
20 void task_mem(struct seq_file
*m
, struct mm_struct
*mm
)
22 unsigned long data
, text
, lib
, swap
;
23 unsigned long hiwater_vm
, total_vm
, hiwater_rss
, total_rss
;
26 * Note: to minimize their overhead, mm maintains hiwater_vm and
27 * hiwater_rss only when about to *lower* total_vm or rss. Any
28 * collector of these hiwater stats must therefore get total_vm
29 * and rss too, which will usually be the higher. Barriers? not
30 * worth the effort, such snapshots can always be inconsistent.
32 hiwater_vm
= total_vm
= mm
->total_vm
;
33 if (hiwater_vm
< mm
->hiwater_vm
)
34 hiwater_vm
= mm
->hiwater_vm
;
35 hiwater_rss
= total_rss
= get_mm_rss(mm
);
36 if (hiwater_rss
< mm
->hiwater_rss
)
37 hiwater_rss
= mm
->hiwater_rss
;
39 data
= mm
->total_vm
- mm
->shared_vm
- mm
->stack_vm
;
40 text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
)) >> 10;
41 lib
= (mm
->exec_vm
<< (PAGE_SHIFT
-10)) - text
;
42 swap
= get_mm_counter(mm
, MM_SWAPENTS
);
56 hiwater_vm
<< (PAGE_SHIFT
-10),
57 (total_vm
- mm
->reserved_vm
) << (PAGE_SHIFT
-10),
58 mm
->locked_vm
<< (PAGE_SHIFT
-10),
59 mm
->pinned_vm
<< (PAGE_SHIFT
-10),
60 hiwater_rss
<< (PAGE_SHIFT
-10),
61 total_rss
<< (PAGE_SHIFT
-10),
62 data
<< (PAGE_SHIFT
-10),
63 mm
->stack_vm
<< (PAGE_SHIFT
-10), text
, lib
,
64 (PTRS_PER_PTE
*sizeof(pte_t
)*mm
->nr_ptes
) >> 10,
65 swap
<< (PAGE_SHIFT
-10));
68 unsigned long task_vsize(struct mm_struct
*mm
)
70 return PAGE_SIZE
* mm
->total_vm
;
73 unsigned long task_statm(struct mm_struct
*mm
,
74 unsigned long *shared
, unsigned long *text
,
75 unsigned long *data
, unsigned long *resident
)
77 *shared
= get_mm_counter(mm
, MM_FILEPAGES
);
78 *text
= (PAGE_ALIGN(mm
->end_code
) - (mm
->start_code
& PAGE_MASK
))
80 *data
= mm
->total_vm
- mm
->shared_vm
;
81 *resident
= *shared
+ get_mm_counter(mm
, MM_ANONPAGES
);
85 static void pad_len_spaces(struct seq_file
*m
, int len
)
87 len
= 25 + sizeof(void*) * 6 - len
;
90 seq_printf(m
, "%*c", len
, ' ');
93 static void vma_stop(struct proc_maps_private
*priv
, struct vm_area_struct
*vma
)
95 if (vma
&& vma
!= priv
->tail_vma
) {
96 struct mm_struct
*mm
= vma
->vm_mm
;
97 up_read(&mm
->mmap_sem
);
102 static void *m_start(struct seq_file
*m
, loff_t
*pos
)
104 struct proc_maps_private
*priv
= m
->private;
105 unsigned long last_addr
= m
->version
;
106 struct mm_struct
*mm
;
107 struct vm_area_struct
*vma
, *tail_vma
= NULL
;
110 /* Clear the per syscall fields in priv */
112 priv
->tail_vma
= NULL
;
115 * We remember last_addr rather than next_addr to hit with
116 * mmap_cache most of the time. We have zero last_addr at
117 * the beginning and also after lseek. We will have -1 last_addr
118 * after the end of the vmas.
121 if (last_addr
== -1UL)
124 priv
->task
= get_pid_task(priv
->pid
, PIDTYPE_PID
);
126 return ERR_PTR(-ESRCH
);
128 mm
= mm_access(priv
->task
, PTRACE_MODE_READ
);
129 if (!mm
|| IS_ERR(mm
))
131 down_read(&mm
->mmap_sem
);
133 tail_vma
= get_gate_vma(priv
->task
->mm
);
134 priv
->tail_vma
= tail_vma
;
136 /* Start with last addr hint */
137 vma
= find_vma(mm
, last_addr
);
138 if (last_addr
&& vma
) {
144 * Check the vma index is within the range and do
145 * sequential scan until m_index.
148 if ((unsigned long)l
< mm
->map_count
) {
155 if (l
!= mm
->map_count
)
156 tail_vma
= NULL
; /* After gate vma */
162 /* End of vmas has been reached */
163 m
->version
= (tail_vma
!= NULL
)? 0: -1UL;
164 up_read(&mm
->mmap_sem
);
169 static void *m_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
171 struct proc_maps_private
*priv
= m
->private;
172 struct vm_area_struct
*vma
= v
;
173 struct vm_area_struct
*tail_vma
= priv
->tail_vma
;
176 if (vma
&& (vma
!= tail_vma
) && vma
->vm_next
)
179 return (vma
!= tail_vma
)? tail_vma
: NULL
;
182 static void m_stop(struct seq_file
*m
, void *v
)
184 struct proc_maps_private
*priv
= m
->private;
185 struct vm_area_struct
*vma
= v
;
190 put_task_struct(priv
->task
);
193 static int do_maps_open(struct inode
*inode
, struct file
*file
,
194 const struct seq_operations
*ops
)
196 struct proc_maps_private
*priv
;
198 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
200 priv
->pid
= proc_pid(inode
);
201 ret
= seq_open(file
, ops
);
203 struct seq_file
*m
= file
->private_data
;
213 show_map_vma(struct seq_file
*m
, struct vm_area_struct
*vma
, int is_pid
)
215 struct mm_struct
*mm
= vma
->vm_mm
;
216 struct file
*file
= vma
->vm_file
;
217 struct proc_maps_private
*priv
= m
->private;
218 struct task_struct
*task
= priv
->task
;
219 vm_flags_t flags
= vma
->vm_flags
;
220 unsigned long ino
= 0;
221 unsigned long long pgoff
= 0;
222 unsigned long start
, end
;
225 const char *name
= NULL
;
228 struct inode
*inode
= vma
->vm_file
->f_path
.dentry
->d_inode
;
229 dev
= inode
->i_sb
->s_dev
;
231 pgoff
= ((loff_t
)vma
->vm_pgoff
) << PAGE_SHIFT
;
234 /* We don't show the stack guard page in /proc/maps */
235 start
= vma
->vm_start
;
236 if (stack_guard_page_start(vma
, start
))
239 if (stack_guard_page_end(vma
, end
))
242 seq_printf(m
, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
245 flags
& VM_READ
? 'r' : '-',
246 flags
& VM_WRITE
? 'w' : '-',
247 flags
& VM_EXEC
? 'x' : '-',
248 flags
& VM_MAYSHARE
? 's' : 'p',
250 MAJOR(dev
), MINOR(dev
), ino
, &len
);
253 * Print the dentry name for named mappings, and a
254 * special [heap] marker for the heap:
257 pad_len_spaces(m
, len
);
258 seq_path(m
, &file
->f_path
, "\n");
262 name
= arch_vma_name(vma
);
271 if (vma
->vm_start
<= mm
->brk
&&
272 vma
->vm_end
>= mm
->start_brk
) {
277 tid
= vm_is_stack(task
, vma
, is_pid
);
281 * Thread stack in /proc/PID/task/TID/maps or
282 * the main process stack.
284 if (!is_pid
|| (vma
->vm_start
<= mm
->start_stack
&&
285 vma
->vm_end
>= mm
->start_stack
)) {
288 /* Thread stack in /proc/PID/maps */
289 pad_len_spaces(m
, len
);
290 seq_printf(m
, "[stack:%d]", tid
);
297 pad_len_spaces(m
, len
);
303 static int show_map(struct seq_file
*m
, void *v
, int is_pid
)
305 struct vm_area_struct
*vma
= v
;
306 struct proc_maps_private
*priv
= m
->private;
307 struct task_struct
*task
= priv
->task
;
309 show_map_vma(m
, vma
, is_pid
);
311 if (m
->count
< m
->size
) /* vma is copied successfully */
312 m
->version
= (vma
!= get_gate_vma(task
->mm
))
317 static int show_pid_map(struct seq_file
*m
, void *v
)
319 return show_map(m
, v
, 1);
322 static int show_tid_map(struct seq_file
*m
, void *v
)
324 return show_map(m
, v
, 0);
327 static const struct seq_operations proc_pid_maps_op
= {
334 static const struct seq_operations proc_tid_maps_op
= {
341 static int pid_maps_open(struct inode
*inode
, struct file
*file
)
343 return do_maps_open(inode
, file
, &proc_pid_maps_op
);
346 static int tid_maps_open(struct inode
*inode
, struct file
*file
)
348 return do_maps_open(inode
, file
, &proc_tid_maps_op
);
351 const struct file_operations proc_pid_maps_operations
= {
352 .open
= pid_maps_open
,
355 .release
= seq_release_private
,
358 const struct file_operations proc_tid_maps_operations
= {
359 .open
= tid_maps_open
,
362 .release
= seq_release_private
,
366 * Proportional Set Size(PSS): my share of RSS.
368 * PSS of a process is the count of pages it has in memory, where each
369 * page is divided by the number of processes sharing it. So if a
370 * process has 1000 pages all to itself, and 1000 shared with one other
371 * process, its PSS will be 1500.
373 * To keep (accumulated) division errors low, we adopt a 64bit
374 * fixed-point pss counter to minimize division errors. So (pss >>
375 * PSS_SHIFT) would be the real byte count.
377 * A shift of 12 before division means (assuming 4K page size):
378 * - 1M 3-user-pages add up to 8KB errors;
379 * - supports mapcount up to 2^24, or 16M;
380 * - supports PSS up to 2^52 bytes, or 4PB.
384 #ifdef CONFIG_PROC_PAGE_MONITOR
385 struct mem_size_stats
{
386 struct vm_area_struct
*vma
;
387 unsigned long resident
;
388 unsigned long shared_clean
;
389 unsigned long shared_dirty
;
390 unsigned long private_clean
;
391 unsigned long private_dirty
;
392 unsigned long referenced
;
393 unsigned long anonymous
;
394 unsigned long anonymous_thp
;
396 unsigned long nonlinear
;
401 static void smaps_pte_entry(pte_t ptent
, unsigned long addr
,
402 unsigned long ptent_size
, struct mm_walk
*walk
)
404 struct mem_size_stats
*mss
= walk
->private;
405 struct vm_area_struct
*vma
= mss
->vma
;
406 pgoff_t pgoff
= linear_page_index(vma
, addr
);
407 struct page
*page
= NULL
;
410 if (pte_present(ptent
)) {
411 page
= vm_normal_page(vma
, addr
, ptent
);
412 } else if (is_swap_pte(ptent
)) {
413 swp_entry_t swpent
= pte_to_swp_entry(ptent
);
415 if (!non_swap_entry(swpent
))
416 mss
->swap
+= ptent_size
;
417 else if (is_migration_entry(swpent
))
418 page
= migration_entry_to_page(swpent
);
419 } else if (pte_file(ptent
)) {
420 if (pte_to_pgoff(ptent
) != pgoff
)
421 mss
->nonlinear
+= ptent_size
;
428 mss
->anonymous
+= ptent_size
;
430 if (page
->index
!= pgoff
)
431 mss
->nonlinear
+= ptent_size
;
433 mss
->resident
+= ptent_size
;
434 /* Accumulate the size in pages that have been accessed. */
435 if (pte_young(ptent
) || PageReferenced(page
))
436 mss
->referenced
+= ptent_size
;
437 mapcount
= page_mapcount(page
);
439 if (pte_dirty(ptent
) || PageDirty(page
))
440 mss
->shared_dirty
+= ptent_size
;
442 mss
->shared_clean
+= ptent_size
;
443 mss
->pss
+= (ptent_size
<< PSS_SHIFT
) / mapcount
;
445 if (pte_dirty(ptent
) || PageDirty(page
))
446 mss
->private_dirty
+= ptent_size
;
448 mss
->private_clean
+= ptent_size
;
449 mss
->pss
+= (ptent_size
<< PSS_SHIFT
);
453 static int smaps_pte_range(pmd_t
*pmd
, unsigned long addr
, unsigned long end
,
454 struct mm_walk
*walk
)
456 struct mem_size_stats
*mss
= walk
->private;
457 struct vm_area_struct
*vma
= mss
->vma
;
461 if (pmd_trans_huge_lock(pmd
, vma
) == 1) {
462 smaps_pte_entry(*(pte_t
*)pmd
, addr
, HPAGE_PMD_SIZE
, walk
);
463 spin_unlock(&walk
->mm
->page_table_lock
);
464 mss
->anonymous_thp
+= HPAGE_PMD_SIZE
;
468 if (pmd_trans_unstable(pmd
))
471 * The mmap_sem held all the way back in m_start() is what
472 * keeps khugepaged out of here and from collapsing things
475 pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
476 for (; addr
!= end
; pte
++, addr
+= PAGE_SIZE
)
477 smaps_pte_entry(*pte
, addr
, PAGE_SIZE
, walk
);
478 pte_unmap_unlock(pte
- 1, ptl
);
483 static int show_smap(struct seq_file
*m
, void *v
, int is_pid
)
485 struct proc_maps_private
*priv
= m
->private;
486 struct task_struct
*task
= priv
->task
;
487 struct vm_area_struct
*vma
= v
;
488 struct mem_size_stats mss
;
489 struct mm_walk smaps_walk
= {
490 .pmd_entry
= smaps_pte_range
,
495 memset(&mss
, 0, sizeof mss
);
497 /* mmap_sem is held in m_start */
498 if (vma
->vm_mm
&& !is_vm_hugetlb_page(vma
))
499 walk_page_range(vma
->vm_start
, vma
->vm_end
, &smaps_walk
);
501 show_map_vma(m
, vma
, is_pid
);
507 "Shared_Clean: %8lu kB\n"
508 "Shared_Dirty: %8lu kB\n"
509 "Private_Clean: %8lu kB\n"
510 "Private_Dirty: %8lu kB\n"
511 "Referenced: %8lu kB\n"
512 "Anonymous: %8lu kB\n"
513 "AnonHugePages: %8lu kB\n"
515 "KernelPageSize: %8lu kB\n"
516 "MMUPageSize: %8lu kB\n"
518 (vma
->vm_end
- vma
->vm_start
) >> 10,
520 (unsigned long)(mss
.pss
>> (10 + PSS_SHIFT
)),
521 mss
.shared_clean
>> 10,
522 mss
.shared_dirty
>> 10,
523 mss
.private_clean
>> 10,
524 mss
.private_dirty
>> 10,
525 mss
.referenced
>> 10,
527 mss
.anonymous_thp
>> 10,
529 vma_kernel_pagesize(vma
) >> 10,
530 vma_mmu_pagesize(vma
) >> 10,
531 (vma
->vm_flags
& VM_LOCKED
) ?
532 (unsigned long)(mss
.pss
>> (10 + PSS_SHIFT
)) : 0);
534 if (vma
->vm_flags
& VM_NONLINEAR
)
535 seq_printf(m
, "Nonlinear: %8lu kB\n",
536 mss
.nonlinear
>> 10);
538 if (m
->count
< m
->size
) /* vma is copied successfully */
539 m
->version
= (vma
!= get_gate_vma(task
->mm
))
544 static int show_pid_smap(struct seq_file
*m
, void *v
)
546 return show_smap(m
, v
, 1);
549 static int show_tid_smap(struct seq_file
*m
, void *v
)
551 return show_smap(m
, v
, 0);
554 static const struct seq_operations proc_pid_smaps_op
= {
558 .show
= show_pid_smap
561 static const struct seq_operations proc_tid_smaps_op
= {
565 .show
= show_tid_smap
568 static int pid_smaps_open(struct inode
*inode
, struct file
*file
)
570 return do_maps_open(inode
, file
, &proc_pid_smaps_op
);
573 static int tid_smaps_open(struct inode
*inode
, struct file
*file
)
575 return do_maps_open(inode
, file
, &proc_tid_smaps_op
);
578 const struct file_operations proc_pid_smaps_operations
= {
579 .open
= pid_smaps_open
,
582 .release
= seq_release_private
,
585 const struct file_operations proc_tid_smaps_operations
= {
586 .open
= tid_smaps_open
,
589 .release
= seq_release_private
,
592 static int clear_refs_pte_range(pmd_t
*pmd
, unsigned long addr
,
593 unsigned long end
, struct mm_walk
*walk
)
595 struct vm_area_struct
*vma
= walk
->private;
600 split_huge_page_pmd(walk
->mm
, pmd
);
601 if (pmd_trans_unstable(pmd
))
604 pte
= pte_offset_map_lock(vma
->vm_mm
, pmd
, addr
, &ptl
);
605 for (; addr
!= end
; pte
++, addr
+= PAGE_SIZE
) {
607 if (!pte_present(ptent
))
610 page
= vm_normal_page(vma
, addr
, ptent
);
614 /* Clear accessed and referenced bits. */
615 ptep_test_and_clear_young(vma
, addr
, pte
);
616 ClearPageReferenced(page
);
618 pte_unmap_unlock(pte
- 1, ptl
);
623 #define CLEAR_REFS_ALL 1
624 #define CLEAR_REFS_ANON 2
625 #define CLEAR_REFS_MAPPED 3
627 static ssize_t
clear_refs_write(struct file
*file
, const char __user
*buf
,
628 size_t count
, loff_t
*ppos
)
630 struct task_struct
*task
;
631 char buffer
[PROC_NUMBUF
];
632 struct mm_struct
*mm
;
633 struct vm_area_struct
*vma
;
637 memset(buffer
, 0, sizeof(buffer
));
638 if (count
> sizeof(buffer
) - 1)
639 count
= sizeof(buffer
) - 1;
640 if (copy_from_user(buffer
, buf
, count
))
642 rv
= kstrtoint(strstrip(buffer
), 10, &type
);
645 if (type
< CLEAR_REFS_ALL
|| type
> CLEAR_REFS_MAPPED
)
647 task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
650 mm
= get_task_mm(task
);
652 struct mm_walk clear_refs_walk
= {
653 .pmd_entry
= clear_refs_pte_range
,
656 down_read(&mm
->mmap_sem
);
657 for (vma
= mm
->mmap
; vma
; vma
= vma
->vm_next
) {
658 clear_refs_walk
.private = vma
;
659 if (is_vm_hugetlb_page(vma
))
662 * Writing 1 to /proc/pid/clear_refs affects all pages.
664 * Writing 2 to /proc/pid/clear_refs only affects
667 * Writing 3 to /proc/pid/clear_refs only affects file
670 if (type
== CLEAR_REFS_ANON
&& vma
->vm_file
)
672 if (type
== CLEAR_REFS_MAPPED
&& !vma
->vm_file
)
674 walk_page_range(vma
->vm_start
, vma
->vm_end
,
678 up_read(&mm
->mmap_sem
);
681 put_task_struct(task
);
686 const struct file_operations proc_clear_refs_operations
= {
687 .write
= clear_refs_write
,
688 .llseek
= noop_llseek
,
697 pagemap_entry_t
*buffer
;
700 #define PAGEMAP_WALK_SIZE (PMD_SIZE)
701 #define PAGEMAP_WALK_MASK (PMD_MASK)
703 #define PM_ENTRY_BYTES sizeof(u64)
704 #define PM_STATUS_BITS 3
705 #define PM_STATUS_OFFSET (64 - PM_STATUS_BITS)
706 #define PM_STATUS_MASK (((1LL << PM_STATUS_BITS) - 1) << PM_STATUS_OFFSET)
707 #define PM_STATUS(nr) (((nr) << PM_STATUS_OFFSET) & PM_STATUS_MASK)
708 #define PM_PSHIFT_BITS 6
709 #define PM_PSHIFT_OFFSET (PM_STATUS_OFFSET - PM_PSHIFT_BITS)
710 #define PM_PSHIFT_MASK (((1LL << PM_PSHIFT_BITS) - 1) << PM_PSHIFT_OFFSET)
711 #define PM_PSHIFT(x) (((u64) (x) << PM_PSHIFT_OFFSET) & PM_PSHIFT_MASK)
712 #define PM_PFRAME_MASK ((1LL << PM_PSHIFT_OFFSET) - 1)
713 #define PM_PFRAME(x) ((x) & PM_PFRAME_MASK)
715 #define PM_PRESENT PM_STATUS(4LL)
716 #define PM_SWAP PM_STATUS(2LL)
717 #define PM_FILE PM_STATUS(1LL)
718 #define PM_NOT_PRESENT PM_PSHIFT(PAGE_SHIFT)
719 #define PM_END_OF_BUFFER 1
721 static inline pagemap_entry_t
make_pme(u64 val
)
723 return (pagemap_entry_t
) { .pme
= val
};
726 static int add_to_pagemap(unsigned long addr
, pagemap_entry_t
*pme
,
727 struct pagemapread
*pm
)
729 pm
->buffer
[pm
->pos
++] = *pme
;
730 if (pm
->pos
>= pm
->len
)
731 return PM_END_OF_BUFFER
;
735 static int pagemap_pte_hole(unsigned long start
, unsigned long end
,
736 struct mm_walk
*walk
)
738 struct pagemapread
*pm
= walk
->private;
741 pagemap_entry_t pme
= make_pme(PM_NOT_PRESENT
);
743 for (addr
= start
; addr
< end
; addr
+= PAGE_SIZE
) {
744 err
= add_to_pagemap(addr
, &pme
, pm
);
751 static void pte_to_pagemap_entry(pagemap_entry_t
*pme
,
752 struct vm_area_struct
*vma
, unsigned long addr
, pte_t pte
)
755 struct page
*page
= NULL
;
757 if (pte_present(pte
)) {
758 frame
= pte_pfn(pte
);
760 page
= vm_normal_page(vma
, addr
, pte
);
761 } else if (is_swap_pte(pte
)) {
762 swp_entry_t entry
= pte_to_swp_entry(pte
);
764 frame
= swp_type(entry
) |
765 (swp_offset(entry
) << MAX_SWAPFILES_SHIFT
);
767 if (is_migration_entry(entry
))
768 page
= migration_entry_to_page(entry
);
770 *pme
= make_pme(PM_NOT_PRESENT
);
774 if (page
&& !PageAnon(page
))
777 *pme
= make_pme(PM_PFRAME(frame
) | PM_PSHIFT(PAGE_SHIFT
) | flags
);
780 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
781 static void thp_pmd_to_pagemap_entry(pagemap_entry_t
*pme
,
782 pmd_t pmd
, int offset
)
785 * Currently pmd for thp is always present because thp can not be
786 * swapped-out, migrated, or HWPOISONed (split in such cases instead.)
787 * This if-check is just to prepare for future implementation.
789 if (pmd_present(pmd
))
790 *pme
= make_pme(PM_PFRAME(pmd_pfn(pmd
) + offset
)
791 | PM_PSHIFT(PAGE_SHIFT
) | PM_PRESENT
);
793 *pme
= make_pme(PM_NOT_PRESENT
);
796 static inline void thp_pmd_to_pagemap_entry(pagemap_entry_t
*pme
,
797 pmd_t pmd
, int offset
)
802 static int pagemap_pte_range(pmd_t
*pmd
, unsigned long addr
, unsigned long end
,
803 struct mm_walk
*walk
)
805 struct vm_area_struct
*vma
;
806 struct pagemapread
*pm
= walk
->private;
809 pagemap_entry_t pme
= make_pme(PM_NOT_PRESENT
);
811 /* find the first VMA at or above 'addr' */
812 vma
= find_vma(walk
->mm
, addr
);
813 if (vma
&& pmd_trans_huge_lock(pmd
, vma
) == 1) {
814 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
815 unsigned long offset
;
817 offset
= (addr
& ~PAGEMAP_WALK_MASK
) >>
819 thp_pmd_to_pagemap_entry(&pme
, *pmd
, offset
);
820 err
= add_to_pagemap(addr
, &pme
, pm
);
824 spin_unlock(&walk
->mm
->page_table_lock
);
828 if (pmd_trans_unstable(pmd
))
830 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
832 /* check to see if we've left 'vma' behind
833 * and need a new, higher one */
834 if (vma
&& (addr
>= vma
->vm_end
)) {
835 vma
= find_vma(walk
->mm
, addr
);
836 pme
= make_pme(PM_NOT_PRESENT
);
839 /* check that 'vma' actually covers this address,
840 * and that it isn't a huge page vma */
841 if (vma
&& (vma
->vm_start
<= addr
) &&
842 !is_vm_hugetlb_page(vma
)) {
843 pte
= pte_offset_map(pmd
, addr
);
844 pte_to_pagemap_entry(&pme
, vma
, addr
, *pte
);
845 /* unmap before userspace copy */
848 err
= add_to_pagemap(addr
, &pme
, pm
);
858 #ifdef CONFIG_HUGETLB_PAGE
859 static void huge_pte_to_pagemap_entry(pagemap_entry_t
*pme
,
860 pte_t pte
, int offset
)
862 if (pte_present(pte
))
863 *pme
= make_pme(PM_PFRAME(pte_pfn(pte
) + offset
)
864 | PM_PSHIFT(PAGE_SHIFT
) | PM_PRESENT
);
866 *pme
= make_pme(PM_NOT_PRESENT
);
869 /* This function walks within one hugetlb entry in the single call */
870 static int pagemap_hugetlb_range(pte_t
*pte
, unsigned long hmask
,
871 unsigned long addr
, unsigned long end
,
872 struct mm_walk
*walk
)
874 struct pagemapread
*pm
= walk
->private;
878 for (; addr
!= end
; addr
+= PAGE_SIZE
) {
879 int offset
= (addr
& ~hmask
) >> PAGE_SHIFT
;
880 huge_pte_to_pagemap_entry(&pme
, *pte
, offset
);
881 err
= add_to_pagemap(addr
, &pme
, pm
);
890 #endif /* HUGETLB_PAGE */
893 * /proc/pid/pagemap - an array mapping virtual pages to pfns
895 * For each page in the address space, this file contains one 64-bit entry
896 * consisting of the following:
898 * Bits 0-54 page frame number (PFN) if present
899 * Bits 0-4 swap type if swapped
900 * Bits 5-54 swap offset if swapped
901 * Bits 55-60 page shift (page size = 1<<page shift)
902 * Bit 61 page is file-page or shared-anon
903 * Bit 62 page swapped
904 * Bit 63 page present
906 * If the page is not present but in swap, then the PFN contains an
907 * encoding of the swap file number and the page's offset into the
908 * swap. Unmapped pages return a null PFN. This allows determining
909 * precisely which pages are mapped (or in swap) and comparing mapped
910 * pages between processes.
912 * Efficient users of this interface will use /proc/pid/maps to
913 * determine which areas of memory are actually mapped and llseek to
914 * skip over unmapped regions.
916 static ssize_t
pagemap_read(struct file
*file
, char __user
*buf
,
917 size_t count
, loff_t
*ppos
)
919 struct task_struct
*task
= get_proc_task(file
->f_path
.dentry
->d_inode
);
920 struct mm_struct
*mm
;
921 struct pagemapread pm
;
923 struct mm_walk pagemap_walk
= {};
926 unsigned long start_vaddr
;
927 unsigned long end_vaddr
;
934 /* file position must be aligned */
935 if ((*ppos
% PM_ENTRY_BYTES
) || (count
% PM_ENTRY_BYTES
))
942 pm
.len
= PM_ENTRY_BYTES
* (PAGEMAP_WALK_SIZE
>> PAGE_SHIFT
);
943 pm
.buffer
= kmalloc(pm
.len
, GFP_TEMPORARY
);
948 mm
= mm_access(task
, PTRACE_MODE_READ
);
950 if (!mm
|| IS_ERR(mm
))
953 pagemap_walk
.pmd_entry
= pagemap_pte_range
;
954 pagemap_walk
.pte_hole
= pagemap_pte_hole
;
955 #ifdef CONFIG_HUGETLB_PAGE
956 pagemap_walk
.hugetlb_entry
= pagemap_hugetlb_range
;
958 pagemap_walk
.mm
= mm
;
959 pagemap_walk
.private = &pm
;
962 svpfn
= src
/ PM_ENTRY_BYTES
;
963 start_vaddr
= svpfn
<< PAGE_SHIFT
;
964 end_vaddr
= TASK_SIZE_OF(task
);
966 /* watch out for wraparound */
967 if (svpfn
> TASK_SIZE_OF(task
) >> PAGE_SHIFT
)
968 start_vaddr
= end_vaddr
;
971 * The odds are that this will stop walking way
972 * before end_vaddr, because the length of the
973 * user buffer is tracked in "pm", and the walk
974 * will stop when we hit the end of the buffer.
977 while (count
&& (start_vaddr
< end_vaddr
)) {
982 end
= (start_vaddr
+ PAGEMAP_WALK_SIZE
) & PAGEMAP_WALK_MASK
;
984 if (end
< start_vaddr
|| end
> end_vaddr
)
986 down_read(&mm
->mmap_sem
);
987 ret
= walk_page_range(start_vaddr
, end
, &pagemap_walk
);
988 up_read(&mm
->mmap_sem
);
991 len
= min(count
, PM_ENTRY_BYTES
* pm
.pos
);
992 if (copy_to_user(buf
, pm
.buffer
, len
)) {
1001 if (!ret
|| ret
== PM_END_OF_BUFFER
)
1009 put_task_struct(task
);
1014 const struct file_operations proc_pagemap_operations
= {
1015 .llseek
= mem_lseek
, /* borrow this */
1016 .read
= pagemap_read
,
1018 #endif /* CONFIG_PROC_PAGE_MONITOR */
1023 struct vm_area_struct
*vma
;
1024 unsigned long pages
;
1026 unsigned long active
;
1027 unsigned long writeback
;
1028 unsigned long mapcount_max
;
1029 unsigned long dirty
;
1030 unsigned long swapcache
;
1031 unsigned long node
[MAX_NUMNODES
];
1034 struct numa_maps_private
{
1035 struct proc_maps_private proc_maps
;
1036 struct numa_maps md
;
1039 static void gather_stats(struct page
*page
, struct numa_maps
*md
, int pte_dirty
,
1040 unsigned long nr_pages
)
1042 int count
= page_mapcount(page
);
1044 md
->pages
+= nr_pages
;
1045 if (pte_dirty
|| PageDirty(page
))
1046 md
->dirty
+= nr_pages
;
1048 if (PageSwapCache(page
))
1049 md
->swapcache
+= nr_pages
;
1051 if (PageActive(page
) || PageUnevictable(page
))
1052 md
->active
+= nr_pages
;
1054 if (PageWriteback(page
))
1055 md
->writeback
+= nr_pages
;
1058 md
->anon
+= nr_pages
;
1060 if (count
> md
->mapcount_max
)
1061 md
->mapcount_max
= count
;
1063 md
->node
[page_to_nid(page
)] += nr_pages
;
1066 static struct page
*can_gather_numa_stats(pte_t pte
, struct vm_area_struct
*vma
,
1072 if (!pte_present(pte
))
1075 page
= vm_normal_page(vma
, addr
, pte
);
1079 if (PageReserved(page
))
1082 nid
= page_to_nid(page
);
1083 if (!node_isset(nid
, node_states
[N_HIGH_MEMORY
]))
1089 static int gather_pte_stats(pmd_t
*pmd
, unsigned long addr
,
1090 unsigned long end
, struct mm_walk
*walk
)
1092 struct numa_maps
*md
;
1099 if (pmd_trans_huge_lock(pmd
, md
->vma
) == 1) {
1100 pte_t huge_pte
= *(pte_t
*)pmd
;
1103 page
= can_gather_numa_stats(huge_pte
, md
->vma
, addr
);
1105 gather_stats(page
, md
, pte_dirty(huge_pte
),
1106 HPAGE_PMD_SIZE
/PAGE_SIZE
);
1107 spin_unlock(&walk
->mm
->page_table_lock
);
1111 if (pmd_trans_unstable(pmd
))
1113 orig_pte
= pte
= pte_offset_map_lock(walk
->mm
, pmd
, addr
, &ptl
);
1115 struct page
*page
= can_gather_numa_stats(*pte
, md
->vma
, addr
);
1118 gather_stats(page
, md
, pte_dirty(*pte
), 1);
1120 } while (pte
++, addr
+= PAGE_SIZE
, addr
!= end
);
1121 pte_unmap_unlock(orig_pte
, ptl
);
1124 #ifdef CONFIG_HUGETLB_PAGE
1125 static int gather_hugetbl_stats(pte_t
*pte
, unsigned long hmask
,
1126 unsigned long addr
, unsigned long end
, struct mm_walk
*walk
)
1128 struct numa_maps
*md
;
1134 page
= pte_page(*pte
);
1139 gather_stats(page
, md
, pte_dirty(*pte
), 1);
1144 static int gather_hugetbl_stats(pte_t
*pte
, unsigned long hmask
,
1145 unsigned long addr
, unsigned long end
, struct mm_walk
*walk
)
1152 * Display pages allocated per node and memory policy via /proc.
1154 static int show_numa_map(struct seq_file
*m
, void *v
, int is_pid
)
1156 struct numa_maps_private
*numa_priv
= m
->private;
1157 struct proc_maps_private
*proc_priv
= &numa_priv
->proc_maps
;
1158 struct vm_area_struct
*vma
= v
;
1159 struct numa_maps
*md
= &numa_priv
->md
;
1160 struct file
*file
= vma
->vm_file
;
1161 struct mm_struct
*mm
= vma
->vm_mm
;
1162 struct mm_walk walk
= {};
1163 struct mempolicy
*pol
;
1170 /* Ensure we start with an empty set of numa_maps statistics. */
1171 memset(md
, 0, sizeof(*md
));
1175 walk
.hugetlb_entry
= gather_hugetbl_stats
;
1176 walk
.pmd_entry
= gather_pte_stats
;
1180 pol
= get_vma_policy(proc_priv
->task
, vma
, vma
->vm_start
);
1181 mpol_to_str(buffer
, sizeof(buffer
), pol
, 0);
1184 seq_printf(m
, "%08lx %s", vma
->vm_start
, buffer
);
1187 seq_printf(m
, " file=");
1188 seq_path(m
, &file
->f_path
, "\n\t= ");
1189 } else if (vma
->vm_start
<= mm
->brk
&& vma
->vm_end
>= mm
->start_brk
) {
1190 seq_printf(m
, " heap");
1192 pid_t tid
= vm_is_stack(proc_priv
->task
, vma
, is_pid
);
1195 * Thread stack in /proc/PID/task/TID/maps or
1196 * the main process stack.
1198 if (!is_pid
|| (vma
->vm_start
<= mm
->start_stack
&&
1199 vma
->vm_end
>= mm
->start_stack
))
1200 seq_printf(m
, " stack");
1202 seq_printf(m
, " stack:%d", tid
);
1206 if (is_vm_hugetlb_page(vma
))
1207 seq_printf(m
, " huge");
1209 walk_page_range(vma
->vm_start
, vma
->vm_end
, &walk
);
1215 seq_printf(m
, " anon=%lu", md
->anon
);
1218 seq_printf(m
, " dirty=%lu", md
->dirty
);
1220 if (md
->pages
!= md
->anon
&& md
->pages
!= md
->dirty
)
1221 seq_printf(m
, " mapped=%lu", md
->pages
);
1223 if (md
->mapcount_max
> 1)
1224 seq_printf(m
, " mapmax=%lu", md
->mapcount_max
);
1227 seq_printf(m
, " swapcache=%lu", md
->swapcache
);
1229 if (md
->active
< md
->pages
&& !is_vm_hugetlb_page(vma
))
1230 seq_printf(m
, " active=%lu", md
->active
);
1233 seq_printf(m
, " writeback=%lu", md
->writeback
);
1235 for_each_node_state(n
, N_HIGH_MEMORY
)
1237 seq_printf(m
, " N%d=%lu", n
, md
->node
[n
]);
1241 if (m
->count
< m
->size
)
1242 m
->version
= (vma
!= proc_priv
->tail_vma
) ? vma
->vm_start
: 0;
1246 static int show_pid_numa_map(struct seq_file
*m
, void *v
)
1248 return show_numa_map(m
, v
, 1);
1251 static int show_tid_numa_map(struct seq_file
*m
, void *v
)
1253 return show_numa_map(m
, v
, 0);
1256 static const struct seq_operations proc_pid_numa_maps_op
= {
1260 .show
= show_pid_numa_map
,
1263 static const struct seq_operations proc_tid_numa_maps_op
= {
1267 .show
= show_tid_numa_map
,
1270 static int numa_maps_open(struct inode
*inode
, struct file
*file
,
1271 const struct seq_operations
*ops
)
1273 struct numa_maps_private
*priv
;
1275 priv
= kzalloc(sizeof(*priv
), GFP_KERNEL
);
1277 priv
->proc_maps
.pid
= proc_pid(inode
);
1278 ret
= seq_open(file
, ops
);
1280 struct seq_file
*m
= file
->private_data
;
1289 static int pid_numa_maps_open(struct inode
*inode
, struct file
*file
)
1291 return numa_maps_open(inode
, file
, &proc_pid_numa_maps_op
);
1294 static int tid_numa_maps_open(struct inode
*inode
, struct file
*file
)
1296 return numa_maps_open(inode
, file
, &proc_tid_numa_maps_op
);
1299 const struct file_operations proc_pid_numa_maps_operations
= {
1300 .open
= pid_numa_maps_open
,
1302 .llseek
= seq_lseek
,
1303 .release
= seq_release_private
,
1306 const struct file_operations proc_tid_numa_maps_operations
= {
1307 .open
= tid_numa_maps_open
,
1309 .llseek
= seq_lseek
,
1310 .release
= seq_release_private
,
1312 #endif /* CONFIG_NUMA */