blob: 9ba792b86bc2555eba09ff9e153314f149adc7fc [file] [log] [blame]
Tao Bao1171d3a2015-12-05 21:21:27 -08001/*
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 */
16
17/*
18 * This program verifies the integrity of the partitions after an A/B OTA
19 * update. It gets invoked by init, and will only perform the verification if
20 * it's the first boot post an A/B OTA update.
21 *
22 * It relies on dm-verity to capture any corruption on the partitions being
23 * verified. dm-verity must be in enforcing mode, so that it will reboot the
24 * device on dm-verity failures. When that happens, the bootloader should
25 * mark the slot as unbootable and stops trying. We should never see a device
26 * started in dm-verity logging mode but with isSlotBootable equals to 0.
27 *
28 * The current slot will be marked as having booted successfully if the
29 * verifier reaches the end after the verification.
30 *
31 * TODO: The actual verification part will be added later after we have the
32 * A/B OTA package format in place.
33 */
34
35#include <cutils/klog.h>
36#include <string.h>
37
38#include <hardware/boot_control.h>
39
40#define LOG_TAG "update_verifier"
41#define INFO(x...) KLOG_INFO(LOG_TAG, x)
42#define ERROR(x...) KLOG_ERROR(LOG_TAG, x)
43
44int main(int argc, char** argv) {
45 klog_init();
46 klog_set_level(6);
47 for (int i = 1; i < argc; i++) {
48 INFO("Started with arg %d: %s\n", i, argv[i]);
49 }
50
51 const hw_module_t* hw_module;
52 if (hw_get_module("bootctrl", &hw_module) != 0) {
53 ERROR("Error getting bootctrl module.\n");
54 return -1;
55 }
56
57 boot_control_module_t* module = reinterpret_cast<boot_control_module_t*>(
58 const_cast<hw_module_t*>(hw_module));
59 module->init(module);
60
61 unsigned current_slot = module->getCurrentSlot(module);
62 int bootable = module->isSlotBootable(module, current_slot);
63 INFO("Booting slot %u: isSlotBootable=%d\n", current_slot, bootable);
64
65 if (bootable == 0) {
66 // The current slot has not booted successfully.
67
68 // TODO: Add the actual verification after we have the A/B OTA package
69 // format in place.
70
71 // TODO: Assert the dm-verity mode. Bootloader should never boot a newly
72 // flashed slot (isSlotBootable == 0) with dm-verity logging mode.
73
74 int ret = module->markBootSuccessful(module);
75 if (ret != 0) {
76 ERROR("Error marking booted successfully: %s\n", strerror(-ret));
77 return -1;
78 }
79 INFO("Marked slot %u as booted successfully.\n", current_slot);
80 }
81
82 INFO("Leaving update_verifier.\n");
83 return 0;
84}