blob: 7f9a71408ff5ba3984cc3d4d1377c0b0a31674cf [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
25#include <memory>
26#include <string>
27#include <vector>
28
Mattias Nissler452df6d2016-04-04 16:17:01 +020029#include <openssl/sha.h>
30
Jed Estep43291862016-02-03 17:02:09 -080031#include <android-base/stringprintf.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070032#include <ziparchive/zip_archive.h>
Jed Estep43291862016-02-03 17:02:09 -080033
34#include "common.h"
Jed Estepb8a693b2016-03-09 17:51:34 -080035#include "common/test_constants.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070036#include "otautil/SysUtil.h"
Jed Estep43291862016-02-03 17:02:09 -080037#include "ui.h"
38#include "verifier.h"
39
Jed Estep43291862016-02-03 17:02:09 -080040static const char* DATA_PATH = getenv("ANDROID_DATA");
Jed Estepd5a14c62016-02-05 11:24:27 -080041static const char* TESTDATA_PATH = "/recovery/testdata/";
Jed Estep43291862016-02-03 17:02:09 -080042
Jed Estep43291862016-02-03 17:02:09 -080043RecoveryUI* ui = NULL;
44
45class MockUI : public RecoveryUI {
46 void Init() { }
47 void SetStage(int, int) { }
48 void SetLocale(const char*) { }
Tao Baoe1a16af2016-02-04 11:30:42 -080049 void SetBackground(Icon /*icon*/) { }
Tianjie Xucacb47b2016-05-02 10:57:21 -070050 void SetSystemUpdateText(bool /*security_update*/) { }
Jed Estep43291862016-02-03 17:02:09 -080051
Tao Baoe1a16af2016-02-04 11:30:42 -080052 void SetProgressType(ProgressType /*determinate*/) { }
53 void ShowProgress(float /*portion*/, float /*seconds*/) { }
54 void SetProgress(float /*fraction*/) { }
Jed Estep43291862016-02-03 17:02:09 -080055
Tao Baoe1a16af2016-02-04 11:30:42 -080056 void ShowText(bool /*visible*/) { }
Jed Estep43291862016-02-03 17:02:09 -080057 bool IsTextVisible() { return false; }
58 bool WasTextEverVisible() { return false; }
59 void Print(const char* fmt, ...) {
60 va_list ap;
61 va_start(ap, fmt);
62 vfprintf(stderr, fmt, ap);
63 va_end(ap);
64 }
65 void PrintOnScreenOnly(const char* fmt, ...) {
66 va_list ap;
67 va_start(ap, fmt);
68 vfprintf(stderr, fmt, ap);
69 va_end(ap);
70 }
71 void ShowFile(const char*) { }
72
Tao Baoe1a16af2016-02-04 11:30:42 -080073 void StartMenu(const char* const* /*headers*/,
74 const char* const* /*items*/,
75 int /*initial_selection*/) { }
76 int SelectMenu(int /*sel*/) { return 0; }
Jed Estep43291862016-02-03 17:02:09 -080077 void EndMenu() { }
78};
79
80void
81ui_print(const char* format, ...) {
82 va_list ap;
83 va_start(ap, format);
84 vfprintf(stdout, format, ap);
85 va_end(ap);
86}
87
88class VerifierTest : public testing::TestWithParam<std::vector<std::string>> {
89 public:
90 MemMapping memmap;
91 std::vector<Certificate> certs;
92
93 virtual void SetUp() {
94 std::vector<std::string> args = GetParam();
Mattias Nissler452df6d2016-04-04 16:17:01 +020095 std::string package =
96 android::base::StringPrintf("%s%s%s%s", DATA_PATH, NATIVE_TEST_PATH,
97 TESTDATA_PATH, args[0].c_str());
98 if (sysMapFile(package.c_str(), &memmap) != 0) {
Tao Bao5af4b192016-08-01 11:31:43 -070099 FAIL() << "Failed to mmap " << package << ": " << strerror(errno) << "\n";
Mattias Nissler452df6d2016-04-04 16:17:01 +0200100 }
101
Jed Estep43291862016-02-03 17:02:09 -0800102 for (auto it = ++(args.cbegin()); it != args.cend(); ++it) {
Mattias Nissler452df6d2016-04-04 16:17:01 +0200103 std::string public_key_file = android::base::StringPrintf(
Tao Bao5af4b192016-08-01 11:31:43 -0700104 "%s%s%stestkey_%s.txt", DATA_PATH, NATIVE_TEST_PATH,
105 TESTDATA_PATH, it->c_str());
Mattias Nissler452df6d2016-04-04 16:17:01 +0200106 ASSERT_TRUE(load_keys(public_key_file.c_str(), certs));
Jed Estep43291862016-02-03 17:02:09 -0800107 }
108 }
109
110 static void SetUpTestCase() {
111 ui = new MockUI();
112 }
113};
114
115class VerifierSuccessTest : public VerifierTest {
116};
117
118class VerifierFailureTest : public VerifierTest {
119};
120
121TEST_P(VerifierSuccessTest, VerifySucceed) {
122 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs), VERIFY_SUCCESS);
123}
124
125TEST_P(VerifierFailureTest, VerifyFailure) {
126 ASSERT_EQ(verify_file(memmap.addr, memmap.length, certs), VERIFY_FAILURE);
127}
128
129INSTANTIATE_TEST_CASE_P(SingleKeySuccess, VerifierSuccessTest,
130 ::testing::Values(
Tao Bao5af4b192016-08-01 11:31:43 -0700131 std::vector<std::string>({"otasigned_v1.zip", "v1"}),
132 std::vector<std::string>({"otasigned_v2.zip", "v2"}),
133 std::vector<std::string>({"otasigned_v3.zip", "v3"}),
134 std::vector<std::string>({"otasigned_v4.zip", "v4"}),
135 std::vector<std::string>({"otasigned_v5.zip", "v5"})));
Jed Estep43291862016-02-03 17:02:09 -0800136
137INSTANTIATE_TEST_CASE_P(MultiKeySuccess, VerifierSuccessTest,
138 ::testing::Values(
Tao Bao5af4b192016-08-01 11:31:43 -0700139 std::vector<std::string>({"otasigned_v1.zip", "v1", "v2"}),
140 std::vector<std::string>({"otasigned_v2.zip", "v5", "v2"}),
141 std::vector<std::string>({"otasigned_v3.zip", "v5", "v1", "v3"}),
142 std::vector<std::string>({"otasigned_v4.zip", "v5", "v1", "v4"}),
143 std::vector<std::string>({"otasigned_v5.zip", "v4", "v1", "v5"})));
Jed Estep43291862016-02-03 17:02:09 -0800144
145INSTANTIATE_TEST_CASE_P(WrongKey, VerifierFailureTest,
146 ::testing::Values(
Tao Bao5af4b192016-08-01 11:31:43 -0700147 std::vector<std::string>({"otasigned_v1.zip", "v2"}),
148 std::vector<std::string>({"otasigned_v2.zip", "v1"}),
149 std::vector<std::string>({"otasigned_v3.zip", "v5"}),
150 std::vector<std::string>({"otasigned_v4.zip", "v5"}),
151 std::vector<std::string>({"otasigned_v5.zip", "v3"})));
Jed Estep43291862016-02-03 17:02:09 -0800152
153INSTANTIATE_TEST_CASE_P(WrongHash, VerifierFailureTest,
154 ::testing::Values(
Tao Bao5af4b192016-08-01 11:31:43 -0700155 std::vector<std::string>({"otasigned_v1.zip", "v3"}),
156 std::vector<std::string>({"otasigned_v2.zip", "v4"}),
157 std::vector<std::string>({"otasigned_v3.zip", "v1"}),
158 std::vector<std::string>({"otasigned_v4.zip", "v2"})));
Jed Estep43291862016-02-03 17:02:09 -0800159
160INSTANTIATE_TEST_CASE_P(BadPackage, VerifierFailureTest,
161 ::testing::Values(
Tao Bao5af4b192016-08-01 11:31:43 -0700162 std::vector<std::string>({"random.zip", "v1"}),
163 std::vector<std::string>({"fake-eocd.zip", "v1"}),
164 std::vector<std::string>({"alter-metadata.zip", "v1"}),
165 std::vector<std::string>({"alter-footer.zip", "v1"})));