1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
// Copyright (c) 2019 Intel Corporation. All rights reserved.
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE-BSD-3-Clause file.
//
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause
//! Traits and structs for loading bzimage kernels into guest memory.
#![cfg(all(feature = "bzimage", any(target_arch = "x86", target_arch = "x86_64")))]
use std::fmt;
use std::io::{Seek, SeekFrom};
use vm_memory::{Address, ByteValued, GuestAddress, GuestMemory, GuestUsize, ReadVolatile};
use super::super::{
bootparam, Error as KernelLoaderError, KernelLoader, KernelLoaderResult, Result,
};
#[derive(Debug, PartialEq, Eq)]
/// Bzimage kernel loader errors.
pub enum Error {
/// Invalid bzImage binary.
InvalidBzImage,
/// Overflow occurred during an arithmetic operation.
Overflow,
/// Unable to read bzImage header.
ReadBzImageHeader,
/// Unable to read bzImage compressed image.
ReadBzImageCompressedKernel,
/// Unable to seek to bzImage end.
SeekBzImageEnd,
/// Unable to seek to bzImage header.
SeekBzImageHeader,
/// Unable to seek to bzImage compressed kernel.
SeekBzImageCompressedKernel,
/// Underflow occurred during an arithmetic operation.
Underflow,
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let desc = match self {
Error::InvalidBzImage => "Invalid bzImage",
Error::Overflow => "Overflow occurred during an arithmetic operation",
Error::ReadBzImageHeader => "Unable to read bzImage header",
Error::ReadBzImageCompressedKernel => "Unable to read bzImage compressed kernel",
Error::SeekBzImageEnd => "Unable to seek bzImage end",
Error::SeekBzImageHeader => "Unable to seek bzImage header",
Error::SeekBzImageCompressedKernel => "Unable to seek bzImage compressed kernel",
Error::Underflow => "Underflow occurred during an arithmetic operation",
};
write!(f, "Kernel Loader: {}", desc)
}
}
impl std::error::Error for Error {}
/// Big zImage (bzImage) kernel image support.
pub struct BzImage;
impl KernelLoader for BzImage {
/// Loads a kernel from a bzImage to guest memory.
///
/// The kernel is loaded at `code32_start`, the default load address stored in the bzImage
/// setup header.
///
/// # Arguments
///
/// * `guest_mem`: [`GuestMemory`] to load the kernel in.
/// * `kernel_offset`: Address in guest memory where the kernel is loaded.
/// * `kernel_image` - Input bzImage image.
/// * `highmem_start_address`: Address where high memory starts.
///
/// # Examples
///
/// ```rust
/// # extern crate vm_memory;
/// # use std::io::Cursor;
/// # use linux_loader::loader::*;
/// # use vm_memory::{Address, GuestAddress};
/// # type GuestMemoryMmap = vm_memory::GuestMemoryMmap<()>;
/// let mem_size: usize = 0x1000000;
/// let himem_start = GuestAddress(0x0);
/// let kernel_addr = GuestAddress(0x200000);
/// let gm = GuestMemoryMmap::from_ranges(&[(GuestAddress(0x0), mem_size)]).unwrap();
/// let mut kernel_image = vec![];
/// kernel_image.extend_from_slice(include_bytes!("bzimage"));
/// bzimage::BzImage::load(
/// &gm,
/// Some(kernel_addr),
/// &mut Cursor::new(&kernel_image),
/// Some(himem_start),
/// )
/// .unwrap();
/// ```
///
/// [`GuestMemory`]: https://docs.rs/vm-memory/latest/vm_memory/guest_memory/trait.GuestMemory.html
fn load<F, M: GuestMemory>(
guest_mem: &M,
kernel_offset: Option<GuestAddress>,
kernel_image: &mut F,
highmem_start_address: Option<GuestAddress>,
) -> Result<KernelLoaderResult>
where
F: ReadVolatile + Seek,
{
let mut kernel_size = kernel_image
.seek(SeekFrom::End(0))
.map_err(|_| Error::SeekBzImageEnd)? as usize;
kernel_image
.seek(SeekFrom::Start(0x1F1))
.map_err(|_| Error::SeekBzImageHeader)?;
let mut boot_header = bootparam::setup_header::default();
kernel_image
.read_volatile(&mut boot_header.as_bytes())
.map_err(|_| Error::ReadBzImageHeader)?;
// If the `HdrS` magic number is not found at offset 0x202, the boot protocol version is
// "old", the image type is assumed as zImage, not bzImage.
if boot_header.header != 0x5372_6448 {
return Err(Error::InvalidBzImage.into());
}
// Follow the section related to loading the rest of the kernel in the linux boot protocol.
if (boot_header.version < 0x0200) || ((boot_header.loadflags & 0x1) == 0x0) {
return Err(Error::InvalidBzImage.into());
}
let mut setup_size = boot_header.setup_sects as usize;
if setup_size == 0 {
setup_size = 4;
}
setup_size = setup_size
.checked_add(1)
.and_then(|setup_size| setup_size.checked_mul(512))
.ok_or(Error::Overflow)?;
kernel_size = kernel_size
.checked_sub(setup_size)
.ok_or(Error::Underflow)?;
// Check that `code32_start`, the default address of the kernel, is not lower than high
// memory.
if (highmem_start_address.is_some())
&& (u64::from(boot_header.code32_start) < highmem_start_address.unwrap().raw_value())
{
return Err(KernelLoaderError::InvalidKernelStartAddress);
}
let mem_offset = match kernel_offset {
Some(start) => start,
None => GuestAddress(u64::from(boot_header.code32_start)),
};
boot_header.code32_start = mem_offset.raw_value() as u32;
let mut loader_result = KernelLoaderResult {
setup_header: Some(boot_header),
kernel_load: mem_offset,
..Default::default()
};
// Seek the compressed `vmlinux.bin` and read it to memory.
kernel_image
.seek(SeekFrom::Start(setup_size as u64))
.map_err(|_| Error::SeekBzImageCompressedKernel)?;
guest_mem
.read_exact_volatile_from(mem_offset, kernel_image, kernel_size)
.map_err(|_| Error::ReadBzImageCompressedKernel)?;
loader_result.kernel_end = mem_offset
.raw_value()
.checked_add(kernel_size as GuestUsize)
.ok_or(KernelLoaderError::MemoryOverflow)?;
Ok(loader_result)
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::fs::File;
use std::io::{Cursor, Read};
use std::process::Command;
use vm_memory::{Address, GuestAddress};
type GuestMemoryMmap = vm_memory::GuestMemoryMmap<()>;
const MEM_SIZE: u64 = 0x100_0000;
fn create_guest_mem() -> GuestMemoryMmap {
GuestMemoryMmap::from_ranges(&[(GuestAddress(0x0), (MEM_SIZE as usize))]).unwrap()
}
fn download_resources() {
let command = "./.buildkite/download_resources.sh";
let status = Command::new(command).status().unwrap();
if !status.success() {
panic!("Cannot run build script");
}
}
fn make_bzimage() -> Vec<u8> {
download_resources();
let mut v = Vec::new();
let path = concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/loader/x86_64/bzimage/bzimage"
);
let mut f = File::open(path).unwrap();
f.read_to_end(&mut v).unwrap();
v
}
#[allow(non_snake_case)]
#[test]
fn test_load_bzImage() {
let gm = create_guest_mem();
let image = make_bzimage();
let mut kernel_offset = GuestAddress(0x200000);
let mut highmem_start_address = GuestAddress(0x0);
// load bzImage with good kernel_offset and himem_start setting
let mut loader_result = BzImage::load(
&gm,
Some(kernel_offset),
&mut Cursor::new(&image),
Some(highmem_start_address),
)
.unwrap();
let setup_header = loader_result.setup_header.unwrap();
assert_eq!(loader_result.kernel_load.raw_value(), 0x200000);
assert_eq!(
// SAFETY:
// Reading the value from an unaligned address is not considered safe.
// but this is not an issue since this is a test.
unsafe { std::ptr::addr_of!(setup_header.header).read_unaligned() },
0x53726448
);
assert_eq!(
// SAFETY:
// Reading the value from an unaligned address is not considered safe.
// but this is not an issue since this is a test.
unsafe { std::ptr::addr_of!(setup_header.version).read_unaligned() },
0x20f
);
assert_eq!(loader_result.setup_header.unwrap().loadflags, 1);
assert_eq!(loader_result.kernel_end, 0x8B1600);
// load bzImage without kernel_offset
loader_result = BzImage::load(
&gm,
None,
&mut Cursor::new(&image),
Some(highmem_start_address),
)
.unwrap();
let setup_header = loader_result.setup_header.unwrap();
assert_eq!(loader_result.kernel_load.raw_value(), 0x100000);
// load bzImage without himem_start
loader_result = BzImage::load(&gm, None, &mut Cursor::new(&image), None).unwrap();
// Reading the value from an unaligned address is not considered safe.
assert_eq!(
0x53726448,
// SAFETY:
// Reading the value from an unaligned address is not considered safe.
// but this is not an issue since this is a test.
unsafe { std::ptr::addr_of!(setup_header.header).read_unaligned() }
);
assert_eq!(loader_result.kernel_load.raw_value(), 0x100000);
// load bzImage with a bad himem setting
kernel_offset = GuestAddress(0x1000);
highmem_start_address = GuestAddress(0x200000);
assert_eq!(
Some(KernelLoaderError::InvalidKernelStartAddress),
BzImage::load(
&gm,
Some(kernel_offset),
&mut Cursor::new(&image),
Some(highmem_start_address),
)
.err()
);
}
#[test]
fn test_invalid_bzimage_underflow() {
use super::super::super::Error as LoaderError;
let path = concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/loader/x86_64/bzimage/fuzz_invalid_bzimage.bin"
);
let gm = create_guest_mem();
let mut image = File::open(path).unwrap();
let kernel_offset = GuestAddress(0x200000);
let highmem_start_address = GuestAddress(0x0);
// load bzImage with good kernel_offset and himem_start setting
let loader_result = BzImage::load(
&gm,
Some(kernel_offset),
&mut image,
Some(highmem_start_address),
);
assert_eq!(
loader_result.unwrap_err(),
LoaderError::Bzimage(Error::Underflow)
);
}
}