enable userspace port I/O for hypercalls in guest - #32
Open
thejh wants to merge 1 commit into
Open
Conversation
Use ioperm() to explicitly allow port I/O to the port used for Nyx hypercalls. With this, the host kernel no longer needs to enable enable_vmware_backdoor=y. Benefits: - It avoids needing to change system-wide host configuration. - It lets KVM avoid intercepting guest #GP and decoding every instruction that hits #GP. Downsides: - Some stuff in the guest kernel will hit slowpaths; in particular, the syscall return path will probably run a few instructions more (tss_update_io_bitmap()). Switching between multiple tasks with separately-created ioperm() bitmasks would probably be slow because we'd hit the memcpy() in tss_copy_io_bitmap(), but as long as we just set up a single ioperm() bitmask in init, that shouldn't happen.
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.
Use
ioperm()to explicitly allow port I/O to the port used for Nyx hypercalls. With this, the host kernel no longer needs to enableenable_vmware_backdoor=y.Benefits:
Downsides:
tss_update_io_bitmap()).Switching between multiple tasks with separately-created
ioperm()bitmasks would probably be slow because we'd hit thememcpy()intss_copy_io_bitmap(), but as long as we just set up a singleioperm()bitmask in init, that shouldn't happen.With this patch applied, I can use
afl-fuzzin Nyx mode without enablingenable_vmware_backdoor.