Bump version number.
[bootcd.git] / build.sh
1 #!/bin/bash
2
3 set -e
4
5 # where the boot cd build config files are stored (and certificats/keys)
6 CONFIGURATIONS_DIR=configurations/
7
8 # where built files are stored
9 BUILD_DIR=build/
10
11 BOOTCD_VERSION="3.3"
12 FULL_VERSION_STRING="PlanetLab BootCD"
13 OUTPUT_IMAGE_NAME='PlanetLab-BootCD'
14     
15 SYSLINUX_SRC=sources/syslinux-2.11.tar.bz2
16
17 BOOTCD_YUM_GROUP=BootCD
18
19 CDRECORD_FLAGS="-v -dao"
20
21 CONF_FILES_DIR=conf_files/
22
23 # size of the ram disk in MB
24 RAMDISK_SIZE=64
25
26 # the bytes per inode ratio (the -i value in mkfs.ext2) for the ramdisk
27 INITRD_BYTES_PER_INODE=1024
28
29
30 # make sure the boot manager source is checked out in the same directory
31 # as the bootcd_v3 repository
32 for BOOTMANAGER_DIR in ../bootmanager-* ../bootmanager ; do
33     [ -d $BOOTMANAGER_DIR ] && break
34 done
35
36 if [ ! -d $BOOTMANAGER_DIR ]; then
37     echo "the bootmanager repository needs to be checked out at the same"
38     echo "level as this directory, for the merge_hw_tables.py script"
39     exit
40 fi
41
42
43 function usage()
44 {
45     echo "Usage: build.sh <action> [<configuration>]"
46     echo "Action: build burn clean"
47     echo
48     echo "If configuration is missing, 'default' is loaded"
49     exit
50 }
51
52
53 function build_cdroot()
54 {
55     if [ -f $CD_ROOT/.built ]; then
56         echo "cd root already built, skipping"
57         return
58     fi
59
60     clean
61     
62     mkdir -p $CD_ROOT/dev/pts
63     mkdir -p $CD_ROOT/proc
64     mkdir -p $CD_ROOT/etc
65
66     echo "copy fstab and mtab"
67     cp -f $CONF_FILES_DIR/fstab $CD_ROOT/etc/
68     cp -f $CONF_FILES_DIR/mtab $CD_ROOT/etc/
69
70     echo "setup rpm to install only en_US locale and no docs"
71     mkdir -p $CD_ROOT/etc/rpm
72     cp -f $CONF_FILES_DIR/macros $CD_ROOT/etc/rpm
73     # trick rpm and yum
74     export HOME=$PWD
75     cp -f $CONF_FILES_DIR/macros $PWD/.rpmmacros
76
77     echo "initialize rpm db"
78     mkdir -p $CD_ROOT/var/lib/rpm
79     rpm --root $CD_ROOT --initdb
80     
81     # XXX Should download yum.conf from the boot server?
82     echo "generate yum.conf"
83 cat >yum.conf <<EOF
84 [main]
85 cachedir=/var/cache/yum
86 debuglevel=2
87 logfile=/var/log/yum.log
88 pkgpolicy=newest
89 ### for yum-2.4 in fc4 (this will be ignored by yum-2.0)
90 ### everything in here, do not scan /etc/yum.repos.d/
91 reposdir=/dev/null
92
93 [FedoraCore2Base]
94 name=Fedora Core 2 Base -- PlanetLab Central
95 baseurl=http://$PRIMARY_SERVER/install-rpms/stock-fc2/
96
97 [FedoraCore2Updates]
98 name=Fedora Core 2 Updates -- PlanetLab Central
99 baseurl=http://$PRIMARY_SERVER/install-rpms/updates-fc2/
100
101 [PlanetLab]
102 name=PlanetLab RPMS -- PlanetLab Central
103 baseurl=http://$PRIMARY_SERVER/install-rpms/planetlab-rollout/
104 EOF
105     # XXX Temporary hack until the 3.2 rollout is complete and the
106     # /planetlab/yumgroups.xml file contains the BootCD group.
107     yumgroups="http://$PRIMARY_SERVER/install-rpms/planetlab-rollout/yumgroups.xml"
108
109    # Solve the bootstrap problem by including any just built packages in
110    # the yum configuration. This cooperates with the PlanetLab build
111    # system.
112    if [ -n "$RPM_BUILD_DIR" ] ; then
113        cat >>yum.conf <<EOF
114 [Bootstrap]
115 name=Bootstrap RPMS -- $(dirname $RPM_BUILD_DIR)/RPMS/
116 baseurl=file://$(dirname $RPM_BUILD_DIR)/RPMS/
117 EOF
118        yumgroups="file://$(dirname $RPM_BUILD_DIR)/RPMS/yumgroups.xml"
119    fi
120
121     echo "install boot cd base rpms"
122     yum -c yum.conf --installroot=$CD_ROOT -y groupinstall $BOOTCD_YUM_GROUP
123
124     # Retrieve all of the packagereq declarations in the BootCD group of the yumgroups.xml file
125     echo "checking to make sure rpms were installed"
126     packages=$(curl $yumgroups | sed -n -e '/<name>BootCD<\/name>/,/<name>/{ s/.*<packagereq.*>\(.*\)<\/packagereq>/\1/p }')
127     set +e
128     for package in $packages; do
129         echo "checking for package $package"
130         /usr/sbin/chroot $CD_ROOT /bin/rpm -qi $package > /dev/null
131         if [[ "$?" -ne 0 ]]; then
132             echo "package $package was not installed in the cd root."
133             echo "make sure it exists in the yum repository."
134             exit 1
135         fi
136     done
137     set -e
138     
139     echo "removing unneccessary build files"
140     (cd $CD_ROOT/lib/modules && \
141         find ./ -type d -name build -maxdepth 2 -exec rm -rf {} \;)
142
143     echo "setting up non-ssh authentication"
144     mkdir -p $CD_ROOT/etc/samba
145     /usr/sbin/chroot $CD_ROOT /usr/sbin/authconfig --nostart --kickstart \
146         --enablemd5 --enableshadow
147
148     echo "setting root password"
149     sed -i "s#root::#root:$ROOT_PASSWORD:#g" $CD_ROOT/etc/shadow
150
151     echo "relocate some large directories out of the root system"
152     # get /var/lib/rpm out, its 12mb. create in its place a 
153     # symbolic link to /usr/relocated/var/lib/rpm
154     mkdir -p $CD_ROOT/usr/relocated/var/lib/
155     mv $CD_ROOT/var/lib/rpm $CD_ROOT/usr/relocated/var/lib/
156     (cd $CD_ROOT/var/lib && ln -s ../../usr/relocated/var/lib/rpm rpm)
157
158     # get /var/cache/yum out, its 100Mb. create in its place a 
159     # symbolic link to /usr/relocated/var/cache/yum
160     mkdir -p $CD_ROOT/usr/relocated/var/cache/
161     mv $CD_ROOT/var/cache/yum $CD_ROOT/usr/relocated/var/cache/
162     (cd $CD_ROOT/var/cache && ln -s ../../usr/relocated/var/cache/yum yum)
163
164     # get /lib/tls out
165     mkdir -p $CD_ROOT/usr/relocated/lib
166     mv $CD_ROOT/lib/tls $CD_ROOT/usr/relocated/lib/
167     (cd $CD_ROOT/lib && ln -s ../usr/relocated/lib/tls tls)
168
169     echo "extracting syslinux, copying isolinux files to cd"
170     mkdir -p $CD_ROOT/usr/isolinux/
171     mkdir -p $BUILD_DIR/syslinux
172     tar -C $BUILD_DIR/syslinux -xjvf $SYSLINUX_SRC
173     find $BUILD_DIR/syslinux -name isolinux.bin \
174         -exec cp -f {} $CD_ROOT/usr/isolinux/ \;
175
176     echo "moving kernel to isolinux directory"
177     KERNEL=$CD_ROOT/boot/vmlinuz-*
178     mv -f $KERNEL $CD_ROOT/usr/isolinux/kernel
179
180     echo "moving /usr/bin/find and /usr/bin/dirname to /bin"
181     mv $CD_ROOT/usr/bin/find $CD_ROOT/bin/
182     mv $CD_ROOT/usr/bin/dirname $CD_ROOT/bin/
183
184     echo "creating version files"
185     echo "$FULL_VERSION_STRING" > $CD_ROOT/usr/isolinux/pl_version
186     echo "$FULL_VERSION_STRING" > $CD_ROOT/pl_version
187
188     touch $CD_ROOT/.built
189 }
190
191 function init_initrd()
192 {
193     echo "initialize configuration files"
194
195     echo "copy fstab and mtab"
196     cp -f $CONF_FILES_DIR/fstab $CD_ROOT/etc/
197     cp -f $CONF_FILES_DIR/mtab $CD_ROOT/etc/
198
199     echo "installing generic modprobe.conf"
200     cp -f $CONF_FILES_DIR/modprobe.conf $CD_ROOT/etc/
201
202     echo "installing our own inittab and init scripts"
203     cp -f $CONF_FILES_DIR/inittab $CD_ROOT/etc
204     init_scripts="pl_sysinit pl_hwinit pl_netinit pl_validateconf pl_boot"
205     for script in $init_scripts; do
206         cp -f $CONF_FILES_DIR/$script $CD_ROOT/etc/init.d/
207         chmod +x $CD_ROOT/etc/init.d/$script
208     done
209
210     echo "setup basic networking files"
211     cp -f $CONF_FILES_DIR/hosts $CD_ROOT/etc/
212
213     echo "copying sysctl.conf (fix tcp window scaling and broken routers)"
214     cp -f $CONF_FILES_DIR/sysctl.conf $CD_ROOT/etc/
215
216     echo "setup default network conf file"
217     mkdir -p $CD_ROOT/usr/boot
218     cp -f $CONF_FILES_DIR/default-net.cnf $CD_ROOT/usr/boot/
219
220     echo "setup boot server configuration"
221     cp -f $CURRENT_CONFIG_DIR/$PRIMARY_SERVER_CERT $CD_ROOT/usr/boot/cacert.pem
222     cp -f $CURRENT_CONFIG_DIR/$PRIMARY_SERVER_GPG $CD_ROOT/usr/boot/pubring.gpg
223     echo "$PRIMARY_SERVER" > $CD_ROOT/usr/boot/boot_server
224     echo "$PRIMARY_SERVER_PORT" > $CD_ROOT/usr/boot/boot_server_port
225     echo "$PRIMARY_SERVER_PATH" > $CD_ROOT/usr/boot/boot_server_path
226
227     echo "setup backup boot server configuration"
228     mkdir -p $CD_ROOT/usr/boot/backup
229     cp -f $CURRENT_CONFIG_DIR/$BACKUP_SERVER_CERT \
230         $CD_ROOT/usr/boot/backup/cacert.pem
231     cp -f $CURRENT_CONFIG_DIR/$BACKUP_SERVER_GPG \
232         $CD_ROOT/usr/boot/backup/pubring.gpg
233     echo "$BACKUP_SERVER" > $CD_ROOT/usr/boot/backup/boot_server
234     echo "$BACKUP_SERVER_PORT" > $CD_ROOT/usr/boot/backup/boot_server_port
235     echo "$BACKUP_SERVER_PATH" > $CD_ROOT/usr/boot/backup/boot_server_path
236
237     echo "copying old boot cd directory bootme (TEMPORARY)"
238     cp -r bootme_old $CD_ROOT/usr/bootme
239     echo "$FULL_VERSION_STRING" > $CD_ROOT/usr/bootme/ID
240     echo "$PRIMARY_SERVER" > $CD_ROOT/usr/bootme/BOOTSERVER
241     echo "$PRIMARY_SERVER" > $CD_ROOT/usr/bootme/BOOTSERVER_IP
242     echo "$PRIMARY_SERVER_PORT" > $CD_ROOT/usr/bootme/BOOTPORT
243
244     echo "copying cacert to old boot cd directory bootme (TEMPORARY)"
245     mkdir -p $CD_ROOT/usr/bootme/cacert/$PRIMARY_SERVER/
246     cp -f $CURRENT_CONFIG_DIR/$PRIMARY_SERVER_CERT \
247         $CD_ROOT/usr/bootme/cacert/$PRIMARY_SERVER/cacert.pem
248
249     echo "forcing lvm to make lvm1 partitions (TEMPORARY)"
250     cp -f $CONF_FILES_DIR/lvm.conf $CD_ROOT/etc/lvm/
251
252     echo "copying isolinux configuration files"
253     echo "$FULL_VERSION_STRING" > $CD_ROOT/usr/isolinux/message.txt
254
255     echo "writing /etc/issue"
256     echo "$FULL_VERSION_STRING" > $CD_ROOT/etc/issue
257     echo "Kernel \r on an \m" >> $CD_ROOT/etc/issue
258     echo "" >> $CD_ROOT/etc/issue
259     echo "" >> $CD_ROOT/etc/issue
260
261     if [[ ! -z "$NODE_CONFIGURATION_FILE" ]]; then
262         echo "Copying node configuration file to cd"
263         cp -f $CURRENT_CONFIG_DIR/$NODE_CONFIGURATION_FILE \
264             $CD_ROOT/usr/boot/plnode.txt
265     fi
266
267     echo "building pcitable for hardware detection"
268     pci_map_file=`find $CD_ROOT/lib/modules/ -name modules.pcimap | head -1`
269     module_dep_file=`find $CD_ROOT/lib/modules/ -name modules.dep | head -1`
270     pci_table=$CD_ROOT/usr/share/hwdata/pcitable
271     $BOOTMANAGER_DIR/source/merge_hw_tables.py \
272         $module_dep_file $pci_map_file $pci_table $CD_ROOT/etc/pl_pcitable
273
274 }
275
276 function build_initrd()
277 {
278     big=$1
279
280     echo "building initrd"
281     rm -f $INITRD
282     rm -f $INITRD.gz
283     rm -f $CD_ROOT/usr/isolinux/initrd
284     rm -f $CD_ROOT/usr/isolinux/initrd.gz
285
286     TOTAL_SIZE=$(du -ksc $CD_ROOT | awk '$2 == "total" { print $1}')
287     if [ $big -eq 1 ]; then
288         let TOTAL_SIZE=$TOTAL_SIZE-$(du -ksc $CD_ROOT/usr/isolinux | awk '$2 == "total" { print $1}')
289     else
290         let TOTAL_SIZE=$TOTAL_SIZE-$(du -ksc $CD_ROOT/usr | awk '$2 == "total" { print $1}')
291     fi
292     let INITRD_SIZE=($TOTAL_SIZE/1024)+$RAMDISK_SIZE+4
293
294     echo "making the isolinux initrd kernel command line match rd size"
295     let INITRD_SIZE_KB=$(($INITRD_SIZE * 1024))
296     cp -f $CONF_FILES_DIR/isolinux.cfg $CD_ROOT/usr/isolinux/
297     sed -i "s#ramdisk_size=0#ramdisk_size=$INITRD_SIZE_KB#g" \
298         $CD_ROOT/usr/isolinux/isolinux.cfg
299
300     dd if=/dev/zero of=$INITRD bs=1M count=$INITRD_SIZE
301     /sbin/mkfs.ext2 -F -m 0 -i $INITRD_BYTES_PER_INODE $INITRD
302     mkdir -p $INITRD_MOUNT
303     mount -o loop,rw $INITRD $INITRD_MOUNT
304
305     echo "copy all files except usr to ramdisk"
306     pushd .
307     cd $CD_ROOT
308     find . -path ./usr -prune -o -print | cpio -p -d -u $INITRD_MOUNT
309     popd
310
311     if [ $big -eq 1 ]; then
312         echo "copy usr to ramdisk"
313         pushd .
314         cd $CD_ROOT
315         find ./usr -path ./usr/isolinux -o -print | cpio -p -d -u $INITRD_MOUNT
316         popd
317     fi
318
319     umount $INITRD_MOUNT
320     rmdir $INITRD_MOUNT
321     
322     # INITRD_SIZE=$(`ls -sh $INITRD | awk '{print $1}'`)
323     # echo "initrd size = $INITRD_SIZE"
324     echo "compressing ramdisk"
325     gzip -9 $INITRD
326     mv -f $INITRD.gz $CD_ROOT/usr/isolinux
327 }
328
329 function build()
330 {
331     # build base image via yum
332     build_cdroot
333
334     # always build/rebuild initrd
335     init_initrd
336
337     ####################################################################################
338     # build small initrd for small iso and usb image
339     build_initrd 0
340
341     # build iso image
342     rm -f $ISO
343     mkisofs -o $ISO -R -allow-leading-dots -J -r -b isolinux/isolinux.bin \
344         -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table \
345         $CD_ROOT/usr
346
347     # build usb image and make it bootable with syslinux (instead of isolinux)
348     USB_IMAGE=${ISO%*.iso}.usb
349     # leave 1 MB of free space on the filesystem
350     USB_KB=$(du -kc $ISO $CD_ROOT/usr/isolinux | awk '$2 == "total" { print $1 + 1024 }')
351     /sbin/mkfs.vfat -C $USB_IMAGE $USB_KB
352
353     mkdir -p $INITRD_MOUNT
354     mount -o loop,rw $USB_IMAGE $INITRD_MOUNT
355
356     # populate the root of the image with pl_version, and the syslinux files
357     cp -a $ISO $INITRD_MOUNT
358     cp -a $CD_ROOT/usr/isolinux/{initrd.gz,kernel,message.txt,pl_version} $INITRD_MOUNT
359     cp -a $CD_ROOT/usr/isolinux/isolinux.cfg $INITRD_MOUNT/syslinux.cfg
360
361     umount $INITRD_MOUNT
362     rmdir $INITRD_MOUNT
363
364     # make it bootable
365     syslinux $USB_IMAGE
366
367     ####################################################################################
368     # build small initrd for small iso and usb image
369     build_initrd 1
370     
371     # build usb image and make it bootable with syslinux (instead of isolinux)
372     USB_IMAGE=${ISO%*.iso}-biginitrd.usb
373     # leave 1 MB of free space on the filesystem
374     USB_KB=$(du -kc $CD_ROOT/usr/isolinux | awk '$2 == "total" { print $1 + 1024 }')
375     /sbin/mkfs.vfat -C $USB_IMAGE $USB_KB
376
377     mkdir -p $INITRD_MOUNT
378     mount -o loop,rw $USB_IMAGE $INITRD_MOUNT
379
380     # populate the root of the image with pl_version, and the syslinux files
381     cp -a $CD_ROOT/usr/isolinux/{initrd.gz,kernel,message.txt,pl_version} $INITRD_MOUNT
382     cp -a $CD_ROOT/usr/isolinux/isolinux.cfg $INITRD_MOUNT/syslinux.cfg
383
384     umount $INITRD_MOUNT
385     rmdir $INITRD_MOUNT
386
387     # make it bootable
388     syslinux $USB_IMAGE
389 }
390
391 function burn()
392 {
393     cdrecord $CDRECORD_FLAGS -data $ISO
394 }
395
396 function clean()
397 {
398     rm -rf $CD_ROOT
399     rm -rf $BUILD_DIR/syslinux
400     rm -rf $BUILD_DIR/$INITRD_MOUNT
401     rm -rf $BUILD_DIR
402     rm -f $ISO
403     rmdir --ignore-fail-on-non-empty build
404 }
405
406 if [[ "$1" == "clean" || "$1" == "burn" || "$1" == "build" ]]; then
407     action=$1
408     configuration=$2
409
410     if [[ -z "$configuration" ]]; then
411         configuration=default
412     fi
413
414     echo "Loading configuration $configuration"
415     CURRENT_CONFIG_DIR=$CONFIGURATIONS_DIR/$configuration
416     . $CURRENT_CONFIG_DIR/configuration
417
418     # setup vars for this configuration
419
420     # version string for this build
421     if [[ ! -z "$EXTRA_VERSION" ]]; then
422         FULL_VERSION_STRING="$FULL_VERSION_STRING $EXTRA_VERSION"
423     fi
424     FULL_VERSION_STRING="$FULL_VERSION_STRING $BOOTCD_VERSION"
425
426     # destination image
427     if [[ ! -z "$EXTRA_VERSION" ]]; then
428         OUTPUT_IMAGE_NAME="$OUTPUT_IMAGE_NAME-$EXTRA_VERSION"
429     fi
430     OUTPUT_IMAGE_NAME="$OUTPUT_IMAGE_NAME-$BOOTCD_VERSION"
431
432     # setup build directories
433     BUILD_DIR=build/$configuration
434     mkdir -p $BUILD_DIR
435     ISO=$BUILD_DIR/`echo $OUTPUT_IMAGE_NAME | sed -e "s/%version/$BOOTCD_VERSION/"`.iso
436
437     CD_ROOT=`pwd`/$BUILD_DIR/cdroot
438     mkdir -p $CD_ROOT
439
440     # location of the uncompressed ramdisk image
441     INITRD=`pwd`/$BUILD_DIR/initrd
442
443     # temporary mount point for rd
444     MYPWD=`pwd`
445     INITRD_MOUNT=`mktemp -q -p $MYPWD/$BUILD_DIR -d -t rd.XXXXXXXX`
446     if [ $? -ne 0 ]; then
447         echo "failed to create tempory mount point for initrd"
448         exit 1
449     fi
450
451
452     case $action in 
453         build )
454             echo "Proceeding with building $DESCRIPTION"
455             build;;
456
457         clean )
458             echo "Removing built files for $DESCRIPTION"
459             clean;;
460
461         burn )
462             echo "Burning $DESCRIPTION"
463             burn;;
464     esac    
465 else
466     usage
467 fi
468