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

[1.9] fix tap offload features on restore and debuginfo #4829

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## \[Unreleased\]

### Fixed

- [#4824](https://github.com/firecracker-microvm/firecracker/pull/4824): Add
missing configuration of tap offload features when restoring from a snapshot.
Setting the features was previously
[moved](https://github.com/firecracker-microvm/firecracker/pull/4680/commits/49ed5ea4b48ccd98903da037368fa3108f58ac1f)
from net device creation to device activation time, but it was not reflected
in the restore path. This was leading to inability to connect to the restored
VM if the offload features were used.
- [#4829](https://github.com/firecracker-microvm/firecracker/pull/4829): v1.9.0
was missing most of the debugging information in the debuginfo file, due to a
change in the Cargo defaults. This has been corrected.

## \[1.9.0\]

### Added
Expand Down
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,7 @@ panic = "abort"
[profile.release]
panic = "abort"
lto = true
strip = "none"

[profile.bench]
strip = "debuginfo"
2 changes: 1 addition & 1 deletion src/vmm/src/devices/virtio/net/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ impl Net {

/// Builds the offload features we will setup on the TAP device based on the features that the
/// guest supports.
fn build_tap_offload_features(guest_supported_features: u64) -> u32 {
pub fn build_tap_offload_features(guest_supported_features: u64) -> u32 {
let add_if_supported =
|tap_features: &mut u32, supported_features: u64, tap_flag: u32, virtio_flag: u32| {
if supported_features & (1 << virtio_flag) != 0 {
Expand Down
9 changes: 8 additions & 1 deletion src/vmm/src/devices/virtio/net/persist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use utils::net::mac::MacAddr;

use super::device::Net;
use super::NET_NUM_QUEUES;
use super::{TapError, NET_NUM_QUEUES};
use crate::devices::virtio::device::DeviceState;
use crate::devices::virtio::persist::{PersistError as VirtioStateError, VirtioDeviceState};
use crate::devices::virtio::queue::FIRECRACKER_MAX_QUEUE_SIZE;
Expand Down Expand Up @@ -65,6 +65,8 @@
VirtioState(#[from] VirtioStateError),
/// Indicator that no MMDS is associated with this device.
NoMmdsDataStore,
/// Setting tap interface offload flags failed: {0}
TapSetOffload(TapError),
}

impl Persist<'_> for Net {
Expand Down Expand Up @@ -129,6 +131,11 @@
net.acked_features = state.virtio_state.acked_features;

if state.virtio_state.activated {
let supported_flags: u32 = Net::build_tap_offload_features(net.acked_features);
net.tap
.set_offload(supported_flags)
.map_err(NetPersistError::TapSetOffload)?;

Check warning on line 137 in src/vmm/src/devices/virtio/net/persist.rs

View check run for this annotation

Codecov / codecov/patch

src/vmm/src/devices/virtio/net/persist.rs#L134-L137

Added lines #L134 - L137 were not covered by tests

net.device_state = DeviceState::Activated(constructor_args.mem);
}

Expand Down
22 changes: 0 additions & 22 deletions tests/integration_tests/build/test_binary_static_linking.py

This file was deleted.

48 changes: 48 additions & 0 deletions tests/integration_tests/functional/test_binary.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

"""Tests to check several aspects of the binaries"""

import re
import subprocess

import pytest

from framework import utils


@pytest.mark.timeout(500)
def test_firecracker_binary_static_linking(microvm_factory):
"""
Test to make sure the firecracker binary is statically linked.
"""
fc_binary_path = microvm_factory.fc_binary_path
_, stdout, stderr = utils.check_output(f"file {fc_binary_path}")
assert "" in stderr
# expected "statically linked" for aarch64 and
# "static-pie linked" for x86_64
assert "statically linked" in stdout or "static-pie linked" in stdout


def test_release_debuginfo(microvm_factory):
"""Ensure the debuginfo file has the right ELF sections"""
fc_binary = microvm_factory.fc_binary_path
debuginfo = fc_binary.with_suffix(".debug")
stdout = subprocess.check_output(
["readelf", "-S", str(debuginfo)],
encoding="ascii",
)
matches = {
match[0] for match in re.findall(r"\[..] (\.(\w|\.)+)", stdout, re.MULTILINE)
}
needed_sections = {
".debug_aranges",
".debug_info",
".debug_abbrev",
".debug_line",
".debug_frame",
".debug_str",
".debug_ranges",
}
missing_sections = needed_sections - matches
assert missing_sections == set()
Loading