/etc/init.d/o2cb is in ocfs2-tools 1.6.4-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 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 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 | #!/bin/bash
# init fragment for O2CB.
#
# chkconfig: 2345 24 20
# description: Load O2CB cluster services at system boot.
#
### BEGIN INIT INFO
# Provides: o2cb
# Required-Start: $network
# Should-Start:
# Required-Stop: $network
# Default-Start: S
# Default-Stop: 0 6
# Short-Description: Load O2CB cluster services at system boot.
# Description: Load O2CB cluster services at system boot.
### END INIT INFO
# Force LC_ALL=C
export LC_ALL=C
# Let's try to use the LSB functions
. /lib/lsb/init-functions
if [ $? != 0 ]
then
echo "Unable to load LSB init functions" >&2
exit 1
fi
CLUSTERCONF=/etc/ocfs2/cluster.conf
OCFS2_SYS_DIR="/sys/fs/ocfs2"
LOADED_PLUGINS_FILE="${OCFS2_SYS_DIR}/loaded_cluster_plugins"
CLUSTER_STACK_FILE="${OCFS2_SYS_DIR}/cluster_stack"
DLMFS_CAPABILITIES_FILE='/sys/module/ocfs2_dlmfs/parameters/capabilities'
if [ -f /etc/sysconfig/o2cb ]
then
# Red Hat and Novell
CONFIGURATION=/etc/sysconfig/o2cb
elif [ -f /etc/default/o2cb ]
then
# Debian
CONFIGURATION=/etc/default/o2cb
DPKGRECONF=yes
elif [ -d /etc/sysconfig ]
then
CONFIGURATION=/etc/sysconfig/o2cb
else
CONFIGURATION=/etc/default/o2cb
fi
# How long to wait for things to start
BRINGUP_TIMEOUT=5
# The default values should always be in sync with the kernel
DEF_HEARTBEAT_THRESHOLD=31
DEF_IDLE_TIMEOUT_MS=30000
DEF_KEEPALIVE_DELAY_MS=2000
DEF_RECONNECT_DELAY_MS=2000
# Minimum timeout values
MIN_HEARTBEAT_THRESHOLD=7
MIN_IDLE_TIMEOUT_MS=5000
MIN_KEEPALIVE_DELAY_MS=1000
MIN_RECONNECT_DELAY_MS=2000
VERSION=1.6.4
# Source configuration
[ -f "${CONFIGURATION}" ] && . "${CONFIGURATION}"
# Need this default
[ -z "$O2CB_STACK" ] && O2CB_STACK=o2cb
configfs_path()
{
# Note that this is only valid *after* configfs is loaded
if [ -d /sys/kernel/config ]
then
echo /sys/kernel/config
else
echo /config
fi
}
#
# if_fail()
#
# Evaluates return codes. If 0, prints "OK", if 1, prints "Failed"
# and exits. If 2, status is "already done" and nothing is printed.
# The rest of the functions in here all honor this convention.
#
if_fail()
{
RC="$1"
REASON="$2"
if [ "$RC" = "0" ]
then
echo "OK"
return
elif [ "$RC" = "2" ]
then
return
fi
echo "Failed"
if [ -n "${REASON}" ]
then
echo "${REASON}" >&2
fi
exit 1
}
#
# write_sysconfig()
#
# Writes the system configuration out
#
write_sysconfig()
{
echo -n "Writing O2CB configuration: "
cat >"${CONFIGURATION}" <<EOF
#
# This is a configuration file for automatic startup of the O2CB
# driver. It is generated by running /etc/init.d/o2cb configure.
# On Debian based systems the preferred method is running
# 'dpkg-reconfigure ocfs2-tools'.
#
# O2CB_ENABLED: 'true' means to load the driver on boot.
O2CB_ENABLED=${O2CB_ENABLED:-false}
# O2CB_STACK: The name of the cluster stack backing O2CB.
O2CB_STACK=${O2CB_STACK}
# O2CB_BOOTCLUSTER: If not empty, the name of a cluster to start.
O2CB_BOOTCLUSTER=${O2CB_BOOTCLUSTER}
# O2CB_HEARTBEAT_THRESHOLD: Iterations before a node is considered dead.
O2CB_HEARTBEAT_THRESHOLD=${O2CB_HEARTBEAT_THRESHOLD}
# O2CB_IDLE_TIMEOUT_MS: Time in ms before a network connection is considered dead.
O2CB_IDLE_TIMEOUT_MS=${O2CB_IDLE_TIMEOUT_MS}
# O2CB_KEEPALIVE_DELAY_MS: Max time in ms before a keepalive packet is sent
O2CB_KEEPALIVE_DELAY_MS=${O2CB_KEEPALIVE_DELAY_MS}
# O2CB_RECONNECT_DELAY_MS: Min time in ms between connection attempts
O2CB_RECONNECT_DELAY_MS=${O2CB_RECONNECT_DELAY_MS}
EOF
if [ $? != 0 ]
then
return 1
fi
return 0
}
#
# read_timeout()
# Returns timeout value provided by user to caller in RET_VAL
#
read_timeout()
{
if [ "$#" -lt "4" ]; then
echo "read_timeout(): Requires more arguments" >&2
exit 1
fi
ATTRIB_NAME=$1
ATTRIB_VAL=$2
MIN_ATTRIB_VAL=$3
DEF_ATTRIB_VAL=$4
RET_VAL=0
while :
do
if [ -z $ATTRIB_VAL ]; then
CUR=$DEF_ATTRIB_VAL
else
CUR=$ATTRIB_VAL
fi
echo -n "Specify ${ATTRIB_NAME} (>=$MIN_ATTRIB_VAL) [$CUR]: "
read LINE
case "$LINE" in
"")
RET_VAL="$ATTRIB_VAL"
break
;;
*[^0-9]*)
echo "Invalid ${ATTRIB_NAME} value: $LINE" >&2
;;
*)
if [ $LINE -lt $MIN_ATTRIB_VAL ]; then
echo "${ATTRIB_NAME} cannot be less than $MIN_ATTRIB_VAL" >&2
else
RET_VAL="$LINE"
break
fi
;;
esac
done
}
set_timeouts()
{
O2CB_HEARTBEAT_THRESHOLD_FILE_OLD=/proc/fs/ocfs2_nodemanager/hb_dead_threshold
O2CB_HEARTBEAT_THRESHOLD_FILE=$(configfs_path)/cluster/${CLUSTER}/heartbeat/dead_threshold
if [ -n "$O2CB_HEARTBEAT_THRESHOLD" ]; then
if [ -f "$O2CB_HEARTBEAT_THRESHOLD_FILE" ]; then
echo "$O2CB_HEARTBEAT_THRESHOLD" > "$O2CB_HEARTBEAT_THRESHOLD_FILE"
elif [ -f "$O2CB_HEARTBEAT_THRESHOLD_FILE_OLD" ]; then
echo "$O2CB_HEARTBEAT_THRESHOLD" > "$O2CB_HEARTBEAT_THRESHOLD_FILE_OLD"
fi
fi
O2CB_IDLE_TIMEOUT_MS_FILE=$(configfs_path)/cluster/${CLUSTER}/idle_timeout_ms
if [ -n "$O2CB_IDLE_TIMEOUT_MS" ]; then
if [ -f "$O2CB_IDLE_TIMEOUT_MS_FILE" ]; then
echo "$O2CB_IDLE_TIMEOUT_MS" > "$O2CB_IDLE_TIMEOUT_MS_FILE"
fi
fi
O2CB_KEEPALIVE_DELAY_MS_FILE=$(configfs_path)/cluster/${CLUSTER}/keepalive_delay_ms
if [ -n "$O2CB_KEEPALIVE_DELAY_MS" ]; then
if [ -f "$O2CB_KEEPALIVE_DELAY_MS_FILE" ]; then
echo "$O2CB_KEEPALIVE_DELAY_MS" > "$O2CB_KEEPALIVE_DELAY_MS_FILE"
fi
fi
O2CB_RECONNECT_DELAY_MS_FILE=$(configfs_path)/cluster/${CLUSTER}/reconnect_delay_ms
if [ -n "$O2CB_RECONNECT_DELAY_MS" ]; then
if [ -f "$O2CB_RECONNECT_DELAY_MS_FILE" ]; then
echo "$O2CB_RECONNECT_DELAY_MS" > "$O2CB_RECONNECT_DELAY_MS_FILE"
fi
fi
}
show_timeouts()
{
O2CB_HEARTBEAT_THRESHOLD_FILE_OLD=/proc/fs/ocfs2_nodemanager/hb_dead_threshold
O2CB_HEARTBEAT_THRESHOLD_FILE=$(configfs_path)/cluster/${CLUSTER}/heartbeat/dead_threshold
if [ -f "$O2CB_HEARTBEAT_THRESHOLD_FILE" ]; then
VAL=`cat "$O2CB_HEARTBEAT_THRESHOLD_FILE"`
echo "Heartbeat dead threshold = ${VAL}"
elif [ -f "$O2CB_HEARTBEAT_THRESHOLD_FILE_OLD" ]; then
VAL=`cat "$O2CB_HEARTBEAT_THRESHOLD_FILE_OLD"`
echo " Heartbeat dead threshold: ${VAL}"
fi
O2CB_IDLE_TIMEOUT_MS_FILE=$(configfs_path)/cluster/${CLUSTER}/idle_timeout_ms
if [ -f "$O2CB_IDLE_TIMEOUT_MS_FILE" ]; then
VAL=`cat "$O2CB_IDLE_TIMEOUT_MS_FILE"`
echo " Network idle timeout: ${VAL}"
fi
O2CB_KEEPALIVE_DELAY_MS_FILE=$(configfs_path)/cluster/${CLUSTER}/keepalive_delay_ms
if [ -f "$O2CB_KEEPALIVE_DELAY_MS_FILE" ]; then
VAL=`cat "$O2CB_KEEPALIVE_DELAY_MS_FILE"`
echo " Network keepalive delay: ${VAL}"
fi
O2CB_RECONNECT_DELAY_MS_FILE=$(configfs_path)/cluster/${CLUSTER}/reconnect_delay_ms
if [ -f "$O2CB_RECONNECT_DELAY_MS_FILE" ]; then
VAL=`cat "$O2CB_RECONNECT_DELAY_MS_FILE"`
echo " Network reconnect delay: ${VAL}"
fi
}
#
# configure_ask()
#
# Ask configuration questions, setting the shell vars.
#
configure_ask()
{
if [ -n "$DPKGRECONF" ]; then
cat <<EOF
Configuring the O2CB driver.
Please configure this service in the Debian way:
dpkg-reconfigure ocfs2-tools
EOF
exit 0
fi
cat <<EOF
Configuring the O2CB driver.
This will configure the on-boot properties of the O2CB driver.
The following questions will determine whether the driver is loaded on
boot. The current values will be shown in brackets ('[]'). Hitting
<ENTER> without typing an answer will keep that current value. Ctrl-C
will abort.
EOF
while :
do
if [ "$O2CB_ENABLED" = "true" ]
then
CUR=y
else
CUR=n
fi
echo -n "Load O2CB driver on boot (y/n) [$CUR]: "
read LINE
case "$LINE" in
"")
break
;;
y|Y)
O2CB_ENABLED=true
break
;;
n|N)
O2CB_ENABLED=false
break
;;
*)
echo "Invalid answer: $LINE" >&2
;;
esac
done
while :
do
echo -n "Cluster stack backing O2CB [$O2CB_STACK]: "
read LINE
case "$LINE" in
"")
break
;;
????)
O2CB_STACK="$LINE"
break
;;
*)
echo "Invalid answer: $LINE" >&2
;;
esac
done
while :
do
echo -n "Cluster to start on boot (Enter \"none\" to clear) [$O2CB_BOOTCLUSTER]: "
read LINE
case "$LINE" in
"")
break
;;
none)
O2CB_BOOTCLUSTER=
break
;;
*[^a-zA-Z0-9]*)
echo "Invalid cluster name: $LINE" >&2
;;
*)
O2CB_BOOTCLUSTER="$LINE"
break
;;
esac
done
read_timeout "heartbeat dead threshold" "$O2CB_HEARTBEAT_THRESHOLD" "$MIN_HEARTBEAT_THRESHOLD" "$DEF_HEARTBEAT_THRESHOLD"
O2CB_HEARTBEAT_THRESHOLD="$RET_VAL"
read_timeout "network idle timeout in ms" "$O2CB_IDLE_TIMEOUT_MS" "$MIN_IDLE_TIMEOUT_MS" "$DEF_IDLE_TIMEOUT_MS"
O2CB_IDLE_TIMEOUT_MS="$RET_VAL"
read_timeout "network keepalive delay in ms" "$O2CB_KEEPALIVE_DELAY_MS" "$MIN_KEEPALIVE_DELAY_MS" "$DEF_KEEPALIVE_DELAY_MS"
O2CB_KEEPALIVE_DELAY_MS="$RET_VAL"
read_timeout "network reconnect delay in ms" "$O2CB_RECONNECT_DELAY_MS" "$MIN_RECONNECT_DELAY_MS" "$DEF_RECONNECT_DELAY_MS"
O2CB_RECONNECT_DELAY_MS="$RET_VAL"
# XXX ask about mount point base
}
#
# make_dir()
#
# Create $1
# Returns 0 on success, 1 on error, 2 if it already exists.
#
make_dir()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "make_dir(): Requires an argument" >&2
return 1
fi
DIR="$1"
if [ -e "$DIR" ]
then
if [ -d "$DIR" ]
then
return 2
fi
echo "make_dir(): File $DIR is not a directory" >&2
return 1
fi
echo -n "Creating directory '$DIR': "
mkdir -p "$DIR" 2>/dev/null
if [ $? != 0 ]
then
echo "Unable to create directory '$DIR'" >&2
return 1
fi
return 0
}
#
# driver_filesystem()
# Check to see if a filesystem driver is loaded.
#
# 0 is loaded, 1 is not.
#
driver_filesystem()
{
if [ -z "$1" ]
then
echo "driver_filesystem(): Missing an argument" >&2
exit 1
fi
FSNAME="$1"
PSEUDO="$2"
FSOUT="$(awk '(NF == 1 && $1 ~ /^'$FSNAME'$/) || $2 ~ /^'$FSNAME'$/{
print $1;exit
}' /proc/filesystems 2>/dev/null)"
test -n "$FSOUT"
return $?
}
#
# load_filesystem()
# Load a filesystem driver.
#
# 0 is success, 1 is error, 2 is already loaded.
#
load_filesystem()
{
if [ "$#" != "1" -o -z "$1" ]
then
echo "load_filesystem(): Missing an argument" >&2
return 1
fi
FSNAME="$1"
driver_filesystem "$FSNAME" && return 2
echo -n "Loading filesystem \"$FSNAME\": "
modprobe -s "$FSNAME"
if [ "$?" != 0 ]
then
echo "Unable to load filesystem \"$FSNAME\"" >&2
return 1
fi
return 0
}
#
# unload_filesystem()
# Unload a filesystem driver. Be careful to notice if the driver is
# built-in and do nothing.
#
# 0 is success, 1 is error, 2 is already loaded.
#
unload_filesystem()
{
if [ "$#" != "1" -o -z "$1" ]
then
echo "unload_filesystem(): Missing an argument" >&2
return 1
fi
FSNAME="$1"
driver_filesystem "$FSNAME" || return 2
MODOUT="`awk '$1 ~ /^'$FSNAME'$/{print $1,$3;exit}' < /proc/modules 2>/dev/null`"
if [ -z "$MODOUT" ]
then
# The driver is built in, we can't unload it.
return 2
fi
case "$MODOUT" in
$FSNAME\ 0)
;;
$FSNAME\ *)
# The driver is busy, leave it alone
return 2
;;
*)
echo -n "Invalid module parsing! "
return 1
;;
esac
echo -n "Unloading module \"$FSNAME\": "
modprobe -rs "$FSNAME"
if [ "$?" != 0 ]
then
echo "Unable to unload module \"$FSNAME\"" >&2
return 1
fi
return 0
}
#
# check_filesystem()
# Check to see if a filesystem of type $1 is mounted at $2.
#
# 0 is mounted, 1 is not.
#
check_filesystem()
{
if [ "$#" != "2" -o -z "$1" -o -z "$2" ]
then
echo "check_filesystem(): Missing arguments" >&2
exit 1
fi
FSNAME="$1"
MOUNTPOINT="$2"
FULL_MOUNTSEARCH="`echo "$MOUNTPOINT" | sed -e 's/\//\\\\\//g'`"
MOUNTOUT="`awk '$2 ~ /^'$FULL_MOUNTSEARCH'$/ && $3 ~ /^'$FSNAME'$/{print $2; exit}' < /proc/mounts 2>/dev/null`"
test -n "$MOUNTOUT"
return $?
}
#
# mount_filesystem()
# Mounts a pseudo-filesystem of type $1 on mountpoint $2. It will
# load the drivers for $1 and create $2 if needed.
#
# 0 is success, 1 is error, 2 is already mounted.
#
mount_filesystem()
{
if [ "$#" != "2" -o -z "$1" -o -z "$2" ]
then
echo "mount_filesystem(): Missing arguments" >&2
return 1
fi
FSNAME="$1"
MOUNTPOINT="$2"
check_filesystem "$FSNAME" "$MOUNTPOINT" && return 2
load_filesystem "$FSNAME"
if_fail $?
# XXX some policy?
if [ ! -e "$MOUNTPOINT" ]; then
make_dir $MOUNTPOINT
if_fail "$?"
fi
echo -n "Mounting ${FSNAME} filesystem at ${MOUNTPOINT}: "
mount -t ${FSNAME} ${FSNAME} ${MOUNTPOINT}
if [ $? != 0 ]
then
echo "Unable to mount ${FSNAME} filesystem" >&2
return 1
fi
return 0
}
#
# unmount_filesystem()
# Unmount a pseudo-filesystem of type $1 from mountpoint $2. It will
# remove the driver for $1 if it can.
#
# 0 is success, 1 is error, 2 is not mounted
#
unmount_filesystem()
{
if [ "$#" != "2" -o -z "$1" -o -z "$2" ]
then
echo "unmount_filesystem(): Missing arguments" >&2
return 1
fi
FSNAME="$1"
MOUNTPOINT="$2"
if check_filesystem "$FSNAME" "$MOUNTPOINT"
then
echo -n "Unmounting ${FSNAME} filesystem: "
umount $MOUNTPOINT
RC=$?
if [ $RC != 0 ]
then
echo "Unable to unmount ${FSNAME} filesystem" >&2
return 1
fi
if_fail $RC # For the success string
fi
unload_filesystem "$FSNAME"
return $?
}
#
# status_filesystem()
# Report the status of a filesystem, whether it is mounted or not
#
# 0 is not mounted, 1 is error, 2 is already mounted
#
status_filesystem()
{
if [ "$#" != "2" -o -z "$1" -o -z "$2" ]
then
echo "status_filesystem(): Missing arguments" >&2
return 1
fi
FSNAME="$1"
MOUNTPOINT="$2"
echo -n "Driver for \"$FSNAME\": "
if driver_filesystem "$FSNAME"
then
echo "Loaded"
else
echo "Not loaded"
return 0
fi
echo -n "Filesystem \"$FSNAME\": "
if check_filesystem "$FSNAME" "$MOUNTPOINT"
then
echo "Mounted"
return 2
fi
echo "Not mounted"
return 0
}
status_daemon()
{
DAEMON="/sbin/ocfs2_controld.${O2CB_STACK}"
echo -n "Checking for control daemon: "
if [ -n "$(pidofproc "$DAEMON")" ]
then
echo "$DAEMON"
return 0
else
echo "not running"
return 1
fi
}
bringup_daemon()
{
DAEMON="/sbin/ocfs2_controld.${O2CB_STACK}"
echo -n "Starting $(basename "$DAEMON"): "
start_daemon "$DAEMON"
[ $? != 0 ] && return 1
COUNT=0
while [ -z "$(pidofproc "$DAEMON")" ]
do
COUNT="$(expr "$COUNT" + 1)"
if [ "$COUNT" -gt "$BRINGUP_TIMEOUT" ]
then
return 1
fi
sleep 1
done
return 0
}
kill_daemon()
{
SIGNAL="$1"
DAEMON="/sbin/ocfs2_controld.${O2CB_STACK}"
status_daemon >/dev/null 2>&1 || return 2
PID="$(pidofproc "$DAEMON")"
echo -n "Stopping $(basename "$DAEMON"): "
killproc "$DAEMON" $SIGNAL
TRIED=
while :
do
NEWPID="$(pidofproc "$DAEMON")"
if [ -z "$NEWPID" -o "$NEWPID" != "$PID" ]
then
echo "Stopped"
return
fi
[ -n "$TRIED" ] && break
TRIED=t
# Give it one chance to exit
sleep 1
done
echo "Failed"
return 1
}
#
# check_heartbeat()
#
# 0 is hb not active, 1 is error, 2 is hb active
#
check_heartbeat()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "check_heartbeat(): Requires an argument" >&2
return 1
fi
CLUSTER="$1"
RC=0
if [ -d "$(configfs_path)/cluster/${CLUSTER}/heartbeat/" ]
then
ls -1 "$(configfs_path)/cluster/${CLUSTER}/heartbeat/" | while read HBUUID
do
if [ -d "$(configfs_path)/cluster/${CLUSTER}/heartbeat/${HBUUID}" ]
then
return 2;
fi
done
if [ $? = 2 ]
then
RC=2
fi
fi
return $RC
}
#
# clean_heartbeat()
# Removes the inactive heartbeat regions
#
clean_heartbeat()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "clean_heartbeat(): Requires an argument" >&2
return 1
fi
CLUSTER="$1"
if [ ! -f "$(configfs_path)/cluster/${CLUSTER}/heartbeat/*" ]
then
return
fi
echo -n "Cleaning heartbeat on ${CLUSTER}: "
ls -1 "$(configfs_path)/cluster/${CLUSTER}/heartbeat/" | while read HBUUID
do
if [ ! -d "$(configfs_path)/cluster/${CLUSTER}/heartbeat/${HBUUID}" ]
then
continue
fi
OUTPUT="`ocfs2_hb_ctl -I -u ${HBUUID} 2>&1`"
if [ $? != 0 ]
then
echo "Failed"
echo "${OUTPUT}" >&2
exit 1
fi
REF="`echo ${OUTPUT} | awk '/refs/ {print $2; exit;}' 2>&1`"
if [ $REF != 0 ]
then
echo "Failed"
echo "At least one heartbeat region still active" >&2
exit 1
else
OUTPUT="`ocfs2_hb_ctl -K -u ${HBUUID} 2>&1`"
fi
done
if [ $? = 1 ]
then
exit 1
fi
echo "OK"
}
#
# clean_cluster()
# Force cleans configured cluster
#
# 0 is clean, 1 is error, 2 is not clean
#
clean_cluster()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "clean_cluster(): Requires an argument" >&2
return 1
fi
CLUSTER="$1"
if [ -d "$(configfs_path)/cluster/${CLUSTER}/node/" ]
then
ls -1 "$(configfs_path)/cluster/${CLUSTER}/node/" | while read NODE
do
rmdir "$(configfs_path)/cluster/${CLUSTER}/node/${NODE}" >/dev/null 2>&1
done
fi
if [ -d "$(configfs_path)/cluster/${CLUSTER}" ]
then
rmdir "$(configfs_path)/cluster/${CLUSTER}" >/dev/null 2>&1
fi
if [ -d "$(configfs_path)/cluster/${CLUSTER}" ]
then
return 2
fi
return 0
}
select_stack_plugin()
{
case "$O2CB_STACK" in
o2cb)
echo o2cb
;;
????)
echo user
;;
*)
echo -n "Checking if cluster stack \"$O2CB_STACK\" is supported: "
if_fail 1 "Invalid cluster stack name \"$O2CB_STACK\""
;;
esac
}
#
# load_stack_o2cb()
# Load the o2cb stack.
#
# 0 is success, 1 is error, 2 is already loaded
#
load_stack_o2cb()
{
PLUGIN="o2cb"
PLUGIN_MODULE="ocfs2_stack_${PLUGIN}"
#
# Older drivers don't have stack plugins. They only support the
# classic stack. It is loaded in ocfs2_nodemanager, which is pulled
# in during the load of ocfs2_dlmfs. Thus, if we are using the classic
# stack and cannot load the stack plugin, we silently let the later
# code try for older drivers.
#
# For a newer driver, if ocfs2_stackglue is loaded, we'll see
# CLUSTER_STACK_FILE. Thus, we can determine what mode we're in.
#
[ ! -e "$CLUSTER_STACK_FILE" ] && \
modprobe -s ocfs2_stackglue
# If we're a newer driver, CLUSTER_STACK_FILE will now appear
if [ -e "$CLUSTER_STACK_FILE" ]
then
SP_OUT="$(awk '/^'$PLUGIN'$/{print; exit}' "$LOADED_PLUGINS_FILE" 2>/dev/null)"
if [ -z "$SP_OUT" ]
then
echo -n "Loading stack plugin \"$PLUGIN\": "
modprobe -s "$PLUGIN_MODULE"
[ "$?" != 0 ] && if_fail 1 "Unable to load module \"$PLUGIN_MODULE\""
if_fail 0
fi
fi
mount_filesystem "ocfs2_dlmfs" "/dlm"
if_fail $?
return 0
}
#
# dlmfs_user_capable()
# Check if dlmfs supports user stacks.
#
# 0 is yes, 1 is no.
#
dlmfs_user_capable()
{
if [ -e "$DLMFS_CAPABILITIES_FILE" ]
then
CAP_LINE="$(awk '/\ystackglue\y/{print}' "$DLMFS_CAPABILITIES_FILE" 2>/dev/null)"
else
CAP_LINE="$(modinfo ocfs2_dlmfs 2>/dev/null |
awk '/parm:[ \t]*capabilities:.*\ystackglue\y/{
print
}')"
fi
test x"$CAP_LINE" != x
}
#
# load_stack_user()
# Load the userspace stack plugin.
#
# 0 is success, 1 is error, 2 is already loaded
#
load_stack_user()
{
PLUGIN="user"
PLUGIN_MODULE="ocfs2_stack_${PLUGIN}"
#
# Older drivers don't have stack plugins. They only support the
# classic stack. It is loaded in ocfs2_nodemanager, which is pulled
# in during the load of ocfs2_dlmfs. Thus, if we are using the classic
# stack and cannot load the stack plugin, we silently let the later
# code try for older drivers.
#
# For a newer driver, if ocfs2_stackglue is loaded, we'll see
# CLUSTER_STACK_FILE. Thus, we can determine what mode we're in.
#
[ ! -e "$CLUSTER_STACK_FILE" ] && \
modprobe -s ocfs2_stackglue
if [ ! -e "$CLUSTER_STACK_FILE" ]
then
echo -n "Checking if stack \"$O2CB_STACK\" is supported: "
if_fail 1 "User stack plugin is not supported"
fi
SP_OUT="$(awk '/^'$PLUGIN'$/{print; exit}' "$LOADED_PLUGINS_FILE" 2>/dev/null)"
if [ -z "$SP_OUT" ]
then
echo -n "Loading stack plugin \"$PLUGIN\": "
modprobe -s "$PLUGIN_MODULE"
[ "$?" != 0 ] && if_fail 1 "Unable to load module \"$PLUGIN_MODULE\""
if_fail 0
fi
if dlmfs_user_capable
then
mount_filesystem "ocfs2_dlmfs" "/dlm"
if_fail $?
fi
return 0
}
#
# unload_stack_plugins()
# Since we can have both plugins unloaded, we just do the same work
# for all stack types
#
unload_stack_plugins()
{
# Whether not loaded or old drivers, if we can't find the stack glue,
# we have nothing to do.
[ ! -e "$LOADED_PLUGINS_FILE" ] && return 2
while read plugin
do
unload_module "ocfs2_stack_${plugin}"
if_fail $? "Unable to unload ocfs2_stack_${plugin}"
done <"$LOADED_PLUGINS_FILE"
unload_module "ocfs2_stackglue"
if_fail $? "Unable to unload ocfs2_stackglue"
}
#
#
# unload_stack_o2cb()
# Unload the o2cb stack plugin
#
# 0 is success, 1 is error, 2 is not loaded.
#
unload_stack_o2cb()
{
PLUGIN="o2cb"
PLUGIN_MODULE="ocfs2_stack_${PLUGIN}"
if [ -d "$(configfs_path)/cluster/" ]
then
ls -1 $(configfs_path)/cluster/ | while read CLUSTER
do
if [ ! -L "$(configfs_path)/cluster/${CLUSTER}" -a \
-d "$(configfs_path)/cluster/${CLUSTER}" ]
then
echo "Unable to unload modules as O2CB cluster ${CLUSTER} is still online" >&2
exit 1
fi
done
if [ $? = 1 ]
then
exit 1
fi
fi
unmount_filesystem "ocfs2_dlmfs" "/dlm"
if_fail $?
unload_stack_plugins
}
#
# unload_stack_user()
# Unload the user stack plugin
#
# 0 is success, 1 is error, 2 is not loaded.
#
unload_stack_user()
{
PLUGIN="$(select_stack_plugin)"
PLUGIN_MODULE="ocfs2_stack_${PLUGIN}"
if status_daemon >/dev/null 2>&1
then
echo "Unable to unload modules as the cluster is still online" >&2
exit 1
fi
unmount_filesystem "ocfs2_dlmfs" "/dlm"
if_fail $?
unload_stack_plugins
}
status_stack_plugin()
{
PLUGIN="$(select_stack_plugin)"
if [ ! -e "$LOADED_PLUGINS_FILE" ]
then
# The old stack may be fine here.
[ "$PLUGIN" = "o2cb" ] && return
echo "Stack glue driver: Not loaded"
return
fi
echo "Stack glue driver: Loaded"
echo -n "Stack plugin \"$PLUGIN\": "
if grep "$PLUGIN" "$LOADED_PLUGINS_FILE" >/dev/null 2>&1
then
echo "Loaded"
else
echo "Not loaded"
fi
}
status_stack_o2cb()
{
status_stack_plugin
status_filesystem "ocfs2_dlmfs" "/dlm"
}
status_stack_user()
{
status_stack_plugin
echo -n "Driver for \"ocfs2\": "
if driver_filesystem "ocfs2"
then
echo "Loaded"
else
echo "Not loaded"
fi
}
#
# unload_module()
# Unload a module
#
# 0 is success, 1 is error, 2 is not loaded
#
unload_module()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "unload_module(): Requires an argument" >&2
return 1
fi
MODNAME="$1"
MODOUT="`awk '$1 ~ /^'$MODNAME'$/{print $1,$3;exit}' < /proc/modules 2>/dev/null`"
if [ -z "$MODOUT" ]
then
return 2
fi
case "$MODOUT" in
$MODNAME\ 0)
;;
$MODNAME\ *)
return 2
;;
*)
echo -n "Invalid module parsing! "
return 1
;;
esac
echo -n "Unloading module \"$MODNAME\": "
modprobe -rs "$MODNAME"
if [ "$?" != 0 ]
then
echo "Unable to unload module \"$MODNAME\"" >&2
return 1
fi
return 0
}
#
# check_load_module()
#
# 0 is not loaded, 1 is error, 2 is already loaded
#
check_load_module()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "check_load_module(): Requires an argument" >&2
return 1
fi
MODNAME="$1"
echo -n "Module \"$MODNAME\": "
MODOUT="`awk '$1 ~ /^'$MODNAME'$/{print $1,$3;exit}' < /proc/modules 2>/dev/null`"
if [ -z "$MODOUT" ]
then
echo "Not loaded"
return 0
fi
echo "Loaded"
return 2
}
load()
{
PLUGIN="$(select_stack_plugin)"
# XXX: SPECIAL CASE! We must load configfs for configfs_path() to work
load_filesystem "configfs"
if_fail $?
mount_filesystem "configfs" "$(configfs_path)"
if_fail $?
load_stack_$PLUGIN
return 0
}
load_status()
{
PLUGIN="$(select_stack_plugin)"
status_filesystem "configfs" "$(configfs_path)"
status_stack_$PLUGIN
return 0
}
online_o2cb()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "online_o2cb(): Requires an argument" >&2
return 1
fi
CLUSTER="$1"
if ! [ -f ${CLUSTERCONF} ]
then
echo -n "Checking O2CB cluster configuration : "
if_fail 1
fi
echo -n "Starting O2CB cluster ${CLUSTER}: "
OUTPUT="`o2cb_ctl -H -n "${CLUSTER}" -t cluster -a online=yes 2>&1`"
if [ $? = 0 ]
then
set_timeouts
echo "OK"
return
else
echo "Failed"
echo "$OUTPUT"
fi
echo -n "Stopping O2CB cluster ${CLUSTER}: "
OUTPUT="`o2cb_ctl -H -n "${CLUSTER}" -t cluster -a online=no 2>&1`"
if_fail "$?" "$OUTPUT"
}
online_user()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "online_user(): Requires an argument" >&2
return 1
fi
CLUSTER="$1"
load_filesystem "ocfs2"
if_fail $? "Unable to load ocfs2 driver"
bringup_daemon
if_fail $? "Unable to start control daemon"
}
online()
{
CLUSTER="${1:-${O2CB_BOOTCLUSTER}}"
if [ -z "$CLUSTER" ]
then
echo "Cluster not known"
return
fi
PLUGIN="$(select_stack_plugin)"
check_online $CLUSTER
if [ $? = 2 ]
then
echo "Cluster ${CLUSTER} already online"
return
fi
if [ -f "$CLUSTER_STACK_FILE" ]
then
echo -n "Setting cluster stack \"$O2CB_STACK\": "
echo "$O2CB_STACK" >"$CLUSTER_STACK_FILE" 2>/dev/null
if_fail $? "Unable to store cluster stack \"$O2CB_STACK\""
elif [ "$O2CB_STACK" != "o2cb" ]
then
echo -n "Setting cluster stack \"$O2CB_STACK\": "
if_fail 1 "Stack \"$O2CB_STACK\" is not supported"
fi
online_$PLUGIN "$CLUSTER"
}
#
# check_online_o2cb()
#
# 0 is not online, 1 is error, 2 is online
#
check_online_o2cb()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "check_online(): Requires an argument" >&2
return 1
fi
CLUSTER="$1"
RC=0
if [ -d "$(configfs_path)/cluster/${CLUSTER}/node/" ]
then
ls -1 "$(configfs_path)/cluster/${CLUSTER}/node/" | while read NODE
do
LOCAL="`cat \"$(configfs_path)/cluster/${CLUSTER}/node/${NODE}/local\"`"
if [ $LOCAL = 1 ]
then
return 2
fi
done
if [ $? = 2 ]
then
RC=2
fi
fi
return $RC
}
#
# check_online_user()
#
# 0 is not online, 1 is error, 2 is online
#
check_online_user()
{
if status_daemon >/dev/null 2>&1
then
return 2
else
return 1
fi
}
#
# check_online()
#
# 0 is not online, 1 is error, 2 is online
#
check_online()
{
PLUGIN="$(select_stack_plugin)"
check_online_$PLUGIN $1
}
offline_o2cb()
{
if [ "$#" -lt "2" -o -z "$1" -o -z "$2" ]
then
echo "offline_o2cb(): Missing arguments" >&2
return 1
fi
CLUSTER="$1"
FORCE="$2"
if [ ! -e "$(configfs_path)/cluster/${CLUSTER}" ]
then
return
fi
clean_heartbeat $CLUSTER
echo -n "Stopping O2CB cluster ${CLUSTER}: "
check_heartbeat $CLUSTER
if [ $? != 0 ]
then
echo "Failed"
echo "Unable to stop cluster as heartbeat region still active" >&2
exit 1
fi
if [ "$FORCE" -eq 1 ]
then
clean_cluster $CLUSTER
if_fail "$?" "Unable to force-offline cluster $CLUSTER" >&2
else
OUTPUT="`o2cb_ctl -H -n "${CLUSTER}" -t cluster -a online=no 2>&1`"
if_fail "$?" "$OUTPUT - Try to force-offline the O2CB cluster"
fi
}
offline_user()
{
if [ "$#" -lt "2" -o -z "$1" -o -z "$2" ]
then
echo "offline_user(): Missing arguments" >&2
return 1
fi
CLUSTER="$1"
FORCE="$2"
kill_daemon
[ $? = 1 -a "$FORCE" -eq 1 ] && kill_daemon -9
}
offline()
{
CLUSTER="${1:-${O2CB_BOOTCLUSTER}}"
if [ -z "$CLUSTER" ]
then
return
fi
PLUGIN="$(select_stack_plugin)"
if [ $# -gt 1 ]
then
FORCE=$2
else
FORCE=0
fi
offline_$PLUGIN "$CLUSTER" "$FORCE"
unload_filesystem "ocfs2"
if_fail "$?"
}
start()
{
if [ "$O2CB_ENABLED" != "true" ]
then
exit 0
fi
load
online "$1"
}
unload()
{
PLUGIN="$(select_stack_plugin)"
unload_stack_$PLUGIN
# Only unmount configfs if there are no other users
if [ -z "$(ls -1 "$(configfs_path)")" ]
then
unmount_filesystem "configfs" "$(configfs_path)"
if_fail $?
fi
}
stop()
{
offline "$1"
unload
}
configure()
{
configure_ask
if [ -z "$DPKGRECONF" ]; then
write_sysconfig
if_fail "$?" "Unable to write the driver configuration"
fi
}
online_status_o2cb()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "online_status_o2cb(): Missing arguments" >&2
return 1
fi
CLUSTER="$1"
echo -n "Checking O2CB cluster $CLUSTER: "
check_online_o2cb $CLUSTER
if [ $? = 2 ]
then
echo "Online"
else
echo "Offline"
return 0;
fi
show_timeouts
echo -n "Checking O2CB heartbeat: "
check_heartbeat $CLUSTER
if [ $? = 2 ]
then
echo "Active"
else
echo "Not active"
return 0;
fi
}
online_status_user()
{
status_daemon
}
online_status()
{
if [ "$#" -lt "1" -o -z "$1" ]
then
echo "online_status(): Missing arguments" >&2
return 1
fi
CLUSTER="$1"
PLUGIN="$(select_stack_plugin)"
online_status_$PLUGIN "$CLUSTER"
}
status()
{
load_status
CLUSTER="${1:-${O2CB_BOOTCLUSTER}}"
if [ -z "$CLUSTER" ]
then
return 1;
fi
online_status "$CLUSTER"
}
case "$1" in
start)
start "$2"
;;
status)
status "$2"
;;
stop)
stop "$2"
;;
restart)
stop "$2"
start "$2"
;;
force-reload)
stop "$2"
start "$2"
;;
load)
load
;;
online)
load
online "$2"
;;
offline)
offline "$2"
;;
force-offline)
offline "$2" 1
;;
unload)
offline "$2"
unload
;;
configure)
configure
if [ "$O2CB_ENABLED" = "true" ]
then
start
else
stop
fi
;;
enable)
O2CB_ENABLED=true
write_sysconfig
if_fail "$?" "Unable to write the driver configuration"
start
;;
disable)
O2CB_ENABLED=false
write_sysconfig
if_fail "$?" "Unable to write the driver configuration"
stop
;;
*)
echo "Usage: $0 {start|stop|restart|force-reload|enable|disable|configure|load|unload|online|offline|force-offline|status}"
exit 1
;;
esac
exit 0
|