r6028: A MAJOR update to intergrate the new credentails system fully with
authorAndrew Bartlett <abartlet@samba.org>
Thu, 24 Mar 2005 04:14:06 +0000 (04:14 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:11:15 +0000 (13:11 -0500)
commit2eb3d680625286431a3a60e37b75f47e0738f253
tree80a6731efbcb4913d691b414d162d700d4f9059e
parent46b22b073cf0d0c93f2e70dd4d670dc373d5a26a
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.

GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.

In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.

In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).

This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.

The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as.  This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.

To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.

In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module.  The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.

The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there.  This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.

The auth_domain module continues to be developed, but is now just as
functional as auth_winbind.  The changes here are consequential to the
schannel changes.

The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').

Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
45 files changed:
source4/auth/auth_domain.c
source4/client/client.c
source4/include/smb_interfaces.h
source4/libcli/auth/config.mk
source4/libcli/auth/credentials.c
source4/libcli/auth/gensec.c
source4/libcli/auth/gensec.h
source4/libcli/auth/gensec.mk
source4/libcli/auth/gensec_krb5.c
source4/libcli/auth/gensec_ntlmssp.c
source4/libcli/auth/kerberos.h
source4/libcli/auth/ntlmssp_sign.c
source4/libcli/auth/schannel.c [new file with mode: 0644]
source4/libcli/auth/schannel_sign.c
source4/libcli/auth/spnego.c
source4/libcli/cliconnect.c
source4/libcli/composite/composite.h
source4/libcli/composite/connect.c
source4/libcli/composite/fetchfile.c
source4/libcli/composite/sesssetup.c
source4/libcli/ldap/ldap.h
source4/libcli/ldap/ldap_client.c
source4/libcli/raw/clisession.c
source4/libcli/raw/clisocket.c
source4/libcli/raw/clitree.c
source4/librpc/config.mk
source4/librpc/rpc/dcerpc_auth.c
source4/librpc/rpc/dcerpc_schannel.c
source4/librpc/rpc/dcerpc_util.c
source4/ntvfs/cifs/vfs_cifs.c
source4/smb_server/reply.c
source4/smb_server/sesssetup.c
source4/torture/basic/secleak.c
source4/torture/gentest.c
source4/torture/ldap/basic.c
source4/torture/ldap/common.c
source4/torture/locktest.c
source4/torture/masktest.c
source4/torture/raw/composite.c
source4/torture/raw/context.c
source4/torture/rpc/netlogon.c
source4/torture/rpc/schannel.c
source4/torture/rpc/xplogin.c
source4/torture/torture.c
source4/utils/ntlm_auth.c