blob: 460585d2205c6dc414ac5f533b1c871f27551789 [file] [log] [blame]
Jed Estep43291862016-02-03 17:02:09 -08001/*
2 * Copyright (C) 2009 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 agree 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#include <errno.h>
18#include <fcntl.h>
19#include <gtest/gtest.h>
20#include <stdio.h>
21#include <stdlib.h>
Jed Estep43291862016-02-03 17:02:09 -080022#include <sys/stat.h>
Mattias Nissler452df6d2016-04-04 16:17:01 +020023#include <sys/types.h>
Jed Estep43291862016-02-03 17:02:09 -080024
Jed Estep43291862016-02-03 17:02:09 -080025#include <string>
26#include <vector>
27
Tao Bao5e535012017-03-16 17:37:38 -070028#include <android-base/file.h>
Jed Estep43291862016-02-03 17:02:09 -080029#include <android-base/stringprintf.h>
Tao Bao5e535012017-03-16 17:37:38 -070030#include <android-base/test_utils.h>
Jed Estep43291862016-02-03 17:02:09 -080031
Jed Estepb8a693b2016-03-09 17:51:34 -080032#include "common/test_constants.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070033#include "otautil/SysUtil.h"
Jed Estep43291862016-02-03 17:02:09 -080034#include "verifier.h"
35
Jed Estep43291862016-02-03 17:02:09 -080036class VerifierTest : public testing::TestWithParam<std::vector<std::string>> {
Tao Bao5e535012017-03-16 17:37:38 -070037 protected:
38 void SetUp() override {
39 std::vector<std::string> args = GetParam();
40 std::string package = from_testdata_base(args[0]);
41 if (sysMapFile(package.c_str(), &memmap) != 0) {
42 FAIL() << "Failed to mmap " << package << ": " << strerror(errno) << "\n";
Jed Estep43291862016-02-03 17:02:09 -080043 }
44
Tao Bao5e535012017-03-16 17:37:38 -070045 for (auto it = ++args.cbegin(); it != args.cend(); ++it) {
46 std::string public_key_file = from_testdata_base("testkey_" + *it + ".txt");
47 ASSERT_TRUE(load_keys(public_key_file.c_str(), certs));
Jed Estep43291862016-02-03 17:02:09 -080048 }
Tao Bao5e535012017-03-16 17:37:38 -070049 }
50
51 MemMapping memmap;
52 std::vector<Certificate> certs;
Jed Estep43291862016-02-03 17:02:09 -080053};
54
55class VerifierSuccessTest : public VerifierTest {
56};
57
58class VerifierFailureTest : public VerifierTest {
59};
60
61TEST_P(VerifierSuccessTest, VerifySucceed) {
Tao Bao5e535012017-03-16 17:37:38 -070062 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs, nullptr), VERIFY_SUCCESS);
Jed Estep43291862016-02-03 17:02:09 -080063}
64
65TEST_P(VerifierFailureTest, VerifyFailure) {
Tao Bao5e535012017-03-16 17:37:38 -070066 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs, nullptr), VERIFY_FAILURE);
Jed Estep43291862016-02-03 17:02:09 -080067}
68
69INSTANTIATE_TEST_CASE_P(SingleKeySuccess, VerifierSuccessTest,
Tao Bao5e535012017-03-16 17:37:38 -070070 ::testing::Values(
71 std::vector<std::string>({"otasigned_v1.zip", "v1"}),
72 std::vector<std::string>({"otasigned_v2.zip", "v2"}),
73 std::vector<std::string>({"otasigned_v3.zip", "v3"}),
74 std::vector<std::string>({"otasigned_v4.zip", "v4"}),
75 std::vector<std::string>({"otasigned_v5.zip", "v5"})));
Jed Estep43291862016-02-03 17:02:09 -080076
77INSTANTIATE_TEST_CASE_P(MultiKeySuccess, VerifierSuccessTest,
Tao Bao5e535012017-03-16 17:37:38 -070078 ::testing::Values(
79 std::vector<std::string>({"otasigned_v1.zip", "v1", "v2"}),
80 std::vector<std::string>({"otasigned_v2.zip", "v5", "v2"}),
81 std::vector<std::string>({"otasigned_v3.zip", "v5", "v1", "v3"}),
82 std::vector<std::string>({"otasigned_v4.zip", "v5", "v1", "v4"}),
83 std::vector<std::string>({"otasigned_v5.zip", "v4", "v1", "v5"})));
Jed Estep43291862016-02-03 17:02:09 -080084
85INSTANTIATE_TEST_CASE_P(WrongKey, VerifierFailureTest,
Tao Bao5e535012017-03-16 17:37:38 -070086 ::testing::Values(
87 std::vector<std::string>({"otasigned_v1.zip", "v2"}),
88 std::vector<std::string>({"otasigned_v2.zip", "v1"}),
89 std::vector<std::string>({"otasigned_v3.zip", "v5"}),
90 std::vector<std::string>({"otasigned_v4.zip", "v5"}),
91 std::vector<std::string>({"otasigned_v5.zip", "v3"})));
Jed Estep43291862016-02-03 17:02:09 -080092
93INSTANTIATE_TEST_CASE_P(WrongHash, VerifierFailureTest,
Tao Bao5e535012017-03-16 17:37:38 -070094 ::testing::Values(
95 std::vector<std::string>({"otasigned_v1.zip", "v3"}),
96 std::vector<std::string>({"otasigned_v2.zip", "v4"}),
97 std::vector<std::string>({"otasigned_v3.zip", "v1"}),
98 std::vector<std::string>({"otasigned_v4.zip", "v2"})));
Jed Estep43291862016-02-03 17:02:09 -080099
100INSTANTIATE_TEST_CASE_P(BadPackage, VerifierFailureTest,
Tao Bao5e535012017-03-16 17:37:38 -0700101 ::testing::Values(
102 std::vector<std::string>({"random.zip", "v1"}),
103 std::vector<std::string>({"fake-eocd.zip", "v1"}),
104 std::vector<std::string>({"alter-metadata.zip", "v1"}),
105 std::vector<std::string>({"alter-footer.zip", "v1"})));