diff --git a/build/grub/grub.cfg.template b/build/grub/grub.cfg.template index dddc60a6..37123dde 100644 --- a/build/grub/grub.cfg.template +++ b/build/grub/grub.cfg.template @@ -7,6 +7,6 @@ set timeout=1 menuentry 'jinux' { multiboot2 /boot/jinux #KERNEL_COMMAND_LINE# - module2 --nounzip /boot/ramdisk.cpio.gz + module2 --nounzip /boot/initramfs.cpio.gz boot } diff --git a/build/src/main.rs b/build/src/main.rs index 8b0eff7f..237040f6 100644 --- a/build/src/main.rs +++ b/build/src/main.rs @@ -156,8 +156,8 @@ fn create_bootdev_image(path: PathBuf, kcmdline: &str) -> String { kcmdline, ); fs::copy( - "regression/build/ramdisk.cpio.gz", - "target/iso_root/boot/ramdisk.cpio.gz", + "regression/build/initramfs.cpio.gz", + "target/iso_root/boot/initramfs.cpio.gz", ) .unwrap(); diff --git a/regression/Makefile b/regression/Makefile index 624950b7..a9a3f0e8 100644 --- a/regression/Makefile +++ b/regression/Makefile @@ -2,7 +2,7 @@ MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST))) CUR_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) BUILD_DIR := $(CUR_DIR)/build INITRAMFS := $(BUILD_DIR)/initramfs -RAMDISK := $(BUILD_DIR)/ramdisk.cpio.gz +INITRAMFS_IMAGE := $(BUILD_DIR)/initramfs.cpio.gz SHELL := /bin/bash INITRAMFS_EMPTY_DIRS := \ $(INITRAMFS)/etc \ @@ -59,14 +59,14 @@ $(INITRAMFS)/opt/syscall_test: # If the BUILD_SYSCALL_TEST variable is set, we should depend on the # sub make output to do incremental building. ifeq ($(BUILD_SYSCALL_TEST), 1) -$(RAMDISK): $(INITRAMFS_ALL_DIRS) $(INITRAMFS)/opt/syscall_test +$(INITRAMFS_IMAGE): $(INITRAMFS_ALL_DIRS) $(INITRAMFS)/opt/syscall_test else -$(RAMDISK): $(INITRAMFS_ALL_DIRS) +$(INITRAMFS_IMAGE): $(INITRAMFS_ALL_DIRS) endif - @echo "Generating the ramdisk image..." + @echo "Generating the initramfs image..." @(cd $(INITRAMFS); find . | cpio -o -H newc | gzip) > $@ -build: $(RAMDISK) +build: $(INITRAMFS_IMAGE) clean: @rm -rf $(BUILD_DIR) diff --git a/services/libs/jinux-std/src/fs/fs_resolver.rs b/services/libs/jinux-std/src/fs/fs_resolver.rs index b8d877ae..94f9ee00 100644 --- a/services/libs/jinux-std/src/fs/fs_resolver.rs +++ b/services/libs/jinux-std/src/fs/fs_resolver.rs @@ -3,16 +3,11 @@ use alloc::str; use super::file_table::FileDescripter; use super::inode_handle::InodeHandle; -use super::ramfs::RamFS; +use super::rootfs::root_mount; use super::utils::{ - AccessMode, CreationFlags, Dentry, InodeMode, InodeType, MountNode, StatusFlags, PATH_MAX, - SYMLINKS_MAX, + AccessMode, CreationFlags, Dentry, InodeMode, InodeType, StatusFlags, PATH_MAX, SYMLINKS_MAX, }; -lazy_static! { - static ref ROOT_MOUNT: Arc = MountNode::new_root(RamFS::new(true)).unwrap(); -} - #[derive(Debug)] pub struct FsResolver { root: Arc, @@ -31,8 +26,8 @@ impl Clone for FsResolver { impl FsResolver { pub fn new() -> Self { Self { - root: ROOT_MOUNT.root_dentry().clone(), - cwd: ROOT_MOUNT.root_dentry().clone(), + root: root_mount().root_dentry().clone(), + cwd: root_mount().root_dentry().clone(), } } diff --git a/services/libs/jinux-std/src/fs/mod.rs b/services/libs/jinux-std/src/fs/mod.rs index e8605659..137a4f05 100644 --- a/services/libs/jinux-std/src/fs/mod.rs +++ b/services/libs/jinux-std/src/fs/mod.rs @@ -3,9 +3,9 @@ pub mod epoll; pub mod file_handle; pub mod file_table; pub mod fs_resolver; -pub mod initramfs; pub mod inode_handle; pub mod pipe; pub mod procfs; pub mod ramfs; +pub mod rootfs; pub mod utils; diff --git a/services/libs/jinux-std/src/fs/initramfs.rs b/services/libs/jinux-std/src/fs/rootfs.rs similarity index 78% rename from services/libs/jinux-std/src/fs/initramfs.rs rename to services/libs/jinux-std/src/fs/rootfs.rs index c52c9722..327da0d9 100644 --- a/services/libs/jinux-std/src/fs/initramfs.rs +++ b/services/libs/jinux-std/src/fs/rootfs.rs @@ -3,18 +3,21 @@ use crate::prelude::*; use super::fs_resolver::{FsPath, FsResolver}; use super::procfs::ProcFS; use super::ramfs::RamFS; -use super::utils::{InodeMode, InodeType}; +use super::utils::{InodeMode, InodeType, MountNode}; use cpio_decoder::{CpioDecoder, FileType}; use lending_iterator::LendingIterator; use libflate::gzip::Decoder as GZipDecoder; +use spin::Once; -/// Unpack and prepare the fs from the ramdisk CPIO buffer. -pub fn init(gzip_ramdisk_buf: &[u8]) -> Result<()> { - println!("[kernel] unzipping ramdisk.cpio.gz ..."); +/// Unpack and prepare the rootfs from the initramfs CPIO buffer. +pub fn init(initramfs_buf: &[u8]) -> Result<()> { + init_root_mount()?; + + println!("[kernel] unpacking the initramfs.cpio.gz to rootfs ..."); let fs = FsResolver::new(); let mut decoder = CpioDecoder::new( - GZipDecoder::new(gzip_ramdisk_buf) + GZipDecoder::new(initramfs_buf) .map_err(|_| Error::with_message(Errno::EINVAL, "invalid gzip buffer"))?, ); @@ -74,7 +77,23 @@ pub fn init(gzip_ramdisk_buf: &[u8]) -> Result<()> { // Mount DevFS let dev_dentry = fs.lookup(&FsPath::try_from("/dev")?)?; dev_dentry.mount(RamFS::new(false))?; - println!("[kernel] initramfs is ready"); + println!("[kernel] rootfs is ready"); Ok(()) } + +static ROOT_MOUNT: Once> = Once::new(); + +fn init_root_mount() -> Result<()> { + ROOT_MOUNT.try_call_once(|| -> Result> { + let rootfs = RamFS::new(true); + let root_mount = MountNode::new_root(rootfs)?; + Ok(root_mount) + })?; + + Ok(()) +} + +pub fn root_mount() -> &'static Arc { + ROOT_MOUNT.get().unwrap() +} diff --git a/services/libs/jinux-std/src/lib.rs b/services/libs/jinux-std/src/lib.rs index c95fd826..4b91b31f 100644 --- a/services/libs/jinux-std/src/lib.rs +++ b/services/libs/jinux-std/src/lib.rs @@ -52,7 +52,7 @@ pub fn init() { driver::init(); net::init(); process::fifo_scheduler::init(); - fs::initramfs::init(boot::initramfs()).unwrap(); + fs::rootfs::init(boot::initramfs()).unwrap(); device::init().unwrap(); }