Merge branch '2021-04-13-assorted-improvements'
[platform/kernel/u-boot.git] / lib / string.c
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 <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
18 #include <config.h>
19 #include <linux/types.h>
20 #include <linux/string.h>
21 #include <linux/ctype.h>
22 #include <malloc.h>
23
24
25 /**
26  * strncasecmp - Case insensitive, length-limited string comparison
27  * @s1: One string
28  * @s2: The other string
29  * @len: the maximum number of characters to compare
30  */
31 int strncasecmp(const char *s1, const char *s2, size_t len)
32 {
33         /* Yes, Virginia, it had better be unsigned */
34         unsigned char c1, c2;
35
36         c1 = 0; c2 = 0;
37         if (len) {
38                 do {
39                         c1 = *s1; c2 = *s2;
40                         s1++; s2++;
41                         if (!c1)
42                                 break;
43                         if (!c2)
44                                 break;
45                         if (c1 == c2)
46                                 continue;
47                         c1 = tolower(c1);
48                         c2 = tolower(c2);
49                         if (c1 != c2)
50                                 break;
51                 } while (--len);
52         }
53         return (int)c1 - (int)c2;
54 }
55
56 /**
57  * strcasecmp - Case insensitive string comparison
58  * @s1: One string
59  * @s2: The other string
60  */
61 int strcasecmp(const char *s1, const char *s2)
62 {
63         return strncasecmp(s1, s2, -1U);
64 }
65
66 char * ___strtok;
67
68 #ifndef __HAVE_ARCH_STRCPY
69 /**
70  * strcpy - Copy a %NUL terminated string
71  * @dest: Where to copy the string to
72  * @src: Where to copy the string from
73  */
74 char * strcpy(char * dest,const char *src)
75 {
76         char *tmp = dest;
77
78         while ((*dest++ = *src++) != '\0')
79                 /* nothing */;
80         return tmp;
81 }
82 #endif
83
84 #ifndef __HAVE_ARCH_STRNCPY
85 /**
86  * strncpy - Copy a length-limited, %NUL-terminated string
87  * @dest: Where to copy the string to
88  * @src: Where to copy the string from
89  * @count: The maximum number of bytes to copy
90  *
91  * Note that unlike userspace strncpy, this does not %NUL-pad the buffer.
92  * However, the result is not %NUL-terminated if the source exceeds
93  * @count bytes.
94  */
95 char * strncpy(char * dest,const char *src,size_t count)
96 {
97         char *tmp = dest;
98
99         while (count-- && (*dest++ = *src++) != '\0')
100                 /* nothing */;
101
102         return tmp;
103 }
104 #endif
105
106 #ifndef __HAVE_ARCH_STRLCPY
107 /**
108  * strlcpy - Copy a C-string into a sized buffer
109  * @dest: Where to copy the string to
110  * @src: Where to copy the string from
111  * @size: size of destination buffer
112  *
113  * Compatible with *BSD: the result is always a valid
114  * NUL-terminated string that fits in the buffer (unless,
115  * of course, the buffer size is zero). It does not pad
116  * out the result like strncpy() does.
117  *
118  * Return: the number of bytes copied
119  */
120 size_t strlcpy(char *dest, const char *src, size_t size)
121 {
122         if (size) {
123                 size_t srclen = strlen(src);
124                 size_t len = (srclen >= size) ? size - 1 : srclen;
125
126                 memcpy(dest, src, len);
127                 dest[len] = '\0';
128                 return len + 1;
129         }
130
131         return 0;
132 }
133 #endif
134
135 #ifndef __HAVE_ARCH_STRCAT
136 /**
137  * strcat - Append one %NUL-terminated string to another
138  * @dest: The string to be appended to
139  * @src: The string to append to it
140  */
141 char * strcat(char * dest, const char * src)
142 {
143         char *tmp = dest;
144
145         while (*dest)
146                 dest++;
147         while ((*dest++ = *src++) != '\0')
148                 ;
149
150         return tmp;
151 }
152 #endif
153
154 #ifndef __HAVE_ARCH_STRNCAT
155 /**
156  * strncat - Append a length-limited, %NUL-terminated string to another
157  * @dest: The string to be appended to
158  * @src: The string to append to it
159  * @count: The maximum numbers of bytes to copy
160  *
161  * Note that in contrast to strncpy, strncat ensures the result is
162  * terminated.
163  */
164 char * strncat(char *dest, const char *src, size_t count)
165 {
166         char *tmp = dest;
167
168         if (count) {
169                 while (*dest)
170                         dest++;
171                 while ((*dest++ = *src++)) {
172                         if (--count == 0) {
173                                 *dest = '\0';
174                                 break;
175                         }
176                 }
177         }
178
179         return tmp;
180 }
181 #endif
182
183 #ifndef __HAVE_ARCH_STRLCAT
184 /**
185  * strlcat - Append a length-limited, %NUL-terminated string to another
186  * @dest: The string to be appended to
187  * @src: The string to append to it
188  * @size: The size of @dest
189  *
190  * Compatible with *BSD: the result is always a valid NUL-terminated string that
191  * fits in the buffer (unless, of course, the buffer size is zero). It does not
192  * write past @size like strncat() does.
193  */
194 size_t strlcat(char *dest, const char *src, size_t size)
195 {
196         size_t len = strnlen(dest, size);
197
198         return len + strlcpy(dest + len, src, size - len);
199 }
200 #endif
201
202 #ifndef __HAVE_ARCH_STRCMP
203 /**
204  * strcmp - Compare two strings
205  * @cs: One string
206  * @ct: Another string
207  */
208 int strcmp(const char * cs,const char * ct)
209 {
210         register signed char __res;
211
212         while (1) {
213                 if ((__res = *cs - *ct++) != 0 || !*cs++)
214                         break;
215         }
216
217         return __res;
218 }
219 #endif
220
221 #ifndef __HAVE_ARCH_STRNCMP
222 /**
223  * strncmp - Compare two length-limited strings
224  * @cs: One string
225  * @ct: Another string
226  * @count: The maximum number of bytes to compare
227  */
228 int strncmp(const char * cs,const char * ct,size_t count)
229 {
230         register signed char __res = 0;
231
232         while (count) {
233                 if ((__res = *cs - *ct++) != 0 || !*cs++)
234                         break;
235                 count--;
236         }
237
238         return __res;
239 }
240 #endif
241
242 #ifndef __HAVE_ARCH_STRCHR
243 /**
244  * strchr - Find the first occurrence of a character in a string
245  * @s: The string to be searched
246  * @c: The character to search for
247  */
248 char * strchr(const char * s, int c)
249 {
250         for(; *s != (char) c; ++s)
251                 if (*s == '\0')
252                         return NULL;
253         return (char *) s;
254 }
255 #endif
256
257 const char *strchrnul(const char *s, int c)
258 {
259         for (; *s != (char)c; ++s)
260                 if (*s == '\0')
261                         break;
262         return s;
263 }
264
265 #ifndef __HAVE_ARCH_STRRCHR
266 /**
267  * strrchr - Find the last occurrence of a character in a string
268  * @s: The string to be searched
269  * @c: The character to search for
270  */
271 char * strrchr(const char * s, int c)
272 {
273        const char *p = s + strlen(s);
274        do {
275            if (*p == (char)c)
276                return (char *)p;
277        } while (--p >= s);
278        return NULL;
279 }
280 #endif
281
282 #ifndef __HAVE_ARCH_STRLEN
283 /**
284  * strlen - Find the length of a string
285  * @s: The string to be sized
286  */
287 size_t strlen(const char * s)
288 {
289         const char *sc;
290
291         for (sc = s; *sc != '\0'; ++sc)
292                 /* nothing */;
293         return sc - s;
294 }
295 #endif
296
297 #ifndef __HAVE_ARCH_STRNLEN
298 /**
299  * strnlen - Find the length of a length-limited string
300  * @s: The string to be sized
301  * @count: The maximum number of bytes to search
302  */
303 size_t strnlen(const char * s, size_t count)
304 {
305         const char *sc;
306
307         for (sc = s; count-- && *sc != '\0'; ++sc)
308                 /* nothing */;
309         return sc - s;
310 }
311 #endif
312
313 #ifndef __HAVE_ARCH_STRCSPN
314 /**
315  * strcspn - Calculate the length of the initial substring of @s which does
316  * not contain letters in @reject
317  * @s: The string to be searched
318  * @reject: The string to avoid
319  */
320 size_t strcspn(const char *s, const char *reject)
321 {
322         const char *p;
323         const char *r;
324         size_t count = 0;
325
326         for (p = s; *p != '\0'; ++p) {
327                 for (r = reject; *r != '\0'; ++r) {
328                         if (*p == *r)
329                                 return count;
330                 }
331                 ++count;
332         }
333         return count;
334 }
335 #endif
336
337 #ifndef __HAVE_ARCH_STRDUP
338 char * strdup(const char *s)
339 {
340         char *new;
341
342         if ((s == NULL) ||
343             ((new = malloc (strlen(s) + 1)) == NULL) ) {
344                 return NULL;
345         }
346
347         strcpy (new, s);
348         return new;
349 }
350
351 char * strndup(const char *s, size_t n)
352 {
353         size_t len;
354         char *new;
355
356         if (s == NULL)
357                 return NULL;
358
359         len = strlen(s);
360
361         if (n < len)
362                 len = n;
363
364         new = malloc(len + 1);
365         if (new == NULL)
366                 return NULL;
367
368         strncpy(new, s, len);
369         new[len] = '\0';
370
371         return new;
372 }
373 #endif
374
375 #ifndef __HAVE_ARCH_STRSPN
376 /**
377  * strspn - Calculate the length of the initial substring of @s which only
378  *      contain letters in @accept
379  * @s: The string to be searched
380  * @accept: The string to search for
381  */
382 size_t strspn(const char *s, const char *accept)
383 {
384         const char *p;
385         const char *a;
386         size_t count = 0;
387
388         for (p = s; *p != '\0'; ++p) {
389                 for (a = accept; *a != '\0'; ++a) {
390                         if (*p == *a)
391                                 break;
392                 }
393                 if (*a == '\0')
394                         return count;
395                 ++count;
396         }
397
398         return count;
399 }
400 #endif
401
402 #ifndef __HAVE_ARCH_STRPBRK
403 /**
404  * strpbrk - Find the first occurrence of a set of characters
405  * @cs: The string to be searched
406  * @ct: The characters to search for
407  */
408 char * strpbrk(const char * cs,const char * ct)
409 {
410         const char *sc1,*sc2;
411
412         for( sc1 = cs; *sc1 != '\0'; ++sc1) {
413                 for( sc2 = ct; *sc2 != '\0'; ++sc2) {
414                         if (*sc1 == *sc2)
415                                 return (char *) sc1;
416                 }
417         }
418         return NULL;
419 }
420 #endif
421
422 #ifndef __HAVE_ARCH_STRTOK
423 /**
424  * strtok - Split a string into tokens
425  * @s: The string to be searched
426  * @ct: The characters to search for
427  *
428  * WARNING: strtok is deprecated, use strsep instead.
429  */
430 char * strtok(char * s,const char * ct)
431 {
432         char *sbegin, *send;
433
434         sbegin  = s ? s : ___strtok;
435         if (!sbegin) {
436                 return NULL;
437         }
438         sbegin += strspn(sbegin,ct);
439         if (*sbegin == '\0') {
440                 ___strtok = NULL;
441                 return( NULL );
442         }
443         send = strpbrk( sbegin, ct);
444         if (send && *send != '\0')
445                 *send++ = '\0';
446         ___strtok = send;
447         return (sbegin);
448 }
449 #endif
450
451 #ifndef __HAVE_ARCH_STRSEP
452 /**
453  * strsep - Split a string into tokens
454  * @s: The string to be searched
455  * @ct: The characters to search for
456  *
457  * strsep() updates @s to point after the token, ready for the next call.
458  *
459  * It returns empty tokens, too, behaving exactly like the libc function
460  * of that name. In fact, it was stolen from glibc2 and de-fancy-fied.
461  * Same semantics, slimmer shape. ;)
462  */
463 char * strsep(char **s, const char *ct)
464 {
465         char *sbegin = *s, *end;
466
467         if (sbegin == NULL)
468                 return NULL;
469
470         end = strpbrk(sbegin, ct);
471         if (end)
472                 *end++ = '\0';
473         *s = end;
474
475         return sbegin;
476 }
477 #endif
478
479 #ifndef __HAVE_ARCH_STRSWAB
480 /**
481  * strswab - swap adjacent even and odd bytes in %NUL-terminated string
482  * s: address of the string
483  *
484  * returns the address of the swapped string or NULL on error. If
485  * string length is odd, last byte is untouched.
486  */
487 char *strswab(const char *s)
488 {
489         char *p, *q;
490
491         if ((NULL == s) || ('\0' == *s)) {
492                 return (NULL);
493         }
494
495         for (p=(char *)s, q=p+1; (*p != '\0') && (*q != '\0'); p+=2, q+=2) {
496                 char  tmp;
497
498                 tmp = *p;
499                 *p  = *q;
500                 *q  = tmp;
501         }
502
503         return (char *) s;
504 }
505 #endif
506
507 #ifndef __HAVE_ARCH_MEMSET
508 /**
509  * memset - Fill a region of memory with the given value
510  * @s: Pointer to the start of the area.
511  * @c: The byte to fill the area with
512  * @count: The size of the area.
513  *
514  * Do not use memset() to access IO space, use memset_io() instead.
515  */
516 void * memset(void * s,int c,size_t count)
517 {
518         unsigned long *sl = (unsigned long *) s;
519         char *s8;
520
521 #if !CONFIG_IS_ENABLED(TINY_MEMSET)
522         unsigned long cl = 0;
523         int i;
524
525         /* do it one word at a time (32 bits or 64 bits) while possible */
526         if ( ((ulong)s & (sizeof(*sl) - 1)) == 0) {
527                 for (i = 0; i < sizeof(*sl); i++) {
528                         cl <<= 8;
529                         cl |= c & 0xff;
530                 }
531                 while (count >= sizeof(*sl)) {
532                         *sl++ = cl;
533                         count -= sizeof(*sl);
534                 }
535         }
536 #endif  /* fill 8 bits at a time */
537         s8 = (char *)sl;
538         while (count--)
539                 *s8++ = c;
540
541         return s;
542 }
543 #endif
544
545 #ifndef __HAVE_ARCH_MEMCPY
546 /**
547  * memcpy - Copy one area of memory to another
548  * @dest: Where to copy to
549  * @src: Where to copy from
550  * @count: The size of the area.
551  *
552  * You should not use this function to access IO space, use memcpy_toio()
553  * or memcpy_fromio() instead.
554  */
555 void * memcpy(void *dest, const void *src, size_t count)
556 {
557         unsigned long *dl = (unsigned long *)dest, *sl = (unsigned long *)src;
558         char *d8, *s8;
559
560         if (src == dest)
561                 return dest;
562
563         /* while all data is aligned (common case), copy a word at a time */
564         if ( (((ulong)dest | (ulong)src) & (sizeof(*dl) - 1)) == 0) {
565                 while (count >= sizeof(*dl)) {
566                         *dl++ = *sl++;
567                         count -= sizeof(*dl);
568                 }
569         }
570         /* copy the reset one byte at a time */
571         d8 = (char *)dl;
572         s8 = (char *)sl;
573         while (count--)
574                 *d8++ = *s8++;
575
576         return dest;
577 }
578 #endif
579
580 #ifndef __HAVE_ARCH_MEMMOVE
581 /**
582  * memmove - Copy one area of memory to another
583  * @dest: Where to copy to
584  * @src: Where to copy from
585  * @count: The size of the area.
586  *
587  * Unlike memcpy(), memmove() copes with overlapping areas.
588  */
589 void * memmove(void * dest,const void *src,size_t count)
590 {
591         char *tmp, *s;
592
593         if (dest <= src || (src + count) <= dest) {
594         /*
595          * Use the fast memcpy implementation (ARCH optimized or lib/string.c) when it is possible:
596          * - when dest is before src (assuming that memcpy is doing forward-copying)
597          * - when destination don't overlap the source buffer (src + count <= dest)
598          *
599          * WARNING: the first optimisation cause an issue, when __HAVE_ARCH_MEMCPY is defined,
600          *          __HAVE_ARCH_MEMMOVE is not defined and if the memcpy ARCH-specific
601          *          implementation is not doing a forward-copying.
602          *
603          * No issue today because memcpy is doing a forward-copying in lib/string.c and for ARM32
604          * architecture; no other arches use __HAVE_ARCH_MEMCPY without __HAVE_ARCH_MEMMOVE.
605          */
606                 memcpy(dest, src, count);
607         } else {
608                 tmp = (char *) dest + count;
609                 s = (char *) src + count;
610                 while (count--)
611                         *--tmp = *--s;
612                 }
613
614         return dest;
615 }
616 #endif
617
618 #ifndef __HAVE_ARCH_MEMCMP
619 /**
620  * memcmp - Compare two areas of memory
621  * @cs: One area of memory
622  * @ct: Another area of memory
623  * @count: The size of the area.
624  */
625 int memcmp(const void * cs,const void * ct,size_t count)
626 {
627         const unsigned char *su1, *su2;
628         int res = 0;
629
630         for( su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
631                 if ((res = *su1 - *su2) != 0)
632                         break;
633         return res;
634 }
635 #endif
636
637 #ifndef __HAVE_ARCH_MEMSCAN
638 /**
639  * memscan - Find a character in an area of memory.
640  * @addr: The memory area
641  * @c: The byte to search for
642  * @size: The size of the area.
643  *
644  * returns the address of the first occurrence of @c, or 1 byte past
645  * the area if @c is not found
646  */
647 void * memscan(void * addr, int c, size_t size)
648 {
649         unsigned char * p = (unsigned char *) addr;
650
651         while (size) {
652                 if (*p == c)
653                         return (void *) p;
654                 p++;
655                 size--;
656         }
657         return (void *) p;
658 }
659 #endif
660
661 #ifndef __HAVE_ARCH_STRSTR
662 /**
663  * strstr - Find the first substring in a %NUL terminated string
664  * @s1: The string to be searched
665  * @s2: The string to search for
666  */
667 char * strstr(const char * s1,const char * s2)
668 {
669         int l1, l2;
670
671         l2 = strlen(s2);
672         if (!l2)
673                 return (char *) s1;
674         l1 = strlen(s1);
675         while (l1 >= l2) {
676                 l1--;
677                 if (!memcmp(s1,s2,l2))
678                         return (char *) s1;
679                 s1++;
680         }
681         return NULL;
682 }
683 #endif
684
685 #ifndef __HAVE_ARCH_MEMCHR
686 /**
687  * memchr - Find a character in an area of memory.
688  * @s: The memory area
689  * @c: The byte to search for
690  * @n: The size of the area.
691  *
692  * returns the address of the first occurrence of @c, or %NULL
693  * if @c is not found
694  */
695 void *memchr(const void *s, int c, size_t n)
696 {
697         const unsigned char *p = s;
698         while (n-- != 0) {
699                 if ((unsigned char)c == *p++) {
700                         return (void *)(p-1);
701                 }
702         }
703         return NULL;
704 }
705
706 #endif
707 #ifndef __HAVE_ARCH_MEMCHR_INV
708 static void *check_bytes8(const u8 *start, u8 value, unsigned int bytes)
709 {
710         while (bytes) {
711                 if (*start != value)
712                         return (void *)start;
713                 start++;
714                 bytes--;
715         }
716         return NULL;
717 }
718 /**
719  * memchr_inv - Find an unmatching character in an area of memory.
720  * @start: The memory area
721  * @c: Find a character other than c
722  * @bytes: The size of the area.
723  *
724  * returns the address of the first character other than @c, or %NULL
725  * if the whole buffer contains just @c.
726  */
727 void *memchr_inv(const void *start, int c, size_t bytes)
728 {
729         u8 value = c;
730         u64 value64;
731         unsigned int words, prefix;
732
733         if (bytes <= 16)
734                 return check_bytes8(start, value, bytes);
735
736         value64 = value;
737         value64 |= value64 << 8;
738         value64 |= value64 << 16;
739         value64 |= value64 << 32;
740
741         prefix = (unsigned long)start % 8;
742         if (prefix) {
743                 u8 *r;
744
745                 prefix = 8 - prefix;
746                 r = check_bytes8(start, value, prefix);
747                 if (r)
748                         return r;
749                 start += prefix;
750                 bytes -= prefix;
751         }
752
753         words = bytes / 8;
754
755         while (words) {
756                 if (*(u64 *)start != value64)
757                         return check_bytes8(start, value, 8);
758                 start += 8;
759                 words--;
760         }
761
762         return check_bytes8(start, value, bytes % 8);
763 }
764 #endif