1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/mobile/mobile_activator.h"
#include <algorithm>
#include <map>
#include <string>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/files/file_util.h"
#include "base/json/json_reader.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/ref_counted_memory.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/histogram.h"
#include "base/observer_list_threadsafe.h"
#include "base/prefs/pref_service.h"
#include "base/strings/string_piece.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/timer/timer.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/common/pref_names.h"
#include "chromeos/network/device_state.h"
#include "chromeos/network/network_activation_handler.h"
#include "chromeos/network/network_configuration_handler.h"
#include "chromeos/network/network_connection_handler.h"
#include "chromeos/network/network_event_log.h"
#include "chromeos/network/network_handler_callbacks.h"
#include "chromeos/network/network_state.h"
#include "chromeos/network/network_state_handler.h"
#include "content/public/browser/browser_thread.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
#include "ui/chromeos/network/network_connect.h"
using content::BrowserThread;
namespace {
// Cellular configuration file path.
const char kCellularConfigPath[] =
"/usr/share/chromeos-assets/mobile/mobile_config.json";
// Cellular config file field names.
const char kVersionField[] = "version";
const char kErrorsField[] = "errors";
// Number of times we'll try an OTASP before failing the activation process.
const int kMaxOTASPTries = 3;
// Number of times we will retry to reconnect and reload payment portal page.
const int kMaxPortalReconnectCount = 2;
// Time between connection attempts when forcing a reconnect.
const int kReconnectDelayMS = 3000;
// Retry delay after failed OTASP attempt.
const int kOTASPRetryDelay = 40000;
// Maximum amount of time we'll wait for a service to reconnect.
const int kMaxReconnectTime = 30000;
// Error codes matching codes defined in the cellular config file.
const char kErrorDefault[] = "default";
const char kErrorBadConnectionPartial[] = "bad_connection_partial";
const char kErrorBadConnectionActivated[] = "bad_connection_activated";
const char kErrorRoamingOnConnection[] = "roaming_connection";
const char kErrorNoEVDO[] = "no_evdo";
const char kErrorRoamingActivation[] = "roaming_activation";
const char kErrorRoamingPartiallyActivated[] = "roaming_partially_activated";
const char kErrorNoService[] = "no_service";
const char kErrorDisabled[] = "disabled";
const char kErrorNoDevice[] = "no_device";
const char kFailedPaymentError[] = "failed_payment";
const char kFailedConnectivity[] = "connectivity";
// Returns true if the device follows the simple activation flow.
bool IsSimpleActivationFlow(const chromeos::NetworkState* network) {
return (network->activation_type() == shill::kActivationTypeNonCellular ||
network->activation_type() == shill::kActivationTypeOTA);
}
} // namespace
namespace chromeos {
////////////////////////////////////////////////////////////////////////////////
//
// CellularConfigDocument
//
////////////////////////////////////////////////////////////////////////////////
CellularConfigDocument::CellularConfigDocument() {}
std::string CellularConfigDocument::GetErrorMessage(const std::string& code) {
base::AutoLock create(config_lock_);
ErrorMap::iterator iter = error_map_.find(code);
if (iter == error_map_.end())
return code;
return iter->second;
}
void CellularConfigDocument::LoadCellularConfigFile() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
// Load partner customization startup manifest if it is available.
base::FilePath config_path(kCellularConfigPath);
if (!base::PathExists(config_path))
return;
if (LoadFromFile(config_path))
DVLOG(1) << "Cellular config file loaded: " << kCellularConfigPath;
else
LOG(ERROR) << "Error loading cellular config file: " << kCellularConfigPath;
}
CellularConfigDocument::~CellularConfigDocument() {}
void CellularConfigDocument::SetErrorMap(
const ErrorMap& map) {
base::AutoLock create(config_lock_);
error_map_.clear();
error_map_.insert(map.begin(), map.end());
}
bool CellularConfigDocument::LoadFromFile(const base::FilePath& config_path) {
std::string config;
if (!base::ReadFileToString(config_path, &config))
return false;
scoped_ptr<base::Value> root(
base::JSONReader::Read(config, base::JSON_ALLOW_TRAILING_COMMAS));
DCHECK(root.get() != NULL);
if (!root.get() || root->GetType() != base::Value::TYPE_DICTIONARY) {
LOG(WARNING) << "Bad cellular config file";
return false;
}
base::DictionaryValue* root_dict =
static_cast<base::DictionaryValue*>(root.get());
if (!root_dict->GetString(kVersionField, &version_)) {
LOG(WARNING) << "Cellular config file missing version";
return false;
}
ErrorMap error_map;
base::DictionaryValue* errors = NULL;
if (!root_dict->GetDictionary(kErrorsField, &errors))
return false;
for (base::DictionaryValue::Iterator it(*errors);
!it.IsAtEnd(); it.Advance()) {
std::string value;
if (!it.value().GetAsString(&value)) {
LOG(WARNING) << "Bad cellular config error value";
return false;
}
error_map.insert(ErrorMap::value_type(it.key(), value));
}
SetErrorMap(error_map);
return true;
}
////////////////////////////////////////////////////////////////////////////////
//
// MobileActivator
//
////////////////////////////////////////////////////////////////////////////////
MobileActivator::MobileActivator()
: cellular_config_(new CellularConfigDocument()),
state_(PLAN_ACTIVATION_PAGE_LOADING),
reenable_cert_check_(false),
terminated_(true),
pending_activation_request_(false),
connection_retry_count_(0),
initial_OTASP_attempts_(0),
trying_OTASP_attempts_(0),
final_OTASP_attempts_(0),
payment_reconnect_count_(0),
weak_ptr_factory_(this) {
}
MobileActivator::~MobileActivator() {
TerminateActivation();
}
MobileActivator* MobileActivator::GetInstance() {
return Singleton<MobileActivator>::get();
}
void MobileActivator::TerminateActivation() {
state_duration_timer_.Stop();
continue_reconnect_timer_.Stop();
reconnect_timeout_timer_.Stop();
if (NetworkHandler::IsInitialized()) {
NetworkHandler::Get()->network_state_handler()->
RemoveObserver(this, FROM_HERE);
}
ReEnableCertRevocationChecking();
meid_.clear();
iccid_.clear();
service_path_.clear();
device_path_.clear();
state_ = PLAN_ACTIVATION_PAGE_LOADING;
reenable_cert_check_ = false;
terminated_ = true;
// Release the previous cellular config and setup a new empty one.
cellular_config_ = new CellularConfigDocument();
}
void MobileActivator::DefaultNetworkChanged(const NetworkState* network) {
RefreshCellularNetworks();
}
void MobileActivator::NetworkPropertiesUpdated(const NetworkState* network) {
if (state_ == PLAN_ACTIVATION_PAGE_LOADING)
return;
if (!network || network->type() != shill::kTypeCellular)
return;
const DeviceState* device = NetworkHandler::Get()->network_state_handler()->
GetDeviceState(network->device_path());
if (!device) {
LOG(ERROR) << "Cellular device can't be found: " << network->device_path();
return;
}
if (network->device_path() != device_path_) {
LOG(WARNING) << "Ignoring property update for cellular service "
<< network->path()
<< " on unknown device " << network->device_path()
<< " (Stored device path = " << device_path_ << ")";
return;
}
// A modem reset leads to a new service path. Since we have verified that we
// are a cellular service on a still valid stored device path, update it.
service_path_ = network->path();
EvaluateCellularNetwork(network);
}
void MobileActivator::AddObserver(MobileActivator::Observer* observer) {
DCHECK(content::BrowserThread::CurrentlyOn(BrowserThread::UI));
observers_.AddObserver(observer);
}
void MobileActivator::RemoveObserver(MobileActivator::Observer* observer) {
DCHECK(content::BrowserThread::CurrentlyOn(BrowserThread::UI));
observers_.RemoveObserver(observer);
}
void MobileActivator::InitiateActivation(const std::string& service_path) {
DCHECK(content::BrowserThread::CurrentlyOn(BrowserThread::UI));
const NetworkState* network = GetNetworkState(service_path);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path;
return;
}
const DeviceState* device = NetworkHandler::Get()->network_state_handler()->
GetDeviceState(network->device_path());
if (!device) {
LOG(ERROR) << "Cellular device can't be found: " << network->device_path();
return;
}
terminated_ = false;
meid_ = device->meid();
iccid_ = device->iccid();
service_path_ = service_path;
device_path_ = network->device_path();
ChangeState(network, PLAN_ACTIVATION_PAGE_LOADING, "");
BrowserThread::PostTaskAndReply(BrowserThread::FILE, FROM_HERE,
base::Bind(&CellularConfigDocument::LoadCellularConfigFile,
cellular_config_.get()),
base::Bind(&MobileActivator::ContinueActivation, AsWeakPtr()));
}
void MobileActivator::ContinueActivation() {
NetworkHandler::Get()->network_configuration_handler()->GetProperties(
service_path_,
base::Bind(&MobileActivator::GetPropertiesAndContinueActivation,
weak_ptr_factory_.GetWeakPtr()),
base::Bind(&MobileActivator::GetPropertiesFailure,
weak_ptr_factory_.GetWeakPtr()));
}
void MobileActivator::GetPropertiesAndContinueActivation(
const std::string& service_path,
const base::DictionaryValue& properties) {
if (service_path != service_path_) {
NET_LOG_EVENT("MobileActivator::GetProperties received for stale network",
service_path);
return; // Edge case; abort.
}
const base::DictionaryValue* payment_dict;
std::string usage_url, payment_url;
if (!properties.GetStringWithoutPathExpansion(
shill::kUsageURLProperty, &usage_url) ||
!properties.GetDictionaryWithoutPathExpansion(
shill::kPaymentPortalProperty, &payment_dict) ||
!payment_dict->GetStringWithoutPathExpansion(
shill::kPaymentPortalURL, &payment_url)) {
NET_LOG_ERROR("MobileActivator missing properties", service_path_);
return;
}
if (payment_url.empty() && usage_url.empty())
return;
DisableCertRevocationChecking();
// We want shill to connect us after activations, so enable autoconnect.
base::DictionaryValue auto_connect_property;
auto_connect_property.SetBoolean(shill::kAutoConnectProperty, true);
NetworkHandler::Get()->network_configuration_handler()->SetProperties(
service_path_,
auto_connect_property,
// Activation is triggered by the UI.
NetworkConfigurationObserver::SOURCE_USER_ACTION,
base::Bind(&base::DoNothing),
network_handler::ErrorCallback());
StartActivation();
}
void MobileActivator::GetPropertiesFailure(
const std::string& error_name,
scoped_ptr<base::DictionaryValue> error_data) {
NET_LOG_ERROR("MobileActivator GetProperties Failed: " + error_name,
service_path_);
}
void MobileActivator::OnSetTransactionStatus(bool success) {
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&MobileActivator::HandleSetTransactionStatus,
AsWeakPtr(), success));
}
void MobileActivator::HandleSetTransactionStatus(bool success) {
// The payment is received, try to reconnect and check the status all over
// again.
if (success && state_ == PLAN_ACTIVATION_SHOWING_PAYMENT) {
SignalCellularPlanPayment();
UMA_HISTOGRAM_COUNTS("Cellular.PaymentReceived", 1);
const NetworkState* network = GetNetworkState(service_path_);
if (network && IsSimpleActivationFlow(network)) {
state_ = PLAN_ACTIVATION_DONE;
NetworkHandler::Get()->network_activation_handler()->
CompleteActivation(network->path(),
base::Bind(&base::DoNothing),
network_handler::ErrorCallback());
} else {
StartOTASP();
}
} else {
UMA_HISTOGRAM_COUNTS("Cellular.PaymentFailed", 1);
}
}
void MobileActivator::OnPortalLoaded(bool success) {
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
base::Bind(&MobileActivator::HandlePortalLoaded,
AsWeakPtr(), success));
}
void MobileActivator::HandlePortalLoaded(bool success) {
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
ChangeState(NULL, PLAN_ACTIVATION_ERROR,
GetErrorMessage(kErrorNoService));
return;
}
if (state_ == PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING ||
state_ == PLAN_ACTIVATION_SHOWING_PAYMENT) {
if (success) {
payment_reconnect_count_ = 0;
ChangeState(network, PLAN_ACTIVATION_SHOWING_PAYMENT, std::string());
} else {
// There is no point in forcing reconnecting the cellular network if the
// activation should not be done over it.
if (network->activation_type() == shill::kActivationTypeNonCellular)
return;
payment_reconnect_count_++;
if (payment_reconnect_count_ > kMaxPortalReconnectCount) {
ChangeState(NULL, PLAN_ACTIVATION_ERROR,
GetErrorMessage(kErrorNoService));
return;
}
// Reconnect and try and load the frame again.
ChangeState(network,
PLAN_ACTIVATION_RECONNECTING,
GetErrorMessage(kFailedPaymentError));
}
} else {
NOTREACHED() << "Called paymentPortalLoad while in unexpected state: "
<< GetStateDescription(state_);
}
}
void MobileActivator::StartOTASPTimer() {
pending_activation_request_ = false;
state_duration_timer_.Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(kOTASPRetryDelay),
this, &MobileActivator::HandleOTASPTimeout);
}
void MobileActivator::StartActivation() {
UMA_HISTOGRAM_COUNTS("Cellular.MobileSetupStart", 1);
const NetworkState* network = GetNetworkState(service_path_);
// Check if we can start activation process.
if (!network) {
NetworkStateHandler::TechnologyState technology_state =
NetworkHandler::Get()->network_state_handler()->GetTechnologyState(
NetworkTypePattern::Cellular());
std::string error;
if (technology_state == NetworkStateHandler::TECHNOLOGY_UNAVAILABLE) {
error = kErrorNoDevice;
} else if (technology_state != NetworkStateHandler::TECHNOLOGY_ENABLED) {
error = kErrorDisabled;
} else {
error = kErrorNoService;
}
ChangeState(NULL, PLAN_ACTIVATION_ERROR, GetErrorMessage(error));
return;
}
// Start monitoring network property changes.
NetworkHandler::Get()->network_state_handler()->AddObserver(this, FROM_HERE);
if (network->activation_type() == shill::kActivationTypeNonCellular)
StartActivationOverNonCellularNetwork();
else if (network->activation_type() == shill::kActivationTypeOTA)
StartActivationOTA();
else if (network->activation_type() == shill::kActivationTypeOTASP)
StartActivationOTASP();
}
void MobileActivator::StartActivationOverNonCellularNetwork() {
// Fast forward to payment portal loading.
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
ChangeState(
network,
(network->activation_state() == shill::kActivationStateActivated) ?
PLAN_ACTIVATION_DONE :
PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING,
"" /* error_description */);
RefreshCellularNetworks();
}
void MobileActivator::StartActivationOTA() {
// Connect to the network if we don't currently have access.
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
const NetworkState* default_network = GetDefaultNetwork();
bool is_online_or_portal = default_network &&
(default_network->connection_state() == shill::kStateOnline ||
default_network->connection_state() == shill::kStatePortal);
if (!is_online_or_portal)
ConnectNetwork(network);
ChangeState(network, PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING,
"" /* error_description */);
RefreshCellularNetworks();
}
void MobileActivator::StartActivationOTASP() {
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
if (HasRecentCellularPlanPayment() &&
(network->activation_state() ==
shill::kActivationStatePartiallyActivated)) {
// Try to start with OTASP immediately if we have received payment recently.
state_ = PLAN_ACTIVATION_START_OTASP;
} else {
state_ = PLAN_ACTIVATION_START;
}
EvaluateCellularNetwork(network);
}
void MobileActivator::RetryOTASP() {
DCHECK(state_ == PLAN_ACTIVATION_DELAY_OTASP);
StartOTASP();
}
void MobileActivator::StartOTASP() {
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
ChangeState(network, PLAN_ACTIVATION_START_OTASP, std::string());
EvaluateCellularNetwork(network);
}
void MobileActivator::HandleOTASPTimeout() {
LOG(WARNING) << "OTASP seems to be taking too long.";
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
// We're here because one of OTASP steps is taking too long to complete.
// Usually, this means something bad has happened below us.
if (state_ == PLAN_ACTIVATION_INITIATING_ACTIVATION) {
++initial_OTASP_attempts_;
if (initial_OTASP_attempts_ <= kMaxOTASPTries) {
ChangeState(network,
PLAN_ACTIVATION_RECONNECTING,
GetErrorMessage(kErrorDefault));
return;
}
} else if (state_ == PLAN_ACTIVATION_TRYING_OTASP) {
++trying_OTASP_attempts_;
if (trying_OTASP_attempts_ <= kMaxOTASPTries) {
ChangeState(network,
PLAN_ACTIVATION_RECONNECTING,
GetErrorMessage(kErrorDefault));
return;
}
} else if (state_ == PLAN_ACTIVATION_OTASP) {
++final_OTASP_attempts_;
if (final_OTASP_attempts_ <= kMaxOTASPTries) {
// Give the portal time to propagate all those magic bits.
ChangeState(network,
PLAN_ACTIVATION_DELAY_OTASP,
GetErrorMessage(kErrorDefault));
return;
}
} else {
LOG(ERROR) << "OTASP timed out from a non-OTASP wait state?";
}
LOG(ERROR) << "OTASP failed too many times; aborting.";
ChangeState(network,
PLAN_ACTIVATION_ERROR,
GetErrorMessage(kErrorDefault));
}
void MobileActivator::ConnectNetwork(const NetworkState* network) {
NetworkHandler::Get()->network_connection_handler()->ConnectToNetwork(
network->path(),
base::Bind(&base::DoNothing),
network_handler::ErrorCallback(),
false /* check_error_state */);
}
void MobileActivator::ForceReconnect(const NetworkState* network,
PlanActivationState next_state) {
DCHECK(network);
// Store away our next destination for when we complete.
post_reconnect_state_ = next_state;
UMA_HISTOGRAM_COUNTS("Cellular.ActivationRetry", 1);
// First, disconnect...
VLOG(1) << "Disconnecting from " << network->path();
// Explicit service Disconnect()s disable autoconnect on the service until
// Connect() is called on the service again. Hence this dance to explicitly
// call Connect().
NetworkHandler::Get()->network_connection_handler()->DisconnectNetwork(
network->path(),
base::Bind(&base::DoNothing),
network_handler::ErrorCallback());
// Keep trying to connect until told otherwise.
continue_reconnect_timer_.Stop();
continue_reconnect_timer_.Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(kReconnectDelayMS),
this, &MobileActivator::ContinueConnecting);
// If we don't ever connect again, we're going to call this a failure.
reconnect_timeout_timer_.Stop();
reconnect_timeout_timer_.Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(kMaxReconnectTime),
this, &MobileActivator::ReconnectTimedOut);
}
void MobileActivator::ReconnectTimedOut() {
LOG(ERROR) << "Ending activation attempt after failing to reconnect.";
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
ChangeState(network,
PLAN_ACTIVATION_ERROR,
GetErrorMessage(kFailedConnectivity));
}
void MobileActivator::ContinueConnecting() {
const NetworkState* network = GetNetworkState(service_path_);
if (network && network->IsConnectedState()) {
if (network->connection_state() == shill::kStatePortal &&
network->error() == shill::kErrorDNSLookupFailed) {
// It isn't an error to be in a restricted pool, but if DNS doesn't work,
// then we're not getting traffic through at all. Just disconnect and
// try again.
NetworkHandler::Get()->network_connection_handler()->DisconnectNetwork(
network->path(),
base::Bind(&base::DoNothing),
network_handler::ErrorCallback());
return;
}
// Stop this callback
continue_reconnect_timer_.Stop();
EvaluateCellularNetwork(network);
} else {
LOG(WARNING) << "Connect failed, will try again in a little bit.";
if (network) {
VLOG(1) << "Connecting to: " << network->path();
ui::NetworkConnect::Get()->ConnectToNetwork(network->path());
}
}
}
void MobileActivator::RefreshCellularNetworks() {
if (state_ == PLAN_ACTIVATION_PAGE_LOADING ||
state_ == PLAN_ACTIVATION_DONE ||
state_ == PLAN_ACTIVATION_ERROR) {
return;
}
const NetworkState* network = GetNetworkState(service_path_);
if (!network) {
LOG(WARNING) << "Cellular service can't be found: " << service_path_;
return;
}
if (IsSimpleActivationFlow(network)) {
bool waiting = (state_ == PLAN_ACTIVATION_WAITING_FOR_CONNECTION);
// We're only interested in whether or not we have access to the payment
// portal (regardless of which network we use to access it), so check
// the default network connection state. The default network is the network
// used to route default traffic. Also, note that we can access the
// payment portal over a cellular network in the portalled state.
const NetworkState* default_network = GetDefaultNetwork();
bool is_online_or_portal = default_network &&
(default_network->connection_state() == shill::kStateOnline ||
(default_network->type() == shill::kTypeCellular &&
default_network->connection_state() == shill::kStatePortal));
if (waiting && is_online_or_portal) {
ChangeState(network, post_reconnect_state_, "");
} else if (!waiting && !is_online_or_portal) {
ChangeState(network, PLAN_ACTIVATION_WAITING_FOR_CONNECTION, "");
}
}
EvaluateCellularNetwork(network);
}
const NetworkState* MobileActivator::GetNetworkState(
const std::string& service_path) {
return NetworkHandler::Get()->network_state_handler()->GetNetworkState(
service_path);
}
const NetworkState* MobileActivator::GetDefaultNetwork() {
return NetworkHandler::Get()->network_state_handler()->DefaultNetwork();
}
void MobileActivator::EvaluateCellularNetwork(const NetworkState* network) {
if (terminated_) {
LOG(ERROR) << "Tried to run MobileActivator state machine while "
<< "terminated.";
return;
}
if (!network) {
LOG(WARNING) << "Cellular service lost";
return;
}
LOG(WARNING) << "Cellular:\n service state=" << network->connection_state()
<< "\n ui=" << GetStateDescription(state_)
<< "\n activation=" << network->activation_state()
<< "\n error=" << network->error()
<< "\n setvice_path=" << network->path()
<< "\n connected=" << network->IsConnectedState();
// If the network is activated over non cellular network or OTA, the
// activator state does not depend on the network's own state.
if (IsSimpleActivationFlow(network))
return;
std::string error_description;
PlanActivationState new_state = PickNextState(network, &error_description);
ChangeState(network, new_state, error_description);
}
MobileActivator::PlanActivationState MobileActivator::PickNextState(
const NetworkState* network, std::string* error_description) const {
PlanActivationState new_state = state_;
if (!network->IsConnectedState())
new_state = PickNextOfflineState(network);
else
new_state = PickNextOnlineState(network);
if (new_state != PLAN_ACTIVATION_ERROR &&
GotActivationError(network, error_description)) {
// Check for this special case when we try to do activate partially
// activated device. If that attempt failed, try to disconnect to clear the
// state and reconnect again.
const std::string& activation = network->activation_state();
if ((activation == shill::kActivationStatePartiallyActivated ||
activation == shill::kActivationStateActivating) &&
(network->error().empty() ||
network->error() == shill::kErrorOtaspFailed) &&
network->connection_state() == shill::kStateActivationFailure) {
NET_LOG_EVENT("Activation failure detected ", network->path());
switch (state_) {
case PLAN_ACTIVATION_OTASP:
new_state = PLAN_ACTIVATION_DELAY_OTASP;
break;
case PLAN_ACTIVATION_INITIATING_ACTIVATION:
case PLAN_ACTIVATION_TRYING_OTASP:
new_state = PLAN_ACTIVATION_START;
break;
case PLAN_ACTIVATION_START:
// We are just starting, so this must be previous activation attempt
// failure.
new_state = PLAN_ACTIVATION_TRYING_OTASP;
break;
case PLAN_ACTIVATION_DELAY_OTASP:
new_state = state_;
break;
default:
new_state = PLAN_ACTIVATION_ERROR;
break;
}
} else {
LOG(WARNING) << "Unexpected activation failure for " << network->path();
new_state = PLAN_ACTIVATION_ERROR;
}
}
if (new_state == PLAN_ACTIVATION_ERROR && !error_description->length())
*error_description = GetErrorMessage(kErrorDefault);
return new_state;
}
MobileActivator::PlanActivationState MobileActivator::PickNextOfflineState(
const NetworkState* network) const {
PlanActivationState new_state = state_;
const std::string& activation = network->activation_state();
switch (state_) {
case PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING:
case PLAN_ACTIVATION_SHOWING_PAYMENT:
if (!IsSimpleActivationFlow(network))
new_state = PLAN_ACTIVATION_RECONNECTING;
break;
case PLAN_ACTIVATION_START:
if (activation == shill::kActivationStateActivated) {
if (network->connection_state() == shill::kStatePortal)
new_state = PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING;
else
new_state = PLAN_ACTIVATION_DONE;
} else if (activation == shill::kActivationStatePartiallyActivated) {
new_state = PLAN_ACTIVATION_TRYING_OTASP;
} else {
new_state = PLAN_ACTIVATION_INITIATING_ACTIVATION;
}
break;
default:
VLOG(1) << "Waiting for cellular service to connect.";
break;
}
return new_state;
}
MobileActivator::PlanActivationState MobileActivator::PickNextOnlineState(
const NetworkState* network) const {
PlanActivationState new_state = state_;
const std::string& activation = network->activation_state();
switch (state_) {
case PLAN_ACTIVATION_START:
if (activation == shill::kActivationStateActivated) {
if (network->connection_state() == shill::kStateOnline)
new_state = PLAN_ACTIVATION_DONE;
else
new_state = PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING;
} else if (activation == shill::kActivationStatePartiallyActivated) {
new_state = PLAN_ACTIVATION_TRYING_OTASP;
} else {
new_state = PLAN_ACTIVATION_INITIATING_ACTIVATION;
}
break;
case PLAN_ACTIVATION_START_OTASP: {
if (activation == shill::kActivationStatePartiallyActivated) {
new_state = PLAN_ACTIVATION_OTASP;
} else if (activation == shill::kActivationStateActivated) {
new_state = PLAN_ACTIVATION_RECONNECTING;
} else {
LOG(WARNING) << "Unexpected activation state for device "
<< network->path();
}
break;
}
case PLAN_ACTIVATION_DELAY_OTASP:
// Just ignore any changes until the OTASP retry timer kicks in.
break;
case PLAN_ACTIVATION_INITIATING_ACTIVATION: {
if (pending_activation_request_) {
VLOG(1) << "Waiting for pending activation attempt to finish";
} else if (activation == shill::kActivationStateActivated ||
activation == shill::kActivationStatePartiallyActivated) {
new_state = PLAN_ACTIVATION_START;
} else if (activation == shill::kActivationStateNotActivated ||
activation == shill::kActivationStateActivating) {
// Wait in this state until activation state changes.
} else {
LOG(WARNING) << "Unknown transition";
}
break;
}
case PLAN_ACTIVATION_OTASP:
case PLAN_ACTIVATION_TRYING_OTASP:
if (pending_activation_request_) {
VLOG(1) << "Waiting for pending activation attempt to finish";
} else if (activation == shill::kActivationStateNotActivated ||
activation == shill::kActivationStateActivating) {
VLOG(1) << "Waiting for the OTASP to finish and the service to "
<< "come back online";
} else if (activation == shill::kActivationStateActivated) {
new_state = PLAN_ACTIVATION_DONE;
} else {
new_state = PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING;
}
break;
case PLAN_ACTIVATION_RECONNECTING_PAYMENT:
if (network->connection_state() != shill::kStatePortal &&
activation == shill::kActivationStateActivated)
// We're not portalled, and we're already activated, so we're online!
new_state = PLAN_ACTIVATION_DONE;
else
new_state = PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING;
break;
// Initial state
case PLAN_ACTIVATION_PAGE_LOADING:
break;
// Just ignore all signals until the site confirms payment.
case PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING:
case PLAN_ACTIVATION_SHOWING_PAYMENT:
case PLAN_ACTIVATION_WAITING_FOR_CONNECTION:
break;
// Go where we decided earlier.
case PLAN_ACTIVATION_RECONNECTING:
new_state = post_reconnect_state_;
break;
// Activation completed/failed, ignore network changes.
case PLAN_ACTIVATION_DONE:
case PLAN_ACTIVATION_ERROR:
break;
}
return new_state;
}
// Debugging helper function, will take it out at the end.
const char* MobileActivator::GetStateDescription(PlanActivationState state) {
switch (state) {
case PLAN_ACTIVATION_PAGE_LOADING:
return "PAGE_LOADING";
case PLAN_ACTIVATION_START:
return "ACTIVATION_START";
case PLAN_ACTIVATION_INITIATING_ACTIVATION:
return "INITIATING_ACTIVATION";
case PLAN_ACTIVATION_TRYING_OTASP:
return "TRYING_OTASP";
case PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING:
return "PAYMENT_PORTAL_LOADING";
case PLAN_ACTIVATION_SHOWING_PAYMENT:
return "SHOWING_PAYMENT";
case PLAN_ACTIVATION_RECONNECTING_PAYMENT:
return "RECONNECTING_PAYMENT";
case PLAN_ACTIVATION_DELAY_OTASP:
return "DELAY_OTASP";
case PLAN_ACTIVATION_START_OTASP:
return "START_OTASP";
case PLAN_ACTIVATION_OTASP:
return "OTASP";
case PLAN_ACTIVATION_DONE:
return "DONE";
case PLAN_ACTIVATION_ERROR:
return "ERROR";
case PLAN_ACTIVATION_RECONNECTING:
return "RECONNECTING";
case PLAN_ACTIVATION_WAITING_FOR_CONNECTION:
return "WAITING FOR CONNECTION";
}
return "UNKNOWN";
}
void MobileActivator::CompleteActivation() {
// Remove observers, we are done with this page.
NetworkHandler::Get()->network_state_handler()->
RemoveObserver(this, FROM_HERE);
// Reactivate other types of connections if we have
// shut them down previously.
ReEnableCertRevocationChecking();
}
bool MobileActivator::RunningActivation() const {
return !(state_ == PLAN_ACTIVATION_DONE ||
state_ == PLAN_ACTIVATION_ERROR ||
state_ == PLAN_ACTIVATION_PAGE_LOADING);
}
void MobileActivator::HandleActivationFailure(
const std::string& service_path,
PlanActivationState new_state,
const std::string& error_name,
scoped_ptr<base::DictionaryValue> error_data) {
pending_activation_request_ = false;
const NetworkState* network = GetNetworkState(service_path);
if (!network) {
NET_LOG_ERROR("Cellular service no longer exists", service_path);
return;
}
UMA_HISTOGRAM_COUNTS("Cellular.ActivationFailure", 1);
NET_LOG_ERROR("Failed to call Activate() on service", service_path);
if (new_state == PLAN_ACTIVATION_OTASP) {
ChangeState(network, PLAN_ACTIVATION_DELAY_OTASP, std::string());
} else {
ChangeState(network,
PLAN_ACTIVATION_ERROR,
GetErrorMessage(kFailedConnectivity));
}
}
void MobileActivator::RequestCellularActivation(
const NetworkState* network,
const base::Closure& success_callback,
const network_handler::ErrorCallback& error_callback) {
DCHECK(network);
NET_LOG_EVENT("Activating cellular service", network->path());
UMA_HISTOGRAM_COUNTS("Cellular.ActivationTry", 1);
pending_activation_request_ = true;
NetworkHandler::Get()->network_activation_handler()->
Activate(network->path(),
"", // carrier
success_callback,
error_callback);
}
void MobileActivator::ChangeState(const NetworkState* network,
PlanActivationState new_state,
std::string error_description) {
// Report an error, by transitioning into a PLAN_ACTIVATION_ERROR state with
// a "no service" error instead, if no network state is available (e.g. the
// cellular service no longer exists) when we are transitioning into certain
// plan activation state.
if (!network) {
switch (new_state) {
case PLAN_ACTIVATION_INITIATING_ACTIVATION:
case PLAN_ACTIVATION_TRYING_OTASP:
case PLAN_ACTIVATION_OTASP:
case PLAN_ACTIVATION_DONE:
new_state = PLAN_ACTIVATION_ERROR;
error_description = GetErrorMessage(kErrorNoService);
default:
break;
}
}
static bool first_time = true;
VLOG(1) << "Activation state flip old = "
<< GetStateDescription(state_)
<< ", new = " << GetStateDescription(new_state);
if (state_ == new_state && !first_time)
return;
first_time = false;
VLOG(1) << "Transitioning...";
// Kill all the possible timers and callbacks we might have outstanding.
state_duration_timer_.Stop();
continue_reconnect_timer_.Stop();
reconnect_timeout_timer_.Stop();
const PlanActivationState old_state = state_;
state_ = new_state;
// Signal to observers layer that the state is changing.
FOR_EACH_OBSERVER(Observer, observers_,
OnActivationStateChanged(network, state_, error_description));
// Pick action that should happen on entering the new state.
switch (new_state) {
case PLAN_ACTIVATION_START:
break;
case PLAN_ACTIVATION_DELAY_OTASP: {
UMA_HISTOGRAM_COUNTS("Cellular.RetryOTASP", 1);
BrowserThread::PostDelayedTask(BrowserThread::UI, FROM_HERE,
base::Bind(&MobileActivator::RetryOTASP, AsWeakPtr()),
base::TimeDelta::FromMilliseconds(kOTASPRetryDelay));
break;
}
case PLAN_ACTIVATION_START_OTASP:
break;
case PLAN_ACTIVATION_INITIATING_ACTIVATION:
case PLAN_ACTIVATION_TRYING_OTASP:
case PLAN_ACTIVATION_OTASP: {
DCHECK(network);
network_handler::ErrorCallback on_activation_error =
base::Bind(&MobileActivator::HandleActivationFailure, AsWeakPtr(),
network->path(),
new_state);
RequestCellularActivation(
network,
base::Bind(&MobileActivator::StartOTASPTimer, AsWeakPtr()),
on_activation_error);
}
break;
case PLAN_ACTIVATION_PAGE_LOADING:
return;
case PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING:
case PLAN_ACTIVATION_SHOWING_PAYMENT:
case PLAN_ACTIVATION_RECONNECTING_PAYMENT:
// Fix for fix SSL for the walled gardens where cert chain verification
// might not work.
break;
case PLAN_ACTIVATION_WAITING_FOR_CONNECTION:
post_reconnect_state_ = old_state;
break;
case PLAN_ACTIVATION_RECONNECTING: {
PlanActivationState next_state = old_state;
// Pick where we want to return to after we reconnect.
switch (old_state) {
case PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING:
case PLAN_ACTIVATION_SHOWING_PAYMENT:
// We decide here what to do next based on the state of the modem.
next_state = PLAN_ACTIVATION_RECONNECTING_PAYMENT;
break;
case PLAN_ACTIVATION_INITIATING_ACTIVATION:
case PLAN_ACTIVATION_TRYING_OTASP:
next_state = PLAN_ACTIVATION_START;
break;
case PLAN_ACTIVATION_START_OTASP:
case PLAN_ACTIVATION_OTASP:
if (!network || !network->IsConnectedState()) {
next_state = PLAN_ACTIVATION_START_OTASP;
} else {
// We're online, which means we've conspired with
// PickNextOnlineState to reconnect after activation (that's the
// only way we see this transition). Thus, after we reconnect, we
// should be done.
next_state = PLAN_ACTIVATION_DONE;
}
break;
default:
LOG(ERROR) << "Transitioned to RECONNECTING from an unexpected "
<< "state.";
break;
}
if (network)
ForceReconnect(network, next_state);
break;
}
case PLAN_ACTIVATION_DONE:
DCHECK(network);
CompleteActivation();
UMA_HISTOGRAM_COUNTS("Cellular.MobileSetupSucceeded", 1);
break;
case PLAN_ACTIVATION_ERROR:
CompleteActivation();
UMA_HISTOGRAM_COUNTS("Cellular.PlanFailed", 1);
break;
default:
break;
}
}
void MobileActivator::ReEnableCertRevocationChecking() {
// Check that both the browser process and prefs exist before trying to
// use them, since this method can be called by the destructor while Chrome
// is shutting down, during which either could be NULL.
if (!g_browser_process)
return;
PrefService* prefs = g_browser_process->local_state();
if (!prefs)
return;
if (reenable_cert_check_) {
prefs->SetBoolean(prefs::kCertRevocationCheckingEnabled,
true);
reenable_cert_check_ = false;
}
}
void MobileActivator::DisableCertRevocationChecking() {
// Disable SSL cert checks since we might be performing activation in the
// restricted pool.
// TODO(rkc): We want to do this only if on Cellular.
PrefService* prefs = g_browser_process->local_state();
if (!reenable_cert_check_ &&
prefs->GetBoolean(
prefs::kCertRevocationCheckingEnabled)) {
reenable_cert_check_ = true;
prefs->SetBoolean(prefs::kCertRevocationCheckingEnabled, false);
}
}
bool MobileActivator::GotActivationError(
const NetworkState* network, std::string* error) const {
DCHECK(network);
bool got_error = false;
const char* error_code = kErrorDefault;
const std::string& activation = network->activation_state();
// This is the magic for detection of errors in during activation process.
if (network->connection_state() == shill::kStateFailure &&
network->error() == shill::kErrorAaaFailed) {
if (activation == shill::kActivationStatePartiallyActivated) {
error_code = kErrorBadConnectionPartial;
} else if (activation == shill::kActivationStateActivated) {
if (network->roaming() == shill::kRoamingStateHome)
error_code = kErrorBadConnectionActivated;
else if (network->roaming() == shill::kRoamingStateRoaming)
error_code = kErrorRoamingOnConnection;
}
got_error = true;
} else if (network->connection_state() == shill::kStateActivationFailure) {
if (network->error() == shill::kErrorNeedEvdo) {
if (activation == shill::kActivationStatePartiallyActivated)
error_code = kErrorNoEVDO;
} else if (network->error() == shill::kErrorNeedHomeNetwork) {
if (activation == shill::kActivationStateNotActivated) {
error_code = kErrorRoamingActivation;
} else if (activation == shill::kActivationStatePartiallyActivated) {
error_code = kErrorRoamingPartiallyActivated;
}
}
got_error = true;
}
if (got_error)
*error = GetErrorMessage(error_code);
return got_error;
}
std::string MobileActivator::GetErrorMessage(const std::string& code) const {
return cellular_config_->GetErrorMessage(code);
}
void MobileActivator::SignalCellularPlanPayment() {
DCHECK(!HasRecentCellularPlanPayment());
cellular_plan_payment_time_ = base::Time::Now();
}
bool MobileActivator::HasRecentCellularPlanPayment() const {
const int kRecentPlanPaymentHours = 6;
return (base::Time::Now() -
cellular_plan_payment_time_).InHours() < kRecentPlanPaymentHours;
}
} // namespace chromeos
|