summaryrefslogtreecommitdiffstats
path: root/builder/dnbd3-rootfs/module-setup.sh
blob: e9040ce8967db15f67ef8eb559825508db4507a0 (plain) (blame)
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
#!/bin/bash

source "$(dirname "${BASH_SOURCE[0]}")/scripts/rebash/core.sh"
core.import exceptions
core.import logging
core.import utils
core.import "$(core_abs_path "$(dirname "${BASH_SOURCE[0]}")/scripts/build.sh")"

# set log level via dracut logging options
_parse_dracut_args() {
    local verbose=false
    local debug=false
    while true; do
        case "$1" in
            --stdlog)
                shift
                local level="$1"
                shift
                [[ "$level" -ge 4 ]] && debug=true
                ;;
            --verbose)
                shift
                verbose=true
                ;;
            '')
                break
                ;;
            *)
                shift
                ;;
        esac
        local level
        $verbose && level=info
        $debug && level=debug
        logging.set_level "$level"
        logging.set_commands_level debug
    done
    $debug
    return $?
}
_debug=0
_parse_dracut_args ${dracut_args[*]} || _debug=$?

clean() {
    # NOTE: This method is currently triggered manually and not supported by
    # dracut itself.
    build_clean_xmount "$moddir/binaries/xmount/"
    build_clean_qemu_xmount "$moddir/binaries/qemu-xmount/"
    build_clean_dnbd3 "$moddir/binaries/dnbd3/"
    build_clean_systemd_preserve_process_marker \
        "$moddir/binaries/systemd-preserve-process-marker/"
    return 0
}

check() {

    exceptions.activate

    # NOTE: xmount must be compiled before qemu_xmount
    local xmount_is_built=true
    if [[ ! -f "$moddir/binaries/xmount/trunk/build/src/xmount" ]]; then
        if ! build_compile_xmount "$moddir/binaries/xmount/"; then
            xmount_is_built=false
        fi
    fi
    if $xmount_is_built && [[ \
        ! -f "$moddir/binaries/qemu-xmount/libxmount_input_qemu.so" \
    ]]; then
        build_compile_qemu_xmount "$moddir/binaries/qemu-xmount/" || \
        xmount_is_built=false
    fi
    $xmount_is_built || logging.warn \
        "Compiling \"xmount\" failed -> No support for container files (only raw images)."

    if [[ ! -f "$moddir/binaries/dnbd3/build/dnbd3.ko" ]] || \
       [[ ! -f "$moddir/binaries/dnbd3/build/dnbd3-client" ]]
    then
        build_compile_dnbd3 "$moddir/binaries/dnbd3/"
        [[ $? != 0 ]] && return 1
    fi

    if [[ ! -f "$moddir/binaries/systemd-preserve-process-marker/systemd-preserve-process-marker" ]]; then
        build_compile_systemd_preserve_process_marker \
            "$moddir/binaries/systemd-preserve-process-marker/"
            [[ $? != 0 ]] && return 1
    fi

    # NOTE: This are workarounds for:
    # - distributions where "systemd-udevd" doesn't lives in "/usr/lib" but in
    #   "/lib".
    local alternate_systemd_udevd_location='/lib/systemd/systemd-udevd'
    if [[ ! -f "${systemdutildir}/systemd-udevd" ]] && \
    [[ -f "$alternate_systemd_udevd_location" ]]; then
        mkdir --parents "${initdir}${systemdutildir}"
        ln --symbolic --force "$alternate_systemd_udevd_location" \
            "${initdir}${systemdutildir}/systemd-udevd"
        #cp "$alternate_systemd_udevd_location" \
        #    "${initdir}${systemdutildir}/systemd-udevd" 1>&2
    fi
    # - "/usr/bin/sh" isn't available but "/bin/sh".
    if [[ ! -f /usr/bin/sh ]] && [[ -f /bin/sh ]]; then
        ln --symbolic --force /bin/sh /usr/bin/sh
    fi

    exceptions.deactivate

    # Tell dracut that this module should only be included if it is required
    # explicitly.
    return 255
}

depends() {
    # NOTE: btrfs module should be used if it would work.
    echo base network bash kernel-modules shutdown
}

installkernel() {
    inst "$moddir/binaries/dnbd3/build/dnbd3.ko" \
        /usr/lib/modules/current/extra/dnbd3.ko
    instmods dm_snapshot btrfs crc32c
}

install() {

    # region binaries

    inst "$moddir/binaries/dnbd3/build/dnbd3-client" /usr/bin/dnbd3-client
    inst "$moddir/binaries/systemd-preserve-process-marker/systemd-preserve-process-marker" \
        /usr/bin/systemd-preserve-process-marker
    inst "$moddir/scripts/device-add-write-layer.sh" \
        /usr/bin/device-add-write-layer
    inst "$moddir/scripts/container-unpack-xmount.sh" \
        /usr/bin/container-unpack-xmount
    # xmount
    local xmount_installation="$moddir/binaries/xmount/trunk/build/release_build"
    inst "${xmount_installation}/usr/bin/xmount" /usr/bin/xmount
    for file in ${xmount_installation}/usr/lib/xmount/*; do
        inst "$file" /usr/lib/xmount/"$(basename "$file")"
    done
    inst "$moddir/binaries/qemu-xmount/libxmount_input_qemu.so" \
        /usr/lib/xmount/libxmount_input_qemu.so

    # endregion

    # region hooks

    inst_hook cmdline 00 "$moddir/hooks/enable-sysrq.sh"
    inst_hook cmdline 10 "$moddir/hooks/prepare-kernel-command-line-parameter.sh"
    inst_hook cmdline 90 "$moddir/hooks/set-dracut-environment-variables.sh"

    # load dnbd3.ko
    inst_hook pre-udev 00 "$moddir/hooks/load-custom-kernel-modules.sh"
    # get the openslx config from the servers configured in the kernel command
    # line (${SLX_SERVER}/${SLX_SERVER_BASE}/config)
    inst_hook pre-mount 00 "$moddir/hooks/fetch-config.sh"

    # make the final blockdevice for the root system (dnbd3 -> xmount ->
    # device-mapper)
    if dracut_module_included "systemd-initrd"; then
        inst "$moddir/hooks/prepare-root-partition.sh" \
            /usr/bin/dnbd3root
        inst_simple "${moddir}/services/dnbd3root.service" \
            "${systemdsystemunitdir}/dnbd3root.service"
        mkdir --parents \
            "${initdir}/${systemdsystemunitdir}/dracut-mount.service.requires"
        ln_r "${systemdsystemunitdir}/dnbd3root.service" \
            "${systemdsystemunitdir}/dracut-mount.service.requires/dnbd3root.service"
        mkdir --parents \
            "${initdir}/${systemdsystemunitdir}/initrd.target.requires"
        ln_r "${systemdsystemunitdir}/dnbd3root.service" \
            "${systemdsystemunitdir}/initrd.target.requires/dnbd3root.service"

        # copy systemd services to new root (so they don't get killed after
        # switch_root)
        inst_hook pre-pivot 00 "$moddir/hooks/copy-dnbd3-service-into-newroot.sh"
        inst_hook pre-pivot 00 "$moddir/hooks/copy-dracut-systemd-files-into-newroot.sh"
    else
        inst_hook pre-mount 10 "$moddir/hooks/prepare-root-partition.sh"
    fi

    inst_hook mount 10 "$moddir/hooks/mount-root-device.sh"

    inst_hook pre-pivot 00 "$moddir/hooks/copy-openslx-configuration-into-newroot.sh"
    #inst_hook pre-pivot 00 "$moddir/hooks/mount-tmp.sh"

    # endregion

    # region scripts

    local file_path
    for file_path in "$moddir/scripts/rebash/"*; do
        inst "$file_path" "/usr/lib/rebash/$(basename "$file_path")"
    done

    # TODO currently not used
    # This script is triggered by udev upon finding the right partitions for
    # persistent sessions.
    #inst "$moddir/scripts/prepare-persistent-disks" \
        #/sbin/prepare-persistent-disks

    # endregion

    # region configuration files

    # TODO currently not used
    # Udev rules detecting 44, 45, 46 partitions and running
    # "prepare-persistent-disks" to prepare persistent partitions.
    #inst "$moddir/udev/70-openslx-disk.rules" /etc/udev/rules.d/70-openslx-disk.rules

    # Use terminal readline settings from the template system.
    inst /etc/inputrc /etc/inputrc

    # endregion

    inst_multiple \
        awk \
        basename \
        bash \
        blockdev \
        cat \
        cut \
        dd \
        diff \
        dirname \
        dmsetup \
        find \
        genfstab \
        grep \
        insmod \
        losetup \
        lsblk \
        mktemp \
        mount \
        mountpoint \
        qemu-img \
        sed \
        sleep \
        sort \
        touch \
        tr \
        wget
}

# region vim modline

# vim: set tabstop=4 shiftwidth=4 expandtab:
# vim: foldmethod=marker foldmarker=region,endregion:

# endregion