source: fedkit/federate.sh @ 4450b24

axis_examplecompt_changesinfo-opsversion-1.30version-2.00version-3.01version-3.02
Last change on this file since 4450b24 was 4450b24, checked in by Ted Faber <faber@…>, 15 years ago

two errors in federate!

  • Property mode set to 100755
File size: 6.9 KB
Line 
1#!/bin/sh
2
3# Set up a federated environment on a client.  Unmount all local file systems,
4# erase all local accounts and then bring in accounts and file systems from the
5# master testbed.  Once all that's done, restore client communication to the
6# local bossnode and execute any startup command passed in as arguments to this
7# script.
8
9
10# The file containing the DNS name of the current boss
11BOSSNODE="/usr/local/etc/emulab/bossnode"
12
13# Ports that the master gateway will forward
14PORTS="139 7777"
15# network cat command (to listen for the gateway)
16NC="/usr/bin/nc"
17# Emulab rc scripts directory
18RCDIR="/usr/local/etc/emulab/rc"
19
20# Emulab rc script to reset accounts and federation srcipt to start the smb
21# automount process.
22RCACCT="rc.accounts"
23SMBMOUNT="smbmount.`uname`.pl"
24
25# Find the right version of pkill.  For killing.
26if [ -x "/usr/bin/pkill" ] ; then 
27        PKILL="/usr/bin/pkill"
28else
29        if [ -x "/bin/pkill" ] ; then 
30                PKILL="/bin/pkill"
31        else
32                PKILL="echo"
33        fi
34fi
35
36if [ -x "/usr/bin/perl" ]; then
37    PERL="/usr/bin/perl"
38else
39    if [ -x "/usr/local/bin/perl" ]; then
40        PERL="/usr/local/bin/perl"
41    else
42        # Wing it...
43        PERL="perl"
44    fi
45fi
46
47# Find somewhere safe to stop
48cd /tmp
49
50if [ -f $BOSSNODE ]
51then
52        rm -f $BOSSNODE
53fi
54
55EMUDIR="/usr/local/etc/emulab/"
56
57# Find this experiment's stashed scripts.  (Perl for advanced parsing)
58PROJECT=`$EMUDIR/tmcc -b status | $PERL -ne '/ALLOCATED=([^\/]+)\/([^\s]+)/ && print "$1\n";'`
59EXP=`$EMUDIR/tmcc -b status | $PERL -ne '/ALLOCATED=([^\/]+)\/([^\s]+)/ && print "$2\n";'`
60CONFIGDIR="/proj/$PROJECT/exp/$EXP/tmp"
61SCRIPTDIR="/usr/local/federation/bin"
62
63# Die if Scripts are not where they should be.  NB, this is checked by the
64# bootstrapper, too, so a failure here is unlikely.
65if [ -z "$CONFIGDIR" ] ; then
66    echo "Can't find federation configs.  Tmcc status says:"
67    $EMUDIR/tmcc -b status
68    exit 1;
69fi
70
71# Leave the client configuration information where clients can use it
72mkdir -p "/usr/local/federation/etc"
73cp "$CONFIGDIR/client.conf" "/usr/local/federation/etc"
74chmod 644 "/usr/local/federation/etc/client.conf"
75
76# Get our gateway, share, and mount user from the configuration file.
77# There's probably a way to get all three at once, but this works.
78GATEWAY=`$PERL -ne '/ControlGateway:\s+(.*)/i && print "$1\n";' $CONFIGDIR/client.conf`
79SHARE=`$PERL -ne '/SMBShare:\s+(.*)/i && print "$1\n";' $CONFIGDIR/client.conf`
80SMBUSER=`$PERL -ne '/ProjectUser:\s+(.*)/i && print "$1\n";' $CONFIGDIR/client.conf`
81SMBPROJECT=`$PERL -ne '/ProjectName:\s+(.*)/i && print "$1\n";' $CONFIGDIR/client.conf`
82
83# If this is empty confusion reigns.  Set a default.
84if [ -z "$SHARE" ]; then
85        SHARE="USERS"
86fi
87
88# XXX: modified seer daemon to read a config file.  Not in the tarfile yet.  If
89# we see one, and there's a /usr/seer/backend/daemon.py, replace that one with
90# the local one.
91if [ -e /usr/seer/backend/daemon.py ] && [ -e $SCRIPTDIR/daemon.py ]; then
92        /bin/cp $SCRIPTDIR/daemon.py /usr/seer/backend/daemon.py
93fi
94
95if [ -e /usr/seer/backend/experiment-setup.py ] && [ -e $SCRIPTDIR/experiment-setup.py ]; then
96        /bin/cp $SCRIPTDIR/experiment-setup.py /usr/seer/backend/experiment-setup.py
97fi
98
99# Copy the seer.conf to the local /tmp if there is one
100
101if [ -e $CONFIGDIR/seer.conf ]; then
102        /bin/cp $CONFIGDIR/seer.conf /tmp
103fi
104
105while [ -z "$GWIP" ]; do
106        GWIP=`host -N 10 $GATEWAY | $PERL -ne 's/.* has address // && print;'`
107        echo "GWIP is $GWIP"
108        sleep 10
109done
110# Copy the global hostnames file into /etc/hosts so this node can address
111# others in the experiment on other testbeds.  The extra steps preserves teh
112# localhost entry that's aliased to this host's name.
113grep 127\\.0\\.0\\.1 /etc/hosts > /tmp/hosts
114cat "$CONFIGDIR/hosts" >> /tmp/hosts
115# If there's no node in this experiment called control, fake one so
116# that SEER events get through (if SEER's in use)
117if ! grep -q control $CONFIGDIR/hosts; then
118        echo "$GWIP     control.$EXP.$PROJECT" >> /tmp/hosts
119fi
120cp /tmp/hosts /etc/hosts && rm /tmp/hosts
121
122# XXX:
123# The standard emulab rc.accounts script won't replace existing user accounts
124# with our new ones, so we have to patch it to do so.  This is obviously pretty
125# fragile and needs to change.  To make matters worse, our FBSD62-SMB images
126# contain the patched rc.accounts, so this patching step will fail there.
127
128if [ -e /usr/local/federation/etc/rc.accounts.patch ]; then
129        cd "$EMUDIR/rc"
130        patch -f < /usr/local/federation/etc/rc.accounts.patch
131        cd /tmp
132fi
133
134#
135# Spin on our gateway!
136#
137
138echo "Waiting for the tunnel to come online."
139
140for port in $PORTS
141do
142        until $NC -z $GATEWAY $port
143        do
144                sleep 5
145        done
146done
147
148#
149# Setup TMCC to use our gateway
150#
151
152echo "Configuring TMCC."
153echo $GATEWAY > $BOSSNODE
154
155
156#
157# Unmount stuff before messing with accounts
158#
159
160case `uname` in
161        "FreeBSD")
162                umount -A -f -t nfs,smbfs,cifs
163                ;;
164        "Linux")
165                # Linux doesn't believe in -A so pull the filesystems out of
166                # /etc/mtab and umount them individually
167                for f in `$PERL -nae 'print "$F[1]\n" if $F[2] =~ /(nfs|cifs|smbfs)/;' /etc/mtab`; do
168                        umount -f $f
169                done
170                ;;
171esac
172
173#
174# Setup new accounts
175#
176
177# Clear the cache, just in case:
178rm -f /var/emulab/boot/tmcc/accounts
179
180$RCDIR/rc.accounts reconfig
181
182#
183# Call the smbmount perl script, this invokes the automounter to mount the
184# needed smb filesystems.
185#
186echo "Mounting via SMB."
187$PERL "/usr/local/federation/bin/$SMBMOUNT" $SHARE $GATEWAY $SMBUSER $SMBPROJECT
188
189echo "Restoring old bossnode"
190# remove bossnode override
191/bin/rm -f $BOSSNODE
192# Also clear any cached data that might interfere with rourte construction.
193/bin/rm -f /var/emulab/boot/tmcc/ifconfig
194
195# I remain unclear why ospfd seems screwed up after the resetting of accounts
196# and mounts.  This seems to fix it, but it's not very satisfying.  At this
197# point the federated topology is complete, so any problems with routing in a
198# partial topology -e.g. failed or partial bridging - that might have confused
199# the router should be gone.
200$PKILL ospf
201$PKILL gated
202# XXX Danger, hack ahead.  Apparently our FC6-SMB image and emulab disagree
203# about where gated lives.  This will alias it.
204if [ ! -x /usr/sbin/gated ] ; then 
205        if [ -x /sbin/gated ] ; then
206                ln /sbin/gated /usr/sbin/gated
207        fi
208fi
209/usr/local/etc/emulab/rc/rc.route boot
210
211# And restore the ifconfig information because SEER wants it. (SEER pulls this
212# from tmcc now
213# "$EMUDIR/tmcc" ifconfig > /var/emulab/boot/tmcc/ifconfig
214
215# SEER feels pain and confusion if times are wrong.  This lays a big lick on
216# ntp sets the time directly and then restarts it.  XXX FreeBSD incantation is
217# untested.
218
219case `uname` in
220        "FreeBSD")
221                /etc/rc.d/ntpd stop
222                /usr/sbin/ntpdate boss
223                /etc/rc.d/ntpd start
224                ;;
225        "Linux")
226                /etc/rc.d/init.d/ntpd stop
227                /usr/sbin/ntpdate boss
228                /etc/rc.d/init.d/ntpd start
229                ;;
230esac
231
232# Execute any command passed in as a startcmd.  This basically daisy chains the
233# startcmd.  This needs to become a perl script to have uniform behavior here.
234echo "*$1* *$2*"
235if [ ! -z "$1" ]; then 
236        echo "calling *$1* *$2*"
237        case `uname` in
238                "FreeBSD")
239                        su -l "$1" -c "$2"
240                        ;;
241                "Linux")
242                        su "$1" --command="$2"
243                        ;;
244        esac
245fi
Note: See TracBrowser for help on using the repository browser.