r1294: A nice, large, commit...
authorAndrew Bartlett <abartlet@samba.org>
Tue, 29 Jun 2004 09:40:10 +0000 (09:40 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:56:49 +0000 (12:56 -0500)
commit07fd885fd488fd1051eacc905a2d4962f8a018ec
treefadb65eeecd5325bd86eb31c683d4df548d464e5
parent9002584c020a48ab37cce103b4413e871aae2985
r1294: A nice, large, commit...

This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.

This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal).  This causes
changes in all the existing gensec users.

Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.

Gensec has also taken over the role of auth/auth_ntlmssp.c

An important part of gensec, is the output of the 'session_info'
struct.  This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.

The schannel code is reworked, to be in the same file for client and
server.

ntlm_auth is reworked to use gensec.

The major problem with this code is the way it relies on subsystem
auto-initialisation.  The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.

There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
  valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.

Andrew Bartlett
33 files changed:
source/auth/auth.h
source/auth/auth_ntlmssp.c [deleted file]
source/auth/auth_util.c
source/auth/config.m4
source/auth/config.mk
source/libcli/auth/gensec.c
source/libcli/auth/gensec.h
source/libcli/auth/gensec_ntlmssp.c
source/libcli/auth/ntlmssp_sign.c
source/libcli/auth/spnego.c
source/libcli/auth/spnego.h
source/libcli/config.m4
source/librpc/ndr/ndr.c
source/librpc/rpc/dcerpc.c
source/librpc/rpc/dcerpc.h
source/librpc/rpc/dcerpc_auth.c
source/librpc/rpc/dcerpc_ntlm.c
source/librpc/rpc/dcerpc_schannel.c
source/librpc/rpc/dcerpc_util.c
source/ntvfs/ipc/vfs_ipc.c
source/rpc_server/config.m4
source/rpc_server/config.mk
source/rpc_server/dcerpc_server.c
source/rpc_server/dcerpc_server.h
source/rpc_server/dcesrv_auth.c
source/rpc_server/dcesrv_crypto.c [deleted file]
source/rpc_server/dcesrv_crypto_ntlmssp.c [deleted file]
source/rpc_server/dcesrv_crypto_schannel.c [deleted file]
source/rpc_server/netlogon/dcerpc_netlogon.c
source/rpc_server/samr/samr_password.c
source/smb_server/password.c
source/torture/rpc/schannel.c
source/utils/ntlm_auth.c