have pl_netinit source pl_functions, for messages to show up as expected
[bootcd.git] / build.sh
1 #!/bin/bash
2 #
3 # Builds custom BootCD ISO and USB images in the current
4 # directory. 
5 #
6 # Aaron Klingaman <alk@absarokasoft.com>
7 # Mark Huang <mlhuang@cs.princeton.edu>
8 # Copyright (C) 2004-2007 The Trustees of Princeton University
9 #
10 # Jan 2015 - f21 comes with isolinux 6.03 (was 4.05 in f20)
11 # http://www.syslinux.org/wiki/index.php/ISOLINUX
12
13 COMMAND=$(basename $0)
14 DIRNAME=$(dirname $0)
15 PATH=/sbin:/bin:/usr/sbin:/usr/bin
16
17 # debugging flags
18 # keep KERNEL_DEBUG_ARGS void for production
19 KERNEL_DEBUG_ARGS=""
20 # add more flags here for debugging
21 # KERNEL_DEBUG_ARGS="$KERNEL_DEBUG_ARGS some_other_kernel_arg"
22 # see also
23 #  (*) GetBootMedium that has some provisions for common
24 #      kargs, like e.g. for removing the hangcheck feature,
25 #      or for turning on debug messages for systemd
26 #      these can be turned on with tags on the node
27 #  (*) tests default config, that uses this feature so
28 #      the tests can benefit these features, without deploying
29 #      them by default in production
30
31 # defaults
32 DEFAULT_TYPES="usb iso"
33 # Leave 4 MB of free space
34 GRAPHIC_CONSOLE="graphic"
35 SERIAL_CONSOLE="ttyS0:115200:n:8"
36 CONSOLE_INFO=$GRAPHIC_CONSOLE
37 MKISOFS_OPTS="-R -J -r -f -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
38 # isolinux-debug.bin is supposedly helpful as well if available,
39 # when things don't work as expected
40 #MKISOFS_OPTS="-R -J -r -f -b isolinux-debug.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table"
41
42 FREE_SPACE=4096
43
44 # command-line settable args
45 NODE_CONFIGURATION_FILE=
46 CUSTOM_DIR=
47 OUTPUT_BASE=
48 DRY_RUN=""
49 OUTPUT_NAME=""
50 TYPES=""
51 KERNEL_ARGS=""
52
53 # various globals
54 BUILDTMP=""
55 FULL_VERSION_STRING=""
56 ISOREF=""
57 ISOFS=""
58 OVERLAY=""
59 IS_SERIAL=""
60 console_dev=""
61 console_baud=""
62 console_spec=""
63 console_serial_line=""
64
65
66 #################### compute all supported types
67 # removing support for serial in the type
68 # this is because kargs.txt goes in the overlay, that is computed only once
69 # so we cannot handle serial and graphic modes within the same invokation of this script
70
71 ALL_TYPES=""
72 for x in iso usb usb_partition; do for c in "" "_cramfs" ; do
73   t="${x}${c}"
74   case $t in
75       usb_partition_cramfs)
76           # unsupported
77           ;;
78       *)
79           ALL_TYPES="$ALL_TYPES $t" ;;
80   esac
81 done; done
82
83 #################### cleanup utilities
84 declare -a _CLEANUPS=()
85 function do_cleanup() {
86     cd / ; for i in "${_CLEANUPS[@]}"; do $i ; done
87 }
88 function push_cleanup() {
89     _CLEANUPS=( "${_CLEANUPS[@]}" "$*" )
90 }
91 function pop_cleanup() {
92     unset _CLEANUPS[$((${#_CLEANUPS[@]} - 1))]
93 }
94
95 #################### initialization
96 function init_and_check () {
97
98     # Change to our source directory
99     local srcdir=$(cd $DIRNAME && pwd -P)
100     pushd $srcdir
101
102     # Root of the isofs
103     ISOREF=$PWD/${VARIANT}
104
105     # The reference image is expected to have been built by prep.sh (see .spec)
106     # we disable the initial logic that called prep.sh if that was not the case
107     # this is because prep.sh needs to know pldistro 
108     if [ ! -f $ISOREF/isofs/bootcd.img -o ! -f $ISOREF/version.txt ] ; then
109         echo "Could not find isofs and version.txt in $ISOREF"
110         if [ "$VARIANT" == "build" ] ; then
111             echo "You have to run prep.sh prior to calling $COMMAND"
112         else
113             echo "You need to create your variant image, see kvariant.sh"
114         fi
115         echo "Exiting .."
116         exit 1
117     fi
118
119     # build/version.txt written by prep.sh
120     BOOTCD_VERSION=$(cat ${VARIANT}/version.txt)
121
122     if [ -f /etc/planetlab/plc_config ] ; then
123         # Source PLC configuration
124         . /etc/planetlab/plc_config
125     fi
126
127     # use /var/tmp that should be large enough on both chroot- or vserver-based myplc
128     BUILDTMP=/var/tmp
129
130     FULL_VERSION_STRING="${PLC_NAME} BootCD ${BOOTCD_VERSION}"
131
132 }
133
134 # NOTE
135 # the custom-dir feature is designed to let a myplc try/ship a patched bootcd
136 # without the need for a full devel environment
137 # for example, you would create /root/custom-bootcd/etc/rc.d/init.d/pl_hwinit
138 # and run this script with -C /root/custom-bootcd
139 # this creates a third .img image of the custom dir, that 'hides' the files from 
140 # bootcd.img in the resulting unionfs
141 # it seems that this feature has not been used nor tested in a long time, use with care
142
143 usage() {
144     echo "Usage: $COMMAND [OPTION]..."
145     echo "    -f plnode.txt    Node to customize CD for (default: none)"
146     echo "    -t 'types'       Build the specified images (default: $DEFAULT_TYPES)"
147     echo "                     NOTE: mentioning 'serial' as part of the type is not supported anymore"
148     echo "    -a               Build all known types as listed below"
149     echo "    -s console-info  Enable a serial line as console and also bring up getty on that line"
150     echo "                     console-info: tty:baud-rate:parity:bits"
151     echo "                     or 'default' shortcut for $SERIAL_CONSOLE"
152     echo "    -S               equivalent to -s default"
153     echo "    -O output-base   The prefix of the generated files (default: PLC_NAME-BootCD-VERSION)"
154     echo "                     useful when multiple types are provided"
155     echo "                     can be a full path"
156     echo "    -o output-name   The full name of the generated file"
157     echo "    -C custom-dir    Custom directory"
158     echo "    -V variant       Use a variant - see kvariant.sh"
159     echo "    -n               Dry run - mostly for debug/test purposes"
160     echo "    -k               Add additional parameters to the kargs.txt file"
161     echo "    -h               This message"
162     echo "All known types: $ALL_TYPES"
163     exit 1
164 }
165
166 #################### 
167 function parse_command_line () {
168
169     # init
170     TYPES=""
171     # Get options
172     while getopts "f:t:as:SO:o:C:V:k:nh" opt ; do
173         case $opt in
174             f) NODE_CONFIGURATION_FILE=$OPTARG ;;
175             t) TYPES="$TYPES $OPTARG" ;;
176             a) TYPES="$ALL_TYPES" ;;
177             s) CONSOLE_INFO="$OPTARG" ;;
178             S) CONSOLE_INFO=$SERIAL_CONSOLE ;;
179             O) OUTPUT_BASE="$OPTARG" ;;
180             o) OUTPUT_NAME="$OPTARG" ;;
181             C) CUSTOM_DIR="$OPTARG" ;;
182             V) VARIANT="$OPTARG" ;;
183             k) KERNEL_ARGS="$KERNEL_ARGS $OPTARG" ;;
184             n) DRY_RUN=true ;;
185             h|*) usage ;;
186         esac
187     done
188
189     # use defaults if not set
190     [ -z "$TYPES" ] && TYPES="$DEFAULT_TYPES"
191     [ -z "$VARIANT" ] && VARIANT="build"
192     [ "$CONSOLE_INFO" == "default" ] && CONSOLE_INFO=$SERIAL_CONSOLE
193
194     if [ -n "$NODE_CONFIGURATION_FILE" ] ; then
195     # check existence of NODE_CONFIGURATION_FILE and normalize as we will change directory
196         if [ ! -f "$NODE_CONFIGURATION_FILE" ] ; then
197             echo "Node configuration file $NODE_CONFIGURATION_FILE not found - exiting"
198             exit 1
199         fi
200         cf_dir="$(dirname $NODE_CONFIGURATION_FILE)"
201         cf_dir="$(cd $cf_dir; pwd -P)"
202         cf_file="$(basename $NODE_CONFIGURATION_FILE)"
203         NODE_CONFIGURATION_FILE="$cf_dir"/"$cf_file"
204     fi
205
206     # check TYPES 
207     local matcher="XXX$(echo $ALL_TYPES | sed -e 's,\W,XXX,g')XXX"
208     for t in $TYPES; do
209         echo Checking type $t
210         echo $matcher | grep XXX${t}XXX &> /dev/null
211         if [ "$?" != 0 ] ; then
212             echo Unknown type $t
213             usage
214         fi
215     done
216
217 }
218
219 ####################
220 function init_serial () {
221     local console=$1; shift
222     if [ "$console" == "$GRAPHIC_CONSOLE" ] ; then
223         IS_SERIAL=
224         console_spec=""
225         echo "Standard, graphic, non-serial mode"
226     else
227         IS_SERIAL=true
228         console_dev=$(echo "$console" | awk -F: ' {print $1}')
229         console_baud=$(echo "$console" | awk -F: ' {print $2}')
230         [ -z "$console_baud" ] && console_baud="115200"
231         local console_parity=$(echo "$console" | awk -F: ' {print $3}')
232         [ -z "$console_parity" ] && console_parity="n"
233         local console_bits=$(echo "$console" | awk -F: ' {print $4}')
234         [ -z "$console_bits" ] && console_bits="8"
235         console_spec="console=${console_dev},${console_baud}${console_parity}${console_bits}"
236         local tty_nb=$(echo $console_dev | sed -e 's,[a-zA-Z],,g')
237         console_serial_line="SERIAL ${tty_nb} ${console_baud}"
238         echo "Serial mode"
239         echo "console_serial_line=${console_serial_line}"
240         echo "console_spec=${console_spec}"
241     fi
242 }
243
244 #################### run once : build the overlay image
245 function build_overlay () {
246
247     BUILDTMP=$(mktemp -d ${BUILDTMP}/bootcd.XXXXXX)
248     push_cleanup rm -fr "${BUILDTMP}"
249
250     # initialize ISOFS
251     ISOFS="${BUILDTMP}/isofs"
252     mkdir -p "$ISOFS"
253     for i in "$ISOREF"/isofs/{bootcd.img,kernel}; do
254         ln -s "$i" "$ISOFS"
255     done
256     # use new location as of fedora 12
257     # used to be in /usr/lib/syslinux/isolinux.bin
258     # removed backward compat in jan. 2015
259     # as of syslinux 6.05 (fedora 21) ldlinux.c32 is required by isolinux.bin
260     # the debug version can come in handy at times, and is 40k as well
261     isolinuxdir="/usr/share/syslinux"
262     # ship only what is mandatory, and forget about
263     # (*) isolinux-debug.bin as its name confuses mkisofs
264     # (*) memdisk that is not useful
265     isolinuxfiles="isolinux.bin ldlinux.c32"
266     for isolinuxfile in $isolinuxfiles; do
267         [ -f $isolinuxdir/$isolinuxfile ] && cp $isolinuxdir/$isolinuxfile "${BUILDTMP}/isofs"
268     done
269
270     # Root of the ISO and USB images
271     echo "* Populating root filesystem..."
272     OVERLAY="${BUILDTMP}/overlay"
273     install -d -m 755 $OVERLAY
274     push_cleanup rm -fr $OVERLAY
275
276     # Create version files
277     echo "* Creating version files"
278
279     # Boot Manager compares pl_version in both places to make sure that
280     # the right CD is mounted. We used to boot from an initrd and mount
281     # the CD on /usr. Now we just run everything out of the initrd.
282     for file in $OVERLAY/pl_version $OVERLAY/usr/isolinux/pl_version ; do
283         mkdir -p $(dirname $file)
284         echo "$FULL_VERSION_STRING" >$file
285     done
286
287     # Install boot server configuration files
288     echo "* Installing boot server configuration files"
289
290     # We always intended to bring up and support backup boot servers,
291     # but never got around to it. Just install the same parameters for
292     # both for now.
293     for dir in $OVERLAY/usr/boot $OVERLAY/usr/boot/backup ; do
294         install -D -m 644 $PLC_BOOT_CA_SSL_CRT $dir/cacert.pem
295         install -D -m 644 $PLC_ROOT_GPG_KEY_PUB $dir/pubring.gpg
296         echo "$PLC_BOOT_HOST" >$dir/boot_server
297         echo "$PLC_BOOT_SSL_PORT" >$dir/boot_server_port
298         echo "/boot/" >$dir/boot_server_path
299     done
300
301     # Install old-style boot server configuration files
302     # as opposed to what a former comment suggested, 
303     # this is still required, somewhere in the bootmanager apparently
304     install -D -m 644 $PLC_BOOT_CA_SSL_CRT $OVERLAY/usr/bootme/cacert/$PLC_BOOT_HOST/cacert.pem
305     echo "$FULL_VERSION_STRING" >$OVERLAY/usr/bootme/ID
306     echo "$PLC_BOOT_HOST" >$OVERLAY/usr/bootme/BOOTSERVER
307     echo "$PLC_BOOT_HOST" >$OVERLAY/usr/bootme/BOOTSERVER_IP
308     echo "$PLC_BOOT_SSL_PORT" >$OVERLAY/usr/bootme/BOOTPORT
309
310     # Generate /etc/issue
311     echo "* Generating /etc/issue"
312
313     if [ "$PLC_WWW_PORT" = "443" ] ; then
314         PLC_WWW_URL="https://$PLC_WWW_HOST/"
315     elif [ "$PLC_WWW_PORT" != "80" ] ; then
316         PLC_WWW_URL="http://$PLC_WWW_HOST:$PLC_WWW_PORT/"
317     else
318         PLC_WWW_URL="http://$PLC_WWW_HOST/"
319     fi
320
321     mkdir -p $OVERLAY/etc
322     cat >$OVERLAY/etc/issue <<EOF
323 $FULL_VERSION_STRING
324 $PLC_NAME Node: \n
325 Kernel \r on an \m
326 $PLC_WWW_URL
327
328 This machine is a node in the $PLC_NAME distributed network.  It has
329 not fully booted yet. If you have cancelled the boot process at the
330 request of $PLC_NAME Support, please follow the instructions provided
331 to you. Otherwise, please contact $PLC_MAIL_SUPPORT_ADDRESS.
332
333 Console login at this point is restricted to root. Provide the root
334 password of the default $PLC_NAME Central administrator account at the
335 time that this CD was created.
336
337 EOF
338     
339     # Set root password
340     echo "* Setting root password"
341
342     if [ -z "$ROOT_PASSWORD" ] ; then
343         # Generate an encrypted password with crypt() if not defined
344         # in a static configuration.
345         ROOT_PASSWORD=$(python <<EOF
346 import crypt, random, string
347 salt = [random.choice(string.letters + string.digits + "./") for i in range(0,8)]
348 print crypt.crypt('$PLC_ROOT_PASSWORD', '\$1\$' + "".join(salt) + '\$')
349 EOF
350 )
351     fi
352
353     # build/passwd copied out by prep.sh
354     sed -e "s@^root:[^:]*:\(.*\)@root:$ROOT_PASSWORD:\1@" ${VARIANT}/passwd >$OVERLAY/etc/passwd
355
356 # this is more harmful than helpful
357 # idea being, since we start a full-featured fedora system now, it would
358 # have been nice to be able to enter sshd very early on - before bm has even been downloaded
359 # however somehow it appears that these lines ruin all chances to enter ssh at all
360 # either early or even later on;
361 # plus, it is unclear what this would give on non=systemd nodes, so I am backing off for now    
362 #    # recent bootCDs rely on a standard systemd startup sequence
363 #    # so allow debug key to enter in this context whenever that makes sense
364 #    mkdir -p $OVERLAY/root/.ssh
365 #    chmod 700 $OVERLAY/root/.ssh
366 #    cp $PLC_DEBUG_SSH_KEY_PUB $OVERLAY/root/.ssh/authorized_keys
367 #    chmod 600 $OVERLAY/root/.ssh/authorized_keys
368
369     # Install node configuration file (e.g., if node has no floppy disk or USB slot)
370     if [ -f "$NODE_CONFIGURATION_FILE" ] ; then
371         echo "* Installing node configuration file $NODE_CONFIGURATION_FILE -> /usr/boot/plnode.txt of the bootcd image"
372         install -D -m 644 $NODE_CONFIGURATION_FILE $OVERLAY/usr/boot/plnode.txt
373         NODE_ID=$(source $NODE_CONFIGURATION_FILE; echo $NODE_ID)
374         echo "* Building network configuration for $NODE_ID"
375         plnet -- --root $OVERLAY --files-only --program BootCD $NODE_ID
376     fi
377
378     [ -n "$IS_SERIAL" ] && KERNEL_ARGS="$KERNEL_ARGS ${console_spec}"
379
380     # tmp: should be restricted to f15 nodes and above
381     # making sure the network interfaces are still numbered eth0 and above
382     KERNEL_ARGS="$KERNEL_ARGS biosdevname=0"
383     # making sure selinux is turned off - somehow this is needed with lxc/f14
384     KERNEL_ARGS="$KERNEL_ARGS selinux=0"
385     # add any debug flag if any (defined in the header of this script)
386     KERNEL_ARGS="$KERNEL_ARGS $KERNEL_DEBUG_ARGS"
387     # propagate kernel args for later boot stages
388     [ -n "$KERNEL_ARGS" ] && echo "$KERNEL_ARGS" > $OVERLAY/kargs.txt
389
390     # Pack overlay files into a compressed archive
391     echo "* Compressing overlay image"
392     (cd $OVERLAY && find . | cpio --quiet -c -o) | gzip -9 >$ISOFS/overlay.img
393
394     rm -rf $OVERLAY
395     pop_cleanup
396
397     if [ -n "$CUSTOM_DIR" ]; then
398         echo "* Compressing custom image"
399         (cd "$CUSTOM_DIR" && find . | cpio --quiet -c -o) | gzip -9 >$ISOFS/custom.img
400     fi
401
402     # Calculate ramdisk size (total uncompressed size of both archives)
403     ramdisk_size=$(gzip -l $ISOFS/bootcd.img $ISOFS/overlay.img ${CUSTOM_DIR:+$ISOFS/custom.img} | tail -1 | awk '{ print $2; }') # bytes
404     ramdisk_size=$((($ramdisk_size + 1023) / 1024)) # kilobytes
405
406     echo "$FULL_VERSION_STRING" >$ISOFS/pl_version
407
408     popd
409 }
410
411 #################### plain ISO
412 function build_iso() {
413     local iso="$1" ; shift
414     local custom="$1"
415
416     # Write isolinux configuration
417     cat >$ISOFS/isolinux.cfg <<EOF
418 ${console_serial_line}
419 PROMPT 0
420 DEFAULT planetlab-bootcd
421
422 LABEL planetlab-bootcd
423   DISPLAY pl_version
424   LINUX kernel
425   APPEND ramdisk_size=$ramdisk_size initrd=bootcd.img,overlay.img${custom:+,custom.img} root=/dev/ram0 rw ${KERNEL_ARGS}
426 EOF
427
428     # Create ISO image
429     echo "* Generated isolinux.cfg -------------------- BEG"
430     cat $ISOFS/isolinux.cfg
431     echo "* Generated isolinux.cfg -------------------- END"
432     echo "* Creating ISO image in pwd=$(pwd)"
433     echo "* with command mkisofs -o $iso $MKISOFS_OPTS $ISOFS"
434     mkisofs -o "$iso" $MKISOFS_OPTS $ISOFS
435 }
436
437 #################### USB with partitions
438 function build_usb_partition() {
439     echo -n "* Creating USB image with partitions..."
440     local usb="$1" ; shift
441     local custom="$1"
442
443     local size=$(($(du -Lsk $ISOFS | awk '{ print $1; }') + $FREE_SPACE))
444     size=$(( $size / 1024 ))
445
446     local heads=64
447     local sectors=32
448     local cylinders=$(( ($size*1024*2)/($heads*$sectors) ))
449     local offset=$(( $sectors*512 ))
450
451     if [ -f  /usr/lib/syslinux/mkdiskimage ] ; then
452         /usr/lib/syslinux/mkdiskimage -M -4 "$usb" $size $heads $sectors
453     else
454         mkdiskimage -M -4 "$usb" $size $heads $sectors
455     fi
456
457     cat >${BUILDTMP}/mtools.conf<<EOF
458 drive z:
459 file="${usb}"
460 cylinders=$cylinders
461 heads=$heads
462 sectors=$sectors
463 offset=$offset
464 mformat_only
465 mtools_skip_check=1
466 EOF
467     # environment variable for mtools
468     export MTOOLSRC="${BUILDTMP}/mtools.conf"
469
470     ### COPIED FROM build_usb() below!!!!
471     echo -n " populating USB image... "
472     mcopy -bsQ -i "$usb" "$ISOFS"/* z:/
473         
474     # Use syslinux instead of isolinux to make the image bootable
475     tmp="${BUILDTMP}/syslinux.cfg"
476     cat >$tmp <<EOF
477 ${console_serial_line}
478 PROMPT 0
479 DEFAULT planetlab-bootcd
480
481 LABEL planetlab-bootcd
482   DISPLAY pl_version
483   LINUX kernel
484   APPEND ramdisk_size=$ramdisk_size initrd=bootcd.img,overlay.img${custom:+,custom.img} root=/dev/ram0 rw ${KERNEL_ARGS}
485 EOF
486     mdel -i "$usb" z:/isolinux.cfg 2>/dev/null || :
487     mcopy -i "$usb" "$tmp" z:/syslinux.cfg
488     rm -f "$tmp"
489     rm -f "${MTOOLSRC}"
490     unset MTOOLSRC
491
492     echo "making USB image bootable."
493     syslinux -o $offset "$usb"
494
495 }
496
497 #################### plain USB
498 function build_usb() {
499     echo -n "* Creating USB image... "
500     local usb="$1" ; shift
501     local custom="$1"
502
503     rm -f "$usb"
504     mkfs.vfat -C "$usb" $(($(du -Lsk $ISOFS | awk '{ print $1; }') + $FREE_SPACE))
505
506     cat >${BUILDTMP}/mtools.conf<<EOF
507 mtools_skip_check=1
508 EOF
509     # environment variable for mtools
510     export MTOOLSRC="${BUILDTMP}/mtools.conf"
511
512     # Populate it
513     echo -n " populating USB image... "
514     mcopy -bsQ -i "$usb" "$ISOFS"/* ::/
515
516     # Use syslinux instead of isolinux to make the image bootable
517     tmp="${BUILDTMP}/syslinux.cfg"
518     cat >$tmp <<EOF
519 ${console_serial_line}
520 PROMPT 0
521 DEFAULT planetlab-bootcd
522
523 LABEL planetlab-bootcd
524   DISPLAY pl_version
525   LINUX kernel
526   APPEND ramdisk_size=$ramdisk_size initrd=bootcd.img,overlay.img${custom:+,custom.img} root=/dev/ram0 rw ${KERNEL_ARGS}
527 EOF
528     mdel -i "$usb" ::/isolinux.cfg 2>/dev/null || :
529     mcopy -i "$usb" "$tmp" ::/syslinux.cfg
530     rm -f "$tmp"
531     rm -f "${MTOOLSRC}"
532     unset MTOOLSRC
533
534     echo "making USB image bootable."
535     syslinux "$usb"
536 }
537
538 #################### utility to setup CRAMFS related support
539 function prepare_cramfs() {
540     [ -n "$CRAMFS_PREPARED" ] && return 0
541     local custom=$1; 
542
543     echo "* Setting up CRAMFS-based images"
544     local tmp="${BUILDTMP}/cramfs-tree"
545     mkdir -p "$tmp"
546     push_cleanup rm -rf $tmp
547     pushd $tmp
548     gzip -d -c $ISOFS/bootcd.img     | cpio -diu
549     gzip -d -c $ISOFS/overlay.img    | cpio -diu
550     [ -n "$custom" ] && \
551         gzip -d -c $ISOFS/custom.img | cpio -diu
552
553     # clean out unnecessary rpm lib
554     echo "* clearing var/lib/rpm/*"
555     rm -f var/lib/rpm/*
556
557     # bootcd requires this directory
558     mkdir -p mnt/confdevice
559
560     # relocate various directory to /tmp
561     rm -rf root
562     ln -fs /tmp/root root
563     ln -fs /sbin/init linuxrc 
564     ln -fs /tmp/resolv.conf etc/resolv.conf
565     ln -fs /tmp/etc/mtab etc/mtab
566
567     # have pl_rsysinit copy over appropriate etc & var directories into /tmp/etc/
568     # make /tmp/etc
569     echo "* renaming dirs in ./etc"
570     pushd etc
571     for dir in `find * -type d -prune | grep -v rc.d`; do
572         mv ${dir} ${dir}_o
573         ln -fs /tmp/etc/${dir} ${dir}
574     done
575     popd
576
577     echo "* renaming dirs in ./var"
578     # rename all top-level directories and put in a symlink to /tmp/var
579     pushd var
580     for dir in `find * -type d -prune`; do
581         mv ${dir} ${dir}_o
582         ln -fs /tmp/var/${dir} ${dir}
583     done
584     popd
585
586     # overwrite fstab to mount / as cramfs and /tmp as tmpfs
587     echo "* Overwriting etc/fstab to use cramfs and tmpfs"
588     rm -f ./etc/fstab
589     cat >./etc/fstab <<EOF
590 /dev/ram0     /              cramfs     ro              0 0
591 none          /dev/pts       devpts     gid=5,mode=620  0 0
592 none          /proc          proc       defaults        0 0
593 none          /sys           sysfs      defaults        0 0
594 EOF
595
596     pushd dev
597     rm -f console
598     mknod console c 5 1
599     #for i in 0 1 2 3 4 5 6 7 8; do rm -f ram${i} ; done
600     #for i in 0 1 2 3 4 5 6 7 8; do mknod ram${i} b 1 ${i} ; done
601     #ln -fs ram1 ram
602     #ln -fs ram0 ramdisk
603     popd
604
605     # update etc/inittab to start with pl_rsysinit
606     for file in etc/inittab etc/event.d/rcS etc/init/rcS.conf; do
607         [ -f $file ] && sed -i 's,pl_sysinit,pl_rsysinit,' $file
608     done
609
610     # modify inittab to have a serial console
611     # xxx this might well be broken with f12 and above xxx
612     if [ -n "$serial" ] ; then
613         echo "T0:23:respawn:/sbin/agetty -L $console_dev $console_baud vt100" >> etc/inittab
614         # and let root log in
615         echo "$console_dev" >> etc/securetty
616     fi
617
618     # calculate the size of /tmp based on the size of /etc & /var + 8MB slack
619     etcsize=$(du -s ./etc | awk '{ print $1 }')
620     varsize=$(du -s ./var | awk '{ print $1 }')
621     let msize=($varsize+$etcsize+8192)/1024
622
623     # make dhclient happy
624     for i in $(seq 0 9); do ln -fs /tmp/etc/dhclient-eth${i}.conf etc/dhclient-eth${i}.conf ; done
625     ln -fs /tmp/etc/resolv.conf etc/resolv.conf
626     ln -fs /tmp/etc/resolv.conf.predhclient etc/resolv.conf.predhclient
627
628     # generate pl_rsysinit
629     cat > etc/rc.d/init.d/pl_rsysinit <<EOF
630 #!/bin/sh
631 # generated by $COMMAND
632 echo -n "pl_rsysinit: preparing /etc and /var for pl_sysinit..."
633 mount -t tmpfs -orw,size=${msize}M,mode=1777 tmpfs /tmp
634 mkdir -p /tmp/root
635 mkdir -p /tmp/etc
636 touch /tmp/etc/resolv.conf
637 touch /tmp/etc/mtab
638 mkdir -p /tmp/var
639
640 # make mtab happy
641 echo "tmpfs /tmp tmpfs rw,size=${msize}M,mode=1777 1 1" > /tmp/etc/mtab
642
643 # copy over directory contents of all _o directories from /etc and /var
644 # /tmp/etc and /tmp/var
645 pushd /etc
646 for odir in \$(cd /etc && ls -d *_o); do dir=\$(echo \$odir | sed 's,\_o$,,'); (mkdir -p /tmp/etc/\$dir && cd \$odir && find . | cpio -p -d -u /tmp/etc/\$dir); done
647 popd
648 pushd /var
649 for odir in \$(cd /var && ls -d *_o); do dir=\$(echo \$odir | sed 's,\_o$,,'); (mkdir -p /tmp/var/\$dir && cd \$odir && find . | cpio -p -d -u /tmp/var/\$dir); done
650 popd
651
652 echo "done"
653
654 # hand over to pl_sysinit
655 echo "pl_rsysinit: handing over to pl_sysinit"
656 /etc/init.d/pl_sysinit
657 EOF
658     chmod +x etc/rc.d/init.d/pl_rsysinit
659
660     popd
661
662     # create the cramfs image
663     echo "* Creating cramfs image"
664     mkfs.cramfs $tmp/ ${BUILDTMP}/cramfs.img
665     cramfs_size=$(($(du -sk ${BUILDTMP}/cramfs.img | awk '{ print $1; }') + 1))
666     rm -rf $tmp
667     pop_cleanup
668 }
669
670 #################### Create ISO CRAMFS image
671 function build_iso_cramfs() {
672     local iso="$1" ; shift
673     local custom="$1"
674
675     prepare_cramfs "$custom"
676     echo "* Creating ISO CRAMFS-based image"
677
678     local tmp="${BUILDTMP}/cramfs-iso"
679     mkdir -p "$tmp"
680     push_cleanup rm -rf $tmp
681     (cd $ISOFS && find . | grep -v "\.img$" | cpio -p -d -u $tmp/)
682     cat >$tmp/isolinux.cfg <<EOF
683 ${console_serial_line}
684 PROMPT 0
685 DEFAULT planetlab-bootcd
686
687 LABEL planetlab-bootcd
688   DISPLAY pl_version
689   LINUX kernel
690   APPEND ramdisk_size=$ramdisk_size initrd=cramfs.img root=/dev/ram0 rw ${KERNEL_ARGS}
691 EOF
692
693     cp ${BUILDTMP}/cramfs.img $tmp
694     mkisofs -o "$iso" \
695         $MKISOFS_OPTS \
696         $tmp
697
698     rm -fr "$tmp"
699     pop_cleanup
700 }
701
702 #################### Create USB CRAMFS based image
703 function build_usb_cramfs() {
704     local usb="$1" ; shift
705     local custom="$1"
706
707     prepare_cramfs "$custom"
708     echo "* Creating USB CRAMFS based image"
709
710     let vfat_size=${cramfs_size}+$FREE_SPACE
711
712     # Make VFAT filesystem for USB
713     mkfs.vfat -C "$usb" $vfat_size
714
715     # Populate it
716     echo "* Populating USB with overlay images and cramfs"
717     mcopy -bsQ -i "$usb" $ISOFS/kernel $ISOFS/pl_version ::/
718     mcopy -bsQ -i "$usb" ${BUILDTMP}/cramfs.img ::/
719
720     # Use syslinux instead of isolinux to make the image bootable
721     tmp="${BUILDTMP}/syslinux.cfg"
722     cat >$tmp <<EOF
723 ${console_serial_line}
724 PROMPT 0
725 DEFAULT planetlab-bootcd
726
727 LABEL planetlab-bootcd
728   DISPLAY pl_version
729   LINUX kernel
730   APPEND ramdisk_size=$ramdisk_size initrd=cramfs.img root=/dev/ram0 rw ${KERNEL_ARGS}
731 EOF
732
733     mcopy -bsQ -i "$usb" "$tmp" ::/syslinux.cfg
734     rm -f "$tmp"
735
736     echo "* Making USB CRAMFS based image bootable"
737     syslinux "$usb"
738 }
739
740 #################### map on all types provided on the command-line and invoke one of the above functions
741 function build_types () {
742
743     [ -z "$OUTPUT_BASE" ] && OUTPUT_BASE="$PLC_NAME-BootCD-$BOOTCD_VERSION"
744
745     # alter output filename to reflect serial settings
746     if [ -n "$IS_SERIAL" ] ; then
747         if [ "$CONSOLE_INFO" == "$SERIAL_CONSOLE" ] ; then
748             serial="-serial"
749         else
750             serial="-serial-$(echo $CONSOLE_INFO | sed -e 's,:,,g')"
751         fi
752     else
753         serial=""
754     fi
755     
756     function type_to_name() {
757         echo $1 | sed '
758         s/usb$/.usb/;
759         s/usb_partition$/-partition.usb/;
760         s/iso$/.iso/;
761         s/usb_cramfs$/-cramfs.usb/;
762         s/iso_cramfs$/-cramfs.iso/;
763         '
764     }
765
766     for t in $TYPES; do
767         arg=$t
768
769         tname=`type_to_name $t`
770         # if -o is specified (as it has no default)
771         if [ -n "$OUTPUT_NAME" ] ; then
772             output=$OUTPUT_NAME
773         else
774             output="${OUTPUT_BASE}${serial}${tname}"
775         fi
776
777         echo "*** Dealing with type=$arg"
778         echo '*' build_$t "$output" "$CUSTOM_DIR"
779         [ -n "$DRY_RUN" ] || build_$t "$output" "$CUSTOM_DIR" 
780     done
781 }
782
783 #################### 
784 function main () {
785
786     parse_command_line "$@"
787
788     init_and_check
789
790     echo "* Building bootcd images for $NODE_CONFIGURATION_FILE ($FULL_VERSION_STRING) - $(date +%H-%M:%S)"
791     # Do not tolerate errors
792     set -e
793     trap "do_cleanup" ERR INT EXIT
794
795     init_serial $CONSOLE_INFO
796     build_overlay
797     build_types
798
799     echo "* Done with bootcd images for $NODE_CONFIGURATION_FILE - $(date +%H-%M:%S)"
800     exit 0
801 }
802
803 ####################
804 main "$@"