diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-01-10 10:48:19 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2005-01-10 10:48:19 +0000 |
commit | 5393354a3a254c3b72296776a8fbffc4b8832c18 (patch) | |
tree | a1e81bcaaf527731cf0c0ea20755a717e27d484a /source/librpc/rpc/dcerpc_util.c | |
parent | 770d9cf12af15be27b5ee802a39f6cdfa37b3958 (diff) | |
download | samba-5393354a3a254c3b72296776a8fbffc4b8832c18.tar.gz samba-5393354a3a254c3b72296776a8fbffc4b8832c18.tar.xz samba-5393354a3a254c3b72296776a8fbffc4b8832c18.zip |
r4635: Fix NTLMSSP to return NT_STATUS_OK when it has constructed the auth
token in the client (the final token in the negotiation).
Consequential fixes in the SPNEGO code, which now uses the out.length
as the indicator of 'I need to send something to the other side'.
Merge the NTLM and SPNEGO DCE-RPC authentication routines in the client.
Fix the RPC-MULTIBIND test consequent to this merge.
Andrew Bartlett
Diffstat (limited to 'source/librpc/rpc/dcerpc_util.c')
-rw-r--r-- | source/librpc/rpc/dcerpc_util.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/source/librpc/rpc/dcerpc_util.c b/source/librpc/rpc/dcerpc_util.c index 992368777c8..b815f5317dd 100644 --- a/source/librpc/rpc/dcerpc_util.c +++ b/source/librpc/rpc/dcerpc_util.c @@ -785,7 +785,6 @@ static NTSTATUS dcerpc_pipe_auth(struct dcerpc_pipe *p, const char *password) { NTSTATUS status; - p->conn->flags = binding->flags; /* remember the binding string for possible secondary connections */ @@ -794,10 +793,17 @@ static NTSTATUS dcerpc_pipe_auth(struct dcerpc_pipe *p, if (username && username[0] && (binding->flags & DCERPC_SCHANNEL_ANY)) { status = dcerpc_bind_auth_schannel(p, pipe_uuid, pipe_version, domain, username, password); - } else if (username && username[0] && (binding->flags & DCERPC_AUTH_SPNEGO)) { - status = dcerpc_bind_auth_spnego(p, pipe_uuid, pipe_version, domain, username, password); } else if (username && username[0]) { - status = dcerpc_bind_auth_ntlm(p, pipe_uuid, pipe_version, domain, username, password); + uint8_t auth_type; + if (binding->flags & DCERPC_AUTH_SPNEGO) { + auth_type = DCERPC_AUTH_TYPE_SPNEGO; + } else { + auth_type = DCERPC_AUTH_TYPE_NTLMSSP; + } + + status = dcerpc_bind_auth_password(p, pipe_uuid, pipe_version, + domain, username, password, + auth_type); } else { status = dcerpc_bind_auth_none(p, pipe_uuid, pipe_version); } |