1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
#!/bin/sh
### BEGIN INIT INFO
# Provides: xen
# Required-Start: $syslog $remote_fs
# Required-Stop: $syslog $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Xen daemons
# Description: Xen daemons
### END INIT INFO
# Important notes to keep in mind when changing this script:
#
# * This init script is part of the xen-utils-common package.
# * It is *not* called from xen-utils-common maintscripts, but from the
# xen-utils-V package maintscripts instead, and only if V is equal to the
# currently running version of Xen.
# * The xen-utils-V package has a dependency on xen-utils-common >= V.
# * So, while there can be multiple xen-utils-V packages installed, there is
# still only a single xen-utils-common package installed, which matches the
# newest installed Xen version.
# * This means that this script has to be compatible with the other packages
# for any older Xen version that was available in the current and previous
# Debian release.
#
# Example scenarios in which this is needed:
#
# * After upgrading to a new Xen version, the new init script will already be
# used for shutting down the system before reboot.
# * If the user encounters problems and reboots back into the old Xen version,
# this init script will also be used.
. /lib/init/vars.sh
. /lib/lsb/init-functions
# Default variables
XENSTORED_DIR="/run/xenstored"
[ -r /etc/default/xen ] && . /etc/default/xen
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DESC="Xen daemons"
case "$(cat /sys/hypervisor/type 2>/dev/null)" in
xen) ;;
*) exit 0 ;; # not running under Xen
esac
VERSION=$(/usr/lib/xen-common/bin/xen-version)
ROOT=$(/usr/lib/xen-common/bin/xen-dir)
if [ $? -ne 0 ]; then
log_warning_msg "No compatible Xen utils for Xen $VERSION"
exit 1
fi
XENCONSOLED="$ROOT"/bin/xenconsoled
XENCONSOLED_PIDFILE="/run/xenconsoled.pid"
CXENSTORED="$ROOT"/bin/xenstored
OXENSTORED="$ROOT"/bin/oxenstored
XENSTORED_PIDFILE="/run/xenstore.pid"
QEMU=/usr/bin/qemu-system-i386
QEMU_PIDFILE="/run/qemu-dom0.pid"
QEMU_ARGS="-xen-domid 0 -xen-attach -name dom0 -nographic -M xenpv -daemonize -monitor /dev/null -serial /dev/null -parallel /dev/null"
modules_setup()
{
modprobe xenfs 2>/dev/null
modprobe xen-evtchn 2>/dev/null
modprobe xen-gntdev 2>/dev/null
modprobe xen-acpi-processor 2>/dev/null
}
xenfs_setup()
{
[ -e "/proc/xen/capabilities" ] && return 0
log_progress_msg "xenfs"
[ -d "/proc/xen" ] || return 1
mount -t xenfs xenfs /proc/xen || return 1
return 0
}
capability_check()
{
[ -e "/proc/xen/capabilities" ] || return 1
grep -q "control_d" /proc/xen/capabilities || return 1
return 0
}
env_setup()
{
[ -d /run/xen ] && return 0
mkdir -m 700 /run/xen
[ -x /sbin/restorecon ] && /sbin/restorecon /run/xen
}
xenconsoled_start()
{
log_progress_msg "xenconsoled"
xenconsoled_start_real
return $?
}
xenconsoled_stop()
{
log_progress_msg "xenconsoled"
xenconsoled_stop_real
return $?
}
xenconsoled_restart()
{
log_progress_msg "xenconsoled"
xenconsoled_stop_real
case "$?" in
0|1)
xenconsoled_start_real
case "$?" in
0) ;;
*) return 2 ;;
esac
;;
*) return 2 ;;
esac
return 0
}
xenconsoled_start_real()
{
start-stop-daemon --start --quiet --pidfile "$XENCONSOLED_PIDFILE" --exec "$XENCONSOLED" --test > /dev/null \
|| return 1
start-stop-daemon --start --quiet --pidfile "$XENCONSOLED_PIDFILE" --exec "$XENCONSOLED" -- \
$XENCONSOLED_ARGS --pid-file "$XENCONSOLED_PIDFILE" \
|| return 2
}
xenconsoled_stop_real()
{
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile "$XENCONSOLED_PIDFILE" --name xenconsoled
RETVAL="$?"
[ "$RETVAL" = 2 ] && return 2
start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec "$XENCONSOLED"
[ "$?" = 2 ] && return 2
rm -f $XENCONSOLED_PIDFILE
return "$RETVAL"
}
qemu_start()
{
[ -x $QEMU ] || return 0
log_progress_msg "qemu"
qemu_start_real
return $?
}
qemu_stop()
{
[ -x $QEMU ] || return 0
log_progress_msg "qemu"
qemu_stop_real
return $?
}
qemu_restart()
{
[ -x $QEMU ] || return 0
log_progress_msg "qemu"
qemu_stop_real
case "$?" in
0|1)
qemu_start_real
case "$?" in
0) ;;
*) return 2 ;;
esac
;;
*) return 2 ;;
esac
return 0
}
qemu_start_real()
{
start-stop-daemon --start --quiet --pidfile "$QEMU_PIDFILE" --exec "$QEMU" --test > /dev/null \
|| return 1
start-stop-daemon --start --quiet --pidfile "$QEMU_PIDFILE" --exec "$QEMU" -- \
$QEMU_ARGS -pidfile "$QEMU_PIDFILE" \
|| return 2
}
qemu_stop_real()
{
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile "$QEMU_PIDFILE" --exec "$QEMU"
RETVAL="$?"
[ "$RETVAL" = 2 ] && return 2
rm -f $QEMU_PIDFILE
return "$RETVAL"
}
xenstored_start()
{
# First, we check if any of xenstored or oxenstored is already running. If
# so, we abort and leave it alone.
for try_xenstored in "$OXENSTORED" "$CXENSTORED"; do
if [ -x $try_xenstored ]; then
start-stop-daemon --start --quiet --pidfile "$XENSTORED_PIDFILE" \
--exec "$try_xenstored" --test > /dev/null
# s-s-d code 1 here means: "We found a matching live process!"
if [ $? -eq 1 ]; then
return 0
fi
fi
done
log_progress_msg "xenstored"
[ -d "$XENSTORED_DIR" ] || mkdir -p "$XENSTORED_DIR"
[ -x /sbin/restorecon ] && /sbin/restorecon "$XENSTORED_DIR"
export XENSTORED_ROOTDIR="$XENSTORED_DIR"
# If none of them are running, then try starting one. If the user made an
# explicit choice, then run that. Else try the different xenstored
# implementations we know about in order of preference.
case "$XENSTORED" in
?*) try_xenstoreds='XENSTORED' ;;
'') try_xenstoreds='OXENSTORED CXENSTORED' ;;
esac
for try_xenstored_var in $try_xenstoreds; do
eval "try_xenstored=\$$try_xenstored_var"
if [ -x $try_xenstored ]; then
if start-stop-daemon --start --quiet \
--pidfile "$XENSTORED_PIDFILE" \
--exec /usr/bin/choom -- -n -1000 "$try_xenstored" -- \
$XENSTORED_ARGS --pid-file "$XENSTORED_PIDFILE"; then
started_xenstored=$try_xenstored
break
fi
fi
done
if [ -z "$started_xenstored" ]; then
log_failure_msg "No suitable xenstored binary found to start."
return 1
fi
# Wait for xenstored to actually come up, timing out after 30 seconds
local time=0
local timeout=30
while [ $time -lt $timeout ] && ! `xenstore-read -s / >/dev/null 2>&1` ; do
time=$(( $time+1 ))
sleep 1
done
# Exit if we timed out
if ! [ $time -lt $timeout ] ; then
return 2
fi
# Add some extra entries about dom0 into xenstore
if [ -e $ROOT/bin/xen-init-dom0 ] ; then
$ROOT/bin/xen-init-dom0 > /dev/null
else
# xen-init-dom0 has been present since Stretch.
# Remove this compatibility section in Buster+1
xenstore-write "/local/domain/0/name" "Domain-0"
xenstore-write "/local/domain/0/domid" "0"
fi
}
case "$1" in
start)
log_daemon_msg "Starting $DESC"
modules_setup
xenfs_setup
case "$?" in
0) ;;
*) log_end_msg 1; exit ;;
esac
capability_check
case "$?" in
0) ;;
*) log_end_msg 0; exit ;; # not a dom0, skip the rest
esac
env_setup
xenstored_start
case "$?" in
0) ;;
*) log_end_msg 1; exit ;;
esac
xenconsoled_start
case "$?" in
0|1) ;;
*) log_end_msg 1; exit ;;
esac
qemu_start
case "$?" in
0|1) ;;
*) log_end_msg 1; exit ;;
esac
log_end_msg 0
;;
stop)
capability_check
case "$?" in
0) ;;
*) exit ;;
esac
log_daemon_msg "Stopping $DESC"
ret=0
qemu_stop
case "$?" in
0|1) ;;
*) ret=1 ;;
esac
xenconsoled_stop
case "$?" in
0|1) ;;
*) ret=1 ;;
esac
log_end_msg $ret
;;
restart|force-reload)
capability_check
case "$?" in
0) ;;
*) exit ;;
esac
log_daemon_msg "Restarting $DESC"
ret=0
qemu_restart
case "$?" in
0|1) ;;
*) ret=1 ;;
esac
xenconsoled_restart
case "$?" in
0|1) ;;
*) ret=1 ;;
esac
log_end_msg $ret
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload}" >&2
exit 3
;;
esac
exit 0
|