Skip to content

Latest commit

 

History

History
219 lines (171 loc) · 8.66 KB

File metadata and controls

219 lines (171 loc) · 8.66 KB

Firecracker's Kernel Support Policy

Firecracker is tightly coupled with the guest and host kernels on which it is run. This document presents our kernel support policy which aims to help our customers choose host and guest OS configuration, and predict future kernel related changes.

We are continuously validating the currently supported Firecracker releases (as per Firecracker’s release policy) using a combination of all supported host and guest kernel versions in the table below.

Once a kernel version is officially added, it is supported for a minimum of 2 years. At least 2 major guest and host versions will be supported at any time. When support is added for a third kernel version, the oldest will be deprecated and removed in a following release, after its minimum end of support date.

Note

While other versions and other kernel configs might work, they are not periodically validated in our test suite, and using them might result in unexpected behaviour. Starting with release v1.0 each major and minor release will specify the supported kernel versions.

Host Kernel

Page size Host kernel Min. version Min. end of support
4K v5.10 v1.0.0 2024-01-31
4K v6.1 v1.5.0 2025-10-12

Guest Kernel

Page size Guest kernel Min. version Min. end of support
4K v5.10 v1.0.0 2024-01-31
4K v6.1 v1.9.0 2026-09-02

The guest kernel configs used in our validation pipelines can be found here while a breakdown of the relevant guest kernel modules can be found in the next section.

We use these configurations to build microVM-specific kernels vended by Amazon Linux. microVM kernel source code is published in the Amazon Linux linux repo under tags in the form of microvm-kernel-*, e.g. 6.1.128-3.201.amazn2023 kernel can be found here. These kernels may have diverged from the equivalent mainline versions, as we often backport patches that we require for supporting Firecracker features not present in the kernel versions we officially support. As a result, kernel configurations found in this repo should be used to build exclusively the aforementioned Amazon Linux kernels. We do not guarantee that using these configurations to build upstream kernels, will work or produce usable kernel images.

Guest kernel configuration items

The configuration items that may be relevant for Firecracker are:

  • serial console - CONFIG_SERIAL_8250_CONSOLE, CONFIG_PRINTK
  • initrd support - CONFIG_BLK_DEV_INITRD
  • virtio devices - CONFIG_VIRTIO_MMIO
    • balloon - CONFIG_MEMORY_BALLOON, CONFIG_VIRTIO_BALLOON
    • block - CONFIG_VIRTIO_BLK
      • partuuid support - CONFIG_MSDOS_PARTITION
    • network - CONFIG_VIRTIO_NET
    • vsock - CONFIG_VIRTIO_VSOCKETS
    • entropy - CONFIG_HW_RANDOM_VIRTIO
  • guest RNG - CONFIG_RANDOM_TRUST_CPU
    • use CPU RNG instructions (if present) to initialize RNG. Available for >= 5.10
  • ACPI support - CONFIG_ACPI and CONFIG_PCI
  • PCI support:
    • CONFIG_BLK_MQ_PCI
    • CONFIG_PCI
    • CONFIG_PCI_MMCONFIG
    • CONFIG_PCI_MSI
    • CONFIG_PCIEPORTBUS
    • CONFIG_VIRTIO_PCI
    • CONFIG_PCI_HOST_COMMON
    • CONFIG_PCI_HOST_GENERIC

There are also guest config options which are dependant on the platform on which Firecracker is run:

ARM

  • timekeeping - CONFIG_ARM_AMBA, CONFIG_RTC_DRV_PL031
  • serial console - CONFIG_SERIAL_OF_PLATFORM

x86_64

  • timekeeping - CONFIG_KVM_GUEST (which enables CONFIG_KVM_CLOCK)
  • high precision timekeeping - CONFIG_PTP_1588_CLOCK, CONFIG_PTP_1588_CLOCK_KVM
  • external clean shutdown - CONFIG_SERIO_I8042, CONFIG_KEYBOARD_ATKBD
  • virtio devices - CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES

Minimal boot requirements

Depending on the source of boot (either from a block device or from an initrd), the minimal configuration for a guest kernel for a successful microVM boot is:

  • Booting with initrd:

    • CONFIG_BLK_DEV_INITRD=y
      • aarch64 CONFIG_VIRTIO_MMIO=y (for the serial device).
      • x86_64 CONFIG_KVM_GUEST=y.
  • Booting with root block device:

    • aarch64
      • CONFIG_VIRTIO_BLK=y
    • x86_64
      • CONFIG_VIRTIO_BLK=y
      • CONFIG_ACPI=y
      • CONFIG_PCI=y
      • CONFIG_KVM_GUEST=y.

Optional: To enable boot logs set CONFIG_SERIAL_8250_CONSOLE=y and CONFIG_PRINTK=y in the guest kernel config.

Booting with ACPI (x86_64 only):

Firecracker supports booting kernels with ACPI support. The relevant configurations for the guest kernel are:

  • CONFIG_ACPI=y
  • CONFIG_PCI=y

Note

Firecracker does not support PCI devices. The CONFIG_PCI option is needed for ACPI initialization inside the guest.

ACPI supersedes the legacy way of booting a microVM, i.e. via MPTable and command line parameters for VirtIO devices.

We suggest that users disable MPTable and passing VirtIO devices via kernel command line parameters. These boot mechanisms are now deprecated. Users can disable these features by disabling the corresponding guest kernel configuration parameters:

  • CONFIG_X86_MPPARSE=n
  • CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=n

During the deprecation period Firecracker will continue to support the legacy way of booting a microVM. Firecracker will be able to boot kernels with the following configurations:

  • Only ACPI
  • Only legacy mechanisms
  • Both ACPI and legacy mechanisms
Booting with PCI:

Firecracker supports booting guest microVMs with PCI support. This option is enabled using the --enable-pci flag when launching the Firecracker process. With PCI enabled, Firecracker will create all VirtIO devices using a PCI VirtIO transport. The PCI transport typically achieves higher throughput and lower latency for VirtIO devices. No further, per device, configuration is needed to enable the PCI transport.

PCI support is optional; if it is not enabled Firecracker will create VirtIO devices using the MMIO transport.

For Firecracker microVMs to boot properly with PCI support, use a guest kernel built with PCI support. See the relevant Kconfig flags in our list of relevant Kconfig options:

Important

Make sure that the kernel command line does NOT include the pci=off slug, which disables PCI support during boot time within the guest. When PCI is disabled, Firecracker will add this slug in the command line to instruct the guest kernel to skip useless PCI checks. For more info, look into the section for Kernel command line parameters.

Note

On x86_64 systems, CONFIG_PCI Kconfig option is needed even when booting microVMs without PCI support in case users want to use ACPI to boot. See here for more info.

Kernel command line parameters

By default, Firecracker will boot a guest microVM passing the following command line parameters to the kernel:

reboot=k panic=1 nomodule 8250.nr_uarts=0 i8042.noaux i8042.nomux i8042.dumbkbd swiotlb=noforce.

  • reboot=k shut down the guest on reboot, instead of rebooting
  • panic=1 on panic, reboot after 1 second
  • nomodule disable loadable kernel module support
  • 8250.nr_uarts=0 disable 8250 serial interface
  • i8042.noaux do not probe the i8042 controller for an attached mouse (save boot time)
  • i8042.nomux do not probe i8042 for a multiplexing controller (save boot time)
  • i8042.dumbkbd do not attempt to control kbd state via the i8042 (save boot time)
  • swiotlb=noforce disable software bounce buffers (SWIOTLB)

When running without PCI support, Firecracker will also append pci=off to the above list. This option instructs the guest kernel to avoid PCI probing.

Users can provide their own command line parameters through the boot_args field of the /boot-source Firecracker API.

Caveats

  • Snapshot compatibility across kernel versions
  • When booting with kernels that support both ACPI and legacy boot mechanisms Firecracker passes VirtIO devices to the guest twice, once through ACPI and a second time via kernel command line parameters. In these cases, the guest tries to initialize devices twice. The second time, initialization fails and the guest will emit warning messages in dmesg, however the devices will work correctly.