Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
string.c
Go to the documentation of this file.
1 /*
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 <[email protected]>
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 <[email protected]>,
18  * Matthew Hawkins <[email protected]>
19  * - Kissed strtok() goodbye
20  */
21 
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>
29 
30 #ifndef __HAVE_ARCH_STRNICMP
31 
37 int strnicmp(const char *s1, const char *s2, size_t len)
38 {
39  /* Yes, Virginia, it had better be unsigned */
40  unsigned char c1, c2;
41 
42  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);
57  return (int)c1 - (int)c2;
58 }
60 #endif
61 
62 #ifndef __HAVE_ARCH_STRCASECMP
63 int strcasecmp(const char *s1, const char *s2)
64 {
65  int c1, c2;
66 
67  do {
68  c1 = tolower(*s1++);
69  c2 = tolower(*s2++);
70  } while (c1 == c2 && c1 != 0);
71  return c1 - c2;
72 }
74 #endif
75 
76 #ifndef __HAVE_ARCH_STRNCASECMP
77 int strncasecmp(const char *s1, const char *s2, size_t n)
78 {
79  int c1, c2;
80 
81  do {
82  c1 = tolower(*s1++);
83  c2 = tolower(*s2++);
84  } while ((--n > 0) && c1 == c2 && c1 != 0);
85  return c1 - c2;
86 }
88 #endif
89 
90 #ifndef __HAVE_ARCH_STRCPY
91 
96 #undef strcpy
97 char *strcpy(char *dest, const char *src)
98 {
99  char *tmp = dest;
100 
101  while ((*dest++ = *src++) != '\0')
102  /* nothing */;
103  return tmp;
104 }
106 #endif
107 
108 #ifndef __HAVE_ARCH_STRNCPY
109 
122 char *strncpy(char *dest, const char *src, size_t count)
123 {
124  char *tmp = dest;
125 
126  while (count) {
127  if ((*tmp = *src) != 0)
128  src++;
129  tmp++;
130  count--;
131  }
132  return dest;
133 }
134 EXPORT_SYMBOL(strncpy);
135 #endif
136 
137 #ifndef __HAVE_ARCH_STRLCPY
138 
149 size_t strlcpy(char *dest, const char *src, size_t size)
150 {
151  size_t ret = strlen(src);
152 
153  if (size) {
154  size_t len = (ret >= size) ? size - 1 : ret;
155  memcpy(dest, src, len);
156  dest[len] = '\0';
157  }
158  return ret;
159 }
161 #endif
162 
163 #ifndef __HAVE_ARCH_STRCAT
164 
169 #undef strcat
170 char *strcat(char *dest, const char *src)
171 {
172  char *tmp = dest;
173 
174  while (*dest)
175  dest++;
176  while ((*dest++ = *src++) != '\0')
177  ;
178  return tmp;
179 }
181 #endif
182 
183 #ifndef __HAVE_ARCH_STRNCAT
184 
193 char *strncat(char *dest, const char *src, size_t count)
194 {
195  char *tmp = dest;
196 
197  if (count) {
198  while (*dest)
199  dest++;
200  while ((*dest++ = *src++) != 0) {
201  if (--count == 0) {
202  *dest = '\0';
203  break;
204  }
205  }
206  }
207  return tmp;
208 }
210 #endif
211 
212 #ifndef __HAVE_ARCH_STRLCAT
213 
219 size_t strlcat(char *dest, const char *src, size_t count)
220 {
221  size_t dsize = strlen(dest);
222  size_t len = strlen(src);
223  size_t res = dsize + len;
224 
225  /* This would be a bug */
226  BUG_ON(dsize >= count);
227 
228  dest += dsize;
229  count -= dsize;
230  if (len >= count)
231  len = count-1;
232  memcpy(dest, src, len);
233  dest[len] = 0;
234  return res;
235 }
237 #endif
238 
239 #ifndef __HAVE_ARCH_STRCMP
240 
245 #undef strcmp
246 int strcmp(const char *cs, const char *ct)
247 {
248  unsigned char c1, c2;
249 
250  while (1) {
251  c1 = *cs++;
252  c2 = *ct++;
253  if (c1 != c2)
254  return c1 < c2 ? -1 : 1;
255  if (!c1)
256  break;
257  }
258  return 0;
259 }
261 #endif
262 
263 #ifndef __HAVE_ARCH_STRNCMP
264 
270 int strncmp(const char *cs, const char *ct, size_t count)
271 {
272  unsigned char c1, c2;
273 
274  while (count) {
275  c1 = *cs++;
276  c2 = *ct++;
277  if (c1 != c2)
278  return c1 < c2 ? -1 : 1;
279  if (!c1)
280  break;
281  count--;
282  }
283  return 0;
284 }
286 #endif
287 
288 #ifndef __HAVE_ARCH_STRCHR
289 
294 char *strchr(const char *s, int c)
295 {
296  for (; *s != (char)c; ++s)
297  if (*s == '\0')
298  return NULL;
299  return (char *)s;
300 }
302 #endif
303 
304 #ifndef __HAVE_ARCH_STRRCHR
305 
310 char *strrchr(const char *s, int c)
311 {
312  const char *p = s + strlen(s);
313  do {
314  if (*p == (char)c)
315  return (char *)p;
316  } while (--p >= s);
317  return NULL;
318 }
320 #endif
321 
322 #ifndef __HAVE_ARCH_STRNCHR
323 
329 char *strnchr(const char *s, size_t count, int c)
330 {
331  for (; count-- && *s != '\0'; ++s)
332  if (*s == (char)c)
333  return (char *)s;
334  return NULL;
335 }
337 #endif
338 
345 char *skip_spaces(const char *str)
346 {
347  while (isspace(*str))
348  ++str;
349  return (char *)str;
350 }
352 
361 char *strim(char *s)
362 {
363  size_t size;
364  char *end;
365 
366  size = strlen(s);
367  if (!size)
368  return s;
369 
370  end = s + size - 1;
371  while (end >= s && isspace(*end))
372  end--;
373  *(end + 1) = '\0';
374 
375  return skip_spaces(s);
376 }
378 
379 #ifndef __HAVE_ARCH_STRLEN
380 
384 size_t strlen(const char *s)
385 {
386  const char *sc;
387 
388  for (sc = s; *sc != '\0'; ++sc)
389  /* nothing */;
390  return sc - s;
391 }
393 #endif
394 
395 #ifndef __HAVE_ARCH_STRNLEN
396 
401 size_t strnlen(const char *s, size_t count)
402 {
403  const char *sc;
404 
405  for (sc = s; count-- && *sc != '\0'; ++sc)
406  /* nothing */;
407  return sc - s;
408 }
409 EXPORT_SYMBOL(strnlen);
410 #endif
411 
412 #ifndef __HAVE_ARCH_STRSPN
413 
418 size_t strspn(const char *s, const char *accept)
419 {
420  const char *p;
421  const char *a;
422  size_t count = 0;
423 
424  for (p = s; *p != '\0'; ++p) {
425  for (a = accept; *a != '\0'; ++a) {
426  if (*p == *a)
427  break;
428  }
429  if (*a == '\0')
430  return count;
431  ++count;
432  }
433  return count;
434 }
435 
437 #endif
438 
439 #ifndef __HAVE_ARCH_STRCSPN
440 
445 size_t strcspn(const char *s, const char *reject)
446 {
447  const char *p;
448  const char *r;
449  size_t count = 0;
450 
451  for (p = s; *p != '\0'; ++p) {
452  for (r = reject; *r != '\0'; ++r) {
453  if (*p == *r)
454  return count;
455  }
456  ++count;
457  }
458  return count;
459 }
461 #endif
462 
463 #ifndef __HAVE_ARCH_STRPBRK
464 
469 char *strpbrk(const char *cs, const char *ct)
470 {
471  const char *sc1, *sc2;
472 
473  for (sc1 = cs; *sc1 != '\0'; ++sc1) {
474  for (sc2 = ct; *sc2 != '\0'; ++sc2) {
475  if (*sc1 == *sc2)
476  return (char *)sc1;
477  }
478  }
479  return NULL;
480 }
482 #endif
483 
484 #ifndef __HAVE_ARCH_STRSEP
485 
496 char *strsep(char **s, const char *ct)
497 {
498  char *sbegin = *s;
499  char *end;
500 
501  if (sbegin == NULL)
502  return NULL;
503 
504  end = strpbrk(sbegin, ct);
505  if (end)
506  *end++ = '\0';
507  *s = end;
508  return sbegin;
509 }
511 #endif
512 
523 bool sysfs_streq(const char *s1, const char *s2)
524 {
525  while (*s1 && *s1 == *s2) {
526  s1++;
527  s2++;
528  }
529 
530  if (*s1 == *s2)
531  return true;
532  if (!*s1 && *s2 == '\n' && !s2[1])
533  return true;
534  if (*s1 == '\n' && !s1[1] && !*s2)
535  return true;
536  return false;
537 }
539 
549 int strtobool(const char *s, bool *res)
550 {
551  switch (s[0]) {
552  case 'y':
553  case 'Y':
554  case '1':
555  *res = true;
556  break;
557  case 'n':
558  case 'N':
559  case '0':
560  *res = false;
561  break;
562  default:
563  return -EINVAL;
564  }
565  return 0;
566 }
568 
569 #ifndef __HAVE_ARCH_MEMSET
570 
578 void *memset(void *s, int c, size_t count)
579 {
580  char *xs = s;
581 
582  while (count--)
583  *xs++ = c;
584  return s;
585 }
587 #endif
588 
589 #ifndef __HAVE_ARCH_MEMCPY
590 
599 void *memcpy(void *dest, const void *src, size_t count)
600 {
601  char *tmp = dest;
602  const char *s = src;
603 
604  while (count--)
605  *tmp++ = *s++;
606  return dest;
607 }
609 #endif
610 
611 #ifndef __HAVE_ARCH_MEMMOVE
612 
620 void *memmove(void *dest, const void *src, size_t count)
621 {
622  char *tmp;
623  const char *s;
624 
625  if (dest <= src) {
626  tmp = dest;
627  s = src;
628  while (count--)
629  *tmp++ = *s++;
630  } else {
631  tmp = dest;
632  tmp += count;
633  s = src;
634  s += count;
635  while (count--)
636  *--tmp = *--s;
637  }
638  return dest;
639 }
641 #endif
642 
643 #ifndef __HAVE_ARCH_MEMCMP
644 
650 #undef memcmp
651 int memcmp(const void *cs, const void *ct, size_t count)
652 {
653  const unsigned char *su1, *su2;
654  int res = 0;
655 
656  for (su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
657  if ((res = *su1 - *su2) != 0)
658  break;
659  return res;
660 }
662 #endif
663 
664 #ifndef __HAVE_ARCH_MEMSCAN
665 
674 void *memscan(void *addr, int c, size_t size)
675 {
676  unsigned char *p = addr;
677 
678  while (size) {
679  if (*p == c)
680  return (void *)p;
681  p++;
682  size--;
683  }
684  return (void *)p;
685 }
686 EXPORT_SYMBOL(memscan);
687 #endif
688 
689 #ifndef __HAVE_ARCH_STRSTR
690 
695 char *strstr(const char *s1, const char *s2)
696 {
697  size_t l1, l2;
698 
699  l2 = strlen(s2);
700  if (!l2)
701  return (char *)s1;
702  l1 = strlen(s1);
703  while (l1 >= l2) {
704  l1--;
705  if (!memcmp(s1, s2, l2))
706  return (char *)s1;
707  s1++;
708  }
709  return NULL;
710 }
712 #endif
713 
714 #ifndef __HAVE_ARCH_STRNSTR
715 
721 char *strnstr(const char *s1, const char *s2, size_t len)
722 {
723  size_t l2;
724 
725  l2 = strlen(s2);
726  if (!l2)
727  return (char *)s1;
728  while (len >= l2) {
729  len--;
730  if (!memcmp(s1, s2, l2))
731  return (char *)s1;
732  s1++;
733  }
734  return NULL;
735 }
737 #endif
738 
739 #ifndef __HAVE_ARCH_MEMCHR
740 
749 void *memchr(const void *s, int c, size_t n)
750 {
751  const unsigned char *p = s;
752  while (n-- != 0) {
753  if ((unsigned char)c == *p++) {
754  return (void *)(p - 1);
755  }
756  }
757  return NULL;
758 }
760 #endif
761 
762 static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes)
763 {
764  while (bytes) {
765  if (*start != value)
766  return (void *)start;
767  start++;
768  bytes--;
769  }
770  return NULL;
771 }
772 
782 void *memchr_inv(const void *start, int c, size_t bytes)
783 {
784  u8 value = c;
785  u64 value64;
786  unsigned int words, prefix;
787 
788  if (bytes <= 16)
789  return check_bytes8(start, value, bytes);
790 
791  value64 = value;
792 #if defined(ARCH_HAS_FAST_MULTIPLIER) && BITS_PER_LONG == 64
793  value64 *= 0x0101010101010101;
794 #elif defined(ARCH_HAS_FAST_MULTIPLIER)
795  value64 *= 0x01010101;
796  value64 |= value64 << 32;
797 #else
798  value64 |= value64 << 8;
799  value64 |= value64 << 16;
800  value64 |= value64 << 32;
801 #endif
802 
803  prefix = (unsigned long)start % 8;
804  if (prefix) {
805  u8 *r;
806 
807  prefix = 8 - prefix;
808  r = check_bytes8(start, value, prefix);
809  if (r)
810  return r;
811  start += prefix;
812  bytes -= prefix;
813  }
814 
815  words = bytes / 8;
816 
817  while (words) {
818  if (*(u64 *)start != value64)
819  return check_bytes8(start, value, 8);
820  start += 8;
821  words--;
822  }
823 
824  return check_bytes8(start, value, bytes % 8);
825 }