blob: 261c9e84f8d81c6273577213e254f3de77f020e7 [file] [log] [blame]
Casey Dahlina93cd532016-01-14 16:55:11 -08001//
2// Copyright (C) 2016 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//
16
17#ifndef UPDATE_ENGINE_COMMON_SERVICE_H_
18#define UPDATE_ENGINE_COMMON_SERVICE_H_
19
20#include <inttypes.h>
21
22#include <string>
23
24#include <base/memory/ref_counted.h>
25#include <brillo/errors/error.h>
26
Aaron Wood7f92e2b2017-08-28 14:51:21 -070027#include "update_engine/client_library/include/update_engine/update_status.h"
Casey Dahlina93cd532016-01-14 16:55:11 -080028#include "update_engine/system_state.h"
29
30namespace chromeos_update_engine {
31
32class UpdateEngineService {
33 public:
Casey Dahlina93cd532016-01-14 16:55:11 -080034 // Error domain for all the service errors.
35 static const char* const kErrorDomain;
36
37 // Generic service error.
38 static const char* const kErrorFailed;
39
40 explicit UpdateEngineService(SystemState* system_state);
41 virtual ~UpdateEngineService() = default;
42
Aaron Woodbf5a2522017-10-04 10:58:36 -070043 // Set flags that influence how updates and checks are performed. These
44 // influence all future checks and updates until changed or the device
45 // reboots. The |in_flags_as_int| values are a union of values from
46 // |UpdateAttemptFlags|
47 bool SetUpdateAttemptFlags(brillo::ErrorPtr* error, int32_t in_flags_as_int);
48
Casey Dahlina93cd532016-01-14 16:55:11 -080049 bool AttemptUpdate(brillo::ErrorPtr* error,
50 const std::string& in_app_version,
51 const std::string& in_omaha_url,
52 int32_t in_flags_as_int);
53
54 bool AttemptRollback(brillo::ErrorPtr* error, bool in_powerwash);
55
56 // Checks if the system rollback is available by verifying if the secondary
57 // system partition is valid and bootable.
58 bool CanRollback(brillo::ErrorPtr* error, bool* out_can_rollback);
59
60 // Resets the status of the update_engine to idle, ignoring any applied
61 // update. This is used for development only.
62 bool ResetStatus(brillo::ErrorPtr* error);
63
64 // Returns the current status of the Update Engine. If an update is in
65 // progress, the number of operations, size to download and overall progress
66 // is reported.
67 bool GetStatus(brillo::ErrorPtr* error,
Aaron Wood7f92e2b2017-08-28 14:51:21 -070068 update_engine::UpdateEngineStatus* out_status);
Casey Dahlina93cd532016-01-14 16:55:11 -080069
70 // Reboots the device if an update is applied and a reboot is required.
71 bool RebootIfNeeded(brillo::ErrorPtr* error);
72
73 // Changes the current channel of the device to the target channel. If the
74 // target channel is a less stable channel than the current channel, then the
75 // channel change happens immediately (at the next update check). If the
76 // target channel is a more stable channel, then if is_powerwash_allowed is
77 // set to true, then also the change happens immediately but with a powerwash
78 // if required. Otherwise, the change takes effect eventually (when the
79 // version on the target channel goes above the version number of what the
80 // device currently has).
81 bool SetChannel(brillo::ErrorPtr* error,
82 const std::string& in_target_channel,
83 bool in_is_powerwash_allowed);
84
85 // If get_current_channel is set to true, populates |channel| with the name of
86 // the channel that the device is currently on. Otherwise, it populates it
87 // with the name of the channel the device is supposed to be (in case of a
88 // pending channel change).
89 bool GetChannel(brillo::ErrorPtr* error,
90 bool in_get_current_channel,
91 std::string* out_channel);
92
Alex Deymo5b5fa8b2016-10-06 15:40:49 -070093 // Sets the current "cohort hint" value to |in_cohort_hint|. The cohort hint
94 // is sent back to Omaha on every request and can be used as a hint of what
95 // cohort should we be put on.
96 bool SetCohortHint(brillo::ErrorPtr* error, std::string in_cohort_hint);
97
98 // Return the current cohort hint. This value can be set with SetCohortHint()
99 // and can also be updated from Omaha on every update check request.
100 bool GetCohortHint(brillo::ErrorPtr* error, std::string* out_cohort_hint);
101
Casey Dahlina93cd532016-01-14 16:55:11 -0800102 // Enables or disables the sharing and consuming updates over P2P feature
103 // according to the |enabled| argument passed.
104 bool SetP2PUpdatePermission(brillo::ErrorPtr* error, bool in_enabled);
105
106 // Returns the current value for the P2P enabled setting. This involves both
107 // sharing and consuming updates over P2P.
108 bool GetP2PUpdatePermission(brillo::ErrorPtr* error, bool* out_enabled);
109
110 // If there's no device policy installed, sets the update over cellular
111 // networks permission to the |allowed| value. Otherwise, this method returns
112 // with an error since this setting is overridden by the applied policy.
113 bool SetUpdateOverCellularPermission(brillo::ErrorPtr* error,
114 bool in_allowed);
115
116 // Returns the current value of the update over cellular network setting,
117 // either forced by the device policy if the device is enrolled or the current
118 // user preference otherwise.
119 bool GetUpdateOverCellularPermission(brillo::ErrorPtr* error,
120 bool* out_allowed);
121
122 // Returns the duration since the last successful update, as the
123 // duration on the wallclock. Returns an error if the device has not
124 // updated.
125 bool GetDurationSinceUpdate(brillo::ErrorPtr* error,
126 int64_t* out_usec_wallclock);
127
128 // Returns the version string of OS that was used before the last reboot
129 // into an updated version. This is available only when rebooting into an
130 // update from previous version, otherwise an empty string is returned.
131 bool GetPrevVersion(brillo::ErrorPtr* error, std::string* out_prev_version);
132
133 // Returns the name of kernel partition that can be rolled back into.
134 bool GetRollbackPartition(brillo::ErrorPtr* error,
135 std::string* out_rollback_partition_name);
136
Shuqian Zhao29971732016-02-05 11:29:32 -0800137 // Returns the last UpdateAttempt error.
138 bool GetLastAttemptError(brillo::ErrorPtr* error,
139 int32_t* out_last_attempt_error);
140
Alex Deymob3fa53b2016-04-18 19:57:58 -0700141 // Returns the current end-of-life status of the device. This value is updated
142 // on every update check and persisted on disk across reboots.
143 bool GetEolStatus(brillo::ErrorPtr* error, int32_t* out_eol_status);
144
Casey Dahlina93cd532016-01-14 16:55:11 -0800145 private:
146 SystemState* system_state_;
147};
148
149} // namespace chromeos_update_engine
150
151#endif // UPDATE_ENGINE_COMMON_SERVICE_H_