blob: 621afcea2bfa82dc7266230a112a15ee16c5bed9 [file] [log] [blame]
Andrew Morton16d69262008-07-25 19:44:36 -07001#include <linux/mm.h>
Matt Mackall30992c92006-01-08 01:01:43 -08002#include <linux/slab.h>
3#include <linux/string.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -07004#include <linux/compiler.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -04005#include <linux/export.h>
Davi Arnaut96840aa2006-03-24 03:18:42 -08006#include <linux/err.h>
Adrian Bunk3b8f14b2008-07-26 15:22:28 -07007#include <linux/sched.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +01008#include <linux/sched/mm.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +01009#include <linux/sched/task_stack.h>
Al Viroeb36c582012-05-30 20:17:35 -040010#include <linux/security.h>
Shaohua Li98003392013-02-22 16:34:35 -080011#include <linux/swap.h>
Shaohua Li33806f02013-02-22 16:34:37 -080012#include <linux/swapops.h>
Jerome Marchand00619bc2013-11-12 15:08:31 -080013#include <linux/mman.h>
14#include <linux/hugetlb.h>
Al Viro39f1f782014-05-06 14:02:53 -040015#include <linux/vmalloc.h>
Mike Rapoport897ab3e2017-02-24 14:58:22 -080016#include <linux/userfaultfd_k.h>
Jerome Marchand00619bc2013-11-12 15:08:31 -080017
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -080018#include <asm/sections.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080019#include <linux/uaccess.h>
Matt Mackall30992c92006-01-08 01:01:43 -080020
Namhyung Kim6038def2011-05-24 17:11:22 -070021#include "internal.h"
22
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -080023static inline int is_kernel_rodata(unsigned long addr)
24{
25 return addr >= (unsigned long)__start_rodata &&
26 addr < (unsigned long)__end_rodata;
27}
28
29/**
30 * kfree_const - conditionally free memory
31 * @x: pointer to the memory
32 *
33 * Function calls kfree only if @x is not in .rodata section.
34 */
35void kfree_const(const void *x)
36{
37 if (!is_kernel_rodata((unsigned long)x))
38 kfree(x);
39}
40EXPORT_SYMBOL(kfree_const);
41
Matt Mackall30992c92006-01-08 01:01:43 -080042/**
Matt Mackall30992c92006-01-08 01:01:43 -080043 * kstrdup - allocate space for and copy an existing string
Matt Mackall30992c92006-01-08 01:01:43 -080044 * @s: the string to duplicate
45 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
46 */
47char *kstrdup(const char *s, gfp_t gfp)
48{
49 size_t len;
50 char *buf;
51
52 if (!s)
53 return NULL;
54
55 len = strlen(s) + 1;
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -070056 buf = kmalloc_track_caller(len, gfp);
Matt Mackall30992c92006-01-08 01:01:43 -080057 if (buf)
58 memcpy(buf, s, len);
59 return buf;
60}
61EXPORT_SYMBOL(kstrdup);
Davi Arnaut96840aa2006-03-24 03:18:42 -080062
Alexey Dobriyan1a2f67b2006-09-30 23:27:20 -070063/**
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -080064 * kstrdup_const - conditionally duplicate an existing const string
65 * @s: the string to duplicate
66 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
67 *
68 * Function returns source string if it is in .rodata section otherwise it
69 * fallbacks to kstrdup.
70 * Strings allocated by kstrdup_const should be freed by kfree_const.
71 */
72const char *kstrdup_const(const char *s, gfp_t gfp)
73{
74 if (is_kernel_rodata((unsigned long)s))
75 return s;
76
77 return kstrdup(s, gfp);
78}
79EXPORT_SYMBOL(kstrdup_const);
80
81/**
Jeremy Fitzhardinge1e66df32007-07-17 18:37:02 -070082 * kstrndup - allocate space for and copy an existing string
83 * @s: the string to duplicate
84 * @max: read at most @max chars from @s
85 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
David Howellsf3515742017-07-04 17:25:02 +010086 *
87 * Note: Use kmemdup_nul() instead if the size is known exactly.
Jeremy Fitzhardinge1e66df32007-07-17 18:37:02 -070088 */
89char *kstrndup(const char *s, size_t max, gfp_t gfp)
90{
91 size_t len;
92 char *buf;
93
94 if (!s)
95 return NULL;
96
97 len = strnlen(s, max);
98 buf = kmalloc_track_caller(len+1, gfp);
99 if (buf) {
100 memcpy(buf, s, len);
101 buf[len] = '\0';
102 }
103 return buf;
104}
105EXPORT_SYMBOL(kstrndup);
106
107/**
Alexey Dobriyan1a2f67b2006-09-30 23:27:20 -0700108 * kmemdup - duplicate region of memory
109 *
110 * @src: memory region to duplicate
111 * @len: memory region length
112 * @gfp: GFP mask to use
113 */
114void *kmemdup(const void *src, size_t len, gfp_t gfp)
115{
116 void *p;
117
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -0700118 p = kmalloc_track_caller(len, gfp);
Alexey Dobriyan1a2f67b2006-09-30 23:27:20 -0700119 if (p)
120 memcpy(p, src, len);
121 return p;
122}
123EXPORT_SYMBOL(kmemdup);
124
Christoph Lameteref2ad802007-07-17 04:03:21 -0700125/**
David Howellsf3515742017-07-04 17:25:02 +0100126 * kmemdup_nul - Create a NUL-terminated string from unterminated data
127 * @s: The data to stringify
128 * @len: The size of the data
129 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
130 */
131char *kmemdup_nul(const char *s, size_t len, gfp_t gfp)
132{
133 char *buf;
134
135 if (!s)
136 return NULL;
137
138 buf = kmalloc_track_caller(len + 1, gfp);
139 if (buf) {
140 memcpy(buf, s, len);
141 buf[len] = '\0';
142 }
143 return buf;
144}
145EXPORT_SYMBOL(kmemdup_nul);
146
147/**
Li Zefan610a77e2009-03-31 15:23:16 -0700148 * memdup_user - duplicate memory region from user space
149 *
150 * @src: source address in user space
151 * @len: number of bytes to copy
152 *
Al Viro50fd2f22018-01-07 13:06:15 -0500153 * Returns an ERR_PTR() on failure. Result is physically
154 * contiguous, to be freed by kfree().
Li Zefan610a77e2009-03-31 15:23:16 -0700155 */
156void *memdup_user(const void __user *src, size_t len)
157{
158 void *p;
159
Al Viro6c2c97a2018-01-07 13:00:27 -0500160 p = kmalloc_track_caller(len, GFP_USER);
Li Zefan610a77e2009-03-31 15:23:16 -0700161 if (!p)
162 return ERR_PTR(-ENOMEM);
163
164 if (copy_from_user(p, src, len)) {
165 kfree(p);
166 return ERR_PTR(-EFAULT);
167 }
168
169 return p;
170}
171EXPORT_SYMBOL(memdup_user);
172
Al Viro50fd2f22018-01-07 13:06:15 -0500173/**
174 * vmemdup_user - duplicate memory region from user space
175 *
176 * @src: source address in user space
177 * @len: number of bytes to copy
178 *
179 * Returns an ERR_PTR() on failure. Result may be not
180 * physically contiguous. Use kvfree() to free.
181 */
182void *vmemdup_user(const void __user *src, size_t len)
183{
184 void *p;
185
186 p = kvmalloc(len, GFP_USER);
187 if (!p)
188 return ERR_PTR(-ENOMEM);
189
190 if (copy_from_user(p, src, len)) {
191 kvfree(p);
192 return ERR_PTR(-EFAULT);
193 }
194
195 return p;
196}
197EXPORT_SYMBOL(vmemdup_user);
198
Mike Rapoportb86181f2018-08-23 17:00:59 -0700199/**
Davi Arnaut96840aa2006-03-24 03:18:42 -0800200 * strndup_user - duplicate an existing string from user space
Davi Arnaut96840aa2006-03-24 03:18:42 -0800201 * @s: The string to duplicate
202 * @n: Maximum number of bytes to copy, including the trailing NUL.
203 */
204char *strndup_user(const char __user *s, long n)
205{
206 char *p;
207 long length;
208
209 length = strnlen_user(s, n);
210
211 if (!length)
212 return ERR_PTR(-EFAULT);
213
214 if (length > n)
215 return ERR_PTR(-EINVAL);
216
Julia Lawall90d74042010-08-09 17:18:26 -0700217 p = memdup_user(s, length);
Davi Arnaut96840aa2006-03-24 03:18:42 -0800218
Julia Lawall90d74042010-08-09 17:18:26 -0700219 if (IS_ERR(p))
220 return p;
Davi Arnaut96840aa2006-03-24 03:18:42 -0800221
222 p[length - 1] = '\0';
223
224 return p;
225}
226EXPORT_SYMBOL(strndup_user);
Andrew Morton16d69262008-07-25 19:44:36 -0700227
Al Viroe9d408e2015-12-24 00:06:05 -0500228/**
229 * memdup_user_nul - duplicate memory region from user space and NUL-terminate
230 *
231 * @src: source address in user space
232 * @len: number of bytes to copy
233 *
234 * Returns an ERR_PTR() on failure.
235 */
236void *memdup_user_nul(const void __user *src, size_t len)
237{
238 char *p;
239
240 /*
241 * Always use GFP_KERNEL, since copy_from_user() can sleep and
242 * cause pagefault, which makes it pointless to use GFP_NOFS
243 * or GFP_ATOMIC.
244 */
245 p = kmalloc_track_caller(len + 1, GFP_KERNEL);
246 if (!p)
247 return ERR_PTR(-ENOMEM);
248
249 if (copy_from_user(p, src, len)) {
250 kfree(p);
251 return ERR_PTR(-EFAULT);
252 }
253 p[len] = '\0';
254
255 return p;
256}
257EXPORT_SYMBOL(memdup_user_nul);
258
Namhyung Kim6038def2011-05-24 17:11:22 -0700259void __vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
260 struct vm_area_struct *prev, struct rb_node *rb_parent)
261{
262 struct vm_area_struct *next;
263
264 vma->vm_prev = prev;
265 if (prev) {
266 next = prev->vm_next;
267 prev->vm_next = vma;
268 } else {
269 mm->mmap = vma;
270 if (rb_parent)
271 next = rb_entry(rb_parent,
272 struct vm_area_struct, vm_rb);
273 else
274 next = NULL;
275 }
276 vma->vm_next = next;
277 if (next)
278 next->vm_prev = vma;
279}
280
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -0700281/* Check if the vma is being used as a stack by this task */
Andy Lutomirskid17af502016-09-30 10:58:58 -0700282int vma_is_stack_for_current(struct vm_area_struct *vma)
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -0700283{
Andy Lutomirskid17af502016-09-30 10:58:58 -0700284 struct task_struct * __maybe_unused t = current;
285
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -0700286 return (vma->vm_start <= KSTK_ESP(t) && vma->vm_end >= KSTK_ESP(t));
287}
288
David Howellsefc1a3b2010-01-15 17:01:35 -0800289#if defined(CONFIG_MMU) && !defined(HAVE_ARCH_PICK_MMAP_LAYOUT)
Kees Cook8f2af152018-04-10 16:34:53 -0700290void arch_pick_mmap_layout(struct mm_struct *mm, struct rlimit *rlim_stack)
Andrew Morton16d69262008-07-25 19:44:36 -0700291{
292 mm->mmap_base = TASK_UNMAPPED_BASE;
293 mm->get_unmapped_area = arch_get_unmapped_area;
Andrew Morton16d69262008-07-25 19:44:36 -0700294}
295#endif
Rusty Russell912985d2008-08-12 17:52:52 -0500296
Xiao Guangrong45888a02010-08-22 19:08:57 +0800297/*
298 * Like get_user_pages_fast() except its IRQ-safe in that it won't fall
299 * back to the regular GUP.
Michael S. Tsirkind0811072018-04-13 15:35:23 -0700300 * Note a difference with get_user_pages_fast: this always returns the
301 * number of pages pinned, 0 if no pages were pinned.
302 * If the architecture does not support this function, simply return with no
303 * pages pinned.
Xiao Guangrong45888a02010-08-22 19:08:57 +0800304 */
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700305int __weak __get_user_pages_fast(unsigned long start,
Xiao Guangrong45888a02010-08-22 19:08:57 +0800306 int nr_pages, int write, struct page **pages)
307{
308 return 0;
309}
310EXPORT_SYMBOL_GPL(__get_user_pages_fast);
311
Andy Grover9de100d2009-04-13 14:40:05 -0700312/**
313 * get_user_pages_fast() - pin user pages in memory
314 * @start: starting user address
315 * @nr_pages: number of pages from start to pin
316 * @write: whether pages will be written to
317 * @pages: array that receives pointers to the pages pinned.
318 * Should be at least nr_pages long.
319 *
Andy Grover9de100d2009-04-13 14:40:05 -0700320 * Returns number of pages pinned. This may be fewer than the number
321 * requested. If nr_pages is 0 or negative, returns 0. If no pages
322 * were pinned, returns -errno.
Nick Piggind2bf6be2009-06-16 15:31:39 -0700323 *
324 * get_user_pages_fast provides equivalent functionality to get_user_pages,
325 * operating on current and current->mm, with force=0 and vma=NULL. However
326 * unlike get_user_pages, it must be called without mmap_sem held.
327 *
328 * get_user_pages_fast may take mmap_sem and page table locks, so no
329 * assumptions can be made about lack of locking. get_user_pages_fast is to be
330 * implemented in a way that is advantageous (vs get_user_pages()) when the
331 * user memory area is already faulted in and present in ptes. However if the
332 * pages have to be faulted in, it may turn out to be slightly slower so
333 * callers need to carefully consider what to use. On many architectures,
334 * get_user_pages_fast simply falls back to get_user_pages.
Andy Grover9de100d2009-04-13 14:40:05 -0700335 */
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700336int __weak get_user_pages_fast(unsigned long start,
Rusty Russell912985d2008-08-12 17:52:52 -0500337 int nr_pages, int write, struct page **pages)
338{
Lorenzo Stoakesc1641542016-10-13 01:20:13 +0100339 return get_user_pages_unlocked(start, nr_pages, pages,
340 write ? FOLL_WRITE : 0);
Rusty Russell912985d2008-08-12 17:52:52 -0500341}
342EXPORT_SYMBOL_GPL(get_user_pages_fast);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200343
Al Viroeb36c582012-05-30 20:17:35 -0400344unsigned long vm_mmap_pgoff(struct file *file, unsigned long addr,
345 unsigned long len, unsigned long prot,
Michal Hocko9fbeb5a2016-05-23 16:25:30 -0700346 unsigned long flag, unsigned long pgoff)
Al Viroeb36c582012-05-30 20:17:35 -0400347{
348 unsigned long ret;
349 struct mm_struct *mm = current->mm;
Michel Lespinasse41badc12013-02-22 16:32:47 -0800350 unsigned long populate;
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800351 LIST_HEAD(uf);
Al Viroeb36c582012-05-30 20:17:35 -0400352
353 ret = security_mmap_file(file, prot, flag);
354 if (!ret) {
Michal Hocko9fbeb5a2016-05-23 16:25:30 -0700355 if (down_write_killable(&mm->mmap_sem))
356 return -EINTR;
Michel Lespinassebebeb3d2013-02-22 16:32:37 -0800357 ret = do_mmap_pgoff(file, addr, len, prot, flag, pgoff,
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800358 &populate, &uf);
Al Viroeb36c582012-05-30 20:17:35 -0400359 up_write(&mm->mmap_sem);
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800360 userfaultfd_unmap_complete(mm, &uf);
Michel Lespinasse41badc12013-02-22 16:32:47 -0800361 if (populate)
362 mm_populate(ret, populate);
Al Viroeb36c582012-05-30 20:17:35 -0400363 }
364 return ret;
365}
366
367unsigned long vm_mmap(struct file *file, unsigned long addr,
368 unsigned long len, unsigned long prot,
369 unsigned long flag, unsigned long offset)
370{
371 if (unlikely(offset + PAGE_ALIGN(len) < offset))
372 return -EINVAL;
Alexander Kuleshovea53cde2015-11-05 18:46:46 -0800373 if (unlikely(offset_in_page(offset)))
Al Viroeb36c582012-05-30 20:17:35 -0400374 return -EINVAL;
375
Michal Hocko9fbeb5a2016-05-23 16:25:30 -0700376 return vm_mmap_pgoff(file, addr, len, prot, flag, offset >> PAGE_SHIFT);
Al Viroeb36c582012-05-30 20:17:35 -0400377}
378EXPORT_SYMBOL(vm_mmap);
379
Michal Hockoa7c3e902017-05-08 15:57:09 -0700380/**
381 * kvmalloc_node - attempt to allocate physically contiguous memory, but upon
382 * failure, fall back to non-contiguous (vmalloc) allocation.
383 * @size: size of the request.
384 * @flags: gfp mask for the allocation - must be compatible (superset) with GFP_KERNEL.
385 * @node: numa node to allocate from
386 *
387 * Uses kmalloc to get the memory but if the allocation fails then falls back
388 * to the vmalloc allocator. Use kvfree for freeing the memory.
389 *
Michal Hockocc965a22017-07-12 14:36:52 -0700390 * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported.
391 * __GFP_RETRY_MAYFAIL is supported, and it should be used only if kmalloc is
392 * preferable to the vmalloc fallback, due to visible performance drawbacks.
Michal Hockoa7c3e902017-05-08 15:57:09 -0700393 *
Michal Hockoce91f6e2018-06-07 17:09:40 -0700394 * Please note that any use of gfp flags outside of GFP_KERNEL is careful to not
395 * fall back to vmalloc.
Michal Hockoa7c3e902017-05-08 15:57:09 -0700396 */
397void *kvmalloc_node(size_t size, gfp_t flags, int node)
398{
399 gfp_t kmalloc_flags = flags;
400 void *ret;
401
402 /*
403 * vmalloc uses GFP_KERNEL for some internal allocations (e.g page tables)
404 * so the given set of flags has to be compatible.
405 */
Michal Hockoce91f6e2018-06-07 17:09:40 -0700406 if ((flags & GFP_KERNEL) != GFP_KERNEL)
407 return kmalloc_node(size, flags, node);
Michal Hockoa7c3e902017-05-08 15:57:09 -0700408
409 /*
Michal Hocko4f4f2ba2017-06-02 14:46:19 -0700410 * We want to attempt a large physically contiguous block first because
411 * it is less likely to fragment multiple larger blocks and therefore
412 * contribute to a long term fragmentation less than vmalloc fallback.
413 * However make sure that larger requests are not too disruptive - no
414 * OOM killer and no allocation failure warnings as we have a fallback.
Michal Hockoa7c3e902017-05-08 15:57:09 -0700415 */
Michal Hocko6c5ab652017-05-08 15:57:15 -0700416 if (size > PAGE_SIZE) {
417 kmalloc_flags |= __GFP_NOWARN;
418
Michal Hockocc965a22017-07-12 14:36:52 -0700419 if (!(kmalloc_flags & __GFP_RETRY_MAYFAIL))
Michal Hocko6c5ab652017-05-08 15:57:15 -0700420 kmalloc_flags |= __GFP_NORETRY;
421 }
Michal Hockoa7c3e902017-05-08 15:57:09 -0700422
423 ret = kmalloc_node(size, kmalloc_flags, node);
424
425 /*
426 * It doesn't really make sense to fallback to vmalloc for sub page
427 * requests
428 */
429 if (ret || size <= PAGE_SIZE)
430 return ret;
431
Michal Hocko8594a212017-05-12 15:46:41 -0700432 return __vmalloc_node_flags_caller(size, node, flags,
433 __builtin_return_address(0));
Michal Hockoa7c3e902017-05-08 15:57:09 -0700434}
435EXPORT_SYMBOL(kvmalloc_node);
436
Mike Rapoportff4dc772018-08-23 17:01:02 -0700437/**
Andrew Morton04b8e942018-09-04 15:45:55 -0700438 * kvfree() - Free memory.
439 * @addr: Pointer to allocated memory.
Mike Rapoportff4dc772018-08-23 17:01:02 -0700440 *
Andrew Morton04b8e942018-09-04 15:45:55 -0700441 * kvfree frees memory allocated by any of vmalloc(), kmalloc() or kvmalloc().
442 * It is slightly more efficient to use kfree() or vfree() if you are certain
443 * that you know which one to use.
444 *
445 * Context: Any context except NMI.
Mike Rapoportff4dc772018-08-23 17:01:02 -0700446 */
Al Viro39f1f782014-05-06 14:02:53 -0400447void kvfree(const void *addr)
448{
449 if (is_vmalloc_addr(addr))
450 vfree(addr);
451 else
452 kfree(addr);
453}
454EXPORT_SYMBOL(kvfree);
455
Waiman Longcdfd1ec2020-06-04 16:48:21 -0700456/**
457 * kvfree_sensitive - Free a data object containing sensitive information.
458 * @addr: address of the data object to be freed.
459 * @len: length of the data object.
460 *
461 * Use the special memzero_explicit() function to clear the content of a
462 * kvmalloc'ed object containing sensitive data to make sure that the
463 * compiler won't optimize out the data clearing.
464 */
465void kvfree_sensitive(const void *addr, size_t len)
466{
467 if (likely(!ZERO_OR_NULL_PTR(addr))) {
468 memzero_explicit((void *)addr, len);
469 kvfree(addr);
470 }
471}
472EXPORT_SYMBOL(kvfree_sensitive);
473
Kirill A. Shutemove39155e2015-04-15 16:14:53 -0700474static inline void *__page_rmapping(struct page *page)
475{
476 unsigned long mapping;
477
478 mapping = (unsigned long)page->mapping;
479 mapping &= ~PAGE_MAPPING_FLAGS;
480
481 return (void *)mapping;
482}
483
484/* Neutral page->mapping pointer to address_space or anon_vma or other */
485void *page_rmapping(struct page *page)
486{
487 page = compound_head(page);
488 return __page_rmapping(page);
489}
490
Andrew Morton1aa8aea2016-05-19 17:12:00 -0700491/*
492 * Return true if this page is mapped into pagetables.
493 * For compound page it returns true if any subpage of compound page is mapped.
494 */
495bool page_mapped(struct page *page)
496{
497 int i;
498
499 if (likely(!PageCompound(page)))
500 return atomic_read(&page->_mapcount) >= 0;
501 page = compound_head(page);
502 if (atomic_read(compound_mapcount_ptr(page)) >= 0)
503 return true;
504 if (PageHuge(page))
505 return false;
Jan Stancek160f79c2019-01-08 15:23:28 -0800506 for (i = 0; i < (1 << compound_order(page)); i++) {
Andrew Morton1aa8aea2016-05-19 17:12:00 -0700507 if (atomic_read(&page[i]._mapcount) >= 0)
508 return true;
509 }
510 return false;
511}
512EXPORT_SYMBOL(page_mapped);
513
Kirill A. Shutemove39155e2015-04-15 16:14:53 -0700514struct anon_vma *page_anon_vma(struct page *page)
515{
516 unsigned long mapping;
517
518 page = compound_head(page);
519 mapping = (unsigned long)page->mapping;
520 if ((mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
521 return NULL;
522 return __page_rmapping(page);
523}
524
Shaohua Li98003392013-02-22 16:34:35 -0800525struct address_space *page_mapping(struct page *page)
526{
Kirill A. Shutemov1c290f62016-01-15 16:52:07 -0800527 struct address_space *mapping;
528
529 page = compound_head(page);
Shaohua Li98003392013-02-22 16:34:35 -0800530
Mikulas Patocka03e5ac22014-01-14 17:56:40 -0800531 /* This happens if someone calls flush_dcache_page on slab page */
532 if (unlikely(PageSlab(page)))
533 return NULL;
534
Shaohua Li33806f02013-02-22 16:34:37 -0800535 if (unlikely(PageSwapCache(page))) {
536 swp_entry_t entry;
537
538 entry.val = page_private(page);
Kirill A. Shutemove39155e2015-04-15 16:14:53 -0700539 return swap_address_space(entry);
540 }
541
Kirill A. Shutemov1c290f62016-01-15 16:52:07 -0800542 mapping = page->mapping;
Minchan Kimbda807d2016-07-26 15:23:05 -0700543 if ((unsigned long)mapping & PAGE_MAPPING_ANON)
Kirill A. Shutemove39155e2015-04-15 16:14:53 -0700544 return NULL;
Minchan Kimbda807d2016-07-26 15:23:05 -0700545
546 return (void *)((unsigned long)mapping & ~PAGE_MAPPING_FLAGS);
Shaohua Li98003392013-02-22 16:34:35 -0800547}
Minchan Kimbda807d2016-07-26 15:23:05 -0700548EXPORT_SYMBOL(page_mapping);
Shaohua Li98003392013-02-22 16:34:35 -0800549
Huang Yingcb9f7532018-04-05 16:24:39 -0700550/*
551 * For file cache pages, return the address_space, otherwise return NULL
552 */
553struct address_space *page_mapping_file(struct page *page)
554{
555 if (unlikely(PageSwapCache(page)))
556 return NULL;
557 return page_mapping(page);
558}
559
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800560/* Slow path of page_mapcount() for compound pages */
561int __page_mapcount(struct page *page)
562{
563 int ret;
564
565 ret = atomic_read(&page->_mapcount) + 1;
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -0700566 /*
567 * For file THP page->_mapcount contains total number of mapping
568 * of the page: no need to look into compound_mapcount.
569 */
570 if (!PageAnon(page) && !PageHuge(page))
571 return ret;
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800572 page = compound_head(page);
573 ret += atomic_read(compound_mapcount_ptr(page)) + 1;
574 if (PageDoubleMap(page))
575 ret--;
576 return ret;
577}
578EXPORT_SYMBOL_GPL(__page_mapcount);
579
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700580int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS;
581int sysctl_overcommit_ratio __read_mostly = 50;
582unsigned long sysctl_overcommit_kbytes __read_mostly;
583int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
584unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
585unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
586
Jerome Marchand49f0ce52014-01-21 15:49:14 -0800587int overcommit_ratio_handler(struct ctl_table *table, int write,
588 void __user *buffer, size_t *lenp,
589 loff_t *ppos)
590{
591 int ret;
592
593 ret = proc_dointvec(table, write, buffer, lenp, ppos);
594 if (ret == 0 && write)
595 sysctl_overcommit_kbytes = 0;
596 return ret;
597}
598
599int overcommit_kbytes_handler(struct ctl_table *table, int write,
600 void __user *buffer, size_t *lenp,
601 loff_t *ppos)
602{
603 int ret;
604
605 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
606 if (ret == 0 && write)
607 sysctl_overcommit_ratio = 0;
608 return ret;
609}
610
Jerome Marchand00619bc2013-11-12 15:08:31 -0800611/*
612 * Committed memory limit enforced when OVERCOMMIT_NEVER policy is used
613 */
614unsigned long vm_commit_limit(void)
615{
Jerome Marchand49f0ce52014-01-21 15:49:14 -0800616 unsigned long allowed;
617
618 if (sysctl_overcommit_kbytes)
619 allowed = sysctl_overcommit_kbytes >> (PAGE_SHIFT - 10);
620 else
621 allowed = ((totalram_pages - hugetlb_total_pages())
622 * sysctl_overcommit_ratio / 100);
623 allowed += total_swap_pages;
624
625 return allowed;
Jerome Marchand00619bc2013-11-12 15:08:31 -0800626}
627
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700628/*
629 * Make sure vm_committed_as in one cacheline and not cacheline shared with
630 * other variables. It can be updated by several CPUs frequently.
631 */
632struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp;
633
634/*
635 * The global memory commitment made in the system can be a metric
636 * that can be used to drive ballooning decisions when Linux is hosted
637 * as a guest. On Hyper-V, the host implements a policy engine for dynamically
638 * balancing memory across competing virtual machines that are hosted.
639 * Several metrics drive this policy engine including the guest reported
640 * memory commitment.
641 */
642unsigned long vm_memory_committed(void)
643{
644 return percpu_counter_read_positive(&vm_committed_as);
645}
646EXPORT_SYMBOL_GPL(vm_memory_committed);
647
648/*
649 * Check that a process has enough memory to allocate a new virtual
650 * mapping. 0 means there is enough memory for the allocation to
651 * succeed and -ENOMEM implies there is not.
652 *
653 * We currently support three overcommit policies, which are set via the
Mike Rapoportad56b732018-03-21 21:22:47 +0200654 * vm.overcommit_memory sysctl. See Documentation/vm/overcommit-accounting.rst
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700655 *
656 * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
657 * Additional code 2002 Jul 20 by Robert Love.
658 *
659 * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
660 *
661 * Note this is a helper function intended to be used by LSMs which
662 * wish to use this logic.
663 */
664int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
665{
666 long free, allowed, reserve;
667
668 VM_WARN_ONCE(percpu_counter_read(&vm_committed_as) <
669 -(s64)vm_committed_as_batch * num_online_cpus(),
670 "memory commitment underflow");
671
672 vm_acct_memory(pages);
673
674 /*
675 * Sometimes we want to use more memory than we have
676 */
677 if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
678 return 0;
679
680 if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
Michal Hockoc41f0122017-09-06 16:23:36 -0700681 free = global_zone_page_state(NR_FREE_PAGES);
Mel Gorman11fb9982016-07-28 15:46:20 -0700682 free += global_node_page_state(NR_FILE_PAGES);
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700683
684 /*
685 * shmem pages shouldn't be counted as free in this
686 * case, they can't be purged, only swapped out, and
687 * that won't affect the overall amount of available
688 * memory in the system.
689 */
Mel Gorman11fb9982016-07-28 15:46:20 -0700690 free -= global_node_page_state(NR_SHMEM);
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700691
692 free += get_nr_swap_pages();
693
694 /*
695 * Any slabs which are created with the
696 * SLAB_RECLAIM_ACCOUNT flag claim to have contents
697 * which are reclaimable, under pressure. The dentry
698 * cache and most inode caches should fall into this
699 */
Johannes Weinerd507e2e2017-08-10 15:23:31 -0700700 free += global_node_page_state(NR_SLAB_RECLAIMABLE);
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700701
702 /*
Roman Gushchind79f7aa2018-04-10 16:27:47 -0700703 * Part of the kernel memory, which can be released
704 * under memory pressure.
705 */
706 free += global_node_page_state(
707 NR_INDIRECTLY_RECLAIMABLE_BYTES) >> PAGE_SHIFT;
708
709 /*
Andrey Ryabinin39a1aa82016-03-17 14:18:50 -0700710 * Leave reserved pages. The pages are not for anonymous pages.
711 */
712 if (free <= totalreserve_pages)
713 goto error;
714 else
715 free -= totalreserve_pages;
716
717 /*
718 * Reserve some for root
719 */
720 if (!cap_sys_admin)
721 free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
722
723 if (free > pages)
724 return 0;
725
726 goto error;
727 }
728
729 allowed = vm_commit_limit();
730 /*
731 * Reserve some for root
732 */
733 if (!cap_sys_admin)
734 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
735
736 /*
737 * Don't let a single process grow so big a user can't recover
738 */
739 if (mm) {
740 reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10);
741 allowed -= min_t(long, mm->total_vm / 32, reserve);
742 }
743
744 if (percpu_counter_read_positive(&vm_committed_as) < allowed)
745 return 0;
746error:
747 vm_unacct_memory(pages);
748
749 return -ENOMEM;
750}
751
William Robertsa9090252014-02-11 10:11:59 -0800752/**
753 * get_cmdline() - copy the cmdline value to a buffer.
754 * @task: the task whose cmdline value to copy.
755 * @buffer: the buffer to copy to.
756 * @buflen: the length of the buffer. Larger cmdline values are truncated
757 * to this length.
758 * Returns the size of the cmdline field copied. Note that the copy does
759 * not guarantee an ending NULL byte.
760 */
761int get_cmdline(struct task_struct *task, char *buffer, int buflen)
762{
763 int res = 0;
764 unsigned int len;
765 struct mm_struct *mm = get_task_mm(task);
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800766 unsigned long arg_start, arg_end, env_start, env_end;
William Robertsa9090252014-02-11 10:11:59 -0800767 if (!mm)
768 goto out;
769 if (!mm->arg_end)
770 goto out_mm; /* Shh! No looking before we're done */
771
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800772 down_read(&mm->mmap_sem);
773 arg_start = mm->arg_start;
774 arg_end = mm->arg_end;
775 env_start = mm->env_start;
776 env_end = mm->env_end;
777 up_read(&mm->mmap_sem);
778
779 len = arg_end - arg_start;
William Robertsa9090252014-02-11 10:11:59 -0800780
781 if (len > buflen)
782 len = buflen;
783
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +0100784 res = access_process_vm(task, arg_start, buffer, len, FOLL_FORCE);
William Robertsa9090252014-02-11 10:11:59 -0800785
786 /*
787 * If the nul at the end of args has been overwritten, then
788 * assume application is using setproctitle(3).
789 */
790 if (res > 0 && buffer[res-1] != '\0' && len < buflen) {
791 len = strnlen(buffer, res);
792 if (len < res) {
793 res = len;
794 } else {
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800795 len = env_end - env_start;
William Robertsa9090252014-02-11 10:11:59 -0800796 if (len > buflen - res)
797 len = buflen - res;
Mateusz Guzika3b609e2016-01-20 15:01:05 -0800798 res += access_process_vm(task, env_start,
Lorenzo Stoakesf307ab62016-10-13 01:20:20 +0100799 buffer+res, len,
800 FOLL_FORCE);
William Robertsa9090252014-02-11 10:11:59 -0800801 res = strnlen(buffer, res);
802 }
803 }
804out_mm:
805 mmput(mm);
806out:
807 return res;
808}