blob: 82f4d90623cfa8087625139702f277a312dd0c17 [file] [log] [blame]
Andrew de los Reyes09e56d62010-04-23 13:45:53 -07001// 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 Petkovd7061ab2010-10-06 14:37:09 -07009
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070010#include <vector>
Darin Petkovd7061ab2010-10-06 14:37:09 -070011
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070012#include <google/protobuf/repeated_field.h>
Darin Petkovd7061ab2010-10-06 14:37:09 -070013
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070014#include "update_engine/file_writer.h"
Darin Petkovd7061ab2010-10-06 14:37:09 -070015#include "update_engine/omaha_hash_calculator.h"
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070016#include "update_engine/update_metadata.pb.h"
17
18namespace chromeos_update_engine {
19
20// This class performs the actions in a delta update synchronously. The delta
21// update itself should be passed in in chunks as it is received.
22
23class DeltaPerformer : public FileWriter {
24 public:
25 DeltaPerformer()
26 : fd_(-1),
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070027 kernel_fd_(-1),
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070028 manifest_valid_(false),
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070029 next_operation_num_(0),
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070030 buffer_offset_(0),
31 block_size_(0) {}
Darin Petkovd7061ab2010-10-06 14:37:09 -070032
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070033 // Opens the kernel. Should be called before or after Open(), but before
34 // Write(). The kernel file will be close()d when Close() is called.
35 bool OpenKernel(const char* kernel_path);
36
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070037 // flags and mode ignored. Once Close()d, a DeltaPerformer can't be
38 // Open()ed again.
39 int Open(const char* path, int flags, mode_t mode);
40
41 // Wrapper around write. Returns bytes written on success or
42 // -errno on error.
Andrew de los Reyes0cca4212010-04-29 14:00:58 -070043 ssize_t Write(const void* bytes, size_t count);
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070044
45 // Wrapper around close. Returns 0 on success or -errno on error.
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070046 // Closes both 'path' given to Open() and the kernel path.
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070047 int Close();
Darin Petkovd7061ab2010-10-06 14:37:09 -070048
49 // Verifies the downloaded payload against the signed hash included in the
50 // payload and returns true on success, false on failure. This method should
51 // be called after closing the stream. Note this method returns true if the
52 // public key is unavailable; it returns false if the public key is available
53 // but the delta payload doesn't include a signature. If |public_key_path| is
54 // an empty string, uses the default public key path.
55 bool VerifyPayload(const std::string& public_key_path);
56
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070057 // Converts an ordered collection of Extent objects which contain data of
58 // length full_length to a comma-separated string. For each Extent, the
59 // string will have the start offset and then the length in bytes.
60 // The length value of the last extent in the string may be short, since
61 // the full length of all extents in the string is capped to full_length.
62 // Also, an extent starting at kSparseHole, appears as -1 in the string.
63 // For example, if the Extents are {1, 1}, {4, 2}, {kSparseHole, 1},
64 // {0, 1}, block_size is 4096, and full_length is 5 * block_size - 13,
65 // the resulting string will be: "4096:4096,16384:8192,-1:4096,0:4083"
66 static bool ExtentsToBsdiffPositionsString(
67 const google::protobuf::RepeatedPtrField<Extent>& extents,
68 uint64_t block_size,
69 uint64_t full_length,
70 std::string* positions_string);
71
72 private:
73 // Returns true if enough of the delta file has been passed via Write()
74 // to be able to perform a given install operation.
75 bool CanPerformInstallOperation(
76 const DeltaArchiveManifest_InstallOperation& operation);
Darin Petkovd7061ab2010-10-06 14:37:09 -070077
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070078 // Returns true on success.
79 bool PerformInstallOperation(
80 const DeltaArchiveManifest_InstallOperation& operation);
Darin Petkovd7061ab2010-10-06 14:37:09 -070081
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070082 // These perform a specific type of operation and return true on success.
83 bool PerformReplaceOperation(
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070084 const DeltaArchiveManifest_InstallOperation& operation,
85 bool is_kernel_partition);
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070086 bool PerformMoveOperation(
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070087 const DeltaArchiveManifest_InstallOperation& operation,
88 bool is_kernel_partition);
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070089 bool PerformBsdiffOperation(
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -070090 const DeltaArchiveManifest_InstallOperation& operation,
91 bool is_kernel_partition);
Andrew de los Reyes09e56d62010-04-23 13:45:53 -070092
Darin Petkovd7061ab2010-10-06 14:37:09 -070093 // Returns true if the payload signature message has been extracted from
94 // |operation|, false otherwise.
95 bool ExtractSignatureMessage(
96 const DeltaArchiveManifest_InstallOperation& operation);
97
98 // Discard |count| bytes from the beginning of buffer_. If |do_hash| is true,
99 // updates the hash calculator with these bytes before discarding them.
100 void DiscardBufferHeadBytes(size_t count, bool do_hash);
101
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700102 // File descriptor of open device.
103 int fd_;
Darin Petkovd7061ab2010-10-06 14:37:09 -0700104
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -0700105 // File descriptor of the kernel device
106 int kernel_fd_;
Darin Petkovd7061ab2010-10-06 14:37:09 -0700107
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -0700108 std::string path_; // Path that fd_ refers to.
109 std::string kernel_path_; // Path that kernel_fd_ refers to.
Darin Petkovd7061ab2010-10-06 14:37:09 -0700110
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700111 DeltaArchiveManifest manifest_;
112 bool manifest_valid_;
Darin Petkovd7061ab2010-10-06 14:37:09 -0700113
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700114 // Index of the next operation to perform in the manifest.
Andrew de los Reyesf4c7ef12010-04-30 10:37:00 -0700115 int next_operation_num_;
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700116
117 // buffer_ is a window of the data that's been downloaded. At first,
118 // it contains the beginning of the download, but after the protobuf
119 // has been downloaded and parsed, it contains a sliding window of
120 // data blobs.
121 std::vector<char> buffer_;
122 // Offset of buffer_ in the binary blobs section of the update.
123 uint64_t buffer_offset_;
Darin Petkovd7061ab2010-10-06 14:37:09 -0700124
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700125 // The block size (parsed from the manifest).
126 uint32_t block_size_;
Darin Petkovd7061ab2010-10-06 14:37:09 -0700127
128 // Calculate the payload hash to verify against the signed hash.
129 OmahaHashCalculator hash_calculator_;
130
131 // Signatures message blob extracted directly from the payload.
132 std::vector<char> signatures_message_data_;
133
Andrew de los Reyes09e56d62010-04-23 13:45:53 -0700134 DISALLOW_COPY_AND_ASSIGN(DeltaPerformer);
135};
136
137} // namespace chromeos_update_engine
138
139#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DELTA_PERFORMER_H__