2014-10-10 19:51:06 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2016-07-25 20:48:03 +02:00
|
|
|
#ifndef __VBOOT_MISC_H__
|
|
|
|
#define __VBOOT_MISC_H__
|
2014-10-10 19:51:06 +02:00
|
|
|
|
2019-05-09 23:16:13 +02:00
|
|
|
#include <assert.h>
|
2017-10-17 17:02:29 +02:00
|
|
|
#include <security/vboot/vboot_common.h>
|
2020-02-14 06:18:06 +01:00
|
|
|
#include <vb2_api.h>
|
2015-10-07 00:29:03 +02:00
|
|
|
|
2019-03-13 15:38:07 +01:00
|
|
|
/*
|
|
|
|
* Source: security/vboot/common.c
|
|
|
|
*/
|
2019-10-23 09:01:37 +02:00
|
|
|
struct vb2_context *vboot_get_context(void);
|
2014-10-10 19:51:06 +02:00
|
|
|
|
2019-11-14 08:42:25 +01:00
|
|
|
/*
|
|
|
|
* Returns 1 if firmware slot A is used, 0 if slot B is used.
|
|
|
|
*/
|
2019-12-12 22:23:06 +01:00
|
|
|
static inline int vboot_is_firmware_slot_a(struct vb2_context *ctx)
|
2019-11-14 08:42:25 +01:00
|
|
|
{
|
|
|
|
return !(ctx->flags & VB2_CONTEXT_FW_SLOT_B);
|
|
|
|
}
|
2019-03-13 15:38:07 +01:00
|
|
|
|
2019-11-27 02:58:11 +01:00
|
|
|
/*
|
|
|
|
* Check if given flag is set in the flags field in GBB header.
|
|
|
|
* Return value:
|
|
|
|
* true: Flag is set.
|
|
|
|
* false: Flag is not set.
|
|
|
|
*/
|
|
|
|
static inline bool vboot_is_gbb_flag_set(enum vb2_gbb_flag flag)
|
|
|
|
{
|
|
|
|
return !!(vb2api_gbb_get_flags(vboot_get_context()) & flag);
|
|
|
|
}
|
|
|
|
|
2019-11-14 08:42:25 +01:00
|
|
|
/*
|
|
|
|
* Locates firmware as a region device. Returns 0 on success, -1 on failure.
|
|
|
|
*/
|
2019-12-12 22:23:06 +01:00
|
|
|
int vboot_locate_firmware(struct vb2_context *ctx, struct region_device *fw);
|
2019-03-13 15:38:07 +01:00
|
|
|
|
|
|
|
/*
|
2019-05-09 23:16:13 +02:00
|
|
|
* The stage loading code is compiled and entered from multiple stages. The
|
|
|
|
* helper functions below attempt to provide more clarity on when certain
|
|
|
|
* code should be called. They are implemented inline for better compile-time
|
|
|
|
* code elimination.
|
2019-03-13 15:38:07 +01:00
|
|
|
*/
|
2019-05-09 23:16:13 +02:00
|
|
|
|
|
|
|
static inline int verification_should_run(void)
|
|
|
|
{
|
|
|
|
if (CONFIG(VBOOT_SEPARATE_VERSTAGE))
|
|
|
|
return ENV_VERSTAGE;
|
|
|
|
else if (CONFIG(VBOOT_STARTS_IN_ROMSTAGE))
|
|
|
|
return ENV_ROMSTAGE;
|
|
|
|
else if (CONFIG(VBOOT_STARTS_IN_BOOTBLOCK))
|
|
|
|
return ENV_BOOTBLOCK;
|
|
|
|
else
|
|
|
|
dead_code();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int verstage_should_load(void)
|
|
|
|
{
|
|
|
|
if (CONFIG(VBOOT_SEPARATE_VERSTAGE))
|
|
|
|
return ENV_BOOTBLOCK;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int vboot_logic_executed(void)
|
|
|
|
{
|
|
|
|
extern int vboot_executed; /* should not be globally accessible */
|
|
|
|
|
|
|
|
/* If we are in the stage that runs verification, or in the stage that
|
|
|
|
both loads the verstage and is returned to from it afterwards, we
|
2020-01-05 13:14:06 +01:00
|
|
|
need to check a global to see if verification has run. */
|
2019-05-09 23:16:13 +02:00
|
|
|
if (verification_should_run() ||
|
|
|
|
(verstage_should_load() && CONFIG(VBOOT_RETURN_FROM_VERSTAGE)))
|
2019-11-20 19:47:10 +01:00
|
|
|
return vboot_executed;
|
2019-05-09 23:16:13 +02:00
|
|
|
|
|
|
|
if (CONFIG(VBOOT_STARTS_IN_BOOTBLOCK)) {
|
|
|
|
/* All other stages are "after the bootblock" */
|
|
|
|
return !ENV_BOOTBLOCK;
|
|
|
|
} else if (CONFIG(VBOOT_STARTS_IN_ROMSTAGE)) {
|
|
|
|
/* Post-RAM stages are "after the romstage" */
|
2019-09-12 16:09:55 +02:00
|
|
|
return !ENV_ROMSTAGE_OR_BEFORE;
|
2019-05-09 23:16:13 +02:00
|
|
|
} else {
|
|
|
|
dead_code();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-22 17:56:43 +02:00
|
|
|
|
2016-07-25 20:48:03 +02:00
|
|
|
#endif /* __VBOOT_MISC_H__ */
|