Whamcloud - gitweb
landing b_cmobd_merge on HEAD
[fs/lustre-release.git] / lustre / smfs / options.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/smfs/options.c
5  *  Lustre filesystem abstraction routines
6  *
7  *  Copyright (C) 2004 Cluster File Systems, Inc.
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #define DEBUG_SUBSYSTEM S_SM
26
27 #include <linux/module.h>
28 #include <linux/kmod.h>
29 #include <linux/init.h>
30 #include <linux/fs.h>
31 #include <linux/slab.h>
32 #include <linux/string.h>
33 #include <linux/errno.h>
34 #include <linux/obd_class.h>
35 #include <linux/obd_support.h>
36 #include <linux/lustre_lib.h>
37 #include <linux/lustre_idl.h>
38 #include <linux/lustre_smfs.h>
39 #include <linux/lustre_fsfilt.h>
40 #include "smfs_internal.h"
41
42 static struct list_head option_list;
43 static char *options = NULL;
44 static char *opt_left = NULL;
45
46 int init_option(char *data)
47 {
48         INIT_LIST_HEAD(&option_list);
49         OBD_ALLOC(options, strlen(data) + 1);
50         if (!options) {
51                 CERROR("Can not allocate memory \n");
52                 return -ENOMEM;
53         }
54         memcpy(options, data, strlen(data));
55         opt_left = options;
56         return 0;
57 }
58
59 /*cleanup options*/
60 void cleanup_option(void)
61 {
62         struct option *option;
63         while (!list_empty(&option_list)) {
64                 option = list_entry(option_list.next, struct option, list);
65                 list_del(&option->list);
66                 OBD_FREE(option->opt, strlen(option->opt) + 1);
67                 if (option->value)
68                         OBD_FREE(option->value, strlen(option->value) + 1);
69                 OBD_FREE(option, sizeof(struct option));
70         }
71         OBD_FREE(options, strlen(options) + 1);
72 }
73
74 int get_opt(struct option **option, char **pos)
75 {
76         char *name, *value, *left, *tmp;
77         struct option *tmp_opt;
78         int length = 0;
79
80         *pos = opt_left;
81
82         if (!*opt_left)
83                 return -ENODATA;
84         left = strchr(opt_left, ',');
85         if (left == opt_left)
86                 return -EINVAL;
87         if (!left)
88                 left = opt_left + strlen(opt_left);
89
90         OBD_ALLOC(tmp_opt, sizeof(struct option));
91         tmp_opt->opt = NULL;
92         tmp_opt->value = NULL;
93
94         tmp = opt_left;
95         while(tmp != left && *tmp != '=') {
96                 length++;
97                 tmp++;
98         }
99         OBD_ALLOC(name, length + 1);
100         tmp_opt->opt = name;
101         while (opt_left != tmp) *name++ = *opt_left++;
102
103         if (*tmp == '=') {
104                 /*this option has value*/
105                 opt_left ++; /*after '='*/
106                 if (left == opt_left) {
107                         OBD_FREE(tmp_opt->opt, strlen(tmp_opt->opt) + 1);
108                         OBD_FREE(tmp_opt, sizeof(struct option));
109                         opt_left = *pos;
110                         return -EINVAL;
111                 }
112                 length = left - opt_left;
113                 OBD_ALLOC(value, length + 1);
114                 if (!value) {
115                         OBD_FREE(tmp_opt->opt, strlen(tmp_opt->opt) + 1);
116                         OBD_FREE(tmp_opt, sizeof(struct option));
117                         return -ENOMEM;
118                 }
119                 tmp_opt->value = value;
120                 while (opt_left != left) *value++ = *opt_left++;
121         }
122         list_add(&tmp_opt->list, &option_list);
123         if (*opt_left == ',') opt_left ++; /*after ','*/
124         *option = tmp_opt;
125         return 0;
126 }