mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 18:11:05 +00:00
This patch defines more error codes to make the consle more descriptive. BUG=none BRANCH=none TEST=Boot Fizz. Change-Id: I84cc6cd7f309bb2f2e1f36dea6cf5a7f0f862f50 Reviewed-on: https://chromium-review.googlesource.com/639160 Commit-Ready: Daisuke Nojiri <dnojiri@chromium.org> Tested-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/* Copyright 2017 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.
|
|
*/
|
|
|
|
/*
|
|
* Common utility APIs for vboot 2.1
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "rsa.h"
|
|
#include "rwsig.h"
|
|
#include "vb21_struct.h"
|
|
#include "vboot.h"
|
|
|
|
int vb21_is_packed_key_valid(const struct vb21_packed_key *key)
|
|
{
|
|
if (key->c.magic != VB21_MAGIC_PACKED_KEY)
|
|
return EC_ERROR_VBOOT_KEY_MAGIC;
|
|
if (key->key_size != sizeof(struct rsa_public_key))
|
|
return EC_ERROR_VBOOT_KEY_SIZE;
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
int vb21_is_signature_valid(const struct vb21_signature *sig,
|
|
const struct vb21_packed_key *key)
|
|
{
|
|
if (sig->c.magic != VB21_MAGIC_SIGNATURE)
|
|
return EC_ERROR_VBOOT_SIG_MAGIC;
|
|
if (sig->sig_size != RSANUMBYTES)
|
|
return EC_ERROR_VBOOT_SIG_SIZE;
|
|
if (key->sig_alg != sig->sig_alg)
|
|
return EC_ERROR_VBOOT_SIG_ALGORITHM;
|
|
if (key->hash_alg != sig->hash_alg)
|
|
return EC_ERROR_VBOOT_HASH_ALGORITHM;
|
|
/* Sanity check signature offset and data size. */
|
|
if (sig->sig_offset < sizeof(*sig))
|
|
return EC_ERROR_VBOOT_SIG_OFFSET;
|
|
if (sig->sig_offset + RSANUMBYTES > CONFIG_RW_SIG_SIZE)
|
|
return EC_ERROR_VBOOT_SIG_OFFSET;
|
|
if (sig->data_size > CONFIG_RW_SIZE - CONFIG_RW_SIG_SIZE)
|
|
return EC_ERROR_VBOOT_DATA_SIZE;
|
|
return EC_SUCCESS;
|
|
}
|