nbd: add systemd generator and use nbd export names instead of port numbers
Add a systemd generator for root=nbd:.. so that systemd has a correct sysroot.mount unit. Use export names instead of port numbers, because port number based exports are deprecated and were removed.master
parent
df95b1003c
commit
b070c1d360
|
|
@ -755,13 +755,21 @@ NOTE: letters in the MAC-address must be lowercase!
|
||||||
|
|
||||||
NBD
|
NBD
|
||||||
~~~
|
~~~
|
||||||
**root=**??? **netroot=**nbd:__<server>__:__<port>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
|
**root=**??? **netroot=**nbd:__<server>__:__<port/exportname>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
|
||||||
mount nbd share from <server>
|
mount nbd share from <server>.
|
||||||
|
+
|
||||||
|
NOTE:
|
||||||
|
If "exportname" instead of "port" is given the standard port is used.
|
||||||
|
Newer versions of nbd are only supported with "exportname".
|
||||||
|
|
||||||
**root=dhcp** with **dhcp** **root-path=**nbd:__<server>__:__<port>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
|
**root=dhcp** with **dhcp** **root-path=**nbd:__<server>__:__<port/exportname>__[:__<fstype>__[:__<mountopts>__[:__<nbdopts>__]]]::
|
||||||
root=dhcp alone directs initrd to look at the DHCP root-path where NBD
|
root=dhcp alone directs initrd to look at the DHCP root-path where NBD
|
||||||
options can be specified. This syntax is only usable in cases where you are
|
options can be specified. This syntax is only usable in cases where you are
|
||||||
directly mounting the volume as the rootfs.
|
directly mounting the volume as the rootfs.
|
||||||
|
+
|
||||||
|
NOTE:
|
||||||
|
If "exportname" instead of "port" is given the standard port is used.
|
||||||
|
Newer versions of nbd are only supported with "exportname".
|
||||||
|
|
||||||
DASD
|
DASD
|
||||||
~~~~
|
~~~~
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,9 @@ install() {
|
||||||
inst nbd-client
|
inst nbd-client
|
||||||
inst_hook cmdline 90 "$moddir/parse-nbdroot.sh"
|
inst_hook cmdline 90 "$moddir/parse-nbdroot.sh"
|
||||||
inst_script "$moddir/nbdroot.sh" "/sbin/nbdroot"
|
inst_script "$moddir/nbdroot.sh" "/sbin/nbdroot"
|
||||||
|
if dracut_module_included "systemd-initrd"; then
|
||||||
|
inst_script "$moddir/nbd-generator.sh" $systemdutildir/system-generators/dracut-nbd-generator
|
||||||
|
fi
|
||||||
dracut_need_initqueue
|
dracut_need_initqueue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,11 +28,6 @@ nbdfstype=${nroot%%:*}; nroot=${nroot#*:}
|
||||||
nbdflags=${nroot%%:*}
|
nbdflags=${nroot%%:*}
|
||||||
nbdopts=${nroot#*:}
|
nbdopts=${nroot#*:}
|
||||||
|
|
||||||
# If nbdport not an integer, then assume name based import
|
|
||||||
if [ ! -z $(echo "$nbdport" | sed 's/[0-9]//g') ]; then
|
|
||||||
nbdport="-N $nbdport"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$nbdopts" = "$nbdflags" ]; then
|
if [ "$nbdopts" = "$nbdflags" ]; then
|
||||||
unset nbdopts
|
unset nbdopts
|
||||||
fi
|
fi
|
||||||
|
|
@ -113,7 +108,11 @@ if strstr "$(nbd-client --help 2>&1)" "systemd-mark"; then
|
||||||
preopts="--systemd-mark $preopts"
|
preopts="--systemd-mark $preopts"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
nbd-client $preopts "$nbdserver" $nbdport /dev/nbd0 $opts || exit 1
|
if [ "$nbdport" -gt 0 ] 2>/dev/null; then
|
||||||
|
nbd-client "$nbdserver" $nbdport /dev/nbd0 $preopts $opts || exit 1
|
||||||
|
else
|
||||||
|
nbd-client -name "$nbdport" "$nbdserver" /dev/nbd0 $preopts $opts || exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# NBD doesn't emit uevents when it gets connected, so kick it
|
# NBD doesn't emit uevents when it gets connected, so kick it
|
||||||
echo change > /sys/block/nbd0/uevent
|
echo change > /sys/block/nbd0/uevent
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# Preferred format:
|
# Preferred format:
|
||||||
# root=nbd:srv:port[:fstype[:rootflags[:nbdopts]]]
|
# root=nbd:srv:port/exportname[:fstype[:rootflags[:nbdopts]]]
|
||||||
# [root=*] netroot=nbd:srv:port[:fstype[:rootflags[:nbdopts]]]
|
# [root=*] netroot=nbd:srv:port/exportname[:fstype[:rootflags[:nbdopts]]]
|
||||||
#
|
#
|
||||||
# nbdopts is a comma separated list of options to give to nbd-client
|
# nbdopts is a comma separated list of options to give to nbd-client
|
||||||
#
|
#
|
||||||
|
|
@ -45,6 +45,12 @@ fi
|
||||||
# If it's not nbd we don't continue
|
# If it's not nbd we don't continue
|
||||||
[ "${netroot%%:*}" = "nbd" ] || return
|
[ "${netroot%%:*}" = "nbd" ] || return
|
||||||
|
|
||||||
|
|
||||||
|
if [ -n "${DRACUT_SYSTEMD}" ] && [ "$root" = "dhcp" ]; then
|
||||||
|
echo "root=$netroot" > /etc/cmdline.d/root.conf
|
||||||
|
systemctl --no-block daemon-reload
|
||||||
|
fi
|
||||||
|
|
||||||
# Check required arguments
|
# Check required arguments
|
||||||
netroot_to_var $netroot
|
netroot_to_var $netroot
|
||||||
[ -z "$server" ] && die "Argument server for nbdroot is missing"
|
[ -z "$server" ] && die "Argument server for nbdroot is missing"
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ subnet 192.168.50.0 netmask 255.255.255.0 {
|
||||||
|
|
||||||
group {
|
group {
|
||||||
host nbd-2 {
|
host nbd-2 {
|
||||||
option root-path "nbd:192.168.50.1:2000";
|
option root-path "nbd:192.168.50.1:raw";
|
||||||
|
|
||||||
hardware ethernet 52:54:00:12:34:01;
|
hardware ethernet 52:54:00:12:34:01;
|
||||||
fixed-address 192.168.50.101;
|
fixed-address 192.168.50.101;
|
||||||
|
|
@ -29,7 +29,7 @@ subnet 192.168.50.0 netmask 255.255.255.0 {
|
||||||
|
|
||||||
group {
|
group {
|
||||||
host nbd-3 {
|
host nbd-3 {
|
||||||
option root-path "nbd:192.168.50.1:2000:ext2";
|
option root-path "nbd:192.168.50.1:raw:ext2";
|
||||||
|
|
||||||
hardware ethernet 52:54:00:12:34:02;
|
hardware ethernet 52:54:00:12:34:02;
|
||||||
fixed-address 192.168.50.101;
|
fixed-address 192.168.50.101;
|
||||||
|
|
@ -38,7 +38,7 @@ subnet 192.168.50.0 netmask 255.255.255.0 {
|
||||||
|
|
||||||
group {
|
group {
|
||||||
host nbd-4 {
|
host nbd-4 {
|
||||||
option root-path "nbd:192.168.50.1:2000::errors=panic";
|
option root-path "nbd:192.168.50.1:raw::errors=panic";
|
||||||
|
|
||||||
hardware ethernet 52:54:00:12:34:03;
|
hardware ethernet 52:54:00:12:34:03;
|
||||||
fixed-address 192.168.50.101;
|
fixed-address 192.168.50.101;
|
||||||
|
|
@ -47,7 +47,7 @@ subnet 192.168.50.0 netmask 255.255.255.0 {
|
||||||
|
|
||||||
group {
|
group {
|
||||||
host nbd-5 {
|
host nbd-5 {
|
||||||
option root-path "nbd:192.168.50.1:2000:ext2:errors=panic";
|
option root-path "nbd:192.168.50.1:raw:ext2:errors=panic";
|
||||||
|
|
||||||
hardware ethernet 52:54:00:12:34:04;
|
hardware ethernet 52:54:00:12:34:04;
|
||||||
fixed-address 192.168.50.101;
|
fixed-address 192.168.50.101;
|
||||||
|
|
@ -57,7 +57,7 @@ subnet 192.168.50.0 netmask 255.255.255.0 {
|
||||||
group {
|
group {
|
||||||
host nbd-6 {
|
host nbd-6 {
|
||||||
# Use the encrypted image
|
# Use the encrypted image
|
||||||
option root-path "nbd:192.168.50.1:2001:ext2:errors=panic";
|
option root-path "nbd:192.168.50.1:encrypted:ext2:errors=panic";
|
||||||
|
|
||||||
hardware ethernet 52:54:00:12:34:05;
|
hardware ethernet 52:54:00:12:34:05;
|
||||||
fixed-address 192.168.50.101;
|
fixed-address 192.168.50.101;
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,7 @@ ip link set dev eth0 name ens3
|
||||||
ip addr add 192.168.50.1/24 dev ens3
|
ip addr add 192.168.50.1/24 dev ens3
|
||||||
ip link set ens3 up
|
ip link set ens3 up
|
||||||
modprobe af_packet
|
modprobe af_packet
|
||||||
nbd-server 2000 /dev/sdb -C /dev/null
|
nbd-server
|
||||||
nbd-server 2001 /dev/sdc -C /dev/null
|
|
||||||
>/var/lib/dhcpd/dhcpd.leases
|
>/var/lib/dhcpd/dhcpd.leases
|
||||||
chmod 777 /var/lib/dhcpd/dhcpd.leases
|
chmod 777 /var/lib/dhcpd/dhcpd.leases
|
||||||
dhcpd -d -cf /etc/dhcpd.conf -lf /var/lib/dhcpd/dhcpd.leases &
|
dhcpd -d -cf /etc/dhcpd.conf -lf /var/lib/dhcpd/dhcpd.leases &
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@ TEST_DESCRIPTION="root filesystem on NBD"
|
||||||
KVERSION=${KVERSION-$(uname -r)}
|
KVERSION=${KVERSION-$(uname -r)}
|
||||||
|
|
||||||
# Uncomment this to debug failures
|
# Uncomment this to debug failures
|
||||||
#DEBUGFAIL="rd.shell rd.break"
|
#DEBUGFAIL="rd.shell rd.break rd.debug"
|
||||||
#SERIAL="udp:127.0.0.1:9999"
|
SERIAL="tcp:127.0.0.1:9999"
|
||||||
SERIAL="null"
|
SERIAL="null"
|
||||||
|
|
||||||
run_server() {
|
run_server() {
|
||||||
|
|
@ -104,36 +104,36 @@ test_run() {
|
||||||
client_run() {
|
client_run() {
|
||||||
# The default is ext3,errors=continue so use that to determine
|
# The default is ext3,errors=continue so use that to determine
|
||||||
# if our options were parsed and used
|
# if our options were parsed and used
|
||||||
|
client_test "NBD root=nbd:IP:port" 52:54:00:12:34:00 \
|
||||||
|
"root=nbd:192.168.50.1:raw rd.luks=0" || return 1
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port::fsopts" 52:54:00:12:34:00 \
|
client_test "NBD root=nbd:IP:port::fsopts" 52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000::errors=panic rd.luks=0" \
|
"root=nbd:192.168.50.1:raw::errors=panic rd.luks=0" \
|
||||||
ext3 errors=panic || return 1
|
ext3 errors=panic || return 1
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port" 52:54:00:12:34:00 \
|
|
||||||
"root=nbd:192.168.50.1:2000 rd.luks=0" || return 1
|
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port:fstype" 52:54:00:12:34:00 \
|
client_test "NBD root=nbd:IP:port:fstype" 52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000:ext2 rd.luks=0" ext2 || return 1
|
"root=nbd:192.168.50.1:raw:ext2 rd.luks=0" ext2 || return 1
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port:fstype:fsopts" 52:54:00:12:34:00 \
|
client_test "NBD root=nbd:IP:port:fstype:fsopts" 52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000:ext2:errors=panic rd.luks=0" \
|
"root=nbd:192.168.50.1:raw:ext2:errors=panic rd.luks=0" \
|
||||||
ext2 errors=panic || return 1
|
ext2 errors=panic || return 1
|
||||||
|
|
||||||
client_test "NBD Bridge root=nbd:IP:port:fstype:fsopts" 52:54:00:12:34:00 \
|
client_test "NBD Bridge root=nbd:IP:port:fstype:fsopts" 52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000:ext2:errors=panic bridge rd.luks=0" \
|
"root=nbd:192.168.50.1:raw:ext2:errors=panic bridge rd.luks=0" \
|
||||||
ext2 errors=panic || return 1
|
ext2 errors=panic || return 1
|
||||||
|
|
||||||
# There doesn't seem to be a good way to validate the NBD options, so
|
# There doesn't seem to be a good way to validate the NBD options, so
|
||||||
# just check that we don't screw up the other options
|
# just check that we don't screw up the other options
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port:::NBD opts" 52:54:00:12:34:00 \
|
client_test "NBD root=nbd:IP:port:::NBD opts" 52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000:::bs=2048 rd.luks=0" || return 1
|
"root=nbd:192.168.50.1:raw:::bs=2048 rd.luks=0" || return 1
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port:fstype::NBD opts" 52:54:00:12:34:00 \
|
client_test "NBD root=nbd:IP:port:fstype::NBD opts" 52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000:ext2::bs=2048 rd.luks=0" ext2 || return 1
|
"root=nbd:192.168.50.1:raw:ext2::bs=2048 rd.luks=0" ext2 || return 1
|
||||||
|
|
||||||
client_test "NBD root=nbd:IP:port:fstype:fsopts:NBD opts" \
|
client_test "NBD root=nbd:IP:port:fstype:fsopts:NBD opts" \
|
||||||
52:54:00:12:34:00 \
|
52:54:00:12:34:00 \
|
||||||
"root=nbd:192.168.50.1:2000:ext2:errors=panic:bs=2048 rd.luks=0" \
|
"root=nbd:192.168.50.1:raw:ext2:errors=panic:bs=2048 rd.luks=0" \
|
||||||
ext2 errors=panic || return 1
|
ext2 errors=panic || return 1
|
||||||
|
|
||||||
# DHCP root-path parsing
|
# DHCP root-path parsing
|
||||||
|
|
@ -156,7 +156,7 @@ client_run() {
|
||||||
# netroot handling
|
# netroot handling
|
||||||
|
|
||||||
client_test "NBD netroot=nbd:IP:port" 52:54:00:12:34:00 \
|
client_test "NBD netroot=nbd:IP:port" 52:54:00:12:34:00 \
|
||||||
"netroot=nbd:192.168.50.1:2000 rd.luks=0" || return 1
|
"netroot=nbd:192.168.50.1:raw rd.luks=0" || return 1
|
||||||
|
|
||||||
client_test "NBD netroot=dhcp DHCP root-path nbd:srv:port:fstype:fsopts" \
|
client_test "NBD netroot=dhcp DHCP root-path nbd:srv:port:fstype:fsopts" \
|
||||||
52:54:00:12:34:04 "netroot=dhcp rd.luks=0" ext2 errors=panic || return 1
|
52:54:00:12:34:04 "netroot=dhcp rd.luks=0" ext2 errors=panic || return 1
|
||||||
|
|
@ -167,7 +167,7 @@ client_run() {
|
||||||
|
|
||||||
client_test "NBD root=LABEL=dracut netroot=nbd:IP:port" \
|
client_test "NBD root=LABEL=dracut netroot=nbd:IP:port" \
|
||||||
52:54:00:12:34:00 \
|
52:54:00:12:34:00 \
|
||||||
"root=LABEL=dracut rd.luks.uuid=$ID_FS_UUID rd.lv.vg=dracut netroot=nbd:192.168.50.1:2001" || return 1
|
"root=LABEL=dracut rd.luks.uuid=$ID_FS_UUID rd.lv.vg=dracut netroot=nbd:192.168.50.1:encrypted" || return 1
|
||||||
|
|
||||||
# XXX This should be ext2,errors=panic but that doesn't currently
|
# XXX This should be ext2,errors=panic but that doesn't currently
|
||||||
# XXX work when you have a real root= line in addition to netroot=
|
# XXX work when you have a real root= line in addition to netroot=
|
||||||
|
|
@ -308,11 +308,20 @@ make_server_root() {
|
||||||
mkdir -p "$initdir"
|
mkdir -p "$initdir"
|
||||||
(
|
(
|
||||||
cd "$initdir";
|
cd "$initdir";
|
||||||
mkdir -p dev sys proc etc var/run var/lib/dhcpd tmp
|
mkdir -p dev sys proc etc var/run var/lib/dhcpd tmp etc/nbd-server
|
||||||
)
|
)
|
||||||
|
cat > "$initdir/etc/nbd-server/config" <<EOF
|
||||||
|
[generic]
|
||||||
|
[raw]
|
||||||
|
exportname = /dev/sdb
|
||||||
|
port = 2000
|
||||||
|
[encrypted]
|
||||||
|
exportname = /dev/sdc
|
||||||
|
port = 2001
|
||||||
|
EOF
|
||||||
inst_multiple sh ls shutdown poweroff stty cat ps ln ip \
|
inst_multiple sh ls shutdown poweroff stty cat ps ln ip \
|
||||||
dmesg mkdir cp ping grep \
|
dmesg mkdir cp ping grep \
|
||||||
sleep nbd-server chmod
|
sleep nbd-server chmod modprobe vi
|
||||||
for _terminfodir in /lib/terminfo /etc/terminfo /usr/share/terminfo; do
|
for _terminfodir in /lib/terminfo /etc/terminfo /usr/share/terminfo; do
|
||||||
[ -f ${_terminfodir}/l/linux ] && break
|
[ -f ${_terminfodir}/l/linux ] && break
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue