blob: 3a3ccbf60d26f5b4198cd882a15af11d32b87e94 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2014 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 Deymo923d8fa2014-07-15 17:58:51 -070016
Alex Deymo39910dc2015-11-09 17:04:30 -080017#include "update_engine/payload_consumer/payload_verifier.h"
Alex Deymo923d8fa2014-07-15 17:58:51 -070018
xunchangcda3c032019-03-26 15:41:14 -070019#include <utility>
Sen Jiang08c6da12019-01-07 18:28:56 -080020#include <vector>
21
Alex Deymo923d8fa2014-07-15 17:58:51 -070022#include <base/logging.h>
23#include <openssl/pem.h>
24
xunchangcda3c032019-03-26 15:41:14 -070025#include "update_engine/common/constants.h"
Alex Deymo39910dc2015-11-09 17:04:30 -080026#include "update_engine/common/hash_calculator.h"
27#include "update_engine/common/utils.h"
Alex Deymo923d8fa2014-07-15 17:58:51 -070028#include "update_engine/update_metadata.pb.h"
Alex Deymo923d8fa2014-07-15 17:58:51 -070029
30using std::string;
Alex Deymo923d8fa2014-07-15 17:58:51 -070031
32namespace chromeos_update_engine {
33
Alex Deymo923d8fa2014-07-15 17:58:51 -070034namespace {
35
xunchangcda3c032019-03-26 15:41:14 -070036// The ASN.1 DigestInfo prefix for encoding SHA256 digest. The complete 51-byte
37// DigestInfo consists of 19-byte SHA256_DIGEST_INFO_PREFIX and 32-byte SHA256
38// digest.
Alex Deymo923d8fa2014-07-15 17:58:51 -070039//
xunchangcda3c032019-03-26 15:41:14 -070040// SEQUENCE(2+49) {
Alex Deymo923d8fa2014-07-15 17:58:51 -070041// SEQUENCE(2+13) {
xunchangcda3c032019-03-26 15:41:14 -070042// OBJECT(2+9) id-sha256
43// NULL(2+0)
Alex Deymo923d8fa2014-07-15 17:58:51 -070044// }
45// OCTET STRING(2+32) <actual signature bytes...>
xunchangcda3c032019-03-26 15:41:14 -070046// }
47const uint8_t kSHA256DigestInfoPrefix[] = {
48 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01,
49 0x65, 0x03, 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20,
Alex Deymo923d8fa2014-07-15 17:58:51 -070050};
51
52} // namespace
53
Sen Jiang9b2f1782019-01-24 14:27:50 -080054bool PayloadVerifier::VerifySignature(const string& signature_proto,
Sen Jiang08c6da12019-01-07 18:28:56 -080055 const string& pem_public_key,
xunchangcda3c032019-03-26 15:41:14 -070056 const brillo::Blob& sha256_hash_data) {
Alex Deymo923d8fa2014-07-15 17:58:51 -070057 Signatures signatures;
Sen Jiang9b2f1782019-01-24 14:27:50 -080058 LOG(INFO) << "signature blob size = " << signature_proto.size();
59 TEST_AND_RETURN_FALSE(signatures.ParseFromString(signature_proto));
Alex Deymo923d8fa2014-07-15 17:58:51 -070060
Alex Deymob552a682015-09-30 09:36:49 -070061 if (!signatures.signatures_size()) {
62 LOG(ERROR) << "No signatures stored in the blob.";
63 return false;
Alex Deymo923d8fa2014-07-15 17:58:51 -070064 }
Alex Deymo923d8fa2014-07-15 17:58:51 -070065
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070066 std::vector<brillo::Blob> tested_hashes;
Alex Deymob552a682015-09-30 09:36:49 -070067 // Tries every signature in the signature blob.
68 for (int i = 0; i < signatures.signatures_size(); i++) {
Sen Jiang9b2f1782019-01-24 14:27:50 -080069 const Signatures::Signature& signature = signatures.signatures(i);
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070070 brillo::Blob sig_data(signature.data().begin(), signature.data().end());
71 brillo::Blob sig_hash_data;
Sen Jiang08c6da12019-01-07 18:28:56 -080072 if (!GetRawHashFromSignature(sig_data, pem_public_key, &sig_hash_data))
Alex Deymob552a682015-09-30 09:36:49 -070073 continue;
Alex Deymo923d8fa2014-07-15 17:58:51 -070074
xunchangcda3c032019-03-26 15:41:14 -070075 brillo::Blob padded_hash_data = sha256_hash_data;
76 if (PadRSASHA256Hash(&padded_hash_data, sig_hash_data.size()) &&
77 padded_hash_data == sig_hash_data) {
Alex Deymob552a682015-09-30 09:36:49 -070078 LOG(INFO) << "Verified correct signature " << i + 1 << " out of "
79 << signatures.signatures_size() << " signatures.";
80 return true;
81 }
82 tested_hashes.push_back(sig_hash_data);
83 }
84 LOG(ERROR) << "None of the " << signatures.signatures_size()
xunchangcda3c032019-03-26 15:41:14 -070085 << " signatures is correct. Expected hash before padding:";
86 utils::HexDumpVector(sha256_hash_data);
Alex Deymob552a682015-09-30 09:36:49 -070087 LOG(ERROR) << "But found decrypted hashes:";
88 for (const auto& sig_hash_data : tested_hashes) {
89 utils::HexDumpVector(sig_hash_data);
90 }
91 return false;
Alex Deymo923d8fa2014-07-15 17:58:51 -070092}
93
Sen Jiang08c6da12019-01-07 18:28:56 -080094bool PayloadVerifier::GetRawHashFromSignature(const brillo::Blob& sig_data,
95 const string& pem_public_key,
96 brillo::Blob* out_hash_data) {
Alex Deymo923d8fa2014-07-15 17:58:51 -070097 // The code below executes the equivalent of:
98 //
Sen Jiang08c6da12019-01-07 18:28:56 -080099 // openssl rsautl -verify -pubin -inkey <(echo |pem_public_key|)
Alex Deymo923d8fa2014-07-15 17:58:51 -0700100 // -in |sig_data| -out |out_hash_data|
101
Sen Jiang08c6da12019-01-07 18:28:56 -0800102 BIO* bp = BIO_new_mem_buf(pem_public_key.data(), pem_public_key.size());
103 char dummy_password[] = {' ', 0}; // Ensure no password is read from stdin.
104 RSA* rsa = PEM_read_bio_RSA_PUBKEY(bp, nullptr, nullptr, dummy_password);
105 BIO_free(bp);
Alex Deymo923d8fa2014-07-15 17:58:51 -0700106
Alex Vakulenko88b591f2014-08-28 16:48:57 -0700107 TEST_AND_RETURN_FALSE(rsa != nullptr);
Alex Deymo923d8fa2014-07-15 17:58:51 -0700108 unsigned int keysize = RSA_size(rsa);
109 if (sig_data.size() > 2 * keysize) {
110 LOG(ERROR) << "Signature size is too big for public key size.";
111 RSA_free(rsa);
112 return false;
113 }
114
115 // Decrypts the signature.
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700116 brillo::Blob hash_data(keysize);
Amin Hassani008c4582019-01-13 16:22:47 -0800117 int decrypt_size = RSA_public_decrypt(
118 sig_data.size(), sig_data.data(), hash_data.data(), rsa, RSA_NO_PADDING);
Alex Deymo923d8fa2014-07-15 17:58:51 -0700119 RSA_free(rsa);
120 TEST_AND_RETURN_FALSE(decrypt_size > 0 &&
121 decrypt_size <= static_cast<int>(hash_data.size()));
122 hash_data.resize(decrypt_size);
123 out_hash_data->swap(hash_data);
124 return true;
125}
126
xunchangcda3c032019-03-26 15:41:14 -0700127bool PayloadVerifier::PadRSASHA256Hash(brillo::Blob* hash, size_t rsa_size) {
128 TEST_AND_RETURN_FALSE(hash->size() == kSHA256Size);
129 TEST_AND_RETURN_FALSE(rsa_size == 256 || rsa_size == 512);
130
131 // The following is a standard PKCS1-v1_5 padding for SHA256 signatures, as
132 // defined in RFC3447 section 9.2. It is prepended to the actual signature
133 // (32 bytes) to form a sequence of 256|512 bytes (2048|4096 bits) that is
134 // amenable to RSA signing. The padded hash will look as follows:
135 //
136 // 0x00 0x01 0xff ... 0xff 0x00 ASN1HEADER SHA256HASH
137 // |-----------205|461----------||----19----||----32----|
138 size_t padding_string_size =
139 rsa_size - hash->size() - sizeof(kSHA256DigestInfoPrefix) - 3;
140 brillo::Blob padded_result = brillo::CombineBlobs({
141 {0x00, 0x01},
142 brillo::Blob(padding_string_size, 0xff),
143 {0x00},
144 brillo::Blob(kSHA256DigestInfoPrefix,
145 kSHA256DigestInfoPrefix + sizeof(kSHA256DigestInfoPrefix)),
146 *hash,
147 });
148
149 *hash = std::move(padded_result);
150 TEST_AND_RETURN_FALSE(hash->size() == rsa_size);
Alex Deymo923d8fa2014-07-15 17:58:51 -0700151 return true;
152}
153
154} // namespace chromeos_update_engine