Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2012 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 16 | |
Alex Deymo | 94c0616 | 2014-03-21 20:34:46 -0700 | [diff] [blame] | 17 | #include "update_engine/real_system_state.h" |
| 18 | |
Ben Chan | 06c76a4 | 2014-09-05 08:21:06 -0700 | [diff] [blame] | 19 | #include <base/files/file_util.h> |
Gilad Arnold | b227199 | 2014-06-19 12:35:24 -0700 | [diff] [blame] | 20 | #include <base/time/time.h> |
David Zeuthen | 6eddf26 | 2015-10-16 15:23:53 -0400 | [diff] [blame] | 21 | #include <brillo/make_unique_ptr.h> |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 22 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 23 | #include "update_engine/common/boot_control.h" |
| 24 | #include "update_engine/common/boot_control_stub.h" |
| 25 | #include "update_engine/common/constants.h" |
| 26 | #include "update_engine/common/hardware.h" |
| 27 | #include "update_engine/common/utils.h" |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 28 | #include "update_engine/update_manager/state_factory.h" |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 29 | |
| 30 | namespace chromeos_update_engine { |
| 31 | |
Alex Deymo | 3053450 | 2015-07-20 15:06:33 -0700 | [diff] [blame] | 32 | RealSystemState::RealSystemState(const scoped_refptr<dbus::Bus>& bus) |
Alex Deymo | d6deb1d | 2015-08-28 15:54:37 -0700 | [diff] [blame] | 33 | : debugd_proxy_(bus), |
| 34 | power_manager_proxy_(bus), |
| 35 | session_manager_proxy_(bus), |
Alex Deymo | 3053450 | 2015-07-20 15:06:33 -0700 | [diff] [blame] | 36 | shill_proxy_(bus), |
| 37 | libcros_proxy_(bus) { |
| 38 | } |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 39 | |
Nam T. Nguyen | 7d623eb | 2014-05-13 16:06:28 -0700 | [diff] [blame] | 40 | bool RealSystemState::Initialize() { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 41 | metrics_lib_.Init(); |
| 42 | |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 43 | boot_control_ = boot_control::CreateBootControl(); |
David Zeuthen | 6eddf26 | 2015-10-16 15:23:53 -0400 | [diff] [blame] | 44 | if (!boot_control_) { |
| 45 | LOG(WARNING) << "Unable to create BootControl instance, using stub " |
| 46 | << "instead. All update attempts will fail."; |
| 47 | boot_control_ = brillo::make_unique_ptr(new BootControlStub()); |
| 48 | } |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 49 | |
Alex Deymo | 40d86b2 | 2015-09-03 22:27:10 -0700 | [diff] [blame] | 50 | hardware_ = hardware::CreateHardware(); |
| 51 | if (!hardware_) { |
| 52 | LOG(ERROR) << "Error intializing the HardwareInterface."; |
| 53 | return false; |
| 54 | } |
| 55 | |
Alex Deymo | 1c4e84a | 2015-09-22 16:58:10 -0700 | [diff] [blame] | 56 | LOG_IF(INFO, !hardware_->IsNormalBootMode()) << "Booted in dev mode."; |
| 57 | LOG_IF(INFO, !hardware_->IsOfficialBuild()) << "Booted non-official build."; |
| 58 | |
Alex Deymo | 3053450 | 2015-07-20 15:06:33 -0700 | [diff] [blame] | 59 | if (!shill_proxy_.Init()) { |
| 60 | LOG(ERROR) << "Failed to initialize shill proxy."; |
| 61 | return false; |
| 62 | } |
| 63 | |
Alex Deymo | dd132f3 | 2015-09-14 19:12:07 -0700 | [diff] [blame] | 64 | // Initialize standard and powerwash-safe prefs. |
| 65 | base::FilePath non_volatile_path; |
| 66 | // TODO(deymo): Fall back to in-memory prefs if there's no physical directory |
| 67 | // available. |
| 68 | if (!hardware_->GetNonVolatileDirectory(&non_volatile_path)) { |
| 69 | LOG(ERROR) << "Failed to get a non-volatile directory."; |
| 70 | return false; |
| 71 | } |
| 72 | Prefs* prefs; |
| 73 | prefs_.reset(prefs = new Prefs()); |
| 74 | if (!prefs->Init(non_volatile_path.Append(kPrefsSubDirectory))) { |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 75 | LOG(ERROR) << "Failed to initialize preferences."; |
| 76 | return false; |
| 77 | } |
| 78 | |
Alex Deymo | dd132f3 | 2015-09-14 19:12:07 -0700 | [diff] [blame] | 79 | base::FilePath powerwash_safe_path; |
| 80 | if (!hardware_->GetPowerwashSafeDirectory(&powerwash_safe_path)) { |
| 81 | // TODO(deymo): Fall-back to in-memory prefs if there's no powerwash-safe |
| 82 | // directory, or disable powerwash feature. |
| 83 | powerwash_safe_path = non_volatile_path.Append("powerwash-safe"); |
| 84 | LOG(WARNING) << "No powerwash-safe directory, using non-volatile one."; |
| 85 | } |
| 86 | powerwash_safe_prefs_.reset(prefs = new Prefs()); |
| 87 | if (!prefs->Init( |
| 88 | powerwash_safe_path.Append(kPowerwashSafePrefsSubDirectory))) { |
Chris Sosa | aa18e16 | 2013-06-20 13:20:30 -0700 | [diff] [blame] | 89 | LOG(ERROR) << "Failed to initialize powerwash preferences."; |
| 90 | return false; |
| 91 | } |
| 92 | |
Alex Deymo | dd132f3 | 2015-09-14 19:12:07 -0700 | [diff] [blame] | 93 | // Check the system rebooted marker file. |
| 94 | std::string boot_id; |
| 95 | if (utils::GetBootId(&boot_id)) { |
| 96 | std::string prev_boot_id; |
| 97 | system_rebooted_ = (!prefs_->GetString(kPrefsBootId, &prev_boot_id) || |
| 98 | prev_boot_id != boot_id); |
| 99 | prefs_->SetString(kPrefsBootId, boot_id); |
| 100 | } else { |
| 101 | LOG(WARNING) << "Couldn't detect the bootid, assuming system was rebooted."; |
Chris Sosa | be45bef | 2013-04-09 18:25:12 -0700 | [diff] [blame] | 102 | system_rebooted_ = true; |
| 103 | } |
| 104 | |
Alex Deymo | 5378f5e | 2015-11-10 15:02:50 -0800 | [diff] [blame] | 105 | // Initialize the OmahaRequestParams with the default settings. These settings |
| 106 | // will be re-initialized before every request using the actual request |
| 107 | // options. This initialization here pre-loads current channel and version, so |
| 108 | // the DBus service can access it. |
| 109 | if (!request_params_.Init("", "", false)) { |
| 110 | LOG(WARNING) << "Ignoring OmahaRequestParams initialization error. Some " |
| 111 | "features might not work properly."; |
| 112 | } |
| 113 | |
Alex Deymo | 33e91e7 | 2015-12-01 18:26:08 -0300 | [diff] [blame^] | 114 | certificate_checker_.reset( |
| 115 | new CertificateChecker(prefs_.get(), &openssl_wrapper_)); |
| 116 | certificate_checker_->Init(); |
| 117 | |
| 118 | // Initialize the UpdateAttempter before the UpdateManager. |
| 119 | update_attempter_.reset( |
| 120 | new UpdateAttempter(this, certificate_checker_.get(), &libcros_proxy_, |
| 121 | &debugd_proxy_)); |
| 122 | update_attempter_->Init(); |
| 123 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 124 | // Initialize the Update Manager using the default state factory. |
| 125 | chromeos_update_manager::State* um_state = |
| 126 | chromeos_update_manager::DefaultStateFactory( |
Alex Deymo | 3053450 | 2015-07-20 15:06:33 -0700 | [diff] [blame] | 127 | &policy_provider_, &shill_proxy_, &session_manager_proxy_, this); |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 128 | if (!um_state) { |
| 129 | LOG(ERROR) << "Failed to initialize the Update Manager."; |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 130 | return false; |
Gilad Arnold | 1f84723 | 2014-04-07 12:07:49 -0700 | [diff] [blame] | 131 | } |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 132 | update_manager_.reset( |
Gilad Arnold | b227199 | 2014-06-19 12:35:24 -0700 | [diff] [blame] | 133 | new chromeos_update_manager::UpdateManager( |
Gilad Arnold | fd45a73 | 2014-08-07 15:53:46 -0700 | [diff] [blame] | 134 | &clock_, base::TimeDelta::FromSeconds(5), |
| 135 | base::TimeDelta::FromHours(12), um_state)); |
Gilad Arnold | 1f84723 | 2014-04-07 12:07:49 -0700 | [diff] [blame] | 136 | |
Gilad Arnold | 4a0321b | 2014-10-28 15:57:30 -0700 | [diff] [blame] | 137 | // The P2P Manager depends on the Update Manager for its initialization. |
| 138 | p2p_manager_.reset(P2PManager::Construct( |
| 139 | nullptr, &clock_, update_manager_.get(), "cros_au", |
| 140 | kMaxP2PFilesToKeep, base::TimeDelta::FromDays(kMaxP2PFileAgeDays))); |
| 141 | |
Gilad Arnold | 1f84723 | 2014-04-07 12:07:49 -0700 | [diff] [blame] | 142 | if (!payload_state_.Initialize(this)) { |
| 143 | LOG(ERROR) << "Failed to initialize the payload state object."; |
| 144 | return false; |
| 145 | } |
Jay Srinivasan | 6f6ea00 | 2012-12-14 11:26:28 -0800 | [diff] [blame] | 146 | |
| 147 | // All is well. Initialization successful. |
| 148 | return true; |
| 149 | } |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 150 | |
Jay Srinivasan | 4348879 | 2012-06-19 00:25:31 -0700 | [diff] [blame] | 151 | } // namespace chromeos_update_engine |