Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 1 | // Copyright (c) 2010 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 | |
| 5 | #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_DELTA_PERFORMER_H__ |
| 6 | #define CHROMEOS_PLATFORM_UPDATE_ENGINE_DELTA_PERFORMER_H__ |
| 7 | |
| 8 | #include <inttypes.h> |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 9 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 10 | #include <vector> |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 11 | |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 12 | #include <base/time.h> |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 13 | #include <google/protobuf/repeated_field.h> |
Andrew de los Reyes | 353777c | 2010-10-08 10:34:30 -0700 | [diff] [blame] | 14 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 15 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 16 | #include "update_engine/file_writer.h" |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 17 | #include "update_engine/install_plan.h" |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 18 | #include "update_engine/omaha_hash_calculator.h" |
Jay Srinivasan | f057205 | 2012-10-23 18:12:56 -0700 | [diff] [blame] | 19 | #include "update_engine/system_state.h" |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 20 | #include "update_engine/update_metadata.pb.h" |
| 21 | |
| 22 | namespace chromeos_update_engine { |
| 23 | |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 24 | class PrefsInterface; |
| 25 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 26 | // This class performs the actions in a delta update synchronously. The delta |
| 27 | // update itself should be passed in in chunks as it is received. |
| 28 | |
| 29 | class DeltaPerformer : public FileWriter { |
| 30 | public: |
Darin Petkov | 9574f7e | 2011-01-13 10:48:12 -0800 | [diff] [blame] | 31 | enum MetadataParseResult { |
| 32 | kMetadataParseSuccess, |
| 33 | kMetadataParseError, |
| 34 | kMetadataParseInsufficientData, |
| 35 | }; |
| 36 | |
Jay Srinivasan | f431870 | 2012-09-24 11:56:24 -0700 | [diff] [blame] | 37 | static const uint64_t kDeltaVersionSize; |
| 38 | static const uint64_t kDeltaManifestSizeSize; |
Don Garrett | 4d03944 | 2013-10-28 18:40:06 -0700 | [diff] [blame] | 39 | static const uint64_t kSupportedMajorPayloadVersion; |
Don Garrett | b8dd1d9 | 2013-11-22 17:40:02 -0800 | [diff] [blame] | 40 | static const uint64_t kSupportedMinorPayloadVersion; |
| 41 | static const uint64_t kFullPayloadMinorVersion; |
Darin Petkov | abc7bc0 | 2011-02-23 14:39:43 -0800 | [diff] [blame] | 42 | static const char kUpdatePayloadPublicKeyPath[]; |
| 43 | |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 44 | // Defines the granularity of progress logging in terms of how many "completed |
| 45 | // chunks" we want to report at the most. |
| 46 | static const unsigned kProgressLogMaxChunks; |
| 47 | // Defines a timeout since the last progress was logged after which we want to |
| 48 | // force another log message (even if the current chunk was not completed). |
| 49 | static const unsigned kProgressLogTimeoutSeconds; |
| 50 | // These define the relative weights (0-100) we give to the different work |
| 51 | // components associated with an update when computing an overall progress. |
| 52 | // Currently they include the download progress and the number of completed |
| 53 | // operations. They must add up to one hundred (100). |
| 54 | static const unsigned kProgressDownloadWeight; |
| 55 | static const unsigned kProgressOperationsWeight; |
| 56 | |
Jay Srinivasan | f057205 | 2012-10-23 18:12:56 -0700 | [diff] [blame] | 57 | DeltaPerformer(PrefsInterface* prefs, |
| 58 | SystemState* system_state, |
| 59 | InstallPlan* install_plan) |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 60 | : prefs_(prefs), |
Jay Srinivasan | f057205 | 2012-10-23 18:12:56 -0700 | [diff] [blame] | 61 | system_state_(system_state), |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 62 | install_plan_(install_plan), |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 63 | fd_(-1), |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 64 | kernel_fd_(-1), |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 65 | manifest_valid_(false), |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 66 | manifest_metadata_size_(0), |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 67 | next_operation_num_(0), |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 68 | buffer_offset_(0), |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 69 | last_updated_buffer_offset_(kuint64max), |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 70 | block_size_(0), |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 71 | public_key_path_(kUpdatePayloadPublicKeyPath), |
| 72 | total_bytes_received_(0), |
| 73 | num_rootfs_operations_(0), |
| 74 | num_total_operations_(0), |
| 75 | overall_progress_(0), |
| 76 | last_progress_chunk_(0), |
| 77 | forced_progress_log_wait_( |
| 78 | base::TimeDelta::FromSeconds(kProgressLogTimeoutSeconds)) {} |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 79 | |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 80 | // Opens the kernel. Should be called before or after Open(), but before |
| 81 | // Write(). The kernel file will be close()d when Close() is called. |
| 82 | bool OpenKernel(const char* kernel_path); |
| 83 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 84 | // flags and mode ignored. Once Close()d, a DeltaPerformer can't be |
| 85 | // Open()ed again. |
| 86 | int Open(const char* path, int flags, mode_t mode); |
| 87 | |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 88 | // FileWriter's Write implementation where caller doesn't care about |
| 89 | // error codes. |
| 90 | bool Write(const void* bytes, size_t count) { |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 91 | ErrorCode error; |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 92 | return Write(bytes, count, &error); |
| 93 | } |
| 94 | |
| 95 | // FileWriter's Write implementation that returns a more specific |error| code |
| 96 | // in case of failures in Write operation. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 97 | bool Write(const void* bytes, size_t count, ErrorCode *error); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 98 | |
| 99 | // Wrapper around close. Returns 0 on success or -errno on error. |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 100 | // Closes both 'path' given to Open() and the kernel path. |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 101 | int Close(); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 102 | |
David Zeuthen | 8f191b2 | 2013-08-06 12:27:50 -0700 | [diff] [blame] | 103 | // Returns |true| only if the manifest has been processed and it's valid. |
| 104 | bool IsManifestValid(); |
| 105 | |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 106 | // Verifies the downloaded payload against the signed hash included in the |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 107 | // payload, against the update check hash (which is in base64 format) and |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 108 | // size using the public key and returns kErrorCodeSuccess on success, an |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 109 | // error code on failure. This method should be called after closing the |
| 110 | // stream. Note this method skips the signed hash check if the public key is |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 111 | // unavailable; it returns kErrorCodeSignedDeltaPayloadExpectedError if the |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 112 | // public key is available but the delta payload doesn't include a signature. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 113 | ErrorCode VerifyPayload(const std::string& update_check_response_hash, |
Andrew de los Reyes | 771e1bd | 2011-08-30 14:47:23 -0700 | [diff] [blame] | 114 | const uint64_t update_check_response_size); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 115 | |
Darin Petkov | 3aefa86 | 2010-12-07 14:45:00 -0800 | [diff] [blame] | 116 | // Reads from the update manifest the expected sizes and hashes of the target |
| 117 | // kernel and rootfs partitions. These values can be used for applied update |
| 118 | // hash verification. This method must be called after the update manifest has |
| 119 | // been parsed (e.g., after closing the stream). Returns true on success, and |
| 120 | // false on failure (e.g., when the values are not present in the update |
| 121 | // manifest). |
| 122 | bool GetNewPartitionInfo(uint64_t* kernel_size, |
| 123 | std::vector<char>* kernel_hash, |
| 124 | uint64_t* rootfs_size, |
| 125 | std::vector<char>* rootfs_hash); |
Darin Petkov | 2dd0109 | 2010-10-08 15:43:05 -0700 | [diff] [blame] | 126 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 127 | // Converts an ordered collection of Extent objects which contain data of |
| 128 | // length full_length to a comma-separated string. For each Extent, the |
| 129 | // string will have the start offset and then the length in bytes. |
| 130 | // The length value of the last extent in the string may be short, since |
| 131 | // the full length of all extents in the string is capped to full_length. |
| 132 | // Also, an extent starting at kSparseHole, appears as -1 in the string. |
| 133 | // For example, if the Extents are {1, 1}, {4, 2}, {kSparseHole, 1}, |
| 134 | // {0, 1}, block_size is 4096, and full_length is 5 * block_size - 13, |
| 135 | // the resulting string will be: "4096:4096,16384:8192,-1:4096,0:4083" |
| 136 | static bool ExtentsToBsdiffPositionsString( |
| 137 | const google::protobuf::RepeatedPtrField<Extent>& extents, |
| 138 | uint64_t block_size, |
| 139 | uint64_t full_length, |
| 140 | std::string* positions_string); |
| 141 | |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 142 | // Returns true if a previous update attempt can be continued based on the |
| 143 | // persistent preferences and the new update check response hash. |
| 144 | static bool CanResumeUpdate(PrefsInterface* prefs, |
| 145 | std::string update_check_response_hash); |
| 146 | |
| 147 | // Resets the persistent update progress state to indicate that an update |
Darin Petkov | 9b23057 | 2010-10-08 10:20:09 -0700 | [diff] [blame] | 148 | // can't be resumed. Performs a quick update-in-progress reset if |quick| is |
| 149 | // true, otherwise resets all progress-related update state. Returns true on |
| 150 | // success, false otherwise. |
| 151 | static bool ResetUpdateProgress(PrefsInterface* prefs, bool quick); |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 152 | |
Darin Petkov | 9574f7e | 2011-01-13 10:48:12 -0800 | [diff] [blame] | 153 | // Attempts to parse the update metadata starting from the beginning of |
| 154 | // |payload| into |manifest|. On success, sets |metadata_size| to the total |
| 155 | // metadata bytes (including the delta magic and metadata size fields), and |
| 156 | // returns kMetadataParseSuccess. Returns kMetadataParseInsufficientData if |
| 157 | // more data is needed to parse the complete metadata. Returns |
| 158 | // kMetadataParseError if the metadata can't be parsed given the payload. |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 159 | MetadataParseResult ParsePayloadMetadata( |
Darin Petkov | 9574f7e | 2011-01-13 10:48:12 -0800 | [diff] [blame] | 160 | const std::vector<char>& payload, |
| 161 | DeltaArchiveManifest* manifest, |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 162 | uint64_t* metadata_size, |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 163 | ErrorCode* error); |
Darin Petkov | 9574f7e | 2011-01-13 10:48:12 -0800 | [diff] [blame] | 164 | |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 165 | void set_public_key_path(const std::string& public_key_path) { |
| 166 | public_key_path_ = public_key_path; |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Don Garrett | 4d03944 | 2013-10-28 18:40:06 -0700 | [diff] [blame] | 169 | // Returns the byte offset at which the payload version can be found. |
| 170 | static uint64_t GetVersionOffset(); |
Jay Srinivasan | f431870 | 2012-09-24 11:56:24 -0700 | [diff] [blame] | 171 | |
| 172 | // Returns the byte offset where the size of the manifest is stored in |
| 173 | // a payload. This offset precedes the actual start of the manifest |
| 174 | // that's returned by the GetManifestOffset method. |
| 175 | static uint64_t GetManifestSizeOffset(); |
| 176 | |
Don Garrett | 4d03944 | 2013-10-28 18:40:06 -0700 | [diff] [blame] | 177 | // Returns the byte offset at which the manifest protobuf begins in a |
| 178 | // payload. |
| 179 | static uint64_t GetManifestOffset(); |
| 180 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 181 | private: |
Andrew de los Reyes | 353777c | 2010-10-08 10:34:30 -0700 | [diff] [blame] | 182 | friend class DeltaPerformerTest; |
| 183 | FRIEND_TEST(DeltaPerformerTest, IsIdempotentOperationTest); |
David Zeuthen | e7f8917 | 2013-10-31 10:21:04 -0700 | [diff] [blame] | 184 | FRIEND_TEST(DeltaPerformerTest, UsePublicKeyFromResponse); |
Andrew de los Reyes | 353777c | 2010-10-08 10:34:30 -0700 | [diff] [blame] | 185 | |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 186 | // Logs the progress of downloading/applying an update. |
| 187 | void LogProgress(const char* message_prefix); |
| 188 | |
| 189 | // Update overall progress metrics, log as necessary. |
| 190 | void UpdateOverallProgress(bool force_log, const char* message_prefix); |
| 191 | |
Andrew de los Reyes | 353777c | 2010-10-08 10:34:30 -0700 | [diff] [blame] | 192 | static bool IsIdempotentOperation( |
| 193 | const DeltaArchiveManifest_InstallOperation& op); |
| 194 | |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 195 | // Verifies that the expected source partition hashes (if present) match the |
| 196 | // hashes for the current partitions. Returns true if there're no expected |
| 197 | // hashes in the payload (e.g., if it's a new-style full update) or if the |
| 198 | // hashes match; returns false otherwise. |
| 199 | bool VerifySourcePartitions(); |
| 200 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 201 | // Returns true if enough of the delta file has been passed via Write() |
| 202 | // to be able to perform a given install operation. |
| 203 | bool CanPerformInstallOperation( |
| 204 | const DeltaArchiveManifest_InstallOperation& operation); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 205 | |
Gilad Arnold | 21504f0 | 2013-05-24 08:51:22 -0700 | [diff] [blame] | 206 | // Checks the integrity of the payload manifest. Returns true upon success, |
| 207 | // false otherwise. |
| 208 | ErrorCode ValidateManifest(); |
| 209 | |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 210 | // Validates that the hash of the blobs corresponding to the given |operation| |
| 211 | // matches what's specified in the manifest in the payload. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 212 | // Returns kErrorCodeSuccess on match or a suitable error code otherwise. |
| 213 | ErrorCode ValidateOperationHash( |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 214 | const DeltaArchiveManifest_InstallOperation& operation); |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 215 | |
| 216 | // Interprets the given |protobuf| as a DeltaArchiveManifest protocol buffer |
| 217 | // of the given protobuf_length and verifies that the signed hash of the |
Jay Srinivasan | f431870 | 2012-09-24 11:56:24 -0700 | [diff] [blame] | 218 | // metadata matches what's specified in the install plan from Omaha. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 219 | // Returns kErrorCodeSuccess on match or a suitable error code otherwise. |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 220 | // This method must be called before any part of the |protobuf| is parsed |
| 221 | // so that a man-in-the-middle attack on the SSL connection to the payload |
| 222 | // server doesn't exploit any vulnerability in the code that parses the |
| 223 | // protocol buffer. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 224 | ErrorCode ValidateMetadataSignature(const char* protobuf, |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 225 | uint64_t protobuf_length); |
| 226 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 227 | // Returns true on success. |
| 228 | bool PerformInstallOperation( |
| 229 | const DeltaArchiveManifest_InstallOperation& operation); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 230 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 231 | // These perform a specific type of operation and return true on success. |
| 232 | bool PerformReplaceOperation( |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 233 | const DeltaArchiveManifest_InstallOperation& operation, |
| 234 | bool is_kernel_partition); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 235 | bool PerformMoveOperation( |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 236 | const DeltaArchiveManifest_InstallOperation& operation, |
| 237 | bool is_kernel_partition); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 238 | bool PerformBsdiffOperation( |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 239 | const DeltaArchiveManifest_InstallOperation& operation, |
| 240 | bool is_kernel_partition); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 241 | |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 242 | // Returns true if the payload signature message has been extracted from |
| 243 | // |operation|, false otherwise. |
| 244 | bool ExtractSignatureMessage( |
| 245 | const DeltaArchiveManifest_InstallOperation& operation); |
| 246 | |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 247 | // Updates the hash calculator with |count| bytes at the head of |buffer_| and |
| 248 | // then discards them. |
| 249 | void DiscardBufferHeadBytes(size_t count); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 250 | |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 251 | // Checkpoints the update progress into persistent storage to allow this |
| 252 | // update attempt to be resumed after reboot. |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 253 | bool CheckpointUpdateProgress(); |
| 254 | |
Darin Petkov | 9b23057 | 2010-10-08 10:20:09 -0700 | [diff] [blame] | 255 | // Primes the required update state. Returns true if the update state was |
| 256 | // successfully initialized to a saved resume state or if the update is a new |
| 257 | // update. Returns false otherwise. |
| 258 | bool PrimeUpdateState(); |
| 259 | |
Jay Srinivasan | f057205 | 2012-10-23 18:12:56 -0700 | [diff] [blame] | 260 | // Sends UMA statistics for the given error code. |
David Zeuthen | a99981f | 2013-04-29 13:42:47 -0700 | [diff] [blame] | 261 | void SendUmaStat(ErrorCode code); |
Jay Srinivasan | f057205 | 2012-10-23 18:12:56 -0700 | [diff] [blame] | 262 | |
David Zeuthen | e7f8917 | 2013-10-31 10:21:04 -0700 | [diff] [blame] | 263 | // If the Omaha response contains a public RSA key and we're allowed |
| 264 | // to use it (e.g. if we're in developer mode), extract the key from |
| 265 | // the response and store it in a temporary file and return true. In |
| 266 | // the affirmative the path to the temporary file is stored in |
| 267 | // |out_tmp_key| and it is the responsibility of the caller to clean |
| 268 | // it up. |
| 269 | bool GetPublicKeyFromResponse(base::FilePath *out_tmp_key); |
| 270 | |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 271 | // Update Engine preference store. |
| 272 | PrefsInterface* prefs_; |
| 273 | |
Jay Srinivasan | f057205 | 2012-10-23 18:12:56 -0700 | [diff] [blame] | 274 | // Global context of the system. |
| 275 | SystemState* system_state_; |
| 276 | |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 277 | // Install Plan based on Omaha Response. |
| 278 | InstallPlan* install_plan_; |
| 279 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 280 | // File descriptor of open device. |
| 281 | int fd_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 282 | |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 283 | // File descriptor of the kernel device |
| 284 | int kernel_fd_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 285 | |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 286 | std::string path_; // Path that fd_ refers to. |
| 287 | std::string kernel_path_; // Path that kernel_fd_ refers to. |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 288 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 289 | DeltaArchiveManifest manifest_; |
| 290 | bool manifest_valid_; |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 291 | uint64_t manifest_metadata_size_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 292 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 293 | // Index of the next operation to perform in the manifest. |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 294 | size_t next_operation_num_; |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 295 | |
| 296 | // buffer_ is a window of the data that's been downloaded. At first, |
| 297 | // it contains the beginning of the download, but after the protobuf |
| 298 | // has been downloaded and parsed, it contains a sliding window of |
| 299 | // data blobs. |
| 300 | std::vector<char> buffer_; |
| 301 | // Offset of buffer_ in the binary blobs section of the update. |
| 302 | uint64_t buffer_offset_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 303 | |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 304 | // Last |buffer_offset_| value updated as part of the progress update. |
| 305 | uint64_t last_updated_buffer_offset_; |
| 306 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 307 | // The block size (parsed from the manifest). |
| 308 | uint32_t block_size_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 309 | |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 310 | // Calculates the payload hash. |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 311 | OmahaHashCalculator hash_calculator_; |
| 312 | |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 313 | // Saves the signed hash context. |
| 314 | std::string signed_hash_context_; |
| 315 | |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 316 | // Signatures message blob extracted directly from the payload. |
| 317 | std::vector<char> signatures_message_data_; |
| 318 | |
Jay Srinivasan | 51dcf26 | 2012-09-13 17:24:32 -0700 | [diff] [blame] | 319 | // The public key to be used. Provided as a member so that tests can |
| 320 | // override with test keys. |
| 321 | std::string public_key_path_; |
Darin Petkov | 698d041 | 2010-10-13 10:59:44 -0700 | [diff] [blame] | 322 | |
Gilad Arnold | 8a86fa5 | 2013-01-15 12:35:05 -0800 | [diff] [blame] | 323 | // The number of bytes received so far, used for progress tracking. |
| 324 | size_t total_bytes_received_; |
| 325 | |
| 326 | // The number rootfs and total operations in a payload, once we know them. |
| 327 | size_t num_rootfs_operations_; |
| 328 | size_t num_total_operations_; |
| 329 | |
| 330 | // An overall progress counter, which should reflect both download progress |
| 331 | // and the ratio of applied operations. Range is 0-100. |
| 332 | unsigned overall_progress_; |
| 333 | |
| 334 | // The last progress chunk recorded. |
| 335 | unsigned last_progress_chunk_; |
| 336 | |
| 337 | // The timeout after which we should force emitting a progress log (constant), |
| 338 | // and the actual point in time for the next forced log to be emitted. |
| 339 | const base::TimeDelta forced_progress_log_wait_; |
| 340 | base::Time forced_progress_log_time_; |
| 341 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 342 | DISALLOW_COPY_AND_ASSIGN(DeltaPerformer); |
| 343 | }; |
| 344 | |
| 345 | } // namespace chromeos_update_engine |
| 346 | |
| 347 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DELTA_PERFORMER_H__ |