| Andrew Morton | 16d6926 | 2008-07-25 19:44:36 -0700 | [diff] [blame] | 1 | #include <linux/mm.h> | 
| Matt Mackall | 30992c9 | 2006-01-08 01:01:43 -0800 | [diff] [blame] | 2 | #include <linux/slab.h> | 
|  | 3 | #include <linux/string.h> | 
|  | 4 | #include <linux/module.h> | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 5 | #include <linux/err.h> | 
| Adrian Bunk | 3b8f14b | 2008-07-26 15:22:28 -0700 | [diff] [blame] | 6 | #include <linux/sched.h> | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 7 | #include <asm/uaccess.h> | 
| Matt Mackall | 30992c9 | 2006-01-08 01:01:43 -0800 | [diff] [blame] | 8 |  | 
|  | 9 | /** | 
| Matt Mackall | 30992c9 | 2006-01-08 01:01:43 -0800 | [diff] [blame] | 10 | * kstrdup - allocate space for and copy an existing string | 
| Matt Mackall | 30992c9 | 2006-01-08 01:01:43 -0800 | [diff] [blame] | 11 | * @s: the string to duplicate | 
|  | 12 | * @gfp: the GFP mask used in the kmalloc() call when allocating memory | 
|  | 13 | */ | 
|  | 14 | char *kstrdup(const char *s, gfp_t gfp) | 
|  | 15 | { | 
|  | 16 | size_t len; | 
|  | 17 | char *buf; | 
|  | 18 |  | 
|  | 19 | if (!s) | 
|  | 20 | return NULL; | 
|  | 21 |  | 
|  | 22 | len = strlen(s) + 1; | 
| Christoph Hellwig | 1d2c8ee | 2006-10-04 02:15:25 -0700 | [diff] [blame] | 23 | buf = kmalloc_track_caller(len, gfp); | 
| Matt Mackall | 30992c9 | 2006-01-08 01:01:43 -0800 | [diff] [blame] | 24 | if (buf) | 
|  | 25 | memcpy(buf, s, len); | 
|  | 26 | return buf; | 
|  | 27 | } | 
|  | 28 | EXPORT_SYMBOL(kstrdup); | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 29 |  | 
| Alexey Dobriyan | 1a2f67b | 2006-09-30 23:27:20 -0700 | [diff] [blame] | 30 | /** | 
| Jeremy Fitzhardinge | 1e66df3 | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 31 | * kstrndup - allocate space for and copy an existing string | 
|  | 32 | * @s: the string to duplicate | 
|  | 33 | * @max: read at most @max chars from @s | 
|  | 34 | * @gfp: the GFP mask used in the kmalloc() call when allocating memory | 
|  | 35 | */ | 
|  | 36 | char *kstrndup(const char *s, size_t max, gfp_t gfp) | 
|  | 37 | { | 
|  | 38 | size_t len; | 
|  | 39 | char *buf; | 
|  | 40 |  | 
|  | 41 | if (!s) | 
|  | 42 | return NULL; | 
|  | 43 |  | 
|  | 44 | len = strnlen(s, max); | 
|  | 45 | buf = kmalloc_track_caller(len+1, gfp); | 
|  | 46 | if (buf) { | 
|  | 47 | memcpy(buf, s, len); | 
|  | 48 | buf[len] = '\0'; | 
|  | 49 | } | 
|  | 50 | return buf; | 
|  | 51 | } | 
|  | 52 | EXPORT_SYMBOL(kstrndup); | 
|  | 53 |  | 
|  | 54 | /** | 
| Alexey Dobriyan | 1a2f67b | 2006-09-30 23:27:20 -0700 | [diff] [blame] | 55 | * kmemdup - duplicate region of memory | 
|  | 56 | * | 
|  | 57 | * @src: memory region to duplicate | 
|  | 58 | * @len: memory region length | 
|  | 59 | * @gfp: GFP mask to use | 
|  | 60 | */ | 
|  | 61 | void *kmemdup(const void *src, size_t len, gfp_t gfp) | 
|  | 62 | { | 
|  | 63 | void *p; | 
|  | 64 |  | 
| Christoph Hellwig | 1d2c8ee | 2006-10-04 02:15:25 -0700 | [diff] [blame] | 65 | p = kmalloc_track_caller(len, gfp); | 
| Alexey Dobriyan | 1a2f67b | 2006-09-30 23:27:20 -0700 | [diff] [blame] | 66 | if (p) | 
|  | 67 | memcpy(p, src, len); | 
|  | 68 | return p; | 
|  | 69 | } | 
|  | 70 | EXPORT_SYMBOL(kmemdup); | 
|  | 71 |  | 
| Christoph Lameter | ef2ad80 | 2007-07-17 04:03:21 -0700 | [diff] [blame] | 72 | /** | 
| Pekka Enberg | 93bc4e8 | 2008-07-26 17:49:33 -0700 | [diff] [blame] | 73 | * __krealloc - like krealloc() but don't free @p. | 
|  | 74 | * @p: object to reallocate memory for. | 
|  | 75 | * @new_size: how many bytes of memory are required. | 
|  | 76 | * @flags: the type of memory to allocate. | 
|  | 77 | * | 
|  | 78 | * This function is like krealloc() except it never frees the originally | 
|  | 79 | * allocated buffer. Use this if you don't want to free the buffer immediately | 
|  | 80 | * like, for example, with RCU. | 
|  | 81 | */ | 
|  | 82 | void *__krealloc(const void *p, size_t new_size, gfp_t flags) | 
|  | 83 | { | 
|  | 84 | void *ret; | 
|  | 85 | size_t ks = 0; | 
|  | 86 |  | 
|  | 87 | if (unlikely(!new_size)) | 
|  | 88 | return ZERO_SIZE_PTR; | 
|  | 89 |  | 
|  | 90 | if (p) | 
|  | 91 | ks = ksize(p); | 
|  | 92 |  | 
|  | 93 | if (ks >= new_size) | 
|  | 94 | return (void *)p; | 
|  | 95 |  | 
|  | 96 | ret = kmalloc_track_caller(new_size, flags); | 
|  | 97 | if (ret && p) | 
|  | 98 | memcpy(ret, p, ks); | 
|  | 99 |  | 
|  | 100 | return ret; | 
|  | 101 | } | 
|  | 102 | EXPORT_SYMBOL(__krealloc); | 
|  | 103 |  | 
|  | 104 | /** | 
| Christoph Lameter | ef2ad80 | 2007-07-17 04:03:21 -0700 | [diff] [blame] | 105 | * krealloc - reallocate memory. The contents will remain unchanged. | 
|  | 106 | * @p: object to reallocate memory for. | 
|  | 107 | * @new_size: how many bytes of memory are required. | 
|  | 108 | * @flags: the type of memory to allocate. | 
|  | 109 | * | 
|  | 110 | * The contents of the object pointed to are preserved up to the | 
|  | 111 | * lesser of the new and old sizes.  If @p is %NULL, krealloc() | 
|  | 112 | * behaves exactly like kmalloc().  If @size is 0 and @p is not a | 
|  | 113 | * %NULL pointer, the object pointed to is freed. | 
|  | 114 | */ | 
|  | 115 | void *krealloc(const void *p, size_t new_size, gfp_t flags) | 
|  | 116 | { | 
|  | 117 | void *ret; | 
| Christoph Lameter | ef2ad80 | 2007-07-17 04:03:21 -0700 | [diff] [blame] | 118 |  | 
|  | 119 | if (unlikely(!new_size)) { | 
|  | 120 | kfree(p); | 
| Christoph Lameter | 6cb8f91 | 2007-07-17 04:03:22 -0700 | [diff] [blame] | 121 | return ZERO_SIZE_PTR; | 
| Christoph Lameter | ef2ad80 | 2007-07-17 04:03:21 -0700 | [diff] [blame] | 122 | } | 
|  | 123 |  | 
| Pekka Enberg | 93bc4e8 | 2008-07-26 17:49:33 -0700 | [diff] [blame] | 124 | ret = __krealloc(p, new_size, flags); | 
|  | 125 | if (ret && p != ret) | 
| Christoph Lameter | ef2ad80 | 2007-07-17 04:03:21 -0700 | [diff] [blame] | 126 | kfree(p); | 
| Pekka Enberg | 93bc4e8 | 2008-07-26 17:49:33 -0700 | [diff] [blame] | 127 |  | 
| Christoph Lameter | ef2ad80 | 2007-07-17 04:03:21 -0700 | [diff] [blame] | 128 | return ret; | 
|  | 129 | } | 
|  | 130 | EXPORT_SYMBOL(krealloc); | 
|  | 131 |  | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 132 | /* | 
|  | 133 | * strndup_user - duplicate an existing string from user space | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 134 | * @s: The string to duplicate | 
|  | 135 | * @n: Maximum number of bytes to copy, including the trailing NUL. | 
|  | 136 | */ | 
|  | 137 | char *strndup_user(const char __user *s, long n) | 
|  | 138 | { | 
|  | 139 | char *p; | 
|  | 140 | long length; | 
|  | 141 |  | 
|  | 142 | length = strnlen_user(s, n); | 
|  | 143 |  | 
|  | 144 | if (!length) | 
|  | 145 | return ERR_PTR(-EFAULT); | 
|  | 146 |  | 
|  | 147 | if (length > n) | 
|  | 148 | return ERR_PTR(-EINVAL); | 
|  | 149 |  | 
|  | 150 | p = kmalloc(length, GFP_KERNEL); | 
|  | 151 |  | 
|  | 152 | if (!p) | 
|  | 153 | return ERR_PTR(-ENOMEM); | 
|  | 154 |  | 
|  | 155 | if (copy_from_user(p, s, length)) { | 
|  | 156 | kfree(p); | 
|  | 157 | return ERR_PTR(-EFAULT); | 
|  | 158 | } | 
|  | 159 |  | 
|  | 160 | p[length - 1] = '\0'; | 
|  | 161 |  | 
|  | 162 | return p; | 
|  | 163 | } | 
|  | 164 | EXPORT_SYMBOL(strndup_user); | 
| Andrew Morton | 16d6926 | 2008-07-25 19:44:36 -0700 | [diff] [blame] | 165 |  | 
|  | 166 | #ifndef HAVE_ARCH_PICK_MMAP_LAYOUT | 
|  | 167 | void arch_pick_mmap_layout(struct mm_struct *mm) | 
|  | 168 | { | 
|  | 169 | mm->mmap_base = TASK_UNMAPPED_BASE; | 
|  | 170 | mm->get_unmapped_area = arch_get_unmapped_area; | 
|  | 171 | mm->unmap_area = arch_unmap_area; | 
|  | 172 | } | 
|  | 173 | #endif | 
| Rusty Russell | 912985d | 2008-08-12 17:52:52 -0500 | [diff] [blame] | 174 |  | 
|  | 175 | int __attribute__((weak)) get_user_pages_fast(unsigned long start, | 
|  | 176 | int nr_pages, int write, struct page **pages) | 
|  | 177 | { | 
|  | 178 | struct mm_struct *mm = current->mm; | 
|  | 179 | int ret; | 
|  | 180 |  | 
|  | 181 | down_read(&mm->mmap_sem); | 
|  | 182 | ret = get_user_pages(current, mm, start, nr_pages, | 
|  | 183 | write, 0, pages, NULL); | 
|  | 184 | up_read(&mm->mmap_sem); | 
|  | 185 |  | 
|  | 186 | return ret; | 
|  | 187 | } | 
|  | 188 | EXPORT_SYMBOL_GPL(get_user_pages_fast); |