- [#224] Fixed docs.rs build.
- [#214] Updated vm-memory to 0.17.1.
- [#148] Fixing kernel commandline parameter validation This change allows parameter values containing spaces in the middle, provided they are enclosed in quotes. However, strings with quotes in the middle will no longer be accepted as valid parameter values.
- [#205] Make image header for ARM and RISC-V public Kernel headers for ARM and RISC-V are made public to be used in a fw_cfg implementation that reads the kernel header.
- [#190] Introduce RISC-V64 architecture support.
- [#194] Updated vm-memory to 0.16.0.
- [#197] Re-organize
loader,configuratorandbenchesmodule layout, leaving original interface intact.
- [#187] Updated vm-memory to 0.15.0.
- [#179] Load hvm_modlist_entry into guest memory when requested.
- [#177] Added loading
of PVH module blobs into guest memory. This enables booting with
initrdvia PVH boot.
- [#173] Updated vm-memory to 0.14.0.
- [#170] Added all features to the generated docs.rs documentation.
- [#162] Updated vm-memory to 0.13.0.
This introduces a
ReadVolatilebound onKernelLoader::load.
- [#130] Generate bindings to fix unaligned references in unit tests.
- [#160] Update vm-memory to 0.12.2
- [#71] Fix incorrect alignment for ELF notes, starting address of name field and descriptor field have a 4-byte alignment.
- [#125] The ELF header contains offsets that the loader uses to find other structures. If those offsets are beyond the end of the file (or would go past the end of the file) it is essential to error out when attempting to read those.
- Add a new criterion advisory to ignore list
2580d4
- Updated vm-memory from 0.9.0 to 0.10.0
- Added
insert_init_argsmethod allowing insertion of init arguments intoCmdline.
- Removed
InvalidDeviceerror type (it wasn't used anywhere). - Replaced
FromwithTryFrom<Cmdline>forVec<u8>to be able to propagate errors returned byas_cstringwhen converting aCmdlinetoVec<u8>. - Support added for both boot and init arguments in
try_from. - Changed
newto returnResultfor invalid command line capacity handling.
- Crate is now using edition 2021.
- Derived
EqforErrortypes and thePvhBootCapabilityenum.
- Fixed a bug in
load_cmdlinedue to which the command line was not null terminated. This resulted in a change in theCmdlineAPI where instead of returning the cmdline as a String, we're now returning it as aCStringas the latter has support for converting it to a null terminated bytes array. - Fixed an off-by-one error in load_cmdline, where we were doing validations on the first address after the command line memory region, instead of the last inclusive one of it.
- [#104] Fixed
the
--no-default-featuresnot working.
- [#111] Use caret requirements for dependencies.
- [#66] Fixed potential
overflow in calls to
align_up.
- [#62] The
load_cmdlinefunction now takes as a parameter the crate definedCmdlineobject instead ofCstr. This means that customers don't need to convert the object before calling intoload_cmdline. - [#83] Updated the vm-memory dependency requirement to the latest version (0.6.0).
- [#79] Implemented
From<Cmdline>forVec<u8>. This replaces the obsoleteIntoimplementation.
- Replaced panic condition in
align_upwith returning an Error. - Fixed potential hang condition in Elf::load caused by arithmetic overflow.
- Disallow overflow when computing the kernel load address when loading ELF.
- Fix unchecked arithmetic in BzImage::load that could lead to undefined behavior.
- Added functions for specifying virtio MMIO devices when building the kernel command line.
- Added a function to specify multiple values in
key=valuespairs when building the kernel command line.
- Added traits and structs for loading ELF (
vmlinux), big zImage (bzImage) and PE (Image) kernels into guest memory. - Added traits and structs for writing boot parameters to guest memory.