]>
git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - lib/string.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
8 * stupid library routines.. The optimized versions should generally be found
9 * as inline code in <asm-xx/string.h>
11 * These are buggy as well..
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.
17 * * Sat Feb 09 2002, Jason Thomas <jason@topic.com.au>,
18 * Matthew Hawkins <matt@mh.dropbear.id.au>
19 * - Kissed strtok() goodbye
22 #include <linux/types.h>
23 #include <linux/string.h>
24 #include <linux/ctype.h>
25 #include <linux/kernel.h>
26 #include <linux/export.h>
27 #include <linux/bug.h>
28 #include <linux/errno.h>
30 #ifndef __HAVE_ARCH_STRNICMP
32 * strnicmp - Case insensitive, length-limited string comparison
34 * @s2: The other string
35 * @len: the maximum number of characters to compare
37 int strnicmp(const char *s1
, const char *s2
, size_t len
)
39 /* Yes, Virginia, it had better be unsigned */
57 return (int)c1
- (int)c2
;
59 EXPORT_SYMBOL(strnicmp
);
62 #ifndef __HAVE_ARCH_STRCASECMP
63 int strcasecmp(const char *s1
, const char *s2
)
70 } while (c1
== c2
&& c1
!= 0);
73 EXPORT_SYMBOL(strcasecmp
);
76 #ifndef __HAVE_ARCH_STRNCASECMP
77 int strncasecmp(const char *s1
, const char *s2
, size_t n
)
84 } while ((--n
> 0) && c1
== c2
&& c1
!= 0);
87 EXPORT_SYMBOL(strncasecmp
);
90 #ifndef __HAVE_ARCH_STRCPY
92 * strcpy - Copy a %NUL terminated string
93 * @dest: Where to copy the string to
94 * @src: Where to copy the string from
97 char *strcpy(char *dest
, const char *src
)
101 while ((*dest
++ = *src
++) != '\0')
105 EXPORT_SYMBOL(strcpy
);
108 #ifndef __HAVE_ARCH_STRNCPY
110 * strncpy - Copy a length-limited, C-string
111 * @dest: Where to copy the string to
112 * @src: Where to copy the string from
113 * @count: The maximum number of bytes to copy
115 * The result is not %NUL-terminated if the source exceeds
118 * In the case where the length of @src is less than that of
119 * count, the remainder of @dest will be padded with %NUL.
122 char *strncpy(char *dest
, const char *src
, size_t count
)
127 if ((*tmp
= *src
) != 0)
134 EXPORT_SYMBOL(strncpy
);
137 #ifndef __HAVE_ARCH_STRLCPY
139 * strlcpy - Copy a C-string into a sized buffer
140 * @dest: Where to copy the string to
141 * @src: Where to copy the string from
142 * @size: size of destination buffer
144 * Compatible with *BSD: the result is always a valid
145 * NUL-terminated string that fits in the buffer (unless,
146 * of course, the buffer size is zero). It does not pad
147 * out the result like strncpy() does.
149 size_t strlcpy(char *dest
, const char *src
, size_t size
)
151 size_t ret
= strlen(src
);
154 size_t len
= (ret
>= size
) ? size
- 1 : ret
;
155 memcpy(dest
, src
, len
);
160 EXPORT_SYMBOL(strlcpy
);
163 #ifndef __HAVE_ARCH_STRCAT
165 * strcat - Append one %NUL-terminated string to another
166 * @dest: The string to be appended to
167 * @src: The string to append to it
170 char *strcat(char *dest
, const char *src
)
176 while ((*dest
++ = *src
++) != '\0')
180 EXPORT_SYMBOL(strcat
);
183 #ifndef __HAVE_ARCH_STRNCAT
185 * strncat - Append a length-limited, C-string to another
186 * @dest: The string to be appended to
187 * @src: The string to append to it
188 * @count: The maximum numbers of bytes to copy
190 * Note that in contrast to strncpy(), strncat() ensures the result is
193 char *strncat(char *dest
, const char *src
, size_t count
)
200 while ((*dest
++ = *src
++) != 0) {
209 EXPORT_SYMBOL(strncat
);
212 #ifndef __HAVE_ARCH_STRLCAT
214 * strlcat - Append a length-limited, C-string to another
215 * @dest: The string to be appended to
216 * @src: The string to append to it
217 * @count: The size of the destination buffer.
219 size_t strlcat(char *dest
, const char *src
, size_t count
)
221 size_t dsize
= strlen(dest
);
222 size_t len
= strlen(src
);
223 size_t res
= dsize
+ len
;
225 /* This would be a bug */
226 BUG_ON(dsize
>= count
);
232 memcpy(dest
, src
, len
);
236 EXPORT_SYMBOL(strlcat
);
239 #ifndef __HAVE_ARCH_STRCMP
241 * strcmp - Compare two strings
243 * @ct: Another string
246 int strcmp(const char *cs
, const char *ct
)
248 unsigned char c1
, c2
;
254 return c1
< c2
? -1 : 1;
260 EXPORT_SYMBOL(strcmp
);
263 #ifndef __HAVE_ARCH_STRNCMP
265 * strncmp - Compare two length-limited strings
267 * @ct: Another string
268 * @count: The maximum number of bytes to compare
270 int strncmp(const char *cs
, const char *ct
, size_t count
)
272 unsigned char c1
, c2
;
278 return c1
< c2
? -1 : 1;
285 EXPORT_SYMBOL(strncmp
);
288 #ifndef __HAVE_ARCH_STRCHR
290 * strchr - Find the first occurrence of a character in a string
291 * @s: The string to be searched
292 * @c: The character to search for
294 char *strchr(const char *s
, int c
)
296 for (; *s
!= (char)c
; ++s
)
301 EXPORT_SYMBOL(strchr
);
304 #ifndef __HAVE_ARCH_STRCHRNUL
306 * strchrnul - Find and return a character in a string, or end of string
307 * @s: The string to be searched
308 * @c: The character to search for
310 * Returns pointer to first occurrence of 'c' in s. If c is not found, then
311 * return a pointer to the null byte at the end of s.
313 char *strchrnul(const char *s
, int c
)
315 while (*s
&& *s
!= (char)c
)
319 EXPORT_SYMBOL(strchrnul
);
322 #ifndef __HAVE_ARCH_STRRCHR
324 * strrchr - Find the last occurrence of a character in a string
325 * @s: The string to be searched
326 * @c: The character to search for
328 char *strrchr(const char *s
, int c
)
330 const char *p
= s
+ strlen(s
);
337 EXPORT_SYMBOL(strrchr
);
340 #ifndef __HAVE_ARCH_STRNCHR
342 * strnchr - Find a character in a length limited string
343 * @s: The string to be searched
344 * @count: The number of characters to be searched
345 * @c: The character to search for
347 char *strnchr(const char *s
, size_t count
, int c
)
349 for (; count
-- && *s
!= '\0'; ++s
)
354 EXPORT_SYMBOL(strnchr
);
358 * skip_spaces - Removes leading whitespace from @str.
359 * @str: The string to be stripped.
361 * Returns a pointer to the first non-whitespace character in @str.
363 char *skip_spaces(const char *str
)
365 while (isspace(*str
))
369 EXPORT_SYMBOL(skip_spaces
);
372 * strim - Removes leading and trailing whitespace from @s.
373 * @s: The string to be stripped.
375 * Note that the first trailing whitespace is replaced with a %NUL-terminator
376 * in the given string @s. Returns a pointer to the first non-whitespace
389 while (end
>= s
&& isspace(*end
))
393 return skip_spaces(s
);
395 EXPORT_SYMBOL(strim
);
397 #ifndef __HAVE_ARCH_STRLEN
399 * strlen - Find the length of a string
400 * @s: The string to be sized
402 size_t strlen(const char *s
)
406 for (sc
= s
; *sc
!= '\0'; ++sc
)
410 EXPORT_SYMBOL(strlen
);
413 #ifndef __HAVE_ARCH_STRNLEN
415 * strnlen - Find the length of a length-limited string
416 * @s: The string to be sized
417 * @count: The maximum number of bytes to search
419 size_t strnlen(const char *s
, size_t count
)
423 for (sc
= s
; count
-- && *sc
!= '\0'; ++sc
)
427 EXPORT_SYMBOL(strnlen
);
430 #ifndef __HAVE_ARCH_STRSPN
432 * strspn - Calculate the length of the initial substring of @s which only contain letters in @accept
433 * @s: The string to be searched
434 * @accept: The string to search for
436 size_t strspn(const char *s
, const char *accept
)
442 for (p
= s
; *p
!= '\0'; ++p
) {
443 for (a
= accept
; *a
!= '\0'; ++a
) {
454 EXPORT_SYMBOL(strspn
);
457 #ifndef __HAVE_ARCH_STRCSPN
459 * strcspn - Calculate the length of the initial substring of @s which does not contain letters in @reject
460 * @s: The string to be searched
461 * @reject: The string to avoid
463 size_t strcspn(const char *s
, const char *reject
)
469 for (p
= s
; *p
!= '\0'; ++p
) {
470 for (r
= reject
; *r
!= '\0'; ++r
) {
478 EXPORT_SYMBOL(strcspn
);
481 #ifndef __HAVE_ARCH_STRPBRK
483 * strpbrk - Find the first occurrence of a set of characters
484 * @cs: The string to be searched
485 * @ct: The characters to search for
487 char *strpbrk(const char *cs
, const char *ct
)
489 const char *sc1
, *sc2
;
491 for (sc1
= cs
; *sc1
!= '\0'; ++sc1
) {
492 for (sc2
= ct
; *sc2
!= '\0'; ++sc2
) {
499 EXPORT_SYMBOL(strpbrk
);
502 #ifndef __HAVE_ARCH_STRSEP
504 * strsep - Split a string into tokens
505 * @s: The string to be searched
506 * @ct: The characters to search for
508 * strsep() updates @s to point after the token, ready for the next call.
510 * It returns empty tokens, too, behaving exactly like the libc function
511 * of that name. In fact, it was stolen from glibc2 and de-fancy-fied.
512 * Same semantics, slimmer shape. ;)
514 char *strsep(char **s
, const char *ct
)
522 end
= strpbrk(sbegin
, ct
);
528 EXPORT_SYMBOL(strsep
);
532 * sysfs_streq - return true if strings are equal, modulo trailing newline
534 * @s2: another string
536 * This routine returns true iff two strings are equal, treating both
537 * NUL and newline-then-NUL as equivalent string terminations. It's
538 * geared for use with sysfs input strings, which generally terminate
539 * with newlines but are compared against values without newlines.
541 bool sysfs_streq(const char *s1
, const char *s2
)
543 while (*s1
&& *s1
== *s2
) {
550 if (!*s1
&& *s2
== '\n' && !s2
[1])
552 if (*s1
== '\n' && !s1
[1] && !*s2
)
556 EXPORT_SYMBOL(sysfs_streq
);
559 * strtobool - convert common user inputs into boolean values
563 * This routine returns 0 iff the first character is one of 'Yy1Nn0'.
564 * Otherwise it will return -EINVAL. Value pointed to by res is
565 * updated upon finding a match.
567 int strtobool(const char *s
, bool *res
)
585 EXPORT_SYMBOL(strtobool
);
587 #ifndef __HAVE_ARCH_MEMSET
589 * memset - Fill a region of memory with the given value
590 * @s: Pointer to the start of the area.
591 * @c: The byte to fill the area with
592 * @count: The size of the area.
594 * Do not use memset() to access IO space, use memset_io() instead.
596 void *memset(void *s
, int c
, size_t count
)
604 EXPORT_SYMBOL(memset
);
607 #ifndef __HAVE_ARCH_MEMCPY
609 * memcpy - Copy one area of memory to another
610 * @dest: Where to copy to
611 * @src: Where to copy from
612 * @count: The size of the area.
614 * You should not use this function to access IO space, use memcpy_toio()
615 * or memcpy_fromio() instead.
617 void *memcpy(void *dest
, const void *src
, size_t count
)
626 EXPORT_SYMBOL(memcpy
);
629 #ifndef __HAVE_ARCH_MEMMOVE
631 * memmove - Copy one area of memory to another
632 * @dest: Where to copy to
633 * @src: Where to copy from
634 * @count: The size of the area.
636 * Unlike memcpy(), memmove() copes with overlapping areas.
638 void *memmove(void *dest
, const void *src
, size_t count
)
658 EXPORT_SYMBOL(memmove
);
661 #ifndef __HAVE_ARCH_MEMCMP
663 * memcmp - Compare two areas of memory
664 * @cs: One area of memory
665 * @ct: Another area of memory
666 * @count: The size of the area.
669 __visible
int memcmp(const void *cs
, const void *ct
, size_t count
)
671 const unsigned char *su1
, *su2
;
674 for (su1
= cs
, su2
= ct
; 0 < count
; ++su1
, ++su2
, count
--)
675 if ((res
= *su1
- *su2
) != 0)
679 EXPORT_SYMBOL(memcmp
);
682 #ifndef __HAVE_ARCH_MEMSCAN
684 * memscan - Find a character in an area of memory.
685 * @addr: The memory area
686 * @c: The byte to search for
687 * @size: The size of the area.
689 * returns the address of the first occurrence of @c, or 1 byte past
690 * the area if @c is not found
692 void *memscan(void *addr
, int c
, size_t size
)
694 unsigned char *p
= addr
;
704 EXPORT_SYMBOL(memscan
);
707 #ifndef __HAVE_ARCH_STRSTR
709 * strstr - Find the first substring in a %NUL terminated string
710 * @s1: The string to be searched
711 * @s2: The string to search for
713 char *strstr(const char *s1
, const char *s2
)
723 if (!memcmp(s1
, s2
, l2
))
729 EXPORT_SYMBOL(strstr
);
732 #ifndef __HAVE_ARCH_STRNSTR
734 * strnstr - Find the first substring in a length-limited string
735 * @s1: The string to be searched
736 * @s2: The string to search for
737 * @len: the maximum number of characters to search
739 char *strnstr(const char *s1
, const char *s2
, size_t len
)
748 if (!memcmp(s1
, s2
, l2
))
754 EXPORT_SYMBOL(strnstr
);
757 #ifndef __HAVE_ARCH_MEMCHR
759 * memchr - Find a character in an area of memory.
760 * @s: The memory area
761 * @c: The byte to search for
762 * @n: The size of the area.
764 * returns the address of the first occurrence of @c, or %NULL
767 void *memchr(const void *s
, int c
, size_t n
)
769 const unsigned char *p
= s
;
771 if ((unsigned char)c
== *p
++) {
772 return (void *)(p
- 1);
777 EXPORT_SYMBOL(memchr
);
780 static void *check_bytes8(const u8
*start
, u8 value
, unsigned int bytes
)
784 return (void *)start
;
792 * memchr_inv - Find an unmatching character in an area of memory.
793 * @start: The memory area
794 * @c: Find a character other than c
795 * @bytes: The size of the area.
797 * returns the address of the first character other than @c, or %NULL
798 * if the whole buffer contains just @c.
800 void *memchr_inv(const void *start
, int c
, size_t bytes
)
804 unsigned int words
, prefix
;
807 return check_bytes8(start
, value
, bytes
);
810 #if defined(CONFIG_ARCH_HAS_FAST_MULTIPLIER) && BITS_PER_LONG == 64
811 value64
*= 0x0101010101010101;
812 #elif defined(CONFIG_ARCH_HAS_FAST_MULTIPLIER)
813 value64
*= 0x01010101;
814 value64
|= value64
<< 32;
816 value64
|= value64
<< 8;
817 value64
|= value64
<< 16;
818 value64
|= value64
<< 32;
821 prefix
= (unsigned long)start
% 8;
826 r
= check_bytes8(start
, value
, prefix
);
836 if (*(u64
*)start
!= value64
)
837 return check_bytes8(start
, value
, 8);
842 return check_bytes8(start
, value
, bytes
% 8);
844 EXPORT_SYMBOL(memchr_inv
);