blob: 8a02358836b78f9a0f4fa9f00d9985287fae23ae [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2015 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//
Alex Deymo14158572015-06-13 03:37:08 -070016
17#ifndef UPDATE_ENGINE_PAYLOAD_GENERATOR_DELTA_DIFF_UTILS_H_
18#define UPDATE_ENGINE_PAYLOAD_GENERATOR_DELTA_DIFF_UTILS_H_
19
20#include <string>
21#include <vector>
22
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070023#include <brillo/secure_blob.h>
Alex Deymo14158572015-06-13 03:37:08 -070024
25#include "update_engine/payload_generator/annotated_operation.h"
Alex Deymof0061352015-07-01 14:59:15 -070026#include "update_engine/payload_generator/extent_ranges.h"
Alex Deymo14158572015-06-13 03:37:08 -070027#include "update_engine/payload_generator/payload_generation_config.h"
28#include "update_engine/update_metadata.pb.h"
29
30namespace chromeos_update_engine {
31
32namespace diff_utils {
33
Alex Deymob42b98d2015-07-06 17:42:38 -070034// Create operations in |aops| to produce all the blocks in the |new_part|
35// partition using the filesystem opened in that PartitionConfig.
36// It uses the files reported by the filesystem in |old_part| and the data
37// blocks in that partition (if available) to determine the best way to compress
38// the new files (REPLACE, REPLACE_BZ, COPY, BSDIFF) and writes any necessary
Sen Jiang55c4f9b2016-02-10 11:26:20 -080039// data to |blob_file|. |hard_chunk_blocks| and |soft_chunk_blocks| are the hard
40// and soft chunk limits in number of blocks respectively. The soft chunk limit
41// is used to split MOVE and SOURCE_COPY operations and REPLACE_BZ of zeroed
42// blocks, while the hard limit is used to split a file when generating other
43// operations. A value of -1 in |hard_chunk_blocks| means whole files.
Alex Deymob42b98d2015-07-06 17:42:38 -070044bool DeltaReadPartition(std::vector<AnnotatedOperation>* aops,
45 const PartitionConfig& old_part,
46 const PartitionConfig& new_part,
Alex Deymo2d3b2d62015-07-17 17:34:36 -070047 ssize_t hard_chunk_blocks,
48 size_t soft_chunk_blocks,
Sen Jiang8cc502d2015-08-10 10:04:54 -070049 BlobFileWriter* blob_file,
Sen Jiang55c4f9b2016-02-10 11:26:20 -080050 bool imgdiff_allowed,
Alex Deymob42b98d2015-07-06 17:42:38 -070051 bool src_ops_allowed);
Alex Deymo14158572015-06-13 03:37:08 -070052
Alex Deymof0061352015-07-01 14:59:15 -070053// Create operations in |aops| for identical blocks that moved around in the old
54// and new partition and also handle zeroed blocks. The old and new partition
55// are stored in the |old_part| and |new_part| files and have |old_num_blocks|
56// and |new_num_blocks| respectively. The maximum operation size is
57// |chunk_blocks| blocks, or unlimited if |chunk_blocks| is -1. The blobs of the
Sen Jiang55c4f9b2016-02-10 11:26:20 -080058// produced operations are stored in the |blob_file|.
Alex Deymof0061352015-07-01 14:59:15 -070059// The collections |old_visited_blocks| and |new_visited_blocks| state what
60// blocks already have operations reading or writing them and only operations
61// for unvisited blocks are produced by this function updating both collections
62// with the used blocks.
63bool DeltaMovedAndZeroBlocks(std::vector<AnnotatedOperation>* aops,
64 const std::string& old_part,
65 const std::string& new_part,
66 size_t old_num_blocks,
67 size_t new_num_blocks,
Alex Deymo2d3b2d62015-07-17 17:34:36 -070068 ssize_t chunk_blocks,
Alex Deymof0061352015-07-01 14:59:15 -070069 bool src_ops_allowed,
Sen Jiang8cc502d2015-08-10 10:04:54 -070070 BlobFileWriter* blob_file,
Alex Deymof0061352015-07-01 14:59:15 -070071 ExtentRanges* old_visited_blocks,
72 ExtentRanges* new_visited_blocks);
73
Alex Deymo14158572015-06-13 03:37:08 -070074// For a given file |name| append operations to |aops| to produce it in the
75// |new_part|. The file will be split in chunks of |chunk_blocks| blocks each
76// or treated as a single chunk if |chunk_blocks| is -1. The file data is
77// stored in |new_part| in the blocks described by |new_extents| and, if it
78// exists, the old version exists in |old_part| in the blocks described by
79// |old_extents|. The operations added to |aops| reference the data blob
Sen Jiang55c4f9b2016-02-10 11:26:20 -080080// in the |blob_file|. Returns true on success.
Alex Deymo14158572015-06-13 03:37:08 -070081bool DeltaReadFile(std::vector<AnnotatedOperation>* aops,
82 const std::string& old_part,
83 const std::string& new_part,
84 const std::vector<Extent>& old_extents,
85 const std::vector<Extent>& new_extents,
86 const std::string& name,
Alex Deymo2d3b2d62015-07-17 17:34:36 -070087 ssize_t chunk_blocks,
Sen Jiang8cc502d2015-08-10 10:04:54 -070088 BlobFileWriter* blob_file,
Sen Jiang55c4f9b2016-02-10 11:26:20 -080089 bool imgdiff_allowed,
Alex Deymo14158572015-06-13 03:37:08 -070090 bool src_ops_allowed);
91
92// Reads the blocks |old_extents| from |old_part| (if it exists) and the
93// |new_extents| from |new_part| and determines the smallest way to encode
94// this |new_extents| for the diff. It stores necessary data in |out_data| and
95// fills in |out_op|. If there's no change in old and new files, it creates a
96// MOVE operation. If there is a change, the smallest of REPLACE, REPLACE_BZ,
Sen Jiang55c4f9b2016-02-10 11:26:20 -080097// BSDIFF (if |bsdiff_allowed|) or IMGDIFF (if |imgdiff_allowed|) wins.
98// |new_extents| must not be empty.
Alex Deymo14158572015-06-13 03:37:08 -070099// If |src_ops_allowed| is true, it will emit SOURCE_COPY and SOURCE_BSDIFF
100// operations instead of MOVE and BSDIFF, respectively.
101// Returns true on success.
102bool ReadExtentsToDiff(const std::string& old_part,
103 const std::string& new_part,
104 const std::vector<Extent>& old_extents,
105 const std::vector<Extent>& new_extents,
106 bool bsdiff_allowed,
Sen Jiang55c4f9b2016-02-10 11:26:20 -0800107 bool imgdiff_allowed,
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700108 brillo::Blob* out_data,
Alex Deymoa12ee112015-08-12 22:19:32 -0700109 InstallOperation* out_op,
Alex Deymo14158572015-06-13 03:37:08 -0700110 bool src_ops_allowed);
111
Sen Jiang55c4f9b2016-02-10 11:26:20 -0800112// Runs the bsdiff or imgdiff tool in |diff_path| on two files and returns the
113// resulting delta in |out|. Returns true on success.
114bool DiffFiles(const std::string& diff_path,
115 const std::string& old_file,
116 const std::string& new_file,
117 brillo::Blob* out);
Alex Deymo14158572015-06-13 03:37:08 -0700118
119// Returns true if |op| is a no-op operation that doesn't do any useful work
120// (e.g., a move operation that copies blocks onto themselves).
Alex Deymoa12ee112015-08-12 22:19:32 -0700121bool IsNoopOperation(const InstallOperation& op);
Alex Deymo14158572015-06-13 03:37:08 -0700122
123// Filters all the operations that are no-op, maintaining the relative order
124// of the rest of the operations.
125void FilterNoopOperations(std::vector<AnnotatedOperation>* ops);
126
127bool InitializePartitionInfo(const PartitionConfig& partition,
128 PartitionInfo* info);
129
Alex Deymo3b2c7d02015-07-16 16:08:16 -0700130// Compare two AnnotatedOperations by the start block of the first Extent in
131// their destination extents.
132bool CompareAopsByDestination(AnnotatedOperation first_aop,
133 AnnotatedOperation second_aop);
134
Alex Deymo14158572015-06-13 03:37:08 -0700135} // namespace diff_utils
136
137} // namespace chromeos_update_engine
138
139#endif // UPDATE_ENGINE_PAYLOAD_GENERATOR_DELTA_DIFF_UTILS_H_