r26252: Specify loadparm_context explicitly when creating sessions.
[ira/wip.git] / source / param / generic.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  Copyright (C) Jelmer Vernooij                       2005
4  *  
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 3 of the License, or
8  *  (at your option) any later version.
9  *  
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *  
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "includes.h"
20 #include "lib/util/dlinklist.h"
21 #include "param/param.h"
22 #include "system/filesys.h"
23
24 struct param_section *param_get_section(struct param_context *ctx, const char *name)
25 {
26         struct param_section *sect;
27
28         if (name == NULL) 
29                 name = GLOBAL_NAME;
30
31         for (sect = ctx->sections; sect; sect = sect->next) {
32                 if (!strcasecmp_m(sect->name, name)) 
33                         return sect;
34         }
35
36         return NULL;
37 }
38
39 struct param_opt *param_section_get(struct param_section *section, 
40                                     const char *name)
41 {
42         struct param_opt *p;
43
44         for (p = section->parameters; p; p = p->next) {
45                 if (strcasecmp_m(p->key, name) == 0) 
46                         return p;
47         }
48
49         return NULL;
50 }
51
52 struct param_opt *param_get (struct param_context *ctx, const char *section_name, const char *name)
53 {
54         struct param_section *section = param_get_section(ctx, section_name);
55         if (section == NULL)
56                 return NULL;
57
58         return param_section_get(section, name);
59 }
60
61 /* Look up parameter. If it is not found, add it */
62 static struct param_opt *param_get_add(struct param_context *ctx, const char *section_name, const char *name)
63 {
64         struct param_section *section;
65         struct param_opt *p;
66
67         SMB_ASSERT(section_name != NULL);
68         SMB_ASSERT(name != NULL);
69
70         section = param_get_section(ctx, section_name);
71
72         if (section == NULL) {
73                 section = talloc_zero(ctx, struct param_section);
74                 if (section == NULL)
75                         return NULL;
76
77                 section->name = talloc_strdup(section, section_name);
78                 DLIST_ADD_END(ctx->sections, section, struct param_section *);
79         }
80
81         p = param_section_get(section, name);
82         if (p == NULL) {
83                 p = talloc_zero(section, struct param_opt);
84                 if (p == NULL)
85                         return NULL;
86
87                 p->key = talloc_strdup(p, name);
88                 DLIST_ADD_END(section->parameters, p, struct param_opt *);
89         }
90         
91         return p;
92 }
93
94 const char *param_get_string(struct param_context *ctx, const char *section, const char *param)
95 {
96         struct param_opt *p = param_get(ctx, section, param);
97
98         if (p == NULL)
99                 return NULL;
100
101         return p->value;
102 }
103
104 int param_set_string(struct param_context *ctx, const char *section, const char *param, const char *value)
105 {
106         struct param_opt *p = param_get_add(ctx, section, param);
107
108         if (p == NULL)
109                 return -1;
110
111         p->value = talloc_strdup(p, value);
112
113         return 0;
114 }
115
116 const char **param_get_string_list(struct param_context *ctx, const char *section, const char *param,
117                                  const char *separator)
118 {
119         struct param_opt *p = param_get(ctx, section, param);
120         
121         if (p == NULL)
122                 return NULL;
123
124         if (separator == NULL)
125                 separator = LIST_SEP;
126         
127         return str_list_make(ctx, p->value, separator);
128 }
129
130 int param_set_string_list(struct param_context *ctx, const char *section, const char *param, const char **list)
131 {
132         struct param_opt *p = param_get_add(ctx, section, param);       
133
134         p->value = str_list_join(p, list, ' ');
135
136         return 0;
137 }
138
139 int param_get_int(struct param_context *ctx, const char *section, const char *param, int default_v)
140 {
141         const char *value = param_get_string(ctx, section, param);
142         
143         if (value)
144                 return strtol(value, NULL, 0); 
145
146         return default_v;
147 }
148
149 void param_set_int(struct param_context *ctx, const char *section, const char *param, int value)
150 {
151         struct param_opt *p = param_get_add(ctx, section, param);
152
153         if (!p) 
154                 return;
155
156         p->value = talloc_asprintf(p, "%d", value);
157 }
158
159 unsigned long param_get_ulong(struct param_context *ctx, const char *section, const char *param, unsigned long default_v)
160 {
161         const char *value = param_get_string(ctx, section, param);
162         
163         if (value)
164                 return strtoul(value, NULL, 0);
165
166         return default_v;
167 }
168
169 void param_set_ulong(struct param_context *ctx, const char *section, const char *name, unsigned long value)
170 {
171         struct param_opt *p = param_get_add(ctx, section, name);
172
173         if (!p)
174                 return;
175
176         p->value = talloc_asprintf(p, "%lu", value);
177 }
178
179 static bool param_sfunc (const char *name, void *_ctx)
180 {
181         struct param_context *ctx = (struct param_context *)_ctx;
182         struct param_section *section = param_get_section(ctx, name);
183
184         if (section == NULL) {
185                 section = talloc_zero(ctx, struct param_section);
186                 if (section == NULL)
187                         return false;
188
189                 section->name = talloc_strdup(section, name);
190
191                 DLIST_ADD_END(ctx->sections, section, struct param_section *);
192         }
193
194         /* Make sure this section is on top of the list for param_pfunc */
195         DLIST_PROMOTE(ctx->sections, section);
196
197         return true;
198 }
199
200 static bool param_pfunc (const char *name, const char *value, void *_ctx)
201 {
202         struct param_context *ctx = (struct param_context *)_ctx;
203         struct param_opt *p = param_section_get(ctx->sections, name);
204
205         if (!p) {
206                 p = talloc_zero(ctx->sections, struct param_opt);
207                 if (p == NULL)
208                         return false;
209
210                 p->key = talloc_strdup(p, name);
211                 p->value = talloc_strdup(p, value);
212                 DLIST_ADD(ctx->sections->parameters, p);
213         } else { /* Replace current value */
214                 talloc_free(p->value);
215                 p->value = talloc_strdup(p, value);
216         }
217
218         return true;
219 }
220
221 struct param_context *param_init(TALLOC_CTX *mem_ctx)
222 {
223         return talloc_zero(mem_ctx, struct param_context);
224 }
225
226
227 int param_read(struct param_context *ctx, const char *fn)
228 {
229         ctx->sections = talloc_zero(ctx, struct param_section);
230         if (ctx->sections == NULL)
231                 return -1;
232
233         ctx->sections->name = talloc_strdup(ctx->sections, "global");
234         if (!pm_process( fn, param_sfunc, param_pfunc, ctx)) {
235                 return -1;
236         }
237
238         return 0;
239 }
240
241 int param_use(struct loadparm_context *lp_ctx, struct param_context *ctx)
242 {
243         struct param_section *section;
244
245         for (section = ctx->sections; section; section = section->next) {
246                 struct param_opt *param;
247                 bool isglobal = strcmp(section->name, "global") == 0;
248                 for (param = section->parameters; param; param = param->next) {
249                         if (isglobal)
250                                 lp_do_global_parameter(lp_ctx, param->key,
251                                                        param->value);
252                         else {
253                                 struct loadparm_service *service = 
254                                                         lp_service(lp_ctx, section->name);
255                                 if (service == NULL)
256                                         service = lp_add_service(lp_ctx, &sDefault, section->name);
257                                 lp_do_service_parameter(lp_ctx, 
258                                                         service,
259                                                         param->key,
260                                                         param->value);
261                         }
262                 }
263         }
264         return 0;
265 }
266
267 int param_write(struct param_context *ctx, const char *fn)
268 {
269         int file;
270         struct param_section *section;
271
272         if (fn == NULL || ctx == NULL)
273                 return -1;
274
275         file = open(fn, O_WRONLY|O_CREAT, 0755);
276
277         if (file == -1)
278                 return -1;
279         
280         for (section = ctx->sections; section; section = section->next) {
281                 struct param_opt *param;
282                 
283                 fdprintf(file, "[%s]\n", section->name);
284                 for (param = section->parameters; param; param = param->next) {
285                         fdprintf(file, "\t%s = %s\n", param->key, param->value);
286                 }
287                 fdprintf(file, "\n");
288         }
289
290         close(file);
291
292         return 0;
293 }