1 // Copyright 2014 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 "remoting/host/token_validator_base.h"
7 #include "base/base64.h"
9 #include "base/callback.h"
10 #include "base/json/json_reader.h"
11 #include "base/logging.h"
12 #include "base/memory/weak_ptr.h"
13 #include "base/single_thread_task_runner.h"
14 #include "base/strings/string_util.h"
15 #include "base/values.h"
16 #include "net/base/escape.h"
17 #include "net/base/io_buffer.h"
18 #include "net/base/request_priority.h"
19 #include "net/base/upload_bytes_element_reader.h"
20 #include "net/base/upload_data_stream.h"
21 #include "net/ssl/client_cert_store.h"
23 #include "net/ssl/client_cert_store_nss.h"
25 #include "net/ssl/client_cert_store_win.h"
26 #elif defined(OS_MACOSX)
27 #include "net/ssl/client_cert_store_mac.h"
29 #include "net/ssl/ssl_cert_request_info.h"
30 #include "net/url_request/url_request.h"
31 #include "net/url_request/url_request_context.h"
32 #include "net/url_request/url_request_status.h"
37 const int kBufferSize
= 4096;
38 const char kCertIssuerWildCard
[] = "*";
44 TokenValidatorBase::TokenValidatorBase(
45 const ThirdPartyAuthConfig
& third_party_auth_config
,
46 const std::string
& token_scope
,
47 scoped_refptr
<net::URLRequestContextGetter
> request_context_getter
)
48 : third_party_auth_config_(third_party_auth_config
),
49 token_scope_(token_scope
),
50 request_context_getter_(request_context_getter
),
51 buffer_(new net::IOBuffer(kBufferSize
)),
53 DCHECK(third_party_auth_config_
.token_url
.is_valid());
54 DCHECK(third_party_auth_config_
.token_validation_url
.is_valid());
57 TokenValidatorBase::~TokenValidatorBase() {
60 // TokenValidator interface.
61 void TokenValidatorBase::ValidateThirdPartyToken(
62 const std::string
& token
,
63 const base::Callback
<void(
64 const std::string
& shared_secret
)>& on_token_validated
) {
66 DCHECK(!on_token_validated
.is_null());
68 on_token_validated_
= on_token_validated
;
70 StartValidateRequest(token
);
73 const GURL
& TokenValidatorBase::token_url() const {
74 return third_party_auth_config_
.token_url
;
77 const std::string
& TokenValidatorBase::token_scope() const {
81 // URLFetcherDelegate interface.
82 void TokenValidatorBase::OnResponseStarted(net::URLRequest
* source
) {
83 DCHECK_EQ(request_
.get(), source
);
86 request_
->Read(buffer_
.get(), kBufferSize
, &bytes_read
);
87 OnReadCompleted(request_
.get(), bytes_read
);
90 void TokenValidatorBase::OnReadCompleted(net::URLRequest
* source
,
92 DCHECK_EQ(request_
.get(), source
);
95 if (!request_
->status().is_success() || bytes_read
<= 0)
98 data_
.append(buffer_
->data(), bytes_read
);
99 } while (request_
->Read(buffer_
.get(), kBufferSize
, &bytes_read
));
101 const net::URLRequestStatus status
= request_
->status();
103 if (!status
.is_io_pending()) {
104 std::string shared_token
= ProcessResponse();
106 on_token_validated_
.Run(shared_token
);
110 void TokenValidatorBase::OnCertificateRequested(
111 net::URLRequest
* source
,
112 net::SSLCertRequestInfo
* cert_request_info
) {
113 DCHECK_EQ(request_
.get(), source
);
115 net::ClientCertStore
* client_cert_store
;
117 client_cert_store
= new net::ClientCertStoreNSS(
118 net::ClientCertStoreNSS::PasswordDelegateFactory());
119 #elif defined(OS_WIN)
120 client_cert_store
= new net::ClientCertStoreWin();
121 #elif defined(OS_MACOSX)
122 client_cert_store
= new net::ClientCertStoreMac();
124 #error Unknown platform.
126 // The callback is uncancellable, and GetClientCert requires selected_certs
127 // and client_cert_store to stay alive until the callback is called. So we
128 // must give it a WeakPtr for |this|, and ownership of the other parameters.
129 net::CertificateList
* selected_certs(new net::CertificateList());
130 client_cert_store
->GetClientCerts(
131 *cert_request_info
, selected_certs
,
132 base::Bind(&TokenValidatorBase::OnCertificatesSelected
,
133 weak_factory_
.GetWeakPtr(), base::Owned(selected_certs
),
134 base::Owned(client_cert_store
)));
137 void TokenValidatorBase::OnCertificatesSelected(
138 net::CertificateList
* selected_certs
,
139 net::ClientCertStore
* unused
) {
140 const std::string
& issuer
=
141 third_party_auth_config_
.token_validation_cert_issuer
;
143 for (size_t i
= 0; i
< selected_certs
->size(); ++i
) {
144 if (issuer
== kCertIssuerWildCard
||
145 issuer
== (*selected_certs
)[i
]->issuer().common_name
) {
146 request_
->ContinueWithCertificate((*selected_certs
)[i
]);
150 request_
->ContinueWithCertificate(NULL
);
154 bool TokenValidatorBase::IsValidScope(const std::string
& token_scope
) {
155 // TODO(rmsousa): Deal with reordering/subsets/supersets/aliases/etc.
156 return token_scope
== token_scope_
;
159 std::string
TokenValidatorBase::ProcessResponse() {
160 // Verify that we got a successful response.
161 net::URLRequestStatus status
= request_
->status();
162 if (!status
.is_success()) {
163 LOG(ERROR
) << "Error validating token, status=" << status
.status()
164 << " err=" << status
.error();
165 return std::string();
168 int response
= request_
->GetResponseCode();
169 if (response
!= 200) {
171 << "Error " << response
<< " validating token: '" << data_
<< "'";
172 return std::string();
175 // Decode the JSON data from the response.
176 scoped_ptr
<base::Value
> value(base::JSONReader::Read(data_
));
177 base::DictionaryValue
* dict
;
178 if (!value
.get() || value
->GetType() != base::Value::TYPE_DICTIONARY
||
179 !value
->GetAsDictionary(&dict
)) {
180 LOG(ERROR
) << "Invalid token validation response: '" << data_
<< "'";
181 return std::string();
184 std::string token_scope
;
185 dict
->GetStringWithoutPathExpansion("scope", &token_scope
);
186 if (!IsValidScope(token_scope
)) {
187 LOG(ERROR
) << "Invalid scope: '" << token_scope
188 << "', expected: '" << token_scope_
<<"'.";
189 return std::string();
192 std::string shared_secret
;
193 // Everything is valid, so return the shared secret to the caller.
194 dict
->GetStringWithoutPathExpansion("access_token", &shared_secret
);
195 return shared_secret
;
198 } // namespace remoting