blob: 9780097e3812cf2c5c57a2fa3e21517215fedb8d [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 */
10#include <linux/slab.h>
11#include <linux/pagemap.h>
12#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/uaccess.h>
19#include <asm/pgtable.h>
20
21/*
22 * Later we can get more picky about what "in core" means precisely.
23 * For now, simply check to see if the page is in the page cache,
24 * and is up to date; i.e. that no page-in operation would be required
25 * at this time if an application were to map and access this page.
26 */
Nick Piggin42da9cb2007-02-12 00:51:39 -080027static unsigned char mincore_page(struct address_space *mapping, pgoff_t pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 unsigned char present = 0;
Nick Piggin42da9cb2007-02-12 00:51:39 -080030 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Nick Piggin42da9cb2007-02-12 00:51:39 -080032 /*
33 * When tmpfs swaps out a page from a file, any process mapping that
34 * file will not get a swp_entry_t in its pte, but rather it is like
35 * any other file mapping (ie. marked !present and faulted in with
36 * tmpfs's .nopage). So swapped out tmpfs mappings are tested here.
37 *
38 * However when tmpfs moves the page from pagecache and into swapcache,
39 * it is still in core, but the find_get_page below won't find it.
40 * No big deal, but make a note of it.
41 */
42 page = find_get_page(mapping, pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (page) {
44 present = PageUptodate(page);
45 page_cache_release(page);
46 }
47
48 return present;
49}
50
Linus Torvalds2f77d102006-12-16 09:44:32 -080051/*
52 * Do a chunk of "sys_mincore()". We've already checked
53 * all the arguments, we hold the mmap semaphore: we should
54 * just return the amount of info we're asked for.
55 */
56static long do_mincore(unsigned long addr, unsigned char *vec, unsigned long pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Nick Piggin42da9cb2007-02-12 00:51:39 -080058 pgd_t *pgd;
59 pud_t *pud;
60 pmd_t *pmd;
61 pte_t *ptep;
62 spinlock_t *ptl;
63 unsigned long nr;
64 int i;
65 pgoff_t pgoff;
Linus Torvalds2f77d102006-12-16 09:44:32 -080066 struct vm_area_struct *vma = find_vma(current->mm, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Linus Torvalds2f77d102006-12-16 09:44:32 -080068 /*
Linus Torvalds4fb23e42006-12-16 16:01:50 -080069 * find_vma() didn't find anything above us, or we're
70 * in an unmapped hole in the address space: ENOMEM.
Linus Torvalds2f77d102006-12-16 09:44:32 -080071 */
Linus Torvalds4fb23e42006-12-16 16:01:50 -080072 if (!vma || addr < vma->vm_start)
73 return -ENOMEM;
Linus Torvalds2f77d102006-12-16 09:44:32 -080074
75 /*
Nick Piggin42da9cb2007-02-12 00:51:39 -080076 * Calculate how many pages there are left in the last level of the
77 * PTE array for our address.
Linus Torvalds2f77d102006-12-16 09:44:32 -080078 */
Nick Piggin42da9cb2007-02-12 00:51:39 -080079 nr = PTRS_PER_PTE - ((addr >> PAGE_SHIFT) & (PTRS_PER_PTE-1));
Linus Torvalds2f77d102006-12-16 09:44:32 -080080 if (nr > pages)
81 nr = pages;
82
Nick Piggin42da9cb2007-02-12 00:51:39 -080083 pgd = pgd_offset(vma->vm_mm, addr);
84 if (pgd_none_or_clear_bad(pgd))
85 goto none_mapped;
86 pud = pud_offset(pgd, addr);
87 if (pud_none_or_clear_bad(pud))
88 goto none_mapped;
89 pmd = pmd_offset(pud, addr);
90 if (pmd_none_or_clear_bad(pmd))
91 goto none_mapped;
Linus Torvalds2f77d102006-12-16 09:44:32 -080092
Nick Piggin42da9cb2007-02-12 00:51:39 -080093 ptep = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
94 for (i = 0; i < nr; i++, ptep++, addr += PAGE_SIZE) {
95 unsigned char present;
96 pte_t pte = *ptep;
97
98 if (pte_present(pte)) {
99 present = 1;
100
101 } else if (pte_none(pte)) {
102 if (vma->vm_file) {
103 pgoff = linear_page_index(vma, addr);
104 present = mincore_page(vma->vm_file->f_mapping,
105 pgoff);
106 } else
107 present = 0;
108
109 } else if (pte_file(pte)) {
110 pgoff = pte_to_pgoff(pte);
111 present = mincore_page(vma->vm_file->f_mapping, pgoff);
112
113 } else { /* pte is a swap entry */
114 swp_entry_t entry = pte_to_swp_entry(pte);
115 if (is_migration_entry(entry)) {
116 /* migration entries are always uptodate */
117 present = 1;
118 } else {
Nick Piggin30fcffe2007-02-14 12:35:02 +0100119#ifdef CONFIG_SWAP
Nick Piggin42da9cb2007-02-12 00:51:39 -0800120 pgoff = entry.val;
121 present = mincore_page(&swapper_space, pgoff);
Nick Piggin30fcffe2007-02-14 12:35:02 +0100122#else
123 WARN_ON(1);
124 present = 1;
125#endif
Nick Piggin42da9cb2007-02-12 00:51:39 -0800126 }
127 }
128 }
129 pte_unmap_unlock(ptep-1, ptl);
130
131 return nr;
132
133none_mapped:
134 if (vma->vm_file) {
135 pgoff = linear_page_index(vma, addr);
136 for (i = 0; i < nr; i++, pgoff++)
137 vec[i] = mincore_page(vma->vm_file->f_mapping, pgoff);
138 }
Linus Torvalds2f77d102006-12-16 09:44:32 -0800139
140 return nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143/*
144 * The mincore(2) system call.
145 *
146 * mincore() returns the memory residency status of the pages in the
147 * current process's address space specified by [addr, addr + len).
148 * The status is returned in a vector of bytes. The least significant
149 * bit of each byte is 1 if the referenced page is in memory, otherwise
150 * it is zero.
151 *
152 * Because the status of a page can change after mincore() checks it
153 * but before it returns to the application, the returned vector may
154 * contain stale information. Only locked pages are guaranteed to
155 * remain in memory.
156 *
157 * return values:
158 * zero - success
159 * -EFAULT - vec points to an illegal address
160 * -EINVAL - addr is not a multiple of PAGE_CACHE_SIZE
161 * -ENOMEM - Addresses in the range [addr, addr + len] are
162 * invalid for the address space of this process, or
163 * specify one or more pages which are not currently
164 * mapped
165 * -EAGAIN - A kernel resource was temporarily unavailable.
166 */
167asmlinkage long sys_mincore(unsigned long start, size_t len,
168 unsigned char __user * vec)
169{
Linus Torvalds2f77d102006-12-16 09:44:32 -0800170 long retval;
171 unsigned long pages;
172 unsigned char *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds2f77d102006-12-16 09:44:32 -0800174 /* Check the start address: needs to be page-aligned.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (start & ~PAGE_CACHE_MASK)
Linus Torvalds2f77d102006-12-16 09:44:32 -0800176 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds2f77d102006-12-16 09:44:32 -0800178 /* ..and we need to be passed a valid user-space range */
179 if (!access_ok(VERIFY_READ, (void __user *) start, len))
180 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds2f77d102006-12-16 09:44:32 -0800182 /* This also avoids any overflows on PAGE_CACHE_ALIGN */
183 pages = len >> PAGE_SHIFT;
184 pages += (len & ~PAGE_MASK) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds2f77d102006-12-16 09:44:32 -0800186 if (!access_ok(VERIFY_WRITE, vec, pages))
187 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Linus Torvalds2f77d102006-12-16 09:44:32 -0800189 tmp = (void *) __get_free_page(GFP_USER);
190 if (!tmp)
Linus Torvalds4fb23e42006-12-16 16:01:50 -0800191 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds2f77d102006-12-16 09:44:32 -0800193 retval = 0;
194 while (pages) {
195 /*
196 * Do at most PAGE_SIZE entries per iteration, due to
197 * the temporary buffer size.
198 */
199 down_read(&current->mm->mmap_sem);
Oleg Nesterov825020c2006-12-17 18:52:47 +0300200 retval = do_mincore(start, tmp, min(pages, PAGE_SIZE));
Linus Torvalds2f77d102006-12-16 09:44:32 -0800201 up_read(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds2f77d102006-12-16 09:44:32 -0800203 if (retval <= 0)
204 break;
205 if (copy_to_user(vec, tmp, retval)) {
206 retval = -EFAULT;
207 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Linus Torvalds2f77d102006-12-16 09:44:32 -0800209 pages -= retval;
210 vec += retval;
211 start += retval << PAGE_SHIFT;
212 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
Linus Torvalds2f77d102006-12-16 09:44:32 -0800214 free_page((unsigned long) tmp);
215 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}