Jeremy requested that I get my NTLMSSP patch into CVS. He didn't request
authorAndrew Bartlett <abartlet@samba.org>
Mon, 14 Jul 2003 08:46:32 +0000 (08:46 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Mon, 14 Jul 2003 08:46:32 +0000 (08:46 +0000)
commit5472ddc9eaf4e79c5b2e1c8ee8c7f190dc285f19
tree22626040de5764af264b94f505a04c4456181a9d
parent4cdadbbbe9d6311b32dfe8e9823ed55dab1c6f1c
Jeremy requested that I get my NTLMSSP patch into CVS.  He didn't request
the schannel code, but I've included that anyway. :-)

This patch revives the client-side NTLMSSP support for RPC named pipes
in Samba, and cleans up the client and server schannel code.  The use of the
new code is enabled by the 'sign', 'seal' and 'schannel' commands in
rpcclient.

The aim was to prove that our separate NTLMSSP client library actually
implements NTLMSSP signing and sealing as per Microsoft's NTLMv1 implementation,
in the hope that knowing this will assist us in correctly implementing
NTLMSSP signing for SMB packets.  (Still not yet functional)

This patch replaces the NTLMSSP implementation in rpc_client/cli_pipe.c with
calls to libsmb/ntlmssp.c.  In the process, we have gained the ability to
use the more secure NT password, and the ability to sign-only, instead of
having to seal the pipe connection.  (Previously we were limited to sealing,
and could only use the LM-password derived key).

Our new client-side NTLMSSP code also needed alteration to cope with our
comparatively simple server-side implementation.  A future step is to replace
it with calls to the same NTLMSSP library.

Also included in this patch is the schannel 'sign only' patch I submitted to
the team earlier.  While not enabled (and not functional, at this stage) the
work in this patch makes the code paths *much* easier to follow.  I have also
included similar hooks in rpccleint to allow the use of schannel on *any* pipe.

rpcclient now defaults to not using schannel (or any other extra per-pipe
authenticiation) for any connection.  The 'schannel' command enables schannel
for all pipes until disabled.

This code is also much more secure than the previous code, as changes to our
cli_pipe routines ensure that the authentication footer cannot be removed
by an attacker, and more error states are correctly handled.

(The same needs to be done to our server)

Andrew Bartlett
16 files changed:
source/include/client.h
source/include/ntlmssp.h
source/include/rpc_dce.h
source/lib/util.c
source/libsmb/cliconnect.c
source/libsmb/clientgen.c
source/libsmb/ntlmssp.c
source/libsmb/ntlmssp_parse.c
source/libsmb/ntlmssp_sign.c
source/libsmb/pwd_cache.c
source/libsmb/smbencrypt.c
source/rpc_client/cli_pipe.c
source/rpc_parse/parse_prs.c
source/rpc_parse/parse_rpc.c
source/rpc_server/srv_pipe.c
source/rpcclient/rpcclient.c