开发者

Is there a way to wait until root filesystem is mounted?

开发者 https://www.devze.com 2023-02-11 12:42 出处:网络
I have a statically linked code(not a module) in kernel that should launch kernel thread after root file system is开发者_如何学运维 mounted. The problem is I don\'t know how to do this without modifyi

I have a statically linked code(not a module) in kernel that should launch kernel thread after root file system is开发者_如何学运维 mounted. The problem is I don't know how to do this without modifying prepare_namespace() kernel function. I thought it's possible to do via initcalls but they're executed before kernel takes care about rootfs. Does anyone know the best way to do this?

UPDATE [1]: @BenVoigit suggested the following solution in comments: Seems like you should open /proc/mounts and poll_wait on it. See the source for `mounts_poll'

UPDATE [2]: I looked at RSBAC patches, RSBAC modifies prepare_namespace() function to make some actions after filesystem is mounted. It seems to be the easiest way.


Well, current Linux images are too big to fit the PC boot sector. Modern bootloaders like grub will mount an small filesystem in RAM before the real one.

To understand what is happening under the hood, you can open the disk image located under /boot. For example, in Ubuntu:

mkdir test
cd test
zcat /boot/initrd.img-2.6.35-24-generic > image.cpio
cpio -i < image.cpio
vim init

In the end, it's just a bunch of shell scripts - the simplicity is almost poetic.

0

精彩评论

暂无评论...
验证码 换一张
取 消