~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/lib/string.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/lib/string.c (Version linux-6.12-rc7) and /tools/lib/string.c (Version linux-5.4.284)


** Warning: Cannot open xref database.

  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  *  linux/tools/lib/string.c                      
  4  *                                                
  5  *  Copied from linux/lib/string.c, where it i    
  6  *                                                
  7  *  Copyright (C) 1991, 1992  Linus Torvalds      
  8  *                                                
  9  *  More specifically, the first copied functi    
 10  *  was introduced by:                            
 11  *                                                
 12  *  d0f1fed29e6e ("Add a strtobool function ma    
 13  *  Author: Jonathan Cameron <jic23@cam.ac.uk>    
 14  */                                               
 15                                                   
 16 #include <stdlib.h>                               
 17 #include <string.h>                               
 18 #include <errno.h>                                
 19 #include <linux/string.h>                         
 20 #include <linux/ctype.h>                          
 21 #include <linux/compiler.h>                       
 22                                                   
 23 /**                                               
 24  * memdup - duplicate region of memory            
 25  *                                                
 26  * @src: memory region to duplicate               
 27  * @len: memory region length                     
 28  */                                               
 29 void *memdup(const void *src, size_t len)         
 30 {                                                 
 31         void *p = malloc(len);                    
 32                                                   
 33         if (p)                                    
 34                 memcpy(p, src, len);              
 35                                                   
 36         return p;                                 
 37 }                                                 
 38                                                   
 39 /**                                               
 40  * strtobool - convert common user inputs into    
 41  * @s: input string                               
 42  * @res: result                                   
 43  *                                                
 44  * This routine returns 0 iff the first charac    
 45  * [oO][NnFf] for "on" and "off". Otherwise it    
 46  * pointed to by res is updated upon finding a    
 47  */                                               
 48 int strtobool(const char *s, bool *res)           
 49 {                                                 
 50         if (!s)                                   
 51                 return -EINVAL;                   
 52                                                   
 53         switch (s[0]) {                           
 54         case 'y':                                 
 55         case 'Y':                                 
 56         case '1':                                 
 57                 *res = true;                      
 58                 return 0;                         
 59         case 'n':                                 
 60         case 'N':                                 
 61         case '':                                  
 62                 *res = false;                     
 63                 return 0;                         
 64         case 'o':                                 
 65         case 'O':                                 
 66                 switch (s[1]) {                   
 67                 case 'n':                         
 68                 case 'N':                         
 69                         *res = true;              
 70                         return 0;                 
 71                 case 'f':                         
 72                 case 'F':                         
 73                         *res = false;             
 74                         return 0;                 
 75                 default:                          
 76                         break;                    
 77                 }                                 
 78         default:                                  
 79                 break;                            
 80         }                                         
 81                                                   
 82         return -EINVAL;                           
 83 }                                                 
 84                                                   
 85 /**                                               
 86  * strlcpy - Copy a C-string into a sized buff    
 87  * @dest: Where to copy the string to             
 88  * @src: Where to copy the string from            
 89  * @size: size of destination buffer              
 90  *                                                
 91  * Compatible with *BSD: the result is always     
 92  * NUL-terminated string that fits in the buff    
 93  * of course, the buffer size is zero). It doe    
 94  * out the result like strncpy() does.            
 95  *                                                
 96  * If libc has strlcpy() then that version wil    
 97  * implementation:                                
 98  */                                               
 99 #ifdef __clang__                                  
100 #pragma clang diagnostic push                     
101 #pragma clang diagnostic ignored "-Wignored-at    
102 #endif                                            
103 size_t __weak strlcpy(char *dest, const char *    
104 {                                                 
105         size_t ret = strlen(src);                 
106                                                   
107         if (size) {                               
108                 size_t len = (ret >= size) ? s    
109                 memcpy(dest, src, len);           
110                 dest[len] = '\0';                 
111         }                                         
112         return ret;                               
113 }                                                 
114 #ifdef __clang__                                  
115 #pragma clang diagnostic pop                      
116 #endif                                            
117                                                   
118 /**                                               
119  * skip_spaces - Removes leading whitespace fr    
120  * @str: The string to be stripped.               
121  *                                                
122  * Returns a pointer to the first non-whitespa    
123  */                                               
124 char *skip_spaces(const char *str)                
125 {                                                 
126         while (isspace(*str))                     
127                 ++str;                            
128         return (char *)str;                       
129 }                                                 
130                                                   
131 /**                                               
132  * strim - Removes leading and trailing whites    
133  * @s: The string to be stripped.                 
134  *                                                
135  * Note that the first trailing whitespace is     
136  * in the given string @s. Returns a pointer t    
137  * character in @s.                               
138  */                                               
139 char *strim(char *s)                              
140 {                                                 
141         size_t size;                              
142         char *end;                                
143                                                   
144         size = strlen(s);                         
145         if (!size)                                
146                 return s;                         
147                                                   
148         end = s + size - 1;                       
149         while (end >= s && isspace(*end))         
150                 end--;                            
151         *(end + 1) = '\0';                        
152                                                   
153         return skip_spaces(s);                    
154 }                                                 
155                                                   
156 /*                                                
157  * remove_spaces - Removes whitespaces from @s    
158  */                                               
159 void remove_spaces(char *s)                       
160 {                                                 
161         char *d = s;                              
162                                                   
163         do {                                      
164                 while (*d == ' ')                 
165                         ++d;                      
166         } while ((*s++ = *d++));                  
167 }                                                 
168                                                   
169 /**                                               
170  * strreplace - Replace all occurrences of cha    
171  * @s: The string to operate on.                  
172  * @old: The character being replaced.            
173  * @new: The character @old is replaced with.     
174  *                                                
175  * Returns pointer to the nul byte at the end     
176  */                                               
177 char *strreplace(char *s, char old, char new)     
178 {                                                 
179         for (; *s; ++s)                           
180                 if (*s == old)                    
181                         *s = new;                 
182         return s;                                 
183 }                                                 
184                                                   
185 static void *check_bytes8(const u8 *start, u8     
186 {                                                 
187         while (bytes) {                           
188                 if (*start != value)              
189                         return (void *)start;     
190                 start++;                          
191                 bytes--;                          
192         }                                         
193         return NULL;                              
194 }                                                 
195                                                   
196 /**                                               
197  * memchr_inv - Find an unmatching character i    
198  * @start: The memory area                        
199  * @c: Find a character other than c              
200  * @bytes: The size of the area.                  
201  *                                                
202  * returns the address of the first character     
203  * if the whole buffer contains just @c.          
204  */                                               
205 void *memchr_inv(const void *start, int c, siz    
206 {                                                 
207         u8 value = c;                             
208         u64 value64;                              
209         unsigned int words, prefix;               
210                                                   
211         if (bytes <= 16)                          
212                 return check_bytes8(start, val    
213                                                   
214         value64 = value;                          
215         value64 |= value64 << 8;                  
216         value64 |= value64 << 16;                 
217         value64 |= value64 << 32;                 
218                                                   
219         prefix = (unsigned long)start % 8;        
220         if (prefix) {                             
221                 u8 *r;                            
222                                                   
223                 prefix = 8 - prefix;              
224                 r = check_bytes8(start, value,    
225                 if (r)                            
226                         return r;                 
227                 start += prefix;                  
228                 bytes -= prefix;                  
229         }                                         
230                                                   
231         words = bytes / 8;                        
232                                                   
233         while (words) {                           
234                 if (*(u64 *)start != value64)     
235                         return check_bytes8(st    
236                 start += 8;                       
237                 words--;                          
238         }                                         
239                                                   
240         return check_bytes8(start, value, byte    
241 }                                                 
242                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php