start rpcclient epmapper
authorVolker Lendecke <vl@samba.org>
Tue, 6 Jan 2009 18:09:57 +0000 (19:09 +0100)
committerVolker Lendecke <vl@samba.org>
Fri, 9 Jan 2009 22:08:16 +0000 (23:08 +0100)
source3/Makefile.in
source3/rpcclient/cmd_epmapper.c [new file with mode: 0644]
source3/rpcclient/rpcclient.c

index d693bb57da4497d500cf06839c13d0bd8095732b..624156b256cbbf170bd71ffddfb4d8483c530325 100644 (file)
@@ -795,7 +795,7 @@ DISPLAY_SEC_OBJ= lib/display_sec.o
 RPCCLIENT_OBJ1 = rpcclient/rpcclient.o rpcclient/cmd_lsarpc.o \
                 rpcclient/cmd_samr.o rpcclient/cmd_spoolss.o \
                 rpcclient/cmd_netlogon.o rpcclient/cmd_srvsvc.o \
-                rpcclient/cmd_dfs.o \
+                rpcclient/cmd_dfs.o rpcclient/cmd_epmapper.o \
                 rpcclient/cmd_dssetup.o rpcclient/cmd_echo.o \
                 rpcclient/cmd_shutdown.o rpcclient/cmd_test.o \
                 rpcclient/cmd_wkssvc.o rpcclient/cmd_ntsvcs.o \
diff --git a/source3/rpcclient/cmd_epmapper.c b/source3/rpcclient/cmd_epmapper.c
new file mode 100644 (file)
index 0000000..cb33416
--- /dev/null
@@ -0,0 +1,133 @@
+/*
+   Unix SMB/CIFS implementation.
+   RPC pipe client
+
+   Copyright (C) Volker Lendecke 2009
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "rpcclient.h"
+
+static NTSTATUS cmd_epmapper_map(struct rpc_pipe_client *p,
+                                TALLOC_CTX *mem_ctx,
+                                int argc, const char **argv)
+{
+       struct dcerpc_binding map_binding;
+       struct epm_twr_t map_tower;
+       struct epm_twr_t res_tower;
+       struct epm_twr_p_t towers;
+       struct policy_handle entry_handle;
+       struct ndr_syntax_id abstract_syntax;
+       uint32_t num_towers;
+       TALLOC_CTX *tmp_ctx = talloc_stackframe();
+       NTSTATUS status;
+
+       abstract_syntax = ndr_table_lsarpc.syntax_id;
+
+       map_binding.transport = NCACN_NP;
+        map_binding.object = abstract_syntax;
+        map_binding.host = "127.0.0.1"; /* needed? */
+        map_binding.endpoint = "0"; /* correct? needed? */
+
+       status = dcerpc_binding_build_tower(tmp_ctx, &map_binding,
+                                           &map_tower.tower);
+       if (!NT_STATUS_IS_OK(status)) {
+               d_fprintf(stderr, "dcerpc_binding_build_tower returned %s\n",
+                         nt_errstr(status));
+               return status;
+       }
+
+       towers.twr = &res_tower;
+
+       ZERO_STRUCT(entry_handle);
+       status = rpccli_epm_Map(
+               p, tmp_ctx, &abstract_syntax.uuid,
+               &map_tower, &entry_handle, 1,
+               &num_towers, &towers);
+
+       return status;
+}
+
+static NTSTATUS cmd_epmapper_lookup(struct rpc_pipe_client *p,
+                                   TALLOC_CTX *mem_ctx,
+                                   int argc, const char **argv)
+{
+       struct policy_handle entry_handle;
+
+       ZERO_STRUCT(entry_handle);
+
+       while (true) {
+               TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
+               uint32_t num_entries;
+               struct epm_entry_t entry;
+               NTSTATUS status;
+               char *guid_string;
+               struct dcerpc_binding *binding;
+
+               status = rpccli_epm_Lookup(p, tmp_ctx,
+                                  0, /* rpc_c_ep_all */
+                                  NULL,
+                                  NULL,
+                                  0, /* rpc_c_vers_all */
+                                  &entry_handle,
+                                  1, /* max_ents */
+                                  &num_entries, &entry);
+               if (!NT_STATUS_IS_OK(status)) {
+                       d_fprintf(stderr, "rpccli_epm_Lookup returned %s\n",
+                                 nt_errstr(status));
+                       break;
+               }
+
+               if (num_entries != 1) {
+                       d_fprintf(stderr, "rpccli_epm_Lookup returned %d "
+                                 "entries, expected one\n", (int)num_entries);
+                       break;
+               }
+
+               guid_string = GUID_string(tmp_ctx, &entry.object);
+               if (guid_string == NULL) {
+                       break;
+               }
+
+               status = dcerpc_binding_from_tower(tmp_ctx, &entry.tower->tower,
+                                                  &binding);
+               if (!NT_STATUS_IS_OK(status)) {
+                       break;
+               }
+
+               d_printf("%s %s: %s\n", guid_string,
+                        dcerpc_binding_string(tmp_ctx, binding),
+                        entry.annotation);
+
+               TALLOC_FREE(tmp_ctx);
+       }
+
+       return NT_STATUS_OK;
+}
+
+
+/* List of commands exported by this module */
+
+struct cmd_set epmapper_commands[] = {
+
+       { "EPMAPPER" },
+
+       { "epmmap", RPC_RTYPE_NTSTATUS, cmd_epmapper_map,     NULL,
+         &ndr_table_epmapper.syntax_id, NULL, "Map a binding", "" },
+       { "epmlookup", RPC_RTYPE_NTSTATUS, cmd_epmapper_lookup,     NULL,
+         &ndr_table_epmapper.syntax_id, NULL, "Lookup bindings", "" },
+       { NULL }
+};
index 640d5b3ec373ad55fc91d5979b340a1350c4e167..7e31862c34bdafa14211370f6293a7e49a660dad 100644 (file)
@@ -516,6 +516,7 @@ extern struct cmd_set srvsvc_commands[];
 extern struct cmd_set dfs_commands[];
 extern struct cmd_set ds_commands[];
 extern struct cmd_set echo_commands[];
+extern struct cmd_set epmapper_commands[];
 extern struct cmd_set shutdown_commands[];
 extern struct cmd_set test_commands[];
 extern struct cmd_set wkssvc_commands[];
@@ -533,6 +534,7 @@ static struct cmd_set *rpcclient_command_list[] = {
        srvsvc_commands,
        dfs_commands,
        echo_commands,
+       epmapper_commands,
        shutdown_commands,
        test_commands,
        wkssvc_commands,