2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
4 Copyright (C) 2001 Steve French (sfrench@us.ibm.com)
5 Copyright (C) 2001 Jim McDonough (jmcd@us.ibm.com)
6 Copyright (C) 2001 Andrew Tridgell (tridge@samba.org)
7 Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
8 Copyright (C) 2004 Stefan Metzmacher (metze@samba.org)
10 Largely rewritten by metze in August 2004
12 Originally written by Steve and Jim. Largely rewritten by tridge in
15 Reworked again by abartlet in December 2001
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License, or
20 (at your option) any later version.
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 /*****************************************************/
34 /* Distributed SMB/CIFS Server Management Utility */
36 /* The intent was to make the syntax similar */
37 /* to the NET utility (first developed in DOS */
38 /* with additional interesting & useful functions */
39 /* added in later SMB server network operating */
42 /*****************************************************/
47 run a function from a function table. If not found then
48 call the specified usage function
50 int net_run_function(struct net_context *ctx,
51 int argc, const char **argv,
52 const struct net_functable *functable,
53 int (*usage_fn)(struct net_context *ctx, int argc, const char **argv))
58 d_printf("Usage: \n");
59 return usage_fn(ctx, argc, argv);
62 for (i=0; functable[i].name; i++) {
63 if (StrCaseCmp(argv[0], functable[i].name) == 0)
64 return functable[i].fn(ctx, argc-1, argv+1);
67 d_printf("No command: %s\n", argv[0]);
68 return usage_fn(ctx, argc, argv);
72 run a usage function from a function table. If not found then fail
74 int net_run_usage(struct net_context *ctx,
75 int argc, const char **argv,
76 const struct net_functable *functable)
81 d_printf("net_run_usage: TODO (argc < 1)\n");
85 for (i=0; functable[i].name; i++) {
86 if (StrCaseCmp(argv[0], functable[i].name) == 0)
87 if (functable[i].usage) {
88 return functable[i].usage(ctx, argc-1, argv+1);
92 d_printf("No usage for command: %s\n", argv[0]);
98 run a usage function from a function table. If not found then fail
100 int net_run_help(struct net_context *ctx,
101 int argc, const char **argv,
102 const struct net_functable *functable)
107 d_printf("net_run_help: TODO (argc < 1)\n");
111 for (i=0; functable[i].name; i++) {
112 if (StrCaseCmp(argv[0], functable[i].name) == 0)
113 if (functable[i].help) {
114 return functable[i].help(ctx, argc-1, argv+1);
118 d_printf("No help for command: %s\n", argv[0]);
123 static int net_help(struct net_context *ctx, int argc, const char **argv)
125 d_printf("net_help: TODO\n");
129 static int net_help_usage(struct net_context *ctx, int argc, const char **argv)
131 d_printf("net_help_usage: TODO\n");
135 /* main function table */
136 static const struct net_functable const net_functable[] = {
137 {"password", net_password, net_password_usage, net_password_help},
138 {"time", net_time, net_time_usage, net_time_help},
140 {"help", net_help, net_help_usage, net_help},
144 static int net_usage(struct net_context *ctx, int argc, const char **argv)
146 return net_run_usage(ctx, argc, argv, net_functable);
149 /****************************************************************************
151 ****************************************************************************/
152 static int binary_net(int argc, const char **argv)
157 const char **argv_new;
159 struct net_context *ctx;
161 struct poptOption long_options[] = {
164 POPT_COMMON_CONNECTION
165 POPT_COMMON_CREDENTIALS
170 setup_logging("net", DEBUG_STDOUT);
172 #ifdef HAVE_SETBUFFER
173 setbuffer(stdout, NULL, 0);
176 pc = poptGetContext("net", argc, (const char **) argv, long_options,
177 POPT_CONTEXT_KEEP_FIRST);
179 while((opt = poptGetNextOpt(pc)) != -1) {
182 d_printf("Invalid option %s: %s\n",
183 poptBadOption(pc, 0), poptStrerror(opt));
184 net_help(ctx, argc, argv);
189 lp_load(dyn_CONFIGFILE,True,False,False);
192 argv_new = (const char **)poptGetArgs(pc);
195 for (i=0; i<argc; i++) {
196 if (argv_new[i] == NULL) {
203 d_printf("Usage: TODO\n");
207 mem_ctx = talloc_init("net_context");
208 ctx = talloc_p(mem_ctx, struct net_context);
210 d_printf("talloc_init(net_context) failed\n");
215 ctx->mem_ctx = mem_ctx;
216 ctx->user.account_name = talloc_strdup(ctx->mem_ctx, cmdline_get_username());
217 ctx->user.domain_name = talloc_strdup(ctx->mem_ctx, cmdline_get_userdomain());
218 ctx->user.password = talloc_strdup(ctx->mem_ctx, cmdline_get_userpassword());
220 rc = net_run_function(ctx, argc_new-1, argv_new+1, net_functable, net_usage);
223 DEBUG(0,("return code = %d\n", rc));
226 talloc_destroy(mem_ctx);
230 int main(int argc, const char **argv)
232 return binary_net(argc, argv);