oops
[build.git] / vbuild-init-lxc.sh
1 #!/bin/bash
2 # -*-shell-*-
3
4 #shopt -s huponexit
5
6 COMMAND=$(basename $0)
7 DIRNAME=$(dirname $0)
8 BUILD_DIR=$(pwd)
9
10 # pkgs parsing utilities
11 PATH=$(dirname $0):$PATH export PATH
12 . build.common
13
14 DEFAULT_FCDISTRO=f16
15 DEFAULT_PLDISTRO=planetlab
16 DEFAULT_PERSONALITY=linux64
17 DEFAULT_IFNAME=eth0
18
19 COMMAND_VBUILD="vbuild-init-lxc.sh"
20 COMMAND_MYPLC="vtest-init-lxc.sh"
21
22 lxc_version="0.8.0-rc2"
23
24 function bridge_init () {
25
26     # turn on verbosity
27     set -x
28
29     # constant
30     INTERFACE_BRIDGE=br0
31
32     # Default Value for INTERFACE_LAN
33     INTERFACE_LAN=$(netstat -rn | grep '^0.0.0.0' | awk '{print $8;}')
34
35
36     echo "========== $COMMAND: entering start - beg"
37     hostname
38     uname -a
39     ifconfig
40     netstat -rn
41     echo "========== $COMMAND: entering start - end"
42
43     # disable netfilter calls for bridge interface (they cause panick on 2.6.35 anyway)
44     #
45     # another option would be to accept the all forward packages for
46     # bridged interface like: -A FORWARD -m physdev --physdev-is-bridged -j ACCEPT
47     sysctl net.bridge.bridge-nf-call-iptables=0
48     sysctl net.bridge.bridge-nf-call-ip6tables=0
49     sysctl net.bridge.bridge-nf-call-arptables=0
50
51     # take extra arg for ifname, if provided
52     [ -n "$1" ] && { INTERFACE_LAN=$1; shift ; }
53
54     #if we have already configured the same host_box no need to do it again
55     /sbin/ifconfig $INTERFACE_BRIDGE &> /dev/null && {
56         echo "Bridge interface $INTERFACE_BRIDGE already set up - $COMMAND start exiting"
57         return 0
58     }
59     /sbin/ifconfig $INTERFACE_LAN &>/dev/null || {
60         echo "Cannot use interface $INTERFACE_LAN - exiting"
61         exit 1
62     }
63
64     
65     #Getting host IP/masklen
66     address=$(/sbin/ip addr show $INTERFACE_LAN | grep -v inet6 | grep inet | head --lines=1 | awk '{print $2;}')
67     [ -z "$address" ] && { echo "ERROR: Could not determine IP address for $INTERFACE_LAN" ; exit 1 ; }
68
69 broadcast=$(/sbin/ip addr show $INTERFACE_LAN | grep -v inet6 | grep inet | head --lines=1 | awk '{print $4;}')
70     [ -z "$broadcast" ] && echo "WARNING: Could not determine broadcast address for $INTERFACE_LAN"
71
72     gateway=$(netstat -rn | grep '^0.0.0.0' | awk '{print $2;}')
73     [ -z "$gateway" ] && echo "WARNING: Could not determine gateway IP"
74
75     # creating the bridge
76     echo "Creating bridge INTERFACE_BRIDGE=$INTERFACE_BRIDGE"
77     brctl addbr $INTERFACE_BRIDGE
78     #brctl stp $INTERFACE_BRIDGE yes
79     brctl addif $INTERFACE_BRIDGE $INTERFACE_LAN
80     echo "Activating promiscuous mode INTERFACE_LAN=$INTERFACE_LAN"
81     /sbin/ifconfig $INTERFACE_LAN 0.0.0.0 promisc up
82     sleep 2
83     echo "Setting bridge address=$address broadcast=$broadcast"
84     # static
85     /sbin/ifconfig $INTERFACE_BRIDGE $address broadcast $broadcast up
86     sleep 1
87
88     #Reconfigure the routing table
89     echo "Configuring gateway=$gateway"
90     route add default gw $gateway
91
92     echo "========== $COMMAND: exiting start - beg"
93     ifconfig
94     netstat -rn
95     echo "========== $COMMAND: exiting start - end"
96
97
98 return 0
99
100 }
101
102
103 function failure () {
104     echo "$COMMAND : Bailing out"
105     exit 1
106 }
107
108 function cidr_notation () {
109
110 netmask=$1; shift
111 cidr=0
112 for i in $(seq 1 4) ; do
113     part=$(echo $netmask | cut -d. -f $i)
114     case $part in
115         "255") cidr=$((cidr + 8));;
116         "254") cidr=$((cidr + 7));;
117         "252") cidr=$((cidr + 6));;
118         "248") cidr=$((cidr + 5));;
119         "240") cidr=$((cidr + 4));;
120         "224") cidr=$((cidr + 3));;
121         "192") cidr=$((cidr + 2));;
122         "128") cidr=$((cidr + 1));;
123         "0") cidr=$((cidr + 0));;
124      esac
125 done
126 echo $cidr
127
128 }
129
130 function check_yum_installed () {
131     package=$1; shift
132     rpm -q $package >& /dev/null || yum -y install $package
133 }
134
135 function check_yumgroup_installed () {
136     group="$1"; shift
137     yum grouplist "$group" | grep -q Installed || { yum -y groupinstall "$group" ; }
138 }
139
140 function prepare_host() {
141         
142     #################### lxc-tools : rebuild as current fedora release has flaws
143     #install development tools
144     check_yumgroup_installed "Development Tools"
145     #install libcap-devel, libvirt
146     check_yum_installed libcap-devel
147     check_yum_installed libvirt
148
149     #retrieve and install lxc from sources 
150     #raw_version=$(lxc-version ||: )
151     #lxc_installed_version=$(echo $raw_version | sed -e 's,.*: ,,')
152     #if [ "$lxc_installed_version" != "$lxc_version" ] ; then
153     if [ ! -f /usr/bin/lxc-ls ] ; then
154         #echo "Expecting version" '['$lxc_version']'
155         #echo "Found version" '['$lxc_installed_version']'
156         echo "Installing lxc ..."
157         cd /root
158         [ -d lxc ] || git clone git://lxc.git.sourceforge.net/gitroot/lxc/lxc 
159         cd lxc
160         git pull
161         git checkout $lxc_version
162         ./autogen.sh
163         ./configure --prefix=/usr --exec-prefix=/usr
164         make
165         make install
166         mkdir -p /usr/var/lib/
167         [ -d /usr/var/lib/lxc ] || ln -s /var/lib/lxc /usr/var/lib/lxc
168         cd $BUILD_DIR
169     fi
170  
171 #    #create a placeholder (just a hack to make lxc works)
172 #    [ -d "/usr/local/var/lib" ] || mkdir -p /usr/local/var/lib
173
174     #################### bride initialization
175     check_yum_installed bridge-utils
176     #Bridge init
177     isInstalled=$(netstat -rn | grep '^0.0.0.0' | awk '{print $8;}')
178     if [ "$isInstalled" != "br0" ] ; then
179         bridge_init
180         sleep 5
181     fi
182
183     return 0
184 }
185
186
187
188 function configure_fedora() {
189
190     # disable selinux in fedora
191     mkdir -p $rootfs_path/selinux
192     echo 0 > $rootfs_path/selinux/enforce
193
194    # configure the network 
195
196     cat <<EOF > ${rootfs_path}/etc/sysconfig/network-scripts/ifcfg-$IFNAME
197 DEVICE=$IFNAME
198 BOOTPROTO=static
199 ONBOOT=yes
200 HOSTNAME=$HOSTNAME
201 IPADDR=$IP
202 NETMASK=$NETMASK
203 GATEWAY=$GATEWAY
204 NM_CONTROLLED=no
205 TYPE=Ethernet
206 MTU=1500
207 EOF
208
209 # set the hostname
210     cat <<EOF > ${rootfs_path}/etc/sysconfig/network
211 NETWORKING=yes
212 HOSTNAME=$HOSTNAME
213 EOF
214
215     # set minimal hosts
216 #    cat <<EOF > $rootfs_path/etc/hosts
217 #127.0.0.1 localhost $HOSTNAME
218 #EOF
219
220     dev_path="${rootfs_path}/dev"
221     rm -rf $dev_path
222     mkdir -p $dev_path
223     mknod -m 666 ${dev_path}/null c 1 3
224     mknod -m 666 ${dev_path}/zero c 1 5
225     mknod -m 666 ${dev_path}/random c 1 8
226     mknod -m 666 ${dev_path}/urandom c 1 9
227     mkdir -m 755 ${dev_path}/pts
228     mkdir -m 1777 ${dev_path}/shm
229     mknod -m 666 ${dev_path}/tty c 5 0
230     mknod -m 666 ${dev_path}/tty0 c 4 0
231     mknod -m 666 ${dev_path}/tty1 c 4 1
232     mknod -m 666 ${dev_path}/tty2 c 4 2
233     mknod -m 666 ${dev_path}/tty3 c 4 3
234     mknod -m 666 ${dev_path}/tty4 c 4 4
235     mknod -m 600 ${dev_path}/console c 5 1
236     mknod -m 666 ${dev_path}/full c 1 7
237     mknod -m 600 ${dev_path}/initctl p
238     mknod -m 666 ${dev_path}/ptmx c 5 2
239
240     #echo "setting root passwd to $root_password"
241     #echo "root:$root_password" | chroot $rootfs_path chpasswd
242
243     return 0
244 }
245
246
247 function configure_fedora_init() {
248
249     sed -i 's|.sbin.start_udev||' ${rootfs_path}/etc/rc.sysinit
250     sed -i 's|.sbin.start_udev||' ${rootfs_path}/etc/rc.d/rc.sysinit
251     chroot ${rootfs_path} chkconfig udev-post off
252     chroot ${rootfs_path} chkconfig network on
253 }
254
255
256 function configure_fedora_systemd() {
257
258     unlink ${rootfs_path}/etc/systemd/system/default.target
259     touch ${rootfs_path}/etc/fstab
260     chroot ${rootfs_path} ln -s /dev/null //etc/systemd/system/udev.service
261     chroot ${rootfs_path} ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
262     #dependency on a device unit fails it specially that we disabled udev
263     sed -i 's/After=dev-%i.device/After=/' ${rootfs_path}/lib/systemd/system/getty\@.service
264     chroot ${rootfs_path} chkconfig network on
265 }
266
267 function download_fedora() {
268 set -x
269     # check the mini fedora was not already downloaded
270     INSTALL_ROOT=$cache/partial
271     echo $INSTALL_ROOT
272     mkdir -p $INSTALL_ROOT
273     if [ $? -ne 0 ]; then
274         echo "Failed to create '$INSTALL_ROOT' directory"
275         return 1
276     fi
277
278     # download a mini fedora into a cache
279     echo "Downloading fedora minimal ..."
280     YUM="yum --installroot $INSTALL_ROOT -y --nogpgcheck --releasever=$release"
281     PKG_LIST="yum initscripts passwd rsyslog vim-minimal dhclient chkconfig rootfiles policycoreutils openssh-server openssh-clients"
282   
283     
284     MIRROR_URL=http://mirror.onelab.eu/fedora/releases/$release/Everything/$arch/os
285     RELEASE_URL="$MIRROR_URL/Packages/fedora-release-$release-1.noarch.rpm"
286     echo "Fetching from $RELEASE_URL"
287     curl -f "$RELEASE_URL" > $INSTALL_ROOT/fedora-release-$release.noarch.rpm
288     
289     mkdir -p $INSTALL_ROOT/var/lib/rpm
290     rpm --root $INSTALL_ROOT  --initdb
291     rpm --root $INSTALL_ROOT -ivh $INSTALL_ROOT/fedora-release-$release.noarch.rpm
292     echo "$YUM install $PKG_LIST"
293     $YUM install $PKG_LIST
294
295     if [ $? -ne 0 ]; then
296         echo "Failed to download the rootfs, aborting."
297         return 1
298     fi
299
300     mv "$INSTALL_ROOT" "$cache/rootfs"
301     echo "Download complete."
302
303     return 0
304 }
305
306
307 function copy_fedora() {
308 set -x
309     # make a local copy of the minifedora
310     echo -n "Copying rootfs to $rootfs_path ..."
311     mkdir -p $rootfs_path
312     rsync -a $cache/rootfs/ $rootfs_path/
313     return 0
314 }
315
316
317 function update_fedora() {
318 set -x
319     YUM="yum --installroot $cache/rootfs -y --nogpgcheck"
320     $YUM update
321 }
322
323
324 function install_fedora() {
325     set -x
326
327     mkdir -p /var/lock/subsys/
328     (
329         flock -n -x 200
330         if [ $? -ne 0 ]; then
331             echo "Cache repository is busy."
332             return 1
333         fi
334
335         echo "Checking cache download in $cache/rootfs ... "
336         if [ ! -e "$cache/rootfs" ]; then
337             download_fedora
338             if [ $? -ne 0 ]; then
339                 echo "Failed to download 'fedora base'"
340                 return 1
341             fi
342         else
343             echo "Cache found. Updating..."
344             update_fedora
345             if [ $? -ne 0 ]; then
346                 echo "Failed to update 'fedora base', continuing with last known good cache"
347             else
348                 echo "Update finished"
349             fi
350         fi
351
352         echo "Copy $cache/rootfs to $rootfs_path ... "
353         copy_fedora
354         if [ $? -ne 0 ]; then
355             echo "Failed to copy rootfs"
356             return 1
357         fi
358
359         return 0
360
361         ) 200>/var/lock/subsys/lxc
362
363     return $?
364 }
365
366
367 function copy_configuration() {
368
369     mkdir -p $config_path
370     cat <<EOF >> $config_path/config
371 lxc.utsname = $lxc
372 lxc.arch = $arch2
373 lxc.tty = 4
374 lxc.pts = 1024
375 lxc.rootfs = $rootfs_path
376 lxc.mount  = $config_path/fstab
377 #networking
378 lxc.network.type = $lxc_network_type
379 lxc.network.flags = up
380 lxc.network.link = $lxc_network_link
381 lxc.network.name = $IFNAME
382 lxc.network.mtu = 1500
383 lxc.network.ipv4 = $IP/$CIDR
384 #cgroups
385 #lxc.cgroup.devices.deny = a
386 # /dev/null and zero
387 lxc.cgroup.devices.allow = c 1:3 rwm
388 lxc.cgroup.devices.allow = c 1:5 rwm
389 # consoles
390 lxc.cgroup.devices.allow = c 5:1 rwm
391 lxc.cgroup.devices.allow = c 5:0 rwm
392 lxc.cgroup.devices.allow = c 4:0 rwm
393 lxc.cgroup.devices.allow = c 4:1 rwm
394 # /dev/{,u}random
395 lxc.cgroup.devices.allow = c 1:9 rwm
396 lxc.cgroup.devices.allow = c 1:8 rwm
397 lxc.cgroup.devices.allow = c 136:* rwm
398 lxc.cgroup.devices.allow = c 5:2 rwm
399 # rtc
400 lxc.cgroup.devices.allow = c 254:0 rwm
401 lxc.cgroup.devices.allow = b 255:0 rwm
402 EOF
403
404
405
406     cat <<EOF > $config_path/fstab
407 proc            $rootfs_path/proc         proc    nodev,noexec,nosuid 0 0
408 devpts          $rootfs_path/dev/pts      devpts defaults 0 0
409 sysfs           $rootfs_path/sys          sysfs defaults  0 0
410 EOF
411     if [ $? -ne 0 ]; then
412         echo "Failed to add configuration"
413         return 1
414     fi
415
416     return 0
417 }
418
419
420
421
422 # overwrite lxc's internal yum config
423 function configure_yum_in_lxc () {
424     set -x 
425     set -e 
426     trap failure ERR INT
427
428     lxc=$1; shift
429     fcdistro=$1; shift
430     pldistro=$1; shift
431
432     echo "Initializing yum.repos.d in $lxc"
433     rm -f $rootfs_path/etc/yum.repos.d/*
434
435     cat > $rootfs_path/etc/yum.repos.d/building.repo <<EOF
436 [fedora]
437 name=Fedora $release - \$basearch
438 baseurl=http://mirror.onelab.eu/fedora/releases/$release/Everything/\$basearch/os/
439 enabled=1
440 metadata_expire=7d
441 gpgcheck=1
442 gpgkey=http://mirror.onelab.eu/keys/RPM-GPG-KEY-fedora-$release-primary
443
444 [updates]
445 name=Fedora $release - \$basearch - Updates
446 baseurl=http://mirror.onelab.eu/fedora/updates/$release/\$basearch/
447 enabled=1
448 metadata_expire=7d
449 gpgcheck=1
450 gpgkey=http://mirror.onelab.eu/keys/RPM-GPG-KEY-fedora-$release-primary
451 EOF
452     
453     # for using vtest-init-lxc.sh as a general-purpose lxc creation wrapper
454     # just mention 'none' as the repo url
455     if [ -n "$MYPLC_MODE" -a "$REPO_URL" != "none" ] ; then
456         if [ ! -d $rootfs_path/etc/yum.repos.d ] ; then
457             echo "WARNING : cannot create myplc repo"
458         else
459             # exclude kernel from fedora repos 
460             yumexclude=$(pl_plcyumexclude $fcdistro $pldistro $DIRNAME)
461             for repo in $rootfs_path/etc/yum.repos.d/* ; do
462                 [ -f $repo ] && yumconf_exclude $repo "exclude=$yumexclude" 
463             done
464             # the build repo is not signed at this stage
465             cat > $rootfs_path/etc/yum.repos.d/myplc.repo <<EOF
466 [myplc]
467 name= MyPLC
468 baseurl=$REPO_URL
469 enabled=1
470 gpgcheck=0
471 EOF
472         fi
473     fi
474 }    
475
476 # return yum or debootstrap
477 function package_method () {
478     fcdistro=$1; shift
479     case $fcdistro in
480         f[0-9]*|centos[0-9]*|sl[0-9]*) echo yum ;;
481         lenny|etch) echo debootstrap ;;
482         *) echo Unknown distro $fcdistro ;;
483     esac 
484 }
485
486 # return arch from debian distro and personality
487 function canonical_arch () {
488     personality=$1; shift
489     fcdistro=$1; shift
490     case $(package_method $fcdistro) in
491         yum)
492             case $personality in *32) echo i386 ;; *64) echo x86_64 ;; *) echo Unknown-arch-1 ;; esac ;;
493         debootstrap)
494             case $personality in *32) echo i386 ;; *64) echo amd64 ;; *) echo Unknown-arch-2 ;; esac ;;
495         *)
496             echo Unknown-arch-3 ;;
497     esac
498 }
499
500 # the new test framework creates /timestamp in /vservers/<name> *before* populating it
501 function almost_empty () { 
502     dir="$1"; shift ; 
503     # non existing is fine
504     [ ! -d $dir ] && return 0; 
505     # need to have at most one file
506     count=$(cd $dir; ls | wc -l); [ $count -le 1 ]; 
507 }
508
509 function setup_lxc() {
510
511     set -x
512     set -e
513     #trap failure ERR INT
514
515     lxc=$1; shift
516     fcdistro=$1; shift
517     pldistro=$1; shift
518     personality=$1; shift
519
520     # create lxc container 
521     copy_configuration
522     if [ $? -ne 0 ]; then
523         echo "failed write configuration file"
524         exit 1
525     fi
526
527     install_fedora
528     if [ $? -ne 0 ]; then
529         echo "failed to install fedora"
530         exit 1
531     fi
532
533     configure_fedora
534     if [ $? -ne 0 ]; then
535         echo "failed to configure fedora for a container"
536         exit 1
537     fi
538
539     type /bin/systemd >/dev/null 2>&1
540     if [ $? -ne 0 ]; then
541         configure_fedora_init
542     else
543         configure_fedora_systemd
544     fi
545
546     # Enable cgroup
547     mkdir $rootfs_path/cgroup
548     
549     # set up resolv.conf
550     cp /etc/resolv.conf $rootfs_path/etc/resolv.conf
551     # and /etc/hosts for at least localhost
552     [ -f $rootfs_path/etc/hosts ] || echo "127.0.0.1 localhost localhost.localdomain" > $rootfs_path/etc/hosts
553     
554     # ssh access to lxc
555     mkdir $rootfs_path/root/.ssh
556     cat /root/.ssh/id_rsa.pub >> $rootfs_path/root/.ssh/authorized_keys
557     
558     # start container
559     lxc-start -d -n $lxc
560
561     lxc-wait -n $lxc -s RUNNING
562
563     echo $IP is up, waiting for ssh...
564
565     ssh_up=""
566     for i in $(seq 1 10); do
567         echo "ssh attempt $i ..."
568         ssh -o "StrictHostKeyChecking no" $IP 'uname -i' && { ssh_up=true; break ; } || :
569         sleep 2
570     done
571
572     [ -z $ssh_up ] && echo "SSHD in container $lxc is not running"
573      
574
575     # rpm --rebuilddb
576     chroot $rootfs_path rpm --rebuilddb
577     #ssh -o "StrictHostKeyChecking no" $IP "rpm --rebuilddb"
578
579     configure_yum_in_lxc $lxc $fcdistro $pldistro
580
581     return 0
582 }
583
584 function devel_or_vtest_tools () {
585
586     set -x 
587     set -e 
588     trap failure ERR INT
589
590     lxc=$1; shift
591     fcdistro=$1; shift
592     pldistro=$1; shift
593     personality=$1; shift
594
595     pkg_method=$(package_method $fcdistro)
596
597     # check for .pkgs file based on pldistro
598     if [ -n "$VBUILD_MODE" ] ; then
599         pkgsname=devel.pkgs
600     else
601         pkgsname=vtest.pkgs
602     fi
603     pkgsfile=$(pl_locateDistroFile $DIRNAME $pldistro $pkgsname)
604
605     ### install individual packages, then groups
606     # get target arch - use uname -i here (we want either x86_64 or i386)
607    
608     lxc_arch=$(chroot $rootfs_path uname -i)
609     # on debian systems we get arch through the 'arch' command
610     [ "$lxc_arch" = "unknown" ] && lxc_arch=$(chroot $rootfs_path arch)
611
612     packages=$(pl_getPackages -a $lxc_arch $fcdistro $pldistro $pkgsfile)
613     groups=$(pl_getGroups -a $lxc_arch $fcdistro $pldistro $pkgsfile)
614
615     case "$pkg_method" in
616         yum)
617             [ -n "$packages" ] && chroot $rootfs_path yum -y install $packages
618             for group_plus in $groups; do
619                 group=$(echo $group_plus | sed -e "s,+++, ,g")
620                 chroot $rootfs_path yum -y groupinstall "$group"
621             done
622             # store current rpm list in /init-lxc.rpms in case we need to check the contents
623             chroot $rootfs_path rpm -aq > $rootfs_path/init-lxc.rpms
624             ;;
625         debootstrap)
626             chroot $rootfs_path apt-get update
627             for package in $packages ; do 
628                 chroot $rootfs_path  apt-get install -y $package 
629             done
630             ### xxx todo install groups with apt..
631             ;;
632         *)
633             echo "unknown pkg_method $pkg_method"
634             ;;
635     esac
636
637     return 0
638 }
639
640 function post_install () {
641     if [ -n "$VBUILD_MODE" ] ; then
642         post_install_vbuild "$@" 
643     else
644         post_install_myplc "$@"
645     fi
646     # setup localtime from the host
647     lxc=$1; shift 
648     cp /etc/localtime $rootfs_path/etc/localtime
649 }
650
651 function post_install_vbuild () {
652
653     set -x 
654     set -e 
655     trap failure ERR INT
656
657     lxc=$1; shift
658     personality=$1; shift
659
660 ### From myplc-devel-native.spec
661 # be careful to backslash $ in this, otherwise it's the root context that's going to do the evaluation
662     cat << EOF | chroot $rootfs_path bash -x
663     # set up /dev/loop* in lxc
664     for i in \$(seq 0 255) ; do
665         mknod -m 640 /dev/loop\$i b 7 \$i
666     done
667     
668     # create symlink for /dev/fd
669     [ ! -e "/dev/fd" ] && ln -s /proc/self/fd /dev/fd
670
671     # modify /etc/rpm/macros to not use /sbin/new-kernel-pkg
672     sed -i 's,/sbin/new-kernel-pkg:,,' /etc/rpm/macros
673     if [ -h "/sbin/new-kernel-pkg" ] ; then
674         filename=\$(readlink -f /sbin/new-kernel-pkg)
675         if [ "\$filename" == "/sbin/true" ] ; then
676                 echo "WARNING: /sbin/new-kernel-pkg symlinked to /sbin/true"
677                 echo "\tmost likely /etc/rpm/macros has /sbin/new-kernel-pkg declared in _netsharedpath."
678                 echo "\tPlease remove /sbin/new-kernel-pkg from _netsharedpath and reintall mkinitrd."
679                 exit 1
680         fi
681     fi
682     
683     # customize root's prompt
684     cat << PROFILE > /root/.profile
685 export PS1="[$lxc] \\w # "
686 PROFILE
687
688     uid=2000
689     gid=2000
690     
691     # add a "build" user to the system
692     builduser=\$(grep "^build:" /etc/passwd | wc -l)
693     if [ \$builduser -eq 0 ] ; then
694         groupadd -o -g \$gid build;
695         useradd -o -c 'Automated Build' -u \$uid -g \$gid -n -M -s /bin/bash build;
696     fi
697
698 # Allow build user to build certain RPMs as root
699     if [ -f /etc/sudoers ] ; then
700         buildsudo=\$(grep "^build.*ALL=(ALL).*NOPASSWD:.*ALL"  /etc/sudoers | wc -l)
701         if [ \$buildsudo -eq 0 ] ; then
702             echo "build   ALL=(ALL)       NOPASSWD: ALL" >> /etc/sudoers
703         fi
704         sed -i 's,^Defaults.*requiretty,#Defaults requiretty,' /etc/sudoers
705     fi
706 #
707 EOF
708
709 }
710
711 function post_install_myplc  () {
712     set -x 
713     set -e 
714     trap failure ERR INT
715
716     lxc=$1; shift
717     personality=$1; shift
718
719 # be careful to backslash $ in this, otherwise it's the root context that's going to do the evaluation
720     cat << EOF | chroot $rootfs_path bash -x
721
722     # create /etc/sysconfig/network if missing
723     [ -f /etc/sysconfig/network ] || echo NETWORKING=yes > /etc/sysconfig/network
724
725     # create symlink for /dev/fd
726     [ ! -e "/dev/fd" ] && ln -s /proc/self/fd /dev/fd
727
728     # turn off regular crond, as plc invokes plc_crond
729     chkconfig crond off
730
731     # take care of loginuid in /etc/pam.d 
732     sed -i "s,#*\(.*loginuid.*\),#\1," /etc/pam.d/*
733
734     # customize root's prompt
735     cat << PROFILE > /root/.profile
736 export PS1="[$lxc] \\w # "
737 PROFILE
738
739 EOF
740 }
741
742 function usage () {
743     set +x 
744     echo "Usage: $COMMAND_VBUILD [options] lxc-name"
745     echo "Usage: $COMMAND_MYPLC [options] lxc-name repo-url [ -- lxc-options ]"
746     echo "Description:"
747     echo "   This command creates a fresh lxc instance, for building, or running, myplc"
748     echo "Supported options"
749     echo " -f fcdistro - for creating the root filesystem - defaults to $DEFAULT_FCDISTRO"
750     echo " -d pldistro - defaults to $DEFAULT_PLDISTRO"
751     echo " -p personality - defaults to $DEFAULT_PERSONALITY"
752     echo " -i ifname: determines ip and netmask attached to ifname, and passes it to the lxc"
753     echo "-- lxc-options"
754     echo "  --netdev : interface to be defined inside lxc"
755     echo "  --interface : IP to be defined for the lxc"
756     echo "  --hostname : Hostname to be defined for the lxc"
757     echo "With $COMMAND_MYPLC you can give 'none' as the URL, in which case"
758     echo "   myplc.repo does not get created"
759     exit 1
760 }
761
762 ### parse args and 
763 function main () {
764
765     #set -e
766     #trap failure ERR INT
767
768     case "$COMMAND" in
769         $COMMAND_VBUILD)
770             VBUILD_MODE=true ;;
771         $COMMAND_MYPLC)
772             MYPLC_MODE=true;;
773         *)
774             usage ;;
775     esac
776
777     VERBOSE=
778     RESISTANT=""
779     IFNAME=""
780     LXC_OPTIONS=""
781     while getopts "f:d:p:i:" opt ; do
782         case $opt in
783             f) fcdistro=$OPTARG;;
784             d) pldistro=$OPTARG;;
785             p) personality=$OPTARG;;
786             i) IFNAME=$OPTARG;;
787             *) usage ;;
788         esac
789     done
790         
791     shift $(($OPTIND - 1))
792
793     # parse fixed arguments
794     [[ -z "$@" ]] && usage
795     lxc=$1 ; shift
796     if [ -n "$MYPLC_MODE" ] ; then
797         [[ -z "$@" ]] && usage
798         REPO_URL=$1 ; shift
799     fi
800
801     # parse vserver options
802     if [[ -n "$@" ]] ; then
803         if [ "$1" == "--" ] ; then
804             shift
805             LXC_OPTIONS="$@"
806         else
807             usage
808         fi
809     fi
810
811     eval set -- "$LXC_OPTIONS"
812
813     while true
814      do
815         case "$1" in
816              --netdev)      IFNAME=$2; shift 2;;
817              --interface)   IP=$2; shift 2;;
818              --hostname)    HOSTNAME=$2; shift 2;;
819              *)             break ;;
820         esac
821       done
822
823    
824     if [ -n "$VBUILD_MODE" ] ; then
825         [ -z "$IFNAME" ] && IFNAME=$DEFAULT_IFNAME
826         [ -z "$HOSTNAME" ] && HOSTNAME=$lxc
827     fi
828
829     [ -z "$fcdistro" ] && fcdistro=$DEFAULT_FCDISTRO
830     [ -z "$pldistro" ] && pldistro=$DEFAULT_PLDISTRO
831     [ -z "$personality" ] && personality=$DEFAULT_PERSONALITY
832     
833     release=$(echo $fcdistro | cut -df -f2)
834
835     if [ "$personality" == "linux32" ]; then
836         arch=i386
837         arch2=x86
838     elif [ "$personality" == "linux64" ]; then
839         arch=x86_64
840         arch2=x86_64
841     else
842         echo "Unknown personality: $personality"
843     fi
844
845     # need lxc installed before we can run lxc-ls
846     # need bridge installed
847     prepare_host    
848
849     if [ -n "$VBUILD_MODE" ] ; then
850
851         # Bridge IP affectation
852         x=$(echo $personality | cut -dx -f2)
853         y=$(echo $fcdistro | cut -df -f2)
854         z=$(($x + $y))
855
856         IP="192.168.122.$z"
857         NETMASK="255.255.255.0"
858         GATEWAY="192.168.122.1"
859         
860         lxc_network_type=veth
861         lxc_network_link=virbr0
862         echo "the IP address of container $lxc is $IP "
863     else
864         [[ -z "$REPO_URL" ]] && usage
865         [[ -z "$IP" ]] && usage
866         NETMASK=$(ifconfig br0 | grep 'inet addr' | awk '{print $4}' | sed -e 's/.*://')
867         GATEWAY=$(route -n | grep 'UG' | awk '{print $2}')
868         [[ -z "$HOSTNAME" ]] && usage
869         lxc_network_type=veth
870         lxc_network_link=br0
871     fi
872
873     CIDR=$(cidr_notation $NETMASK)
874     
875
876     if [ "$(id -u)" != "0" ]; then
877           echo "This script should be run as 'root'"
878           exit 1
879     fi
880
881     path=/var/lib/lxc
882     rootfs_path=$path/$lxc/rootfs
883     config_path=$path/$lxc
884     cache_base=/var/cache/lxc/fedora/$arch
885     cache=$cache_base/$release
886     root_password=root
887     
888     # check whether the rootfs directory is created to know if the container exists
889     # bacause /var/lib/lxc/$lxc is already created while putting $lxc.timestamp
890     [ -d $rootfs_path ] && { echo "container $lxc already exists - exiting" ; exit 1 ; }
891
892     setup_lxc $lxc $fcdistro $pldistro $personality 
893
894     devel_or_vtest_tools $lxc $fcdistro $pldistro $personality
895
896     post_install $lxc $personality
897     
898
899     echo $COMMAND Done
900 }
901
902 main "$@"