X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;ds=sidebyside;f=lustre%2Fscripts%2Flustre;h=a615b7433c4c17c91502d8b94770e7b75ba8e905;hb=2d714041ba718853be700960b76769a8fb44cf51;hp=e6cca001a4fb8ad21e5b6259bfa566d8a2ced5c0;hpb=113303973ec9f8484eb2355a1a6ef3c4c7fd6a56;p=fs%2Flustre-release.git diff --git a/lustre/scripts/lustre b/lustre/scripts/lustre old mode 100755 new mode 100644 index e6cca00..a615b74 --- a/lustre/scripts/lustre +++ b/lustre/scripts/lustre @@ -1,170 +1,612 @@ -#!/bin/sh +#!/bin/bash # -# lustre This shell script takes care of starting and stopping Lustre +# lustre This shell script takes care of starting and stopping +# the lustre services. # -# chkconfig: - 99 1 -# description: Lustre Lite network File System. -# This starts both Lustre client and server functions. -# processname: lconf -# config: /etc/lustre/config.xml -# pidfile: /var/run/lustre.pid +# chkconfig: - 60 20 +# description: Part of the lustre file system. +# probe: true +# config: /etc/sysconfig/lustre ### BEGIN INIT INFO # Provides: lustre -# Required-Start: $network +sshd -# Required-Stop: $network -# Should-Start: -# Should-Stop: -# Default-Start: -# Default-Stop: 0 1 2 3 4 5 6 -# Short-Description: Lustre Lite network File System. -# Description: This starts both Lustre client and server functions. +# Required-Start: lnet +# Defalt-Start: - +# Default-Stop: 0 1 6 +# Description: Lustre init script ### END INIT INFO +PATH=/sbin:/usr/sbin:/bin:/usr/bin -SERVICE=${0##*/} +# Source function library. +. /etc/rc.d/init.d/functions + +# Source networking configuration. +if [ ! -f /etc/sysconfig/network ]; then + exit 0 +fi + +. /etc/sysconfig/network + +LDEV=${LDEV:-"/usr/sbin/ldev"} +ZPOOL_LAYOUT=/usr/bin/zpool_layout +UDEVADM=${UDEVADM:-/sbin/udevadm} -: ${LUSTRE_CFG:=/etc/lustre/lustre.cfg} -[ -f ${LUSTRE_CFG} ] && . ${LUSTRE_CFG} +# Check that networking is up. +[ "${NETWORKING}" = "no" ] && exit 0 + +# Check for and source configuration file otherwise set defaults [ -f /etc/sysconfig/lustre ] && . /etc/sysconfig/lustre +FSCK_ARGS=${FSCK_ARGS:-""} +MOUNT_OPTIONS=${MOUNT_OPTIONS:-""} +LOCAL_SRV=${LOCAL_SRV:-"`$LDEV -l 2>/dev/null`"} +FOREIGN_SRV=${FOREIGN_SRV:-"`$LDEV -f 2>/dev/null`"} +REQUIRE_MMP_FEATURE=${REQUIRE_MMP_FEATURE:-${FOREIGN_SRV:+"yes"}} +LOCAL_MOUNT_DIR=${LOCAL_MOUNT_DIR:-"/mnt/lustre/local"} +FOREIGN_MOUNT_DIR=${FOREIGN_MOUNT_DIR:-"/mnt/lustre/foreign"} +SETUP_DEVICES=${SETUP_DEVICES:-""} +ZPOOL_LAYOUT_BUSES=${ZPOOL_LAYOUT_BUSES:-""} +ZPOOL_LAYOUT_PORTS=${ZPOOL_LAYOUT_PORTS:-""} +ZPOOL_LAYOUT_MAP=${ZPOOL_LAYOUT_MAP:-""} +MOUNT_DELAY=${MOUNT_DELAY:-2} +LOAD_ZFS=${LOAD_ZFS:-""} -: ${LUSTRE_CONFIG_XML:=/etc/lustre/config.xml} -: ${LCONF:=/usr/sbin/lconf} -: ${LCTL:=/usr/sbin/lctl} -# Some distros use modprobe.conf.local -if [ -f /etc/modprobe.conf.local ]; then - : ${MODPROBE_CONF:=/etc/modprobe.conf.local} -else - : ${MODPROBE_CONF:=/etc/modprobe.conf} +if [ -z "$TUNE2FS" ] ; then + TUNE2FS=`which tunefs.ldiskfs 2>/dev/null` + if [ -z "$TUNE2FS" ] ; then + TUNE2FS=`which tune2fs 2>/dev/null` + fi fi -# Be sure the proper directories are in PATH. -export PATH="/sbin:$PATH" - -case "$SERVICE" in - [SK][[:digit:]][[:digit:]]lustre | lustre) - SERVICE="lustre" - : ${LCONF_START_ARGS:="${LUSTRE_CONFIG_XML}"} - : ${LCONF_STOP_ARGS:="--force --cleanup ${LUSTRE_CONFIG_XML}"} - ;; - *) - : ${LCONF_START_ARGS:="--group ${SERVICE} --select ${SERVICE}=${HOSTNAME} ${LUSTRE_CONFIG_XML}"} - : ${LCONF_STOP_ARGS:="--group ${SERVICE} --select ${SERVICE}=${HOSTNAME} --failover --cleanup ${LUSTRE_CONFIG_XML}"} - ;; -esac -LOCK=/var/lock/subsys/$SERVICE -# Source function library. -if [ -f /etc/init.d/functions ] ; then - . /etc/init.d/functions +if [ -z "$PFSCK" ] ; then + PFSCK=`which pfsck.ldiskfs 2>/dev/null` + if [ -z "$PFSCK" ] ; then + PFSCK=`which fsck 2>/dev/null` + fi fi -# Source networking configuration. -if [ -f /etc/sysconfig/network ] ; then - . /etc/sysconfig/network -fi +shopt -s nullglob + +start_zfs_services () +{ + if [ -n "$ZPOOL_LAYOUT_BUSES" -a -n "$ZPOOL_LAYOUT_PORTS" ] ; then + MAP_ARG=${ZPOOL_LAYOUT_MAP:+"-m $ZPOOL_LAYOUT_MAP"} + $ZPOOL_LAYOUT -t -b "$ZPOOL_LAYOUT_BUSES" \ + -p "$ZPOOL_LAYOUT_PORTS" $MAP_ARG + fi + if [ "$LOAD_ZFS" = "yes" ] && ! modprobe zfs ; then + echo "Failed to load zfs module. Aborting." + exit 1 + fi +} + +stop_devices () +{ + local labels=$* + local label devtype + for label in $labels; do + devtype=`$LDEV -t $label` + if [ "$devtype" = "zfs" ] ; then + export_zpool $label + elif [ "$devtype" = "md" ] ; then + dev=`label_to_device $label` + journal=`$LDEV -j $label` + stop_md_device $dev + stop_md_device $journal + fi + done +} -check_start_stop() { - # Exit codes now LSB compliant - # Check that networking is up. - exit 'not running' - [ "${NETWORKING}" = "no" ] && exit 7 +import_zpool () +{ + local result=1 + local label=$1 + local pool=`$LDEV -z $label` + local args="-N $ZPOOL_IMPORT_ARGS" + local cache=`$LDEV -r $label` + # -c is incompatible with -d + if [ -n "$cache" ] ; then + args="$args -c $cache" + elif [ -n "$ZPOOL_IMPORT_DIR" ] ; then + args="$args -d $ZPOOL_IMPORT_DIR" + fi + + if zpool status $pool >/dev/null 2>&1 ; then + result=0 + elif [ -n "$pool" ] ; then + zpool import $pool $args 2>/dev/null + result=$? + fi + if [ $result -ne 0 ] ; then + echo "Unexpected return code from import of pool $pool: $result" + fi + return $result +} + +export_zpool () +{ + local label=$1 + local pool=`$LDEV -z $label` + zpool export $pool 2>/dev/null +} + +# Trigger udev and wait for it to settle. +udev_trigger() +{ + if [ -x ${UDEVADM} ]; then + ${UDEVADM} trigger --action=change --subsystem-match=block + ${UDEVADM} settle + else + /sbin/udevtrigger + /sbin/udevsettle + fi +} - # exit 'not installed' - [ -x ${LCONF} -a -x ${LCTL} ] || exit 5 +# Usage: run_preexec_check [ start | restart | condrestart ] +# The single parameter will be passed to the PREEXEC_SCRIPT +run_preexec_check () +{ + if [ -n "$PREEXEC_CHECK" ] && ! $PREEXEC_CHECK ; then + echo "Pre-exec check \"$PREEXEC_CHECK\" failed. Aborting." + exit 1 + fi + + if [ -n "$PREEXEC_SCRIPT" ] && ! "$PREEXEC_SCRIPT" "$1" ; then + echo "Pre-exec script \"$PREEXEC_SCRIPT\" failed. Aborting." + exit 1 + fi +} + +# Usage: run_postexec_check [ start | restart | condrestart ] +# The single parameter will be passed to the PREEXEC_SCRIPT +run_postexec_check () +{ + if [ -n "$POSTEXEC_CHECK" ] && ! $POSTEXEC_CHECK ; then + echo "Post-exec check \"$POSTEXEC_CHECK\" failed. Aborting." + exit 1 + fi - if [ ${LUSTRE_CONFIG_XML:0:1} = "/" ] ; then - if [ ! -f ${LUSTRE_CONFIG_XML} ] ; then - echo "${0##*/}: Configuration file ${LUSTRE_CONFIG_XML} not found; skipping." - # exit 'not configured' - exit 6 + if [ -n "$POSTEXEC_SCRIPT" ] && ! "$POSTEXEC_SCRIPT" "$1" ; then + echo "Post-exec script \"$POSTEXEC_SCRIPT\" failed. Aborting." + exit 1 + fi +} + +# Usage: adjust_scsi_timeout +adjust_scsi_timeout () +{ + local dev=$1 + + if [ -n "$SCSI_DEVICE_TIMEOUT" ]; then + # make sure that it is actually a SCSI (sd) device + local name=`basename $dev` + local proc=/sys/block/${name}/device/timeout + local driver=`readlink /sys/block/${name}/device/driver` + if [ -n "$driver" ] && [ "`basename $driver`" == "sd" ]; then + if ! echo $SCSI_DEVICE_TIMEOUT >$proc; then + echo "FAILED: could not adjust ${dev} timeout" + return 1 + fi fi fi + return 0 +} + +# Usage: fsck_test [ ... ] +# Checks all devices in parallel if FSCK_ARGS is set. +fsck_test () +{ + local devices="$*" - # Create /var/lustre directory - # This is used by snmp agent for checking lustre services - # status online/offline/online pending/offline pending. + # Filter out non-absolute paths, which are probably ZFS datasets + devices=`echo $devices |xargs -n 1|grep '^/'|xargs` - [ -d ${STATUS_DIR:=/var/lustre} ] || mkdir -p $STATUS_DIR - STATUS=${STATUS_DIR}/sysStatus + if [ -n "${FSCK_ARGS}" -a -n "$devices" ]; then + if [ -x $PFSCK ] ; then + echo "$PFSCK $devices -- ${FSCK_ARGS}" + $PFSCK $devices -- ${FSCK_ARGS} + if [ $? -ne 0 -a $? -ne 1 ] ; then + echo "FAILED: $PFSCK -- ${FSCK_ARGS}: $?" + return 1 + fi + else + echo "$PFSCK not found" + return 1 + fi + fi + return 0 } -start() { - if [ -x "/usr/sbin/clustat" -a "${SERVICE}" = "lustre" ] ; then - if [ ! -f "/etc/lustre/start-despite-clumanager" ] ; then - cat >&2 < +test_feature_flag() +{ + local dev=$1 + local flag=$2 + local result=1 + local feature -If you are not using clumanager for Lustre services, run the following -command to have this script start Lustre instead: + for feature in `$TUNE2FS -l $dev 2>/dev/null \ + | grep features: | sed -e 's/^.*: //'`; do + if [ "$feature" == "$flag" ]; then + result=0 + break + fi + done -touch /etc/lustre/start-despite-clumanager -EOF - RETVAL=6 # program not configured + return $result +} + +# Usage: mmp_test +# Returns 0 if it is set or not required, 1 if unset and required or error. +mmp_test () +{ + local dev=$1 + local result=0 + + if [ "$REQUIRE_MMP_FEATURE" == "yes" ]; then + if [ -x $TUNE2FS ]; then + if ! test_feature_flag $dev "mmp"; then + echo "mmp feature flag is not set on $dev" + result=1 + fi + else + echo "$TUNE2FS not found" + result=1 + fi + fi + + return $result +} + +# Usage: label_to_mountpt