[arch-releng] [PATCH 2/2] [archiso] Add archiso_pxe_curl hook

Gerardo Exequiel Pozzi vmlinuz386 at yahoo.com.ar
Sun Nov 20 23:03:08 EST 2011


It add support for downloading the iso via HTTP/FTP with curl.
The ISO is downloaded on /run (tmpfs) and setup a loop dev from it
(like in archiso_loop_mnt)

It must be located after archiso_pxe_nbd in mkinitcpio.conf, in that way
NBD is the default.

bootparm:
    archiso_curl_url=http://192.168.0.7/archlinux/iso/archlinux.iso (absolute form)
        Use an absolute URL.
    archiso_curl_url=ftp://${pxeserver}/archlinux/iso/archlinux.iso (relative form)
        Use the as IP the same server where PXE reside.

Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386 at yahoo.com.ar>
---
 README                           |   10 +++++++
 archiso/Makefile                 |    4 +++
 archiso/hooks/archiso_pxe_curl   |   54 ++++++++++++++++++++++++++++++++++++++
 archiso/install/archiso_pxe_curl |   18 ++++++++++++
 configs/releng/build.sh          |    2 +-
 configs/releng/mkinitcpio.conf   |    2 +-
 6 files changed, 88 insertions(+), 2 deletions(-)
 create mode 100644 archiso/hooks/archiso_pxe_curl
 create mode 100644 archiso/install/archiso_pxe_curl

diff --git a/README b/README
index 0dd2179..70aaf9e 100644
--- a/README
+++ b/README
@@ -74,6 +74,7 @@ INDEX
                     BOOTIF=<hardware-address-of-boot-interface>
                     Default: (set via PXELINUX)
 
+
 ** hooks/archiso_pxe_nbd
 
 * archiso_nbd_name= Set NBD export name used by the server.
@@ -82,6 +83,13 @@ INDEX
                     Default: "${pxeserver}" (The <boot-server-ip from ip=)
 
 
+** hooks/archiso_pxe_curl
+
+* archiso_curl_url= Set an HTTP/FTP URL where ISO is located.
+                    In the IP part if ${pxeserver} is used, PXE IP will be used.
+                    Default: (unset)
+
+
 ** hooks/archiso_loop_mnt
 
 * img_label=        Set the filesystem label where archiso-image.iso.
@@ -127,6 +135,8 @@ if nothing is specified on command line.
  + mkinitcpio-nfs-utils    for ipconfig
 * archiso_pxe_nbd
  + nbd                     for nbd-client
+* archiso_pxe_curl
+ + curl                    for curl
 * archiso_shutdown
  + (none)
 
diff --git a/archiso/Makefile b/archiso/Makefile
index 115a15b..0dbbbf8 100644
--- a/archiso/Makefile
+++ b/archiso/Makefile
@@ -20,6 +20,8 @@ install-hooks:
 	install -D -m 644 install/archiso_pxe_common $(DESTDIR)/lib/initcpio/install/archiso_pxe_common
 	install -D -m 644 hooks/archiso_pxe_nbd $(DESTDIR)/lib/initcpio/hooks/archiso_pxe_nbd
 	install -D -m 644 install/archiso_pxe_nbd $(DESTDIR)/lib/initcpio/install/archiso_pxe_nbd
+	install -D -m 644 hooks/archiso_pxe_curl $(DESTDIR)/lib/initcpio/hooks/archiso_pxe_curl
+	install -D -m 644 install/archiso_pxe_curl $(DESTDIR)/lib/initcpio/install/archiso_pxe_curl
 	install -D -m 644 hooks/archiso_loop_mnt $(DESTDIR)/lib/initcpio/hooks/archiso_loop_mnt
 	install -D -m 644 install/archiso_loop_mnt $(DESTDIR)/lib/initcpio/install/archiso_loop_mnt
 
@@ -45,6 +47,8 @@ uninstall:
 	rm -f $(DESTDIR)/lib/initcpio/install/archiso_pxe_common
 	rm -f $(DESTDIR)/lib/initcpio/hooks/archiso_pxe_nbd
 	rm -f $(DESTDIR)/lib/initcpio/install/archiso_pxe_nbd
+	rm -f $(DESTDIR)/lib/initcpio/hooks/archiso_pxe_curl
+	rm -f $(DESTDIR)/lib/initcpio/install/archiso_pxe_curl
 	rm -f $(DESTDIR)/lib/initcpio/hooks/archiso_loop_mnt
 	rm -f $(DESTDIR)/lib/initcpio/install/archiso_loop_mnt
 	rm -rf $(DESTDIR)/usr/share/archiso/
diff --git a/archiso/hooks/archiso_pxe_curl b/archiso/hooks/archiso_pxe_curl
new file mode 100644
index 0000000..5c03034
--- /dev/null
+++ b/archiso/hooks/archiso_pxe_curl
@@ -0,0 +1,54 @@
+# vim: set ft=sh:
+
+run_hook() {
+    if [[ -n "${ip}" && -n "${archiso_curl_url}" ]]; then
+        mount_handler="archiso_pxe_curl_mount_handler"
+    fi
+}
+
+archiso_pxe_curl_mount_handler () {
+    newroot="${1}"
+
+    local _curl_iso _dev_loop _pxe_curl_size _k _v
+
+    archiso_curl_url=$(eval echo ${archiso_curl_url})
+
+    _curl_iso="/run/archiso/pxe_curl/${archiso_curl_url##*/}"
+
+    msg ":: Getting info of '${archiso_curl_url}'"
+    if ! curl -s -I "${archiso_curl_url}" -o /tmp/archiso_curl_header; then
+        echo "ERROR: Getting info of '${archiso_curl_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
+    else
+        while read _k _v; do
+            if [[ "${_k}" == "Content-Length:" ]]; then
+                _pxe_curl_size="${_v%?}" # Remove \r (CRLF)
+                break
+            fi
+        done < /tmp/archiso_curl_header
+        msg ":: Mounting /run/archiso/pxe_curl (tmpfs) filesystem, size='${_pxe_curl_size}'"
+        mkdir -p /run/archiso/pxe_curl
+        mount -t tmpfs -o size="${_pxe_curl_size}",mode=0755 pxe_curl /run/archiso/pxe_curl
+    fi
+
+    msg ":: Downloading '${archiso_curl_url}'"
+    if ! curl "${archiso_curl_url}" -o "${_curl_iso}"; then
+        echo "ERROR: Downloading '${archiso_curl_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
+
+    _dev_loop=$(losetup -f)
+    if ! losetup "${_dev_loop}" "${_curl_iso}"; then
+        echo "ERROR: Setting loopback device '${_dev_loop}'"
+        echo "   for file '${_curl_iso}'"
+        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
+
+    archiso_mount_handler ${newroot}
+}
diff --git a/archiso/install/archiso_pxe_curl b/archiso/install/archiso_pxe_curl
new file mode 100644
index 0000000..62fc4b8
--- /dev/null
+++ b/archiso/install/archiso_pxe_curl
@@ -0,0 +1,18 @@
+# vim: set ft=sh:
+
+build ()
+{
+    MODULES=""
+    BINARIES=""
+    FILES=""
+    SCRIPT="archiso_pxe_curl"
+
+    add_binary "/usr/bin/curl" "/usr/bin/curl"
+}
+
+help ()
+{
+cat<<HELPEOF
+  This hook loads the necessary modules for boot via PXE and curl.
+HELPEOF
+}
diff --git a/configs/releng/build.sh b/configs/releng/build.sh
index f6e0070..101a56f 100755
--- a/configs/releng/build.sh
+++ b/configs/releng/build.sh
@@ -43,7 +43,7 @@ make_customize_root_image() {
 make_setup_mkinitcpio() {
    if [[ ! -e ${work_dir}/build.${FUNCNAME} ]]; then
         local _hook
-        for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_loop_mnt; do
+        for _hook in archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_curl archiso_loop_mnt; do
             cp /lib/initcpio/hooks/${_hook} ${work_dir}/root-image/lib/initcpio/hooks
             cp /lib/initcpio/install/${_hook} ${work_dir}/root-image/lib/initcpio/install
         done
diff --git a/configs/releng/mkinitcpio.conf b/configs/releng/mkinitcpio.conf
index eb0a68a..6387982 100644
--- a/configs/releng/mkinitcpio.conf
+++ b/configs/releng/mkinitcpio.conf
@@ -1,2 +1,2 @@
-HOOKS="base udev memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd pata scsi sata virtio usb fw pcmcia filesystems usbinput"
+HOOKS="base udev memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_curl pata scsi sata virtio usb fw pcmcia filesystems usbinput"
 COMPRESSION="xz"
-- 
1.7.7.3



More information about the arch-releng mailing list