blob: 3dd944cfe171f0094011f5d9f60f01dc371a963c [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
Dan Williams6abccd12017-01-13 14:14:23 -0800117#ifndef __HAVE_ARCH_MEMCPY_MCSAFE
118static inline __must_check int memcpy_mcsafe(void *dst, const void *src,
119 size_t cnt)
120{
121 memcpy(dst, src, cnt);
122 return 0;
123}
124#endif
Akinobu Mita798248202011-10-31 17:08:07 -0700125void *memchr_inv(const void *s, int c, size_t n);
Rasmus Villemoes94df2902015-06-25 15:02:22 -0700126char *strreplace(char *s, char old, char new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -0800128extern void kfree_const(const void *x);
129
Rasmus Villemoes48a270552016-05-19 17:10:55 -0700130extern char *kstrdup(const char *s, gfp_t gfp) __malloc;
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -0800131extern const char *kstrdup_const(const char *s, gfp_t gfp);
Jeremy Fitzhardinge1e66df32007-07-17 18:37:02 -0700132extern char *kstrndup(const char *s, size_t len, gfp_t gfp);
Alexey Dobriyan1a2f67b2006-09-30 23:27:20 -0700133extern void *kmemdup(const void *src, size_t len, gfp_t gfp);
David Howellsf3515742017-07-04 17:25:02 +0100134extern char *kmemdup_nul(const char *s, size_t len, gfp_t gfp);
Paulo Marques543537b2005-06-23 00:09:02 -0700135
Jeremy Fitzhardinged84d1cc2007-07-17 18:37:02 -0700136extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
137extern void argv_free(char **argv);
138
David Brownell34990cf2008-05-01 04:34:42 -0700139extern bool sysfs_streq(const char *s1, const char *s2);
Kees Cookef951592016-03-17 14:22:50 -0700140extern int kstrtobool(const char *s, bool *res);
141static inline int strtobool(const char *s, bool *res)
142{
143 return kstrtobool(s, res);
144}
David Brownell34990cf2008-05-01 04:34:42 -0700145
Andy Shevchenko56b06082016-03-17 14:22:14 -0700146int match_string(const char * const *array, size_t n, const char *string);
Heikki Krogeruse1fe7b62017-03-21 13:56:46 +0200147int __sysfs_match_string(const char * const *array, size_t n, const char *s);
148
149/**
150 * sysfs_match_string - matches given string in an array
151 * @_a: array of strings
152 * @_s: string to match with
153 *
154 * Helper for __sysfs_match_string(). Calculates the size of @a automatically.
155 */
156#define sysfs_match_string(_a, _s) __sysfs_match_string(_a, ARRAY_SIZE(_a), _s)
Andy Shevchenko56b06082016-03-17 14:22:14 -0700157
Lai Jiangshan4370aa42009-03-06 17:21:46 +0100158#ifdef CONFIG_BINARY_PRINTF
159int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
160int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
161int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) __printf(3, 4);
162#endif
163
Akinobu Mitae108526e2008-07-23 21:26:44 -0700164extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400165 const void *from, size_t available);
Akinobu Mitae108526e2008-07-23 21:26:44 -0700166
Rusty Russell66f92cf2009-03-31 13:05:36 -0600167/**
168 * strstarts - does @str start with @prefix?
169 * @str: string to examine
170 * @prefix: prefix to look for.
171 */
172static inline bool strstarts(const char *str, const char *prefix)
173{
174 return strncmp(str, prefix, strlen(prefix)) == 0;
175}
Akinobu Mita639b9e32012-07-30 14:40:55 -0700176
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400177size_t memweight(const void *ptr, size_t bytes);
178void memzero_explicit(void *s, size_t count);
Akinobu Mita639b9e32012-07-30 14:40:55 -0700179
Andy Shevchenkob18888a2012-12-17 16:01:18 -0800180/**
181 * kbasename - return the last part of a pathname.
182 *
183 * @path: path to extract the filename from.
184 */
185static inline const char *kbasename(const char *path)
186{
187 const char *tail = strrchr(path, '/');
188 return tail ? tail + 1 : path;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#endif /* _LINUX_STRING_H_ */