r14542: Remove librpc, libndr and libnbt from includes.h
[samba.git] / source / utils / net / net.c
index 380afd61203f2dac37509d9d636858d7583b45d3..a6015f7c34d709fca6fbeeb77e2d394c39fa3cc1 100644 (file)
 /*****************************************************/
 
 #include "includes.h"
-#include "dynconfig.h"
 #include "utils/net/net.h"
 #include "lib/cmdline/popt_common.h"
+#include "lib/ldb/include/ldb.h"
+#include "librpc/rpc/dcerpc.h"
 
 /*
   run a function from a function table. If not found then
@@ -57,13 +58,15 @@ int net_run_function(struct net_context *ctx,
 {
        int i;
 
-       if (argc < 1) {
-               d_printf("Usage: \n");
+       if (argc == 0) {
                return usage_fn(ctx, argc, argv);
+
+       } else if (argc == 1 && strequal(argv[0], "help")) {
+               return net_help(ctx, functable);
        }
 
        for (i=0; functable[i].name; i++) {
-               if (StrCaseCmp(argv[0], functable[i].name) == 0)
+               if (strcasecmp_m(argv[0], functable[i].name) == 0)
                        return functable[i].fn(ctx, argc-1, argv+1);
        }
 
@@ -79,74 +82,57 @@ int net_run_usage(struct net_context *ctx,
                        const struct net_functable *functable)
 {
        int i;
-
+/*
        if (argc < 1) {
                d_printf("net_run_usage: TODO (argc < 1)\n");
                return 1;
        }
-
+*/
        for (i=0; functable[i].name; i++) {
-               if (StrCaseCmp(argv[0], functable[i].name) == 0)
+               if (strcasecmp_m(argv[0], functable[i].name) == 0)
                        if (functable[i].usage) {
                                return functable[i].usage(ctx, argc-1, argv+1);
                        }
        }
 
-       d_printf("No usage for command: %s\n", argv[0]);
+       d_printf("No usage information for command: %s\n", argv[0]);
 
        return 1;
 }
 
-/*
-  run a usage function from a function table. If not found then fail
-*/
-int net_run_help(struct net_context *ctx,
-                       int argc, const char **argv,
-                       const struct net_functable *functable)
-{
-       int i;
 
-       if (argc < 1) {
-               d_printf("net_run_help: TODO (argc < 1)\n");
-               return 1;
-       }
+/* main function table */
+static const struct net_functable net_functable[] = {
+       {"password", "change password\n", net_password, net_password_usage},
+       {"time", "get remote server's time\n", net_time, net_time_usage},
+       {"join", "join a domain\n", net_join, net_join_usage},
+       {"samdump", "dump the sam of a domain\n", net_samdump, net_samdump_usage},
+       {"samsync", "syncrosnise into the local ldb the sam of a domain\n", net_samsync_ldb, net_samsync_ldb_usage},
+       {"user", "manage user accounts\n", net_user, net_user_usage},
+       {NULL, NULL, NULL, NULL}
+};
 
-       for (i=0; functable[i].name; i++) {
-               if (StrCaseCmp(argv[0], functable[i].name) == 0)
-                       if (functable[i].help) {
-                               return functable[i].help(ctx, argc-1, argv+1);
-                       }
+int net_help(struct net_context *ctx, const struct net_functable *ftable)
+{
+       int i = 0;
+       const char *name = ftable[i].name;
+       const char *desc = ftable[i].desc;
+
+       d_printf("Available commands:\n");
+       while (name && desc) {
+               d_printf("\t%s\t\t%s", name, desc);
+               name = ftable[++i].name;
+               desc = ftable[i].desc;
        }
 
-       d_printf("No help for command: %s\n", argv[0]);
-
-       return 1;
-}
-
-static int net_help(struct net_context *ctx, int argc, const char **argv)
-{
-       d_printf("net_help: TODO\n");
        return 0;
 }
 
-static int net_help_usage(struct net_context *ctx, int argc, const char **argv)
-{
-       d_printf("net_help_usage: TODO\n");
-       return 0;       
-}
-
-/* main function table */
-static const struct net_functable const net_functable[] = {
-       {"password", net_password, net_password_usage, net_password_help},
-       {"time", net_time, net_time_usage, net_time_help},
-
-       {"help", net_help, net_help_usage, net_help},
-       {NULL, NULL}
-};
-
 static int net_usage(struct net_context *ctx, int argc, const char **argv)
 {
-       return net_run_usage(ctx, argc, argv, net_functable);
+       d_printf("Usage:\n");
+       d_printf("net <command> [options]\n");
+       return 0;
 }
 
 /****************************************************************************
@@ -159,7 +145,7 @@ static int binary_net(int argc, const char **argv)
        int argc_new;
        const char **argv_new;
        TALLOC_CTX *mem_ctx;
-       struct net_context *ctx;
+       struct net_context *ctx = NULL;
        poptContext pc;
        struct poptOption long_options[] = {
                POPT_AUTOHELP
@@ -170,28 +156,23 @@ static int binary_net(int argc, const char **argv)
                POPT_TABLEEND
        };
 
-       setup_logging("net", DEBUG_STDOUT);
-
 #ifdef HAVE_SETBUFFER
        setbuffer(stdout, NULL, 0);
 #endif
 
        pc = poptGetContext("net", argc, (const char **) argv, long_options, 
-                               POPT_CONTEXT_KEEP_FIRST);
+                           POPT_CONTEXT_KEEP_FIRST);
 
        while((opt = poptGetNextOpt(pc)) != -1) {
                switch (opt) {
                default:
                        d_printf("Invalid option %s: %s\n", 
                                 poptBadOption(pc, 0), poptStrerror(opt));
-                       net_help(ctx, argc, argv);
+                       net_usage(ctx, argc, argv);
                        exit(1);
                }
        }
 
-       lp_load(dyn_CONFIGFILE,True,False,False);
-       load_interfaces();
-
        argv_new = (const char **)poptGetArgs(pc);
 
        argc_new = argc;
@@ -203,12 +184,15 @@ static int binary_net(int argc, const char **argv)
        }
 
        if (argc_new < 2) {
-               d_printf("Usage: TODO\n");
-               return 1;
+               return net_usage(ctx, argc, argv);
        }
 
+       dcerpc_init();
+
+       ldb_global_init();
+
        mem_ctx = talloc_init("net_context");
-       ctx = talloc_p(mem_ctx, struct net_context);
+       ctx = talloc(mem_ctx, struct net_context);
        if (!ctx) {
                d_printf("talloc_init(net_context) failed\n");
                exit(1);
@@ -216,9 +200,7 @@ static int binary_net(int argc, const char **argv)
 
        ZERO_STRUCTP(ctx);
        ctx->mem_ctx = mem_ctx;
-       ctx->user.account_name = talloc_strdup(ctx->mem_ctx, cmdline_get_username());
-       ctx->user.domain_name = talloc_strdup(ctx->mem_ctx, cmdline_get_userdomain());
-       ctx->user.password = talloc_strdup(ctx->mem_ctx, cmdline_get_userpassword());
+       ctx->credentials = cmdline_credentials;
 
        rc = net_run_function(ctx, argc_new-1, argv_new+1, net_functable, net_usage);
 
@@ -226,7 +208,7 @@ static int binary_net(int argc, const char **argv)
                DEBUG(0,("return code = %d\n", rc));
        }
 
-       talloc_destroy(mem_ctx);
+       talloc_free(mem_ctx);
        return rc;
 }