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 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 12 | #include <google/protobuf/repeated_field.h> |
Andrew de los Reyes | 353777c | 2010-10-08 10:34:30 -0700 | [diff] [blame] | 13 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 14 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 15 | #include "update_engine/file_writer.h" |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 16 | #include "update_engine/omaha_hash_calculator.h" |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 17 | #include "update_engine/update_metadata.pb.h" |
| 18 | |
| 19 | namespace chromeos_update_engine { |
| 20 | |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 21 | class PrefsInterface; |
| 22 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 23 | // This class performs the actions in a delta update synchronously. The delta |
| 24 | // update itself should be passed in in chunks as it is received. |
| 25 | |
| 26 | class DeltaPerformer : public FileWriter { |
| 27 | public: |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 28 | DeltaPerformer(PrefsInterface* prefs) |
| 29 | : prefs_(prefs), |
| 30 | fd_(-1), |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 31 | kernel_fd_(-1), |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 32 | manifest_valid_(false), |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 33 | manifest_metadata_size_(0), |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 34 | next_operation_num_(0), |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 35 | buffer_offset_(0), |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 36 | last_updated_buffer_offset_(kuint64max), |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 37 | block_size_(0) {} |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 38 | |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 39 | // Opens the kernel. Should be called before or after Open(), but before |
| 40 | // Write(). The kernel file will be close()d when Close() is called. |
| 41 | bool OpenKernel(const char* kernel_path); |
| 42 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 43 | // flags and mode ignored. Once Close()d, a DeltaPerformer can't be |
| 44 | // Open()ed again. |
| 45 | int Open(const char* path, int flags, mode_t mode); |
| 46 | |
| 47 | // Wrapper around write. Returns bytes written on success or |
| 48 | // -errno on error. |
Andrew de los Reyes | 0cca421 | 2010-04-29 14:00:58 -0700 | [diff] [blame] | 49 | ssize_t Write(const void* bytes, size_t count); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 50 | |
| 51 | // 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] | 52 | // Closes both 'path' given to Open() and the kernel path. |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 53 | int Close(); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 54 | |
| 55 | // Verifies the downloaded payload against the signed hash included in the |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 56 | // payload as well as against the update check hash and size and returns true |
| 57 | // on success, false on failure. This method should be called after closing |
| 58 | // the stream. Note this method skips the signed hash check if the public key |
| 59 | // is unavailable; it returns false if the public key is available but the |
| 60 | // delta payload doesn't include a signature. If |public_key_path| is an empty |
| 61 | // string, uses the default public key path. |
| 62 | bool VerifyPayload(const std::string& public_key_path, |
| 63 | const std::string& update_check_response_hash, |
| 64 | const uint64_t update_check_response_size); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 65 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 66 | // Converts an ordered collection of Extent objects which contain data of |
| 67 | // length full_length to a comma-separated string. For each Extent, the |
| 68 | // string will have the start offset and then the length in bytes. |
| 69 | // The length value of the last extent in the string may be short, since |
| 70 | // the full length of all extents in the string is capped to full_length. |
| 71 | // Also, an extent starting at kSparseHole, appears as -1 in the string. |
| 72 | // For example, if the Extents are {1, 1}, {4, 2}, {kSparseHole, 1}, |
| 73 | // {0, 1}, block_size is 4096, and full_length is 5 * block_size - 13, |
| 74 | // the resulting string will be: "4096:4096,16384:8192,-1:4096,0:4083" |
| 75 | static bool ExtentsToBsdiffPositionsString( |
| 76 | const google::protobuf::RepeatedPtrField<Extent>& extents, |
| 77 | uint64_t block_size, |
| 78 | uint64_t full_length, |
| 79 | std::string* positions_string); |
| 80 | |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 81 | // Returns true if a previous update attempt can be continued based on the |
| 82 | // persistent preferences and the new update check response hash. |
| 83 | static bool CanResumeUpdate(PrefsInterface* prefs, |
| 84 | std::string update_check_response_hash); |
| 85 | |
| 86 | // Resets the persistent update progress state to indicate that an update |
Darin Petkov | 9b23057 | 2010-10-08 10:20:09 -0700 | [diff] [blame] | 87 | // can't be resumed. Performs a quick update-in-progress reset if |quick| is |
| 88 | // true, otherwise resets all progress-related update state. Returns true on |
| 89 | // success, false otherwise. |
| 90 | static bool ResetUpdateProgress(PrefsInterface* prefs, bool quick); |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 91 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 92 | private: |
Andrew de los Reyes | 353777c | 2010-10-08 10:34:30 -0700 | [diff] [blame] | 93 | friend class DeltaPerformerTest; |
| 94 | FRIEND_TEST(DeltaPerformerTest, IsIdempotentOperationTest); |
| 95 | |
| 96 | static bool IsIdempotentOperation( |
| 97 | const DeltaArchiveManifest_InstallOperation& op); |
| 98 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 99 | // Returns true if enough of the delta file has been passed via Write() |
| 100 | // to be able to perform a given install operation. |
| 101 | bool CanPerformInstallOperation( |
| 102 | const DeltaArchiveManifest_InstallOperation& operation); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 103 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 104 | // Returns true on success. |
| 105 | bool PerformInstallOperation( |
| 106 | const DeltaArchiveManifest_InstallOperation& operation); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 107 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 108 | // These perform a specific type of operation and return true on success. |
| 109 | bool PerformReplaceOperation( |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 110 | const DeltaArchiveManifest_InstallOperation& operation, |
| 111 | bool is_kernel_partition); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 112 | bool PerformMoveOperation( |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 113 | const DeltaArchiveManifest_InstallOperation& operation, |
| 114 | bool is_kernel_partition); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 115 | bool PerformBsdiffOperation( |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 116 | const DeltaArchiveManifest_InstallOperation& operation, |
| 117 | bool is_kernel_partition); |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 118 | |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 119 | // Returns true if the payload signature message has been extracted from |
| 120 | // |operation|, false otherwise. |
| 121 | bool ExtractSignatureMessage( |
| 122 | const DeltaArchiveManifest_InstallOperation& operation); |
| 123 | |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 124 | // Updates the hash calculator with |count| bytes at the head of |buffer_| and |
| 125 | // then discards them. |
| 126 | void DiscardBufferHeadBytes(size_t count); |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 127 | |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 128 | // Checkpoints the update progress into persistent storage to allow this |
| 129 | // update attempt to be resumed after reboot. |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 130 | bool CheckpointUpdateProgress(); |
| 131 | |
Darin Petkov | 9b23057 | 2010-10-08 10:20:09 -0700 | [diff] [blame] | 132 | // Primes the required update state. Returns true if the update state was |
| 133 | // successfully initialized to a saved resume state or if the update is a new |
| 134 | // update. Returns false otherwise. |
| 135 | bool PrimeUpdateState(); |
| 136 | |
Darin Petkov | 73058b4 | 2010-10-06 16:32:19 -0700 | [diff] [blame] | 137 | // Update Engine preference store. |
| 138 | PrefsInterface* prefs_; |
| 139 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 140 | // File descriptor of open device. |
| 141 | int fd_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 142 | |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 143 | // File descriptor of the kernel device |
| 144 | int kernel_fd_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 145 | |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 146 | std::string path_; // Path that fd_ refers to. |
| 147 | std::string kernel_path_; // Path that kernel_fd_ refers to. |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 148 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 149 | DeltaArchiveManifest manifest_; |
| 150 | bool manifest_valid_; |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 151 | uint64_t manifest_metadata_size_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 152 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 153 | // Index of the next operation to perform in the manifest. |
Andrew de los Reyes | f4c7ef1 | 2010-04-30 10:37:00 -0700 | [diff] [blame] | 154 | int next_operation_num_; |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 155 | |
| 156 | // buffer_ is a window of the data that's been downloaded. At first, |
| 157 | // it contains the beginning of the download, but after the protobuf |
| 158 | // has been downloaded and parsed, it contains a sliding window of |
| 159 | // data blobs. |
| 160 | std::vector<char> buffer_; |
| 161 | // Offset of buffer_ in the binary blobs section of the update. |
| 162 | uint64_t buffer_offset_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 163 | |
Darin Petkov | 0406e40 | 2010-10-06 21:33:11 -0700 | [diff] [blame] | 164 | // Last |buffer_offset_| value updated as part of the progress update. |
| 165 | uint64_t last_updated_buffer_offset_; |
| 166 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 167 | // The block size (parsed from the manifest). |
| 168 | uint32_t block_size_; |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 169 | |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 170 | // Calculates the payload hash. |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 171 | OmahaHashCalculator hash_calculator_; |
| 172 | |
Darin Petkov | 437adc4 | 2010-10-07 13:12:24 -0700 | [diff] [blame] | 173 | // Saves the signed hash context. |
| 174 | std::string signed_hash_context_; |
| 175 | |
Darin Petkov | d7061ab | 2010-10-06 14:37:09 -0700 | [diff] [blame] | 176 | // Signatures message blob extracted directly from the payload. |
| 177 | std::vector<char> signatures_message_data_; |
| 178 | |
Andrew de los Reyes | 09e56d6 | 2010-04-23 13:45:53 -0700 | [diff] [blame] | 179 | DISALLOW_COPY_AND_ASSIGN(DeltaPerformer); |
| 180 | }; |
| 181 | |
| 182 | } // namespace chromeos_update_engine |
| 183 | |
| 184 | #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DELTA_PERFORMER_H__ |