1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/http/http_auth_handler_ntlm.h"
7 #if !defined(NTLM_SSPI)
8 #include "base/base64.h"
10 #include "base/logging.h"
11 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h"
13 #include "net/base/net_errors.h"
14 #include "net/base/net_util.h"
18 HttpAuth::AuthorizationResult
HttpAuthHandlerNTLM::HandleAnotherChallenge(
19 HttpAuth::ChallengeTokenizer
* challenge
) {
20 return ParseChallenge(challenge
, false);
23 bool HttpAuthHandlerNTLM::Init(HttpAuth::ChallengeTokenizer
* tok
) {
24 auth_scheme_
= HttpAuth::AUTH_SCHEME_NTLM
;
26 properties_
= ENCRYPTS_IDENTITY
| IS_CONNECTION_BASED
;
28 return ParseChallenge(tok
, true) == HttpAuth::AUTHORIZATION_RESULT_ACCEPT
;
31 int HttpAuthHandlerNTLM::GenerateAuthTokenImpl(
32 const AuthCredentials
* credentials
, const HttpRequestInfo
* request
,
33 const CompletionCallback
& callback
, std::string
* auth_token
) {
34 #if defined(NTLM_SSPI)
35 return auth_sspi_
.GenerateAuthToken(
39 #else // !defined(NTLM_SSPI)
40 // TODO(cbentzel): Shouldn't be hitting this case.
42 LOG(ERROR
) << "Username and password are expected to be non-NULL.";
43 return ERR_MISSING_AUTH_CREDENTIALS
;
45 // TODO(wtc): See if we can use char* instead of void* for in_buf and
46 // out_buf. This change will need to propagate to GetNextToken,
47 // GenerateType1Msg, and GenerateType3Msg, and perhaps further.
50 uint32 in_buf_len
, out_buf_len
;
51 std::string decoded_auth_data
;
53 // The username may be in the form "DOMAIN\user". Parse it into the two
55 base::string16 domain
;
57 const base::string16
& username
= credentials
->username();
58 const base::char16 backslash_character
= '\\';
59 size_t backslash_idx
= username
.find(backslash_character
);
60 if (backslash_idx
== base::string16::npos
) {
63 domain
= username
.substr(0, backslash_idx
);
64 user
= username
.substr(backslash_idx
+ 1);
67 credentials_
.Set(user
, credentials
->password());
70 if (auth_data_
.empty()) {
73 int rv
= InitializeBeforeFirstChallenge();
77 if (!base::Base64Decode(auth_data_
, &decoded_auth_data
)) {
78 LOG(ERROR
) << "Unexpected problem Base64 decoding.";
79 return ERR_UNEXPECTED
;
81 in_buf_len
= decoded_auth_data
.length();
82 in_buf
= decoded_auth_data
.data();
85 int rv
= GetNextToken(in_buf
, in_buf_len
, &out_buf
, &out_buf_len
);
89 // Base64 encode data in output buffer and prepend "NTLM ".
90 std::string
encode_input(static_cast<char*>(out_buf
), out_buf_len
);
91 std::string encode_output
;
92 bool base64_rv
= base::Base64Encode(encode_input
, &encode_output
);
93 // OK, we are done with |out_buf|
96 LOG(ERROR
) << "Unexpected problem Base64 encoding.";
97 return ERR_UNEXPECTED
;
99 *auth_token
= std::string("NTLM ") + encode_output
;
104 // The NTLM challenge header looks like:
105 // WWW-Authenticate: NTLM auth-data
106 HttpAuth::AuthorizationResult
HttpAuthHandlerNTLM::ParseChallenge(
107 HttpAuth::ChallengeTokenizer
* tok
, bool initial_challenge
) {
108 #if defined(NTLM_SSPI)
109 // auth_sspi_ contains state for whether or not this is the initial challenge.
110 return auth_sspi_
.ParseChallenge(tok
);
112 // TODO(cbentzel): Most of the logic between SSPI, GSSAPI, and portable NTLM
113 // authentication parsing could probably be shared - just need to know if
114 // there was previously a challenge round.
115 // TODO(cbentzel): Write a test case to validate that auth_data_ is left empty
116 // in all failure conditions.
119 // Verify the challenge's auth-scheme.
120 if (!LowerCaseEqualsASCII(tok
->scheme(), "ntlm"))
121 return HttpAuth::AUTHORIZATION_RESULT_INVALID
;
123 std::string base64_param
= tok
->base64_param();
124 if (base64_param
.empty()) {
125 if (!initial_challenge
)
126 return HttpAuth::AUTHORIZATION_RESULT_REJECT
;
127 return HttpAuth::AUTHORIZATION_RESULT_ACCEPT
;
129 if (initial_challenge
)
130 return HttpAuth::AUTHORIZATION_RESULT_INVALID
;
133 auth_data_
= base64_param
;
134 return HttpAuth::AUTHORIZATION_RESULT_ACCEPT
;
135 #endif // defined(NTLM_SSPI)
139 std::wstring
HttpAuthHandlerNTLM::CreateSPN(const GURL
& origin
) {
140 // The service principal name of the destination server. See
141 // http://msdn.microsoft.com/en-us/library/ms677949%28VS.85%29.aspx
142 std::wstring
target(L
"HTTP/");
143 target
.append(ASCIIToWide(GetHostAndPort(origin
)));