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 "utils/net.h"
33 /**********************************************************************
37 **********************************************************************/
39 static int net_conf_list_usage(struct net_context
*c
, int argc
,
42 d_printf("USAGE: net conf list\n");
46 static int net_conf_import_usage(struct net_context
*c
, int argc
,
49 d_printf("USAGE: net conf import [--test|-T] <filename> "
51 "\t[--test|-T] testmode - do not act, just print "
52 "what would be done\n"
53 "\t<servicename> only import service <servicename>, "
58 static int net_conf_listshares_usage(struct net_context
*c
, int argc
,
61 d_printf("USAGE: net conf listshares\n");
65 static int net_conf_drop_usage(struct net_context
*c
, int argc
,
68 d_printf("USAGE: net conf drop\n");
72 static int net_conf_showshare_usage(struct net_context
*c
, int argc
,
75 d_printf("USAGE: net conf showshare <sharename>\n");
79 static int net_conf_addshare_usage(struct net_context
*c
, int argc
,
82 d_printf("USAGE: net conf addshare <sharename> <path> "
83 "[writeable={y|N} [guest_ok={y|N} [<comment>]]\n"
84 "\t<sharename> the new share name.\n"
85 "\t<path> the path on the filesystem to export.\n"
86 "\twriteable={y|N} set \"writeable to \"yes\" or "
87 "\"no\" (default) on this share.\n"
88 "\tguest_ok={y|N} set \"guest ok\" to \"yes\" or "
89 "\"no\" (default) on this share.\n"
90 "\t<comment> optional comment for the new share.\n");
94 static int net_conf_delshare_usage(struct net_context
*c
, int argc
,
97 d_printf("USAGE: net conf delshare <sharename>\n");
101 static int net_conf_setparm_usage(struct net_context
*c
, int argc
,
104 d_printf("USAGE: net conf setparm <section> <param> <value>\n");
108 static int net_conf_getparm_usage(struct net_context
*c
, int argc
,
111 d_printf("USAGE: net conf getparm <section> <param>\n");
115 static int net_conf_delparm_usage(struct net_context
*c
, int argc
,
118 d_printf("USAGE: net conf delparm <section> <param>\n");
122 static int net_conf_getincludes_usage(struct net_context
*c
, int argc
,
125 d_printf("USAGE: net conf getincludes <section>\n");
129 static int net_conf_setincludes_usage(struct net_context
*c
, int argc
,
132 d_printf("USAGE: net conf setincludes <section> [<filename>]*\n");
136 static int net_conf_delincludes_usage(struct net_context
*c
, int argc
,
139 d_printf("USAGE: net conf delincludes <section>\n");
144 /**********************************************************************
148 **********************************************************************/
151 * This functions process a service previously loaded with libsmbconf.
153 static WERROR
import_process_service(struct net_context
*c
,
154 struct smbconf_ctx
*conf_ctx
,
155 struct smbconf_service
*service
)
158 WERROR werr
= WERR_OK
;
159 uint32_t num_includes
= 0;
160 char **includes
= NULL
;
161 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
163 if (c
->opt_testmode
) {
164 const char *indent
= "";
165 if (service
->name
!= NULL
) {
166 d_printf("[%s]\n", service
->name
);
169 for (idx
= 0; idx
< service
->num_params
; idx
++) {
170 d_printf("%s%s = %s\n", indent
,
171 service
->param_names
[idx
],
172 service
->param_values
[idx
]);
178 if (smbconf_share_exists(conf_ctx
, service
->name
)) {
179 werr
= smbconf_delete_share(conf_ctx
, service
->name
);
180 if (!W_ERROR_IS_OK(werr
)) {
184 werr
= smbconf_create_share(conf_ctx
, service
->name
);
185 if (!W_ERROR_IS_OK(werr
)) {
189 for (idx
= 0; idx
< service
->num_params
; idx
++) {
190 if (strequal(service
->param_names
[idx
], "include")) {
191 includes
= TALLOC_REALLOC_ARRAY(mem_ctx
,
195 if (includes
== NULL
) {
199 includes
[num_includes
] = talloc_strdup(includes
,
200 service
->param_values
[idx
]);
201 if (includes
[num_includes
] == NULL
) {
207 werr
= smbconf_set_parameter(conf_ctx
,
209 service
->param_names
[idx
],
210 service
->param_values
[idx
]);
211 if (!W_ERROR_IS_OK(werr
)) {
217 werr
= smbconf_set_includes(conf_ctx
, service
->name
, num_includes
,
218 (const char **)includes
);
221 TALLOC_FREE(mem_ctx
);
226 /**********************************************************************
228 * the main conf functions
230 **********************************************************************/
232 static int net_conf_list(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
233 int argc
, const char **argv
)
235 WERROR werr
= WERR_OK
;
239 uint32_t share_count
, param_count
;
240 struct smbconf_service
**shares
= NULL
;
242 mem_ctx
= talloc_stackframe();
244 if (argc
!= 0 || c
->display_usage
) {
245 net_conf_list_usage(c
, argc
, argv
);
249 werr
= smbconf_get_config(conf_ctx
, mem_ctx
, &num_shares
, &shares
);
250 if (!W_ERROR_IS_OK(werr
)) {
251 d_fprintf(stderr
, "Error getting config: %s\n",
256 for (share_count
= 0; share_count
< num_shares
; share_count
++) {
257 const char *indent
= "";
258 if (shares
[share_count
]->name
!= NULL
) {
259 d_printf("[%s]\n", shares
[share_count
]->name
);
262 for (param_count
= 0;
263 param_count
< shares
[share_count
]->num_params
;
266 d_printf("%s%s = %s\n",
268 shares
[share_count
]->param_names
[param_count
],
269 shares
[share_count
]->param_values
[param_count
]);
277 TALLOC_FREE(mem_ctx
);
281 static int net_conf_import(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
282 int argc
, const char **argv
)
285 const char *filename
= NULL
;
286 const char *servicename
= NULL
;
287 char *conf_source
= NULL
;
289 struct smbconf_ctx
*txt_ctx
;
292 if (c
->display_usage
)
293 return net_conf_import_usage(c
, argc
, argv
);
295 mem_ctx
= talloc_stackframe();
300 net_conf_import_usage(c
, argc
, argv
);
303 servicename
= talloc_strdup(mem_ctx
, argv
[1]);
304 if (servicename
== NULL
) {
305 d_printf("error: out of memory!\n");
313 DEBUG(3,("net_conf_import: reading configuration from file %s.\n",
316 conf_source
= talloc_asprintf(mem_ctx
, "file:%s", filename
);
317 if (conf_source
== NULL
) {
318 d_printf("error: out of memory!\n");
322 werr
= smbconf_init(mem_ctx
, &txt_ctx
, conf_source
);
323 if (!W_ERROR_IS_OK(werr
)) {
324 d_printf("error loading file '%s': %s\n", filename
,
329 if (c
->opt_testmode
) {
330 d_printf("\nTEST MODE - "
331 "would import the following configuration:\n\n");
334 if (servicename
!= NULL
) {
335 struct smbconf_service
*service
= NULL
;
337 werr
= smbconf_get_share(txt_ctx
, mem_ctx
,
340 if (!W_ERROR_IS_OK(werr
)) {
344 werr
= smbconf_transaction_start(conf_ctx
);
345 if (!W_ERROR_IS_OK(werr
)) {
346 d_printf("error starting transaction: %s\n",
351 werr
= import_process_service(c
, conf_ctx
, service
);
352 if (!W_ERROR_IS_OK(werr
)) {
356 struct smbconf_service
**services
= NULL
;
357 uint32_t num_shares
, sidx
;
359 werr
= smbconf_get_config(txt_ctx
, mem_ctx
,
362 if (!W_ERROR_IS_OK(werr
)) {
365 if (!c
->opt_testmode
) {
366 werr
= smbconf_drop(conf_ctx
);
367 if (!W_ERROR_IS_OK(werr
)) {
373 * Wrap the importing of shares into a transaction,
374 * but only 100 at a time, in order to serve memory.
375 * The allocated memory accumulates across the actions
376 * within the transaction, and for me, some 1500
377 * imported shares, the MAX_TALLOC_SIZE of 256 MB
380 werr
= smbconf_transaction_start(conf_ctx
);
381 if (!W_ERROR_IS_OK(werr
)) {
382 d_printf("error starting transaction: %s\n",
387 for (sidx
= 0; sidx
< num_shares
; sidx
++) {
388 werr
= import_process_service(c
, conf_ctx
,
390 if (!W_ERROR_IS_OK(werr
)) {
398 werr
= smbconf_transaction_commit(conf_ctx
);
399 if (!W_ERROR_IS_OK(werr
)) {
400 d_printf("error committing transaction: %s\n",
404 werr
= smbconf_transaction_start(conf_ctx
);
405 if (!W_ERROR_IS_OK(werr
)) {
406 d_printf("error starting transaction: %s\n",
413 werr
= smbconf_transaction_commit(conf_ctx
);
414 if (!W_ERROR_IS_OK(werr
)) {
415 d_printf("error committing transaction: %s\n",
424 werr
= smbconf_transaction_cancel(conf_ctx
);
425 if (!W_ERROR_IS_OK(werr
)) {
426 d_printf("error cancelling transaction: %s\n",
431 TALLOC_FREE(mem_ctx
);
435 static int net_conf_listshares(struct net_context
*c
,
436 struct smbconf_ctx
*conf_ctx
, int argc
,
439 WERROR werr
= WERR_OK
;
441 uint32_t count
, num_shares
= 0;
442 char **share_names
= NULL
;
445 mem_ctx
= talloc_stackframe();
447 if (argc
!= 0 || c
->display_usage
) {
448 net_conf_listshares_usage(c
, argc
, argv
);
452 werr
= smbconf_get_share_names(conf_ctx
, mem_ctx
, &num_shares
,
454 if (!W_ERROR_IS_OK(werr
)) {
458 for (count
= 0; count
< num_shares
; count
++)
460 d_printf("%s\n", share_names
[count
]);
466 TALLOC_FREE(mem_ctx
);
470 static int net_conf_drop(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
471 int argc
, const char **argv
)
476 if (argc
!= 0 || c
->display_usage
) {
477 net_conf_drop_usage(c
, argc
, argv
);
481 werr
= smbconf_drop(conf_ctx
);
482 if (!W_ERROR_IS_OK(werr
)) {
483 d_fprintf(stderr
, "Error deleting configuration: %s\n",
494 static int net_conf_showshare(struct net_context
*c
,
495 struct smbconf_ctx
*conf_ctx
, int argc
,
499 WERROR werr
= WERR_OK
;
500 const char *sharename
= NULL
;
503 struct smbconf_service
*service
= NULL
;
505 mem_ctx
= talloc_stackframe();
507 if (argc
!= 1 || c
->display_usage
) {
508 net_conf_showshare_usage(c
, argc
, argv
);
512 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
513 if (sharename
== NULL
) {
514 d_printf("error: out of memory!\n");
518 werr
= smbconf_get_share(conf_ctx
, mem_ctx
, sharename
, &service
);
519 if (!W_ERROR_IS_OK(werr
)) {
520 d_printf("error getting share parameters: %s\n",
525 d_printf("[%s]\n", service
->name
);
527 for (count
= 0; count
< service
->num_params
; count
++) {
528 d_printf("\t%s = %s\n", service
->param_names
[count
],
529 service
->param_values
[count
]);
535 TALLOC_FREE(mem_ctx
);
540 * Add a share, with a couple of standard parameters, partly optional.
542 * This is a high level utility function of the net conf utility,
543 * not a direct frontend to the smbconf API.
545 static int net_conf_addshare(struct net_context
*c
,
546 struct smbconf_ctx
*conf_ctx
, int argc
,
550 WERROR werr
= WERR_OK
;
551 char *sharename
= NULL
;
552 const char *path
= NULL
;
553 const char *comment
= NULL
;
554 const char *guest_ok
= "no";
555 const char *writeable
= "no";
556 SMB_STRUCT_STAT sbuf
;
557 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
559 if (c
->display_usage
) {
560 net_conf_addshare_usage(c
, argc
, argv
);
569 net_conf_addshare_usage(c
, argc
, argv
);
574 if (!strnequal(argv
[3], "guest_ok=", 9)) {
575 net_conf_addshare_usage(c
, argc
, argv
);
578 switch (argv
[3][9]) {
588 net_conf_addshare_usage(c
, argc
, argv
);
592 if (!strnequal(argv
[2], "writeable=", 10)) {
593 net_conf_addshare_usage(c
, argc
, argv
);
596 switch (argv
[2][10]) {
606 net_conf_addshare_usage(c
, argc
, argv
);
611 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
612 if (sharename
== NULL
) {
613 d_printf("error: out of memory!\n");
624 /* validate share name */
626 if (!validate_net_name(sharename
, INVALID_SHARENAME_CHARS
,
629 d_fprintf(stderr
, "ERROR: share name %s contains "
630 "invalid characters (any of %s)\n",
631 sharename
, INVALID_SHARENAME_CHARS
);
635 if (strequal(sharename
, GLOBAL_NAME
)) {
637 "ERROR: 'global' is not a valid share name.\n");
641 if (smbconf_share_exists(conf_ctx
, sharename
)) {
642 d_fprintf(stderr
, "ERROR: share %s already exists.\n",
649 if (path
[0] != '/') {
651 "Error: path '%s' is not an absolute path.\n",
656 if (sys_stat(path
, &sbuf
) != 0) {
658 "ERROR: cannot stat path '%s' to ensure "
659 "this is a directory.\n"
661 path
, strerror(errno
));
665 if (!S_ISDIR(sbuf
.st_mode
)) {
667 "ERROR: path '%s' is not a directory.\n",
676 werr
= smbconf_create_share(conf_ctx
, sharename
);
677 if (!W_ERROR_IS_OK(werr
)) {
678 d_fprintf(stderr
, "Error creating share %s: %s\n",
679 sharename
, dos_errstr(werr
));
684 * fill the share with parameters
687 werr
= smbconf_set_parameter(conf_ctx
, sharename
, "path", path
);
688 if (!W_ERROR_IS_OK(werr
)) {
689 d_fprintf(stderr
, "Error setting parameter %s: %s\n",
690 "path", dos_errstr(werr
));
694 if (comment
!= NULL
) {
695 werr
= smbconf_set_parameter(conf_ctx
, sharename
, "comment",
697 if (!W_ERROR_IS_OK(werr
)) {
698 d_fprintf(stderr
, "Error setting parameter %s: %s\n",
699 "comment", dos_errstr(werr
));
704 werr
= smbconf_set_parameter(conf_ctx
, sharename
, "guest ok", guest_ok
);
705 if (!W_ERROR_IS_OK(werr
)) {
706 d_fprintf(stderr
, "Error setting parameter %s: %s\n",
707 "'guest ok'", dos_errstr(werr
));
711 werr
= smbconf_set_parameter(conf_ctx
, sharename
, "writeable",
713 if (!W_ERROR_IS_OK(werr
)) {
714 d_fprintf(stderr
, "Error setting parameter %s: %s\n",
715 "writeable", dos_errstr(werr
));
722 TALLOC_FREE(mem_ctx
);
726 static int net_conf_delshare(struct net_context
*c
,
727 struct smbconf_ctx
*conf_ctx
, int argc
,
731 const char *sharename
= NULL
;
732 WERROR werr
= WERR_OK
;
733 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
735 if (argc
!= 1 || c
->display_usage
) {
736 net_conf_delshare_usage(c
, argc
, argv
);
739 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
740 if (sharename
== NULL
) {
741 d_printf("error: out of memory!\n");
745 werr
= smbconf_delete_share(conf_ctx
, sharename
);
746 if (!W_ERROR_IS_OK(werr
)) {
747 d_fprintf(stderr
, "Error deleting share %s: %s\n",
748 sharename
, dos_errstr(werr
));
754 TALLOC_FREE(mem_ctx
);
758 static int net_conf_setparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
759 int argc
, const char **argv
)
762 WERROR werr
= WERR_OK
;
763 char *service
= NULL
;
765 const char *value_str
= NULL
;
766 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
768 if (argc
!= 3 || c
->display_usage
) {
769 net_conf_setparm_usage(c
, argc
, argv
);
772 service
= talloc_strdup(mem_ctx
, argv
[0]);
773 if (service
== NULL
) {
774 d_printf("error: out of memory!\n");
777 param
= talloc_strdup_lower(mem_ctx
, argv
[1]);
779 d_printf("error: out of memory!\n");
784 if (!smbconf_share_exists(conf_ctx
, service
)) {
785 werr
= smbconf_create_share(conf_ctx
, service
);
786 if (!W_ERROR_IS_OK(werr
)) {
787 d_fprintf(stderr
, "Error creating share '%s': %s\n",
788 service
, dos_errstr(werr
));
793 werr
= smbconf_set_parameter(conf_ctx
, service
, param
, value_str
);
795 if (!W_ERROR_IS_OK(werr
)) {
796 d_fprintf(stderr
, "Error setting value '%s': %s\n",
797 param
, dos_errstr(werr
));
804 TALLOC_FREE(mem_ctx
);
808 static int net_conf_getparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
809 int argc
, const char **argv
)
812 WERROR werr
= WERR_OK
;
813 char *service
= NULL
;
818 mem_ctx
= talloc_stackframe();
820 if (argc
!= 2 || c
->display_usage
) {
821 net_conf_getparm_usage(c
, argc
, argv
);
824 service
= talloc_strdup(mem_ctx
, argv
[0]);
825 if (service
== NULL
) {
826 d_printf("error: out of memory!\n");
829 param
= talloc_strdup_lower(mem_ctx
, argv
[1]);
831 d_printf("error: out of memory!\n");
835 werr
= smbconf_get_parameter(conf_ctx
, mem_ctx
, service
, param
, &valstr
);
837 if (W_ERROR_EQUAL(werr
, WERR_NO_SUCH_SERVICE
)) {
839 "Error: given service '%s' does not exist.\n",
842 } else if (W_ERROR_EQUAL(werr
, WERR_INVALID_PARAM
)) {
844 "Error: given parameter '%s' is not set.\n",
847 } else if (!W_ERROR_IS_OK(werr
)) {
848 d_fprintf(stderr
, "Error getting value '%s': %s.\n",
849 param
, dos_errstr(werr
));
853 d_printf("%s\n", valstr
);
857 TALLOC_FREE(mem_ctx
);
861 static int net_conf_delparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
862 int argc
, const char **argv
)
865 WERROR werr
= WERR_OK
;
866 char *service
= NULL
;
868 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
870 if (argc
!= 2 || c
->display_usage
) {
871 net_conf_delparm_usage(c
, argc
, argv
);
874 service
= talloc_strdup(mem_ctx
, argv
[0]);
875 if (service
== NULL
) {
876 d_printf("error: out of memory!\n");
879 param
= talloc_strdup_lower(mem_ctx
, argv
[1]);
881 d_printf("error: out of memory!\n");
885 werr
= smbconf_delete_parameter(conf_ctx
, service
, param
);
887 if (W_ERROR_EQUAL(werr
, WERR_NO_SUCH_SERVICE
)) {
889 "Error: given service '%s' does not exist.\n",
892 } else if (W_ERROR_EQUAL(werr
, WERR_INVALID_PARAM
)) {
894 "Error: given parameter '%s' is not set.\n",
897 } else if (!W_ERROR_IS_OK(werr
)) {
898 d_fprintf(stderr
, "Error deleting value '%s': %s.\n",
899 param
, dos_errstr(werr
));
906 TALLOC_FREE(mem_ctx
);
910 static int net_conf_getincludes(struct net_context
*c
,
911 struct smbconf_ctx
*conf_ctx
,
912 int argc
, const char **argv
)
915 uint32_t num_includes
;
918 char **includes
= NULL
;
920 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
922 if (argc
!= 1 || c
->display_usage
) {
923 net_conf_getincludes_usage(c
, argc
, argv
);
927 service
= talloc_strdup(mem_ctx
, argv
[0]);
928 if (service
== NULL
) {
929 d_printf("error: out of memory!\n");
933 werr
= smbconf_get_includes(conf_ctx
, mem_ctx
, service
,
934 &num_includes
, &includes
);
935 if (!W_ERROR_IS_OK(werr
)) {
936 d_printf("error getting includes: %s\n", dos_errstr(werr
));
940 for (count
= 0; count
< num_includes
; count
++) {
941 d_printf("include = %s\n", includes
[count
]);
947 TALLOC_FREE(mem_ctx
);
951 static int net_conf_setincludes(struct net_context
*c
,
952 struct smbconf_ctx
*conf_ctx
,
953 int argc
, const char **argv
)
957 uint32_t num_includes
;
958 const char **includes
;
960 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
962 if (argc
< 1 || c
->display_usage
) {
963 net_conf_setincludes_usage(c
, argc
, argv
);
967 service
= talloc_strdup(mem_ctx
, argv
[0]);
968 if (service
== NULL
) {
969 d_printf("error: out of memory!\n");
973 num_includes
= argc
- 1;
974 if (num_includes
== 0) {
980 werr
= smbconf_set_includes(conf_ctx
, service
, num_includes
, includes
);
981 if (!W_ERROR_IS_OK(werr
)) {
982 d_printf("error setting includes: %s\n", dos_errstr(werr
));
989 TALLOC_FREE(mem_ctx
);
993 static int net_conf_delincludes(struct net_context
*c
,
994 struct smbconf_ctx
*conf_ctx
,
995 int argc
, const char **argv
)
1000 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1002 if (argc
!= 1 || c
->display_usage
) {
1003 net_conf_delincludes_usage(c
, argc
, argv
);
1007 service
= talloc_strdup(mem_ctx
, argv
[0]);
1008 if (service
== NULL
) {
1009 d_printf("error: out of memory!\n");
1013 werr
= smbconf_delete_includes(conf_ctx
, service
);
1014 if (!W_ERROR_IS_OK(werr
)) {
1015 d_printf("error deleting includes: %s\n", dos_errstr(werr
));
1022 TALLOC_FREE(mem_ctx
);
1027 /**********************************************************************
1029 * Wrapper and net_conf_run_function mechanism.
1031 **********************************************************************/
1034 * Wrapper function to call the main conf functions.
1035 * The wrapper calls handles opening and closing of the
1038 static int net_conf_wrap_function(struct net_context
*c
,
1039 int (*fn
)(struct net_context
*,
1040 struct smbconf_ctx
*,
1041 int, const char **),
1042 int argc
, const char **argv
)
1045 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1046 struct smbconf_ctx
*conf_ctx
;
1049 werr
= smbconf_init(mem_ctx
, &conf_ctx
, "registry:");
1051 if (!W_ERROR_IS_OK(werr
)) {
1055 ret
= fn(c
, conf_ctx
, argc
, argv
);
1057 smbconf_shutdown(conf_ctx
);
1063 * We need a functable struct of our own, because the
1064 * functions are called through a wrapper that handles
1065 * the opening and closing of the configuration, and so on.
1067 struct conf_functable
{
1068 const char *funcname
;
1069 int (*fn
)(struct net_context
*c
, struct smbconf_ctx
*ctx
, int argc
,
1071 int valid_transports
;
1072 const char *description
;
1077 * This imitates net_run_function but calls the main functions
1078 * through the wrapper net_conf_wrap_function().
1080 static int net_conf_run_function(struct net_context
*c
, int argc
,
1081 const char **argv
, const char *whoami
,
1082 struct conf_functable
*table
)
1087 for (i
=0; table
[i
].funcname
; i
++) {
1088 if (StrCaseCmp(argv
[0], table
[i
].funcname
) == 0)
1089 return net_conf_wrap_function(c
, table
[i
].fn
,
1095 d_printf("Usage:\n");
1096 for (i
=0; table
[i
].funcname
; i
++) {
1097 if (c
->display_usage
== false)
1098 d_printf("%s %-15s %s\n", whoami
, table
[i
].funcname
,
1099 table
[i
].description
);
1101 d_printf("%s\n", table
[i
].usage
);
1104 return c
->display_usage
?0:-1;
1108 * Entry-point for all the CONF functions.
1111 int net_conf(struct net_context
*c
, int argc
, const char **argv
)
1114 struct conf_functable func_table
[] = {
1118 NET_TRANSPORT_LOCAL
,
1119 "Dump the complete configuration in smb.conf like "
1122 " Dump the complete configuration in smb.conf like "
1129 NET_TRANSPORT_LOCAL
,
1130 "Import configuration from file in smb.conf format.",
1132 " Import configuration from file in smb.conf format."
1136 net_conf_listshares
,
1137 NET_TRANSPORT_LOCAL
,
1138 "List the share names.",
1139 "net conf listshares\n"
1140 " List the share names."
1145 NET_TRANSPORT_LOCAL
,
1146 "Delete the complete configuration.",
1148 " Delete the complete configuration."
1153 NET_TRANSPORT_LOCAL
,
1154 "Show the definition of a share.",
1155 "net conf showshare\n"
1156 " Show the definition of a share."
1161 NET_TRANSPORT_LOCAL
,
1162 "Create a new share.",
1163 "net conf addshare\n"
1164 " Create a new share."
1169 NET_TRANSPORT_LOCAL
,
1171 "net conf delshare\n"
1177 NET_TRANSPORT_LOCAL
,
1178 "Store a parameter.",
1179 "net conf setparm\n"
1180 " Store a parameter."
1185 NET_TRANSPORT_LOCAL
,
1186 "Retrieve the value of a parameter.",
1187 "net conf getparm\n"
1188 " Retrieve the value of a parameter."
1193 NET_TRANSPORT_LOCAL
,
1194 "Delete a parameter.",
1195 "net conf delparm\n"
1196 " Delete a parameter."
1200 net_conf_getincludes
,
1201 NET_TRANSPORT_LOCAL
,
1202 "Show the includes of a share definition.",
1203 "net conf getincludes\n"
1204 " Show the includes of a share definition."
1208 net_conf_setincludes
,
1209 NET_TRANSPORT_LOCAL
,
1210 "Set includes for a share.",
1211 "net conf setincludes\n"
1212 " Set includes for a share."
1216 net_conf_delincludes
,
1217 NET_TRANSPORT_LOCAL
,
1218 "Delete includes from a share definition.",
1219 "net conf setincludes\n"
1220 " Delete includes from a share definition."
1222 {NULL
, NULL
, 0, NULL
, NULL
}
1225 ret
= net_conf_run_function(c
, argc
, argv
, "net conf", func_table
);