cpuid: Disable FSGSBASE feature for guest workloads - #14487
Open
copybara-service[bot] wants to merge 1 commit into
Open
copybara-service[bot] wants to merge 1 commit into
copybara-service[bot] wants to merge 1 commit into
Conversation
copybara-service
Bot
force-pushed
the
test/cl972832746
branch
2 times, most recently
from
September 17, 2026 03:12
3fe4fb9 to
f24e5eb
Compare
Systrap allows apps to modify the GS register to use for their own purposes. However, because it initially reserves the register to use for syscall patching , the sentry must be alerted when the app attempts to set it so that it can unpatch all patched syscall areas before allowing the guest to use the register. Thus, we disable the FSGSBASE feature on Systrap so workloads are informed that they cannot use `wrgsbase` instruction to make a userspace write to the register (which would bypass the sentry). PiperOrigin-RevId: 972832746
copybara-service
Bot
force-pushed
the
test/cl972832746
branch
from
September 17, 2026 16:32
f24e5eb to
443b207
Compare
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.
cpuid: Disable
FSGSBASEfeature for guest workloadsSystrap allows apps to modify the GS register to use for their own purposes.
However, because it initially reserves the register to use for syscall
patching , the sentry must be alerted when the app attempts to set it
so that it can unpatch all patched syscall areas before
allowing the guest to use the register.
Thus, we disable the FSGSBASE feature on Systrap so workloads are informed
that they cannot use
wrgsbaseinstruction to make a userspace writeto the register (which would bypass the sentry).