Roll src/third_party/WebKit e0eac24:489c548 (svn 193311:193320)
[chromium-blink-merge.git] / google_apis / gcm / tools / mcs_probe.cc
blob90225d414da5c91d04c5c581ae306cb3c5f688f8
1 // Copyright 2013 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.
4 //
5 // A standalone tool for testing MCS connections and the MCS client on their
6 // own.
8 #include <cstddef>
9 #include <cstdio>
10 #include <string>
11 #include <vector>
13 #include "base/at_exit.h"
14 #include "base/command_line.h"
15 #include "base/compiler_specific.h"
16 #include "base/files/scoped_file.h"
17 #include "base/logging.h"
18 #include "base/memory/ref_counted.h"
19 #include "base/memory/scoped_ptr.h"
20 #include "base/message_loop/message_loop.h"
21 #include "base/run_loop.h"
22 #include "base/strings/string_number_conversions.h"
23 #include "base/threading/thread.h"
24 #include "base/threading/worker_pool.h"
25 #include "base/time/default_clock.h"
26 #include "base/values.h"
27 #include "google_apis/gcm/base/fake_encryptor.h"
28 #include "google_apis/gcm/base/mcs_message.h"
29 #include "google_apis/gcm/base/mcs_util.h"
30 #include "google_apis/gcm/engine/checkin_request.h"
31 #include "google_apis/gcm/engine/connection_factory_impl.h"
32 #include "google_apis/gcm/engine/gcm_store_impl.h"
33 #include "google_apis/gcm/engine/gservices_settings.h"
34 #include "google_apis/gcm/engine/mcs_client.h"
35 #include "google_apis/gcm/monitoring/fake_gcm_stats_recorder.h"
36 #include "net/base/host_mapping_rules.h"
37 #include "net/cert/cert_verifier.h"
38 #include "net/dns/host_resolver.h"
39 #include "net/http/http_auth_handler_factory.h"
40 #include "net/http/http_network_session.h"
41 #include "net/http/http_server_properties_impl.h"
42 #include "net/http/transport_security_state.h"
43 #include "net/log/net_log_logger.h"
44 #include "net/socket/client_socket_factory.h"
45 #include "net/socket/ssl_client_socket.h"
46 #include "net/ssl/channel_id_service.h"
47 #include "net/ssl/default_channel_id_store.h"
48 #include "net/url_request/url_request_test_util.h"
50 #if defined(OS_MACOSX)
51 #include "base/mac/scoped_nsautorelease_pool.h"
52 #endif
54 // This is a simple utility that initializes an mcs client and
55 // prints out any events.
56 namespace gcm {
57 namespace {
59 const net::BackoffEntry::Policy kDefaultBackoffPolicy = {
60 // Number of initial errors (in sequence) to ignore before applying
61 // exponential back-off rules.
64 // Initial delay for exponential back-off in ms.
65 15000, // 15 seconds.
67 // Factor by which the waiting time will be multiplied.
70 // Fuzzing percentage. ex: 10% will spread requests randomly
71 // between 90%-100% of the calculated time.
72 0.5, // 50%.
74 // Maximum amount of time we are willing to delay our request in ms.
75 1000 * 60 * 5, // 5 minutes.
77 // Time to keep an entry from being discarded even when it
78 // has no significant state, -1 to never discard.
79 -1,
81 // Don't use initial delay unless the last request was an error.
82 false,
85 // Default values used to communicate with the check-in server.
86 const char kChromeVersion[] = "Chrome MCS Probe";
88 // The default server to communicate with.
89 const char kMCSServerHost[] = "mtalk.google.com";
90 const uint16 kMCSServerPort = 5228;
92 // Command line switches.
93 const char kRMQFileName[] = "rmq_file";
94 const char kAndroidIdSwitch[] = "android_id";
95 const char kSecretSwitch[] = "secret";
96 const char kLogFileSwitch[] = "log-file";
97 const char kIgnoreCertSwitch[] = "ignore-certs";
98 const char kServerHostSwitch[] = "host";
99 const char kServerPortSwitch[] = "port";
101 void MessageReceivedCallback(const MCSMessage& message) {
102 LOG(INFO) << "Received message with id "
103 << GetPersistentId(message.GetProtobuf()) << " and tag "
104 << static_cast<int>(message.tag());
106 if (message.tag() == kDataMessageStanzaTag) {
107 const mcs_proto::DataMessageStanza& data_message =
108 reinterpret_cast<const mcs_proto::DataMessageStanza&>(
109 message.GetProtobuf());
110 DVLOG(1) << " to: " << data_message.to();
111 DVLOG(1) << " from: " << data_message.from();
112 DVLOG(1) << " category: " << data_message.category();
113 DVLOG(1) << " sent: " << data_message.sent();
114 for (int i = 0; i < data_message.app_data_size(); ++i) {
115 DVLOG(1) << " App data " << i << " "
116 << data_message.app_data(i).key() << " : "
117 << data_message.app_data(i).value();
122 void MessageSentCallback(int64 user_serial_number,
123 const std::string& app_id,
124 const std::string& message_id,
125 MCSClient::MessageSendStatus status) {
126 LOG(INFO) << "Message sent. Serial number: " << user_serial_number
127 << " Application ID: " << app_id
128 << " Message ID: " << message_id
129 << " Message send status: " << status;
132 // Needed to use a real host resolver.
133 class MyTestURLRequestContext : public net::TestURLRequestContext {
134 public:
135 MyTestURLRequestContext() : TestURLRequestContext(true) {
136 context_storage_.set_host_resolver(
137 net::HostResolver::CreateDefaultResolver(NULL));
138 context_storage_.set_transport_security_state(
139 new net::TransportSecurityState());
140 Init();
143 ~MyTestURLRequestContext() override {}
146 class MyTestURLRequestContextGetter : public net::TestURLRequestContextGetter {
147 public:
148 explicit MyTestURLRequestContextGetter(
149 const scoped_refptr<base::MessageLoopProxy>& io_message_loop_proxy)
150 : TestURLRequestContextGetter(io_message_loop_proxy) {}
152 net::TestURLRequestContext* GetURLRequestContext() override {
153 // Construct |context_| lazily so it gets constructed on the right
154 // thread (the IO thread).
155 if (!context_)
156 context_.reset(new MyTestURLRequestContext());
157 return context_.get();
160 private:
161 ~MyTestURLRequestContextGetter() override {}
163 scoped_ptr<MyTestURLRequestContext> context_;
166 // A cert verifier that access all certificates.
167 class MyTestCertVerifier : public net::CertVerifier {
168 public:
169 MyTestCertVerifier() {}
170 ~MyTestCertVerifier() override {}
172 int Verify(net::X509Certificate* cert,
173 const std::string& hostname,
174 int flags,
175 net::CRLSet* crl_set,
176 net::CertVerifyResult* verify_result,
177 const net::CompletionCallback& callback,
178 RequestHandle* out_req,
179 const net::BoundNetLog& net_log) override {
180 return net::OK;
183 void CancelRequest(RequestHandle req) override {
184 // Do nothing.
188 class MCSProbe {
189 public:
190 MCSProbe(
191 const base::CommandLine& command_line,
192 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter);
193 ~MCSProbe();
195 void Start();
197 uint64 android_id() const { return android_id_; }
198 uint64 secret() const { return secret_; }
200 private:
201 void CheckIn();
202 void InitializeNetworkState();
203 void BuildNetworkSession();
205 void LoadCallback(scoped_ptr<GCMStore::LoadResult> load_result);
206 void UpdateCallback(bool success);
207 void ErrorCallback();
208 void OnCheckInCompleted(
209 const checkin_proto::AndroidCheckinResponse& checkin_response);
210 void StartMCSLogin();
212 base::DefaultClock clock_;
214 base::CommandLine command_line_;
216 base::FilePath gcm_store_path_;
217 uint64 android_id_;
218 uint64 secret_;
219 std::string server_host_;
220 int server_port_;
222 // Network state.
223 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_;
224 net::NetLog net_log_;
225 scoped_ptr<net::NetLogLogger> logger_;
226 scoped_ptr<net::HostResolver> host_resolver_;
227 scoped_ptr<net::CertVerifier> cert_verifier_;
228 scoped_ptr<net::ChannelIDService> system_channel_id_service_;
229 scoped_ptr<net::TransportSecurityState> transport_security_state_;
230 scoped_ptr<net::URLSecurityManager> url_security_manager_;
231 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory_;
232 scoped_ptr<net::HttpServerPropertiesImpl> http_server_properties_;
233 scoped_ptr<net::HostMappingRules> host_mapping_rules_;
234 scoped_refptr<net::HttpNetworkSession> network_session_;
235 scoped_ptr<net::ProxyService> proxy_service_;
237 FakeGCMStatsRecorder recorder_;
238 scoped_ptr<GCMStore> gcm_store_;
239 scoped_ptr<MCSClient> mcs_client_;
240 scoped_ptr<CheckinRequest> checkin_request_;
242 scoped_ptr<ConnectionFactoryImpl> connection_factory_;
244 base::Thread file_thread_;
246 scoped_ptr<base::RunLoop> run_loop_;
249 MCSProbe::MCSProbe(
250 const base::CommandLine& command_line,
251 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter)
252 : command_line_(command_line),
253 gcm_store_path_(base::FilePath(FILE_PATH_LITERAL("gcm_store"))),
254 android_id_(0),
255 secret_(0),
256 server_port_(0),
257 url_request_context_getter_(url_request_context_getter),
258 file_thread_("FileThread") {
259 if (command_line.HasSwitch(kRMQFileName)) {
260 gcm_store_path_ = command_line.GetSwitchValuePath(kRMQFileName);
262 if (command_line.HasSwitch(kAndroidIdSwitch)) {
263 base::StringToUint64(command_line.GetSwitchValueASCII(kAndroidIdSwitch),
264 &android_id_);
266 if (command_line.HasSwitch(kSecretSwitch)) {
267 base::StringToUint64(command_line.GetSwitchValueASCII(kSecretSwitch),
268 &secret_);
270 server_host_ = kMCSServerHost;
271 if (command_line.HasSwitch(kServerHostSwitch)) {
272 server_host_ = command_line.GetSwitchValueASCII(kServerHostSwitch);
274 server_port_ = kMCSServerPort;
275 if (command_line.HasSwitch(kServerPortSwitch)) {
276 base::StringToInt(command_line.GetSwitchValueASCII(kServerPortSwitch),
277 &server_port_);
281 MCSProbe::~MCSProbe() {
282 if (logger_)
283 logger_->StopObserving(nullptr);
284 file_thread_.Stop();
287 void MCSProbe::Start() {
288 file_thread_.Start();
289 InitializeNetworkState();
290 BuildNetworkSession();
291 std::vector<GURL> endpoints(1,
292 GURL("https://" +
293 net::HostPortPair(server_host_,
294 server_port_).ToString()));
295 connection_factory_.reset(
296 new ConnectionFactoryImpl(endpoints,
297 kDefaultBackoffPolicy,
298 network_session_,
299 NULL,
300 &net_log_,
301 &recorder_));
302 gcm_store_.reset(
303 new GCMStoreImpl(gcm_store_path_,
304 file_thread_.message_loop_proxy(),
305 make_scoped_ptr<Encryptor>(new FakeEncryptor)));
306 mcs_client_.reset(new MCSClient("probe",
307 &clock_,
308 connection_factory_.get(),
309 gcm_store_.get(),
310 &recorder_));
311 run_loop_.reset(new base::RunLoop());
312 gcm_store_->Load(base::Bind(&MCSProbe::LoadCallback,
313 base::Unretained(this)));
314 run_loop_->Run();
317 void MCSProbe::LoadCallback(scoped_ptr<GCMStore::LoadResult> load_result) {
318 DCHECK(load_result->success);
319 if (android_id_ != 0 && secret_ != 0) {
320 DVLOG(1) << "Presetting MCS id " << android_id_;
321 load_result->device_android_id = android_id_;
322 load_result->device_security_token = secret_;
323 gcm_store_->SetDeviceCredentials(android_id_,
324 secret_,
325 base::Bind(&MCSProbe::UpdateCallback,
326 base::Unretained(this)));
327 } else {
328 android_id_ = load_result->device_android_id;
329 secret_ = load_result->device_security_token;
330 DVLOG(1) << "Loaded MCS id " << android_id_;
332 mcs_client_->Initialize(
333 base::Bind(&MCSProbe::ErrorCallback, base::Unretained(this)),
334 base::Bind(&MessageReceivedCallback),
335 base::Bind(&MessageSentCallback),
336 load_result.Pass());
338 if (!android_id_ || !secret_) {
339 DVLOG(1) << "Checkin to generate new MCS credentials.";
340 CheckIn();
341 return;
344 StartMCSLogin();
347 void MCSProbe::UpdateCallback(bool success) {
350 void MCSProbe::InitializeNetworkState() {
351 base::ScopedFILE log_file;
352 if (command_line_.HasSwitch(kLogFileSwitch)) {
353 base::FilePath log_path = command_line_.GetSwitchValuePath(kLogFileSwitch);
354 #if defined(OS_WIN)
355 log_file.reset(_wfopen(log_path.value().c_str(), L"w"));
356 #elif defined(OS_POSIX)
357 log_file.reset(fopen(log_path.value().c_str(), "w"));
358 #endif
360 if (log_file.get()) {
361 logger_.reset(new net::NetLogLogger());
362 logger_->set_log_level(net::NetLog::LOG_ALL_BUT_BYTES);
363 logger_->StartObserving(&net_log_, log_file.Pass(), nullptr, nullptr);
366 host_resolver_ = net::HostResolver::CreateDefaultResolver(&net_log_);
368 if (command_line_.HasSwitch(kIgnoreCertSwitch)) {
369 cert_verifier_.reset(new MyTestCertVerifier());
370 } else {
371 cert_verifier_.reset(net::CertVerifier::CreateDefault());
373 system_channel_id_service_.reset(
374 new net::ChannelIDService(
375 new net::DefaultChannelIDStore(NULL),
376 base::WorkerPool::GetTaskRunner(true)));
378 transport_security_state_.reset(new net::TransportSecurityState());
379 url_security_manager_.reset(net::URLSecurityManager::Create(NULL, NULL));
380 http_auth_handler_factory_.reset(
381 net::HttpAuthHandlerRegistryFactory::Create(
382 std::vector<std::string>(1, "basic"),
383 url_security_manager_.get(),
384 host_resolver_.get(),
385 std::string(),
386 false,
387 false));
388 http_server_properties_.reset(new net::HttpServerPropertiesImpl());
389 host_mapping_rules_.reset(new net::HostMappingRules());
390 proxy_service_.reset(net::ProxyService::CreateDirectWithNetLog(&net_log_));
393 void MCSProbe::BuildNetworkSession() {
394 net::HttpNetworkSession::Params session_params;
395 session_params.host_resolver = host_resolver_.get();
396 session_params.cert_verifier = cert_verifier_.get();
397 session_params.channel_id_service = system_channel_id_service_.get();
398 session_params.transport_security_state = transport_security_state_.get();
399 session_params.ssl_config_service = new net::SSLConfigServiceDefaults();
400 session_params.http_auth_handler_factory = http_auth_handler_factory_.get();
401 session_params.http_server_properties =
402 http_server_properties_->GetWeakPtr();
403 session_params.network_delegate = NULL; // TODO(zea): implement?
404 session_params.host_mapping_rules = host_mapping_rules_.get();
405 session_params.ignore_certificate_errors = true;
406 session_params.testing_fixed_http_port = 0;
407 session_params.testing_fixed_https_port = 0;
408 session_params.net_log = &net_log_;
409 session_params.proxy_service = proxy_service_.get();
411 network_session_ = new net::HttpNetworkSession(session_params);
414 void MCSProbe::ErrorCallback() {
415 LOG(INFO) << "MCS error happened";
418 void MCSProbe::CheckIn() {
419 LOG(INFO) << "Check-in request initiated.";
420 checkin_proto::ChromeBuildProto chrome_build_proto;
421 chrome_build_proto.set_platform(
422 checkin_proto::ChromeBuildProto::PLATFORM_LINUX);
423 chrome_build_proto.set_channel(
424 checkin_proto::ChromeBuildProto::CHANNEL_CANARY);
425 chrome_build_proto.set_chrome_version(kChromeVersion);
427 CheckinRequest::RequestInfo request_info(0,
429 std::map<std::string, std::string>(),
430 std::string(),
431 chrome_build_proto);
433 checkin_request_.reset(new CheckinRequest(
434 GServicesSettings::DefaultCheckinURL(),
435 request_info,
436 kDefaultBackoffPolicy,
437 base::Bind(&MCSProbe::OnCheckInCompleted, base::Unretained(this)),
438 url_request_context_getter_.get(),
439 &recorder_));
440 checkin_request_->Start();
443 void MCSProbe::OnCheckInCompleted(
444 const checkin_proto::AndroidCheckinResponse& checkin_response) {
445 bool success = checkin_response.has_android_id() &&
446 checkin_response.android_id() != 0UL &&
447 checkin_response.has_security_token() &&
448 checkin_response.security_token() != 0UL;
449 LOG(INFO) << "Check-in request completion "
450 << (success ? "success!" : "failure!");
452 if (!success)
453 return;
455 android_id_ = checkin_response.android_id();
456 secret_ = checkin_response.security_token();
458 gcm_store_->SetDeviceCredentials(android_id_,
459 secret_,
460 base::Bind(&MCSProbe::UpdateCallback,
461 base::Unretained(this)));
463 StartMCSLogin();
466 void MCSProbe::StartMCSLogin() {
467 LOG(INFO) << "MCS login initiated.";
469 mcs_client_->Login(android_id_, secret_);
472 int MCSProbeMain(int argc, char* argv[]) {
473 base::AtExitManager exit_manager;
475 base::CommandLine::Init(argc, argv);
476 logging::LoggingSettings settings;
477 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
478 logging::InitLogging(settings);
480 base::MessageLoopForIO message_loop;
482 // For check-in and creating registration ids.
483 const scoped_refptr<MyTestURLRequestContextGetter> context_getter =
484 new MyTestURLRequestContextGetter(
485 base::MessageLoop::current()->message_loop_proxy());
487 const base::CommandLine& command_line =
488 *base::CommandLine::ForCurrentProcess();
490 MCSProbe mcs_probe(command_line, context_getter);
491 mcs_probe.Start();
493 base::RunLoop run_loop;
494 run_loop.Run();
496 return 0;
499 } // namespace
500 } // namespace gcm
502 int main(int argc, char* argv[]) {
503 return gcm::MCSProbeMain(argc, argv);