GNU Linux-libre 4.14.313-gnu1
[releases.git] / mm / util.c
1 #include <linux/mm.h>
2 #include <linux/slab.h>
3 #include <linux/string.h>
4 #include <linux/compiler.h>
5 #include <linux/export.h>
6 #include <linux/err.h>
7 #include <linux/sched.h>
8 #include <linux/sched/mm.h>
9 #include <linux/sched/task_stack.h>
10 #include <linux/security.h>
11 #include <linux/swap.h>
12 #include <linux/swapops.h>
13 #include <linux/mman.h>
14 #include <linux/hugetlb.h>
15 #include <linux/vmalloc.h>
16 #include <linux/userfaultfd_k.h>
17 #include <linux/random.h>
18
19 #include <asm/sections.h>
20 #include <linux/uaccess.h>
21
22 #include "internal.h"
23
24 static inline int is_kernel_rodata(unsigned long addr)
25 {
26         return addr >= (unsigned long)__start_rodata &&
27                 addr < (unsigned long)__end_rodata;
28 }
29
30 /**
31  * kfree_const - conditionally free memory
32  * @x: pointer to the memory
33  *
34  * Function calls kfree only if @x is not in .rodata section.
35  */
36 void kfree_const(const void *x)
37 {
38         if (!is_kernel_rodata((unsigned long)x))
39                 kfree(x);
40 }
41 EXPORT_SYMBOL(kfree_const);
42
43 /**
44  * kstrdup - allocate space for and copy an existing string
45  * @s: the string to duplicate
46  * @gfp: the GFP mask used in the kmalloc() call when allocating memory
47  */
48 char *kstrdup(const char *s, gfp_t gfp)
49 {
50         size_t len;
51         char *buf;
52
53         if (!s)
54                 return NULL;
55
56         len = strlen(s) + 1;
57         buf = kmalloc_track_caller(len, gfp);
58         if (buf)
59                 memcpy(buf, s, len);
60         return buf;
61 }
62 EXPORT_SYMBOL(kstrdup);
63
64 /**
65  * kstrdup_const - conditionally duplicate an existing const string
66  * @s: the string to duplicate
67  * @gfp: the GFP mask used in the kmalloc() call when allocating memory
68  *
69  * Function returns source string if it is in .rodata section otherwise it
70  * fallbacks to kstrdup.
71  * Strings allocated by kstrdup_const should be freed by kfree_const.
72  */
73 const char *kstrdup_const(const char *s, gfp_t gfp)
74 {
75         if (is_kernel_rodata((unsigned long)s))
76                 return s;
77
78         return kstrdup(s, gfp);
79 }
80 EXPORT_SYMBOL(kstrdup_const);
81
82 /**
83  * kstrndup - allocate space for and copy an existing string
84  * @s: the string to duplicate
85  * @max: read at most @max chars from @s
86  * @gfp: the GFP mask used in the kmalloc() call when allocating memory
87  *
88  * Note: Use kmemdup_nul() instead if the size is known exactly.
89  */
90 char *kstrndup(const char *s, size_t max, gfp_t gfp)
91 {
92         size_t len;
93         char *buf;
94
95         if (!s)
96                 return NULL;
97
98         len = strnlen(s, max);
99         buf = kmalloc_track_caller(len+1, gfp);
100         if (buf) {
101                 memcpy(buf, s, len);
102                 buf[len] = '\0';
103         }
104         return buf;
105 }
106 EXPORT_SYMBOL(kstrndup);
107
108 /**
109  * kmemdup - duplicate region of memory
110  *
111  * @src: memory region to duplicate
112  * @len: memory region length
113  * @gfp: GFP mask to use
114  */
115 void *kmemdup(const void *src, size_t len, gfp_t gfp)
116 {
117         void *p;
118
119         p = kmalloc_track_caller(len, gfp);
120         if (p)
121                 memcpy(p, src, len);
122         return p;
123 }
124 EXPORT_SYMBOL(kmemdup);
125
126 /**
127  * kmemdup_nul - Create a NUL-terminated string from unterminated data
128  * @s: The data to stringify
129  * @len: The size of the data
130  * @gfp: the GFP mask used in the kmalloc() call when allocating memory
131  */
132 char *kmemdup_nul(const char *s, size_t len, gfp_t gfp)
133 {
134         char *buf;
135
136         if (!s)
137                 return NULL;
138
139         buf = kmalloc_track_caller(len + 1, gfp);
140         if (buf) {
141                 memcpy(buf, s, len);
142                 buf[len] = '\0';
143         }
144         return buf;
145 }
146 EXPORT_SYMBOL(kmemdup_nul);
147
148 /**
149  * memdup_user - duplicate memory region from user space
150  *
151  * @src: source address in user space
152  * @len: number of bytes to copy
153  *
154  * Returns an ERR_PTR() on failure.
155  */
156 void *memdup_user(const void __user *src, size_t len)
157 {
158         void *p;
159
160         /*
161          * Always use GFP_KERNEL, since copy_from_user() can sleep and
162          * cause pagefault, which makes it pointless to use GFP_NOFS
163          * or GFP_ATOMIC.
164          */
165         p = kmalloc_track_caller(len, GFP_KERNEL);
166         if (!p)
167                 return ERR_PTR(-ENOMEM);
168
169         if (copy_from_user(p, src, len)) {
170                 kfree(p);
171                 return ERR_PTR(-EFAULT);
172         }
173
174         return p;
175 }
176 EXPORT_SYMBOL(memdup_user);
177
178 /*
179  * strndup_user - duplicate an existing string from user space
180  * @s: The string to duplicate
181  * @n: Maximum number of bytes to copy, including the trailing NUL.
182  */
183 char *strndup_user(const char __user *s, long n)
184 {
185         char *p;
186         long length;
187
188         length = strnlen_user(s, n);
189
190         if (!length)
191                 return ERR_PTR(-EFAULT);
192
193         if (length > n)
194                 return ERR_PTR(-EINVAL);
195
196         p = memdup_user(s, length);
197
198         if (IS_ERR(p))
199                 return p;
200
201         p[length - 1] = '\0';
202
203         return p;
204 }
205 EXPORT_SYMBOL(strndup_user);
206
207 /**
208  * memdup_user_nul - duplicate memory region from user space and NUL-terminate
209  *
210  * @src: source address in user space
211  * @len: number of bytes to copy
212  *
213  * Returns an ERR_PTR() on failure.
214  */
215 void *memdup_user_nul(const void __user *src, size_t len)
216 {
217         char *p;
218
219         /*
220          * Always use GFP_KERNEL, since copy_from_user() can sleep and
221          * cause pagefault, which makes it pointless to use GFP_NOFS
222          * or GFP_ATOMIC.
223          */
224         p = kmalloc_track_caller(len + 1, GFP_KERNEL);
225         if (!p)
226                 return ERR_PTR(-ENOMEM);
227
228         if (copy_from_user(p, src, len)) {
229                 kfree(p);
230                 return ERR_PTR(-EFAULT);
231         }
232         p[len] = '\0';
233
234         return p;
235 }
236 EXPORT_SYMBOL(memdup_user_nul);
237
238 void __vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
239                 struct vm_area_struct *prev, struct rb_node *rb_parent)
240 {
241         struct vm_area_struct *next;
242
243         vma->vm_prev = prev;
244         if (prev) {
245                 next = prev->vm_next;
246                 prev->vm_next = vma;
247         } else {
248                 mm->mmap = vma;
249                 if (rb_parent)
250                         next = rb_entry(rb_parent,
251                                         struct vm_area_struct, vm_rb);
252                 else
253                         next = NULL;
254         }
255         vma->vm_next = next;
256         if (next)
257                 next->vm_prev = vma;
258 }
259
260 /* Check if the vma is being used as a stack by this task */
261 int vma_is_stack_for_current(struct vm_area_struct *vma)
262 {
263         struct task_struct * __maybe_unused t = current;
264
265         return (vma->vm_start <= KSTK_ESP(t) && vma->vm_end >= KSTK_ESP(t));
266 }
267
268 /**
269  * randomize_page - Generate a random, page aligned address
270  * @start:      The smallest acceptable address the caller will take.
271  * @range:      The size of the area, starting at @start, within which the
272  *              random address must fall.
273  *
274  * If @start + @range would overflow, @range is capped.
275  *
276  * NOTE: Historical use of randomize_range, which this replaces, presumed that
277  * @start was already page aligned.  We now align it regardless.
278  *
279  * Return: A page aligned address within [start, start + range).  On error,
280  * @start is returned.
281  */
282 unsigned long randomize_page(unsigned long start, unsigned long range)
283 {
284         if (!PAGE_ALIGNED(start)) {
285                 range -= PAGE_ALIGN(start) - start;
286                 start = PAGE_ALIGN(start);
287         }
288
289         if (start > ULONG_MAX - range)
290                 range = ULONG_MAX - start;
291
292         range >>= PAGE_SHIFT;
293
294         if (range == 0)
295                 return start;
296
297         return start + (get_random_long() % range << PAGE_SHIFT);
298 }
299
300 #if defined(CONFIG_MMU) && !defined(HAVE_ARCH_PICK_MMAP_LAYOUT)
301 void arch_pick_mmap_layout(struct mm_struct *mm)
302 {
303         mm->mmap_base = TASK_UNMAPPED_BASE;
304         mm->get_unmapped_area = arch_get_unmapped_area;
305 }
306 #endif
307
308 /*
309  * Like get_user_pages_fast() except its IRQ-safe in that it won't fall
310  * back to the regular GUP.
311  * If the architecture not support this function, simply return with no
312  * page pinned
313  */
314 int __weak __get_user_pages_fast(unsigned long start,
315                                  int nr_pages, int write, struct page **pages)
316 {
317         return 0;
318 }
319 EXPORT_SYMBOL_GPL(__get_user_pages_fast);
320
321 /**
322  * get_user_pages_fast() - pin user pages in memory
323  * @start:      starting user address
324  * @nr_pages:   number of pages from start to pin
325  * @write:      whether pages will be written to
326  * @pages:      array that receives pointers to the pages pinned.
327  *              Should be at least nr_pages long.
328  *
329  * Returns number of pages pinned. This may be fewer than the number
330  * requested. If nr_pages is 0 or negative, returns 0. If no pages
331  * were pinned, returns -errno.
332  *
333  * get_user_pages_fast provides equivalent functionality to get_user_pages,
334  * operating on current and current->mm, with force=0 and vma=NULL. However
335  * unlike get_user_pages, it must be called without mmap_sem held.
336  *
337  * get_user_pages_fast may take mmap_sem and page table locks, so no
338  * assumptions can be made about lack of locking. get_user_pages_fast is to be
339  * implemented in a way that is advantageous (vs get_user_pages()) when the
340  * user memory area is already faulted in and present in ptes. However if the
341  * pages have to be faulted in, it may turn out to be slightly slower so
342  * callers need to carefully consider what to use. On many architectures,
343  * get_user_pages_fast simply falls back to get_user_pages.
344  */
345 int __weak get_user_pages_fast(unsigned long start,
346                                 int nr_pages, int write, struct page **pages)
347 {
348         return get_user_pages_unlocked(start, nr_pages, pages,
349                                        write ? FOLL_WRITE : 0);
350 }
351 EXPORT_SYMBOL_GPL(get_user_pages_fast);
352
353 unsigned long vm_mmap_pgoff(struct file *file, unsigned long addr,
354         unsigned long len, unsigned long prot,
355         unsigned long flag, unsigned long pgoff)
356 {
357         unsigned long ret;
358         struct mm_struct *mm = current->mm;
359         unsigned long populate;
360         LIST_HEAD(uf);
361
362         ret = security_mmap_file(file, prot, flag);
363         if (!ret) {
364                 if (down_write_killable(&mm->mmap_sem))
365                         return -EINTR;
366                 ret = do_mmap_pgoff(file, addr, len, prot, flag, pgoff,
367                                     &populate, &uf);
368                 up_write(&mm->mmap_sem);
369                 userfaultfd_unmap_complete(mm, &uf);
370                 if (populate)
371                         mm_populate(ret, populate);
372         }
373         return ret;
374 }
375
376 unsigned long vm_mmap(struct file *file, unsigned long addr,
377         unsigned long len, unsigned long prot,
378         unsigned long flag, unsigned long offset)
379 {
380         if (unlikely(offset + PAGE_ALIGN(len) < offset))
381                 return -EINVAL;
382         if (unlikely(offset_in_page(offset)))
383                 return -EINVAL;
384
385         return vm_mmap_pgoff(file, addr, len, prot, flag, offset >> PAGE_SHIFT);
386 }
387 EXPORT_SYMBOL(vm_mmap);
388
389 /**
390  * kvmalloc_node - attempt to allocate physically contiguous memory, but upon
391  * failure, fall back to non-contiguous (vmalloc) allocation.
392  * @size: size of the request.
393  * @flags: gfp mask for the allocation - must be compatible (superset) with GFP_KERNEL.
394  * @node: numa node to allocate from
395  *
396  * Uses kmalloc to get the memory but if the allocation fails then falls back
397  * to the vmalloc allocator. Use kvfree for freeing the memory.
398  *
399  * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported.
400  * __GFP_RETRY_MAYFAIL is supported, and it should be used only if kmalloc is
401  * preferable to the vmalloc fallback, due to visible performance drawbacks.
402  *
403  * Please note that any use of gfp flags outside of GFP_KERNEL is careful to not
404  * fall back to vmalloc.
405  */
406 void *kvmalloc_node(size_t size, gfp_t flags, int node)
407 {
408         gfp_t kmalloc_flags = flags;
409         void *ret;
410
411         /*
412          * vmalloc uses GFP_KERNEL for some internal allocations (e.g page tables)
413          * so the given set of flags has to be compatible.
414          */
415         if ((flags & GFP_KERNEL) != GFP_KERNEL)
416                 return kmalloc_node(size, flags, node);
417
418         /*
419          * We want to attempt a large physically contiguous block first because
420          * it is less likely to fragment multiple larger blocks and therefore
421          * contribute to a long term fragmentation less than vmalloc fallback.
422          * However make sure that larger requests are not too disruptive - no
423          * OOM killer and no allocation failure warnings as we have a fallback.
424          */
425         if (size > PAGE_SIZE) {
426                 kmalloc_flags |= __GFP_NOWARN;
427
428                 if (!(kmalloc_flags & __GFP_RETRY_MAYFAIL))
429                         kmalloc_flags |= __GFP_NORETRY;
430         }
431
432         ret = kmalloc_node(size, kmalloc_flags, node);
433
434         /*
435          * It doesn't really make sense to fallback to vmalloc for sub page
436          * requests
437          */
438         if (ret || size <= PAGE_SIZE)
439                 return ret;
440
441         return __vmalloc_node_flags_caller(size, node, flags,
442                         __builtin_return_address(0));
443 }
444 EXPORT_SYMBOL(kvmalloc_node);
445
446 void kvfree(const void *addr)
447 {
448         if (is_vmalloc_addr(addr))
449                 vfree(addr);
450         else
451                 kfree(addr);
452 }
453 EXPORT_SYMBOL(kvfree);
454
455 /**
456  * kvfree_sensitive - Free a data object containing sensitive information.
457  * @addr: address of the data object to be freed.
458  * @len: length of the data object.
459  *
460  * Use the special memzero_explicit() function to clear the content of a
461  * kvmalloc'ed object containing sensitive data to make sure that the
462  * compiler won't optimize out the data clearing.
463  */
464 void kvfree_sensitive(const void *addr, size_t len)
465 {
466         if (likely(!ZERO_OR_NULL_PTR(addr))) {
467                 memzero_explicit((void *)addr, len);
468                 kvfree(addr);
469         }
470 }
471 EXPORT_SYMBOL(kvfree_sensitive);
472
473 static inline void *__page_rmapping(struct page *page)
474 {
475         unsigned long mapping;
476
477         mapping = (unsigned long)page->mapping;
478         mapping &= ~PAGE_MAPPING_FLAGS;
479
480         return (void *)mapping;
481 }
482
483 /* Neutral page->mapping pointer to address_space or anon_vma or other */
484 void *page_rmapping(struct page *page)
485 {
486         page = compound_head(page);
487         return __page_rmapping(page);
488 }
489
490 /*
491  * Return true if this page is mapped into pagetables.
492  * For compound page it returns true if any subpage of compound page is mapped.
493  */
494 bool page_mapped(struct page *page)
495 {
496         int i;
497
498         if (likely(!PageCompound(page)))
499                 return atomic_read(&page->_mapcount) >= 0;
500         page = compound_head(page);
501         if (atomic_read(compound_mapcount_ptr(page)) >= 0)
502                 return true;
503         if (PageHuge(page))
504                 return false;
505         for (i = 0; i < (1 << compound_order(page)); i++) {
506                 if (atomic_read(&page[i]._mapcount) >= 0)
507                         return true;
508         }
509         return false;
510 }
511 EXPORT_SYMBOL(page_mapped);
512
513 struct anon_vma *page_anon_vma(struct page *page)
514 {
515         unsigned long mapping;
516
517         page = compound_head(page);
518         mapping = (unsigned long)page->mapping;
519         if ((mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
520                 return NULL;
521         return __page_rmapping(page);
522 }
523
524 struct address_space *page_mapping(struct page *page)
525 {
526         struct address_space *mapping;
527
528         page = compound_head(page);
529
530         /* This happens if someone calls flush_dcache_page on slab page */
531         if (unlikely(PageSlab(page)))
532                 return NULL;
533
534         if (unlikely(PageSwapCache(page))) {
535                 swp_entry_t entry;
536
537                 entry.val = page_private(page);
538                 return swap_address_space(entry);
539         }
540
541         mapping = page->mapping;
542         if ((unsigned long)mapping & PAGE_MAPPING_ANON)
543                 return NULL;
544
545         return (void *)((unsigned long)mapping & ~PAGE_MAPPING_FLAGS);
546 }
547 EXPORT_SYMBOL(page_mapping);
548
549 /* Slow path of page_mapcount() for compound pages */
550 int __page_mapcount(struct page *page)
551 {
552         int ret;
553
554         ret = atomic_read(&page->_mapcount) + 1;
555         /*
556          * For file THP page->_mapcount contains total number of mapping
557          * of the page: no need to look into compound_mapcount.
558          */
559         if (!PageAnon(page) && !PageHuge(page))
560                 return ret;
561         page = compound_head(page);
562         ret += atomic_read(compound_mapcount_ptr(page)) + 1;
563         if (PageDoubleMap(page))
564                 ret--;
565         return ret;
566 }
567 EXPORT_SYMBOL_GPL(__page_mapcount);
568
569 int sysctl_overcommit_memory __read_mostly = OVERCOMMIT_GUESS;
570 int sysctl_overcommit_ratio __read_mostly = 50;
571 unsigned long sysctl_overcommit_kbytes __read_mostly;
572 int sysctl_max_map_count __read_mostly = DEFAULT_MAX_MAP_COUNT;
573 unsigned long sysctl_user_reserve_kbytes __read_mostly = 1UL << 17; /* 128MB */
574 unsigned long sysctl_admin_reserve_kbytes __read_mostly = 1UL << 13; /* 8MB */
575
576 int overcommit_ratio_handler(struct ctl_table *table, int write,
577                              void __user *buffer, size_t *lenp,
578                              loff_t *ppos)
579 {
580         int ret;
581
582         ret = proc_dointvec(table, write, buffer, lenp, ppos);
583         if (ret == 0 && write)
584                 sysctl_overcommit_kbytes = 0;
585         return ret;
586 }
587
588 int overcommit_kbytes_handler(struct ctl_table *table, int write,
589                              void __user *buffer, size_t *lenp,
590                              loff_t *ppos)
591 {
592         int ret;
593
594         ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
595         if (ret == 0 && write)
596                 sysctl_overcommit_ratio = 0;
597         return ret;
598 }
599
600 /*
601  * Committed memory limit enforced when OVERCOMMIT_NEVER policy is used
602  */
603 unsigned long vm_commit_limit(void)
604 {
605         unsigned long allowed;
606
607         if (sysctl_overcommit_kbytes)
608                 allowed = sysctl_overcommit_kbytes >> (PAGE_SHIFT - 10);
609         else
610                 allowed = ((totalram_pages - hugetlb_total_pages())
611                            * sysctl_overcommit_ratio / 100);
612         allowed += total_swap_pages;
613
614         return allowed;
615 }
616
617 /*
618  * Make sure vm_committed_as in one cacheline and not cacheline shared with
619  * other variables. It can be updated by several CPUs frequently.
620  */
621 struct percpu_counter vm_committed_as ____cacheline_aligned_in_smp;
622
623 /*
624  * The global memory commitment made in the system can be a metric
625  * that can be used to drive ballooning decisions when Linux is hosted
626  * as a guest. On Hyper-V, the host implements a policy engine for dynamically
627  * balancing memory across competing virtual machines that are hosted.
628  * Several metrics drive this policy engine including the guest reported
629  * memory commitment.
630  */
631 unsigned long vm_memory_committed(void)
632 {
633         return percpu_counter_read_positive(&vm_committed_as);
634 }
635 EXPORT_SYMBOL_GPL(vm_memory_committed);
636
637 /*
638  * Check that a process has enough memory to allocate a new virtual
639  * mapping. 0 means there is enough memory for the allocation to
640  * succeed and -ENOMEM implies there is not.
641  *
642  * We currently support three overcommit policies, which are set via the
643  * vm.overcommit_memory sysctl.  See Documentation/vm/overcommit-accounting
644  *
645  * Strict overcommit modes added 2002 Feb 26 by Alan Cox.
646  * Additional code 2002 Jul 20 by Robert Love.
647  *
648  * cap_sys_admin is 1 if the process has admin privileges, 0 otherwise.
649  *
650  * Note this is a helper function intended to be used by LSMs which
651  * wish to use this logic.
652  */
653 int __vm_enough_memory(struct mm_struct *mm, long pages, int cap_sys_admin)
654 {
655         long free, allowed, reserve;
656
657         VM_WARN_ONCE(percpu_counter_read(&vm_committed_as) <
658                         -(s64)vm_committed_as_batch * num_online_cpus(),
659                         "memory commitment underflow");
660
661         vm_acct_memory(pages);
662
663         /*
664          * Sometimes we want to use more memory than we have
665          */
666         if (sysctl_overcommit_memory == OVERCOMMIT_ALWAYS)
667                 return 0;
668
669         if (sysctl_overcommit_memory == OVERCOMMIT_GUESS) {
670                 free = global_zone_page_state(NR_FREE_PAGES);
671                 free += global_node_page_state(NR_FILE_PAGES);
672
673                 /*
674                  * shmem pages shouldn't be counted as free in this
675                  * case, they can't be purged, only swapped out, and
676                  * that won't affect the overall amount of available
677                  * memory in the system.
678                  */
679                 free -= global_node_page_state(NR_SHMEM);
680
681                 free += get_nr_swap_pages();
682
683                 /*
684                  * Any slabs which are created with the
685                  * SLAB_RECLAIM_ACCOUNT flag claim to have contents
686                  * which are reclaimable, under pressure.  The dentry
687                  * cache and most inode caches should fall into this
688                  */
689                 free += global_node_page_state(NR_SLAB_RECLAIMABLE);
690
691                 /*
692                  * Part of the kernel memory, which can be released
693                  * under memory pressure.
694                  */
695                 free += global_node_page_state(
696                         NR_INDIRECTLY_RECLAIMABLE_BYTES) >> PAGE_SHIFT;
697
698                 /*
699                  * Leave reserved pages. The pages are not for anonymous pages.
700                  */
701                 if (free <= totalreserve_pages)
702                         goto error;
703                 else
704                         free -= totalreserve_pages;
705
706                 /*
707                  * Reserve some for root
708                  */
709                 if (!cap_sys_admin)
710                         free -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
711
712                 if (free > pages)
713                         return 0;
714
715                 goto error;
716         }
717
718         allowed = vm_commit_limit();
719         /*
720          * Reserve some for root
721          */
722         if (!cap_sys_admin)
723                 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10);
724
725         /*
726          * Don't let a single process grow so big a user can't recover
727          */
728         if (mm) {
729                 reserve = sysctl_user_reserve_kbytes >> (PAGE_SHIFT - 10);
730                 allowed -= min_t(long, mm->total_vm / 32, reserve);
731         }
732
733         if (percpu_counter_read_positive(&vm_committed_as) < allowed)
734                 return 0;
735 error:
736         vm_unacct_memory(pages);
737
738         return -ENOMEM;
739 }
740
741 /**
742  * get_cmdline() - copy the cmdline value to a buffer.
743  * @task:     the task whose cmdline value to copy.
744  * @buffer:   the buffer to copy to.
745  * @buflen:   the length of the buffer. Larger cmdline values are truncated
746  *            to this length.
747  * Returns the size of the cmdline field copied. Note that the copy does
748  * not guarantee an ending NULL byte.
749  */
750 int get_cmdline(struct task_struct *task, char *buffer, int buflen)
751 {
752         int res = 0;
753         unsigned int len;
754         struct mm_struct *mm = get_task_mm(task);
755         unsigned long arg_start, arg_end, env_start, env_end;
756         if (!mm)
757                 goto out;
758         if (!mm->arg_end)
759                 goto out_mm;    /* Shh! No looking before we're done */
760
761         down_read(&mm->mmap_sem);
762         arg_start = mm->arg_start;
763         arg_end = mm->arg_end;
764         env_start = mm->env_start;
765         env_end = mm->env_end;
766         up_read(&mm->mmap_sem);
767
768         len = arg_end - arg_start;
769
770         if (len > buflen)
771                 len = buflen;
772
773         res = access_process_vm(task, arg_start, buffer, len, FOLL_FORCE);
774
775         /*
776          * If the nul at the end of args has been overwritten, then
777          * assume application is using setproctitle(3).
778          */
779         if (res > 0 && buffer[res-1] != '\0' && len < buflen) {
780                 len = strnlen(buffer, res);
781                 if (len < res) {
782                         res = len;
783                 } else {
784                         len = env_end - env_start;
785                         if (len > buflen - res)
786                                 len = buflen - res;
787                         res += access_process_vm(task, env_start,
788                                                  buffer+res, len,
789                                                  FOLL_FORCE);
790                         res = strnlen(buffer, res);
791                 }
792         }
793 out_mm:
794         mmput(mm);
795 out:
796         return res;
797 }