• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright (C) 2018 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 //
16 
17 #ifndef UPDATE_ENGINE_PAYLOAD_CONSUMER_PAYLOAD_METADATA_H_
18 #define UPDATE_ENGINE_PAYLOAD_CONSUMER_PAYLOAD_METADATA_H_
19 
20 #include <inttypes.h>
21 
22 #include <string>
23 #include <vector>
24 
25 #include <base/macros.h>
26 #include <brillo/secure_blob.h>
27 
28 #include "update_engine/common/error_code.h"
29 #include "update_engine/common/platform_constants.h"
30 #include "update_engine/payload_consumer/payload_verifier.h"
31 #include "update_engine/update_metadata.pb.h"
32 
33 namespace chromeos_update_engine {
34 
35 enum class MetadataParseResult {
36   kSuccess,
37   kError,
38   kInsufficientData,
39 };
40 
41 // This class parses payload metadata and validate its signature.
42 class PayloadMetadata {
43  public:
44   static const uint64_t kDeltaVersionOffset;
45   static const uint64_t kDeltaVersionSize;
46   static const uint64_t kDeltaManifestSizeOffset;
47   static const uint64_t kDeltaManifestSizeSize;
48   static const uint64_t kDeltaMetadataSignatureSizeSize;
49 
50   PayloadMetadata() = default;
51 
52   // Attempts to parse the update payload header starting from the beginning of
53   // |payload|. On success, returns kMetadataParseSuccess. Returns
54   // kMetadataParseInsufficientData if more data is needed to parse the complete
55   // metadata. Returns kMetadataParseError if the metadata can't be parsed given
56   // the payload.
57   MetadataParseResult ParsePayloadHeader(const brillo::Blob& payload,
58                                          ErrorCode* error);
59   MetadataParseResult ParsePayloadHeader(const unsigned char* payload,
60                                          size_t size,
61                                          ErrorCode* error);
62   // Simpler version of the above, returns true on success.
63   bool ParsePayloadHeader(const brillo::Blob& payload);
64 
65   // Given the |payload|, verifies that the signed hash of its metadata matches
66   // |metadata_signature| (if present) or the metadata signature in payload
67   // itself (if present). Returns ErrorCode::kSuccess on match or a suitable
68   // error code otherwise. This method must be called before any part of the
69   // metadata is parsed so that an on-path attack on the SSL connection
70   // to the payload server doesn't exploit any vulnerability in the code that
71   // parses the protocol buffer.
72   ErrorCode ValidateMetadataSignature(
73       const brillo::Blob& payload,
74       const std::string& metadata_signature,
75       const PayloadVerifier& payload_verifier) const;
76 
77   // Returns the major payload version. If the version was not yet parsed,
78   // returns zero.
GetMajorVersion()79   uint64_t GetMajorVersion() const { return major_payload_version_; }
80 
81   // Returns the size of the payload metadata, which includes the payload header
82   // and the manifest. If the header was not yet parsed, returns zero.
GetMetadataSize()83   uint64_t GetMetadataSize() const { return metadata_size_; }
84 
85   // Returns the size of the payload metadata signature. If the header was not
86   // yet parsed, returns zero.
GetMetadataSignatureSize()87   uint32_t GetMetadataSignatureSize() const { return metadata_signature_size_; }
88 
89   // Set |*out_manifest| to the manifest in |payload|.
90   // Returns true on success.
91   bool GetManifest(const brillo::Blob& payload,
92                    DeltaArchiveManifest* out_manifest) const;
93 
94   bool GetManifest(const unsigned char* payload,
95                    size_t size,
96                    DeltaArchiveManifest* out_manifest) const;
97 
98   // Parses a payload file |payload_path| and prepares the metadata properties,
99   // manifest and metadata signatures. Can be used as an easy to use utility to
100   // get the payload information without manually the process.
101   bool ParsePayloadFile(const std::string& payload_path,
102                         DeltaArchiveManifest* manifest,
103                         Signatures* metadata_signatures);
104 
105  private:
106   // Returns the byte offset at which the manifest protobuf begins in a payload.
107   uint64_t GetManifestOffset() const;
108 
109   // Returns the byte offset where the size of the metadata signature is stored
110   // in a payload.
111   uint64_t GetMetadataSignatureSizeOffset() const;
112 
113   uint64_t metadata_size_{0};
114   uint64_t manifest_size_{0};
115   uint32_t metadata_signature_size_{0};
116   uint64_t major_payload_version_{0};
117 
118   DISALLOW_COPY_AND_ASSIGN(PayloadMetadata);
119 };
120 
121 }  // namespace chromeos_update_engine
122 
123 #endif  // UPDATE_ENGINE_PAYLOAD_CONSUMER_PAYLOAD_METADATA_H_
124