在 jail 内构建 NanoBSD

在 jail 内构建 NanoBSD

我正在尝试设置一个 jail 来构建 NanoBSD 映像。它实际上是 NanoBSD 安装之上的一个 jail。

我遇到的问题是,我无法安装md设备以执行“构建映像”部分。是不是根本无法md在监狱内安装设备,或者是否存在一些其他我需要转动哪个旋钮?

在主机上

/etc/rc.conf.local

jail_enable="YES"
jail_mount_enable="YES"
jail_list="build"
jail_set_hostname_allow="NO"
jail_build_hostname="build.vm"
jail_build_ip="192.168.0.100"
jail_build_rootdir="/mnt/zpool0/jails/build/home"
jail_build_devfs_enable="YES"
jail_build_devfs_ruleset="devfsrules_jail_build"

/etc/devfs.rules

[devfsrules_jail_build=5]
# nothing

监狱内部

[root@build /usr/obj/nanobsd.PROLIANT_MICROSERVER]# sysctl security.jail
security.jail.param.cpuset.id: 0
security.jail.param.host.hostid: 0
security.jail.param.host.hostuuid: 64
security.jail.param.host.domainname: 256
security.jail.param.host.hostname: 256
security.jail.param.children.max: 0
security.jail.param.children.cur: 0
security.jail.param.enforce_statfs: 0
security.jail.param.securelevel: 0
security.jail.param.path: 1024
security.jail.param.name: 256
security.jail.param.parent: 0
security.jail.param.jid: 0
security.jail.enforce_statfs: 1
security.jail.mount_allowed: 1
security.jail.chflags_allowed: 1
security.jail.allow_raw_sockets: 0
security.jail.sysvipc_allowed: 0
security.jail.socket_unixiproute_only: 1
security.jail.set_hostname_allowed: 0
security.jail.jail_max_af_ips: 255
security.jail.jailed: 1

[root@build /usr/obj/nanobsd.PROLIANT_MICROSERVER]# mdconfig -l
md2 md0 md1 

md0md1是主机的 ramdisk。

bsdlabel看起来很合理

[root@build /usr/obj/nanobsd.PROLIANT_MICROSERVER]# bsdlabel /dev/md2s1
# /dev/md2s1:
8 partitions:
#        size   offset    fstype   [fsize bsize bps/cpg]
  a:  1012016       16    4.2BSD        0     0     0 
  c:  1012032        0    unused        0     0         # "raw" part, don't edit

newfs运行正常

[root@build /usr/obj/nanobsd.PROLIANT_MICROSERVER]# newfs -U /dev/md2s1a
/dev/md2s1a: 494.1MB (1012016 sectors) block size 16384, fragment size 2048
    using 4 cylinder groups of 123.55MB, 7907 blks, 15872 inodes.
    with soft updates
super-block backups (for fsck -b #) at:
 160, 253184, 506208, 759232

mount失败

[root@build /usr/obj/nanobsd.PROLIANT_MICROSERVER]# mount /dev/md2s1a _.mnt/
mount: /dev/md2s1a : Operation not permitted

更新:

我的一位同事指出

有些文件系统类型无论如何都无法安全地安装在 jail 内,例如 UFS、MSDOFS、EXTFS、XFS、REISERFS、NTFS 等,因为安装它的用户可以访问原始存储,并且可以以一种会导致整个系统崩溃的方式破坏它。

http://www.mail-archive.com/[电子邮件保护]/msg160389.html

因此,标准 nanobsd.sh 似乎在使用md设备构建映像时无法在 jail 内运行。我将尝试的一个潜在解决方案是chroot从主机进入构建 jail,而不是jexecshell。

答案1

正如你所说,chroot 是可行的方法。

您不需要实现安全性,只需构建和更改根目录,以便您的安装脚本正常运行。这就是 chroot 的用途。

在某些系统上没有 chroot 二进制文件,但编写一个简单的脚本来实现您想要的一切(嘿,您可以稍后重复使用它!)是相当容易的。

相关内容