/sbin/aoe-stat is in aoetools 30-3ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /bin/bash
# aoe-stat - collate and present information about AoE storage
# Copyright 2009, CORAID, Inc., and licensed under GPL v.2.
set -e
me=`basename $0`
sysd=${sysfs_dir:-/sys}
# printf "$format" device mac netif state
# Suse 9.1 Pro doesn't put /sys in /etc/mtab
#test -z "`mount | grep sysfs`" && {
test ! -d "$sysd/block" && {
echo "$me Error: sysfs is not mounted" 1>&2
exit 1
}
function checknode () {
devname="$1"
m_sysfs="$2"
if test -b "/dev/etherd/$devname"; then
m_node="`ls -l \"/dev/etherd/$devname\" | awk '{print $6}'`"
test "$m_sysfs" = "$m_node" || {
cat 1>&2 <<EOF
$me Warning: device node /dev/etherd/$devname has wrong minor device number
EOF
}
fi
}
re=.
if test $# -gt 0; then
re=$1
fi
# compatibility for aoe drivers without payload information
for d in `ls -d $sysd/block/*e[0-9]*\.[0-9]* 2>/dev/null | grep -v p` end; do
# maybe ls comes up empty, so we use "end"
test $d = end && continue
test -r "$d/payload" && payload=yes
done
if test "$payload" = "yes"; then
format="%10s %15s %10s %-5s %-14s\n"
else
format="%10s %15s %6s %-14s\n"
fi
for d in `ls -d $sysd/block/*e[0-9]*\.[0-9]* 2>/dev/null | grep -v p` end; do
test $d = end && continue
dev=`echo "$d" | sed 's/.*!//'`
sectors="`cat \"$d/size\"`"
minor="`awk -F: '{print $2}' \"$d/dev\"`"
checknode "$dev" "$minor"
psize=$(((512000 * $sectors) / (1000 * 1000 * 1000)))
psize=`printf "%04d\n" $psize | sed 's!\(...\)$!.\1!'`
if test "$payload" = "yes"; then
printf "$format" \
"$dev" \
"${psize}GB" \
"`cat \"$d/netif\"`" \
"`cat \"$d/payload\"`" \
"`cat \"$d/state\"`"
else
printf "$format" \
"$dev" \
"${psize}GB" \
"`cat \"$d/netif\"`" \
"`cat \"$d/state\"`"
fi
done | sort | grep $re
|