dbwrap: add parse_record_send/recv to struct db_context
[Samba.git] / source3 / utils / net_conf.c
blob8d9f1e6b99b3331c645c036b0d1df59a17d186a6
1 /*
2 * Samba Unix/Linux SMB client library
3 * Distributed SMB/CIFS Server Management Utility
4 * Local configuration interface
5 * Copyright (C) Michael Adam 2007-2008
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/>.
22 * This is an interface to Samba's configuration as made available
23 * by the libsmbconf interface (source/lib/smbconf/smbconf.c).
25 * This currently supports local interaction with the configuration
26 * stored in the registry. But other backends and remote access via
27 * rpc might get implemented in the future.
30 #include "includes.h"
31 #include "system/filesys.h"
32 #include "utils/net.h"
33 #include "utils/net_conf_util.h"
34 #include "lib/smbconf/smbconf.h"
35 #include "lib/smbconf/smbconf_init.h"
36 #include "lib/smbconf/smbconf_reg.h"
37 #include "lib/param/loadparm.h"
39 /**********************************************************************
41 * usage functions
43 **********************************************************************/
45 static int net_conf_list_usage(struct net_context *c, int argc,
46 const char **argv)
48 d_printf("%s net conf list\n", _("Usage:"));
49 return -1;
52 static int net_conf_import_usage(struct net_context *c, int argc,
53 const char**argv)
55 d_printf("%s\n%s",
56 _("Usage:"),
57 _(" net conf import [--test|-T] <filename> "
58 "[<servicename>]\n"
59 "\t[--test|-T] testmode - do not act, just print "
60 "what would be done\n"
61 "\t<servicename> only import service <servicename>, "
62 "ignore the rest\n"));
63 return -1;
66 static int net_conf_listshares_usage(struct net_context *c, int argc,
67 const char **argv)
69 d_printf("%s\nnet conf listshares\n", _("Usage:"));
70 return -1;
73 static int net_conf_drop_usage(struct net_context *c, int argc,
74 const char **argv)
76 d_printf("%s\nnet conf drop\n", _("Usage:"));
77 return -1;
80 static int net_conf_showshare_usage(struct net_context *c, int argc,
81 const char **argv)
83 d_printf("%s\n%s",
84 _("Usage:"),
85 _("net conf showshare <sharename>\n"));
86 return -1;
89 static int net_conf_addshare_usage(struct net_context *c, int argc,
90 const char **argv)
92 d_printf("%s\n%s",
93 _("Usage:"),
94 _(" net conf addshare <sharename> <path> "
95 "[writeable={y|N} [guest_ok={y|N} [<comment>]]]\n"
96 "\t<sharename> the new share name.\n"
97 "\t<path> the path on the filesystem to export.\n"
98 "\twriteable={y|N} set \"writeable to \"yes\" or "
99 "\"no\" (default) on this share.\n"
100 "\tguest_ok={y|N} set \"guest ok\" to \"yes\" or "
101 "\"no\" (default) on this share.\n"
102 "\t<comment> optional comment for the new share.\n"));
103 return -1;
106 static int net_conf_delshare_usage(struct net_context *c, int argc,
107 const char **argv)
109 d_printf("%s\n%s",
110 _("Usage:"),
111 _("net conf delshare <sharename>\n"));
112 return -1;
115 static int net_conf_setparm_usage(struct net_context *c, int argc,
116 const char **argv)
118 d_printf("%s\n%s",
119 _("Usage:"),
120 _(" net conf setparm <section> <param> <value>\n"));
121 return -1;
124 static int net_conf_getparm_usage(struct net_context *c, int argc,
125 const char **argv)
127 d_printf("%s\n%s",
128 _("Usage:"),
129 _(" net conf getparm <section> <param>\n"));
130 return -1;
133 static int net_conf_delparm_usage(struct net_context *c, int argc,
134 const char **argv)
136 d_printf("%s\n%s",
137 _("Usage:"),
138 _(" net conf delparm <section> <param>\n"));
139 return -1;
142 static int net_conf_getincludes_usage(struct net_context *c, int argc,
143 const char **argv)
145 d_printf("%s\n%s",
146 _("Usage:"),
147 _(" net conf getincludes <section>\n"));
148 return -1;
151 static int net_conf_setincludes_usage(struct net_context *c, int argc,
152 const char **argv)
154 d_printf("%s\n%s",
155 _("Usage:"),
156 _(" net conf setincludes <section> [<filename>]*\n"));
157 return -1;
160 static int net_conf_delincludes_usage(struct net_context *c, int argc,
161 const char **argv)
163 d_printf("%s\n%s",
164 _("Usage:"),
165 _(" net conf delincludes <section>\n"));
166 return -1;
170 /**********************************************************************
172 * Helper functions
174 **********************************************************************/
177 * This functions process a service previously loaded with libsmbconf.
179 static sbcErr import_process_service(struct net_context *c,
180 struct smbconf_ctx *conf_ctx,
181 struct smbconf_service *service)
183 sbcErr err = SBC_ERR_OK;
185 if (c->opt_testmode) {
186 uint32_t idx;
187 const char *indent = "";
188 if (service->name != NULL) {
189 d_printf("[%s]\n", service->name);
190 indent = "\t";
192 for (idx = 0; idx < service->num_params; idx++) {
193 d_printf("%s%s = %s\n", indent,
194 service->param_names[idx],
195 service->param_values[idx]);
197 d_printf("\n");
198 goto done;
201 if (smbconf_share_exists(conf_ctx, service->name)) {
202 err = smbconf_delete_share(conf_ctx, service->name);
203 if (!SBC_ERROR_IS_OK(err)) {
204 goto done;
208 err = smbconf_create_set_share(conf_ctx, service);
210 done:
211 return err;
215 /**********************************************************************
217 * the main conf functions
219 **********************************************************************/
221 static int net_conf_list(struct net_context *c, struct smbconf_ctx *conf_ctx,
222 int argc, const char **argv)
224 sbcErr err;
225 int ret = -1;
226 TALLOC_CTX *mem_ctx;
227 uint32_t num_shares;
228 uint32_t share_count, param_count;
229 struct smbconf_service **shares = NULL;
231 mem_ctx = talloc_stackframe();
233 if (argc != 0 || c->display_usage) {
234 net_conf_list_usage(c, argc, argv);
235 goto done;
238 err = smbconf_get_config(conf_ctx, mem_ctx, &num_shares, &shares);
239 if (!SBC_ERROR_IS_OK(err)) {
240 d_fprintf(stderr, _("Error getting config: %s\n"),
241 sbcErrorString(err));
242 goto done;
245 for (share_count = 0; share_count < num_shares; share_count++) {
246 const char *indent = "";
247 if (shares[share_count]->name != NULL) {
248 d_printf("[%s]\n", shares[share_count]->name);
249 indent = "\t";
251 for (param_count = 0;
252 param_count < shares[share_count]->num_params;
253 param_count++)
255 d_printf("%s%s = %s\n",
256 indent,
257 shares[share_count]->param_names[param_count],
258 shares[share_count]->param_values[param_count]);
260 d_printf("\n");
263 ret = 0;
265 done:
266 TALLOC_FREE(mem_ctx);
267 return ret;
270 static int net_conf_import(struct net_context *c, struct smbconf_ctx *conf_ctx,
271 int argc, const char **argv)
273 int ret = -1;
274 const char *filename = NULL;
275 const char *servicename = NULL;
276 char *conf_source = NULL;
277 TALLOC_CTX *mem_ctx;
278 struct smbconf_ctx *txt_ctx;
279 sbcErr err;
281 if (c->display_usage)
282 return net_conf_import_usage(c, argc, argv);
284 mem_ctx = talloc_stackframe();
286 switch (argc) {
287 case 0:
288 default:
289 net_conf_import_usage(c, argc, argv);
290 goto done;
291 case 2:
292 servicename = talloc_strdup(mem_ctx, argv[1]);
293 if (servicename == NULL) {
294 d_printf(_("error: out of memory!\n"));
295 goto done;
297 case 1:
298 filename = argv[0];
299 break;
302 DEBUG(3,("net_conf_import: reading configuration from file %s.\n",
303 filename));
305 conf_source = talloc_asprintf(mem_ctx, "file:%s", filename);
306 if (conf_source == NULL) {
307 d_printf(_("error: out of memory!\n"));
308 goto done;
311 err = smbconf_init(mem_ctx, &txt_ctx, conf_source);
312 if (!SBC_ERROR_IS_OK(err)) {
313 d_printf(_("error loading file '%s': %s\n"), filename,
314 sbcErrorString(err));
315 goto done;
318 if (c->opt_testmode) {
319 d_printf(_("\nTEST MODE - "
320 "would import the following configuration:\n\n"));
323 if (servicename != NULL) {
324 struct smbconf_service *service = NULL;
326 err = smbconf_get_share(txt_ctx, mem_ctx,
327 servicename,
328 &service);
329 if (!SBC_ERROR_IS_OK(err)) {
330 goto cancel;
333 err = smbconf_transaction_start(conf_ctx);
334 if (!SBC_ERROR_IS_OK(err)) {
335 d_printf(_("error starting transaction: %s\n"),
336 sbcErrorString(err));
337 goto done;
340 err = import_process_service(c, conf_ctx, service);
341 if (!SBC_ERROR_IS_OK(err)) {
342 d_printf(_("error importing service %s: %s\n"),
343 servicename, sbcErrorString(err));
344 goto cancel;
346 } else {
347 struct smbconf_service **services = NULL;
348 uint32_t num_shares, sidx;
350 err = smbconf_get_config(txt_ctx, mem_ctx,
351 &num_shares,
352 &services);
353 if (!SBC_ERROR_IS_OK(err)) {
354 goto cancel;
356 if (!c->opt_testmode) {
357 if (!SBC_ERROR_IS_OK(smbconf_drop(conf_ctx))) {
358 goto cancel;
363 * Wrap the importing of shares into a transaction,
364 * but only 100 at a time, in order to save memory.
365 * The allocated memory accumulates across the actions
366 * within the transaction, and for me, some 1500
367 * imported shares, the MAX_TALLOC_SIZE of 256 MB
368 * was exceeded.
370 err = smbconf_transaction_start(conf_ctx);
371 if (!SBC_ERROR_IS_OK(err)) {
372 d_printf(_("error starting transaction: %s\n"),
373 sbcErrorString(err));
374 goto done;
377 for (sidx = 0; sidx < num_shares; sidx++) {
378 err = import_process_service(c, conf_ctx,
379 services[sidx]);
380 if (!SBC_ERROR_IS_OK(err)) {
381 d_printf(_("error importing service %s: %s\n"),
382 services[sidx]->name,
383 sbcErrorString(err));
384 goto cancel;
387 if (sidx % 100) {
388 continue;
391 err = smbconf_transaction_commit(conf_ctx);
392 if (!SBC_ERROR_IS_OK(err)) {
393 d_printf(_("error committing transaction: "
394 "%s\n"),
395 sbcErrorString(err));
396 goto done;
398 err = smbconf_transaction_start(conf_ctx);
399 if (!SBC_ERROR_IS_OK(err)) {
400 d_printf(_("error starting transaction: %s\n"),
401 sbcErrorString(err));
402 goto done;
407 err = smbconf_transaction_commit(conf_ctx);
408 if (!SBC_ERROR_IS_OK(err)) {
409 d_printf(_("error committing transaction: %s\n"),
410 sbcErrorString(err));
411 } else {
412 ret = 0;
415 goto done;
417 cancel:
418 err = smbconf_transaction_cancel(conf_ctx);
419 if (!SBC_ERROR_IS_OK(err)) {
420 d_printf(_("error cancelling transaction: %s\n"),
421 sbcErrorString(err));
424 done:
425 TALLOC_FREE(mem_ctx);
426 return ret;
429 static int net_conf_listshares(struct net_context *c,
430 struct smbconf_ctx *conf_ctx, int argc,
431 const char **argv)
433 sbcErr err;
434 int ret = -1;
435 uint32_t count, num_shares = 0;
436 char **share_names = NULL;
437 TALLOC_CTX *mem_ctx;
439 mem_ctx = talloc_stackframe();
441 if (argc != 0 || c->display_usage) {
442 net_conf_listshares_usage(c, argc, argv);
443 goto done;
446 err = smbconf_get_share_names(conf_ctx, mem_ctx, &num_shares,
447 &share_names);
448 if (!SBC_ERROR_IS_OK(err)) {
449 goto done;
452 for (count = 0; count < num_shares; count++)
454 d_printf("%s\n", share_names[count]);
457 ret = 0;
459 done:
460 TALLOC_FREE(mem_ctx);
461 return ret;
464 static int net_conf_drop(struct net_context *c, struct smbconf_ctx *conf_ctx,
465 int argc, const char **argv)
467 int ret = -1;
468 sbcErr err;
470 if (argc != 0 || c->display_usage) {
471 net_conf_drop_usage(c, argc, argv);
472 goto done;
475 err = smbconf_drop(conf_ctx);
476 if (!SBC_ERROR_IS_OK(err)) {
477 d_fprintf(stderr, _("Error deleting configuration: %s\n"),
478 sbcErrorString(err));
479 goto done;
482 ret = 0;
484 done:
485 return ret;
488 static int net_conf_showshare(struct net_context *c,
489 struct smbconf_ctx *conf_ctx, int argc,
490 const char **argv)
492 int ret = -1;
493 sbcErr err;
494 const char *sharename = NULL;
495 TALLOC_CTX *mem_ctx;
496 uint32_t count;
497 struct smbconf_service *service = NULL;
499 mem_ctx = talloc_stackframe();
501 if (argc != 1 || c->display_usage) {
502 net_conf_showshare_usage(c, argc, argv);
503 goto done;
506 sharename = talloc_strdup(mem_ctx, argv[0]);
507 if (sharename == NULL) {
508 d_printf("error: out of memory!\n");
509 goto done;
512 err = smbconf_get_share(conf_ctx, mem_ctx, sharename, &service);
513 if (!SBC_ERROR_IS_OK(err)) {
514 d_printf(_("error getting share parameters: %s\n"),
515 sbcErrorString(err));
516 goto done;
519 d_printf("[%s]\n", service->name);
521 for (count = 0; count < service->num_params; count++) {
522 d_printf("\t%s = %s\n", service->param_names[count],
523 service->param_values[count]);
526 ret = 0;
528 done:
529 TALLOC_FREE(mem_ctx);
530 return ret;
534 * Add a share, with a couple of standard parameters, partly optional.
536 * This is a high level utility function of the net conf utility,
537 * not a direct frontend to the smbconf API.
539 static int net_conf_addshare(struct net_context *c,
540 struct smbconf_ctx *conf_ctx, int argc,
541 const char **argv)
543 int ret = -1;
544 sbcErr err;
545 char *sharename = NULL;
546 const char *path = NULL;
547 const char *comment = NULL;
548 const char *guest_ok = "no";
549 const char *writeable = "no";
550 TALLOC_CTX *mem_ctx = talloc_stackframe();
552 if (c->display_usage) {
553 net_conf_addshare_usage(c, argc, argv);
554 ret = 0;
555 goto done;
558 switch (argc) {
559 case 0:
560 case 1:
561 default:
562 net_conf_addshare_usage(c, argc, argv);
563 goto done;
564 case 5:
565 comment = argv[4];
566 case 4:
567 if (!strnequal(argv[3], "guest_ok=", 9)) {
568 net_conf_addshare_usage(c, argc, argv);
569 goto done;
571 switch (argv[3][9]) {
572 case 'y':
573 case 'Y':
574 guest_ok = "yes";
575 break;
576 case 'n':
577 case 'N':
578 guest_ok = "no";
579 break;
580 default:
581 net_conf_addshare_usage(c, argc, argv);
582 goto done;
584 case 3:
585 if (!strnequal(argv[2], "writeable=", 10)) {
586 net_conf_addshare_usage(c, argc, argv);
587 goto done;
589 switch (argv[2][10]) {
590 case 'y':
591 case 'Y':
592 writeable = "yes";
593 break;
594 case 'n':
595 case 'N':
596 writeable = "no";
597 break;
598 default:
599 net_conf_addshare_usage(c, argc, argv);
600 goto done;
602 case 2:
603 path = argv[1];
604 sharename = talloc_strdup(mem_ctx, argv[0]);
605 if (sharename == NULL) {
606 d_printf(_("error: out of memory!\n"));
607 goto done;
610 break;
614 * validate arguments
617 /* validate share name */
619 if (!validate_net_name(sharename, INVALID_SHARENAME_CHARS,
620 strlen(sharename)))
622 d_fprintf(stderr, _("ERROR: share name %s contains "
623 "invalid characters (any of %s)\n"),
624 sharename, INVALID_SHARENAME_CHARS);
625 goto done;
628 if (strequal(sharename, GLOBAL_NAME)) {
629 d_fprintf(stderr,
630 _("ERROR: 'global' is not a valid share name.\n"));
631 goto done;
634 if (smbconf_share_exists(conf_ctx, sharename)) {
635 d_fprintf(stderr, _("ERROR: share %s already exists.\n"),
636 sharename);
637 goto done;
640 /* validate path */
642 if (path[0] != '/') {
643 d_fprintf(stderr,
644 _("Error: path '%s' is not an absolute path.\n"),
645 path);
646 goto done;
650 * start a transaction
653 err = smbconf_transaction_start(conf_ctx);
654 if (!SBC_ERROR_IS_OK(err)) {
655 d_printf("error starting transaction: %s\n",
656 sbcErrorString(err));
657 goto done;
661 * create the share
664 err = smbconf_create_share(conf_ctx, sharename);
665 if (!SBC_ERROR_IS_OK(err)) {
666 d_fprintf(stderr, _("Error creating share %s: %s\n"),
667 sharename, sbcErrorString(err));
668 goto cancel;
672 * fill the share with parameters
675 err = smbconf_set_parameter(conf_ctx, sharename, "path", path);
676 if (!SBC_ERROR_IS_OK(err)) {
677 d_fprintf(stderr, _("Error setting parameter %s: %s\n"),
678 "path", sbcErrorString(err));
679 goto cancel;
682 if (comment != NULL) {
683 err = smbconf_set_parameter(conf_ctx, sharename, "comment",
684 comment);
685 if (!SBC_ERROR_IS_OK(err)) {
686 d_fprintf(stderr, _("Error setting parameter %s: %s\n"),
687 "comment", sbcErrorString(err));
688 goto cancel;
692 err = smbconf_set_parameter(conf_ctx, sharename, "guest ok", guest_ok);
693 if (!SBC_ERROR_IS_OK(err)) {
694 d_fprintf(stderr, _("Error setting parameter %s: %s\n"),
695 "'guest ok'", sbcErrorString(err));
696 goto cancel;
699 err = smbconf_set_parameter(conf_ctx, sharename, "writeable",
700 writeable);
701 if (!SBC_ERROR_IS_OK(err)) {
702 d_fprintf(stderr, _("Error setting parameter %s: %s\n"),
703 "writeable", sbcErrorString(err));
704 goto cancel;
708 * commit the whole thing
711 err = smbconf_transaction_commit(conf_ctx);
712 if (!SBC_ERROR_IS_OK(err)) {
713 d_printf("error committing transaction: %s\n",
714 sbcErrorString(err));
715 } else {
716 ret = 0;
719 goto done;
721 cancel:
722 err = smbconf_transaction_cancel(conf_ctx);
723 if (!SBC_ERROR_IS_OK(err)) {
724 d_printf("error cancelling transaction: %s\n",
725 sbcErrorString(err));
728 done:
729 TALLOC_FREE(mem_ctx);
730 return ret;
733 static int net_conf_delshare(struct net_context *c,
734 struct smbconf_ctx *conf_ctx, int argc,
735 const char **argv)
737 int ret = -1;
738 const char *sharename = NULL;
739 sbcErr err;
740 TALLOC_CTX *mem_ctx = talloc_stackframe();
742 if (argc != 1 || c->display_usage) {
743 net_conf_delshare_usage(c, argc, argv);
744 goto done;
746 sharename = talloc_strdup(mem_ctx, argv[0]);
747 if (sharename == NULL) {
748 d_printf(_("error: out of memory!\n"));
749 goto done;
752 err = smbconf_delete_share(conf_ctx, sharename);
753 if (!SBC_ERROR_IS_OK(err)) {
754 d_fprintf(stderr, _("Error deleting share %s: %s\n"),
755 sharename, sbcErrorString(err));
756 goto done;
759 ret = 0;
760 done:
761 TALLOC_FREE(mem_ctx);
762 return ret;
765 static int net_conf_setparm(struct net_context *c, struct smbconf_ctx *conf_ctx,
766 int argc, const char **argv)
768 int ret = -1;
769 sbcErr err;
770 char *service = NULL;
771 char *param = NULL;
772 const char *value_str = NULL;
773 TALLOC_CTX *mem_ctx = talloc_stackframe();
775 if (argc != 3 || c->display_usage) {
776 net_conf_setparm_usage(c, argc, argv);
777 goto done;
780 * NULL service name means "dangling parameters" to libsmbconf.
781 * We use the empty string from the command line for this purpose.
783 if (strlen(argv[0]) != 0) {
784 service = talloc_strdup(mem_ctx, argv[0]);
785 if (service == NULL) {
786 d_printf(_("error: out of memory!\n"));
787 goto done;
790 param = strlower_talloc(mem_ctx, argv[1]);
791 if (param == NULL) {
792 d_printf(_("error: out of memory!\n"));
793 goto done;
795 value_str = argv[2];
797 if (!net_conf_param_valid(service,param, value_str)) {
798 goto done;
801 err = smbconf_transaction_start(conf_ctx);
802 if (!SBC_ERROR_IS_OK(err)) {
803 d_printf(_("error starting transaction: %s\n"),
804 sbcErrorString(err));
805 goto done;
808 if (!smbconf_share_exists(conf_ctx, service)) {
809 err = smbconf_create_share(conf_ctx, service);
810 if (!SBC_ERROR_IS_OK(err)) {
811 d_fprintf(stderr, _("Error creating share '%s': %s\n"),
812 service, sbcErrorString(err));
813 goto cancel;
817 err = smbconf_set_parameter(conf_ctx, service, param, value_str);
818 if (!SBC_ERROR_IS_OK(err)) {
819 d_fprintf(stderr, _("Error setting value '%s': %s\n"),
820 param, sbcErrorString(err));
821 goto cancel;
824 err = smbconf_transaction_commit(conf_ctx);
825 if (!SBC_ERROR_IS_OK(err)) {
826 d_printf(_("error committing transaction: %s\n"),
827 sbcErrorString(err));
828 } else {
829 ret = 0;
832 goto done;
834 cancel:
835 err = smbconf_transaction_cancel(conf_ctx);
836 if (!SBC_ERROR_IS_OK(err)) {
837 d_printf(_("error cancelling transaction: %s\n"),
838 sbcErrorString(err));
841 done:
842 TALLOC_FREE(mem_ctx);
843 return ret;
846 static int net_conf_getparm(struct net_context *c, struct smbconf_ctx *conf_ctx,
847 int argc, const char **argv)
849 int ret = -1;
850 sbcErr err;
851 char *service = NULL;
852 char *param = NULL;
853 char *valstr = NULL;
854 TALLOC_CTX *mem_ctx;
856 mem_ctx = talloc_stackframe();
858 if (argc != 2 || c->display_usage) {
859 net_conf_getparm_usage(c, argc, argv);
860 goto done;
863 * NULL service name means "dangling parameters" to libsmbconf.
864 * We use the empty string from the command line for this purpose.
866 if (strlen(argv[0]) != 0) {
867 service = talloc_strdup(mem_ctx, argv[0]);
868 if (service == NULL) {
869 d_printf(_("error: out of memory!\n"));
870 goto done;
873 param = strlower_talloc(mem_ctx, argv[1]);
874 if (param == NULL) {
875 d_printf(_("error: out of memory!\n"));
876 goto done;
879 err = smbconf_get_parameter(conf_ctx, mem_ctx, service, param, &valstr);
880 if (SBC_ERROR_EQUAL(err, SBC_ERR_NO_SUCH_SERVICE)) {
881 d_fprintf(stderr,
882 _("Error: given service '%s' does not exist.\n"),
883 service);
884 goto done;
885 } else if (SBC_ERROR_EQUAL(err, SBC_ERR_INVALID_PARAM)) {
886 d_fprintf(stderr,
887 _("Error: given parameter '%s' is not set.\n"),
888 param);
889 goto done;
890 } else if (!SBC_ERROR_IS_OK(err)) {
891 d_fprintf(stderr, _("Error getting value '%s': %s.\n"),
892 param, sbcErrorString(err));
893 goto done;
896 d_printf("%s\n", valstr);
898 ret = 0;
899 done:
900 TALLOC_FREE(mem_ctx);
901 return ret;
904 static int net_conf_delparm(struct net_context *c, struct smbconf_ctx *conf_ctx,
905 int argc, const char **argv)
907 int ret = -1;
908 sbcErr err;
909 char *service = NULL;
910 char *param = NULL;
911 TALLOC_CTX *mem_ctx = talloc_stackframe();
913 if (argc != 2 || c->display_usage) {
914 net_conf_delparm_usage(c, argc, argv);
915 goto done;
918 * NULL service name means "dangling parameters" to libsmbconf.
919 * We use the empty string from the command line for this purpose.
921 if (strlen(argv[0]) != 0) {
922 service = talloc_strdup(mem_ctx, argv[0]);
923 if (service == NULL) {
924 d_printf(_("error: out of memory!\n"));
925 goto done;
928 param = strlower_talloc(mem_ctx, argv[1]);
929 if (param == NULL) {
930 d_printf("error: out of memory!\n");
931 goto done;
934 err = smbconf_delete_parameter(conf_ctx, service, param);
935 if (SBC_ERROR_EQUAL(err, SBC_ERR_NO_SUCH_SERVICE)) {
936 d_fprintf(stderr,
937 _("Error: given service '%s' does not exist.\n"),
938 service);
939 goto done;
940 } else if (SBC_ERROR_EQUAL(err, SBC_ERR_INVALID_PARAM)) {
941 d_fprintf(stderr,
942 _("Error: given parameter '%s' is not set.\n"),
943 param);
944 goto done;
945 } else if (!SBC_ERROR_IS_OK(err)) {
946 d_fprintf(stderr, _("Error deleting value '%s': %s.\n"),
947 param, sbcErrorString(err));
948 goto done;
951 ret = 0;
953 done:
954 TALLOC_FREE(mem_ctx);
955 return ret;
958 static int net_conf_getincludes(struct net_context *c,
959 struct smbconf_ctx *conf_ctx,
960 int argc, const char **argv)
962 sbcErr err;
963 uint32_t num_includes;
964 uint32_t count;
965 char *service;
966 char **includes = NULL;
967 int ret = -1;
968 TALLOC_CTX *mem_ctx = talloc_stackframe();
970 if (argc != 1 || c->display_usage) {
971 net_conf_getincludes_usage(c, argc, argv);
972 goto done;
975 service = talloc_strdup(mem_ctx, argv[0]);
976 if (service == NULL) {
977 d_printf(_("error: out of memory!\n"));
978 goto done;
981 err = smbconf_get_includes(conf_ctx, mem_ctx, service,
982 &num_includes, &includes);
983 if (!SBC_ERROR_IS_OK(err)) {
984 d_printf(_("error getting includes: %s\n"), sbcErrorString(err));
985 goto done;
988 for (count = 0; count < num_includes; count++) {
989 d_printf("include = %s\n", includes[count]);
992 ret = 0;
994 done:
995 TALLOC_FREE(mem_ctx);
996 return ret;
999 static int net_conf_setincludes(struct net_context *c,
1000 struct smbconf_ctx *conf_ctx,
1001 int argc, const char **argv)
1003 sbcErr err;
1004 char *service;
1005 uint32_t num_includes;
1006 const char **includes;
1007 int ret = -1;
1008 TALLOC_CTX *mem_ctx = talloc_stackframe();
1010 if (argc < 1 || c->display_usage) {
1011 net_conf_setincludes_usage(c, argc, argv);
1012 goto done;
1015 service = talloc_strdup(mem_ctx, argv[0]);
1016 if (service == NULL) {
1017 d_printf(_("error: out of memory!\n"));
1018 goto done;
1021 num_includes = argc - 1;
1022 if (num_includes == 0) {
1023 includes = NULL;
1024 } else {
1025 includes = argv + 1;
1028 err = smbconf_set_includes(conf_ctx, service, num_includes, includes);
1029 if (!SBC_ERROR_IS_OK(err)) {
1030 d_printf(_("error setting includes: %s\n"), sbcErrorString(err));
1031 goto done;
1034 ret = 0;
1036 done:
1037 TALLOC_FREE(mem_ctx);
1038 return ret;
1041 static int net_conf_delincludes(struct net_context *c,
1042 struct smbconf_ctx *conf_ctx,
1043 int argc, const char **argv)
1045 sbcErr err;
1046 char *service;
1047 int ret = -1;
1048 TALLOC_CTX *mem_ctx = talloc_stackframe();
1050 if (argc != 1 || c->display_usage) {
1051 net_conf_delincludes_usage(c, argc, argv);
1052 goto done;
1055 service = talloc_strdup(mem_ctx, argv[0]);
1056 if (service == NULL) {
1057 d_printf(_("error: out of memory!\n"));
1058 goto done;
1061 err = smbconf_delete_includes(conf_ctx, service);
1062 if (!SBC_ERROR_IS_OK(err)) {
1063 d_printf(_("error deleting includes: %s\n"), sbcErrorString(err));
1064 goto done;
1067 ret = 0;
1069 done:
1070 TALLOC_FREE(mem_ctx);
1071 return ret;
1075 /**********************************************************************
1077 * Wrapper and net_conf_run_function mechanism.
1079 **********************************************************************/
1082 * Wrapper function to call the main conf functions.
1083 * The wrapper calls handles opening and closing of the
1084 * configuration.
1086 static int net_conf_wrap_function(struct net_context *c,
1087 int (*fn)(struct net_context *,
1088 struct smbconf_ctx *,
1089 int, const char **),
1090 int argc, const char **argv)
1092 sbcErr err;
1093 TALLOC_CTX *mem_ctx = talloc_stackframe();
1094 struct smbconf_ctx *conf_ctx;
1095 int ret = -1;
1097 err = smbconf_init(mem_ctx, &conf_ctx, "registry:");
1098 if (!SBC_ERROR_IS_OK(err)) {
1099 talloc_free(mem_ctx);
1100 return -1;
1103 ret = fn(c, conf_ctx, argc, argv);
1105 smbconf_shutdown(conf_ctx);
1107 talloc_free(mem_ctx);
1108 return ret;
1112 * We need a functable struct of our own, because the
1113 * functions are called through a wrapper that handles
1114 * the opening and closing of the configuration, and so on.
1116 struct conf_functable {
1117 const char *funcname;
1118 int (*fn)(struct net_context *c, struct smbconf_ctx *ctx, int argc,
1119 const char **argv);
1120 int valid_transports;
1121 const char *description;
1122 const char *usage;
1126 * This imitates net_run_function but calls the main functions
1127 * through the wrapper net_conf_wrap_function().
1129 static int net_conf_run_function(struct net_context *c, int argc,
1130 const char **argv, const char *whoami,
1131 struct conf_functable *table)
1133 int i;
1135 if (argc != 0) {
1136 for (i=0; table[i].funcname; i++) {
1137 if (strcasecmp_m(argv[0], table[i].funcname) == 0)
1138 return net_conf_wrap_function(c, table[i].fn,
1139 argc-1,
1140 argv+1);
1144 d_printf(_("Usage:\n"));
1145 for (i=0; table[i].funcname; i++) {
1146 if (c->display_usage == false)
1147 d_printf("%s %-15s %s\n", whoami, table[i].funcname,
1148 table[i].description);
1149 else
1150 d_printf("%s\n", table[i].usage);
1153 return c->display_usage?0:-1;
1157 * Entry-point for all the CONF functions.
1160 int net_conf(struct net_context *c, int argc, const char **argv)
1162 int ret = -1;
1163 struct conf_functable func_table[] = {
1165 "list",
1166 net_conf_list,
1167 NET_TRANSPORT_LOCAL,
1168 N_("Dump the complete configuration in smb.conf like "
1169 "format."),
1170 N_("net conf list\n"
1171 " Dump the complete configuration in smb.conf "
1172 "like format.")
1176 "import",
1177 net_conf_import,
1178 NET_TRANSPORT_LOCAL,
1179 N_("Import configuration from file in smb.conf "
1180 "format."),
1181 N_("net conf import\n"
1182 " Import configuration from file in smb.conf "
1183 "format.")
1186 "listshares",
1187 net_conf_listshares,
1188 NET_TRANSPORT_LOCAL,
1189 N_("List the share names."),
1190 N_("net conf listshares\n"
1191 " List the share names.")
1194 "drop",
1195 net_conf_drop,
1196 NET_TRANSPORT_LOCAL,
1197 N_("Delete the complete configuration."),
1198 N_("net conf drop\n"
1199 " Delete the complete configuration.")
1202 "showshare",
1203 net_conf_showshare,
1204 NET_TRANSPORT_LOCAL,
1205 N_("Show the definition of a share."),
1206 N_("net conf showshare\n"
1207 " Show the definition of a share.")
1210 "addshare",
1211 net_conf_addshare,
1212 NET_TRANSPORT_LOCAL,
1213 N_("Create a new share."),
1214 N_("net conf addshare\n"
1215 " Create a new share.")
1218 "delshare",
1219 net_conf_delshare,
1220 NET_TRANSPORT_LOCAL,
1221 N_("Delete a share."),
1222 N_("net conf delshare\n"
1223 " Delete a share.")
1226 "setparm",
1227 net_conf_setparm,
1228 NET_TRANSPORT_LOCAL,
1229 N_("Store a parameter."),
1230 N_("net conf setparm\n"
1231 " Store a parameter.")
1234 "getparm",
1235 net_conf_getparm,
1236 NET_TRANSPORT_LOCAL,
1237 N_("Retrieve the value of a parameter."),
1238 N_("net conf getparm\n"
1239 " Retrieve the value of a parameter.")
1242 "delparm",
1243 net_conf_delparm,
1244 NET_TRANSPORT_LOCAL,
1245 N_("Delete a parameter."),
1246 N_("net conf delparm\n"
1247 " Delete a parameter.")
1250 "getincludes",
1251 net_conf_getincludes,
1252 NET_TRANSPORT_LOCAL,
1253 N_("Show the includes of a share definition."),
1254 N_("net conf getincludes\n"
1255 " Show the includes of a share definition.")
1258 "setincludes",
1259 net_conf_setincludes,
1260 NET_TRANSPORT_LOCAL,
1261 N_("Set includes for a share."),
1262 N_("net conf setincludes\n"
1263 " Set includes for a share.")
1266 "delincludes",
1267 net_conf_delincludes,
1268 NET_TRANSPORT_LOCAL,
1269 N_("Delete includes from a share definition."),
1270 N_("net conf delincludes\n"
1271 " Delete includes from a share definition.")
1273 {NULL, NULL, 0, NULL, NULL}
1276 ret = net_conf_run_function(c, argc, argv, "net conf", func_table);
1278 return ret;