- install DTD
[myplc.git] / build.sh
1 #!/bin/bash
2 #
3 # Builds a Fedora based PLC image. You should be able to run this
4 # script multiple times without a problem.
5 #
6 # Mark Huang <mlhuang@cs.princeton.edu>
7 # Copyright (C) 2006 The Trustees of Princeton University
8 #
9 # $Id$
10 #
11
12 PATH=/sbin:/bin:/usr/sbin:/usr/bin
13
14 # In both a normal CVS environment and a PlanetLab RPM
15 # build environment, all of our dependencies are checked out into
16 # directories at the same level as us.
17 if [ -d ../build ] ; then
18     PATH=$PATH:../build
19     srcdir=..
20 else
21     echo "Error: Could not find $(cd .. && pwd -P)/build/"
22     exit 1
23 fi
24
25 export PATH
26
27 # PLC configuration file
28 config=plc_config.xml
29
30 # Release and architecture to install
31 releasever=2
32 basearch=i386
33
34 # Initial size of the image
35 size=1000000000
36
37 usage()
38 {
39     echo "Usage: build.sh [OPTION]..."
40     echo "      -c file         PLC configuration file (default: $config)"
41     echo "      -r release      Fedora release number (default: $releasever)"
42     echo "      -a arch         Fedora architecture (default: $basearch)"
43     echo "      -s size         Approximate size of the installation (default: $size)"
44     echo "      -h              This message"
45     exit 1
46 }
47
48 # Get options
49 while getopts "c:r:a:s:h" opt ; do
50     case $opt in
51         c)
52             config=$OPTARG
53             ;;
54         r)
55             releasever=$OPTARG
56             ;;
57         a)
58             basearch=$OPTARG
59             ;;
60         s)
61             size=$OPTARG
62             ;;
63         h|*)
64             usage
65             ;;
66     esac
67 done
68
69 # Do not tolerate errors
70 set -e
71
72 root=root
73 data=data
74
75 if [ ! -f $root.img ] ; then
76     bs=4096
77     count=$(($size / 4096))
78     dd bs=$bs count=$count if=/dev/zero of=$root.img
79     mkfs.ext3 -j -F $root.img
80 fi
81
82 mkdir -p $root $data
83 mount -o loop $root.img $root
84 trap "umount $root" ERR
85
86 #
87 # Build
88 #
89
90 # Get package list
91 while read package ; do
92     packages="$packages -p $package"
93 done < <(./plc-config --packages $config)
94
95 # Install base system
96 mkfedora -v -r $releasever -a $basearch -k $packages $root
97
98 # Disable all services in reference image
99 chroot $root sh -c "/sbin/chkconfig --list | awk '{ print \$1 }' | xargs -i /sbin/chkconfig {} off"
100
101 # FC2 minilogd starts up during shutdown and makes unmounting
102 # impossible. Just get rid of it.
103 rm -f $root/sbin/minilogd
104 ln -nsf /bin/true $root/sbin/minilogd
105
106 # Build schema
107 make -C $srcdir/pl_db
108
109 #
110 # Install
111 #
112
113 # Install configuration scripts
114 echo "* Installing configuration scripts"
115 install -D -m 755 plc_config.py $root/tmp/plc_config.py
116 chroot $root sh -c 'cd /tmp; python plc_config.py build; python plc_config.py install'
117 install -D -m 755 plc-config $root/usr/bin/plc-config
118 install -D -m 755 api-config $root/usr/bin/api-config
119
120 # Install initscripts
121 echo "* Installing initscripts"
122 find plc.d | cpio -p -d -u $root/etc/
123 install -D -m 755 guest.init $root/etc/init.d/plc
124 chroot $root sh -c 'chkconfig --add plc; chkconfig plc on'
125
126 # Install DB schema and API code
127 echo "* Installing DB schema and API code"
128 mkdir -p $root/usr/share
129 rsync -a $srcdir/pl_db $srcdir/plc_api $root/usr/share/
130
131 # Install web scripts
132 echo "* Installing web scripts"
133 mkdir -p $root/usr/bin
134 install -m 755 \
135     $srcdir/plc/scripts/gen-sites-xml.py \
136     $srcdir/plc/scripts/gen-slices-xml-05.py \
137     $srcdir/plc/scripts/gen-static-content.py \
138     $root/usr/bin/
139
140 # Install web pages
141 echo "* Installing web pages"
142 mkdir -p $root/var/www/html
143 # Exclude old cruft, unrelated GENI pages, and official documents
144 rsync -a \
145     --exclude='*2002' --exclude='*2003' \
146     --exclude=geni --exclude=PDN --exclude=Talks \
147     $srcdir/plc_www/ $root/var/www/html/
148
149 # Install configuration file
150 echo "* Installing configuration file"
151 install -D -m 444 $config $data/etc/planetlab/default_config.xml
152 install -D -m 444 plc_config.dtd $data/etc/planetlab/plc_config.dtd
153
154 # Move "data" directories out of the installation
155 datadirs=(
156 /etc/planetlab
157 /var/lib/pgsql
158 /var/www/html/alpina-logs
159 /var/www/html/boot
160 /var/www/html/download
161 /var/www/html/generated
162 /var/www/html/install-rpms
163 /var/www/html/xml
164 )
165
166 echo "* Moving data directories out of the installation"
167 mkdir -p $root/data
168 for datadir in "${datadirs[@]}" ; do
169     mkdir -p ${data}$datadir
170     if [ -d $root/$datadir -a ! -h $root/$datadir ] ; then
171         (cd $root && find ./$datadir | cpio -p -d -u ../$data/)
172     fi
173     rm -rf $root/$datadir
174     mkdir -p $(dirname $root/$datadir)
175     ln -nsf /data$datadir $root/$datadir
176 done
177
178 # Shrink to 100 MB free space
179 kb=$(python <<EOF
180 import os
181 df = os.statvfs('$root')
182 target = 100 * 1024 * 1024 / df.f_bsize
183 if df.f_bavail > target:
184     print (df.f_blocks - (df.f_bavail - target)) * df.f_bsize / 1024
185 EOF
186 )
187
188 umount $root
189 trap - ERR
190
191 if [ -n "$kb" ] ; then
192     # Setup loopback association. Newer versions of losetup have a -f
193     # option which finds an unused loopback device, but we must
194     # support FC2 for now.
195     # dev_loop=$(losetup -f)
196     for i in `seq 1 7` ; do
197         if ! grep -q "^/dev/loop$i" /proc/mounts ; then
198             dev_loop="/dev/loop$i"
199             break
200         fi
201     done
202     losetup $dev_loop $root.img
203     trap "losetup -d $dev_loop" ERR
204
205     # Resize the filesystem
206     echo "* Checking filesystem"
207     e2fsck -a -f $dev_loop
208     echo "* Shrinking filesystem"
209     resize2fs $dev_loop ${kb}K
210
211     # Tear down loopback association
212     losetup -d $dev_loop
213     trap - ERR
214
215     # Truncate the image file
216     perl -e "truncate '$root.img', $kb*1024"
217 fi
218
219 # Write sysconfig
220 cat >plc.sysconfig <<EOF
221 PLC_ROOT=/plc/$root
222 PLC_DATA=/plc/$data
223 #PLC_OPTIONS="-v"
224 EOF
225
226 # Initialize node RPMs directory. The PlanetLab-Bootstrap.tar.bz2
227 # tarball already contains all of the node RPMs pre-installed. Only
228 # updates or optional packages should be placed in this directory.
229 if [ -n "$RPM_BUILD_DIR" ] ; then
230     echo "* Initializing node RPMs directory"
231     RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P)
232     mkdir -p $data/var/www/html/install-rpms/planetlab
233     if [ -f $RPM_RPMS_DIR/yumgroups.xml ] ; then
234         install -D -m 644 $RPM_RPMS_DIR/yumgroups.xml \
235             $data/var/www/html/install-rpms/planetlab/yumgroups.xml
236     fi
237     # yum-2.0.x
238     if [ -x /usr/bin/yum-arch ] ; then
239         yum-arch $data/var/www/html/install-rpms/planetlab
240     fi
241     # yum-2.4.x
242     if [ -x /usr/bin/createrepo ] ; then
243         if [ -f $data/var/www/html/install-rpms/planetlab/yumgroups.xml ] ; then
244             groupfile="-g yumgroups.xml"
245         fi
246         createrepo $groupfile $data/var/www/html/install-rpms/planetlab
247     fi
248 fi
249
250 # Bootstrap the system for quicker startup (and to populate the
251 # PlanetLabConf tables from PLC, which may not be accessible
252 # later). The bootstrap.xml configuration overlay configures the web
253 # server to run on an alternate port (in case the build machine itself
254 # is running a web server on port 80). Start everything up to
255 # bootstrap the database, then shut it back down again immediately.
256 echo "* Bootstrapping installation"
257
258 install -D -m 644 bootstrap.xml $data/etc/planetlab/configs/bootstrap.xml
259
260 # Otherwise, host.init will try to read /etc/sysconfig/plc
261 export PLC_ROOT=$PWD/$root
262 export PLC_DATA=$PWD/$data
263 #export PLC_OPTIONS="-v"
264
265 ./host.init start
266 RETVAL=$?
267
268 # Remove ISO and USB images, which take up >100MB but only take a
269 # couple of seconds to generate at first boot.
270 rm -f $data/var/www/html/download/*.{iso,usb}
271
272 ./host.init stop
273 RETVAL=$(($RETVAL+$?))
274
275 # Restore default configuration
276 rm -f $data/etc/planetlab/plc_config.xml $data/etc/planetlab/configs/bootstrap.xml
277
278 exit $RETVAL