r12858: This moves the libnet_LookupPdc code to use a GetDC request to find
authorAndrew Bartlett <abartlet@samba.org>
Thu, 12 Jan 2006 03:02:00 +0000 (03:02 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:50:54 +0000 (13:50 -0500)
commitb135f4467f8413f6ac44df54b8430305f6c26c0c
tree1c0aba065ecfc3b2262f201bae4a77dc609bd46a
parentd68b0b12b956b4b70953806e8cb4d9f6207057ed
r12858: This moves the libnet_LookupPdc code to use a GetDC request to find
the remote server's name, or in the absence of a local nbt_server to
communicate with (or without root access), a node status request.

The result is that we are in a better position to use kerberos, as well
as to remove the 'password server' mandatory parameter for the samsync
and samdump commands.  (I need this to put these into SWAT).

The only problem I have is that I must create a messaging context, which
requires a server ID.  As a client process, I don't expect to get
messages, but it is currently required for replies, so I generate a
random() number.  We probably need the servers to accept connections on
streamed sockets too, for client-only tasks that want IRPC.

Because I wanted to test this code, I have put the NET-API-* tests into
our test scripts, to ensure they pass and keep passing.  They are good
frontends onto the libnet system, and I see no reason not to test them.

In doing so the NET-API-RPCCONNECT test was simplified to take a
binding string on the command line, removing duplicate code, and
testing the combinations in the scripts instead.

(I have done a bit of work on the list shares code in libnet_share.c
to make it pass 'make test')

In the future, I would like to extend the libcli/findds.c code (based
off volker's winbind/wb_async_helpers.c, which is why it shows up a bit
odd in the patch) to handle getting multiple name replies, sending a
getdc request to each in turn.

(posted to samba-technical for review, and I'll happily update with
any comments)

Andrew Bartlett
(This used to be commit 7ccddfd3515fc2c0d6f447c768ccbf7a220c3380)
20 files changed:
source4/libcli/config.mk
source4/libcli/finddcs.c [new file with mode: 0644]
source4/libcli/libcli.h
source4/libcli/security/dom_sid.c
source4/libnet/config.mk
source4/libnet/libnet_join.c
source4/libnet/libnet_lookup.c
source4/libnet/libnet_lookup.h
source4/libnet/libnet_passwd.c
source4/libnet/libnet_rpc.c
source4/libnet/libnet_rpc.h
source4/libnet/libnet_share.c
source4/libnet/libnet_time.c
source4/libnet/libnet_user.c
source4/libnet/libnet_vampire.c
source4/script/tests/test_nbt.sh
source4/script/tests/test_rpc.sh
source4/torture/libnet/libnet_lookup.c
source4/torture/libnet/libnet_rpc.c
source4/torture/libnet/libnet_share.c