blob: d99e6584e5978d88f94fbc907c8dbf06a9effebf [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
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 Srinivasan43488792012-06-19 00:25:31 -070016
Alex Deymo94c06162014-03-21 20:34:46 -070017#include "update_engine/real_system_state.h"
18
Alex Deymof7ead812015-10-23 17:37:27 -070019#include <string>
20
Alex Deymoe97b39c2016-01-20 13:22:17 -080021#include <base/bind.h>
Ben Chan06c76a42014-09-05 08:21:06 -070022#include <base/files/file_util.h>
Alex Deymoe97b39c2016-01-20 13:22:17 -080023#include <base/location.h>
Gilad Arnoldb2271992014-06-19 12:35:24 -070024#include <base/time/time.h>
David Zeuthen6eddf262015-10-16 15:23:53 -040025#include <brillo/make_unique_ptr.h>
Alex Deymoe97b39c2016-01-20 13:22:17 -080026#include <brillo/message_loops/message_loop.h>
Amin Hassanie94ece52017-08-01 15:03:08 -070027#if USE_CHROME_KIOSK_APP || USE_CHROME_NETWORK_PROXY
Daniel Erate5f6f252017-04-20 12:09:58 -060028#include <chromeos/dbus/service_constants.h>
Amin Hassanie94ece52017-08-01 15:03:08 -070029#endif // USE_CHROME_KIOSK_APP || USE_CHROME_NETWORK_PROXY
Jay Srinivasan43488792012-06-19 00:25:31 -070030
Alex Deymo39910dc2015-11-09 17:04:30 -080031#include "update_engine/common/boot_control.h"
32#include "update_engine/common/boot_control_stub.h"
33#include "update_engine/common/constants.h"
34#include "update_engine/common/hardware.h"
35#include "update_engine/common/utils.h"
Daniel Erate5f6f252017-04-20 12:09:58 -060036#if USE_DBUS
37#include "update_engine/dbus_connection.h"
38#endif // USE_DBUS
Alex Deymo63784a52014-05-28 10:46:14 -070039#include "update_engine/update_manager/state_factory.h"
Jay Srinivasan43488792012-06-19 00:25:31 -070040
Alex Deymoe97b39c2016-01-20 13:22:17 -080041using brillo::MessageLoop;
42
Jay Srinivasan43488792012-06-19 00:25:31 -070043namespace chromeos_update_engine {
44
Alex Deymo8c21b352016-01-20 16:38:33 -080045RealSystemState::~RealSystemState() {
46 // Prevent any DBus communication from UpdateAttempter when shutting down the
47 // daemon.
48 if (update_attempter_)
Alex Deymofa78f142016-01-26 21:36:16 -080049 update_attempter_->ClearObservers();
Alex Deymo8c21b352016-01-20 16:38:33 -080050}
51
Nam T. Nguyen7d623eb2014-05-13 16:06:28 -070052bool RealSystemState::Initialize() {
Jay Srinivasan6f6ea002012-12-14 11:26:28 -080053 metrics_lib_.Init();
54
Alex Deymob17327c2015-09-04 10:29:00 -070055 boot_control_ = boot_control::CreateBootControl();
David Zeuthen6eddf262015-10-16 15:23:53 -040056 if (!boot_control_) {
57 LOG(WARNING) << "Unable to create BootControl instance, using stub "
58 << "instead. All update attempts will fail.";
59 boot_control_ = brillo::make_unique_ptr(new BootControlStub());
60 }
Alex Deymo763e7db2015-08-27 21:08:08 -070061
Alex Deymo40d86b22015-09-03 22:27:10 -070062 hardware_ = hardware::CreateHardware();
63 if (!hardware_) {
64 LOG(ERROR) << "Error intializing the HardwareInterface.";
65 return false;
66 }
67
Amin Hassanie94ece52017-08-01 15:03:08 -070068#if USE_CHROME_KIOSK_APP
Daniel Erate5f6f252017-04-20 12:09:58 -060069 libcros_proxy_.reset(new org::chromium::LibCrosServiceInterfaceProxy(
70 DBusConnection::Get()->GetDBus(), chromeos::kLibCrosServiceName));
Amin Hassanie94ece52017-08-01 15:03:08 -070071#endif // USE_CHROME_KIOSK_APP
72#if USE_CHROME_NETWORK_PROXY
Daniel Erate5f6f252017-04-20 12:09:58 -060073 network_proxy_service_proxy_.reset(
74 new org::chromium::NetworkProxyServiceInterfaceProxy(
75 DBusConnection::Get()->GetDBus(),
76 chromeos::kNetworkProxyServiceName));
Amin Hassanie94ece52017-08-01 15:03:08 -070077#endif // USE_CHROME_NETWORK_PROXY
Daniel Erate5f6f252017-04-20 12:09:58 -060078
Alex Deymo1c4e84a2015-09-22 16:58:10 -070079 LOG_IF(INFO, !hardware_->IsNormalBootMode()) << "Booted in dev mode.";
80 LOG_IF(INFO, !hardware_->IsOfficialBuild()) << "Booted non-official build.";
81
Sen Jiangf5bebae2016-06-03 15:36:54 -070082 connection_manager_ = connection_manager::CreateConnectionManager(this);
83 if (!connection_manager_) {
84 LOG(ERROR) << "Error intializing the ConnectionManagerInterface.";
Alex Deymo30534502015-07-20 15:06:33 -070085 return false;
86 }
87
Sen Jiangb8c6a8f2016-06-07 17:33:17 -070088 power_manager_ = power_manager::CreatePowerManager();
89 if (!power_manager_) {
90 LOG(ERROR) << "Error intializing the PowerManagerInterface.";
91 return false;
92 }
93
Alex Deymodd132f32015-09-14 19:12:07 -070094 // Initialize standard and powerwash-safe prefs.
95 base::FilePath non_volatile_path;
96 // TODO(deymo): Fall back to in-memory prefs if there's no physical directory
97 // available.
98 if (!hardware_->GetNonVolatileDirectory(&non_volatile_path)) {
99 LOG(ERROR) << "Failed to get a non-volatile directory.";
100 return false;
101 }
102 Prefs* prefs;
103 prefs_.reset(prefs = new Prefs());
104 if (!prefs->Init(non_volatile_path.Append(kPrefsSubDirectory))) {
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800105 LOG(ERROR) << "Failed to initialize preferences.";
106 return false;
107 }
108
Alex Deymodd132f32015-09-14 19:12:07 -0700109 base::FilePath powerwash_safe_path;
110 if (!hardware_->GetPowerwashSafeDirectory(&powerwash_safe_path)) {
111 // TODO(deymo): Fall-back to in-memory prefs if there's no powerwash-safe
112 // directory, or disable powerwash feature.
113 powerwash_safe_path = non_volatile_path.Append("powerwash-safe");
114 LOG(WARNING) << "No powerwash-safe directory, using non-volatile one.";
115 }
116 powerwash_safe_prefs_.reset(prefs = new Prefs());
117 if (!prefs->Init(
118 powerwash_safe_path.Append(kPowerwashSafePrefsSubDirectory))) {
Chris Sosaaa18e162013-06-20 13:20:30 -0700119 LOG(ERROR) << "Failed to initialize powerwash preferences.";
120 return false;
121 }
122
Alex Deymodd132f32015-09-14 19:12:07 -0700123 // Check the system rebooted marker file.
124 std::string boot_id;
125 if (utils::GetBootId(&boot_id)) {
126 std::string prev_boot_id;
127 system_rebooted_ = (!prefs_->GetString(kPrefsBootId, &prev_boot_id) ||
128 prev_boot_id != boot_id);
129 prefs_->SetString(kPrefsBootId, boot_id);
130 } else {
131 LOG(WARNING) << "Couldn't detect the bootid, assuming system was rebooted.";
Chris Sosabe45bef2013-04-09 18:25:12 -0700132 system_rebooted_ = true;
133 }
134
Alex Deymo5378f5e2015-11-10 15:02:50 -0800135 // Initialize the OmahaRequestParams with the default settings. These settings
136 // will be re-initialized before every request using the actual request
137 // options. This initialization here pre-loads current channel and version, so
138 // the DBus service can access it.
139 if (!request_params_.Init("", "", false)) {
140 LOG(WARNING) << "Ignoring OmahaRequestParams initialization error. Some "
141 "features might not work properly.";
142 }
143
Alex Deymo33e91e72015-12-01 18:26:08 -0300144 certificate_checker_.reset(
145 new CertificateChecker(prefs_.get(), &openssl_wrapper_));
146 certificate_checker_->Init();
147
Amin Hassanie94ece52017-08-01 15:03:08 -0700148 update_attempter_.reset(
149 new UpdateAttempter(this,
150 certificate_checker_.get(),
151#if USE_CHROME_NETWORK_PROXY
152 network_proxy_service_proxy_.get()));
Sen Jiangc92195c2016-06-13 15:48:44 -0700153#else
Alex Deymo209e57a2017-08-23 19:23:00 +0200154 nullptr));
Amin Hassanie94ece52017-08-01 15:03:08 -0700155#endif // USE_CHROME_NETWORK_PROXY
Sen Jiangc92195c2016-06-13 15:48:44 -0700156
Alex Deymo33e91e72015-12-01 18:26:08 -0300157 // Initialize the UpdateAttempter before the UpdateManager.
Alex Deymo33e91e72015-12-01 18:26:08 -0300158 update_attempter_->Init();
159
Alex Deymo63784a52014-05-28 10:46:14 -0700160 // Initialize the Update Manager using the default state factory.
161 chromeos_update_manager::State* um_state =
Amin Hassanie94ece52017-08-01 15:03:08 -0700162 chromeos_update_manager::DefaultStateFactory(&policy_provider_,
163#if USE_CHROME_KIOSK_APP
164 libcros_proxy_.get(),
165#else
166 nullptr,
167#endif // USE_CHROME_KIOSK_APP
168 this);
169
Alex Deymo63784a52014-05-28 10:46:14 -0700170 if (!um_state) {
171 LOG(ERROR) << "Failed to initialize the Update Manager.";
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800172 return false;
Gilad Arnold1f847232014-04-07 12:07:49 -0700173 }
Alex Deymo63784a52014-05-28 10:46:14 -0700174 update_manager_.reset(
Gilad Arnoldb2271992014-06-19 12:35:24 -0700175 new chromeos_update_manager::UpdateManager(
Gilad Arnoldfd45a732014-08-07 15:53:46 -0700176 &clock_, base::TimeDelta::FromSeconds(5),
177 base::TimeDelta::FromHours(12), um_state));
Gilad Arnold1f847232014-04-07 12:07:49 -0700178
Gilad Arnold4a0321b2014-10-28 15:57:30 -0700179 // The P2P Manager depends on the Update Manager for its initialization.
180 p2p_manager_.reset(P2PManager::Construct(
181 nullptr, &clock_, update_manager_.get(), "cros_au",
182 kMaxP2PFilesToKeep, base::TimeDelta::FromDays(kMaxP2PFileAgeDays)));
183
Gilad Arnold1f847232014-04-07 12:07:49 -0700184 if (!payload_state_.Initialize(this)) {
185 LOG(ERROR) << "Failed to initialize the payload state object.";
186 return false;
187 }
Jay Srinivasan6f6ea002012-12-14 11:26:28 -0800188
189 // All is well. Initialization successful.
190 return true;
191}
Jay Srinivasan43488792012-06-19 00:25:31 -0700192
Alex Deymofa78f142016-01-26 21:36:16 -0800193bool RealSystemState::StartUpdater() {
Alex Deymoe97b39c2016-01-20 13:22:17 -0800194 // Initiate update checks.
195 update_attempter_->ScheduleUpdates();
196
197 // Update boot flags after 45 seconds.
198 MessageLoop::current()->PostDelayedTask(
199 FROM_HERE,
200 base::Bind(&UpdateAttempter::UpdateBootFlags,
201 base::Unretained(update_attempter_.get())),
202 base::TimeDelta::FromSeconds(45));
203
204 // Broadcast the update engine status on startup to ensure consistent system
205 // state on crashes.
206 MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
207 &UpdateAttempter::BroadcastStatus,
208 base::Unretained(update_attempter_.get())));
209
210 // Run the UpdateEngineStarted() method on |update_attempter|.
211 MessageLoop::current()->PostTask(FROM_HERE, base::Bind(
212 &UpdateAttempter::UpdateEngineStarted,
213 base::Unretained(update_attempter_.get())));
Alex Deymofa78f142016-01-26 21:36:16 -0800214 return true;
215}
216
217void RealSystemState::AddObserver(ServiceObserverInterface* observer) {
218 CHECK(update_attempter_.get());
219 update_attempter_->AddObserver(observer);
220}
221
222void RealSystemState::RemoveObserver(ServiceObserverInterface* observer) {
223 CHECK(update_attempter_.get());
224 update_attempter_->RemoveObserver(observer);
Alex Deymoe97b39c2016-01-20 13:22:17 -0800225}
226
Jay Srinivasan43488792012-06-19 00:25:31 -0700227} // namespace chromeos_update_engine