3 # This must run as root as CTDB tool commands need to access CTDB socket
4 [ $
(id
-u) -eq 0 ] ||
exec sudo
"$0" "$@"
6 # this script needs to be installed so that statd points to it with the -H
7 # command line argument. The easiest way to do that is to put something like this in
9 # STATD_HOSTNAME="myhostname -H /etc/ctdb/statd-callout"
11 [ -n "$CTDB_BASE" ] || \
12 export CTDB_BASE
=$
(cd -P $
(dirname "$0") ; echo "$PWD")
14 .
$CTDB_BASE/functions
16 # Overwrite this so we get some logging
19 script_log
"statd-callout" "$@"
26 [ -n "$NFS_HOSTNAME" ] || \
27 die
"NFS_HOSTNAME is not configured. statd-callout failed"
33 ctdb_setup_service_state_dir
"statd-callout"
35 cd "$service_state_dir" || \
36 die
"Failed to change directory to \"${service_state_dir}\""
39 # Keep a single file to keep track of the last "add-client" or
40 # "del-client'. These get pushed to ctdb.tdb during "update",
41 # which will generally be run once each "monitor" cycle. In this
42 # way we avoid scalability problems with flood of persistent
43 # transactions after a "notify" when all the clients re-take their
47 # statd does not tell us to which IP the client connected so
48 # we must add it to all the IPs that we serve
54 while IFS
="|" read x sip node x
; do
55 [ "$node" = "$pnn" ] ||
continue # not us
56 key
="statd-state@${sip}@${cip}"
57 echo "\"${key}\" \"${date}\"" >"$key"
62 # statd does not tell us from which IP the client disconnected
63 # so we must add it to all the IPs that we serve
68 while IFS
="|" read x sip node x
; do
69 [ "$node" = "$pnn" ] ||
continue # not us
70 key
="statd-state@${sip}@${cip}"
71 echo "\"${key}\" \"\"" >"$key"
76 files
=$
(echo statd-state@
*)
77 if [ "$files" = "statd-state@*" ] ; then
81 # Filter out lines for any IP addresses that are not currently
82 # hosted public IP addresses.
84 ctdb_ips
=$
(ctdb ip |
tail -n +2)
85 sed_expr
=$
(echo "$ctdb_ips" |
86 awk -v pnn
=$pnn 'pnn == $2 { \
87 ip = $1; gsub(/\./, "\\.", ip); \
88 printf "/statd-state@%s@/p\n", ip }')
89 if cat $files |
sed -n "$sed_expr" | ctdb ptrans
"ctdb.tdb" ; then
95 # we must restart the lockmanager (on all nodes) so that we get
96 # a clusterwide grace period (so other clients don't take out
97 # conflicting locks through other nodes before all locks have been
100 # we need these settings to make sure that no tcp connections survive
101 # across a very fast failover/failback
102 #echo 10 > /proc/sys/net/ipv4/tcp_fin_timeout
103 #echo 0 > /proc/sys/net/ipv4/tcp_max_tw_buckets
104 #echo 0 > /proc/sys/net/ipv4/tcp_max_orphans
106 # Delete the notification list for statd, we don't want it to
108 rm -f /var
/lib
/nfs
/statd
/sm
/*
109 rm -f /var
/lib
/nfs
/statd
/sm.bak
/*
111 # we must keep a monotonically increasing state variable for the entire
112 # cluster so state always increases when ip addresses fail from one
114 # We use epoch and hope the nodes are close enough in clock.
115 # Even numbers mean service is shut down, odd numbers mean
116 # service is started.
117 state_even
=$
(( $
(date '+%s') / 2 * 2))
119 # We must also let some time pass between stopping and
120 # restarting the lock manager. Otherwise there is a window
121 # where the lock manager will respond "strangely" immediately
122 # after restarting it, which causes clients to fail to reclaim
124 if [ -z "$CTDB_NFS_CALLOUT" ] ; then
125 CTDB_NFS_CALLOUT
="${CTDB_BASE}/nfs-linux-kernel-callout"
127 "$CTDB_NFS_CALLOUT" "stop" "nlockmgr" >/dev
/null
2>&1
129 "$CTDB_NFS_CALLOUT" "start" "nlockmgr" >/dev
/null
2>&1
131 # we now need to send out additional statd notifications to ensure
132 # that clients understand that the lockmanager has restarted.
133 # we have three cases:
134 # 1, clients that ignore the ip address the stat notification came from
135 # and ONLY care about the 'name' in the notify packet.
136 # these clients ONLY work with lock failover IFF that name
137 # can be resolved into an ipaddress that matches the one used
138 # to mount the share. (==linux clients)
139 # This is handled when starting lockmanager above, but those
140 # packets are sent from the "wrong" ip address, something linux
141 # clients are ok with, buth other clients will barf at.
142 # 2, Some clients only accept statd packets IFF they come from the
143 # 'correct' ip address.
144 # 2a,Send out the notification using the 'correct' ip address and also
145 # specify the 'correct' hostname in the statd packet.
146 # Some clients require both the correct source address and also the
147 # correct name. (these clients also ONLY work if the ip addresses
148 # used to map the share can be resolved into the name returned in
149 # the notify packet.)
150 # 2b,Other clients require that the source ip address of the notify
151 # packet matches the ip address used to take out the lock.
152 # I.e. that the correct source address is used.
153 # These clients also require that the statd notify packet contains
154 # the name as the ip address used when the lock was taken out.
156 # Both 2a and 2b are commonly used in lockmanagers since they maximize
157 # probability that the client will accept the statd notify packet and
158 # not just ignore it.
159 # For all IPs we serve, collect info and push to the config database
162 # Construct a sed expression to take catdb output and produce pairs of:
163 # server-IP client-IP
164 # but only for the server-IPs that are hosted on this node.
165 ctdb_all_ips
=$
(ctdb ip all |
tail -n +2)
166 sed_expr
=$
(echo "$ctdb_all_ips" |
167 awk -v pnn
=$pnn 'pnn == $2 { \
168 ip = $1; gsub(/\./, "\\.", ip); \
169 printf "s/^key.*=.*statd-state@\\(%s\\)@\\([^\"]*\\).*/\\1 \\2/p\n", ip }')
171 statd_state
=$
(ctdb catdb ctdb.tdb |
sed -n "$sed_expr" |
sort)
172 [ -n "$statd_state" ] ||
exit 0
174 smnotify
="${CTDB_HELPER_BINDIR}/smnotify"
176 echo "$statd_state" |
{
177 # This all needs to be in the same command group at the
178 # end of the pipe so it doesn't get lost when the loop
181 while read sip cip
; do
182 # Collect item to delete from the DB
183 key
="statd-state@${sip}@${cip}"
184 item
="\"${key}\" \"\""
185 items
="${items}${items:+${nl}}${item}"
187 # NOTE: Consider optimising smnotify to read all the
188 # data from stdin and then run it in the background.
190 # Reset stateval for each serverip
191 [ "$sip" = "$prev" ] || stateval
="$state_even"
192 # Send notifies for server shutdown
193 "$smnotify" --client=$cip --ip=$sip --server=$sip --stateval=$stateval
194 "$smnotify" --client=$cip --ip=$sip --server=$NFS_HOSTNAME --stateval=$stateval
195 # Send notifies for server startup
196 stateval
=$
(($stateval + 1))
197 "$smnotify" --client=$cip --ip=$sip --server=$sip --stateval=$stateval
198 "$smnotify" --client=$cip --ip=$sip --server=$NFS_HOSTNAME --stateval=$stateval
201 echo "$items" | ctdb ptrans
"ctdb.tdb"
204 # Remove any stale touch files (i.e. for IPs not currently
205 # hosted on this node and created since the last "update").
206 # There's nothing else we can do with them at this stage.
207 echo "$ctdb_all_ips" |
208 awk -v pnn
=$pnn 'pnn != $2 { print $1 }' |
210 rm -f "statd-state@${sip}@"*