Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 1 | // Copyright (c) 2014 The Chromium OS 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 | |
Gilad Arnold | 48415f1 | 2014-06-27 07:10:58 -0700 | [diff] [blame] | 5 | #ifndef UPDATE_ENGINE_UPDATE_MANAGER_POLICY_H_ |
| 6 | #define UPDATE_ENGINE_UPDATE_MANAGER_POLICY_H_ |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 7 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 8 | #include <string> |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 9 | #include <vector> |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 10 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 11 | #include "update_engine/error_code.h" |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 12 | #include "update_engine/update_manager/evaluation_context.h" |
| 13 | #include "update_engine/update_manager/state.h" |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 14 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 15 | namespace chromeos_update_manager { |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 16 | |
| 17 | // The three different results of a policy request. |
Alex Deymo | e636c3c | 2014-03-11 19:02:08 -0700 | [diff] [blame] | 18 | enum class EvalStatus { |
| 19 | kFailed, |
| 20 | kSucceeded, |
| 21 | kAskMeAgainLater, |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 22 | }; |
| 23 | |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 24 | std::string ToString(EvalStatus status); |
| 25 | |
| 26 | // Parameters of an update check. These parameters are determined by the |
| 27 | // UpdateCheckAllowed policy. |
| 28 | struct UpdateCheckParams { |
| 29 | bool updates_enabled; // Whether the auto-updates are enabled on this build. |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 30 | |
| 31 | // Attributes pertaining to the case where update checks are allowed. |
| 32 | // |
Gilad Arnold | d4b3032 | 2014-07-21 15:35:27 -0700 | [diff] [blame^] | 33 | // A target version prefix, if imposed by policy; otherwise, an empty string. |
| 34 | std::string target_version_prefix; |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 35 | // A target channel, if so imposed by policy; otherwise, an empty string. |
| 36 | std::string target_channel; |
Gilad Arnold | 44dc3bf | 2014-07-18 23:39:38 -0700 | [diff] [blame] | 37 | |
| 38 | // Whether the allowed update is interactive (user-initiated) or periodic. |
| 39 | bool is_interactive; |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 42 | // Input arguments to UpdateCanStart. |
| 43 | // |
| 44 | // A snapshot of the state of the current update process. |
| 45 | struct UpdateState { |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 46 | // Information pertaining to the Omaha update response. |
| 47 | // |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 48 | // Time when update was first offered by Omaha. |
| 49 | base::Time first_seen; |
| 50 | // Number of update checks returning the current update. |
| 51 | int num_checks; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 52 | |
| 53 | // Information pertaining to the update download URL. |
| 54 | // |
| 55 | // An array of download URLs provided by Omaha. |
| 56 | std::vector<std::string> download_urls; |
| 57 | // Max number of failures allowed per download URL. |
| 58 | int download_failures_max; |
| 59 | // The index of the URL to use, as previously determined by the policy. This |
| 60 | // number is significant iff |num_checks| is greater than 1. |
| 61 | int download_url_idx; |
| 62 | // The number of failures already associated with this URL. |
| 63 | int download_url_num_failures; |
| 64 | // An array of failure error codes that occurred since the latest reported |
| 65 | // ones (included in the number above). |
| 66 | std::vector<chromeos_update_engine::ErrorCode> download_url_error_codes; |
| 67 | |
| 68 | // Information pertaining to update scattering. |
| 69 | // |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 70 | // Scattering wallclock-based wait period, as returned by the policy. |
| 71 | base::TimeDelta scatter_wait_period; |
| 72 | // Maximum wait period allowed for this update, as determined by Omaha. |
| 73 | base::TimeDelta scatter_wait_period_max; |
| 74 | // Scattering update check threshold, as returned by the policy. |
| 75 | int scatter_check_threshold; |
| 76 | // Minimum/maximum check threshold values. |
| 77 | // TODO(garnold) These appear to not be related to the current update and so |
Gilad Arnold | ddd3fe3 | 2014-05-22 12:57:09 -0700 | [diff] [blame] | 78 | // should probably be obtained as variables via UpdaterProvider. |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 79 | int scatter_check_threshold_min; |
| 80 | int scatter_check_threshold_max; |
| 81 | }; |
| 82 | |
| 83 | // Results regarding the downloading and applying of an update, as determined by |
| 84 | // UpdateCanStart. |
| 85 | // |
| 86 | // An enumerator for the reasons of not allowing an update to start. |
| 87 | enum class UpdateCannotStartReason { |
| 88 | kUndefined, |
| 89 | kCheckDue, |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 90 | kScattering, |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 91 | kCannotDownload, |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 92 | }; |
| 93 | |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 94 | struct UpdateDownloadParams { |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 95 | // Whether the update attempt is allowed to proceed. |
| 96 | bool update_can_start; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 97 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 98 | // Attributes pertaining to the case where update is allowed. The update |
| 99 | // engine uses them to choose the means for downloading and applying an |
| 100 | // update. |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 101 | bool p2p_allowed; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 102 | // The index of the download URL to use, and the number of failures associated |
| 103 | // with this URL. An index value of -1 indicates that no suitable URL is |
| 104 | // available, but there may be other means for download (like P2P). |
| 105 | int download_url_idx; |
| 106 | int download_url_num_failures; |
| 107 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 108 | // Attributes pertaining to the case where update is not allowed. Some are |
| 109 | // needed for storing values to persistent storage, others for |
| 110 | // logging/metrics. |
| 111 | UpdateCannotStartReason cannot_start_reason; |
| 112 | base::TimeDelta scatter_wait_period; // Needs to be persisted. |
| 113 | int scatter_check_threshold; // Needs to be persisted. |
| 114 | }; |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 115 | |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 116 | // The Policy class is an interface to the ensemble of policy requests that the |
| 117 | // client can make. A derived class includes the policy implementations of |
| 118 | // these. |
| 119 | // |
| 120 | // When compile-time selection of the policy is required due to missing or extra |
| 121 | // parts in a given platform, a different Policy subclass can be used. |
| 122 | class Policy { |
| 123 | public: |
| 124 | virtual ~Policy() {} |
| 125 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 126 | // Returns the name of a public policy request. |
| 127 | // IMPORTANT: Be sure to add a conditional for each new public policy that is |
| 128 | // being added to this class in the future. |
| 129 | template<typename R, typename... Args> |
| 130 | std::string PolicyRequestName( |
| 131 | EvalStatus (Policy::*policy_method)(EvaluationContext*, State*, |
| 132 | std::string*, R*, |
| 133 | Args...) const) const { |
| 134 | std::string class_name = PolicyName() + "::"; |
| 135 | |
| 136 | if (reinterpret_cast<typeof(&Policy::UpdateCheckAllowed)>( |
| 137 | policy_method) == &Policy::UpdateCheckAllowed) |
| 138 | return class_name + "UpdateCheckAllowed"; |
| 139 | if (reinterpret_cast<typeof(&Policy::UpdateCanStart)>( |
| 140 | policy_method) == &Policy::UpdateCanStart) |
| 141 | return class_name + "UpdateCanStart"; |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame] | 142 | if (reinterpret_cast<typeof(&Policy::UpdateDownloadAllowed)>( |
| 143 | policy_method) == &Policy::UpdateDownloadAllowed) |
| 144 | return class_name + "UpdateDownloadAllowed"; |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 145 | |
| 146 | NOTREACHED(); |
| 147 | return class_name + "(unknown)"; |
| 148 | } |
| 149 | |
| 150 | |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 151 | // List of policy requests. A policy request takes an EvaluationContext as the |
Alex Deymo | 2de23f5 | 2014-02-26 14:30:13 -0800 | [diff] [blame] | 152 | // first argument, a State instance, a returned error message, a returned |
| 153 | // value and optionally followed by one or more arbitrary constant arguments. |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 154 | // |
Alex Deymo | e636c3c | 2014-03-11 19:02:08 -0700 | [diff] [blame] | 155 | // When the implementation fails, the method returns EvalStatus::kFailed and |
| 156 | // sets the |error| string. |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 157 | |
| 158 | // UpdateCheckAllowed returns whether it is allowed to request an update check |
| 159 | // to Omaha. |
Alex Deymo | 0d11c60 | 2014-04-23 20:12:20 -0700 | [diff] [blame] | 160 | virtual EvalStatus UpdateCheckAllowed( |
| 161 | EvaluationContext* ec, State* state, std::string* error, |
| 162 | UpdateCheckParams* result) const = 0; |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 163 | |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 164 | // Returns EvalStatus::kSucceeded if either an update can start being |
| 165 | // processed, or the attempt needs to be aborted. In cases where the update |
| 166 | // needs to wait for some condition to be satisfied, but none of the values |
| 167 | // that need to be persisted has changed, returns |
| 168 | // EvalStatus::kAskMeAgainLater. Arguments include an |interactive| flag that |
| 169 | // tells whether the update is user initiated, and an |update_state| that |
Alex Vakulenko | 072359c | 2014-07-18 11:41:07 -0700 | [diff] [blame] | 170 | // encapsulates data pertaining to the current ongoing update process. |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 171 | virtual EvalStatus UpdateCanStart( |
| 172 | EvaluationContext* ec, |
| 173 | State* state, |
| 174 | std::string* error, |
Gilad Arnold | 42f253b | 2014-06-25 12:39:17 -0700 | [diff] [blame] | 175 | UpdateDownloadParams* result, |
Gilad Arnold | f62a4b8 | 2014-05-01 07:41:07 -0700 | [diff] [blame] | 176 | const bool interactive, |
| 177 | const UpdateState& update_state) const = 0; |
Gilad Arnold | af2f6ae | 2014-04-28 14:14:52 -0700 | [diff] [blame] | 178 | |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame] | 179 | // Checks whether downloading of an update is allowed; currently, this checks |
| 180 | // whether the network connection type is suitable for updating over. May |
| 181 | // consult the shill provider as well as the device policy (if available). |
Gilad Arnold | 0adbc94 | 2014-05-12 10:35:43 -0700 | [diff] [blame] | 182 | // Returns |EvalStatus::kSucceeded|, setting |result| according to whether or |
| 183 | // not the current connection can be used; on failure, returns |
| 184 | // |EvalStatus::kFailed| and sets |error| accordingly. |
Gilad Arnold | 684219d | 2014-07-07 14:54:57 -0700 | [diff] [blame] | 185 | virtual EvalStatus UpdateDownloadAllowed( |
Gilad Arnold | 0adbc94 | 2014-05-12 10:35:43 -0700 | [diff] [blame] | 186 | EvaluationContext* ec, |
| 187 | State* state, |
| 188 | std::string* error, |
| 189 | bool* result) const = 0; |
| 190 | |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 191 | protected: |
| 192 | Policy() {} |
| 193 | |
Gilad Arnold | b3b0544 | 2014-05-30 14:25:05 -0700 | [diff] [blame] | 194 | // Returns the name of the actual policy class. |
| 195 | virtual std::string PolicyName() const = 0; |
| 196 | |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 197 | private: |
| 198 | DISALLOW_COPY_AND_ASSIGN(Policy); |
| 199 | }; |
| 200 | |
Alex Deymo | 63784a5 | 2014-05-28 10:46:14 -0700 | [diff] [blame] | 201 | } // namespace chromeos_update_manager |
Alex Deymo | c705cc8 | 2014-02-19 11:15:00 -0800 | [diff] [blame] | 202 | |
Gilad Arnold | 48415f1 | 2014-06-27 07:10:58 -0700 | [diff] [blame] | 203 | #endif // UPDATE_ENGINE_UPDATE_MANAGER_POLICY_H_ |