Bump version to 0.9.3next
[snf-image] / snf-image-host / snf-image-create-fixed-helper.in
1 #!/bin/bash
2
3 # Copyright (C) 2011 GRNET S.A. 
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 # 02110-1301, USA.
19
20 set -e
21 set -o pipefail
22 set -o errtrace
23
24 . @osdir@/common.sh
25
26 usage() {
27     local rc="$1"
28
29     cat <<EOF
30
31 Usage: $0 [options]
32
33 This script runs multistrap and creates a small Debian image populated with
34 the snf-image-helper package. This image is needed for ganeti's \`snf-image'
35 guest OS type to work.
36
37 OPTIONS:
38     -d DIRECTORY
39         Use this directory to host the created files, instead of the default
40         [default: $HELPER_DIR]
41
42     -h  Print this message
43
44     -p PACKAGE
45         Install this deb package in the helper image, instead of the default
46
47     -y  Assume Yes to all queries and do not prompt
48
49 EOF
50
51     exit "$rc"
52 }
53
54 while getopts "d:hp:y" opt; do
55     case $opt in
56         d) HELPER_DIR="$OPTARG"
57             ;;
58         h) usage 0
59             ;;
60         p) HELPER_PKG="$OPTARG"
61             ;;
62         y) NO_PROMPT="yes"
63             ;;
64         ?) log_error "Use \`-h' for help"; exit 1
65             ;;
66     esac
67 done
68
69 echo
70 echo "This is the update helper image script for snf-image."
71 echo "If you don't know what to do, use \`-h'."
72 echo
73
74 if [ ! -d "$HELPER_DIR" -o ! -w "$HELPER_DIR" ]; then
75     log_error "Helper directory \`$HELPER_DIR' does not exist or the script" \
76     "has no write permission on it."
77     exit 1
78 fi
79
80 if [ ! -e "$MULTISTRAP_CONFIG" ]; then
81     log_error "Multistrap configuration file: \`$MULTISTRAP_CONFIG' does not" \
82     "exist or is not readable by the script."
83     exit 1
84 fi
85
86 cat >&1 <<EOF
87 This program will overwrite the following files if present:
88   \`$HELPER_DIR/initrd'
89   \`$HELPER_DIR/kernel'
90   \`$HELPER_DIR/initrd-xen'
91   \`$HELPER_DIR/kernel-xen'
92   \`$HELPER_DIR/image'
93   \`$HELPER_DIR/packages'
94 EOF
95
96 while [[ 1 ]]; do
97     echo -n "Do you want to continue [y/N]? "
98     if [ "x$NO_PROMPT" = "xyes" ]; then
99         echo "y";
100         break;
101     fi
102
103     read answer
104     [ "$(echo -n "$answer" | tr [A-Z] [a-z])" = "y" ] && break
105     if [ -z "$answer" -o "$(echo -n "$answer" | tr [A-Z] [a-z])" = "n" ]; then
106         log_error "Abort."
107         exit 1
108     fi
109 done
110
111 rm -f "$HELPER_DIR/initrd" "$HELPER_DIR/kernel" "$HELPER_DIR/image"
112
113 echo -n "Allocating space for helper disk image..."
114 helper_img=$(mktemp "$HELPER_DIR/image.XXXXXX")
115 add_cleanup rm -f "$helper_img"
116 dd if=/dev/zero of="$helper_img" bs=1M count="$HELPER_SIZE" &> /dev/null
117 echo "done"
118
119 echo "Creating partitions..."
120 blockdev=$("$LOSETUP" -sf $helper_img)
121 add_cleanup "$LOSETUP" -d "$blockdev"
122
123 sleep 1 # sometimes losetup returns and the device is still busy..
124
125 format_disk0 "$blockdev" "extdump"  2>&1 | sed -e 's/^/CFDISK: /g'
126
127 root_dev=$(map_disk0 "$blockdev")-1
128 add_cleanup unmap_disk0 "$blockdev"
129
130 echo Creating and configuring filesystem...
131 mkfs.ext3 "$root_dev" 2>&1 | sed -e 's/^/MKFS.EXT3: /g'
132 # The helper vm should never do filesystem checks...
133 tune2fs -i 0 -c 0 "$root_dev" 2>&1 | sed -e 's/^/TUNE2FS: /g'
134
135 root_uuid=$(blkid -s UUID -o value "$root_dev")
136
137 target=$(mktemp -d)
138 add_cleanup rmdir "$target"
139
140 mount "$root_dev" "$target"
141 add_cleanup umount "$root_dev"
142
143 do_multistrap "$target"
144
145 # Save the package list
146 chroot "$target" dpkg-query -W  > "$HELPER_DIR/packages"
147
148 echo -n "Configuring the helper image..."
149 echo snf-image-helper > "$target/etc/hostname"
150
151 cat > "$target/etc/fstab" <<EOF
152 # /etc/fstab: static file system information.
153 #
154 # <file system>   <mount point>   <type>  <options>       <dump>  <pass>
155 UUID=$root_uuid         /               ext3    defaults        0       1
156 proc              /proc           proc    defaults        0       0
157 EOF
158
159 # We need this since we mount the helper VM ro
160 ln -sf /proc/mounts "$target/etc/mtab"
161
162 echo "done"
163
164 echo -n "Extracting kernel..."
165 if [ ! -L "$target/vmlinuz" -o ! -L "$target/vmlinuz" ]; then
166     echo -e "\033[1;31mfailed\033[0m"
167     log_error "vmlinuz or initrd.img link in root is missing."
168     log_error "I don't know how to find a usable kernel/initrd pair."
169     exit 1
170 fi
171 echo "done"
172
173 # Make sure extended globbing is enabled
174 shopt -s extglob
175
176 kernel=$(ls "$target"/boot/vmlinuz-+([0-9.])-+([a-z0-9])-amd64)
177 initrd=$(ls "$target"/boot/initrd.img-+([0-9.])-+([a-z0-9])-amd64)
178
179 kernel_xen=$(ls "$target"/boot/vmlinuz-+([0-9.])-+([a-z0-9])-xen-amd64)
180 initrd_xen=$(ls "$target"/boot/initrd.img-+([0-9.])-+([a-z0-9])-xen-amd64)
181
182 echo "Moving $(basename "$kernel") and $(basename "$initrd") to \`$HELPER_DIR'"
183 cp "$kernel" "$initrd" "$HELPER_DIR"
184
185 echo "Moving $(basename "$kernel_xen") and $(basename "$initrd_xen") to \`$HELPER_DIR'"
186 cp "$kernel_xen" "$initrd_xen" "$HELPER_DIR"
187
188 kernel=$(basename "$kernel")
189 initrd=$(basename "$initrd")
190
191 kernel_xen=$(basename "$kernel_xen")
192 initrd_xen=$(basename "$initrd_xen")
193 (cd "$HELPER_DIR"; ln -fs "$kernel" kernel; ln -fs "$initrd" initrd)
194 (cd "$HELPER_DIR"; ln -fs "$kernel_xen" kernel-xen; ln -fs "$initrd_xen" initrd-xen)
195
196
197 pkg_installed=$(grep snf-image-helper "$HELPER_DIR/packages" > /dev/null && echo yes)
198
199 if [ -z "$HELPER_PKG" -a -z "$pkg_installed" ]; then
200     log_error "No helper package was specified and non was found by the apt."
201     exit 1
202 fi
203
204 if [ -r "$HELPER_PKG" ]; then
205     echo "Installing snf-image-helper pkg in the new image..."
206     cp "$HELPER_PKG" "$target/tmp/"
207     pkg_name=$(basename "$HELPER_PKG")
208     add_cleanup rm "$target/tmp/$pkg_name"
209     chroot "$target" dpkg -i "/tmp/$pkg_name" 2>&1 | sed -e 's/^/DPKG: /g'
210
211     # Recreate package list
212     chroot "$target" dpkg-query -W  > "$HELPER_DIR/packages"
213 else
214     echo "snf-image-helper pkg was installed from the apt repository."
215 fi
216
217 helper_version="$(grep ^snf-image-helper[[:space:]] "$HELPER_DIR/packages" | cut -f2)"
218 host_version="$(dpkg-query -W -f "\${Version}\n" snf-image)"
219
220 if [ "$VERSION_CHECK" == yes -a -z "$HELPER_PKG" ]; then
221     if [ "$host_version" != "$helper_version" ]; then
222         log_error "snf-image version (=$host_version) and " \
223             "snf-image-helper version (=$helper_version) don't match."
224         exit 1
225     fi
226 fi
227
228 mv "$helper_img" "$HELPER_DIR/image"
229
230 echo "Files in \`$HELPER_DIR' were updated successfully" >&2
231
232 TMPDIR=$(mktemp -d)
233
234 echo "Creating fixed appliance in \`$TMPDIR':" >&2
235 echo >&2
236 (cd "$HELPER_DIR"; $TAR -cvf "$TMPDIR/snf_image_helper_image-${helper_version}.tar" "$kernel_xen" "$initrd_xen" "$kernel" "$initrd" kernel initrd kernel-xen initrd-xen image packages)
237 echo >&2
238 echo -n "Compressing fixed appliance ..." >&2
239 (cd "$HELPER_DIR"; $XZ -9 "$TMPDIR/snf_image_helper_image-${helper_version}.tar")
240 echo "done" >&2
241
242 exit 0
243
244 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :