3 #################################
4 # interface event script for ctdb
5 # this adds/removes IPs from your
8 [ -n "$CTDB_BASE" ] || \
9 export CTDB_BASE
=$
(cd -P $
(dirname "$0") ; dirname "$PWD")
11 .
$CTDB_BASE/functions
14 [ -z "$CTDB_PUBLIC_ADDRESSES" ] && {
15 CTDB_PUBLIC_ADDRESSES
=$CTDB_BASE/public_addresses
18 [ ! -f "$CTDB_PUBLIC_ADDRESSES" ] && {
19 if [ "$1" = "init" ]; then
20 echo "No public addresses file found. Nothing to do for 10.interfaces"
27 up_interfaces_found
=true
28 ctdb setifacelink
$1 up
>/dev
/null
2>&1
34 ctdb setifacelink
$1 down
>/dev
/null
2>&1
37 # This sets $all_interfaces as a side-effect.
40 # Get all the interfaces listed in the public_addresses file
41 all_interfaces
=$
(sed -e "s/^[^\t ]*[\t ]*//" -e "s/,/ /g" -e "s/[\t ]*$//" $CTDB_PUBLIC_ADDRESSES)
43 # Add some special interfaces if they're defined
44 [ "$CTDB_PUBLIC_INTERFACE" ] && all_interfaces
="$CTDB_PUBLIC_INTERFACE $all_interfaces"
45 [ "$CTDB_NATGW_PUBLIC_IFACE" ] && all_interfaces
="$CTDB_NATGW_PUBLIC_IFACE $all_interfaces"
47 # Get the interfaces for which CTDB has public IPs configured.
48 # That is, for all but the 1st line, get the 1st field.
49 ctdb_ifaces
=$
(ctdb
-X ifaces |
sed -e '1d' -e 's@^|@@' -e 's@|.*@@')
51 # Add $ctdb_interfaces and uniquify
52 all_interfaces
=$
(echo $all_interfaces $ctdb_ifaces |
tr ' ' '\n' |
sort -u)
60 up_interfaces_found
=false
62 # Note that this loop must not exit early. It must process
63 # all interfaces so that the correct state for each interface
64 # is set in CTDB using mark_up/mark_down. If there is a
65 # problem with an interface then set fail=true and continue.
66 for iface
in $all_interfaces ; do
68 ip link show
$iface 2>/dev
/null
>/dev
/null ||
{
69 echo "ERROR: Interface $iface does not exist but it is used by public addresses."
74 # These interfaces are sometimes bond devices
75 # When we use VLANs for bond interfaces, there will only
76 # be an entry in /proc for the underlying real interface
77 realiface
=`echo $iface |sed -e 's/\..*$//'`
78 bi
=$
(get_proc
"net/bonding/$realiface" 2>/dev
/null
) && {
79 echo "$bi" |
grep -q 'Currently Active Slave: None' && {
80 echo "ERROR: No active slaves for bond device $realiface"
84 echo "$bi" |
grep -q '^MII Status: up' ||
{
85 echo "ERROR: public network interface $realiface is down"
89 echo "$bi" |
grep -q '^Bonding Mode: IEEE 802.3ad Dynamic link aggregation' && {
90 # This works around a bug in the driver where the
91 # overall bond status can be up but none of the actual
92 # physical interfaces have a link.
93 echo "$bi" |
grep 'MII Status:' |
tail -n +2 |
grep -q '^MII Status: up' ||
{
94 echo "ERROR: No active slaves for 802.ad bond device $realiface"
105 # loopback is always working
109 # we dont know how to test ib links
113 ethtool
$iface |
grep -q 'Link detected: yes' ||
{
114 # On some systems, this is not successful when a
115 # cable is plugged but the interface has not been
116 # brought up previously. Bring the interface up
118 ip link
set $iface up
119 ethtool
$iface |
grep -q 'Link detected: yes' ||
{
120 echo "ERROR: No link on the public network interface $iface"
133 $up_interfaces_found && \
134 [ "$CTDB_PARTIALLY_ONLINE_INTERFACES" = "yes" ] && \
140 # Sets: iface, ip, maskbits, family
141 get_iface_ip_maskbits_family
()
147 set -- $
(ip_maskbits_iface
"$ip")
148 if [ -n "$1" ] ; then
153 if [ "$iface" != "$_iface_in" ] ; then
155 'WARNING: Public IP %s hosted on interface %s but VNN says %s\n' \
156 "$ip" "$iface" "$_iface_in"
158 if [ "$maskbits" != "$_maskbits_in" ] ; then
160 'WARNING: Public IP %s has %s bit netmask but VNN says %s\n' \
161 "$ip" "$maskbits" "$_maskbits_in"
164 die
"ERROR: Unable to determine interface for IP ${ip}"
171 #############################
172 # called when ctdbd starts up
174 # make sure that we only respond to ARP messages from the NIC where
175 # a particular ip address is associated.
176 get_proc sys
/net
/ipv
4/conf
/all
/arp_filter
>/dev
/null
2>&1 && {
177 set_proc sys
/net
/ipv
4/conf
/all
/arp_filter
1
180 _promote
="sys/net/ipv4/conf/all/promote_secondaries"
181 get_proc
"$_promote" >/dev
/null
2>&1 || \
182 die
"Public IPs only supported if promote_secondaries is available"
185 #############################
186 # called after ctdbd has done its initial recovery
187 # and we start the services to become healthy
193 ################################################
194 # called when ctdbd wants to claim an IP address
200 add_ip_to_iface
$iface $ip $maskbits ||
{
204 # cope with the script being killed while we have the interface blocked
206 *:*) family
="inet6" ;;
209 iptables_wrapper
$family -D INPUT
-i $iface -d $ip -j DROP
2> /dev
/null
215 ##################################################
216 # called when ctdbd wants to release an IP address
218 # releasing an IP is a bit more complex than it seems. Once the IP
219 # is released, any open tcp connections to that IP on this host will end
220 # up being stuck. Some of them (such as NFS connections) will be unkillable
221 # so we need to use the killtcp ctdb function to kill them off. We also
222 # need to make sure that no new connections get established while we are
223 # doing this! So what we do is this:
224 # 1) firewall this IP, so no new external packets arrive for it
225 # 2) use netstat -tn to find existing connections, and kill them
226 # 3) remove the IP from the interface
227 # 4) remove the firewall rule
229 get_iface_ip_maskbits_family
"$@"
231 # we do an extra delete to cope with the script being killed
232 iptables_wrapper
$family -D INPUT
-i $iface -d $ip -j DROP
2> /dev
/null
233 iptables_wrapper
$family -I INPUT
-i $iface -d $ip -j DROP
234 kill_tcp_connections
$ip
236 delete_ip_from_iface
$iface $ip $maskbits ||
{
237 iptables_wrapper
$family \
238 -D INPUT
-i $iface -d $ip -j DROP
2> /dev
/null
242 iptables_wrapper
$family -D INPUT
-i $iface -d $ip -j DROP
2> /dev
/null
247 ##################################################
248 # called when ctdbd wants to update an IP address
250 # moving an IP is a bit more complex than it seems.
251 # First we drop all traffic on the old interface.
252 # Then we try to add the ip to the new interface and before
253 # we finally remove it from the old interface.
255 # 1) firewall this IP, so no new external packets arrive for it
256 # 2) remove the IP from the old interface (and new interface, to be sure)
257 # 3) add the IP to the new interface
258 # 4) remove the firewall rule
259 # 5) use ctdb gratiousarp to propagate the new mac address
260 # 6) use netstat -tn to find existing connections, and tickle them
266 get_iface_ip_maskbits_family
"$_oiface" "$ip" "$maskbits"
269 # we do an extra delete to cope with the script being killed
270 iptables_wrapper
$family -D INPUT
-i $oiface -d $ip -j DROP
2> /dev
/null
271 iptables_wrapper
$family -I INPUT
-i $oiface -d $ip -j DROP
273 delete_ip_from_iface
$oiface $ip $maskbits 2>/dev
/null
274 delete_ip_from_iface
$niface $ip $maskbits 2>/dev
/null
276 add_ip_to_iface
$niface $ip $maskbits ||
{
277 iptables_wrapper
$family \
278 -D INPUT
-i $oiface -d $ip -j DROP
2> /dev
/null
282 # cope with the script being killed while we have the interface blocked
283 iptables_wrapper
$family -D INPUT
-i $oiface -d $ip -j DROP
2> /dev
/null
287 # propagate the new mac address
288 ctdb gratiousarp
$ip $niface
290 # tickle all existing connections, so that dropped packets
291 # are retransmited and the tcp streams work
293 tickle_tcp_connections
$ip
298 monitor_interfaces ||
exit 1
301 ctdb_standard_event_handler
"$@"