blob: d984ec4fd3b71e8aff439e87eba9e96fb85e9e13 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/lib/string.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * stupid library routines.. The optimized versions should generally be found
9 * as inline code in <asm-xx/string.h>
10 *
11 * These are buggy as well..
12 *
13 * * Fri Jun 25 1999, Ingo Oeser <ioe@informatik.tu-chemnitz.de>
14 * - Added strsep() which will replace strtok() soon (because strsep() is
15 * reentrant and should be faster). Use only strsep() in new code, please.
16 *
17 * * Sat Feb 09 2002, Jason Thomas <jason@topic.com.au>,
18 * Matthew Hawkins <matt@mh.dropbear.id.au>
19 * - Kissed strtok() goodbye
20 */
21
22#include <linux/types.h>
23#include <linux/string.h>
24#include <linux/ctype.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050025#include <linux/kernel.h>
26#include <linux/export.h>
Paul Gortmaker50af5ea2012-01-20 18:35:53 -050027#include <linux/bug.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -050028#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Rasmus Villemoescd514e72014-10-13 15:54:25 -070030#ifndef __HAVE_ARCH_STRNCASECMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/**
Rasmus Villemoescd514e72014-10-13 15:54:25 -070032 * strncasecmp - Case insensitive, length-limited string comparison
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * @s1: One string
34 * @s2: The other string
35 * @len: the maximum number of characters to compare
36 */
Rasmus Villemoescd514e72014-10-13 15:54:25 -070037int strncasecmp(const char *s1, const char *s2, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 /* Yes, Virginia, it had better be unsigned */
40 unsigned char c1, c2;
41
André Goddard Rosaa11d2b62010-03-05 13:43:11 -080042 if (!len)
43 return 0;
44
45 do {
46 c1 = *s1++;
47 c2 = *s2++;
48 if (!c1 || !c2)
49 break;
50 if (c1 == c2)
51 continue;
52 c1 = tolower(c1);
53 c2 = tolower(c2);
54 if (c1 != c2)
55 break;
56 } while (--len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 return (int)c1 - (int)c2;
58}
Rasmus Villemoescd514e72014-10-13 15:54:25 -070059EXPORT_SYMBOL(strncasecmp);
60#endif
61#ifndef __HAVE_ARCH_STRNICMP
Rasmus Villemoesb0bfb632014-10-13 15:54:27 -070062#undef strnicmp
Rasmus Villemoescd514e72014-10-13 15:54:25 -070063int strnicmp(const char *s1, const char *s2, size_t len)
64{
65 return strncasecmp(s1, s2, len);
66}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067EXPORT_SYMBOL(strnicmp);
68#endif
69
David S. Millerded220b2007-03-29 01:18:42 -070070#ifndef __HAVE_ARCH_STRCASECMP
71int strcasecmp(const char *s1, const char *s2)
72{
73 int c1, c2;
74
75 do {
76 c1 = tolower(*s1++);
77 c2 = tolower(*s2++);
78 } while (c1 == c2 && c1 != 0);
79 return c1 - c2;
80}
81EXPORT_SYMBOL(strcasecmp);
82#endif
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#ifndef __HAVE_ARCH_STRCPY
85/**
86 * strcpy - Copy a %NUL terminated string
87 * @dest: Where to copy the string to
88 * @src: Where to copy the string from
89 */
Paolo 'Blaisorblade' Giarrusso0c281302005-05-05 16:15:17 -070090#undef strcpy
Jesper Juhl51a0f0f2005-10-30 15:02:11 -080091char *strcpy(char *dest, const char *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 char *tmp = dest;
94
95 while ((*dest++ = *src++) != '\0')
96 /* nothing */;
97 return tmp;
98}
99EXPORT_SYMBOL(strcpy);
100#endif
101
102#ifndef __HAVE_ARCH_STRNCPY
103/**
Dan Carpenter0046dd92014-06-04 16:11:47 -0700104 * strncpy - Copy a length-limited, C-string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * @dest: Where to copy the string to
106 * @src: Where to copy the string from
107 * @count: The maximum number of bytes to copy
108 *
109 * The result is not %NUL-terminated if the source exceeds
110 * @count bytes.
walter harms25279522005-05-05 16:16:20 -0700111 *
112 * In the case where the length of @src is less than that of
113 * count, the remainder of @dest will be padded with %NUL.
114 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800116char *strncpy(char *dest, const char *src, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 char *tmp = dest;
119
120 while (count) {
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800121 if ((*tmp = *src) != 0)
122 src++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 tmp++;
124 count--;
125 }
126 return dest;
127}
128EXPORT_SYMBOL(strncpy);
129#endif
130
131#ifndef __HAVE_ARCH_STRLCPY
132/**
Dan Carpenter0046dd92014-06-04 16:11:47 -0700133 * strlcpy - Copy a C-string into a sized buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * @dest: Where to copy the string to
135 * @src: Where to copy the string from
136 * @size: size of destination buffer
137 *
138 * Compatible with *BSD: the result is always a valid
139 * NUL-terminated string that fits in the buffer (unless,
140 * of course, the buffer size is zero). It does not pad
141 * out the result like strncpy() does.
142 */
143size_t strlcpy(char *dest, const char *src, size_t size)
144{
145 size_t ret = strlen(src);
146
147 if (size) {
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800148 size_t len = (ret >= size) ? size - 1 : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 memcpy(dest, src, len);
150 dest[len] = '\0';
151 }
152 return ret;
153}
154EXPORT_SYMBOL(strlcpy);
155#endif
156
157#ifndef __HAVE_ARCH_STRCAT
158/**
159 * strcat - Append one %NUL-terminated string to another
160 * @dest: The string to be appended to
161 * @src: The string to append to it
162 */
Paolo 'Blaisorblade' Giarrusso0c281302005-05-05 16:15:17 -0700163#undef strcat
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800164char *strcat(char *dest, const char *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 char *tmp = dest;
167
168 while (*dest)
169 dest++;
170 while ((*dest++ = *src++) != '\0')
171 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return tmp;
173}
174EXPORT_SYMBOL(strcat);
175#endif
176
177#ifndef __HAVE_ARCH_STRNCAT
178/**
Dan Carpenter0046dd92014-06-04 16:11:47 -0700179 * strncat - Append a length-limited, C-string to another
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * @dest: The string to be appended to
181 * @src: The string to append to it
182 * @count: The maximum numbers of bytes to copy
183 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800184 * Note that in contrast to strncpy(), strncat() ensures the result is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * terminated.
186 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800187char *strncat(char *dest, const char *src, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 char *tmp = dest;
190
191 if (count) {
192 while (*dest)
193 dest++;
194 while ((*dest++ = *src++) != 0) {
195 if (--count == 0) {
196 *dest = '\0';
197 break;
198 }
199 }
200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return tmp;
202}
203EXPORT_SYMBOL(strncat);
204#endif
205
206#ifndef __HAVE_ARCH_STRLCAT
207/**
Dan Carpenter0046dd92014-06-04 16:11:47 -0700208 * strlcat - Append a length-limited, C-string to another
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * @dest: The string to be appended to
210 * @src: The string to append to it
211 * @count: The size of the destination buffer.
212 */
213size_t strlcat(char *dest, const char *src, size_t count)
214{
215 size_t dsize = strlen(dest);
216 size_t len = strlen(src);
217 size_t res = dsize + len;
218
219 /* This would be a bug */
220 BUG_ON(dsize >= count);
221
222 dest += dsize;
223 count -= dsize;
224 if (len >= count)
225 len = count-1;
226 memcpy(dest, src, len);
227 dest[len] = 0;
228 return res;
229}
230EXPORT_SYMBOL(strlcat);
231#endif
232
233#ifndef __HAVE_ARCH_STRCMP
234/**
235 * strcmp - Compare two strings
236 * @cs: One string
237 * @ct: Another string
238 */
Paolo 'Blaisorblade' Giarrusso0c281302005-05-05 16:15:17 -0700239#undef strcmp
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800240int strcmp(const char *cs, const char *ct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Linus Torvaldsa414f012009-11-18 22:31:52 +0100242 unsigned char c1, c2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 while (1) {
Linus Torvaldsa414f012009-11-18 22:31:52 +0100245 c1 = *cs++;
246 c2 = *ct++;
247 if (c1 != c2)
248 return c1 < c2 ? -1 : 1;
249 if (!c1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 break;
251 }
Linus Torvaldsa414f012009-11-18 22:31:52 +0100252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254EXPORT_SYMBOL(strcmp);
255#endif
256
257#ifndef __HAVE_ARCH_STRNCMP
258/**
259 * strncmp - Compare two length-limited strings
260 * @cs: One string
261 * @ct: Another string
262 * @count: The maximum number of bytes to compare
263 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800264int strncmp(const char *cs, const char *ct, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvaldsa414f012009-11-18 22:31:52 +0100266 unsigned char c1, c2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 while (count) {
Linus Torvaldsa414f012009-11-18 22:31:52 +0100269 c1 = *cs++;
270 c2 = *ct++;
271 if (c1 != c2)
272 return c1 < c2 ? -1 : 1;
273 if (!c1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 count--;
276 }
Linus Torvaldsa414f012009-11-18 22:31:52 +0100277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279EXPORT_SYMBOL(strncmp);
280#endif
281
282#ifndef __HAVE_ARCH_STRCHR
283/**
284 * strchr - Find the first occurrence of a character in a string
285 * @s: The string to be searched
286 * @c: The character to search for
287 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800288char *strchr(const char *s, int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800290 for (; *s != (char)c; ++s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (*s == '\0')
292 return NULL;
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800293 return (char *)s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295EXPORT_SYMBOL(strchr);
296#endif
297
Grant Likely11d200e2014-03-14 17:00:14 +0000298#ifndef __HAVE_ARCH_STRCHRNUL
299/**
300 * strchrnul - Find and return a character in a string, or end of string
301 * @s: The string to be searched
302 * @c: The character to search for
303 *
304 * Returns pointer to first occurrence of 'c' in s. If c is not found, then
305 * return a pointer to the null byte at the end of s.
306 */
307char *strchrnul(const char *s, int c)
308{
309 while (*s && *s != (char)c)
310 s++;
311 return (char *)s;
312}
313EXPORT_SYMBOL(strchrnul);
314#endif
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316#ifndef __HAVE_ARCH_STRRCHR
317/**
318 * strrchr - Find the last occurrence of a character in a string
319 * @s: The string to be searched
320 * @c: The character to search for
321 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800322char *strrchr(const char *s, int c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 const char *p = s + strlen(s);
325 do {
326 if (*p == (char)c)
327 return (char *)p;
328 } while (--p >= s);
329 return NULL;
330}
331EXPORT_SYMBOL(strrchr);
332#endif
333
334#ifndef __HAVE_ARCH_STRNCHR
335/**
336 * strnchr - Find a character in a length limited string
337 * @s: The string to be searched
338 * @count: The number of characters to be searched
339 * @c: The character to search for
340 */
341char *strnchr(const char *s, size_t count, int c)
342{
343 for (; count-- && *s != '\0'; ++s)
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800344 if (*s == (char)c)
345 return (char *)s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return NULL;
347}
348EXPORT_SYMBOL(strnchr);
349#endif
350
Pekka Enberg481fad42006-06-23 02:05:44 -0700351/**
Randy Dunlapa6cd13f2009-12-21 14:37:22 -0800352 * skip_spaces - Removes leading whitespace from @str.
353 * @str: The string to be stripped.
André Goddard Rosaf6533982009-12-14 18:01:04 -0800354 *
Randy Dunlapa6cd13f2009-12-21 14:37:22 -0800355 * Returns a pointer to the first non-whitespace character in @str.
André Goddard Rosaf6533982009-12-14 18:01:04 -0800356 */
357char *skip_spaces(const char *str)
358{
359 while (isspace(*str))
360 ++str;
361 return (char *)str;
362}
363EXPORT_SYMBOL(skip_spaces);
364
365/**
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -0800366 * strim - Removes leading and trailing whitespace from @s.
Pekka Enberg481fad42006-06-23 02:05:44 -0700367 * @s: The string to be stripped.
368 *
369 * Note that the first trailing whitespace is replaced with a %NUL-terminator
370 * in the given string @s. Returns a pointer to the first non-whitespace
371 * character in @s.
372 */
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -0800373char *strim(char *s)
Pekka Enberg481fad42006-06-23 02:05:44 -0700374{
375 size_t size;
376 char *end;
377
378 size = strlen(s);
Pekka Enberg481fad42006-06-23 02:05:44 -0700379 if (!size)
380 return s;
381
382 end = s + size - 1;
Michael Holzheu6e6d9fa2006-10-28 10:38:47 -0700383 while (end >= s && isspace(*end))
Pekka Enberg481fad42006-06-23 02:05:44 -0700384 end--;
385 *(end + 1) = '\0';
386
Michael Holzheu66f69582011-10-31 17:12:37 -0700387 return skip_spaces(s);
Pekka Enberg481fad42006-06-23 02:05:44 -0700388}
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -0800389EXPORT_SYMBOL(strim);
Pekka Enberg481fad42006-06-23 02:05:44 -0700390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#ifndef __HAVE_ARCH_STRLEN
392/**
393 * strlen - Find the length of a string
394 * @s: The string to be sized
395 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800396size_t strlen(const char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 const char *sc;
399
400 for (sc = s; *sc != '\0'; ++sc)
401 /* nothing */;
402 return sc - s;
403}
404EXPORT_SYMBOL(strlen);
405#endif
406
407#ifndef __HAVE_ARCH_STRNLEN
408/**
409 * strnlen - Find the length of a length-limited string
410 * @s: The string to be sized
411 * @count: The maximum number of bytes to search
412 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800413size_t strnlen(const char *s, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 const char *sc;
416
417 for (sc = s; count-- && *sc != '\0'; ++sc)
418 /* nothing */;
419 return sc - s;
420}
421EXPORT_SYMBOL(strnlen);
422#endif
423
424#ifndef __HAVE_ARCH_STRSPN
425/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800426 * strspn - Calculate the length of the initial substring of @s which only contain letters in @accept
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * @s: The string to be searched
428 * @accept: The string to search for
429 */
430size_t strspn(const char *s, const char *accept)
431{
432 const char *p;
433 const char *a;
434 size_t count = 0;
435
436 for (p = s; *p != '\0'; ++p) {
437 for (a = accept; *a != '\0'; ++a) {
438 if (*p == *a)
439 break;
440 }
441 if (*a == '\0')
442 return count;
443 ++count;
444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return count;
446}
447
448EXPORT_SYMBOL(strspn);
449#endif
450
Kyle McMartin8833d322006-04-10 22:53:57 -0700451#ifndef __HAVE_ARCH_STRCSPN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800453 * strcspn - Calculate the length of the initial substring of @s which does not contain letters in @reject
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 * @s: The string to be searched
455 * @reject: The string to avoid
456 */
457size_t strcspn(const char *s, const char *reject)
458{
459 const char *p;
460 const char *r;
461 size_t count = 0;
462
463 for (p = s; *p != '\0'; ++p) {
464 for (r = reject; *r != '\0'; ++r) {
465 if (*p == *r)
466 return count;
467 }
468 ++count;
469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return count;
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800471}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472EXPORT_SYMBOL(strcspn);
Kyle McMartin8833d322006-04-10 22:53:57 -0700473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475#ifndef __HAVE_ARCH_STRPBRK
476/**
477 * strpbrk - Find the first occurrence of a set of characters
478 * @cs: The string to be searched
479 * @ct: The characters to search for
480 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800481char *strpbrk(const char *cs, const char *ct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800483 const char *sc1, *sc2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800485 for (sc1 = cs; *sc1 != '\0'; ++sc1) {
486 for (sc2 = ct; *sc2 != '\0'; ++sc2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (*sc1 == *sc2)
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800488 return (char *)sc1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 }
491 return NULL;
492}
Kyle McMartin894b5772006-04-10 22:53:56 -0700493EXPORT_SYMBOL(strpbrk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494#endif
495
496#ifndef __HAVE_ARCH_STRSEP
497/**
498 * strsep - Split a string into tokens
499 * @s: The string to be searched
500 * @ct: The characters to search for
501 *
502 * strsep() updates @s to point after the token, ready for the next call.
503 *
504 * It returns empty tokens, too, behaving exactly like the libc function
505 * of that name. In fact, it was stolen from glibc2 and de-fancy-fied.
506 * Same semantics, slimmer shape. ;)
507 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800508char *strsep(char **s, const char *ct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800510 char *sbegin = *s;
511 char *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 if (sbegin == NULL)
514 return NULL;
515
516 end = strpbrk(sbegin, ct);
517 if (end)
518 *end++ = '\0';
519 *s = end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return sbegin;
521}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522EXPORT_SYMBOL(strsep);
523#endif
524
David Brownell34990cf2008-05-01 04:34:42 -0700525/**
526 * sysfs_streq - return true if strings are equal, modulo trailing newline
527 * @s1: one string
528 * @s2: another string
529 *
530 * This routine returns true iff two strings are equal, treating both
531 * NUL and newline-then-NUL as equivalent string terminations. It's
532 * geared for use with sysfs input strings, which generally terminate
533 * with newlines but are compared against values without newlines.
534 */
535bool sysfs_streq(const char *s1, const char *s2)
536{
537 while (*s1 && *s1 == *s2) {
538 s1++;
539 s2++;
540 }
541
542 if (*s1 == *s2)
543 return true;
544 if (!*s1 && *s2 == '\n' && !s2[1])
545 return true;
546 if (*s1 == '\n' && !s1[1] && !*s2)
547 return true;
548 return false;
549}
550EXPORT_SYMBOL(sysfs_streq);
551
Jonathan Camerond0f1fed2011-04-19 12:43:45 +0100552/**
553 * strtobool - convert common user inputs into boolean values
554 * @s: input string
555 * @res: result
556 *
557 * This routine returns 0 iff the first character is one of 'Yy1Nn0'.
558 * Otherwise it will return -EINVAL. Value pointed to by res is
559 * updated upon finding a match.
560 */
561int strtobool(const char *s, bool *res)
562{
563 switch (s[0]) {
564 case 'y':
565 case 'Y':
566 case '1':
567 *res = true;
568 break;
569 case 'n':
570 case 'N':
571 case '0':
572 *res = false;
573 break;
574 default:
575 return -EINVAL;
576 }
577 return 0;
578}
579EXPORT_SYMBOL(strtobool);
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581#ifndef __HAVE_ARCH_MEMSET
582/**
583 * memset - Fill a region of memory with the given value
584 * @s: Pointer to the start of the area.
585 * @c: The byte to fill the area with
586 * @count: The size of the area.
587 *
588 * Do not use memset() to access IO space, use memset_io() instead.
589 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800590void *memset(void *s, int c, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Jesper Juhl850b9242005-10-30 15:02:13 -0800592 char *xs = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 while (count--)
595 *xs++ = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return s;
597}
598EXPORT_SYMBOL(memset);
599#endif
600
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400601/**
602 * memzero_explicit - Fill a region of memory (e.g. sensitive
603 * keying data) with 0s.
604 * @s: Pointer to the start of the area.
605 * @count: The size of the area.
606 *
Daniel Borkmann81553302015-01-06 00:27:45 +0100607 * Note: usually using memset() is just fine (!), but in cases
608 * where clearing out _local_ data at the end of a scope is
609 * necessary, memzero_explicit() should be used instead in
610 * order to prevent the compiler from optimising away zeroing.
611 *
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400612 * memzero_explicit() doesn't need an arch-specific version as
613 * it just invokes the one of memset() implicitly.
614 */
615void memzero_explicit(void *s, size_t count)
616{
617 memset(s, 0, count);
618 OPTIMIZER_HIDE_VAR(s);
619}
620EXPORT_SYMBOL(memzero_explicit);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622#ifndef __HAVE_ARCH_MEMCPY
623/**
624 * memcpy - Copy one area of memory to another
625 * @dest: Where to copy to
626 * @src: Where to copy from
627 * @count: The size of the area.
628 *
629 * You should not use this function to access IO space, use memcpy_toio()
630 * or memcpy_fromio() instead.
631 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800632void *memcpy(void *dest, const void *src, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Jesper Juhl850b9242005-10-30 15:02:13 -0800634 char *tmp = dest;
Jan-Benedict Glaw4c416ab2006-04-10 22:54:09 -0700635 const char *s = src;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 while (count--)
638 *tmp++ = *s++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return dest;
640}
641EXPORT_SYMBOL(memcpy);
642#endif
643
644#ifndef __HAVE_ARCH_MEMMOVE
645/**
646 * memmove - Copy one area of memory to another
647 * @dest: Where to copy to
648 * @src: Where to copy from
649 * @count: The size of the area.
650 *
651 * Unlike memcpy(), memmove() copes with overlapping areas.
652 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800653void *memmove(void *dest, const void *src, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Paul Jackson82da2c32005-10-30 15:03:19 -0800655 char *tmp;
656 const char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 if (dest <= src) {
Jesper Juhl850b9242005-10-30 15:02:13 -0800659 tmp = dest;
660 s = src;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 while (count--)
662 *tmp++ = *s++;
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800663 } else {
Jesper Juhl850b9242005-10-30 15:02:13 -0800664 tmp = dest;
665 tmp += count;
666 s = src;
667 s += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 while (count--)
669 *--tmp = *--s;
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return dest;
672}
673EXPORT_SYMBOL(memmove);
674#endif
675
676#ifndef __HAVE_ARCH_MEMCMP
677/**
678 * memcmp - Compare two areas of memory
679 * @cs: One area of memory
680 * @ct: Another area of memory
681 * @count: The size of the area.
682 */
Paolo 'Blaisorblade' Giarrusso0c281302005-05-05 16:15:17 -0700683#undef memcmp
Andi Kleena7330c92014-02-08 08:52:06 +0100684__visible int memcmp(const void *cs, const void *ct, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 const unsigned char *su1, *su2;
687 int res = 0;
688
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800689 for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if ((res = *su1 - *su2) != 0)
691 break;
692 return res;
693}
694EXPORT_SYMBOL(memcmp);
695#endif
696
697#ifndef __HAVE_ARCH_MEMSCAN
698/**
699 * memscan - Find a character in an area of memory.
700 * @addr: The memory area
701 * @c: The byte to search for
702 * @size: The size of the area.
703 *
704 * returns the address of the first occurrence of @c, or 1 byte past
705 * the area if @c is not found
706 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800707void *memscan(void *addr, int c, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Jesper Juhl850b9242005-10-30 15:02:13 -0800709 unsigned char *p = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 while (size) {
712 if (*p == c)
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800713 return (void *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 p++;
715 size--;
716 }
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800717 return (void *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719EXPORT_SYMBOL(memscan);
720#endif
721
722#ifndef __HAVE_ARCH_STRSTR
723/**
724 * strstr - Find the first substring in a %NUL terminated string
725 * @s1: The string to be searched
726 * @s2: The string to search for
727 */
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800728char *strstr(const char *s1, const char *s2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Li Zefand5f1fb52010-01-14 10:53:55 +0800730 size_t l1, l2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 l2 = strlen(s2);
733 if (!l2)
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800734 return (char *)s1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 l1 = strlen(s1);
736 while (l1 >= l2) {
737 l1--;
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800738 if (!memcmp(s1, s2, l2))
739 return (char *)s1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 s1++;
741 }
742 return NULL;
743}
744EXPORT_SYMBOL(strstr);
745#endif
746
Li Zefand5f1fb52010-01-14 10:53:55 +0800747#ifndef __HAVE_ARCH_STRNSTR
748/**
749 * strnstr - Find the first substring in a length-limited string
750 * @s1: The string to be searched
751 * @s2: The string to search for
752 * @len: the maximum number of characters to search
753 */
754char *strnstr(const char *s1, const char *s2, size_t len)
755{
André Goddard Rosad6a2eed2010-03-05 13:43:12 -0800756 size_t l2;
Li Zefand5f1fb52010-01-14 10:53:55 +0800757
758 l2 = strlen(s2);
759 if (!l2)
760 return (char *)s1;
André Goddard Rosad6a2eed2010-03-05 13:43:12 -0800761 while (len >= l2) {
762 len--;
Li Zefand5f1fb52010-01-14 10:53:55 +0800763 if (!memcmp(s1, s2, l2))
764 return (char *)s1;
765 s1++;
766 }
767 return NULL;
768}
769EXPORT_SYMBOL(strnstr);
770#endif
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#ifndef __HAVE_ARCH_MEMCHR
773/**
774 * memchr - Find a character in an area of memory.
775 * @s: The memory area
776 * @c: The byte to search for
777 * @n: The size of the area.
778 *
779 * returns the address of the first occurrence of @c, or %NULL
780 * if @c is not found
781 */
782void *memchr(const void *s, int c, size_t n)
783{
784 const unsigned char *p = s;
785 while (n-- != 0) {
786 if ((unsigned char)c == *p++) {
Jesper Juhl51a0f0f2005-10-30 15:02:11 -0800787 return (void *)(p - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789 }
790 return NULL;
791}
792EXPORT_SYMBOL(memchr);
793#endif
Akinobu Mita798248202011-10-31 17:08:07 -0700794
795static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes)
796{
797 while (bytes) {
798 if (*start != value)
799 return (void *)start;
800 start++;
801 bytes--;
802 }
803 return NULL;
804}
805
806/**
807 * memchr_inv - Find an unmatching character in an area of memory.
808 * @start: The memory area
809 * @c: Find a character other than c
810 * @bytes: The size of the area.
811 *
812 * returns the address of the first character other than @c, or %NULL
813 * if the whole buffer contains just @c.
814 */
815void *memchr_inv(const void *start, int c, size_t bytes)
816{
817 u8 value = c;
818 u64 value64;
819 unsigned int words, prefix;
820
821 if (bytes <= 16)
822 return check_bytes8(start, value, bytes);
823
Akinobu Mitaf43804b2012-03-23 15:02:14 -0700824 value64 = value;
Linus Torvalds72d93102014-09-13 11:14:53 -0700825#if defined(CONFIG_ARCH_HAS_FAST_MULTIPLIER) && BITS_PER_LONG == 64
Akinobu Mitaf43804b2012-03-23 15:02:14 -0700826 value64 *= 0x0101010101010101;
Linus Torvalds72d93102014-09-13 11:14:53 -0700827#elif defined(CONFIG_ARCH_HAS_FAST_MULTIPLIER)
Akinobu Mitaf43804b2012-03-23 15:02:14 -0700828 value64 *= 0x01010101;
829 value64 |= value64 << 32;
830#else
831 value64 |= value64 << 8;
832 value64 |= value64 << 16;
833 value64 |= value64 << 32;
834#endif
Akinobu Mita798248202011-10-31 17:08:07 -0700835
Akinobu Mitaf43804b2012-03-23 15:02:14 -0700836 prefix = (unsigned long)start % 8;
Akinobu Mita798248202011-10-31 17:08:07 -0700837 if (prefix) {
Akinobu Mitaf43804b2012-03-23 15:02:14 -0700838 u8 *r;
839
840 prefix = 8 - prefix;
841 r = check_bytes8(start, value, prefix);
Akinobu Mita798248202011-10-31 17:08:07 -0700842 if (r)
843 return r;
844 start += prefix;
845 bytes -= prefix;
846 }
847
848 words = bytes / 8;
849
850 while (words) {
851 if (*(u64 *)start != value64)
852 return check_bytes8(start, value, 8);
853 start += 8;
854 words--;
855 }
856
857 return check_bytes8(start, value, bytes % 8);
858}
859EXPORT_SYMBOL(memchr_inv);