blob: c5687c45c326b3280c7bb7147a5796a8cd80b68d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/mincore.c
3 *
Linus Torvalds2f77d102006-12-16 09:44:32 -08004 * Copyright (C) 1994-2006 Linus Torvalds
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7/*
8 * The mincore() system call.
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/pagemap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/mm.h>
13#include <linux/mman.h>
14#include <linux/syscalls.h>
Nick Piggin42da9cb2007-02-12 00:51:39 -080015#include <linux/swap.h>
16#include <linux/swapops.h>
Hugh Dickins3a4f8a02017-02-24 14:59:36 -080017#include <linux/shmem_fs.h>
Naoya Horiguchi4f16fc12009-12-14 17:59:58 -080018#include <linux/hugetlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/pgtable.h>
22
Naoya Horiguchi1e25a272015-02-11 15:28:11 -080023static int mincore_hugetlb(pte_t *pte, unsigned long hmask, unsigned long addr,
24 unsigned long end, struct mm_walk *walk)
Johannes Weinerf4884012010-05-24 14:32:10 -070025{
26#ifdef CONFIG_HUGETLB_PAGE
Naoya Horiguchi1e25a272015-02-11 15:28:11 -080027 unsigned char present;
28 unsigned char *vec = walk->private;
Johannes Weinerf4884012010-05-24 14:32:10 -070029
Naoya Horiguchi1e25a272015-02-11 15:28:11 -080030 /*
31 * Hugepages under user process are always in RAM and never
32 * swapped out, but theoretically it needs to be checked.
33 */
34 present = pte && !huge_pte_none(huge_ptep_get(pte));
35 for (; addr != end; vec++, addr += PAGE_SIZE)
36 *vec = present;
37 walk->private = vec;
Johannes Weinerf4884012010-05-24 14:32:10 -070038#else
39 BUG();
40#endif
Naoya Horiguchi1e25a272015-02-11 15:28:11 -080041 return 0;
Johannes Weinerf4884012010-05-24 14:32:10 -070042}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * Later we can get more picky about what "in core" means precisely.
46 * For now, simply check to see if the page is in the page cache,
47 * and is up to date; i.e. that no page-in operation would be required
48 * at this time if an application were to map and access this page.
49 */
Nick Piggin42da9cb2007-02-12 00:51:39 -080050static unsigned char mincore_page(struct address_space *mapping, pgoff_t pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 unsigned char present = 0;
Nick Piggin42da9cb2007-02-12 00:51:39 -080053 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Nick Piggin42da9cb2007-02-12 00:51:39 -080055 /*
56 * When tmpfs swaps out a page from a file, any process mapping that
57 * file will not get a swp_entry_t in its pte, but rather it is like
58 * any other file mapping (ie. marked !present and faulted in with
Nick Piggin3c18ddd2008-04-28 02:12:10 -070059 * tmpfs's .fault). So swapped out tmpfs mappings are tested here.
Nick Piggin42da9cb2007-02-12 00:51:39 -080060 */
Hugh Dickins31475dd2011-08-03 16:21:27 -070061#ifdef CONFIG_SWAP
Johannes Weiner0cd61442014-04-03 14:47:46 -070062 if (shmem_mapping(mapping)) {
63 page = find_get_entry(mapping, pgoff);
64 /*
65 * shmem/tmpfs may return swap: account for swapcache
66 * page too.
67 */
68 if (radix_tree_exceptional_entry(page)) {
69 swp_entry_t swp = radix_to_swp_entry(page);
Huang Yingf6ab1f72016-10-07 17:00:21 -070070 page = find_get_page(swap_address_space(swp),
71 swp_offset(swp));
Johannes Weiner0cd61442014-04-03 14:47:46 -070072 }
73 } else
74 page = find_get_page(mapping, pgoff);
75#else
76 page = find_get_page(mapping, pgoff);
Hugh Dickins31475dd2011-08-03 16:21:27 -070077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (page) {
79 present = PageUptodate(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030080 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82
83 return present;
84}
85
Naoya Horiguchi1e25a272015-02-11 15:28:11 -080086static int __mincore_unmapped_range(unsigned long addr, unsigned long end,
87 struct vm_area_struct *vma, unsigned char *vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Johannes Weiner25ef0e52010-05-24 14:32:11 -070089 unsigned long nr = (end - addr) >> PAGE_SHIFT;
Nick Piggin42da9cb2007-02-12 00:51:39 -080090 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Johannes Weinerf4884012010-05-24 14:32:10 -070092 if (vma->vm_file) {
93 pgoff_t pgoff;
Linus Torvalds2f77d102006-12-16 09:44:32 -080094
Johannes Weinerf4884012010-05-24 14:32:10 -070095 pgoff = linear_page_index(vma, addr);
96 for (i = 0; i < nr; i++, pgoff++)
97 vec[i] = mincore_page(vma->vm_file->f_mapping, pgoff);
98 } else {
99 for (i = 0; i < nr; i++)
100 vec[i] = 0;
Naoya Horiguchi4f16fc12009-12-14 17:59:58 -0800101 }
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800102 return nr;
Johannes Weinerf4884012010-05-24 14:32:10 -0700103}
Naoya Horiguchi4f16fc12009-12-14 17:59:58 -0800104
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800105static int mincore_unmapped_range(unsigned long addr, unsigned long end,
106 struct mm_walk *walk)
Johannes Weinerf4884012010-05-24 14:32:10 -0700107{
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800108 walk->private += __mincore_unmapped_range(addr, end,
109 walk->vma, walk->private);
110 return 0;
111}
Linus Torvalds2f77d102006-12-16 09:44:32 -0800112
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800113static int mincore_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
114 struct mm_walk *walk)
115{
116 spinlock_t *ptl;
117 struct vm_area_struct *vma = walk->vma;
118 pte_t *ptep;
119 unsigned char *vec = walk->private;
120 int nr = (end - addr) >> PAGE_SHIFT;
121
Kirill A. Shutemovb6ec57f2016-01-21 16:40:25 -0800122 ptl = pmd_trans_huge_lock(pmd, vma);
123 if (ptl) {
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800124 memset(vec, 1, nr);
125 spin_unlock(ptl);
126 goto out;
127 }
128
129 if (pmd_trans_unstable(pmd)) {
130 __mincore_unmapped_range(addr, end, vma, vec);
131 goto out;
132 }
133
134 ptep = pte_offset_map_lock(walk->mm, pmd, addr, &ptl);
135 for (; addr != end; ptep++, addr += PAGE_SIZE) {
Nick Piggin42da9cb2007-02-12 00:51:39 -0800136 pte_t pte = *ptep;
137
Johannes Weinerf4884012010-05-24 14:32:10 -0700138 if (pte_none(pte))
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800139 __mincore_unmapped_range(addr, addr + PAGE_SIZE,
140 vma, vec);
Johannes Weinerf4884012010-05-24 14:32:10 -0700141 else if (pte_present(pte))
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700142 *vec = 1;
Kirill A. Shutemov0661a332015-02-10 14:10:04 -0800143 else { /* pte is a swap entry */
Nick Piggin42da9cb2007-02-12 00:51:39 -0800144 swp_entry_t entry = pte_to_swp_entry(pte);
Johannes Weiner6a60f1b2010-05-24 14:32:09 -0700145
Weijie Yangc313dc5d2014-12-12 16:55:07 -0800146 if (non_swap_entry(entry)) {
147 /*
148 * migration or hwpoison entries are always
149 * uptodate
150 */
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700151 *vec = 1;
Nick Piggin42da9cb2007-02-12 00:51:39 -0800152 } else {
Nick Piggin30fcffe2007-02-14 12:35:02 +0100153#ifdef CONFIG_SWAP
Shaohua Li33806f02013-02-22 16:34:37 -0800154 *vec = mincore_page(swap_address_space(entry),
Huang Yingf6ab1f72016-10-07 17:00:21 -0700155 swp_offset(entry));
Nick Piggin30fcffe2007-02-14 12:35:02 +0100156#else
157 WARN_ON(1);
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700158 *vec = 1;
Nick Piggin30fcffe2007-02-14 12:35:02 +0100159#endif
Nick Piggin42da9cb2007-02-12 00:51:39 -0800160 }
161 }
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700162 vec++;
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800163 }
Johannes Weiner6a60f1b2010-05-24 14:32:09 -0700164 pte_unmap_unlock(ptep - 1, ptl);
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800165out:
166 walk->private += nr;
167 cond_resched();
168 return 0;
Johannes Weinere48293f2010-05-24 14:32:11 -0700169}
170
Johannes Weinerf4884012010-05-24 14:32:10 -0700171/*
172 * Do a chunk of "sys_mincore()". We've already checked
173 * all the arguments, we hold the mmap semaphore: we should
174 * just return the amount of info we're asked for.
175 */
176static long do_mincore(unsigned long addr, unsigned long pages, unsigned char *vec)
177{
Johannes Weinerf4884012010-05-24 14:32:10 -0700178 struct vm_area_struct *vma;
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700179 unsigned long end;
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800180 int err;
181 struct mm_walk mincore_walk = {
182 .pmd_entry = mincore_pte_range,
183 .pte_hole = mincore_unmapped_range,
184 .hugetlb_entry = mincore_hugetlb,
185 .private = vec,
186 };
Johannes Weinerf4884012010-05-24 14:32:10 -0700187
188 vma = find_vma(current->mm, addr);
189 if (!vma || addr < vma->vm_start)
190 return -ENOMEM;
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800191 mincore_walk.mm = vma->vm_mm;
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700192 end = min(vma->vm_end, addr + (pages << PAGE_SHIFT));
Naoya Horiguchi1e25a272015-02-11 15:28:11 -0800193 err = walk_page_range(addr, end, &mincore_walk);
194 if (err < 0)
195 return err;
Johannes Weiner25ef0e52010-05-24 14:32:11 -0700196 return (end - addr) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/*
200 * The mincore(2) system call.
201 *
202 * mincore() returns the memory residency status of the pages in the
203 * current process's address space specified by [addr, addr + len).
204 * The status is returned in a vector of bytes. The least significant
205 * bit of each byte is 1 if the referenced page is in memory, otherwise
206 * it is zero.
207 *
208 * Because the status of a page can change after mincore() checks it
209 * but before it returns to the application, the returned vector may
210 * contain stale information. Only locked pages are guaranteed to
211 * remain in memory.
212 *
213 * return values:
214 * zero - success
215 * -EFAULT - vec points to an illegal address
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300216 * -EINVAL - addr is not a multiple of PAGE_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 * -ENOMEM - Addresses in the range [addr, addr + len] are
218 * invalid for the address space of this process, or
219 * specify one or more pages which are not currently
220 * mapped
221 * -EAGAIN - A kernel resource was temporarily unavailable.
222 */
Heiko Carstens3480b252009-01-14 14:14:16 +0100223SYSCALL_DEFINE3(mincore, unsigned long, start, size_t, len,
224 unsigned char __user *, vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Linus Torvalds2f77d102006-12-16 09:44:32 -0800226 long retval;
227 unsigned long pages;
228 unsigned char *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Linus Torvalds2f77d102006-12-16 09:44:32 -0800230 /* Check the start address: needs to be page-aligned.. */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300231 if (start & ~PAGE_MASK)
Linus Torvalds2f77d102006-12-16 09:44:32 -0800232 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Linus Torvalds2f77d102006-12-16 09:44:32 -0800234 /* ..and we need to be passed a valid user-space range */
235 if (!access_ok(VERIFY_READ, (void __user *) start, len))
236 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300238 /* This also avoids any overflows on PAGE_ALIGN */
Linus Torvalds2f77d102006-12-16 09:44:32 -0800239 pages = len >> PAGE_SHIFT;
Alexander Kuleshove7bbdd02015-11-05 18:46:38 -0800240 pages += (offset_in_page(len)) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Linus Torvalds2f77d102006-12-16 09:44:32 -0800242 if (!access_ok(VERIFY_WRITE, vec, pages))
243 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Linus Torvalds2f77d102006-12-16 09:44:32 -0800245 tmp = (void *) __get_free_page(GFP_USER);
246 if (!tmp)
Linus Torvalds4fb23e42006-12-16 16:01:50 -0800247 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Linus Torvalds2f77d102006-12-16 09:44:32 -0800249 retval = 0;
250 while (pages) {
251 /*
252 * Do at most PAGE_SIZE entries per iteration, due to
253 * the temporary buffer size.
254 */
255 down_read(&current->mm->mmap_sem);
Johannes Weiner6a60f1b2010-05-24 14:32:09 -0700256 retval = do_mincore(start, min(pages, PAGE_SIZE), tmp);
Linus Torvalds2f77d102006-12-16 09:44:32 -0800257 up_read(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvalds2f77d102006-12-16 09:44:32 -0800259 if (retval <= 0)
260 break;
261 if (copy_to_user(vec, tmp, retval)) {
262 retval = -EFAULT;
263 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Linus Torvalds2f77d102006-12-16 09:44:32 -0800265 pages -= retval;
266 vec += retval;
267 start += retval << PAGE_SHIFT;
268 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Linus Torvalds2f77d102006-12-16 09:44:32 -0800270 free_page((unsigned long) tmp);
271 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}