- restore default configuration by just removing plc_config.xml and
[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
153 # Move "data" directories out of the installation
154 datadirs=(
155 /etc/planetlab
156 /var/lib/pgsql
157 /var/www/html/alpina-logs
158 /var/www/html/boot
159 /var/www/html/download
160 /var/www/html/generated
161 /var/www/html/install-rpms
162 /var/www/html/xml
163 )
164
165 echo "* Moving data directories out of the installation"
166 mkdir -p $root/data
167 for datadir in "${datadirs[@]}" ; do
168     mkdir -p ${data}$datadir
169     if [ -d $root/$datadir -a ! -h $root/$datadir ] ; then
170         (cd $root && find ./$datadir | cpio -p -d -u ../$data/)
171     fi
172     rm -rf $root/$datadir
173     mkdir -p $(dirname $root/$datadir)
174     ln -nsf /data$datadir $root/$datadir
175 done
176
177 # Shrink to 100 MB free space
178 kb=$(python <<EOF
179 import os
180 df = os.statvfs('$root')
181 target = 100 * 1024 * 1024 / df.f_bsize
182 if df.f_bavail > target:
183     print (df.f_blocks - (df.f_bavail - target)) * df.f_bsize / 1024
184 EOF
185 )
186
187 umount $root
188 trap - ERR
189
190 if [ -n "$kb" ] ; then
191     # Setup loopback association. Newer versions of losetup have a -f
192     # option which finds an unused loopback device, but we must
193     # support FC2 for now.
194     # dev_loop=$(losetup -f)
195     for i in `seq 1 7` ; do
196         if ! grep -q "^/dev/loop$i" /proc/mounts ; then
197             dev_loop="/dev/loop$i"
198             break
199         fi
200     done
201     losetup $dev_loop $root.img
202     trap "losetup -d $dev_loop" ERR
203
204     # Resize the filesystem
205     echo "* Checking filesystem"
206     e2fsck -a -f $dev_loop
207     echo "* Shrinking filesystem"
208     resize2fs $dev_loop ${kb}K
209
210     # Tear down loopback association
211     losetup -d $dev_loop
212     trap - ERR
213
214     # Truncate the image file
215     perl -e "truncate '$root.img', $kb*1024"
216 fi
217
218 # Write sysconfig
219 cat >plc.sysconfig <<EOF
220 PLC_ROOT=/plc/$root
221 PLC_DATA=/plc/$data
222 #PLC_OPTIONS="-v"
223 EOF
224
225 # Initialize node RPMs directory. The PlanetLab-Bootstrap.tar.bz2
226 # tarball already contains all of the node RPMs pre-installed. Only
227 # updates or optional packages should be placed in this directory.
228 if [ -n "$RPM_BUILD_DIR" ] ; then
229     echo "* Initializing node RPMs directory"
230     RPM_RPMS_DIR=$(cd $(dirname $RPM_BUILD_DIR)/RPMS && pwd -P)
231     mkdir -p $data/var/www/html/install-rpms/planetlab
232     if [ -f $RPM_RPMS_DIR/yumgroups.xml ] ; then
233         install -D -m 644 $RPM_RPMS_DIR/yumgroups.xml \
234             $data/var/www/html/install-rpms/planetlab/yumgroups.xml
235     fi
236     # yum-2.0.x
237     if [ -x /usr/bin/yum-arch ] ; then
238         yum-arch $data/var/www/html/install-rpms/planetlab
239     fi
240     # yum-2.4.x
241     if [ -x /usr/bin/createrepo ] ; then
242         if [ -f $data/var/www/html/install-rpms/planetlab/yumgroups.xml ] ; then
243             groupfile="-g yumgroups.xml"
244         fi
245         createrepo $groupfile $data/var/www/html/install-rpms/planetlab
246     fi
247 fi
248
249 # Bootstrap the system for quicker startup (and to populate the
250 # PlanetLabConf tables from PLC, which may not be accessible
251 # later). The bootstrap.xml configuration overlay configures the web
252 # server to run on an alternate port (in case the build machine itself
253 # is running a web server on port 80). Start everything up to
254 # bootstrap the database, then shut it back down again immediately.
255 echo "* Bootstrapping installation"
256
257 install -D -m 644 bootstrap.xml $data/etc/planetlab/configs/bootstrap.xml
258
259 # Otherwise, host.init will try to read /etc/sysconfig/plc
260 export PLC_ROOT=$PWD/$root
261 export PLC_DATA=$PWD/$data
262 #export PLC_OPTIONS="-v"
263
264 ./host.init start
265 RETVAL=$?
266
267 # Remove ISO and USB images, which take up >100MB but only take a
268 # couple of seconds to generate at first boot.
269 rm -f $data/var/www/html/download/*.{iso,usb}
270
271 ./host.init stop
272 RETVAL=$(($RETVAL+$?))
273
274 # Restore default configuration
275 rm -f $data/etc/planetlab/plc_config.xml $data/etc/planetlab/configs/bootstrap.xml
276
277 exit $RETVAL