[DRAFT] HEKI/HVCI separation: In-crate split (step 1 of 3)#1075
Draft
sangho2 wants to merge 1 commit into
Draft
Conversation
Split the HEKI service logic out of the monolithic mshv/vsm.rs into a new mshv::heki_service submodule (vsm, state, mem_integrity). Pure relocation: no logic, signature, or behavior changes. The platform vsm.rs retains only VTL bring-up, control-register locking, the vsm_dispatch entry point, and the protected-frame registry (with FrameReservation). Cross-module visibility is widened minimally where the relocated service handlers reach into the registry; a follow-up introduces the VsmBackend abstraction that removes that coupling.
sangho2
force-pushed
the
sanghle/lvbs/pr1-vsm-move
branch
from
July 23, 2026 22:23
c301f9a to
2f4ecf7
Compare
|
🤖 SemverChecks 🤖 Click for details |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
DRAFT
This PR separates the HEKI/HVCI features from
litebox_platform_lvbs. It introduces alitebox_service_hekicrate and makes the HEKI/HVCI features leverageVsmBackedabstraction which is concretized bylitebox_platform_lvbs.It does make a lot of mechanical line/file changes, confusing the Myers diff algorithm used by GitHub. For ease of review, I break it down into three stacked sub-PRs:
litebox_platform_lvbsVsmBackendabstraction inlitebox_platform_lvbslitebox_service_hekiThe second PR has contexts for review: Abstract Vsm to decouple the HEKI service from the LVBS platform. The other two are mostly mechanical.