mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-11 18:35:28 +00:00
This patch reinstates the external GPT support which was previously committed and reverted. Improvements since last time include: - Cleaned-up internal interface based on code review - Function correctly on legacy bootloaders (e.g., depthcharge before NAND-related patches are added) - Better comments - Treat new field values = 0 -> not use new feature - Tests are added to ensure external GPT flag is passed down properly The original commit had change-id I5a77e417aea8ee9442d18c200d1b073aa5375ecf Its commit message is reproduced below, and then an additional test. ---- To support an external GPT, disks have two new attributes: - A binary flag indicating whether the GPT is in the same address space as the payloads or a separate one. - The number of sectors of the streaming portion of storage, as opposed to the portion containing the GPT. These have been added elsewhere to GptData (in cgptlib) and BlockDev (in depthcharge). This patch adds the plumbing between those, including in the DiskInfo interface between the firmware and vboot. BUG=chromium:425677 BRANCH=none TEST=Interactively wrote the GPT with cgpt and observed the following boot with depthcharge to read the GPT from SPI and then read from the proper locations in NAND flash. TEST=make runalltests passes. TEST=boots from USB with depthcharge from HEAD. Change-Id: Ia7956517a7b9da0301f01fac5a10204f6d78cf4f Signed-off-by: Dan Ehrenberg <dehrenberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/234640 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
143 lines
3.7 KiB
C
143 lines
3.7 KiB
C
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* Routines for verifying a kernel or disk image
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "host_common.h"
|
|
#include "util_misc.h"
|
|
#include "vboot_common.h"
|
|
#include "vboot_api.h"
|
|
#include "vboot_kernel.h"
|
|
#include "futility.h"
|
|
|
|
static uint8_t *diskbuf;
|
|
|
|
static uint8_t shared_data[VB_SHARED_DATA_MIN_SIZE];
|
|
static VbSharedDataHeader *shared = (VbSharedDataHeader *)shared_data;
|
|
static VbNvContext nvc;
|
|
|
|
static LoadKernelParams params;
|
|
static VbCommonParams cparams;
|
|
|
|
VbError_t VbExDiskRead(VbExDiskHandle_t handle, uint64_t lba_start,
|
|
uint64_t lba_count, void *buffer)
|
|
{
|
|
if (handle != (VbExDiskHandle_t)1)
|
|
return VBERROR_UNKNOWN;
|
|
if (lba_start >= params.streaming_lba_count)
|
|
return VBERROR_UNKNOWN;
|
|
if (lba_start + lba_count > params.streaming_lba_count)
|
|
return VBERROR_UNKNOWN;
|
|
|
|
memcpy(buffer, diskbuf + lba_start * 512, lba_count * 512);
|
|
return VBERROR_SUCCESS;
|
|
}
|
|
|
|
VbError_t VbExDiskWrite(VbExDiskHandle_t handle, uint64_t lba_start,
|
|
uint64_t lba_count, const void *buffer)
|
|
{
|
|
if (handle != (VbExDiskHandle_t)1)
|
|
return VBERROR_UNKNOWN;
|
|
if (lba_start >= params.streaming_lba_count)
|
|
return VBERROR_UNKNOWN;
|
|
if (lba_start + lba_count > params.streaming_lba_count)
|
|
return VBERROR_UNKNOWN;
|
|
|
|
memcpy(diskbuf + lba_start * 512, buffer, lba_count * 512);
|
|
return VBERROR_SUCCESS;
|
|
}
|
|
|
|
static void print_help(const char *progname)
|
|
{
|
|
printf("\nUsage: " MYNAME " %s <disk_image> <kernel.vbpubk>\n\n",
|
|
progname);
|
|
}
|
|
|
|
static int do_verify_kernel(int argc, char *argv[])
|
|
{
|
|
VbPublicKey *kernkey;
|
|
uint64_t disk_bytes = 0;
|
|
int rv;
|
|
|
|
if (argc < 3) {
|
|
print_help(argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
/* Load disk file */
|
|
/* TODO: is it better to mmap() in the long run? */
|
|
diskbuf = ReadFile(argv[1], &disk_bytes);
|
|
if (!diskbuf) {
|
|
fprintf(stderr, "Can't read disk file %s\n", argv[1]);
|
|
return 1;
|
|
}
|
|
|
|
/* Read public key */
|
|
kernkey = PublicKeyRead(argv[2]);
|
|
if (!kernkey) {
|
|
fprintf(stderr, "Can't read key file %s\n", argv[2]);
|
|
return 1;
|
|
}
|
|
|
|
/* Set up shared data blob */
|
|
VbSharedDataInit(shared, sizeof(shared_data));
|
|
VbSharedDataSetKernelKey(shared, kernkey);
|
|
/* TODO: optional TPM current kernel version */
|
|
|
|
/* Set up params */
|
|
params.shared_data_blob = shared_data;
|
|
params.shared_data_size = sizeof(shared_data);
|
|
params.disk_handle = (VbExDiskHandle_t)1;
|
|
params.bytes_per_lba = 512;
|
|
params.streaming_lba_count = disk_bytes / 512;
|
|
params.gpt_lba_count = params.streaming_lba_count;
|
|
|
|
params.kernel_buffer_size = 16 * 1024 * 1024;
|
|
params.kernel_buffer = malloc(params.kernel_buffer_size);
|
|
if (!params.kernel_buffer) {
|
|
fprintf(stderr, "Can't allocate kernel buffer\n");
|
|
return 1;
|
|
}
|
|
|
|
/* GBB and cparams only needed by LoadKernel() in recovery mode */
|
|
params.gbb_data = NULL;
|
|
params.gbb_size = 0;
|
|
|
|
/* TODO(chromium:441893): support dev-mode flag and external gpt flag */
|
|
params.boot_flags = 0;
|
|
|
|
/*
|
|
* LoadKernel() cares only about VBNV_DEV_BOOT_SIGNED_ONLY, and only in
|
|
* dev mode. So just use defaults.
|
|
*/
|
|
VbNvSetup(&nvc);
|
|
params.nv_context = &nvc;
|
|
|
|
/* Try loading kernel */
|
|
rv = LoadKernel(¶ms, &cparams);
|
|
if (rv != VBERROR_SUCCESS) {
|
|
fprintf(stderr, "LoadKernel() failed with code %d\n", rv);
|
|
return 1;
|
|
}
|
|
|
|
printf("Found a good kernel.\n");
|
|
printf("Partition number: %d\n", (int)params.partition_number);
|
|
printf("Bootloader address: 0x%" PRIx64 "\n",
|
|
params.bootloader_address);
|
|
|
|
/* TODO: print other things (partition GUID, nv_context, shared_data) */
|
|
|
|
printf("Yaay!\n");
|
|
return 0;
|
|
}
|
|
|
|
DECLARE_FUTIL_COMMAND(verify_kernel, do_verify_kernel,
|
|
"Verifies a kernel / disk image",
|
|
print_help);
|