s3/docs: Fix typos.
[Samba/gebeck_regimport.git] / lib / smbconf / smbconf.c
blob80fe9aac3722c22772b3bf8e93d22430f2d8f008
1 /*
2 * Unix SMB/CIFS implementation.
3 * libsmbconf - Samba configuration library
4 * Copyright (C) Michael Adam 2007-2008
5 * Copyright (C) Guenther Deschner 2007
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "smbconf_private.h"
24 /**********************************************************************
26 * internal helper functions
28 **********************************************************************/
30 static WERROR smbconf_global_check(struct smbconf_ctx *ctx)
32 if (!smbconf_share_exists(ctx, GLOBAL_NAME)) {
33 return smbconf_create_share(ctx, GLOBAL_NAME);
35 return WERR_OK;
39 /**********************************************************************
41 * The actual libsmbconf API functions that are exported.
43 **********************************************************************/
45 /**
46 * Tell whether the backend requires messaging to be set up
47 * for the backend to work correctly.
49 bool smbconf_backend_requires_messaging(struct smbconf_ctx *ctx)
51 return ctx->ops->requires_messaging(ctx);
54 /**
55 * Tell whether the source is writeable.
57 bool smbconf_is_writeable(struct smbconf_ctx *ctx)
59 return ctx->ops->is_writeable(ctx);
62 /**
63 * Close the configuration.
65 void smbconf_shutdown(struct smbconf_ctx *ctx)
67 talloc_free(ctx);
70 /**
71 * Detect changes in the configuration.
72 * The given csn struct is filled with the current csn.
73 * smbconf_changed() can also be used for initial retrieval
74 * of the csn.
76 bool smbconf_changed(struct smbconf_ctx *ctx, struct smbconf_csn *csn,
77 const char *service, const char *param)
79 struct smbconf_csn old_csn;
81 if (csn == NULL) {
82 return false;
85 old_csn = *csn;
87 ctx->ops->get_csn(ctx, csn, service, param);
88 return (csn->csn != old_csn.csn);
91 /**
92 * Drop the whole configuration (restarting empty).
94 WERROR smbconf_drop(struct smbconf_ctx *ctx)
96 return ctx->ops->drop(ctx);
99 /**
100 * Get the whole configuration as lists of strings with counts:
102 * num_shares : number of shares
103 * share_names : list of length num_shares of share names
104 * num_params : list of length num_shares of parameter counts for each share
105 * param_names : list of lists of parameter names for each share
106 * param_values : list of lists of parameter values for each share
108 WERROR smbconf_get_config(struct smbconf_ctx *ctx,
109 TALLOC_CTX *mem_ctx,
110 uint32_t *num_shares,
111 struct smbconf_service ***services)
113 WERROR werr = WERR_OK;
114 TALLOC_CTX *tmp_ctx = NULL;
115 uint32_t tmp_num_shares;
116 char **tmp_share_names;
117 struct smbconf_service **tmp_services;
118 uint32_t count;
120 if ((num_shares == NULL) || (services == NULL)) {
121 werr = WERR_INVALID_PARAM;
122 goto done;
125 tmp_ctx = talloc_stackframe();
127 werr = smbconf_get_share_names(ctx, tmp_ctx, &tmp_num_shares,
128 &tmp_share_names);
129 if (!W_ERROR_IS_OK(werr)) {
130 goto done;
133 tmp_services = talloc_array(tmp_ctx, struct smbconf_service *,
134 tmp_num_shares);
136 if (tmp_services == NULL) {
137 werr = WERR_NOMEM;
138 goto done;
141 for (count = 0; count < tmp_num_shares; count++) {
142 werr = smbconf_get_share(ctx, tmp_services,
143 tmp_share_names[count],
144 &tmp_services[count]);
145 if (!W_ERROR_IS_OK(werr)) {
146 goto done;
150 werr = WERR_OK;
152 *num_shares = tmp_num_shares;
153 if (tmp_num_shares > 0) {
154 *services = talloc_move(mem_ctx, &tmp_services);
155 } else {
156 *services = NULL;
159 done:
160 talloc_free(tmp_ctx);
161 return werr;
165 * get the list of share names defined in the configuration.
167 WERROR smbconf_get_share_names(struct smbconf_ctx *ctx,
168 TALLOC_CTX *mem_ctx,
169 uint32_t *num_shares,
170 char ***share_names)
172 return ctx->ops->get_share_names(ctx, mem_ctx, num_shares,
173 share_names);
177 * check if a share/service of a given name exists
179 bool smbconf_share_exists(struct smbconf_ctx *ctx,
180 const char *servicename)
182 return ctx->ops->share_exists(ctx, servicename);
186 * Add a service if it does not already exist.
188 WERROR smbconf_create_share(struct smbconf_ctx *ctx,
189 const char *servicename)
191 if ((servicename != NULL) && smbconf_share_exists(ctx, servicename)) {
192 return WERR_FILE_EXISTS;
195 return ctx->ops->create_share(ctx, servicename);
199 * get a definition of a share (service) from configuration.
201 WERROR smbconf_get_share(struct smbconf_ctx *ctx,
202 TALLOC_CTX *mem_ctx,
203 const char *servicename,
204 struct smbconf_service **service)
206 return ctx->ops->get_share(ctx, mem_ctx, servicename, service);
210 * delete a service from configuration
212 WERROR smbconf_delete_share(struct smbconf_ctx *ctx, const char *servicename)
214 if (!smbconf_share_exists(ctx, servicename)) {
215 return WERR_NO_SUCH_SERVICE;
218 return ctx->ops->delete_share(ctx, servicename);
222 * set a configuration parameter to the value provided.
224 WERROR smbconf_set_parameter(struct smbconf_ctx *ctx,
225 const char *service,
226 const char *param,
227 const char *valstr)
229 return ctx->ops->set_parameter(ctx, service, param, valstr);
233 * Set a global parameter
234 * (i.e. a parameter in the [global] service).
236 * This also creates [global] when it does not exist.
238 WERROR smbconf_set_global_parameter(struct smbconf_ctx *ctx,
239 const char *param, const char *val)
241 WERROR werr;
243 werr = smbconf_global_check(ctx);
244 if (W_ERROR_IS_OK(werr)) {
245 werr = smbconf_set_parameter(ctx, GLOBAL_NAME, param, val);
248 return werr;
252 * get the value of a configuration parameter as a string
254 WERROR smbconf_get_parameter(struct smbconf_ctx *ctx,
255 TALLOC_CTX *mem_ctx,
256 const char *service,
257 const char *param,
258 char **valstr)
260 if (valstr == NULL) {
261 return WERR_INVALID_PARAM;
264 return ctx->ops->get_parameter(ctx, mem_ctx, service, param, valstr);
268 * Get the value of a global parameter.
270 * Create [global] if it does not exist.
272 WERROR smbconf_get_global_parameter(struct smbconf_ctx *ctx,
273 TALLOC_CTX *mem_ctx,
274 const char *param,
275 char **valstr)
277 WERROR werr;
279 werr = smbconf_global_check(ctx);
280 if (W_ERROR_IS_OK(werr)) {
281 werr = smbconf_get_parameter(ctx, mem_ctx, GLOBAL_NAME, param,
282 valstr);
285 return werr;
289 * delete a parameter from configuration
291 WERROR smbconf_delete_parameter(struct smbconf_ctx *ctx,
292 const char *service, const char *param)
294 return ctx->ops->delete_parameter(ctx, service, param);
298 * Delete a global parameter.
300 * Create [global] if it does not exist.
302 WERROR smbconf_delete_global_parameter(struct smbconf_ctx *ctx,
303 const char *param)
305 WERROR werr;
307 werr = smbconf_global_check(ctx);
308 if (W_ERROR_IS_OK(werr)) {
309 werr = smbconf_delete_parameter(ctx, GLOBAL_NAME, param);
312 return werr;
315 WERROR smbconf_get_includes(struct smbconf_ctx *ctx,
316 TALLOC_CTX *mem_ctx,
317 const char *service,
318 uint32_t *num_includes, char ***includes)
320 return ctx->ops->get_includes(ctx, mem_ctx, service, num_includes,
321 includes);
324 WERROR smbconf_get_global_includes(struct smbconf_ctx *ctx,
325 TALLOC_CTX *mem_ctx,
326 uint32_t *num_includes, char ***includes)
328 WERROR werr;
330 werr = smbconf_global_check(ctx);
331 if (W_ERROR_IS_OK(werr)) {
332 werr = smbconf_get_includes(ctx, mem_ctx, GLOBAL_NAME,
333 num_includes, includes);
336 return werr;
339 WERROR smbconf_set_includes(struct smbconf_ctx *ctx,
340 const char *service,
341 uint32_t num_includes, const char **includes)
343 return ctx->ops->set_includes(ctx, service, num_includes, includes);
346 WERROR smbconf_set_global_includes(struct smbconf_ctx *ctx,
347 uint32_t num_includes,
348 const char **includes)
350 WERROR werr;
352 werr = smbconf_global_check(ctx);
353 if (W_ERROR_IS_OK(werr)) {
354 werr = smbconf_set_includes(ctx, GLOBAL_NAME,
355 num_includes, includes);
358 return werr;
362 WERROR smbconf_delete_includes(struct smbconf_ctx *ctx, const char *service)
364 return ctx->ops->delete_includes(ctx, service);
367 WERROR smbconf_delete_global_includes(struct smbconf_ctx *ctx)
369 WERROR werr;
371 werr = smbconf_global_check(ctx);
372 if (W_ERROR_IS_OK(werr)) {
373 werr = smbconf_delete_includes(ctx, GLOBAL_NAME);
376 return werr;
379 WERROR smbconf_transaction_start(struct smbconf_ctx *ctx)
381 return ctx->ops->transaction_start(ctx);
384 WERROR smbconf_transaction_commit(struct smbconf_ctx *ctx)
386 return ctx->ops->transaction_commit(ctx);
389 WERROR smbconf_transaction_cancel(struct smbconf_ctx *ctx)
391 return ctx->ops->transaction_cancel(ctx);