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

Refactor: Decouple Qemu Internal from pkg/instance #3377

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

unsuman
Copy link
Contributor

@unsuman unsuman commented Mar 24, 2025

WIP

This PR fixes #1746 by making changes to the Driver interface. I've raised this as a draft PR because the "github.com/lima-vm/lima/pkg/qemu" is also present in cmd/limactl/disk.go file and "github.com/lima-vm/lima/pkg/qemu/imgutil" in pkg/store/disk.go file.
Should I decouple these too? And more importantly, is my method of decoupling correct?

@@ -71,6 +71,8 @@ type Driver interface {

// GuestAgentConn returns the guest agent connection, or nil (if forwarded by ssh).
GuestAgentConn(_ context.Context) (net.Conn, error)

CheckBinarySignature(_ context.Context, arch string) error
Copy link
Member

Choose a reason for hiding this comment

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

This should be probably just merged to the existing Validate() method

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@AkihiroSuda I did what you suggested. What about this?

the "github.com/lima-vm/lima/pkg/qemu" is also present in cmd/limactl/disk.go file and "github.com/lima-vm/lima/pkg/qemu/imgutil" in pkg/store/disk.go file

Copy link
Member

Choose a reason for hiding this comment

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

The disk image operation seems another aspect and can be visited later.

Rather we should concentrate on decoupling pkg/limayaml from the VM drivers.
Quite complicated though.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

On it!

@@ -50,6 +50,25 @@ func New(driver *driver.BaseDriver) *LimaQemuDriver {
}

func (l *LimaQemuDriver) Validate() error {
// Ask the user to sign the qemu binary with the "com.apple.security.hypervisor" if needed.
// Workaround for https://github.com/lima-vm/lima/issues/1742
if runtime.GOOS == "darwin" && l.BaseDriver.Instance.VMType == limayaml.QEMU {
Copy link
Member

Choose a reason for hiding this comment

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

VMType == QEMU is always true here

Copy link
Member

Choose a reason for hiding this comment

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

Please also squash the commits

@@ -411,25 +430,6 @@ func (l *LimaQemuDriver) GuestAgentConn(ctx context.Context) (net.Conn, error) {
return dialContext, err
}

func (l *LimaQemuDriver) CheckBinarySignature(_ context.Context, arch string) error {
Copy link
Member

Choose a reason for hiding this comment

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

For readability you can just keep this function with privatization (Check... -> check...), and call it from Validate()

@unsuman unsuman force-pushed the fix/decouple-vm-internals branch from 31adc47 to e1b3f85 Compare March 25, 2025 12:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Decouple pkg/start (and others) from VM driver internals
2 participants