1 #include <linux/slab.h>
2 #include <linux/string.h>
3 #include <linux/module.h>
5 #include <asm/uaccess.h>
8 * kstrdup - allocate space for and copy an existing string
9 * @s: the string to duplicate
10 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
12 char *kstrdup(const char *s, gfp_t gfp)
21 buf = kmalloc_track_caller(len, gfp);
26 EXPORT_SYMBOL(kstrdup);
29 * kstrndup - allocate space for and copy an existing string
30 * @s: the string to duplicate
31 * @max: read at most @max chars from @s
32 * @gfp: the GFP mask used in the kmalloc() call when allocating memory
34 char *kstrndup(const char *s, size_t max, gfp_t gfp)
42 len = strnlen(s, max);
43 buf = kmalloc_track_caller(len+1, gfp);
50 EXPORT_SYMBOL(kstrndup);
53 * kmemdup - duplicate region of memory
55 * @src: memory region to duplicate
56 * @len: memory region length
57 * @gfp: GFP mask to use
59 void *kmemdup(const void *src, size_t len, gfp_t gfp)
63 p = kmalloc_track_caller(len, gfp);
68 EXPORT_SYMBOL(kmemdup);
71 * krealloc - reallocate memory. The contents will remain unchanged.
72 * @p: object to reallocate memory for.
73 * @new_size: how many bytes of memory are required.
74 * @flags: the type of memory to allocate.
76 * The contents of the object pointed to are preserved up to the
77 * lesser of the new and old sizes. If @p is %NULL, krealloc()
78 * behaves exactly like kmalloc(). If @size is 0 and @p is not a
79 * %NULL pointer, the object pointed to is freed.
81 void *krealloc(const void *p, size_t new_size, gfp_t flags)
86 if (unlikely(!new_size)) {
95 ret = kmalloc_track_caller(new_size, flags);
97 memcpy(ret, p, min(new_size, ks));
102 EXPORT_SYMBOL(krealloc);
105 * strndup_user - duplicate an existing string from user space
106 * @s: The string to duplicate
107 * @n: Maximum number of bytes to copy, including the trailing NUL.
109 char *strndup_user(const char __user *s, long n)
114 length = strnlen_user(s, n);
117 return ERR_PTR(-EFAULT);
120 return ERR_PTR(-EINVAL);
122 p = kmalloc(length, GFP_KERNEL);
125 return ERR_PTR(-ENOMEM);
127 if (copy_from_user(p, s, length)) {
129 return ERR_PTR(-EFAULT);
132 p[length - 1] = '\0';
136 EXPORT_SYMBOL(strndup_user);