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.
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 /**********************************************************************
43 **********************************************************************/
45 static int net_conf_list_usage(struct net_context
*c
, int argc
,
48 d_printf("%s net conf list\n", _("Usage:"));
52 static int net_conf_import_usage(struct net_context
*c
, int argc
,
57 _(" net conf import [--test|-T] <filename> "
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"));
66 static int net_conf_listshares_usage(struct net_context
*c
, int argc
,
69 d_printf("%s\nnet conf listshares\n", _("Usage:"));
73 static int net_conf_drop_usage(struct net_context
*c
, int argc
,
76 d_printf("%s\nnet conf drop\n", _("Usage:"));
80 static int net_conf_showshare_usage(struct net_context
*c
, int argc
,
85 _("net conf showshare <sharename>\n"));
89 static int net_conf_addshare_usage(struct net_context
*c
, int argc
,
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"));
106 static int net_conf_delshare_usage(struct net_context
*c
, int argc
,
111 _("net conf delshare <sharename>\n"));
115 static int net_conf_setparm_usage(struct net_context
*c
, int argc
,
120 _(" net conf setparm <section> <param> <value>\n"));
124 static int net_conf_getparm_usage(struct net_context
*c
, int argc
,
129 _(" net conf getparm <section> <param>\n"));
133 static int net_conf_delparm_usage(struct net_context
*c
, int argc
,
138 _(" net conf delparm <section> <param>\n"));
142 static int net_conf_getincludes_usage(struct net_context
*c
, int argc
,
147 _(" net conf getincludes <section>\n"));
151 static int net_conf_setincludes_usage(struct net_context
*c
, int argc
,
156 _(" net conf setincludes <section> [<filename>]*\n"));
160 static int net_conf_delincludes_usage(struct net_context
*c
, int argc
,
165 _(" net conf delincludes <section>\n"));
170 /**********************************************************************
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
) {
187 const char *indent
= "";
188 if (service
->name
!= NULL
) {
189 d_printf("[%s]\n", service
->name
);
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
]);
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
)) {
208 err
= smbconf_create_set_share(conf_ctx
, service
);
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
)
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
);
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
));
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
);
251 for (param_count
= 0;
252 param_count
< shares
[share_count
]->num_params
;
255 d_printf("%s%s = %s\n",
257 shares
[share_count
]->param_names
[param_count
],
258 shares
[share_count
]->param_values
[param_count
]);
266 TALLOC_FREE(mem_ctx
);
270 static int net_conf_import(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
271 int argc
, const char **argv
)
274 const char *filename
= NULL
;
275 const char *servicename
= NULL
;
276 char *conf_source
= NULL
;
278 struct smbconf_ctx
*txt_ctx
;
281 if (c
->display_usage
)
282 return net_conf_import_usage(c
, argc
, argv
);
284 mem_ctx
= talloc_stackframe();
289 net_conf_import_usage(c
, argc
, argv
);
292 servicename
= talloc_strdup(mem_ctx
, argv
[1]);
293 if (servicename
== NULL
) {
294 d_printf(_("error: out of memory!\n"));
304 DEBUG(3,("net_conf_import: reading configuration from file %s.\n",
307 conf_source
= talloc_asprintf(mem_ctx
, "file:%s", filename
);
308 if (conf_source
== NULL
) {
309 d_printf(_("error: out of memory!\n"));
313 err
= smbconf_init(mem_ctx
, &txt_ctx
, conf_source
);
314 if (!SBC_ERROR_IS_OK(err
)) {
315 d_printf(_("error loading file '%s': %s\n"), filename
,
316 sbcErrorString(err
));
320 if (c
->opt_testmode
) {
321 d_printf(_("\nTEST MODE - "
322 "would import the following configuration:\n\n"));
325 if (servicename
!= NULL
) {
326 struct smbconf_service
*service
= NULL
;
328 err
= smbconf_get_share(txt_ctx
, mem_ctx
,
331 if (!SBC_ERROR_IS_OK(err
)) {
335 err
= smbconf_transaction_start(conf_ctx
);
336 if (!SBC_ERROR_IS_OK(err
)) {
337 d_printf(_("error starting transaction: %s\n"),
338 sbcErrorString(err
));
342 err
= import_process_service(c
, conf_ctx
, service
);
343 if (!SBC_ERROR_IS_OK(err
)) {
344 d_printf(_("error importing service %s: %s\n"),
345 servicename
, sbcErrorString(err
));
349 struct smbconf_service
**services
= NULL
;
350 uint32_t num_shares
, sidx
;
352 err
= smbconf_get_config(txt_ctx
, mem_ctx
,
355 if (!SBC_ERROR_IS_OK(err
)) {
358 if (!c
->opt_testmode
) {
359 if (!SBC_ERROR_IS_OK(smbconf_drop(conf_ctx
))) {
365 * Wrap the importing of shares into a transaction,
366 * but only 100 at a time, in order to save memory.
367 * The allocated memory accumulates across the actions
368 * within the transaction, and for me, some 1500
369 * imported shares, the MAX_TALLOC_SIZE of 256 MB
372 err
= smbconf_transaction_start(conf_ctx
);
373 if (!SBC_ERROR_IS_OK(err
)) {
374 d_printf(_("error starting transaction: %s\n"),
375 sbcErrorString(err
));
379 for (sidx
= 0; sidx
< num_shares
; sidx
++) {
380 err
= import_process_service(c
, conf_ctx
,
382 if (!SBC_ERROR_IS_OK(err
)) {
383 d_printf(_("error importing service %s: %s\n"),
384 services
[sidx
]->name
,
385 sbcErrorString(err
));
393 err
= smbconf_transaction_commit(conf_ctx
);
394 if (!SBC_ERROR_IS_OK(err
)) {
395 d_printf(_("error committing transaction: "
397 sbcErrorString(err
));
400 err
= smbconf_transaction_start(conf_ctx
);
401 if (!SBC_ERROR_IS_OK(err
)) {
402 d_printf(_("error starting transaction: %s\n"),
403 sbcErrorString(err
));
409 err
= smbconf_transaction_commit(conf_ctx
);
410 if (!SBC_ERROR_IS_OK(err
)) {
411 d_printf(_("error committing transaction: %s\n"),
412 sbcErrorString(err
));
420 err
= smbconf_transaction_cancel(conf_ctx
);
421 if (!SBC_ERROR_IS_OK(err
)) {
422 d_printf(_("error cancelling transaction: %s\n"),
423 sbcErrorString(err
));
427 TALLOC_FREE(mem_ctx
);
431 static int net_conf_listshares(struct net_context
*c
,
432 struct smbconf_ctx
*conf_ctx
, int argc
,
437 uint32_t count
, num_shares
= 0;
438 char **share_names
= NULL
;
441 mem_ctx
= talloc_stackframe();
443 if (argc
!= 0 || c
->display_usage
) {
444 net_conf_listshares_usage(c
, argc
, argv
);
448 err
= smbconf_get_share_names(conf_ctx
, mem_ctx
, &num_shares
,
450 if (!SBC_ERROR_IS_OK(err
)) {
454 for (count
= 0; count
< num_shares
; count
++)
456 d_printf("%s\n", share_names
[count
]);
462 TALLOC_FREE(mem_ctx
);
466 static int net_conf_drop(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
467 int argc
, const char **argv
)
472 if (argc
!= 0 || c
->display_usage
) {
473 net_conf_drop_usage(c
, argc
, argv
);
477 err
= smbconf_drop(conf_ctx
);
478 if (!SBC_ERROR_IS_OK(err
)) {
479 d_fprintf(stderr
, _("Error deleting configuration: %s\n"),
480 sbcErrorString(err
));
490 static int net_conf_showshare(struct net_context
*c
,
491 struct smbconf_ctx
*conf_ctx
, int argc
,
496 const char *sharename
= NULL
;
499 struct smbconf_service
*service
= NULL
;
501 mem_ctx
= talloc_stackframe();
503 if (argc
!= 1 || c
->display_usage
) {
504 net_conf_showshare_usage(c
, argc
, argv
);
508 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
509 if (sharename
== NULL
) {
510 d_printf("error: out of memory!\n");
514 err
= smbconf_get_share(conf_ctx
, mem_ctx
, sharename
, &service
);
515 if (!SBC_ERROR_IS_OK(err
)) {
516 d_printf(_("error getting share parameters: %s\n"),
517 sbcErrorString(err
));
521 d_printf("[%s]\n", service
->name
);
523 for (count
= 0; count
< service
->num_params
; count
++) {
524 d_printf("\t%s = %s\n", service
->param_names
[count
],
525 service
->param_values
[count
]);
531 TALLOC_FREE(mem_ctx
);
536 * Add a share, with a couple of standard parameters, partly optional.
538 * This is a high level utility function of the net conf utility,
539 * not a direct frontend to the smbconf API.
541 static int net_conf_addshare(struct net_context
*c
,
542 struct smbconf_ctx
*conf_ctx
, int argc
,
547 char *sharename
= NULL
;
548 const char *path
= NULL
;
549 const char *comment
= NULL
;
550 const char *guest_ok
= "no";
551 const char *writeable
= "no";
552 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
554 if (c
->display_usage
) {
555 net_conf_addshare_usage(c
, argc
, argv
);
564 net_conf_addshare_usage(c
, argc
, argv
);
571 if (!strnequal(argv
[3], "guest_ok=", 9)) {
572 net_conf_addshare_usage(c
, argc
, argv
);
575 switch (argv
[3][9]) {
585 net_conf_addshare_usage(c
, argc
, argv
);
591 if (!strnequal(argv
[2], "writeable=", 10)) {
592 net_conf_addshare_usage(c
, argc
, argv
);
595 switch (argv
[2][10]) {
605 net_conf_addshare_usage(c
, argc
, argv
);
612 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
613 if (sharename
== NULL
) {
614 d_printf(_("error: out of memory!\n"));
625 /* validate share name */
627 if (!validate_net_name(sharename
, INVALID_SHARENAME_CHARS
,
630 d_fprintf(stderr
, _("ERROR: share name %s contains "
631 "invalid characters (any of %s)\n"),
632 sharename
, INVALID_SHARENAME_CHARS
);
636 if (strequal(sharename
, GLOBAL_NAME
)) {
638 _("ERROR: 'global' is not a valid share name.\n"));
642 if (smbconf_share_exists(conf_ctx
, sharename
)) {
643 d_fprintf(stderr
, _("ERROR: share %s already exists.\n"),
650 if (path
[0] != '/') {
653 if (strequal(sharename
, HOMES_NAME
) && path
[0] == '\0') {
654 /* The homes share can be an empty path. */
659 _("Error: path '%s' is not an absolute path.\n"),
666 * start a transaction
669 err
= smbconf_transaction_start(conf_ctx
);
670 if (!SBC_ERROR_IS_OK(err
)) {
671 d_printf("error starting transaction: %s\n",
672 sbcErrorString(err
));
680 err
= smbconf_create_share(conf_ctx
, sharename
);
681 if (!SBC_ERROR_IS_OK(err
)) {
682 d_fprintf(stderr
, _("Error creating share %s: %s\n"),
683 sharename
, sbcErrorString(err
));
688 * fill the share with parameters
691 err
= smbconf_set_parameter(conf_ctx
, sharename
, "path", path
);
692 if (!SBC_ERROR_IS_OK(err
)) {
693 d_fprintf(stderr
, _("Error setting parameter %s: %s\n"),
694 "path", sbcErrorString(err
));
698 if (comment
!= NULL
) {
699 err
= smbconf_set_parameter(conf_ctx
, sharename
, "comment",
701 if (!SBC_ERROR_IS_OK(err
)) {
702 d_fprintf(stderr
, _("Error setting parameter %s: %s\n"),
703 "comment", sbcErrorString(err
));
708 err
= smbconf_set_parameter(conf_ctx
, sharename
, "guest ok", guest_ok
);
709 if (!SBC_ERROR_IS_OK(err
)) {
710 d_fprintf(stderr
, _("Error setting parameter %s: %s\n"),
711 "'guest ok'", sbcErrorString(err
));
715 err
= smbconf_set_parameter(conf_ctx
, sharename
, "writeable",
717 if (!SBC_ERROR_IS_OK(err
)) {
718 d_fprintf(stderr
, _("Error setting parameter %s: %s\n"),
719 "writeable", sbcErrorString(err
));
724 * commit the whole thing
727 err
= smbconf_transaction_commit(conf_ctx
);
728 if (!SBC_ERROR_IS_OK(err
)) {
729 d_printf("error committing transaction: %s\n",
730 sbcErrorString(err
));
738 err
= smbconf_transaction_cancel(conf_ctx
);
739 if (!SBC_ERROR_IS_OK(err
)) {
740 d_printf("error cancelling transaction: %s\n",
741 sbcErrorString(err
));
745 TALLOC_FREE(mem_ctx
);
749 static int net_conf_delshare(struct net_context
*c
,
750 struct smbconf_ctx
*conf_ctx
, int argc
,
754 const char *sharename
= NULL
;
757 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
759 if (argc
!= 1 || c
->display_usage
) {
760 net_conf_delshare_usage(c
, argc
, argv
);
763 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
764 if (sharename
== NULL
) {
765 d_printf(_("error: out of memory!\n"));
769 err
= smbconf_delete_share(conf_ctx
, sharename
);
770 if (!SBC_ERROR_IS_OK(err
)) {
771 d_fprintf(stderr
, _("Error deleting share %s: %s\n"),
772 sharename
, sbcErrorString(err
));
776 status
= delete_share_security(sharename
);
777 if (!NT_STATUS_IS_OK(status
) &&
778 !NT_STATUS_EQUAL(status
, NT_STATUS_NOT_FOUND
)) {
779 d_fprintf(stderr
, _("deleting share acl failed for %s: %s\n"),
780 sharename
, nt_errstr(status
));
786 TALLOC_FREE(mem_ctx
);
790 static int net_conf_setparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
791 int argc
, const char **argv
)
795 char *service
= NULL
;
797 const char *value_str
= NULL
;
798 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
800 if (argc
!= 3 || c
->display_usage
) {
801 net_conf_setparm_usage(c
, argc
, argv
);
805 * NULL service name means "dangling parameters" to libsmbconf.
806 * We use the empty string from the command line for this purpose.
808 if (strlen(argv
[0]) != 0) {
809 service
= talloc_strdup(mem_ctx
, argv
[0]);
810 if (service
== NULL
) {
811 d_printf(_("error: out of memory!\n"));
815 param
= strlower_talloc(mem_ctx
, argv
[1]);
817 d_printf(_("error: out of memory!\n"));
822 if (!net_conf_param_valid(service
,param
, value_str
)) {
826 err
= smbconf_transaction_start(conf_ctx
);
827 if (!SBC_ERROR_IS_OK(err
)) {
828 d_printf(_("error starting transaction: %s\n"),
829 sbcErrorString(err
));
833 if (!smbconf_share_exists(conf_ctx
, service
)) {
834 err
= smbconf_create_share(conf_ctx
, service
);
835 if (!SBC_ERROR_IS_OK(err
)) {
836 d_fprintf(stderr
, _("Error creating share '%s': %s\n"),
837 service
, sbcErrorString(err
));
842 err
= smbconf_set_parameter(conf_ctx
, service
, param
, value_str
);
843 if (!SBC_ERROR_IS_OK(err
)) {
844 d_fprintf(stderr
, _("Error setting value '%s': %s\n"),
845 param
, sbcErrorString(err
));
849 err
= smbconf_transaction_commit(conf_ctx
);
850 if (!SBC_ERROR_IS_OK(err
)) {
851 d_printf(_("error committing transaction: %s\n"),
852 sbcErrorString(err
));
860 err
= smbconf_transaction_cancel(conf_ctx
);
861 if (!SBC_ERROR_IS_OK(err
)) {
862 d_printf(_("error cancelling transaction: %s\n"),
863 sbcErrorString(err
));
867 TALLOC_FREE(mem_ctx
);
871 static int net_conf_getparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
872 int argc
, const char **argv
)
876 char *service
= NULL
;
881 mem_ctx
= talloc_stackframe();
883 if (argc
!= 2 || c
->display_usage
) {
884 net_conf_getparm_usage(c
, argc
, argv
);
888 * NULL service name means "dangling parameters" to libsmbconf.
889 * We use the empty string from the command line for this purpose.
891 if (strlen(argv
[0]) != 0) {
892 service
= talloc_strdup(mem_ctx
, argv
[0]);
893 if (service
== NULL
) {
894 d_printf(_("error: out of memory!\n"));
898 param
= strlower_talloc(mem_ctx
, argv
[1]);
900 d_printf(_("error: out of memory!\n"));
904 err
= smbconf_get_parameter(conf_ctx
, mem_ctx
, service
, param
, &valstr
);
905 if (SBC_ERROR_EQUAL(err
, SBC_ERR_NO_SUCH_SERVICE
)) {
907 _("Error: given service '%s' does not exist.\n"),
910 } else if (SBC_ERROR_EQUAL(err
, SBC_ERR_INVALID_PARAM
)) {
912 _("Error: given parameter '%s' is not set.\n"),
915 } else if (!SBC_ERROR_IS_OK(err
)) {
916 d_fprintf(stderr
, _("Error getting value '%s': %s.\n"),
917 param
, sbcErrorString(err
));
921 d_printf("%s\n", valstr
);
925 TALLOC_FREE(mem_ctx
);
929 static int net_conf_delparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
930 int argc
, const char **argv
)
934 char *service
= NULL
;
936 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
938 if (argc
!= 2 || c
->display_usage
) {
939 net_conf_delparm_usage(c
, argc
, argv
);
943 * NULL service name means "dangling parameters" to libsmbconf.
944 * We use the empty string from the command line for this purpose.
946 if (strlen(argv
[0]) != 0) {
947 service
= talloc_strdup(mem_ctx
, argv
[0]);
948 if (service
== NULL
) {
949 d_printf(_("error: out of memory!\n"));
953 param
= strlower_talloc(mem_ctx
, argv
[1]);
955 d_printf("error: out of memory!\n");
959 err
= smbconf_delete_parameter(conf_ctx
, service
, param
);
960 if (SBC_ERROR_EQUAL(err
, SBC_ERR_NO_SUCH_SERVICE
)) {
962 _("Error: given service '%s' does not exist.\n"),
965 } else if (SBC_ERROR_EQUAL(err
, SBC_ERR_INVALID_PARAM
)) {
967 _("Error: given parameter '%s' is not set.\n"),
970 } else if (!SBC_ERROR_IS_OK(err
)) {
971 d_fprintf(stderr
, _("Error deleting value '%s': %s.\n"),
972 param
, sbcErrorString(err
));
979 TALLOC_FREE(mem_ctx
);
983 static int net_conf_getincludes(struct net_context
*c
,
984 struct smbconf_ctx
*conf_ctx
,
985 int argc
, const char **argv
)
988 uint32_t num_includes
;
991 char **includes
= NULL
;
993 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
995 if (argc
!= 1 || c
->display_usage
) {
996 net_conf_getincludes_usage(c
, argc
, argv
);
1000 service
= talloc_strdup(mem_ctx
, argv
[0]);
1001 if (service
== NULL
) {
1002 d_printf(_("error: out of memory!\n"));
1006 err
= smbconf_get_includes(conf_ctx
, mem_ctx
, service
,
1007 &num_includes
, &includes
);
1008 if (!SBC_ERROR_IS_OK(err
)) {
1009 d_printf(_("error getting includes: %s\n"), sbcErrorString(err
));
1013 for (count
= 0; count
< num_includes
; count
++) {
1014 d_printf("include = %s\n", includes
[count
]);
1020 TALLOC_FREE(mem_ctx
);
1024 static int net_conf_setincludes(struct net_context
*c
,
1025 struct smbconf_ctx
*conf_ctx
,
1026 int argc
, const char **argv
)
1030 uint32_t num_includes
;
1031 const char **includes
;
1033 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1035 if (argc
< 1 || c
->display_usage
) {
1036 net_conf_setincludes_usage(c
, argc
, argv
);
1040 service
= talloc_strdup(mem_ctx
, argv
[0]);
1041 if (service
== NULL
) {
1042 d_printf(_("error: out of memory!\n"));
1046 num_includes
= argc
- 1;
1047 if (num_includes
== 0) {
1050 includes
= argv
+ 1;
1053 err
= smbconf_set_includes(conf_ctx
, service
, num_includes
, includes
);
1054 if (!SBC_ERROR_IS_OK(err
)) {
1055 d_printf(_("error setting includes: %s\n"), sbcErrorString(err
));
1062 TALLOC_FREE(mem_ctx
);
1066 static int net_conf_delincludes(struct net_context
*c
,
1067 struct smbconf_ctx
*conf_ctx
,
1068 int argc
, const char **argv
)
1073 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1075 if (argc
!= 1 || c
->display_usage
) {
1076 net_conf_delincludes_usage(c
, argc
, argv
);
1080 service
= talloc_strdup(mem_ctx
, argv
[0]);
1081 if (service
== NULL
) {
1082 d_printf(_("error: out of memory!\n"));
1086 err
= smbconf_delete_includes(conf_ctx
, service
);
1087 if (!SBC_ERROR_IS_OK(err
)) {
1088 d_printf(_("error deleting includes: %s\n"), sbcErrorString(err
));
1095 TALLOC_FREE(mem_ctx
);
1100 /**********************************************************************
1102 * Wrapper and net_conf_run_function mechanism.
1104 **********************************************************************/
1107 * Wrapper function to call the main conf functions.
1108 * The wrapper calls handles opening and closing of the
1111 static int net_conf_wrap_function(struct net_context
*c
,
1112 int (*fn
)(struct net_context
*,
1113 struct smbconf_ctx
*,
1114 int, const char **),
1115 int argc
, const char **argv
)
1118 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1119 struct smbconf_ctx
*conf_ctx
;
1122 err
= smbconf_init(mem_ctx
, &conf_ctx
, "registry:");
1123 if (!SBC_ERROR_IS_OK(err
)) {
1124 talloc_free(mem_ctx
);
1128 ret
= fn(c
, conf_ctx
, argc
, argv
);
1130 smbconf_shutdown(conf_ctx
);
1132 talloc_free(mem_ctx
);
1137 * We need a functable struct of our own, because the
1138 * functions are called through a wrapper that handles
1139 * the opening and closing of the configuration, and so on.
1141 struct conf_functable
{
1142 const char *funcname
;
1143 int (*fn
)(struct net_context
*c
, struct smbconf_ctx
*ctx
, int argc
,
1145 int valid_transports
;
1146 const char *description
;
1151 * This imitates net_run_function but calls the main functions
1152 * through the wrapper net_conf_wrap_function().
1154 static int net_conf_run_function(struct net_context
*c
, int argc
,
1155 const char **argv
, const char *whoami
,
1156 struct conf_functable
*table
)
1161 for (i
=0; table
[i
].funcname
; i
++) {
1162 if (strcasecmp_m(argv
[0], table
[i
].funcname
) == 0)
1163 return net_conf_wrap_function(c
, table
[i
].fn
,
1169 d_printf(_("Usage:\n"));
1170 for (i
=0; table
[i
].funcname
; i
++) {
1171 if (c
->display_usage
== false)
1172 d_printf("%s %-15s %s\n", whoami
, table
[i
].funcname
,
1173 table
[i
].description
);
1175 d_printf("%s\n", table
[i
].usage
);
1178 return c
->display_usage
?0:-1;
1182 * Entry-point for all the CONF functions.
1185 int net_conf(struct net_context
*c
, int argc
, const char **argv
)
1188 struct conf_functable func_table
[] = {
1192 NET_TRANSPORT_LOCAL
,
1193 N_("Dump the complete configuration in smb.conf like "
1195 N_("net conf list\n"
1196 " Dump the complete configuration in smb.conf "
1203 NET_TRANSPORT_LOCAL
,
1204 N_("Import configuration from file in smb.conf "
1206 N_("net conf import\n"
1207 " Import configuration from file in smb.conf "
1212 net_conf_listshares
,
1213 NET_TRANSPORT_LOCAL
,
1214 N_("List the share names."),
1215 N_("net conf listshares\n"
1216 " List the share names.")
1221 NET_TRANSPORT_LOCAL
,
1222 N_("Delete the complete configuration."),
1223 N_("net conf drop\n"
1224 " Delete the complete configuration.")
1229 NET_TRANSPORT_LOCAL
,
1230 N_("Show the definition of a share."),
1231 N_("net conf showshare\n"
1232 " Show the definition of a share.")
1237 NET_TRANSPORT_LOCAL
,
1238 N_("Create a new share."),
1239 N_("net conf addshare\n"
1240 " Create a new share.")
1245 NET_TRANSPORT_LOCAL
,
1246 N_("Delete a share."),
1247 N_("net conf delshare\n"
1253 NET_TRANSPORT_LOCAL
,
1254 N_("Store a parameter."),
1255 N_("net conf setparm\n"
1256 " Store a parameter.")
1261 NET_TRANSPORT_LOCAL
,
1262 N_("Retrieve the value of a parameter."),
1263 N_("net conf getparm\n"
1264 " Retrieve the value of a parameter.")
1269 NET_TRANSPORT_LOCAL
,
1270 N_("Delete a parameter."),
1271 N_("net conf delparm\n"
1272 " Delete a parameter.")
1276 net_conf_getincludes
,
1277 NET_TRANSPORT_LOCAL
,
1278 N_("Show the includes of a share definition."),
1279 N_("net conf getincludes\n"
1280 " Show the includes of a share definition.")
1284 net_conf_setincludes
,
1285 NET_TRANSPORT_LOCAL
,
1286 N_("Set includes for a share."),
1287 N_("net conf setincludes\n"
1288 " Set includes for a share.")
1292 net_conf_delincludes
,
1293 NET_TRANSPORT_LOCAL
,
1294 N_("Delete includes from a share definition."),
1295 N_("net conf delincludes\n"
1296 " Delete includes from a share definition.")
1298 {NULL
, NULL
, 0, NULL
, NULL
}
1301 ret
= net_conf_run_function(c
, argc
, argv
, "net conf", func_table
);