summaryrefslogtreecommitdiff
path: root/parabolaiso/initcpio/hooks/parabolaiso_pxe_http
blob: b3440ed74d40c702d452d7036ad3d92779055753 (plain)
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
# vim: set ft=sh:

run_hook() {
    if [[ -n "${ip}" && -n "${parabolaiso_http_srv}" ]]; then

        # booting with http is always copy-to-ram, so set here to make sure
        # addresses are flushed and interface is set down
        copytoram="y"

        parabolaiso_http_srv=$(eval echo ${parabolaiso_http_srv})
        [[ -z "${parabolaiso_http_spc}" ]] && parabolaiso_http_spc="75%"

        mount_handler="parabolaiso_pxe_http_mount_handler"
    fi
}

# Fetch a file with CURL
#
# $1 URL
# $2 Destination directory inside httpspace/${parabolaisobasedir}
_curl_get() {
    local _url="${1}"
    local _dst="${2}"

    msg ":: Downloading '${_url}'"
    if ! curl -L -f -o "/run/parabolaiso/httpspace/${parabolaisobasedir}${_dst}/${_url##*/}" --create-dirs "${_url}"; then
        echo "ERROR: Downloading '${_url}'"
        echo "   Falling back to interactive prompt"
        echo "   You can try to fix the problem manually, log out when you are finished"
        launch_interactive_shell
    fi
}

parabolaiso_pxe_http_mount_handler () {
    newroot="${1}"

    msg ":: Mounting /run/parabolaiso/httpspace (tmpfs) filesystem, size='${parabolaiso_http_spc}'"
    mkdir -p "/run/parabolaiso/httpspace"
    mount -t tmpfs -o size="${parabolaiso_http_spc}",mode=0755 httpspace "/run/parabolaiso/httpspace"

    _curl_get "${parabolaiso_http_srv}${parabolaisobasedir}/${arch}/airootfs.sfs" "/${arch}"

    if [[ "${checksum}" == "y" ]]; then
        _curl_get "${parabolaiso_http_srv}${parabolaisobasedir}/${arch}/airootfs.sha512" "/${arch}"
    fi
    if [[ "${verify}" == "y" ]]; then
        _curl_get "${parabolaiso_http_srv}${parabolaisobasedir}/${arch}/airootfs.sfs.sig" "/${arch}"
    fi

    mkdir -p "/run/parabolaiso/bootmnt"
    mount -o bind /run/parabolaiso/httpspace /run/parabolaiso/bootmnt

    parabolaiso_mount_handler ${newroot}
}