2007-06-04 09:09:03 +04:00
#!/bin/sh
#################################
# interface event script for ctdb
# this adds/removes IPs from your
# public interface
2007-09-14 08:14:03 +04:00
. $CTDB_BASE/functions
2007-06-06 06:08:42 +04:00
loadconfig ctdb
2007-06-04 09:09:03 +04:00
cmd="$1"
shift
2007-09-04 03:50:07 +04:00
[ -z "$CTDB_PUBLIC_ADDRESSES" ] && {
2007-09-14 08:14:03 +04:00
CTDB_PUBLIC_ADDRESSES=$CTDB_BASE/public_addresses
2007-06-11 02:42:51 +04:00
}
2007-06-04 09:09:03 +04:00
2007-09-04 03:50:07 +04:00
[ ! -f "$CTDB_PUBLIC_ADDRESSES" ] && {
2008-01-16 14:06:44 +03:00
echo "No public addresses file found. Nothing to do for 10.interfaces"
2007-09-04 03:50:07 +04:00
exit 0
}
2007-06-04 09:09:03 +04:00
case $cmd in
#############################
# called when ctdbd starts up
startup)
2007-09-08 02:09:02 +04:00
# make sure that we only respond to ARP messages from the NIC where
# a particular ip address is associated.
2007-09-12 07:23:36 +04:00
[ -f /proc/sys/net/ipv4/conf/all/arp_filter ] && {
echo 1 > /proc/sys/net/ipv4/conf/all/arp_filter
}
2007-09-14 04:37:10 +04:00
cat "$CTDB_PUBLIC_ADDRESSES" | cut -d/ -f1 | while read _IP; do
2007-09-14 05:56:40 +04:00
_IP_HELD=`/sbin/ip addr show | grep "inet $_IP/"`
2007-09-14 04:37:10 +04:00
[ -z "$_IP_HELD" ] || {
_IFACE=`echo $_IP_HELD | sed -e "s/.*\s//"`
_NM=`echo $_IP_HELD | sed -e "s/.*$_IP\///" -e "s/\s.*//"`
2008-01-16 14:06:44 +03:00
echo "Removing public address $_IP/$_NM from device $_IFACE"
2007-09-14 05:56:40 +04:00
/sbin/ip addr del $_IP/$_NM dev $_IFACE
2007-09-14 04:37:10 +04:00
}
done
2007-06-04 09:09:03 +04:00
;;
################################################
# called when ctdbd wants to claim an IP address
takeip)
if [ $# != 3 ]; then
2008-01-16 14:06:44 +03:00
echo "must supply interface, IP and maskbits"
2007-06-04 09:09:03 +04:00
exit 1
fi
iface=$1
ip=$2
maskbits=$3
# we make sure the interface is up first
/sbin/ip link set $iface up || {
2008-01-16 14:06:44 +03:00
echo "Failed to bringup interface $iface"
2007-06-04 09:09:03 +04:00
exit 1
}
/sbin/ip addr add $ip/$maskbits dev $iface || {
2008-01-16 14:06:44 +03:00
echo "Failed to add $ip/$maskbits on dev $iface"
2007-06-04 09:09:03 +04:00
exit 1
}
2007-09-13 04:24:48 +04:00
# cope with the script being killed while we have the interface blocked
2008-02-07 07:36:26 +03:00
iptables -D INPUT -i $iface -d $ip -j DROP 2> /dev/null
2007-06-04 09:09:03 +04:00
# flush our route cache
echo 1 > /proc/sys/net/ipv4/route/flush
;;
##################################################
# called when ctdbd wants to release an IP address
releaseip)
if [ $# != 3 ]; then
2008-01-16 14:06:44 +03:00
echo "must supply interface, IP and maskbits"
2007-06-04 09:09:03 +04:00
exit 1
fi
2007-09-13 04:24:48 +04:00
# releasing an IP is a bit more complex than it seems. Once the IP
# is released, any open tcp connections to that IP on this host will end
# up being stuck. Some of them (such as NFS connections) will be unkillable
# so we need to use the killtcp ctdb function to kill them off. We also
# need to make sure that no new connections get established while we are
# doing this! So what we do is this:
# 1) firewall this IP, so no new external packets arrive for it
# 2) use netstat -tn to find existing connections, and kill them
# 3) remove the IP from the interface
# 4) remove the firewall rule
2007-06-04 09:09:03 +04:00
iface=$1
ip=$2
maskbits=$3
2007-09-13 04:24:48 +04:00
failed=0
# we do an extra delete to cope with the script being killed
2008-02-07 07:36:26 +03:00
iptables -D INPUT -i $iface -d $ip -j DROP 2> /dev/null
iptables -I INPUT -i $iface -d $ip -j DROP
2007-09-13 04:24:48 +04:00
kill_tcp_connections $ip
2007-09-14 05:56:40 +04:00
# the ip tool will delete all secondary IPs if this is the primary. To work around
# this _very_ annoying behaviour we have to keep a record of the secondaries and re-add
# them afterwards. yuck
secondaries=""
if /sbin/ip addr list dev $iface primary | grep "inet $ip/$maskbits " > /dev/null; then
secondaries=`/sbin/ip addr list dev $iface secondary | grep " inet " | awk '{print $2}'`
fi
2007-09-13 04:24:48 +04:00
/sbin/ip addr del $ip/$maskbits dev $iface || failed=1
2007-09-14 05:56:40 +04:00
[ -z "$secondaries" ] || {
for i in $secondaries; do
if /sbin/ip addr list dev $iface | grep "inet $i" > /dev/null; then
2008-01-16 14:06:44 +03:00
echo "kept secondary $i on dev $iface"
2007-09-14 05:56:40 +04:00
else
2008-01-16 14:06:44 +03:00
echo "re-adding secondary address $i to dev $iface"
2007-09-14 05:56:40 +04:00
/sbin/ip addr add $i dev $iface || failed=1
fi
done
}
2008-02-07 07:36:26 +03:00
iptables -D INPUT -i $iface -d $ip -j DROP
2007-09-13 04:24:48 +04:00
[ $failed = 0 ] || {
2008-01-16 14:06:44 +03:00
echo "Failed to del $ip on dev $iface"
2007-06-04 09:09:03 +04:00
exit 1
}
# flush our route cache
echo 1 > /proc/sys/net/ipv4/route/flush
;;
###########################################
# called when ctdbd has finished a recovery
recovered)
;;
####################################
# called when ctdbd is shutting down
shutdown)
;;
2007-06-06 06:08:42 +04:00
monitor)
2007-10-29 02:51:16 +03:00
INTERFACES=`cat $CTDB_PUBLIC_ADDRESSES |
sed -e "s/^[^\t ]*[\t ]*//" -e "s/[\t ]*$//"`
[ "$CTDB_PUBLIC_INTERFACE" ] && INTERFACES="$CTDB_PUBLIC_INTERFACE $INTERFACES"
INTERFACES=`for IFACE in $INTERFACES ; do echo $IFACE ; done | sort | uniq`
for IFACE in $INTERFACES ; do
2008-02-07 01:35:46 +03:00
case $IFACE in
bond*)
2007-10-29 02:51:16 +03:00
grep '^MII Status: up' /proc/net/bonding/$IFACE > /dev/null || {
2008-01-16 14:06:44 +03:00
echo "ERROR: public network interface $IFACE is down"
2007-10-29 02:51:16 +03:00
exit 1
}
2008-02-07 01:35:46 +03:00
;;
ib*)
# we dont know how to test ib links
;;
*)
2007-09-12 07:23:36 +04:00
[ -z "$IFACE" ] || {
/usr/sbin/ethtool $IFACE | grep 'Link detected: yes' > /dev/null || {
2008-01-16 14:06:44 +03:00
echo "ERROR: No link on the public network interface $IFACE"
2007-09-12 07:23:36 +04:00
exit 1
}
}
2008-02-07 01:35:46 +03:00
;;
esac
2007-10-29 02:51:16 +03:00
done
2007-06-06 06:08:42 +04:00
;;
2007-06-04 09:09:03 +04:00
esac
exit 0
2007-09-04 03:50:07 +04:00