Whamcloud - gitweb
Revert "LU-1778 libcfs: add a service that prints a nidlist"
[fs/lustre-release.git] / libcfs / libcfs / libcfs_string.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * String manipulation functions.
37  *
38  * libcfs/libcfs/libcfs_string.c
39  *
40  * Author: Nathan Rutman <nathan.rutman@sun.com>
41  */
42
43 #include <libcfs/libcfs.h>
44
45 char *cfs_strrstr(const char *haystack, const char *needle)
46 {
47         char *ptr;
48
49         if (unlikely(haystack == NULL || needle == NULL))
50                 return NULL;
51
52         if (strlen(needle) == 1)
53                 return strrchr(haystack, needle[0]);
54
55         ptr = strstr(haystack, needle);
56         if (ptr != NULL) {
57                 while (1) {
58                         char *tmp;
59
60                         tmp = strstr(&ptr[1], needle);
61                         if (tmp == NULL)
62                                 return ptr;
63
64                         ptr = tmp;
65                 }
66         }
67
68         return NULL;
69 }
70 EXPORT_SYMBOL(cfs_strrstr);
71
72 /* non-0 = don't match */
73 int cfs_strncasecmp(const char *s1, const char *s2, size_t n)
74 {
75         if (s1 == NULL || s2 == NULL)
76                 return 1;
77
78         if (n == 0)
79                 return 0;
80
81         while (n-- != 0 && tolower(*s1) == tolower(*s2)) {
82                 if (n == 0 || *s1 == '\0' || *s2 == '\0')
83                         break;
84                 s1++;
85                 s2++;
86         }
87
88         return tolower(*(unsigned char *)s1) - tolower(*(unsigned char *)s2);
89 }
90 EXPORT_SYMBOL(cfs_strncasecmp);
91
92 /* Convert a text string to a bitmask */
93 int cfs_str2mask(const char *str, const char *(*bit2str)(int bit),
94                  int *oldmask, int minmask, int allmask)
95 {
96         const char *debugstr;
97         char op = 0;
98         int newmask = minmask, i, len, found = 0;
99         ENTRY;
100
101         /* <str> must be a list of tokens separated by whitespace
102          * and optionally an operator ('+' or '-').  If an operator
103          * appears first in <str>, '*oldmask' is used as the starting point
104          * (relative), otherwise minmask is used (absolute).  An operator
105          * applies to all following tokens up to the next operator. */
106         while (*str != 0) {
107                 while (isspace(*str))
108                         str++;
109                 if (*str == 0)
110                         break;
111                 if (*str == '+' || *str == '-') {
112                         op = *str++;
113                         if (!found)
114                                 /* only if first token is relative */
115                                 newmask = *oldmask;
116                         while (isspace(*str))
117                                 str++;
118                         if (*str == 0)          /* trailing op */
119                                 return -EINVAL;
120                 }
121
122                 /* find token length */
123                 for (len = 0; str[len] != 0 && !isspace(str[len]) &&
124                       str[len] != '+' && str[len] != '-'; len++);
125
126                 /* match token */
127                 found = 0;
128                 for (i = 0; i < 32; i++) {
129                         debugstr = bit2str(i);
130                         if (debugstr != NULL &&
131                             strlen(debugstr) == len &&
132                             cfs_strncasecmp(str, debugstr, len) == 0) {
133                                 if (op == '-')
134                                         newmask &= ~(1 << i);
135                                 else
136                                         newmask |= (1 << i);
137                                 found = 1;
138                                 break;
139                         }
140                 }
141                 if (!found && len == 3 &&
142                     (cfs_strncasecmp(str, "ALL", len) == 0)) {
143                         if (op == '-')
144                                 newmask = minmask;
145                         else
146                                 newmask = allmask;
147                         found = 1;
148                 }
149                 if (!found) {
150                         CWARN("unknown mask '%.*s'.\n"
151                               "mask usage: [+|-]<all|type> ...\n", len, str);
152                         return -EINVAL;
153                 }
154                 str += len;
155         }
156
157         *oldmask = newmask;
158         return 0;
159 }
160 EXPORT_SYMBOL(cfs_str2mask);
161
162 /* Duplicate a string in a platform-independent way */
163 char *cfs_strdup(const char *str, u_int32_t flags)
164 {
165         size_t lenz; /* length of str + zero byte */
166         char *dup_str;
167
168         lenz = strlen(str) + 1;
169
170         dup_str = kmalloc(lenz, flags);
171         if (dup_str == NULL)
172                 return NULL;
173
174         memcpy(dup_str, str, lenz);
175
176         return dup_str;
177 }
178 EXPORT_SYMBOL(cfs_strdup);
179
180 /**
181  * cfs_{v}snprintf() return the actual size that is printed rather than
182  * the size that would be printed in standard functions.
183  */
184 /* safe vsnprintf */
185 int cfs_vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
186 {
187         int i;
188
189         LASSERT(size > 0);
190         i = vsnprintf(buf, size, fmt, args);
191
192         return  (i >= size ? size - 1 : i);
193 }
194 EXPORT_SYMBOL(cfs_vsnprintf);
195
196 /* safe snprintf */
197 int cfs_snprintf(char *buf, size_t size, const char *fmt, ...)
198 {
199         va_list args;
200         int i;
201
202         va_start(args, fmt);
203         i = cfs_vsnprintf(buf, size, fmt, args);
204         va_end(args);
205
206         return  i;
207 }
208 EXPORT_SYMBOL(cfs_snprintf);
209
210 /* get the first string out of @str */
211 char *cfs_firststr(char *str, size_t size)
212 {
213         size_t i = 0;
214         char  *end;
215
216         /* trim leading spaces */
217         while (i < size && *str && isspace(*str)) {
218                 ++i;
219                 ++str;
220         }
221
222         /* string with all spaces */
223         if (*str == '\0')
224                 goto out;
225
226         end = str;
227         while (i < size && *end != '\0' && !isspace(*end)) {
228                 ++i;
229                 ++end;
230         }
231
232         *end= '\0';
233 out:
234         return str;
235 }
236 EXPORT_SYMBOL(cfs_firststr);
237
238 char *
239 cfs_trimwhite(char *str)
240 {
241         char *end;
242
243         while (cfs_iswhite(*str))
244                 str++;
245
246         end = str + strlen(str);
247         while (end > str) {
248                 if (!cfs_iswhite(end[-1]))
249                         break;
250                 end--;
251         }
252
253         *end = 0;
254         return str;
255 }
256 EXPORT_SYMBOL(cfs_trimwhite);
257
258 /**
259  * Extracts tokens from strings.
260  *
261  * Looks for \a delim in string \a next, sets \a res to point to
262  * substring before the delimiter, sets \a next right after the found
263  * delimiter.
264  *
265  * \retval 1 if \a res points to a string of non-whitespace characters
266  * \retval 0 otherwise
267  */
268 int
269 cfs_gettok(struct cfs_lstr *next, char delim, struct cfs_lstr *res)
270 {
271         char *end;
272
273         if (next->ls_str == NULL)
274                 return 0;
275
276         /* skip leading white spaces */
277         while (next->ls_len) {
278                 if (!cfs_iswhite(*next->ls_str))
279                         break;
280                 next->ls_str++;
281                 next->ls_len--;
282         }
283
284         if (next->ls_len == 0) /* whitespaces only */
285                 return 0;
286
287         if (*next->ls_str == delim) {
288                 /* first non-writespace is the delimiter */
289                 return 0;
290         }
291
292         res->ls_str = next->ls_str;
293         end = memchr(next->ls_str, delim, next->ls_len);
294         if (end == NULL) {
295                 /* there is no the delimeter in the string */
296                 end = next->ls_str + next->ls_len;
297                 next->ls_str = NULL;
298         } else {
299                 next->ls_str = end + 1;
300                 next->ls_len -= (end - res->ls_str + 1);
301         }
302
303         /* skip ending whitespaces */
304         while (--end != res->ls_str) {
305                 if (!cfs_iswhite(*end))
306                         break;
307         }
308
309         res->ls_len = end - res->ls_str + 1;
310         return 1;
311 }
312 EXPORT_SYMBOL(cfs_gettok);
313
314 /**
315  * Converts string to integer.
316  *
317  * Accepts decimal and hexadecimal number recordings.
318  *
319  * \retval 1 if first \a nob chars of \a str convert to decimal or
320  * hexadecimal integer in the range [\a min, \a max]
321  * \retval 0 otherwise
322  */
323 int
324 cfs_str2num_check(char *str, int nob, unsigned *num,
325                   unsigned min, unsigned max)
326 {
327         char    *endp;
328
329         str = cfs_trimwhite(str);
330         *num = strtoul(str, &endp, 0);
331         if (endp == str)
332                 return 0;
333
334         for (; endp < str + nob; endp++) {
335                 if (!cfs_iswhite(*endp))
336                         return 0;
337         }
338
339         return (*num >= min && *num <= max);
340 }
341 EXPORT_SYMBOL(cfs_str2num_check);
342
343 /**
344  * Parses \<range_expr\> token of the syntax. If \a bracketed is false,
345  * \a src should only have a single token which can be \<number\> or  \*
346  *
347  * \retval pointer to allocated range_expr and initialized
348  * range_expr::re_lo, range_expr::re_hi and range_expr:re_stride if \a
349  `* src parses to
350  * \<number\> |
351  * \<number\> '-' \<number\> |
352  * \<number\> '-' \<number\> '/' \<number\>
353  * \retval 0 will be returned if it can be parsed, otherwise -EINVAL or
354  * -ENOMEM will be returned.
355  */
356 int
357 cfs_range_expr_parse(struct cfs_lstr *src, unsigned min, unsigned max,
358                      int bracketed, struct cfs_range_expr **expr)
359 {
360         struct cfs_range_expr   *re;
361         struct cfs_lstr         tok;
362
363         LIBCFS_ALLOC(re, sizeof(*re));
364         if (re == NULL)
365                 return -ENOMEM;
366
367         if (src->ls_len == 1 && src->ls_str[0] == '*') {
368                 re->re_lo = min;
369                 re->re_hi = max;
370                 re->re_stride = 1;
371                 goto out;
372         }
373
374         if (cfs_str2num_check(src->ls_str, src->ls_len,
375                               &re->re_lo, min, max)) {
376                 /* <number> is parsed */
377                 re->re_hi = re->re_lo;
378                 re->re_stride = 1;
379                 goto out;
380         }
381
382         if (!bracketed || !cfs_gettok(src, '-', &tok))
383                 goto failed;
384
385         if (!cfs_str2num_check(tok.ls_str, tok.ls_len,
386                                &re->re_lo, min, max))
387                 goto failed;
388
389         /* <number> - */
390         if (cfs_str2num_check(src->ls_str, src->ls_len,
391                               &re->re_hi, min, max)) {
392                 /* <number> - <number> is parsed */
393                 re->re_stride = 1;
394                 goto out;
395         }
396
397         /* go to check <number> '-' <number> '/' <number> */
398         if (cfs_gettok(src, '/', &tok)) {
399                 if (!cfs_str2num_check(tok.ls_str, tok.ls_len,
400                                        &re->re_hi, min, max))
401                         goto failed;
402
403                 /* <number> - <number> / ... */
404                 if (cfs_str2num_check(src->ls_str, src->ls_len,
405                                       &re->re_stride, min, max)) {
406                         /* <number> - <number> / <number> is parsed */
407                         goto out;
408                 }
409         }
410
411  out:
412         *expr = re;
413         return 0;
414
415  failed:
416         LIBCFS_FREE(re, sizeof(*re));
417         return -EINVAL;
418 }
419 EXPORT_SYMBOL(cfs_range_expr_parse);
420
421 /**
422  * Matches value (\a value) against ranges expression list \a expr_list.
423  *
424  * \retval 1 if \a value matches
425  * \retval 0 otherwise
426  */
427 int
428 cfs_expr_list_match(__u32 value, struct cfs_expr_list *expr_list)
429 {
430         struct cfs_range_expr   *expr;
431
432         list_for_each_entry(expr, &expr_list->el_exprs, re_link) {
433                 if (value >= expr->re_lo && value <= expr->re_hi &&
434                     ((value - expr->re_lo) % expr->re_stride) == 0)
435                         return 1;
436         }
437
438         return 0;
439 }
440 EXPORT_SYMBOL(cfs_expr_list_match);
441
442 /**
443  * Convert express list (\a expr_list) to an array of all matched values
444  *
445  * \retval N N is total number of all matched values
446  * \retval 0 if expression list is empty
447  * \retval < 0 for failure
448  */
449 int
450 cfs_expr_list_values(struct cfs_expr_list *expr_list, int max, __u32 **valpp)
451 {
452         struct cfs_range_expr   *expr;
453         __u32                   *val;
454         int                     count = 0;
455         int                     i;
456
457         list_for_each_entry(expr, &expr_list->el_exprs, re_link) {
458                 for (i = expr->re_lo; i <= expr->re_hi; i++) {
459                         if (((i - expr->re_lo) % expr->re_stride) == 0)
460                                 count++;
461                 }
462         }
463
464         if (count == 0) /* empty expression list */
465                 return 0;
466
467         if (count > max) {
468                 CERROR("Number of values %d exceeds max allowed %d\n",
469                        max, count);
470                 return -EINVAL;
471         }
472
473         LIBCFS_ALLOC(val, sizeof(val[0]) * count);
474         if (val == NULL)
475                 return -ENOMEM;
476
477         count = 0;
478         list_for_each_entry(expr, &expr_list->el_exprs, re_link) {
479                 for (i = expr->re_lo; i <= expr->re_hi; i++) {
480                         if (((i - expr->re_lo) % expr->re_stride) == 0)
481                                 val[count++] = i;
482                 }
483         }
484
485         *valpp = val;
486         return count;
487 }
488 EXPORT_SYMBOL(cfs_expr_list_values);
489
490 /**
491  * Frees cfs_range_expr structures of \a expr_list.
492  *
493  * \retval none
494  */
495 void
496 cfs_expr_list_free(struct cfs_expr_list *expr_list)
497 {
498         while (!list_empty(&expr_list->el_exprs)) {
499                 struct cfs_range_expr *expr;
500
501                 expr = list_entry(expr_list->el_exprs.next,
502                                       struct cfs_range_expr, re_link),
503                 list_del(&expr->re_link);
504                 LIBCFS_FREE(expr, sizeof(*expr));
505         }
506
507         LIBCFS_FREE(expr_list, sizeof(*expr_list));
508 }
509 EXPORT_SYMBOL(cfs_expr_list_free);
510
511 void
512 cfs_expr_list_print(struct cfs_expr_list *expr_list)
513 {
514         struct cfs_range_expr *expr;
515
516         list_for_each_entry(expr, &expr_list->el_exprs, re_link) {
517                 CDEBUG(D_WARNING, "%d-%d/%d\n",
518                        expr->re_lo, expr->re_hi, expr->re_stride);
519         }
520 }
521 EXPORT_SYMBOL(cfs_expr_list_print);
522
523 /**
524  * Parses \<cfs_expr_list\> token of the syntax.
525  *
526  * \retval 1 if \a str parses to \<number\> | \<expr_list\>
527  * \retval 0 otherwise
528  */
529 int
530 cfs_expr_list_parse(char *str, int len, unsigned min, unsigned max,
531                     struct cfs_expr_list **elpp)
532 {
533         struct cfs_expr_list    *expr_list;
534         struct cfs_range_expr   *expr;
535         struct cfs_lstr         src;
536         int                     rc;
537
538         LIBCFS_ALLOC(expr_list, sizeof(*expr_list));
539         if (expr_list == NULL)
540                 return -ENOMEM;
541
542         src.ls_str = str;
543         src.ls_len = len;
544
545         INIT_LIST_HEAD(&expr_list->el_exprs);
546
547         if (src.ls_str[0] == '[' &&
548             src.ls_str[src.ls_len - 1] == ']') {
549                 src.ls_str++;
550                 src.ls_len -= 2;
551
552                 rc = -EINVAL;
553                 while (src.ls_str != NULL) {
554                         struct cfs_lstr tok;
555
556                         if (!cfs_gettok(&src, ',', &tok)) {
557                                 rc = -EINVAL;
558                                 break;
559                         }
560
561                         rc = cfs_range_expr_parse(&tok, min, max, 1, &expr);
562                         if (rc != 0)
563                                 break;
564
565                         list_add_tail(&expr->re_link,
566                                           &expr_list->el_exprs);
567                 }
568         } else {
569                 rc = cfs_range_expr_parse(&src, min, max, 0, &expr);
570                 if (rc == 0) {
571                         list_add_tail(&expr->re_link,
572                                           &expr_list->el_exprs);
573                 }
574         }
575
576         if (rc != 0)
577                 cfs_expr_list_free(expr_list);
578         else
579                 *elpp = expr_list;
580
581         return rc;
582 }
583 EXPORT_SYMBOL(cfs_expr_list_parse);
584
585 /**
586  * Frees cfs_expr_list structures of \a list.
587  *
588  * For each struct cfs_expr_list structure found on \a list it frees
589  * range_expr list attached to it and frees the cfs_expr_list itself.
590  *
591  * \retval none
592  */
593 void
594 cfs_expr_list_free_list(struct list_head *list)
595 {
596         struct cfs_expr_list *el;
597
598         while (!list_empty(list)) {
599                 el = list_entry(list->next,
600                                     struct cfs_expr_list, el_link);
601                 list_del(&el->el_link);
602                 cfs_expr_list_free(el);
603         }
604 }
605 EXPORT_SYMBOL(cfs_expr_list_free_list);
606
607 int
608 cfs_ip_addr_parse(char *str, int len, struct list_head *list)
609 {
610         struct cfs_expr_list    *el;
611         struct cfs_lstr         src;
612         int                     rc;
613         int                     i;
614
615         src.ls_str = str;
616         src.ls_len = len;
617         i = 0;
618
619         while (src.ls_str != NULL) {
620                 struct cfs_lstr res;
621
622                 if (!cfs_gettok(&src, '.', &res)) {
623                         rc = -EINVAL;
624                         goto out;
625                 }
626
627                 rc = cfs_expr_list_parse(res.ls_str, res.ls_len, 0, 255, &el);
628                 if (rc != 0)
629                         goto out;
630
631                 list_add_tail(&el->el_link, list);
632                 i++;
633         }
634
635         if (i == 4)
636                 return 0;
637
638         rc = -EINVAL;
639  out:
640         cfs_expr_list_free_list(list);
641
642         return rc;
643 }
644 EXPORT_SYMBOL(cfs_ip_addr_parse);
645
646 /**
647  * Matches address (\a addr) against address set encoded in \a list.
648  *
649  * \retval 1 if \a addr matches
650  * \retval 0 otherwise
651  */
652 int
653 cfs_ip_addr_match(__u32 addr, struct list_head *list)
654 {
655         struct cfs_expr_list *el;
656         int i = 0;
657
658         list_for_each_entry_reverse(el, list, el_link) {
659                 if (!cfs_expr_list_match(addr & 0xff, el))
660                         return 0;
661                 addr >>= 8;
662                 i++;
663         }
664
665         return i == 4;
666 }
667 EXPORT_SYMBOL(cfs_ip_addr_match);
668
669 void
670 cfs_ip_addr_free(struct list_head *list)
671 {
672         cfs_expr_list_free_list(list);
673 }
674 EXPORT_SYMBOL(cfs_ip_addr_free);