minor optimizations
[util-vserver.git] / util-vserver / scripts / vserver.start
1 # $Id$  --*- sh -*--
2
3 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 #  
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; version 2 of the License.
8 #  
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #  
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 lock "$LOCKDIR"/vserver."$($_VSERVER_INFO "$VSERVER_DIR" CANONIFY)".startup
20
21 if isVserverRunning "$VSERVER_DIR"; then
22     echo $"vserver '$VSERVER_NAME' already running; aborting..." >&2
23     exit 1
24 fi
25
26 function cleanup()
27 {
28     set +e
29
30     test -z "$startsync_pipe"  || rm -f "$startsync_pipe"
31     test -z "$is_started"      || { unlock; return 0; }
32
33     if test "$is_configured" -a -z "$is_executed"; then
34         warning $"
35 An error occured while executing the vserver startup sequence; when
36 there are no other messages, it is very likely that the init-script
37 (${INITCMD_START[@]}) failed.
38
39 Common causes are:
40 * /etc/rc.d/rc on Fedora Core 1 and RH9 fails always; the 'apt-rpm' build
41   method knows how to deal with this, but on existing installations,
42   appending 'true' to this file will help."
43     fi
44
45     if test "$is_executed"; then
46         warning $"
47 An error occured after executing the vserver startup sequence. This
48 means that some processes may exist in the created context and the
49 manual execution of
50
51   $_VSERVER '$VSERVER_DIR' stop
52
53 is recommended to fix this."
54     else
55         warning $"
56
57 Failed to start vserver '$VSERVER_NAME'"
58     fi
59
60     test    "$OPTION_DEBUG"    || exec 2>/dev/null >/dev/null
61     test -z "$is_mounted"      || umountVserver     "$VSERVER_DIR" || :
62     test -z "$have_interfaces" || disableInterfaces "$VSERVER_DIR" || :
63
64     unlock || :
65 }
66
67 is_configured=
68 is_executed=
69 is_started=
70 is_mounted=
71 is_vshelper_init=
72 have_interfaces=
73 startsync_pipe=
74
75 set -e
76 trap "cleanup" EXIT
77
78 vshelper.doSanityCheck
79
80 generateOptions  "$VSERVER_DIR"
81 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" prepre-start
82 enableInterfaces "$VSERVER_DIR" && have_interfaces=1
83
84 mountVserver "$VSERVER_DIR"     && is_mounted=1
85 prepareInit  "$VSERVER_DIR"
86
87 pushd "$VSERVER_DIR"/vdir/ >/dev/null
88 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" pre-start
89 popd >/dev/null
90
91 test -z "$OPTION_DEFAULTTTY" || setDefaultTTY "$VSERVER_DIR"
92
93 pushd "$VSERVER_DIR"/vdir/ >/dev/null
94 is_configured=1
95 if $_VSERVER_INFO - FEATURE migrate; then
96     ${NICE_CMD[@]} \
97     $_CHBIND     "${CHBIND_OPTS[@]}" -- \
98     $_VCONTEXT   --create "${OPTS_VCONTEXT_CREATE[@]}" -- \
99     ${USE_VNAMESPACE:+$_VNAMESPACE --set -- } \
100     $_VLIMIT     --dir "$VSERVER_DIR"/rlimits --missingok -- \
101     $_VSCHED     --xid self "${OPTS_VSCHED[@]}" -- \
102     $_VUNAME     --xid self --dir "$VSERVER_DIR"/uts     --missingok -- \
103     "${VSERVER_EXTRA_CMDS[@]}" \
104     $_VUNAME     --xid self --set -t context="$VSERVER_DIR" -- \
105     $_VATTRIBUTE --set "${OPTS_VATTRIBUTE[@]}" -- \
106     $_SAVE_CTXINFO "$VSERVER_DIR" \
107     $_ENV -i -- \
108     $_VCONTEXT   --migrate-self --endsetup --chroot $SILENT_OPT "${OPTS_VCONTEXT_MIGRATE[@]}" -- \
109     "${INITCMD_START[@]}"
110 else
111     if test "$_IS_FAKEINIT"; then
112         startsync_pipe=$(mktemp /tmp/vserver-start.XXXXXX)
113         rm -f "$startsync_pipe"
114         mkfifo -m600 "$startsync_pipe"  ## safe, since mkfifo does not follow symlinks
115     fi
116     
117     ${NICE_CMD[@]} \
118     $_CHBIND           "${CHBIND_OPTS[@]}" \
119     $_EXEC_ULIMIT      "$VSERVER_DIR/ulimits" \
120     $_CHCONTEXT_COMPAT "${CHCONTEXT_OPTS[@]}" "${CHCONTEXT_INIT_OPTS[@]}" \
121     $_SAVE_CTXINFO     "$VSERVER_DIR" \
122     $_ENV -i -- \
123     $_CHAINECHO "${_IS_FAKEINIT:+$startsync_pipe}" "" \
124     $_CAPCHROOT        "${CAPCHROOT_OPTS[@]}" . \
125     "${INITCMD_START[@]}"
126
127     ## the additional synchronization step is needed since vshelper.doInit
128     ## below might be executed before needed context information were
129     ## saved by $_SAVE_CTXINFO
130     ${_IS_FAKEINIT:+cat "$startsync_pipe"} >/dev/null
131 fi
132 is_executed=1
133
134 "${INITCMD_START_SYNC[@]}"
135 popd >/dev/null
136
137 pushd "$VSERVER_DIR"/vdir/ >/dev/null
138 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" post-start
139 popd >/dev/null
140
141 is_vshelper_init=1
142 ! vshelper.isEnabled "" "$VSERVER_DIR" || vshelper.doInit "$VSERVER_DIR"
143
144 is_started=1