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"));
302 DEBUG(3,("net_conf_import: reading configuration from file %s.\n",
305 conf_source
= talloc_asprintf(mem_ctx
, "file:%s", filename
);
306 if (conf_source
== NULL
) {
307 d_printf(_("error: out of memory!\n"));
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
));
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
,
329 if (!SBC_ERROR_IS_OK(err
)) {
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
));
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
));
347 struct smbconf_service
**services
= NULL
;
348 uint32_t num_shares
, sidx
;
350 err
= smbconf_get_config(txt_ctx
, mem_ctx
,
353 if (!SBC_ERROR_IS_OK(err
)) {
356 if (!c
->opt_testmode
) {
357 if (!SBC_ERROR_IS_OK(smbconf_drop(conf_ctx
))) {
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
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
));
377 for (sidx
= 0; sidx
< num_shares
; sidx
++) {
378 err
= import_process_service(c
, conf_ctx
,
380 if (!SBC_ERROR_IS_OK(err
)) {
381 d_printf(_("error importing service %s: %s\n"),
382 services
[sidx
]->name
,
383 sbcErrorString(err
));
391 err
= smbconf_transaction_commit(conf_ctx
);
392 if (!SBC_ERROR_IS_OK(err
)) {
393 d_printf(_("error committing transaction: "
395 sbcErrorString(err
));
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
));
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
));
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
));
425 TALLOC_FREE(mem_ctx
);
429 static int net_conf_listshares(struct net_context
*c
,
430 struct smbconf_ctx
*conf_ctx
, int argc
,
435 uint32_t count
, num_shares
= 0;
436 char **share_names
= NULL
;
439 mem_ctx
= talloc_stackframe();
441 if (argc
!= 0 || c
->display_usage
) {
442 net_conf_listshares_usage(c
, argc
, argv
);
446 err
= smbconf_get_share_names(conf_ctx
, mem_ctx
, &num_shares
,
448 if (!SBC_ERROR_IS_OK(err
)) {
452 for (count
= 0; count
< num_shares
; count
++)
454 d_printf("%s\n", share_names
[count
]);
460 TALLOC_FREE(mem_ctx
);
464 static int net_conf_drop(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
465 int argc
, const char **argv
)
470 if (argc
!= 0 || c
->display_usage
) {
471 net_conf_drop_usage(c
, argc
, argv
);
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
));
488 static int net_conf_showshare(struct net_context
*c
,
489 struct smbconf_ctx
*conf_ctx
, int argc
,
494 const char *sharename
= NULL
;
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
);
506 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
507 if (sharename
== NULL
) {
508 d_printf("error: out of memory!\n");
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
));
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
]);
529 TALLOC_FREE(mem_ctx
);
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
,
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
);
562 net_conf_addshare_usage(c
, argc
, argv
);
567 if (!strnequal(argv
[3], "guest_ok=", 9)) {
568 net_conf_addshare_usage(c
, argc
, argv
);
571 switch (argv
[3][9]) {
581 net_conf_addshare_usage(c
, argc
, argv
);
585 if (!strnequal(argv
[2], "writeable=", 10)) {
586 net_conf_addshare_usage(c
, argc
, argv
);
589 switch (argv
[2][10]) {
599 net_conf_addshare_usage(c
, argc
, argv
);
604 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
605 if (sharename
== NULL
) {
606 d_printf(_("error: out of memory!\n"));
617 /* validate share name */
619 if (!validate_net_name(sharename
, INVALID_SHARENAME_CHARS
,
622 d_fprintf(stderr
, _("ERROR: share name %s contains "
623 "invalid characters (any of %s)\n"),
624 sharename
, INVALID_SHARENAME_CHARS
);
628 if (strequal(sharename
, GLOBAL_NAME
)) {
630 _("ERROR: 'global' is not a valid share name.\n"));
634 if (smbconf_share_exists(conf_ctx
, sharename
)) {
635 d_fprintf(stderr
, _("ERROR: share %s already exists.\n"),
642 if (path
[0] != '/') {
644 _("Error: path '%s' is not an absolute path.\n"),
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
));
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
));
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
));
682 if (comment
!= NULL
) {
683 err
= smbconf_set_parameter(conf_ctx
, sharename
, "comment",
685 if (!SBC_ERROR_IS_OK(err
)) {
686 d_fprintf(stderr
, _("Error setting parameter %s: %s\n"),
687 "comment", sbcErrorString(err
));
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
));
699 err
= smbconf_set_parameter(conf_ctx
, sharename
, "writeable",
701 if (!SBC_ERROR_IS_OK(err
)) {
702 d_fprintf(stderr
, _("Error setting parameter %s: %s\n"),
703 "writeable", sbcErrorString(err
));
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
));
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
));
729 TALLOC_FREE(mem_ctx
);
733 static int net_conf_delshare(struct net_context
*c
,
734 struct smbconf_ctx
*conf_ctx
, int argc
,
738 const char *sharename
= NULL
;
740 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
742 if (argc
!= 1 || c
->display_usage
) {
743 net_conf_delshare_usage(c
, argc
, argv
);
746 sharename
= talloc_strdup(mem_ctx
, argv
[0]);
747 if (sharename
== NULL
) {
748 d_printf(_("error: out of memory!\n"));
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
));
761 TALLOC_FREE(mem_ctx
);
765 static int net_conf_setparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
766 int argc
, const char **argv
)
770 char *service
= 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
);
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"));
790 param
= strlower_talloc(mem_ctx
, argv
[1]);
792 d_printf(_("error: out of memory!\n"));
797 if (!net_conf_param_valid(service
,param
, value_str
)) {
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
));
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
));
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
));
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
));
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
));
842 TALLOC_FREE(mem_ctx
);
846 static int net_conf_getparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
847 int argc
, const char **argv
)
851 char *service
= NULL
;
856 mem_ctx
= talloc_stackframe();
858 if (argc
!= 2 || c
->display_usage
) {
859 net_conf_getparm_usage(c
, argc
, argv
);
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"));
873 param
= strlower_talloc(mem_ctx
, argv
[1]);
875 d_printf(_("error: out of memory!\n"));
879 err
= smbconf_get_parameter(conf_ctx
, mem_ctx
, service
, param
, &valstr
);
880 if (SBC_ERROR_EQUAL(err
, SBC_ERR_NO_SUCH_SERVICE
)) {
882 _("Error: given service '%s' does not exist.\n"),
885 } else if (SBC_ERROR_EQUAL(err
, SBC_ERR_INVALID_PARAM
)) {
887 _("Error: given parameter '%s' is not set.\n"),
890 } else if (!SBC_ERROR_IS_OK(err
)) {
891 d_fprintf(stderr
, _("Error getting value '%s': %s.\n"),
892 param
, sbcErrorString(err
));
896 d_printf("%s\n", valstr
);
900 TALLOC_FREE(mem_ctx
);
904 static int net_conf_delparm(struct net_context
*c
, struct smbconf_ctx
*conf_ctx
,
905 int argc
, const char **argv
)
909 char *service
= NULL
;
911 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
913 if (argc
!= 2 || c
->display_usage
) {
914 net_conf_delparm_usage(c
, argc
, argv
);
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"));
928 param
= strlower_talloc(mem_ctx
, argv
[1]);
930 d_printf("error: out of memory!\n");
934 err
= smbconf_delete_parameter(conf_ctx
, service
, param
);
935 if (SBC_ERROR_EQUAL(err
, SBC_ERR_NO_SUCH_SERVICE
)) {
937 _("Error: given service '%s' does not exist.\n"),
940 } else if (SBC_ERROR_EQUAL(err
, SBC_ERR_INVALID_PARAM
)) {
942 _("Error: given parameter '%s' is not set.\n"),
945 } else if (!SBC_ERROR_IS_OK(err
)) {
946 d_fprintf(stderr
, _("Error deleting value '%s': %s.\n"),
947 param
, sbcErrorString(err
));
954 TALLOC_FREE(mem_ctx
);
958 static int net_conf_getincludes(struct net_context
*c
,
959 struct smbconf_ctx
*conf_ctx
,
960 int argc
, const char **argv
)
963 uint32_t num_includes
;
966 char **includes
= NULL
;
968 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
970 if (argc
!= 1 || c
->display_usage
) {
971 net_conf_getincludes_usage(c
, argc
, argv
);
975 service
= talloc_strdup(mem_ctx
, argv
[0]);
976 if (service
== NULL
) {
977 d_printf(_("error: out of memory!\n"));
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
));
988 for (count
= 0; count
< num_includes
; count
++) {
989 d_printf("include = %s\n", includes
[count
]);
995 TALLOC_FREE(mem_ctx
);
999 static int net_conf_setincludes(struct net_context
*c
,
1000 struct smbconf_ctx
*conf_ctx
,
1001 int argc
, const char **argv
)
1005 uint32_t num_includes
;
1006 const char **includes
;
1008 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1010 if (argc
< 1 || c
->display_usage
) {
1011 net_conf_setincludes_usage(c
, argc
, argv
);
1015 service
= talloc_strdup(mem_ctx
, argv
[0]);
1016 if (service
== NULL
) {
1017 d_printf(_("error: out of memory!\n"));
1021 num_includes
= argc
- 1;
1022 if (num_includes
== 0) {
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
));
1037 TALLOC_FREE(mem_ctx
);
1041 static int net_conf_delincludes(struct net_context
*c
,
1042 struct smbconf_ctx
*conf_ctx
,
1043 int argc
, const char **argv
)
1048 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1050 if (argc
!= 1 || c
->display_usage
) {
1051 net_conf_delincludes_usage(c
, argc
, argv
);
1055 service
= talloc_strdup(mem_ctx
, argv
[0]);
1056 if (service
== NULL
) {
1057 d_printf(_("error: out of memory!\n"));
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
));
1070 TALLOC_FREE(mem_ctx
);
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
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
)
1093 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
1094 struct smbconf_ctx
*conf_ctx
;
1097 err
= smbconf_init(mem_ctx
, &conf_ctx
, "registry:");
1098 if (!SBC_ERROR_IS_OK(err
)) {
1099 talloc_free(mem_ctx
);
1103 ret
= fn(c
, conf_ctx
, argc
, argv
);
1105 smbconf_shutdown(conf_ctx
);
1107 talloc_free(mem_ctx
);
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
,
1120 int valid_transports
;
1121 const char *description
;
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
)
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
,
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
);
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
)
1163 struct conf_functable func_table
[] = {
1167 NET_TRANSPORT_LOCAL
,
1168 N_("Dump the complete configuration in smb.conf like "
1170 N_("net conf list\n"
1171 " Dump the complete configuration in smb.conf "
1178 NET_TRANSPORT_LOCAL
,
1179 N_("Import configuration from file in smb.conf "
1181 N_("net conf import\n"
1182 " Import configuration from file in smb.conf "
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.")
1196 NET_TRANSPORT_LOCAL
,
1197 N_("Delete the complete configuration."),
1198 N_("net conf drop\n"
1199 " Delete the complete configuration.")
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.")
1212 NET_TRANSPORT_LOCAL
,
1213 N_("Create a new share."),
1214 N_("net conf addshare\n"
1215 " Create a new share.")
1220 NET_TRANSPORT_LOCAL
,
1221 N_("Delete a share."),
1222 N_("net conf delshare\n"
1228 NET_TRANSPORT_LOCAL
,
1229 N_("Store a parameter."),
1230 N_("net conf setparm\n"
1231 " Store a parameter.")
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.")
1244 NET_TRANSPORT_LOCAL
,
1245 N_("Delete a parameter."),
1246 N_("net conf delparm\n"
1247 " Delete a parameter.")
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.")
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.")
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
);