Whamcloud - gitweb
LU-7734 lnet: minor fixes
[fs/lustre-release.git] / libcfs / include / libcfs / util / string.h
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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * libcfs/include/libcfs/libcfs_string.h
33  *
34  * Generic string manipulation functions.
35  *
36  * Author: Nathan Rutman <nathan.rutman@sun.com>
37  */
38
39 #ifndef __LIBCFS_UTIL_STRING_H__
40 #define __LIBCFS_UTIL_STRING_H__
41
42 #include <stddef.h>
43
44 #include <linux/types.h>
45 #include <libcfs/util/list.h>
46
47 #ifndef HAVE_STRLCPY /* not in glibc for RHEL 5.x, remove when obsolete */
48 size_t strlcpy(char *tgt, const char *src, size_t tgt_len);
49 #endif
50
51 #ifndef HAVE_STRLCAT /* not in glibc for RHEL 5.x, remove when obsolete */
52 size_t strlcat(char *tgt, const char *src, size_t tgt_len);
53 #endif
54
55 /**
56  * Structure to represent NULL-less strings.
57  */
58 struct cfs_lstr {
59         char            *ls_str;
60         int             ls_len;
61 };
62
63 /*
64  * Structure to represent \<range_expr\> token of the syntax.
65  */
66 struct cfs_range_expr {
67         /*
68          * Link to cfs_expr_list::el_exprs.
69          */
70         struct list_head        re_link;
71         __u32                   re_lo;
72         __u32                   re_hi;
73         __u32                   re_stride;
74 };
75
76 struct cfs_expr_list {
77         struct list_head        el_link;
78         struct list_head        el_exprs;
79 };
80
81 int cfs_gettok(struct cfs_lstr *next, char delim, struct cfs_lstr *res);
82 int cfs_str2num_check(char *str, int nob, unsigned *num,
83                       unsigned min, unsigned max);
84 int cfs_expr_list_match(__u32 value, struct cfs_expr_list *expr_list);
85 int cfs_expr_list_print(char *buffer, int count,
86                         struct cfs_expr_list *expr_list);
87 int cfs_expr_list_parse(char *str, int len, unsigned min, unsigned max,
88                         struct cfs_expr_list **elpp);
89 void cfs_expr_list_free(struct cfs_expr_list *expr_list);
90 void cfs_expr_list_free_list(struct list_head *list);
91 int cfs_ip_addr_parse(char *str, int len, struct list_head *list);
92 int cfs_ip_addr_match(__u32 addr, struct list_head *list);
93
94 #endif