arch/riscv/purgatory/purgatory.c
Source file repositories/reference/linux-study-clean/arch/riscv/purgatory/purgatory.c
File Facts
- System
- Linux kernel
- Corpus path
arch/riscv/purgatory/purgatory.c- Extension
.c- Size
- 1007 bytes
- Lines
- 42
- Domain
- Architecture Layer
- Bucket
- arch/riscv
- Inferred role
- Architecture Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/kernel.hlinux/string.hasm/purgatory.hasm/string.h
Detected Declarations
function verify_sha256_digestfunction purgatory
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* purgatory: Runs between two kernels
*
* Copyright (C) 2022 Huawei Technologies Co, Ltd.
*
* Author: Li Zhengyu (lizhengyu3@huawei.com)
*
*/
#include <linux/kernel.h>
#include <linux/string.h>
#include <asm/purgatory.h>
#include <asm/string.h>
u8 purgatory_sha256_digest[SHA256_DIGEST_SIZE] __section(".kexec-purgatory");
struct kexec_sha_region purgatory_sha_regions[KEXEC_SEGMENT_MAX] __section(".kexec-purgatory");
static bool verify_sha256_digest(void)
{
struct kexec_sha_region *ptr, *end;
struct sha256_ctx sctx;
u8 digest[SHA256_DIGEST_SIZE];
sha256_init(&sctx);
end = purgatory_sha_regions + ARRAY_SIZE(purgatory_sha_regions);
for (ptr = purgatory_sha_regions; ptr < end; ptr++)
sha256_update(&sctx, (const u8 *)(ptr->start), ptr->len);
sha256_final(&sctx, digest);
return memcmp(digest, purgatory_sha256_digest, sizeof(digest)) == 0;
}
void purgatory(void)
{
if (!verify_sha256_digest())
for (;;)
/* loop forever */
;
}
Annotation
- Immediate include surface: `linux/kernel.h`, `linux/string.h`, `asm/purgatory.h`, `asm/string.h`.
- Detected declarations: `function verify_sha256_digest`, `function purgatory`.
- Atlas domain: Architecture Layer / arch/riscv.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.