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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
|
# Hey Emacs, this is a -*- shell-script -*- !!! :-)
. "${TEST_SCRIPTS_DIR}/common.sh"
######################################################################
export CTDB_TIMEOUT=60
if [ -n "$CTDB_TEST_REMOTE_DIR" ] ; then
CTDB_TEST_WRAPPER="${CTDB_TEST_REMOTE_DIR}/test_wrap"
else
_d=$(cd ${TEST_SCRIPTS_DIR}; echo $PWD)
CTDB_TEST_WRAPPER="$_d/test_wrap"
fi
export CTDB_TEST_WRAPPER
# If $VALGRIND is set then use it whenever ctdb is called, but only if
# $CTDB is not already set.
[ -n "$CTDB" ] || export CTDB="${VALGRIND}${VALGRIND:+ }ctdb"
# why???
PATH="${TEST_SCRIPTS_DIR}:${PATH}"
######################################################################
ctdb_test_exit ()
{
local status=$?
trap - 0
[ $(($testfailures+0)) -eq 0 -a $status -ne 0 ] && testfailures=$status
status=$(($testfailures+0))
# Avoid making a test fail from this point onwards. The test is
# now complete.
set +e
echo "*** TEST COMPLETED (RC=$status) AT $(date '+%F %T'), CLEANING UP..."
eval "$ctdb_test_exit_hook" || true
unset ctdb_test_exit_hook
if $ctdb_test_restart_scheduled || ! cluster_is_healthy ; then
restart_ctdb
else
# This could be made unconditional but then we might get
# duplication from the recovery in restart_ctdb. We want to
# leave the recovery in restart_ctdb so that future tests that
# might do a manual restart mid-test will benefit.
echo "Forcing a recovery..."
onnode 0 $CTDB recover
fi
exit $status
}
ctdb_test_exit_hook_add ()
{
ctdb_test_exit_hook="${ctdb_test_exit_hook}${ctdb_test_exit_hook:+ ; }$*"
}
ctdb_test_init ()
{
scriptname=$(basename "$0")
testfailures=0
ctdb_test_restart_scheduled=false
trap "ctdb_test_exit" 0
}
########################################
# Sets: $out
try_command_on_node ()
{
local nodespec="$1" ; shift
local verbose=false
local onnode_opts=""
while [ "${nodespec#-}" != "$nodespec" ] ; do
if [ "$nodespec" = "-v" ] ; then
verbose=true
else
onnode_opts="${onnode_opts}${onnode_opts:+ }${nodespec}"
fi
nodespec="$1" ; shift
done
local cmd="$*"
out=$(onnode -q $onnode_opts "$nodespec" "$cmd" 2>&1) || {
echo "Failed to execute \"$cmd\" on node(s) \"$nodespec\""
echo "$out"
return 1
}
if $verbose ; then
echo "Output of \"$cmd\":"
echo "$out"
fi
}
sanity_check_output ()
{
local min_lines="$1"
local regexp="$2" # Should be anchored as necessary.
local output="$3"
local ret=0
local num_lines=$(echo "$output" | wc -l)
echo "There are $num_lines lines of output"
if [ $num_lines -lt $min_lines ] ; then
echo "BAD: that's less than the required number (${min_lines})"
ret=1
fi
local status=0
local unexpected # local doesn't pass through status of command on RHS.
unexpected=$(echo "$output" | egrep -v "$regexp") || status=$?
# Note that this is reversed.
if [ $status -eq 0 ] ; then
echo "BAD: unexpected lines in output:"
echo "$unexpected" | cat -A
ret=1
else
echo "Output lines look OK"
fi
return $ret
}
sanity_check_ips ()
{
local ips="$1" # list of "ip node" lines
echo "Sanity checking IPs..."
local x ipp prev
prev=""
while read x ipp ; do
[ "$ipp" = "-1" ] && break
if [ -n "$prev" -a "$ipp" != "$prev" ] ; then
echo "OK"
return 0
fi
prev="$ipp"
done <<<"$ips"
echo "BAD: a node was -1 or IPs are only assigned to one node"
echo "Are you running an old version of CTDB?"
return 1
}
# This returns a list of "ip node" lines in $out
all_ips_on_node()
{
local node="$1"
try_command_on_node $node \
"$CTDB ip -Y | awk -F: 'NR > 1 { print \$2, \$3 }'"
}
_select_test_node_and_ips ()
{
try_command_on_node any \
"$CTDB ip -Y -n all | awk -F: 'NR > 1 { print \$2, \$3 }'"
test_node="" # this matches no PNN
test_node_ips=""
local ip pnn
while read ip pnn ; do
if [ -z "$test_node" -a "$pnn" != "-1" ] ; then
test_node="$pnn"
fi
if [ "$pnn" = "$test_node" ] ; then
test_node_ips="${test_node_ips}${test_node_ips:+ }${ip}"
fi
done <<<"$out" # bashism to avoid problem setting variable in pipeline.
echo "Selected node ${test_node} with IPs: ${test_node_ips}."
test_ip="${test_node_ips%% *}"
[ -n "$test_node" ] || return 1
}
select_test_node_and_ips ()
{
local timeout=10
while ! _select_test_node_and_ips ; do
echo "Unable to find a test node with IPs assigned"
if [ $timeout -le 0 ] ; then
echo "BAD: Too many attempts"
return 1
fi
sleep_for 1
timeout=$(($timeout - 1))
done
return 0
}
# Sets: mask, iface
get_test_ip_mask_and_iface ()
{
# Find the interface
try_command_on_node $test_node "$CTDB ip -v -Y | awk -F: -v ip=$test_ip '\$2 == ip { print \$4 }'"
iface="$out"
if [ -z "$TEST_LOCAL_DAEMONS" ] ; then
# Find the netmask
try_command_on_node $test_node ip addr show to $test_ip
mask="${out##*/}"
mask="${mask%% *}"
else
mask="24"
fi
echo "$test_ip/$mask is on $iface"
}
#######################################
# Wait until either timeout expires or command succeeds. The command
# will be tried once per second, unless timeout has format T/I, where
# I is the recheck interval.
wait_until ()
{
local timeout="$1" ; shift # "$@" is the command...
local interval=1
case "$timeout" in
*/*)
interval="${timeout#*/}"
timeout="${timeout%/*}"
esac
local negate=false
if [ "$1" = "!" ] ; then
negate=true
shift
fi
echo -n "<${timeout}|"
local t=$timeout
while [ $t -gt 0 ] ; do
local rc=0
"$@" || rc=$?
if { ! $negate && [ $rc -eq 0 ] ; } || \
{ $negate && [ $rc -ne 0 ] ; } ; then
echo "|$(($timeout - $t))|"
echo "OK"
return 0
fi
local i
for i in $(seq 1 $interval) ; do
echo -n .
done
t=$(($t - $interval))
sleep $interval
done
echo "*TIMEOUT*"
return 1
}
sleep_for ()
{
echo -n "=${1}|"
for i in $(seq 1 $1) ; do
echo -n '.'
sleep 1
done
echo '|'
}
_cluster_is_healthy ()
{
$CTDB nodestatus all >/dev/null
}
_cluster_is_recovered ()
{
node_has_status all recovered
}
_cluster_is_ready ()
{
_cluster_is_healthy && _cluster_is_recovered
}
cluster_is_healthy ()
{
if onnode 0 $CTDB_TEST_WRAPPER _cluster_is_healthy ; then
echo "Cluster is HEALTHY"
if ! onnode 0 $CTDB_TEST_WRAPPER _cluster_is_recovered ; then
echo "WARNING: cluster in recovery mode!"
fi
return 0
else
echo "Cluster is UNHEALTHY"
if ! ${ctdb_test_restart_scheduled:-false} ; then
echo "DEBUG AT $(date '+%F %T'):"
local i
for i in "onnode -q 0 $CTDB status" "onnode -q 0 onnode all $CTDB scriptstatus" ; do
echo "$i"
$i || true
done
fi
return 1
fi
}
wait_until_ready ()
{
local timeout="${1:-120}"
echo "Waiting for cluster to become ready..."
wait_until $timeout onnode -q any $CTDB_TEST_WRAPPER _cluster_is_ready
}
# This function is becoming nicely overloaded. Soon it will collapse! :-)
node_has_status ()
{
local pnn="$1"
local status="$2"
local bits fpat mpat rpat
case "$status" in
(unhealthy) bits="?:?:?:1:*" ;;
(healthy) bits="?:?:?:0:*" ;;
(disconnected) bits="1:*" ;;
(connected) bits="0:*" ;;
(banned) bits="?:1:*" ;;
(unbanned) bits="?:0:*" ;;
(disabled) bits="?:?:1:*" ;;
(enabled) bits="?:?:0:*" ;;
(stopped) bits="?:?:?:?:1:*" ;;
(notstopped) bits="?:?:?:?:0:*" ;;
(frozen) fpat='^[[:space:]]+frozen[[:space:]]+1$' ;;
(unfrozen) fpat='^[[:space:]]+frozen[[:space:]]+0$' ;;
(monon) mpat='^Monitoring mode:ACTIVE \(0\)$' ;;
(monoff) mpat='^Monitoring mode:DISABLED \(1\)$' ;;
(recovered) rpat='^Recovery mode:RECOVERY \(1\)$' ;;
*)
echo "node_has_status: unknown status \"$status\""
return 1
esac
if [ -n "$bits" ] ; then
local out x line
out=$($CTDB -Y status 2>&1) || return 1
{
read x
while read line ; do
# This needs to be done in 2 steps to avoid false matches.
local line_bits="${line#:${pnn}:*:}"
[ "$line_bits" = "$line" ] && continue
[ "${line_bits#${bits}}" != "$line_bits" ] && return 0
done
return 1
} <<<"$out" # Yay bash!
elif [ -n "$fpat" ] ; then
$CTDB statistics -n "$pnn" | egrep -q "$fpat"
elif [ -n "$mpat" ] ; then
$CTDB getmonmode -n "$pnn" | egrep -q "$mpat"
elif [ -n "$rpat" ] ; then
! $CTDB status -n "$pnn" | egrep -q "$rpat"
else
echo 'node_has_status: unknown mode, neither $bits nor $fpat is set'
return 1
fi
}
wait_until_node_has_status ()
{
local pnn="$1"
local status="$2"
local timeout="${3:-30}"
local proxy_pnn="${4:-any}"
echo "Waiting until node $pnn has status \"$status\"..."
if ! wait_until $timeout onnode $proxy_pnn $CTDB_TEST_WRAPPER node_has_status "$pnn" "$status" ; then
for i in "onnode -q any $CTDB status" "onnode -q any onnode all $CTDB scriptstatus" ; do
echo "$i"
$i || true
done
return 1
fi
}
# Useful for superficially testing IP failover.
# IPs must be on the given node.
# If the first argument is '!' then the IPs must not be on the given node.
ips_are_on_node ()
{
local negating=false
if [ "$1" = "!" ] ; then
negating=true ; shift
fi
local node="$1" ; shift
local ips="$*"
local out
all_ips_on_node $node
local check
for check in $ips ; do
local ip pnn
while read ip pnn ; do
if [ "$check" = "$ip" ] ; then
if [ "$pnn" = "$node" ] ; then
if $negating ; then return 1 ; fi
else
if ! $negating ; then return 1 ; fi
fi
ips="${ips/${ip}}" # Remove from list
break
fi
# If we're negating and we didn't see the address then it
# isn't hosted by anyone!
if $negating ; then
ips="${ips/${check}}"
fi
done <<<"$out" # bashism to avoid problem setting variable in pipeline.
done
ips="${ips// }" # Remove any spaces.
[ -z "$ips" ]
}
wait_until_ips_are_on_node ()
{
echo "Waiting for IPs to fail over..."
wait_until 60 ips_are_on_node "$@"
}
node_has_some_ips ()
{
local node="$1"
local out
all_ips_on_node $node
while read ip pnn ; do
if [ "$node" = "$pnn" ] ; then
return 0
fi
done <<<"$out" # bashism to avoid problem setting variable in pipeline.
return 1
}
wait_until_node_has_some_ips ()
{
echo "Waiting for node to have some IPs..."
wait_until 60 node_has_some_ips "$@"
}
#######################################
_ctdb_hack_options ()
{
local ctdb_options="$*"
case "$ctdb_options" in
*--start-as-stopped*)
export CTDB_START_AS_STOPPED="yes"
esac
}
restart_ctdb_1 ()
{
_ctdb_hack_options "$@"
if [ -e /etc/redhat-release ] ; then
service ctdb restart
else
/etc/init.d/ctdb restart
fi
}
# Restart CTDB on all nodes. Override for local daemons.
_restart_ctdb_all ()
{
onnode -p all $CTDB_TEST_WRAPPER restart_ctdb_1 "$@"
}
# Nothing needed for a cluster. Override for local daemons.
setup_ctdb ()
{
:
}
restart_ctdb ()
{
# "$@" is passed to restart_ctdb_all.
echo -n "Restarting CTDB"
if $ctdb_test_restart_scheduled ; then
echo -n " (scheduled)"
fi
echo "..."
local i
for i in $(seq 1 5) ; do
_restart_ctdb_all "$@" || {
echo "Restart failed. Trying again in a few seconds..."
sleep_for 5
continue
}
wait_until_ready || {
echo "Cluster didn't become ready. Restarting..."
continue
}
echo "Setting RerecoveryTimeout to 1"
onnode -pq all "$CTDB setvar RerecoveryTimeout 1"
# In recent versions of CTDB, forcing a recovery like this
# blocks until the recovery is complete. Hopefully this will
# help the cluster to stabilise before a subsequent test.
echo "Forcing a recovery..."
onnode -q 0 $CTDB recover
sleep_for 2
if ! onnode -q any $CTDB_TEST_WRAPPER _cluster_is_recovered ; then
echo "Cluster has gone into recovery again, waiting..."
wait_until 30/2 onnode -q any $CTDB_TEST_WRAPPER _cluster_is_recovered
fi
# Cluster is still healthy. Good, we're done!
if ! onnode 0 $CTDB_TEST_WRAPPER _cluster_is_healthy ; then
echo "Cluster became UNHEALTHY again [$(date)]"
onnode -p all ctdb status -Y 2>&1
onnode -p all ctdb scriptstatus 2>&1
echo "Restarting..."
continue
fi
echo "Doing a sync..."
onnode -q 0 $CTDB sync
echo "ctdb is ready"
return 0
done
echo "Cluster UNHEALTHY... too many attempts..."
onnode -p all ctdb status -Y 2>&1
onnode -p all ctdb scriptstatus 2>&1
# Try to make the calling test fail
status=1
return 1
}
# Does nothing on cluster and should be overridden for local daemons
maybe_stop_ctdb ()
{
:
}
ctdb_restart_when_done ()
{
ctdb_test_restart_scheduled=true
}
get_ctdbd_command_line_option ()
{
local pnn="$1"
local option="$2"
try_command_on_node "$pnn" "$CTDB getpid" || \
die "Unable to get PID of ctdbd on node $pnn"
local pid="${out#*:}"
try_command_on_node "$pnn" "ps -p $pid -o args hww" || \
die "Unable to get command-line of PID $pid"
# Strip everything up to and including --option
local t="${out#*--${option}}"
# Strip leading '=' or space if present
t="${t#=}"
t="${t# }"
# Strip any following options and print
echo "${t%% -*}"
}
#######################################
wait_for_monitor_event ()
{
local pnn="$1"
local timeout=120
echo "Waiting for a monitor event on node ${pnn}..."
try_command_on_node "$pnn" $CTDB scriptstatus || {
echo "Unable to get scriptstatus from node $pnn"
return 1
}
local ctdb_scriptstatus_original="$out"
wait_until 120 _ctdb_scriptstatus_changed
}
_ctdb_scriptstatus_changed ()
{
try_command_on_node "$pnn" $CTDB scriptstatus || {
echo "Unable to get scriptstatus from node $pnn"
return 1
}
[ "$out" != "$ctdb_scriptstatus_original" ]
}
#######################################
nfs_test_setup ()
{
select_test_node_and_ips
nfs_first_export=$(showmount -e $test_ip | sed -n -e '2s/ .*//p')
echo "Creating test subdirectory..."
try_command_on_node $test_node "mktemp -d --tmpdir=$nfs_first_export"
nfs_test_dir="$out"
try_command_on_node $test_node "chmod 777 $nfs_test_dir"
nfs_mnt_d=$(mktemp -d)
nfs_local_file="${nfs_mnt_d}/${nfs_test_dir##*/}/TEST_FILE"
nfs_remote_file="${nfs_test_dir}/TEST_FILE"
ctdb_test_exit_hook_add nfs_test_cleanup
echo "Mounting ${test_ip}:${nfs_first_export} on ${nfs_mnt_d} ..."
mount -o timeo=1,hard,intr,vers=3 \
${test_ip}:${nfs_first_export} ${nfs_mnt_d}
}
nfs_test_cleanup ()
{
rm -f "$nfs_local_file"
umount -f "$nfs_mnt_d"
rmdir "$nfs_mnt_d"
onnode -q $test_node rmdir "$nfs_test_dir"
}
#######################################
# $1: pnn, $2: DB name
db_get_path ()
{
try_command_on_node -v $1 $CTDB getdbstatus "$2" |
sed -n -e "s@^path: @@p"
}
# $1: pnn, $2: DB name
db_ctdb_cattdb_count_records ()
{
try_command_on_node -v $1 $CTDB cattdb "$2" |
grep '^key' | grep -v '__db_sequence_number__' |
wc -l
}
# $1: pnn, $2: DB name, $3: key string, $4: value string, $5: RSN (default 7)
db_ctdb_tstore ()
{
_tdb=$(db_get_path $1 "$2")
_rsn="${5:-7}"
try_command_on_node $1 $CTDB tstore "$_tdb" "$3" "$4" "$_rsn"
}
# $1: pnn, $2: DB name, $3: dbseqnum (must be < 255!!!!!)
db_ctdb_tstore_dbseqnum ()
{
# "__db_sequence_number__" + trailing 0x00
_key='0x5f5f64625f73657175656e63655f6e756d6265725f5f00'
# Construct 8 byte (unit64_t) database sequence number. This
# probably breaks if $3 > 255
_value=$(printf "0x%02x%014x" $3 0)
db_ctdb_tstore $1 "$2" "$_key" "$_value"
}
#######################################
# Make sure that $CTDB is set.
: ${CTDB:=ctdb}
local="${TEST_SUBDIR}/scripts/local.bash"
if [ -r "$local" ] ; then
. "$local"
fi
|