summaryrefslogtreecommitdiff
path: root/source4/libnet/libnet_rpc.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-08-19 15:04:14 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:11 -0500
commitbd225f8c28a798d0b40c68bc617cde2beac0a88c (patch)
treec5d284b91c73f58df4554c34f8a7e9e7983282d3 /source4/libnet/libnet_rpc.c
parent3ccba74549a66d469eff16a524f012d73a7f8aed (diff)
downloadsamba-bd225f8c28a798d0b40c68bc617cde2beac0a88c.tar.gz
samba-bd225f8c28a798d0b40c68bc617cde2beac0a88c.tar.bz2
samba-bd225f8c28a798d0b40c68bc617cde2beac0a88c.zip
r1925: now we lookup the domain controller
and fallback to a workstation name metze (This used to be commit 2012d90f268f69a3a4e5890a0f3615237853bd0b)
Diffstat (limited to 'source4/libnet/libnet_rpc.c')
-rw-r--r--source4/libnet/libnet_rpc.c51
1 files changed, 42 insertions, 9 deletions
diff --git a/source4/libnet/libnet_rpc.c b/source4/libnet/libnet_rpc.c
index c76498d0bb..7cee7681e8 100644
--- a/source4/libnet/libnet_rpc.c
+++ b/source4/libnet/libnet_rpc.c
@@ -20,21 +20,54 @@
#include "includes.h"
+/* find a domain pdc generic */
+static NTSTATUS libnet_find_pdc_generic(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, union libnet_find_pdc *r)
+{
+ BOOL ret;
+ struct in_addr ip;
+
+ ret = get_pdc_ip(mem_ctx, r->generic.in.domain_name, &ip);
+ if (!ret) {
+ /* fallback to a workstation name */
+ ret = resolve_name(mem_ctx, r->generic.in.domain_name, &ip, 0x20);
+ if (!ret) {
+ return NT_STATUS_NO_LOGON_SERVERS;
+ }
+ }
+
+ r->generic.out.pdc_name = talloc_strdup(mem_ctx, inet_ntoa(ip));
+
+ return NT_STATUS_OK;
+}
+
+/* find a domain pdc */
+NTSTATUS libnet_find_pdc(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, union libnet_find_pdc *r)
+{
+ switch (r->generic.level) {
+ case LIBNET_FIND_PDC_GENERIC:
+ return libnet_find_pdc_generic(ctx, mem_ctx, r);
+ }
+
+ return NT_STATUS_INVALID_LEVEL;
+}
+
/* connect to a dcerpc interface of a domains PDC */
-NTSTATUS libnet_rpc_connect_pdc(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, union libnet_rpc_connect *r)
+static NTSTATUS libnet_rpc_connect_pdc(struct libnet_context *ctx, TALLOC_CTX *mem_ctx, union libnet_rpc_connect *r)
{
NTSTATUS status;
const char *binding = NULL;
- const char *pdc = NULL;
+ union libnet_find_pdc f;
+
+ f.generic.level = LIBNET_FIND_PDC_GENERIC;
+ f.generic.in.domain_name = r->pdc.in.domain_name;
- /* TODO: find real PDC!
- * for now I use the lp_netbios_name()
- * that's the most important for me as we don't have
- * smbpasswd in samba4 (and this is good!:-) --metze
- */
- pdc = lp_netbios_name();
+ status = libnet_find_pdc(ctx, mem_ctx, &f);
+ if (!NT_STATUS_IS_OK(status)) {
+ return status;
+ }
- binding = talloc_asprintf(mem_ctx, "ncacn_np:%s",pdc);
+ binding = talloc_asprintf(mem_ctx, "ncacn_np:%s",
+ f.generic.out.pdc_name);
status = dcerpc_pipe_connect(&r->pdc.out.dcerpc_pipe,
binding,