blob: 4691e7fee9e97dc40ae785d7f3268c35cf554ffe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_STRING_H_
2#define _LINUX_STRING_H_
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <linux/compiler.h> /* for inline */
6#include <linux/types.h> /* for size_t */
7#include <linux/stddef.h> /* for NULL */
Lai Jiangshan4370aa42009-03-06 17:21:46 +01008#include <stdarg.h>
David Howells607ca462012-10-13 10:46:48 +01009#include <uapi/linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Davi Arnaut96840aa2006-03-24 03:18:42 -080011extern char *strndup_user(const char __user *, long);
Li Zefan610a77e2009-03-31 15:23:16 -070012extern void *memdup_user(const void __user *, size_t);
Al Viroe9d408e2015-12-24 00:06:05 -050013extern void *memdup_user_nul(const void __user *, size_t);
Davi Arnaut96840aa2006-03-24 03:18:42 -080014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015/*
16 * Include machine specific inline routines
17 */
18#include <asm/string.h>
19
20#ifndef __HAVE_ARCH_STRCPY
21extern char * strcpy(char *,const char *);
22#endif
23#ifndef __HAVE_ARCH_STRNCPY
24extern char * strncpy(char *,const char *, __kernel_size_t);
25#endif
26#ifndef __HAVE_ARCH_STRLCPY
27size_t strlcpy(char *, const char *, size_t);
28#endif
Chris Metcalf30035e42015-04-29 12:52:04 -040029#ifndef __HAVE_ARCH_STRSCPY
30ssize_t __must_check strscpy(char *, const char *, size_t);
31#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#ifndef __HAVE_ARCH_STRCAT
33extern char * strcat(char *, const char *);
34#endif
35#ifndef __HAVE_ARCH_STRNCAT
36extern char * strncat(char *, const char *, __kernel_size_t);
37#endif
38#ifndef __HAVE_ARCH_STRLCAT
39extern size_t strlcat(char *, const char *, __kernel_size_t);
40#endif
41#ifndef __HAVE_ARCH_STRCMP
42extern int strcmp(const char *,const char *);
43#endif
44#ifndef __HAVE_ARCH_STRNCMP
45extern int strncmp(const char *,const char *,__kernel_size_t);
46#endif
David S. Millerded220b2007-03-29 01:18:42 -070047#ifndef __HAVE_ARCH_STRCASECMP
48extern int strcasecmp(const char *s1, const char *s2);
49#endif
50#ifndef __HAVE_ARCH_STRNCASECMP
51extern int strncasecmp(const char *s1, const char *s2, size_t n);
52#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#ifndef __HAVE_ARCH_STRCHR
54extern char * strchr(const char *,int);
55#endif
Grant Likely11d200e2014-03-14 17:00:14 +000056#ifndef __HAVE_ARCH_STRCHRNUL
57extern char * strchrnul(const char *,int);
58#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#ifndef __HAVE_ARCH_STRNCHR
60extern char * strnchr(const char *, size_t, int);
61#endif
62#ifndef __HAVE_ARCH_STRRCHR
63extern char * strrchr(const char *,int);
64#endif
André Goddard Rosaf6533982009-12-14 18:01:04 -080065extern char * __must_check skip_spaces(const char *);
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -080066
67extern char *strim(char *);
68
69static inline __must_check char *strstrip(char *str)
70{
71 return strim(str);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#ifndef __HAVE_ARCH_STRSTR
Li Zefand5f1fb52010-01-14 10:53:55 +080075extern char * strstr(const char *, const char *);
76#endif
77#ifndef __HAVE_ARCH_STRNSTR
78extern char * strnstr(const char *, const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#endif
80#ifndef __HAVE_ARCH_STRLEN
81extern __kernel_size_t strlen(const char *);
82#endif
83#ifndef __HAVE_ARCH_STRNLEN
84extern __kernel_size_t strnlen(const char *,__kernel_size_t);
85#endif
Kyle McMartin8833d322006-04-10 22:53:57 -070086#ifndef __HAVE_ARCH_STRPBRK
87extern char * strpbrk(const char *,const char *);
88#endif
89#ifndef __HAVE_ARCH_STRSEP
90extern char * strsep(char **,const char *);
91#endif
92#ifndef __HAVE_ARCH_STRSPN
93extern __kernel_size_t strspn(const char *,const char *);
94#endif
95#ifndef __HAVE_ARCH_STRCSPN
96extern __kernel_size_t strcspn(const char *,const char *);
97#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99#ifndef __HAVE_ARCH_MEMSET
100extern void * memset(void *,int,__kernel_size_t);
101#endif
102#ifndef __HAVE_ARCH_MEMCPY
103extern void * memcpy(void *,const void *,__kernel_size_t);
104#endif
105#ifndef __HAVE_ARCH_MEMMOVE
106extern void * memmove(void *,const void *,__kernel_size_t);
107#endif
108#ifndef __HAVE_ARCH_MEMSCAN
109extern void * memscan(void *,int,__kernel_size_t);
110#endif
111#ifndef __HAVE_ARCH_MEMCMP
112extern int memcmp(const void *,const void *,__kernel_size_t);
113#endif
114#ifndef __HAVE_ARCH_MEMCHR
115extern void * memchr(const void *,int,__kernel_size_t);
116#endif
Akinobu Mita798248202011-10-31 17:08:07 -0700117void *memchr_inv(const void *s, int c, size_t n);
Rasmus Villemoes94df2902015-06-25 15:02:22 -0700118char *strreplace(char *s, char old, char new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -0800120extern void kfree_const(const void *x);
121
Rasmus Villemoes48a27052016-05-19 17:10:55 -0700122extern char *kstrdup(const char *s, gfp_t gfp) __malloc;
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -0800123extern const char *kstrdup_const(const char *s, gfp_t gfp);
Jeremy Fitzhardinge1e66df32007-07-17 18:37:02 -0700124extern char *kstrndup(const char *s, size_t len, gfp_t gfp);
Alexey Dobriyan1a2f67b2006-09-30 23:27:20 -0700125extern void *kmemdup(const void *src, size_t len, gfp_t gfp);
Paulo Marques543537b2005-06-23 00:09:02 -0700126
Jeremy Fitzhardinged84d1cc2007-07-17 18:37:02 -0700127extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
128extern void argv_free(char **argv);
129
David Brownell34990cf2008-05-01 04:34:42 -0700130extern bool sysfs_streq(const char *s1, const char *s2);
Kees Cookef951592016-03-17 14:22:50 -0700131extern int kstrtobool(const char *s, bool *res);
132static inline int strtobool(const char *s, bool *res)
133{
134 return kstrtobool(s, res);
135}
David Brownell34990cf2008-05-01 04:34:42 -0700136
Andy Shevchenko56b06082016-03-17 14:22:14 -0700137int match_string(const char * const *array, size_t n, const char *string);
138
Lai Jiangshan4370aa42009-03-06 17:21:46 +0100139#ifdef CONFIG_BINARY_PRINTF
140int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
141int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
142int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) __printf(3, 4);
143#endif
144
Akinobu Mitae108526e2008-07-23 21:26:44 -0700145extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400146 const void *from, size_t available);
Akinobu Mitae108526e2008-07-23 21:26:44 -0700147
Rusty Russell66f92cf2009-03-31 13:05:36 -0600148/**
149 * strstarts - does @str start with @prefix?
150 * @str: string to examine
151 * @prefix: prefix to look for.
152 */
153static inline bool strstarts(const char *str, const char *prefix)
154{
155 return strncmp(str, prefix, strlen(prefix)) == 0;
156}
Akinobu Mita639b9e32012-07-30 14:40:55 -0700157
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400158size_t memweight(const void *ptr, size_t bytes);
159void memzero_explicit(void *s, size_t count);
Akinobu Mita639b9e32012-07-30 14:40:55 -0700160
Andy Shevchenkob18888a2012-12-17 16:01:18 -0800161/**
162 * kbasename - return the last part of a pathname.
163 *
164 * @path: path to extract the filename from.
165 */
166static inline const char *kbasename(const char *path)
167{
168 const char *tail = strrchr(path, '/');
169 return tail ? tail + 1 : path;
170}
171
Daniel Micay0f513102017-07-12 14:36:10 -0700172#define __FORTIFY_INLINE extern __always_inline __attribute__((gnu_inline))
173#define __RENAME(x) __asm__(#x)
174
175void fortify_panic(const char *name) __noreturn __cold;
Channagoud Kadabi724ed8f2017-12-01 15:08:41 -0800176
177#ifdef CONFIG_FORTIFY_COMPILE_CHECK
Daniel Micay0f513102017-07-12 14:36:10 -0700178void __read_overflow(void) __compiletime_error("detected read beyond size of object passed as 1st parameter");
179void __read_overflow2(void) __compiletime_error("detected read beyond size of object passed as 2nd parameter");
180void __write_overflow(void) __compiletime_error("detected write beyond size of object passed as 1st parameter");
Channagoud Kadabi724ed8f2017-12-01 15:08:41 -0800181#else
182#define __read_overflow(void) do { } while (0)
183#define __read_overflow2(void) do { } while (0)
184#define __write_overflow(void) do { } while (0)
185#endif
Daniel Micay0f513102017-07-12 14:36:10 -0700186
187#if !defined(__NO_FORTIFY) && defined(__OPTIMIZE__) && defined(CONFIG_FORTIFY_SOURCE)
Daniel Micay0f513102017-07-12 14:36:10 -0700188__FORTIFY_INLINE char *strncpy(char *p, const char *q, __kernel_size_t size)
189{
190 size_t p_size = __builtin_object_size(p, 0);
191 if (__builtin_constant_p(size) && p_size < size)
192 __write_overflow();
193 if (p_size < size)
194 fortify_panic(__func__);
195 return __builtin_strncpy(p, q, size);
196}
197
198__FORTIFY_INLINE char *strcat(char *p, const char *q)
199{
200 size_t p_size = __builtin_object_size(p, 0);
201 if (p_size == (size_t)-1)
202 return __builtin_strcat(p, q);
203 if (strlcat(p, q, p_size) >= p_size)
204 fortify_panic(__func__);
205 return p;
206}
207
208__FORTIFY_INLINE __kernel_size_t strlen(const char *p)
209{
210 __kernel_size_t ret;
211 size_t p_size = __builtin_object_size(p, 0);
212 if (p_size == (size_t)-1)
213 return __builtin_strlen(p);
214 ret = strnlen(p, p_size);
215 if (p_size <= ret)
216 fortify_panic(__func__);
217 return ret;
218}
219
220extern __kernel_size_t __real_strnlen(const char *, __kernel_size_t) __RENAME(strnlen);
221__FORTIFY_INLINE __kernel_size_t strnlen(const char *p, __kernel_size_t maxlen)
222{
223 size_t p_size = __builtin_object_size(p, 0);
224 __kernel_size_t ret = __real_strnlen(p, maxlen < p_size ? maxlen : p_size);
225 if (p_size <= ret && maxlen != ret)
226 fortify_panic(__func__);
227 return ret;
228}
229
230/* defined after fortified strlen to reuse it */
231extern size_t __real_strlcpy(char *, const char *, size_t) __RENAME(strlcpy);
232__FORTIFY_INLINE size_t strlcpy(char *p, const char *q, size_t size)
233{
234 size_t ret;
235 size_t p_size = __builtin_object_size(p, 0);
236 size_t q_size = __builtin_object_size(q, 0);
237 if (p_size == (size_t)-1 && q_size == (size_t)-1)
238 return __real_strlcpy(p, q, size);
239 ret = strlen(q);
240 if (size) {
241 size_t len = (ret >= size) ? size - 1 : ret;
242 if (__builtin_constant_p(len) && len >= p_size)
243 __write_overflow();
244 if (len >= p_size)
245 fortify_panic(__func__);
246 __builtin_memcpy(p, q, len);
247 p[len] = '\0';
248 }
249 return ret;
250}
251
252/* defined after fortified strlen and strnlen to reuse them */
253__FORTIFY_INLINE char *strncat(char *p, const char *q, __kernel_size_t count)
254{
255 size_t p_len, copy_len;
256 size_t p_size = __builtin_object_size(p, 0);
257 size_t q_size = __builtin_object_size(q, 0);
258 if (p_size == (size_t)-1 && q_size == (size_t)-1)
259 return __builtin_strncat(p, q, count);
260 p_len = strlen(p);
261 copy_len = strnlen(q, count);
262 if (p_size < p_len + copy_len + 1)
263 fortify_panic(__func__);
264 __builtin_memcpy(p + p_len, q, copy_len);
265 p[p_len + copy_len] = '\0';
266 return p;
267}
268
269__FORTIFY_INLINE void *memset(void *p, int c, __kernel_size_t size)
270{
271 size_t p_size = __builtin_object_size(p, 0);
272 if (__builtin_constant_p(size) && p_size < size)
273 __write_overflow();
274 if (p_size < size)
275 fortify_panic(__func__);
276 return __builtin_memset(p, c, size);
277}
278
279__FORTIFY_INLINE void *memcpy(void *p, const void *q, __kernel_size_t size)
280{
281 size_t p_size = __builtin_object_size(p, 0);
282 size_t q_size = __builtin_object_size(q, 0);
283 if (__builtin_constant_p(size)) {
284 if (p_size < size)
285 __write_overflow();
286 if (q_size < size)
287 __read_overflow2();
288 }
289 if (p_size < size || q_size < size)
290 fortify_panic(__func__);
291 return __builtin_memcpy(p, q, size);
292}
293
294__FORTIFY_INLINE void *memmove(void *p, const void *q, __kernel_size_t size)
295{
296 size_t p_size = __builtin_object_size(p, 0);
297 size_t q_size = __builtin_object_size(q, 0);
298 if (__builtin_constant_p(size)) {
299 if (p_size < size)
300 __write_overflow();
301 if (q_size < size)
302 __read_overflow2();
303 }
304 if (p_size < size || q_size < size)
305 fortify_panic(__func__);
306 return __builtin_memmove(p, q, size);
307}
308
309extern void *__real_memscan(void *, int, __kernel_size_t) __RENAME(memscan);
310__FORTIFY_INLINE void *memscan(void *p, int c, __kernel_size_t size)
311{
312 size_t p_size = __builtin_object_size(p, 0);
313 if (__builtin_constant_p(size) && p_size < size)
314 __read_overflow();
315 if (p_size < size)
316 fortify_panic(__func__);
317 return __real_memscan(p, c, size);
318}
319
320__FORTIFY_INLINE int memcmp(const void *p, const void *q, __kernel_size_t size)
321{
322 size_t p_size = __builtin_object_size(p, 0);
323 size_t q_size = __builtin_object_size(q, 0);
324 if (__builtin_constant_p(size)) {
325 if (p_size < size)
326 __read_overflow();
327 if (q_size < size)
328 __read_overflow2();
329 }
330 if (p_size < size || q_size < size)
331 fortify_panic(__func__);
332 return __builtin_memcmp(p, q, size);
333}
334
335__FORTIFY_INLINE void *memchr(const void *p, int c, __kernel_size_t size)
336{
337 size_t p_size = __builtin_object_size(p, 0);
338 if (__builtin_constant_p(size) && p_size < size)
339 __read_overflow();
340 if (p_size < size)
341 fortify_panic(__func__);
342 return __builtin_memchr(p, c, size);
343}
344
345void *__real_memchr_inv(const void *s, int c, size_t n) __RENAME(memchr_inv);
346__FORTIFY_INLINE void *memchr_inv(const void *p, int c, size_t size)
347{
348 size_t p_size = __builtin_object_size(p, 0);
349 if (__builtin_constant_p(size) && p_size < size)
350 __read_overflow();
351 if (p_size < size)
352 fortify_panic(__func__);
353 return __real_memchr_inv(p, c, size);
354}
355
356extern void *__real_kmemdup(const void *src, size_t len, gfp_t gfp) __RENAME(kmemdup);
357__FORTIFY_INLINE void *kmemdup(const void *p, size_t size, gfp_t gfp)
358{
359 size_t p_size = __builtin_object_size(p, 0);
360 if (__builtin_constant_p(size) && p_size < size)
361 __read_overflow();
362 if (p_size < size)
363 fortify_panic(__func__);
364 return __real_kmemdup(p, size, gfp);
365}
Daniel Micay3d2f47b2017-09-14 13:12:54 -0700366
367/* defined after fortified strlen and memcpy to reuse them */
368__FORTIFY_INLINE char *strcpy(char *p, const char *q)
369{
370 size_t p_size = __builtin_object_size(p, 0);
371 size_t q_size = __builtin_object_size(q, 0);
372 if (p_size == (size_t)-1 && q_size == (size_t)-1)
373 return __builtin_strcpy(p, q);
374 memcpy(p, q, strlen(q) + 1);
375 return p;
376}
377
Daniel Micay0f513102017-07-12 14:36:10 -0700378#endif
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#endif /* _LINUX_STRING_H_ */