Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft PR: Add Steal Time support in ARM #5139

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

DakshinD
Copy link

@DakshinD DakshinD commented Apr 4, 2025

Opening this PR as a draft as we continue working on this issue to add steal time support for ARM. Please see below for the changes we have implemented so far.

Changes

  • Added PVTime struct in src/vmm/src/arch/aarch64/pvtime/mod.rs that allocates and stores per-vCPU stolen_time regions

    • It offers a new constructor to create the device (allocating system memory and storing regions per vcpu), and register_vcpu which attempts to use kvm_set_device_attr to register the corresponding IPA for a vcpu
  • Created a function setup_pv_time in src/vmm/src/builder.rs which is invoked in build_microvm_for_boot

    • Checks if PVTime is supported using kvm_has_device_attr
    • Creates a PVTime device
    • Iterates over vcpu fd's to register their IPAs for steal_time struct
  • Started using debug/info logs while booting microvm for testing

Current problems:

Future Progress

  • We hope to continue making progress on this PR by:
    • Getting feedback on our current design of the PVTime device and setup_pv_time
    • Support snapshotting
    • Any other things we need to address

Reason

Attempting to resolve issue #4866

License Acceptance

By submitting this pull request, I confirm that my contribution is made under
the terms of the Apache 2.0 license. For more information on following Developer
Certificate of Origin and signing off your commits, please check
CONTRIBUTING.md.

PR Checklist

  • I have read and understand CONTRIBUTING.md.
  • I have run tools/devtool checkstyle to verify that the PR passes the
    automated style checks.
  • I have described what is done in these changes, why they are needed, and
    how they are solving the problem in a clear and encompassing way.
  • I have updated any relevant documentation (both in code and in the docs)
    in the PR.
  • I have mentioned all user-facing changes in CHANGELOG.md.
  • If a specific issue led to this PR, this PR closes the issue.
  • When making API changes, I have followed the
    Runbook for Firecracker API changes.
  • I have tested all new and changed functionalities in unit tests and/or
    integration tests.
  • I have linked an issue to every new TODO.

  • This functionality cannot be added in rust-vmm.

- Added PVTime struct that allocates and stores per-vCPU stolen_time regions
- Implemented register_vcpu() to register the IPA for each vCPU with KVM
- Invoked setup_pv_time in build_microvm_for_boot
- Added PVTime detection in setup_pv_time
- Started using debug/info logs while booting microvm for testing

Limitations/WIP:
- While manually booting a microvm for testing, error during set_device_attr in register_vcpu
- Snapshotting not yet supported

Signed-off-by: Dakshin Devanand <[email protected]>
@DakshinD DakshinD marked this pull request as draft April 4, 2025 07:00
@Manciukic Manciukic self-assigned this Apr 4, 2025
@Manciukic Manciukic added the Status: WIP Indicates that an issue is currently being worked on or triaged label Apr 4, 2025
Copy link
Contributor

@Manciukic Manciukic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's try making the proposed change to pass the right address and see if it works.
I haven't left any comment regarding style or design to focus on functionality first. Once we get something working we can see how to make it "look better".

Copy link
Contributor

@Manciukic Manciukic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I got confused by the KVM API as well! Passing a user pointer to the IPA to kvm is ok, but it needs to be 64B aligned.

The hint was in the KVM documentation:

-EINVAL Base address not 64 byte aligned

https://www.kernel.org/doc/html/v5.8/virt/kvm/devices/vcpu.html#attribute-kvm-arm-vcpu-pvtime-ipa

@Manciukic Manciukic linked an issue Apr 4, 2025 that may be closed by this pull request
3 tasks
- Each vCPU now gets 64 bytes for its steal_time struct region (16 bytes reguired for data)
- This satisfies 64 byte alignment the IPA requires

MicroVM can now successfully be booted with pvtime in the boot process.

Signed-off-by: Dakshin Devanand <[email protected]>
@DakshinD
Copy link
Author

DakshinD commented Apr 4, 2025

Thank you so much for your fast response! Totally missed the docs for 64 byte alignment, but that ended up fixing the bugs and I can successfully boot a microVM manually. If you think its a good time now, we can look to flesh out the implementation and "make it better".

Other than that, we believe the next step is adding unit/integration tests to make sure our device is working properly, as well as implementing persistence across snapshots. Any leads on how to do both of these things would be really helpful.

The lead we have been looking at for snapshotting is the Persist interface.

  • We store the MicrovmState in save_snapshot, so we need to first store our PVTime device somewhere in the vmm
  • Then we implement Persist for PVTime, and store the PVTimeState we get from save() somewhere in the MicrovmState (could we extend MicrovmState to include this? or add this state to one of the other states already existing inside of it?)
  • Finally, would need to write comprehensive tests to make sure this works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: WIP Indicates that an issue is currently being worked on or triaged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request] Steal Time support in ARM
2 participants