libkrun
libkrun copied to clipboard
A dynamic library providing Virtualization-based process isolation capabilities
malloc(3) already sets errno and we should return on NULL. -- Hi, sorry if this is too silly I was just going over the code and noticed it, also you...
Previously krun_start_enter would succeed and the guest kernel would just panic. The root filesystem directory was opened lazily when the guest kernel used fuse init opcode. This commit changes it...
With legacy SEV largely being replaced by SEV-SNP, is it worthwhile to remove the `libkrun-sev` (containing both SEV and SEV-SNP modules) in favor of strictly `libkrun-snp`? This is motivated by...
``` cargo build --release --features efi,gpu Compiling vmm v0.1.0 (/var/srv/walters/src/github/containers/libkrun/src/vmm) error[E0425]: cannot find value `kernel_bundle` in this scope --> src/vmm/src/builder.rs:475:46 | 475 | let boot_ip: GuestAddress = GuestAddress(kernel_bundle.entry_addr); | ^^^^^^^^^^^^^...
Hello, Just recently I discovered this amazing library, so I was investigating PR and commits and so on, and found out that virtio-net was introduced past month with: https://github.com/containers/libkrun/pull/142 And...
How crazy would it be to try to support Windows as a host OS, via the Windows Hypervisor Platform? How pervasive is the assumption of a Unix-like host OS? I...
So far so good I successfully build libkrunfw and libkrun (Asahi fedora remix 38). It is certainly a host configuration problem on my side but I cannot put my finger...
Unsure of the cause yet but will try and find a reproducible example to update the issue with. I have a glusterfs disk (mounted with `mount -t glusterfs node:/gv0 /mnt`)...
I'm trying to understand the handling of STDIN and am a little lost. From the comments in libkrun.h where it says >The VMM will attempt to take over stdin/stdout to...
In its current form, the way in which stdin/stdout are tied to virtio-console only plays nice with interactive TTY-like sessions. This means, in may scenarios, libkrun-based VMMs can't be used...