mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
8720e9e748
This patch adds a command (-c) option to zpool status and zpool iostat. The -c option allows you to run an arbitrary command on each vdev and display the first line of output in zpool status/iostat. The environment vars VDEV_PATH and VDEV_UPATH are set to the vdev's path and "underlying path" before running the command. For device mapper, multipath, or partitioned vdevs, VDEV_UPATH is the actual underlying /dev/sd* disk. This can be useful if the command you're running requires a /dev/sd* device. The patch also uses /sys/block/<dev>/slaves/ to lookup the underlying device instead of using libdevmapper. This not only removes the libdevmapper requirement at build time, but also allows you to resolve device mapper devices without being root. This means that UDEV_UPATH get set correctly when running zpool status/iostat as an unprivileged user. Example: $ zpool status -c 'echo I am $VDEV_PATH, $VDEV_UPATH' NAME STATE READ WRITE CKSUM mypool ONLINE 0 0 0 mirror-0 ONLINE 0 0 0 mpatha ONLINE 0 0 0 I am /dev/mapper/mpatha, /dev/sdc sdb ONLINE 0 0 0 I am /dev/sdb1, /dev/sdb Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #5368
81 lines
2.4 KiB
Bash
Executable File
81 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Turn off/on the VDEV's enclosure fault LEDs when the pool's state changes.
|
|
#
|
|
# Turn LED on if the VDEV becomes faulted or degraded, and turn it back off
|
|
# when it's online again. It will also turn on the LED (or keep it on) if
|
|
# the drive becomes unavailable, unless the drive was in was a previously
|
|
# online state (online->unavail is a normal state transition during an
|
|
# autoreplace).
|
|
#
|
|
# This script requires that your enclosure be supported by the
|
|
# Linux SCSI enclosure services (ses) driver. The script will do nothing
|
|
# if you have no enclosure, or if your enclosure isn't supported.
|
|
#
|
|
# Exit codes:
|
|
# 0: enclosure led successfully set
|
|
# 1: enclosure leds not not available
|
|
# 2: enclosure leds administratively disabled
|
|
# 3: ZED didn't pass enclosure sysfs path
|
|
# 4: Enclosure sysfs path doesn't exist
|
|
|
|
[ -f "${ZED_ZEDLET_DIR}/zed.rc" ] && . "${ZED_ZEDLET_DIR}/zed.rc"
|
|
. "${ZED_ZEDLET_DIR}/zed-functions.sh"
|
|
|
|
if [ ! -d /sys/class/enclosure ] ; then
|
|
exit 1
|
|
fi
|
|
|
|
if [ "${ZED_USE_ENCLOSURE_LEDS}" != "1" ] ; then
|
|
exit 2
|
|
fi
|
|
|
|
[ -n "${ZEVENT_VDEV_ENC_SYSFS_PATH}" ] || exit 3
|
|
|
|
[ -e "${ZEVENT_VDEV_ENC_SYSFS_PATH}/fault" ] || exit 4
|
|
|
|
# Turn on/off enclosure LEDs
|
|
function led
|
|
{
|
|
file="$1/fault"
|
|
val=$2
|
|
|
|
# We want to check the current state first, since writing to the
|
|
# 'fault' entry always always causes a SES command, even if the
|
|
# current state is already what you want.
|
|
current=$(cat "${file}")
|
|
|
|
# On some enclosures if you write 1 to fault, and read it back,
|
|
# it will return 2. Treat all non-zero values as 1 for
|
|
# simplicity.
|
|
if [ "$current" != "0" ] ; then
|
|
current=1
|
|
fi
|
|
|
|
if [ "$current" != "$val" ] ; then
|
|
# Set the value twice. I've seen enclosures that were
|
|
# flakey about setting it the first time.
|
|
echo "$val" > "$file"
|
|
echo "$val" > "$file"
|
|
fi
|
|
}
|
|
|
|
# Decide whether to turn on/off an LED based on the state
|
|
# Pass in path name and fault string ("ONLINE"/"FAULTED"/"DEGRADED"...etc)
|
|
#
|
|
# We only turn on LEDs when a drive becomes FAULTED, DEGRADED, or UNAVAIL and
|
|
# only turn it on when it comes back ONLINE. All other states are ignored, and
|
|
# keep the previous LED state.
|
|
function process {
|
|
path="$1"
|
|
fault=$2
|
|
if [ "$fault" == "FAULTED" ] || [ "$fault" == "DEGRADED" ] || \
|
|
[ "$fault" == "UNAVAIL" ] ; then
|
|
led "$path" 1
|
|
elif [ "$fault" == "ONLINE" ] ; then
|
|
led "$path" 0
|
|
fi
|
|
}
|
|
|
|
process "$ZEVENT_VDEV_ENC_SYSFS_PATH" "$ZEVENT_VDEV_STATE_STR"
|