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
|
/*
* Copyright (C) 2004 Andrew Beekhof <andrew@beekhof.net>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <crm_internal.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
#include <libgen.h>
#include <glib.h>
#include <netdb.h>
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/poll.h>
#include <sys/un.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <sys/time.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <arpa/inet.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
#include <netinet/ip6.h>
#include <netinet/icmp6.h>
#ifdef ON_LINUX
#include <asm/types.h>
#include <linux/errqueue.h>
# ifndef ICMP_FILTER
# define ICMP_FILTER 1
struct icmp_filter {
uint32_t data;
};
# endif
#endif
#include <crm/crm.h>
#include <crm/common/ipc.h>
#include <attrd.h>
#if SUPPORT_HEARTBEAT
# include <crm/common/cluster.h>
ll_cluster_t *pingd_cluster = NULL;
void do_node_walk(ll_cluster_t *hb_cluster);
#endif
/* GMainLoop *mainloop = NULL; */
GListPtr ping_list = NULL;
GMainLoop* mainloop = NULL;
GHashTable *ping_nodes = NULL;
const char *pingd_attr = "pingd";
gboolean do_filter = FALSE;
gboolean need_shutdown = FALSE;
gboolean stand_alone = FALSE;
gboolean do_updates = TRUE;
const char *attr_set = NULL;
const char *attr_section = NULL;
int attr_dampen = 5000; /* 5s */
int attr_multiplier = 1;
int pings_per_host = 2;
int ping_timeout = 2;
int re_ping_interval = 1000; /* 1s */
int ident; /* our pid */
unsigned char cmsgbuf[4096];
int cmsglen = 0;
typedef struct ping_node_s {
int fd; /* ping socket */
uint16_t iseq; /* sequence number */
gboolean type;
gboolean extra_filters;
union {
struct sockaddr raw;
struct sockaddr_in v4; /* ipv4 ping addr */
struct sockaddr_in6 v6; /* ipv6 ping addr */
} addr;
char dest[256];
char *host;
} ping_node;
void pingd_nstatus_callback(
const char *node, const char *status, void *private_data);
void pingd_lstatus_callback(
const char *node, const char *link, const char *status,
void *private_data);
void send_update(int active);
int process_icmp6_error(ping_node *node, struct sockaddr_in6 *whereto);
int process_icmp4_error(ping_node *node, struct sockaddr_in *whereto);
/*
* in_cksum --
* Checksum routine for Internet Protocol family headers (C Version)
* This function taken from Mike Muuss' ping program.
*/
static int
in_cksum (u_short *addr, size_t len)
{
size_t nleft = len;
u_short * w = addr;
int sum = 0;
u_short answer = 0;
/*
* The IP checksum algorithm is simple: using a 32 bit accumulator (sum)
* add sequential 16 bit words to it, and at the end, folding back all
* the carry bits from the top 16 bits into the lower 16 bits.
*/
while (nleft > 1) {
sum += *w++;
nleft -= 2;
}
/* Mop up an odd byte, if necessary */
if (nleft == 1) {
sum += *(u_char*)w;
}
/* Add back carry bits from top 16 bits to low 16 bits */
sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
sum += (sum >> 16); /* add carry */
answer = ~sum; /* truncate to 16 bits */
return answer;
}
static const char *ping_desc(gboolean family, uint8_t type, uint8_t code)
{
if(family == AF_INET6) {
switch(type) {
case ICMP6_DST_UNREACH:
switch(code) {
case ICMP6_DST_UNREACH_NOROUTE:
return "No Route to Destination";
case ICMP6_DST_UNREACH_ADMIN:
return "Destination Administratively Unreachable";
#ifdef ICMP6_DST_UNREACH_BEYONDSCOPE
case ICMP6_DST_UNREACH_BEYONDSCOPE:
return "Destination Unreachable Beyond Scope";
#endif
case ICMP6_DST_UNREACH_ADDR:
return "Destination Address Unreachable";
case ICMP6_DST_UNREACH_NOPORT:
return "Destination Port Unreachable";
default:
crm_err("Unreachable: Unknown subtype: %d", code);
return "Unreachable: Unknown Subtype";
}
case ICMP6_PACKET_TOO_BIG:
return "Packet too big";
case ICMP6_TIME_EXCEEDED:
switch(code) {
case ICMP6_TIME_EXCEED_TRANSIT:
return "Time to live exceeded";
case ICMP6_TIME_EXCEED_REASSEMBLY:
return "Frag reassembly time exceeded";
default:
crm_err("Timeout: Unknown subtype: %d", code);
return "Timeout: Unknown Subtype";
}
case ICMP6_PARAM_PROB:
switch(code) {
case ICMP6_PARAMPROB_HEADER:
return "Parameter problem: Erroneous Header";
case ICMP6_PARAMPROB_NEXTHEADER:
return "Parameter problem: Unknown Nextheader";
case ICMP6_PARAMPROB_OPTION:
return "Parameter problem: Unrecognized Option";
default:
crm_err("Invalid header: Unknown subtype: %d", code);
return "Invalid header: Unknown Subtype";
}
case ICMP6_ECHO_REQUEST:
return "Echo Request";
case ICMP6_ECHO_REPLY:
return "Echo Reply";
#ifdef MLD_LISTENER_QUERY
case MLD_LISTENER_QUERY:
return "Multicast Listener Query";
#endif
#ifdef MLD_LISTENER_REPORT
case MLD_LISTENER_REPORT:
return "Multicast Listener Report";
#endif
#ifdef MLD_LISTENER_REDUCTION
case MLD_LISTENER_REDUCTION:
return "Multicast Listener Done";
#endif
case ND_ROUTER_SOLICIT:
return "Router Solicitation";
case ND_ROUTER_ADVERT:
return "Router Advertisement";
case ND_NEIGHBOR_SOLICIT:
return "Neighbor Solicitation";
case ND_NEIGHBOR_ADVERT:
return "Neighbor Advertisement";
case ND_REDIRECT:
return "Redirect";
#ifdef ICMP6_ROUTER_RENUMBERING
case ICMP6_ROUTER_RENUMBERING:
return "Router renumbering";
#endif
default:
crm_err("Unknown type: %d", type);
return "Unknown type";
}
} else {
switch(type) {
case ICMP_ECHOREPLY:
return "Echo Reply";
case ICMP_ECHO:
return "Echo Request";
case ICMP_PARAMPROB:
return "Bad Parameter";
case ICMP_SOURCEQUENCH:
return "Packet lost, slow down";
case ICMP_TSTAMP:
return "Timestamp Request";
case ICMP_TSTAMPREPLY:
return "Timestamp Reply";
case ICMP_IREQ:
return "Information Request";
case ICMP_IREQREPLY:
return "Information Reply";
case ICMP_UNREACH:
switch(code) {
case ICMP_UNREACH_NET:
return "Unreachable Network";
case ICMP_UNREACH_HOST:
return "Unreachable Host";
case ICMP_UNREACH_PROTOCOL:
return "Unreachable Protocol";
case ICMP_UNREACH_PORT:
return "Unreachable Port";
case ICMP_UNREACH_NEEDFRAG:
return "Unreachable: Fragmentation needed";
case ICMP_UNREACH_SRCFAIL:
return "Unreachable Source Route";
case ICMP_UNREACH_NET_UNKNOWN:
return "Unknown Network";
case ICMP_UNREACH_HOST_UNKNOWN:
return "Unknown Host";
case ICMP_UNREACH_ISOLATED:
return "Unreachable: Isolated";
case ICMP_UNREACH_NET_PROHIB:
return "Prohibited network";
case ICMP_UNREACH_HOST_PROHIB:
return "Prohibited host";
case ICMP_UNREACH_FILTER_PROHIB:
return "Unreachable: Prohibited filter";
case ICMP_UNREACH_TOSNET:
return "Unreachable: Type of Service and Network";
case ICMP_UNREACH_TOSHOST:
return "Unreachable: Type of Service and Host";
case ICMP_UNREACH_HOST_PRECEDENCE:
return "Unreachable: Prec vio";
case ICMP_UNREACH_PRECEDENCE_CUTOFF:
return "Unreachable: Prec cutoff";
default:
crm_err("Unreachable: Unknown subtype: %d", code);
return "Unreachable: Unknown Subtype";
}
break;
case ICMP_REDIRECT:
switch(code) {
case ICMP_REDIRECT_NET:
return "Redirect: Network";
case ICMP_REDIRECT_HOST:
return "Redirect: Host";
case ICMP_REDIRECT_TOSNET:
return "Redirect: Type of Service and Network";
case ICMP_REDIRECT_TOSHOST:
return "Redirect: Type of Service and Host";
default:
crm_err("Redirect: Unknown subtype: %d", code);
return "Redirect: Unknown Subtype";
}
case ICMP_TIMXCEED:
switch(code) {
case ICMP_TIMXCEED_INTRANS:
return "Timeout: TTL";
case ICMP_TIMXCEED_REASS:
return "Timeout: Fragmentation reassembly";
default:
crm_err("Timeout: Unknown subtype: %d", code);
return "Timeout: Unknown Subtype";
}
break;
default:
crm_err("Unknown type: %d", type);
return "Unknown type";
}
}
}
#ifdef ON_LINUX
# define MAX_HOST 1024
int process_icmp6_error(ping_node *node, struct sockaddr_in6 *whereto)
{
int rc = 0;
char buf[512];
struct iovec iov;
struct msghdr msg;
struct icmp6_hdr icmph;
struct sockaddr_in6 target;
struct cmsghdr *cmsg = NULL;
struct sock_extended_err *s_err = NULL;
iov.iov_base = &icmph;
iov.iov_len = sizeof(icmph);
msg.msg_name = (void*)⌖
msg.msg_namelen = sizeof(target);
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
msg.msg_flags = 0;
msg.msg_control = buf;
msg.msg_controllen = sizeof(buf);
rc = recvmsg(node->fd, &msg, MSG_ERRQUEUE|MSG_DONTWAIT);
if (rc < 0 || rc < sizeof(icmph)) {
crm_perror(LOG_DEBUG, "No error message: %d", rc);
return 0;
}
for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
if (cmsg->cmsg_level == SOL_IPV6 && cmsg->cmsg_type == IPV6_RECVERR) {
s_err = (struct sock_extended_err *)CMSG_DATA(cmsg);
}
}
CRM_ASSERT(s_err != NULL);
if (s_err->ee_origin == SO_EE_ORIGIN_LOCAL) {
if (s_err->ee_errno == EMSGSIZE) {
crm_info("local error: Message too long, mtu=%u", s_err->ee_info);
} else {
crm_info("local error: %s", strerror(s_err->ee_errno));
}
return 0;
} else if (s_err->ee_origin == SO_EE_ORIGIN_ICMP6) {
struct sockaddr_in6 *sin = (struct sockaddr_in6*)(s_err+1);
const char *ping_result = ping_desc(node->type, s_err->ee_type, s_err->ee_code);
static char target_s[64], whereto_s[64], ping_host_s[64];
inet_ntop(AF_INET6, (struct in6_addr *)&(target.sin6_addr), target_s, sizeof(target_s));
inet_ntop(AF_INET6, (struct in6_addr *)&(whereto->sin6_addr), whereto_s, sizeof(whereto_s));
if (ntohs(icmph.icmp6_id) != ident) {
/* Result was not for us */
crm_debug("Not our error (ident): %d %d", ntohs(icmph.icmp6_id), ident);
return -1;
} else if (memcmp(&target.sin6_addr, &whereto->sin6_addr, 16)) {
/* Result was not for us */
crm_debug("Not our error (addr): %s %s", target_s, whereto_s);
return -1;
} else if (icmph.icmp6_type != ICMP6_ECHO_REQUEST) {
/* Not an error */
crm_info("Not an error: %d", icmph.icmp6_type);
return -1;
}
inet_ntop(AF_INET6, (struct in6_addr *)&(sin->sin6_addr), ping_host_s, sizeof(ping_host_s));
crm_debug("From %s icmp_seq=%u %s", ping_host_s, ntohs(icmph.icmp6_seq), ping_result);
} else {
crm_debug("else: %d", s_err->ee_origin);
}
return 0;
}
int process_icmp4_error(ping_node *node, struct sockaddr_in *whereto)
{
int rc = 0;
char buf[512];
struct iovec iov;
struct msghdr msg;
struct icmphdr icmph;
struct sockaddr_in target;
struct cmsghdr *cmsg = NULL;
struct sock_extended_err *s_err = NULL;
iov.iov_base = &icmph;
iov.iov_len = sizeof(icmph);
msg.msg_name = (void*)⌖
msg.msg_namelen = sizeof(target);
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
msg.msg_flags = 0;
msg.msg_control = buf;
msg.msg_controllen = sizeof(buf);
rc = recvmsg(node->fd, &msg, MSG_ERRQUEUE|MSG_DONTWAIT);
if (rc < 0 || rc < sizeof(icmph)) {
crm_perror(LOG_DEBUG, "No error message: %d", rc);
return 0;
}
for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
if (cmsg->cmsg_level == SOL_IP && cmsg->cmsg_type == IP_RECVERR) {
s_err = (struct sock_extended_err *)CMSG_DATA(cmsg);
}
}
CRM_ASSERT(s_err != NULL);
if (s_err->ee_origin == SO_EE_ORIGIN_LOCAL) {
if (s_err->ee_errno == EMSGSIZE) {
crm_info("local error: Message too long, mtu=%u", s_err->ee_info);
} else {
crm_info("local error: %s", strerror(s_err->ee_errno));
}
return 0;
} else if (s_err->ee_origin == SO_EE_ORIGIN_ICMP) {
char ping_host[MAX_HOST];
struct sockaddr_in *sin = (struct sockaddr_in*)(s_err+1);
const char *ping_result = ping_desc(node->type, s_err->ee_type, s_err->ee_code);
char *target_s = inet_ntoa(*(struct in_addr *)&(target.sin_addr.s_addr));
char *whereto_s = inet_ntoa(*(struct in_addr *)&(whereto->sin_addr.s_addr));
if (ntohs(icmph.un.echo.id) != ident) {
/* Result was not for us */
crm_debug("Not our error (ident): %d %d", ntohs(icmph.un.echo.id), ident);
return -1;
} else if (safe_str_neq(target_s, whereto_s)) {
/* Result was not for us */
crm_debug("Not our error (addr): %s %s", target_s, whereto_s);
return -1;
} else if (icmph.type != ICMP_ECHO) {
/* Not an error */
crm_info("Not an error: %d", icmph.type);
return -1;
}
/* snprintf(ping_host, MAX_HOST, "%s", inet_ntoa(*(struct in_addr *)&(sin->sin_addr.s_addr))); */
snprintf(ping_host, MAX_HOST, "%s", inet_ntoa(sin->sin_addr));
if (node->extra_filters == FALSE) {
/* Now that we got some sort of reply, add extra filters to
* ensure we keep getting the _right_ replies for dead hosts
*/
struct icmp_filter filt;
crm_debug("Installing additional ICMP filters");
node->extra_filters = TRUE; /* only try once */
filt.data = ~((1<<ICMP_SOURCE_QUENCH) | (1<<ICMP_REDIRECT) | (1<<ICMP_ECHOREPLY));
if (setsockopt(node->fd, SOL_RAW, ICMP_FILTER, (char*)&filt, sizeof(filt)) == -1) {
crm_perror(LOG_WARNING, "setsockopt failed: Cannot install ICMP filters for %s", ping_host);
}
}
crm_debug("From %s icmp_seq=%u %s", ping_host, ntohs(icmph.un.echo.sequence), ping_result);
} else {
crm_debug("else: %d", s_err->ee_origin);
}
return 0;
}
#else
int process_icmp6_error(ping_node *node, struct sockaddr_in6 *whereto)
{
/* dummy function */
return 0;
}
int process_icmp4_error(ping_node *node, struct sockaddr_in *whereto)
{
/* dummy function */
return 0;
}
#endif
static ping_node *ping_new(const char *host)
{
ping_node *node;
crm_malloc0(node, sizeof(ping_node));
if(strstr(host, ":")) {
node->type = AF_INET6;
} else {
node->type = AF_INET;
}
node->host = crm_strdup(host);
return node;
}
static gboolean ping_open(ping_node *node)
{
int ret_ga = 0;
char *hostname = NULL;
struct addrinfo *res = NULL;
struct addrinfo hints;
char *addr = NULL;
char *cp = NULL;
/* getaddrinfo */
bzero(&hints, sizeof(struct addrinfo));
hints.ai_flags = AI_CANONNAME;
hints.ai_family = node->type;
hints.ai_socktype = SOCK_RAW;
if(node->type == AF_INET6) {
hints.ai_protocol = IPPROTO_ICMPV6;
} else {
hints.ai_protocol = IPPROTO_ICMP;
}
addr = crm_strdup(node->host);
if ((cp = strchr(addr, '%'))) {
*cp = 0;
}
crm_debug("node->host[%s], addr[%s]", node->host, addr);
ret_ga = getaddrinfo(addr, NULL, &hints, &res);
crm_free(addr);
if (ret_ga) {
crm_warn("getaddrinfo: %s", gai_strerror(ret_ga));
goto bail;
}
if (res->ai_canonname) {
hostname = res->ai_canonname;
} else {
hostname = node->host;
}
crm_debug_2("Got address %s for %s", hostname, node->host);
if(!res->ai_addr) {
crm_warn("getaddrinfo failed: no address");
goto bail;
}
memcpy(&(node->addr.raw), res->ai_addr, res->ai_addrlen);
node->fd = socket(hints.ai_family, hints.ai_socktype, hints.ai_protocol);
/* node->fd = socket(res->ai_family, res->ai_socktype, res->ai_protocol); */
if(node->fd < 0) {
crm_perror(LOG_WARNING, "Can't open socket to %s", hostname);
goto bail;
}
if(node->type == AF_INET6) {
int sockopt;
inet_ntop(node->type, &node->addr.v6.sin6_addr, node->dest, sizeof(node->dest));
/* set recv buf for broadcast pings */
sockopt = 48 * 1024;
setsockopt(node->fd, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt, sizeof(sockopt));
} else {
inet_ntop(node->type, &node->addr.v4.sin_addr, node->dest, sizeof(node->dest));
}
if(ping_timeout > 0) {
struct timeval timeout_opt;
timeout_opt.tv_sec = ping_timeout;
timeout_opt.tv_usec = 0;
setsockopt(node->fd, SOL_SOCKET, SO_RCVTIMEO, (char *) &timeout_opt, sizeof(timeout_opt));
}
#ifdef ON_LINUX
{
int dummy = 1;
memset(&cmsgbuf, 0, sizeof(cmsgbuf));
cmsglen = 0;
if(node->type == AF_INET6) {
struct icmp6_filter filt;
ICMP6_FILTER_SETBLOCKALL(&filt);
ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
if (setsockopt(node->fd, IPPROTO_ICMPV6, ICMP6_FILTER, (char*)&filt, sizeof(filt)) == -1) {
crm_perror(LOG_WARNING, "setsockopt failed: Cannot install ICMP6 filters for %s", node->dest);
}
setsockopt(node->fd, SOL_IPV6, IPV6_RECVERR, (char *)&dummy, sizeof(dummy));
if ((cp = strchr(node->host, '%'))) {
struct ifreq ifr;
struct cmsghdr *cmsg;
struct in6_pktinfo *ipi;
memset(&ifr, 0, sizeof(ifr));
cp++;
crm_debug("set interface: [%s]", cp);
strncpy(ifr.ifr_name, cp, IFNAMSIZ-1);
if (ioctl(node->fd, SIOCGIFINDEX, &ifr) >= 0) {
cmsg = (struct cmsghdr*)cmsgbuf;
cmsglen = CMSG_SPACE(sizeof(*ipi));
cmsg->cmsg_len = CMSG_LEN(sizeof(*ipi));
cmsg->cmsg_level = SOL_IPV6;
cmsg->cmsg_type = IPV6_PKTINFO;
ipi = (struct in6_pktinfo*)CMSG_DATA(cmsg);
memset(ipi, 0, sizeof(*ipi));
ipi->ipi6_ifindex = ifr.ifr_ifindex;
} else {
crm_warn("unknown interface %s specified", cp);
}
}
} else {
struct icmp_filter filt;
filt.data = ~((1<<ICMP_SOURCE_QUENCH)|
(1<<ICMP_DEST_UNREACH)|
(1<<ICMP_TIME_EXCEEDED)|
(1<<ICMP_PARAMETERPROB)|
(1<<ICMP_REDIRECT)|
(1<<ICMP_ECHOREPLY));
if (setsockopt(node->fd, SOL_RAW, ICMP_FILTER, (char*)&filt, sizeof(filt)) == -1) {
crm_perror(LOG_WARNING, "setsockopt failed: Cannot install ICMP filters for %s", node->dest);
}
setsockopt(node->fd, SOL_IP, IP_RECVERR, (char *)&dummy, sizeof(dummy));
if ((cp = strchr(node->host, '%'))) {
struct ifreq ifr;
struct cmsghdr *cmsg;
struct in_pktinfo *ipi;
memset(&ifr, 0, sizeof(ifr));
cp++;
crm_debug("set interface: [%s]", cp);
strncpy(ifr.ifr_name, cp, IFNAMSIZ-1);
if (ioctl(node->fd, SIOCGIFINDEX, &ifr) >= 0) {
cmsg = (struct cmsghdr*)cmsgbuf;
cmsglen = CMSG_SPACE(sizeof(*ipi));
cmsg->cmsg_len = CMSG_LEN(sizeof(*ipi));
cmsg->cmsg_level = SOL_IP;
cmsg->cmsg_type = IP_PKTINFO;
ipi = (struct in_pktinfo*)CMSG_DATA(cmsg);
memset(ipi, 0, sizeof(*ipi));
ipi->ipi_ifindex = ifr.ifr_ifindex;
} else {
crm_warn("unknown interface %s specified", cp);
}
}
}
}
#endif
crm_debug_2("Opened connection to %s", node->dest);
freeaddrinfo(res);
return TRUE;
bail:
if(res) {
freeaddrinfo(res);
}
return FALSE;
}
static gboolean ping_close(ping_node *node)
{
int tmp_fd = node->fd;
node->fd = -1;
if (tmp_fd >= 0) {
if(close(tmp_fd) < 0) {
crm_perror(LOG_ERR,"Could not close ping socket");
} else {
tmp_fd = -1;
crm_debug_2("Closed connection to %s", node->dest);
}
}
return (tmp_fd == -1);
}
#define MAXPACKETLEN 131072
#define ICMP6ECHOLEN 8 /* icmp echo header len excluding time */
#define ICMP6ECHOTMLEN 20
#define DEFDATALEN ICMP6ECHOTMLEN
#define EXTRA 256 /* for AH and various other headers. weird. */
#define IP6LEN 40
static int
dump_v6_echo(ping_node *node, u_char *buf, int bytes, struct msghdr *hdr)
{
int rc = -1; /* Try again */
int fromlen;
char from_host[1024];
struct icmp6_hdr *icp;
struct sockaddr *from;
if (!hdr || !hdr->msg_name || hdr->msg_namelen != sizeof(struct sockaddr_in6)
|| ((struct sockaddr *)hdr->msg_name)->sa_family != AF_INET6) {
crm_warn("Invalid echo peer");
return rc;
}
fromlen = hdr->msg_namelen;
from = (struct sockaddr *)hdr->msg_name;
getnameinfo(from, fromlen, from_host, sizeof(from_host), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV);
if (bytes < (int)sizeof(struct icmp6_hdr)) {
crm_warn("Invalid echo packet (too short: %d bytes) from %s", bytes, from_host);
return rc;
}
icp = (struct icmp6_hdr *)buf;
if (icp->icmp6_type == ICMP6_ECHO_REPLY) {
if (ident == ntohs(icp->icmp6_id)
&& node->iseq == ntohs(icp->icmp6_seq)) {
rc = 1; /* Alive */
}
} else if(icp->icmp6_type != ICMP6_ECHO_REQUEST) {
rc = process_icmp6_error(node, (struct sockaddr_in6*)&(node->addr));
}
do_crm_log(LOG_DEBUG_2,
"Echo from %s (exp=%d, seq=%d, id=%d, dest=%s, data=%s): %s",
from_host, node->iseq, ntohs(icp->icmp6_seq),
ntohs(icp->icmp6_id), node->dest, (char*)(buf + ICMP6ECHOLEN),
ping_desc(node->type, icp->icmp6_type, icp->icmp6_code));
return rc;
}
static int
dump_v4_echo(ping_node *node, u_char *buf, int bytes, struct msghdr *hdr)
{
int rc = -1; /* Try again */
int iplen, fromlen;
char from_host[1024];
struct ip *ip;
struct icmp *icp;
struct sockaddr *from;
if (hdr == NULL
|| !hdr->msg_name
|| hdr->msg_namelen != sizeof(struct sockaddr_in)
|| ((struct sockaddr *)hdr->msg_name)->sa_family != AF_INET) {
crm_warn("Invalid echo peer");
return rc;
}
fromlen = hdr->msg_namelen;
from = (struct sockaddr *)hdr->msg_name;
getnameinfo(from, fromlen, from_host, sizeof(from_host), NULL, 0, NI_NUMERICHOST | NI_NUMERICSERV);
ip = (struct ip*)buf;
iplen = ip->ip_hl * 4;
if (bytes < (iplen + sizeof(struct icmp))) {
crm_warn("Invalid echo packet (too short: %d bytes) from %s", bytes, from_host);
return rc;
}
/* Check the IP header */
icp = (struct icmp*)(buf + iplen);
if (icp->icmp_type == ICMP_ECHOREPLY) {
if (ident == ntohs(icp->icmp_id)
&& node->iseq == ntohs(icp->icmp_seq)) {
rc = 1; /* Alive */
}
} else if(icp->icmp_type != ICMP_ECHO) {
rc = process_icmp4_error(node, (struct sockaddr_in*)from);
}
/* TODO: Stop logging icmp_id once we're sure everything works */
do_crm_log(LOG_DEBUG_2,
"Echo from %s (exp=%d, seq=%d, id=%d, dest=%s, data=%s): %s",
from_host, node->iseq, ntohs(icp->icmp_seq),
ntohs(icp->icmp_id), node->dest, icp->icmp_data,
ping_desc(node->type, icp->icmp_type, icp->icmp_code));
return rc;
}
static int
ping_read(ping_node *node, int *lenp)
{
int bytes;
char fromaddr[128];
struct msghdr m;
struct cmsghdr *cm;
u_char buf[1024];
struct iovec iov[2];
int saved_errno = 0;
struct timeval recv_start_time;
struct timeval recv_time;
int packlen;
u_char *packet;
gettimeofday(&recv_start_time, NULL);
packlen = DEFDATALEN + IP6LEN + ICMP6ECHOLEN + EXTRA;
crm_malloc0(packet, packlen);
retry:
m.msg_name = &fromaddr;
m.msg_namelen = sizeof(fromaddr);
memset(&iov, 0, sizeof(iov));
iov[0].iov_base = (caddr_t)packet;
iov[0].iov_len = packlen;
m.msg_iov = iov;
m.msg_iovlen = 1;
cm = (struct cmsghdr *)buf;
m.msg_control = (caddr_t)buf;
m.msg_controllen = sizeof(buf);
bytes = recvmsg(node->fd, &m, 0);
saved_errno = errno;
crm_debug_2("Got %d bytes", bytes);
if(bytes < 0) {
crm_perror(LOG_DEBUG, "Read failed");
if (saved_errno != EAGAIN && saved_errno != EINTR) {
int rc = 0;
if(node->type == AF_INET6) {
rc = process_icmp6_error(node, (struct sockaddr_in6*)&(node->addr));
} else {
rc = process_icmp4_error(node, (struct sockaddr_in*)&fromaddr);
}
if(rc < 0) {
crm_info("Retrying...");
goto retry;
}
}
} else if (bytes > 0) {
int rc = 0;
if(node->type == AF_INET6) {
rc = dump_v6_echo(node, packet, bytes, &m);
} else {
rc = dump_v4_echo(node, packet, bytes, &m);
}
gettimeofday(&recv_time, NULL);
if ((recv_start_time.tv_sec + ping_timeout) < recv_time.tv_sec) {
crm_warn("failed to receive for timeout.");
crm_free(packet);
return FALSE;
}
if(rc < 0) {
crm_info("Retrying...");
goto retry;
} else if(rc > 0) {
crm_free(packet);
return TRUE;
}
} else {
crm_err("Unexpected reply");
}
crm_free(packet);
return FALSE;
}
static int
ping_write(ping_node *node, const char *data, size_t size)
{
struct iovec iov;
int rc, bytes, namelen;
/* static int ntransmitted = 9; */
struct msghdr smsghdr;
u_char outpack[MAXPACKETLEN];
memset(outpack, 0, MAXPACKETLEN);
node->iseq++;
if(node->type == AF_INET6) {
struct icmp6_hdr *icp;
namelen = sizeof(struct sockaddr_in6);
bytes = ICMP6ECHOLEN + DEFDATALEN;
icp = (struct icmp6_hdr *)outpack;
icp->icmp6_code = 0;
icp->icmp6_cksum = 0;
icp->icmp6_type = ICMP6_ECHO_REQUEST;
icp->icmp6_id = htons(ident);
icp->icmp6_seq = htons(node->iseq);
/* Sanity check */
if(ntohs(icp->icmp6_seq) != node->iseq) {
crm_debug("Wrapping at %u", node->iseq);
node->iseq = ntohs(icp->icmp6_seq);
}
memcpy(&outpack[ICMP6ECHOLEN], "pingd-v6", 8);
} else {
struct icmp *icp;
namelen = sizeof(struct sockaddr_in);
bytes = sizeof(struct icmp) + 11;
icp = (struct icmp *)outpack;
icp->icmp_code = 0;
icp->icmp_cksum = 0;
icp->icmp_type = ICMP_ECHO;
icp->icmp_id = htons(ident);
icp->icmp_seq = htons(node->iseq);
/* Sanity check */
if(ntohs(icp->icmp_seq) != node->iseq) {
crm_debug("Wrapping at %u", node->iseq);
node->iseq = ntohs(icp->icmp_seq);
}
memcpy(icp->icmp_data, "pingd-v4", 8);
icp->icmp_cksum = in_cksum((u_short *)icp, bytes);
}
memset(&iov, 0, sizeof(struct iovec));
memset(&smsghdr, 0, sizeof(struct msghdr));
smsghdr.msg_name = (caddr_t)&(node->addr);
smsghdr.msg_namelen = namelen;
iov.iov_base = (caddr_t)outpack;
iov.iov_len = bytes;
smsghdr.msg_iov = &iov;
smsghdr.msg_iovlen = 1;
smsghdr.msg_control = cmsgbuf;
smsghdr.msg_controllen = cmsglen;
rc = sendmsg(node->fd, &smsghdr, 0);
if (rc < 0 || rc != bytes) {
crm_perror(LOG_WARNING, "Wrote %d of %d chars", rc, bytes);
return FALSE;
}
crm_debug_2("Sent %d bytes to %s", rc, node->dest);
return TRUE;
}
static void
pingd_shutdown(int nsig)
{
need_shutdown = TRUE;
send_update(0);
g_hash_table_destroy(ping_nodes);
slist_destroy(ping_node, p, ping_list,
crm_free(p->host);
crm_free(p);
);
exit(0);
}
#if SUPPORT_HEARTBEAT
static gboolean
pingd_ha_dispatch(IPC_Channel *channel, gpointer user_data)
{
gboolean stay_connected = TRUE;
crm_debug_2("Invoked");
while(pingd_cluster != NULL && IPC_ISRCONN(channel)) {
if(pingd_cluster->llc_ops->msgready(pingd_cluster) == 0) {
crm_debug_2("no message ready yet");
break;
}
/* invoke the callbacks but dont block */
pingd_cluster->llc_ops->rcvmsg(pingd_cluster, 0);
}
if (pingd_cluster == NULL || channel->ch_status != IPC_CONNECT) {
if(need_shutdown == FALSE) {
crm_crit("Lost connection to heartbeat service.");
} else {
crm_info("Lost connection to heartbeat service.");
}
stay_connected = FALSE;
}
return stay_connected;
}
static void
pingd_ha_connection_destroy(gpointer user_data)
{
crm_debug_3("Invoked");
if(need_shutdown) {
/* we signed out, so this is expected */
crm_info("Heartbeat disconnection complete");
return;
}
crm_crit("Lost connection to heartbeat service!");
}
static gboolean
register_with_ha(void)
{
if(pingd_cluster == NULL) {
pingd_cluster = ll_cluster_new("heartbeat");
}
if(pingd_cluster == NULL) {
crm_err("Cannot create heartbeat object");
return FALSE;
}
crm_debug("Signing in with Heartbeat");
if (pingd_cluster->llc_ops->signon(
pingd_cluster, crm_system_name) != HA_OK) {
crm_err("Cannot sign on with heartbeat: %s",
pingd_cluster->llc_ops->errmsg(pingd_cluster));
crm_err("REASON: %s", pingd_cluster->llc_ops->errmsg(pingd_cluster));
return FALSE;
}
do_node_walk(pingd_cluster);
crm_debug_3("Be informed of Node Status changes");
if (HA_OK != pingd_cluster->llc_ops->set_nstatus_callback(
pingd_cluster, pingd_nstatus_callback, NULL)) {
crm_err("Cannot set nstatus callback: %s",
pingd_cluster->llc_ops->errmsg(pingd_cluster));
crm_err("REASON: %s", pingd_cluster->llc_ops->errmsg(pingd_cluster));
return FALSE;
}
if (pingd_cluster->llc_ops->set_ifstatus_callback(
pingd_cluster, pingd_lstatus_callback, NULL) != HA_OK) {
crm_err("Cannot set if status callback: %s", pingd_cluster->llc_ops->errmsg(pingd_cluster));
return FALSE;
}
crm_debug_3("Adding channel to mainloop");
G_main_add_IPC_Channel(
G_PRIORITY_HIGH, pingd_cluster->llc_ops->ipcchan(
pingd_cluster),
FALSE, pingd_ha_dispatch, pingd_cluster,
pingd_ha_connection_destroy);
return TRUE;
}
void
do_node_walk(ll_cluster_t *hb_cluster)
{
const char *ha_node = NULL;
/* Async get client status information in the cluster */
crm_debug_2("Invoked");
crm_debug_3("Requesting an initial dump of CRMD client_status");
hb_cluster->llc_ops->client_status(
hb_cluster, NULL, CRM_SYSTEM_CRMD, -1);
crm_info("Requesting the list of configured nodes");
hb_cluster->llc_ops->init_nodewalk(hb_cluster);
do {
const char *ha_node_type = NULL;
const char *ha_node_status = NULL;
ha_node = hb_cluster->llc_ops->nextnode(hb_cluster);
if(ha_node == NULL) {
continue;
}
ha_node_type = hb_cluster->llc_ops->node_type(
hb_cluster, ha_node);
if(safe_str_neq("ping", ha_node_type)) {
crm_debug("Node %s: skipping '%s'",
ha_node, ha_node_type);
continue;
}
if(do_filter
&& g_hash_table_lookup(ping_nodes, ha_node) == NULL) {
crm_debug("Filtering: %s", ha_node);
continue;
}
ha_node_status = hb_cluster->llc_ops->node_status(
hb_cluster, ha_node);
crm_debug("Adding: %s=%s", ha_node, ha_node_status);
g_hash_table_replace(ping_nodes, crm_strdup(ha_node),
crm_strdup(ha_node_status));
} while(ha_node != NULL);
hb_cluster->llc_ops->end_nodewalk(hb_cluster);
crm_debug_2("Complete");
send_update(-1);
}
#endif
static gboolean stand_alone_ping(gpointer data)
{
int num_active = 0;
crm_debug_2("Checking connectivity");
slist_iter(
ping, ping_node, ping_list, num,
if(ping_open(ping)) {
int lpc = 0;
for(;lpc < pings_per_host; lpc++) {
int len = 0;
if(ping_write(ping, "test", 4) == FALSE) {
crm_info("Node %s is unreachable (write)", ping->host);
} else if(ping_read(ping, &len)) {
crm_debug("Node %s is alive", ping->host);
num_active++;
break;
} else {
crm_info("Node %s is unreachable (read)", ping->host);
}
sleep(1);
}
}
ping_close(ping);
);
send_update(num_active);
return TRUE;
}
static struct crm_option long_options[] = {
/* Top-level Options */
{"help", 0, 0, '?', "This text"},
{"version", 0, 0, '$', "Version information" },
{"verbose", 0, 0, 'V', "Increase debug output\n"},
{"daemonize", 0, 0, 'D', "\t\tRun in daemon mode"},
{"pid-file", 1, 0, 'p', "\tFile in which to store the process' PID\n"},
{"node", 1, 0, 'N', "\tDNS name or IP address of a host to check (can be specified more than once\n"},
{"attr-name", 1, 0, 'a', "\tName of the node attribute to set"},
{"attr-dampen", 1, 0, 'd', "How long to wait for no further changes to occur before updating the CIB with a changed attribute"},
{"attr-section", 1, 0, 'S', "(Advanced) Which part of the CIB to put the attribute in"},
{"attr-set", 1, 0, 's', "\t(Advanced) Name of the set in which to put the attribute\n"},
{"ping-interval", 1, 0, 'i', "How often, in seconds, to check for node liveliness (default=1)"},
{"ping-attempts", 1, 0, 'n', "Number of ping attempts, per host, before declaring it dead (default=2)"},
{"ping-timeout", 1, 0, 't', "How long, in seconds, to wait before declaring a ping lost (default=2)"},
{"ping-multiplier", 1, 0, 'm', "For every connected node, add <integer> to the value set in the CIB"},
{"no-updates", 0, 0, 'U', NULL, 1},
/* Legacy */
{"ping-host", 1, 0, 'h', NULL, 1},
{"value-multiplier", 1, 0, 'm', NULL, 1},
{"interval", 1, 0, 'i', NULL, 1},
{0, 0, 0, 0}
};
int
main(int argc, char **argv)
{
int argerr = 0;
int flag;
const char *pid_file = NULL;
gboolean daemonize = FALSE;
ping_node *p = NULL;
int option_index = 0;
pid_file = "/tmp/pingd.pid";
mainloop_add_signal(SIGTERM, pingd_shutdown);
ping_nodes = g_hash_table_new_full(
g_str_hash, g_str_equal,
g_hash_destroy_str, g_hash_destroy_str);
crm_log_init(basename(argv[0]), LOG_INFO, TRUE, FALSE, argc, argv);
crm_set_options("V?$p:a:d:s:S:h:Dm:N:Ui:t:n:", NULL, long_options,
"Daemon for checking external connectivity and making the results available to the cluster");
while (1) {
flag = crm_get_option(argc, argv, &option_index);
if (flag == -1)
break;
switch(flag) {
case 'V':
cl_log_enable_stderr(TRUE);
alter_debug(DEBUG_INC);
break;
case 'p':
pid_file = optarg;
break;
case 'a':
pingd_attr = optarg;
break;
case 'N':
case 'h':
stand_alone = TRUE;
crm_debug("Adding ping host %s", optarg);
p = ping_new(optarg);
ping_list = g_list_append(ping_list, p);
break;
case 's':
attr_set = crm_strdup(optarg);
break;
case 'm':
attr_multiplier = crm_parse_int(optarg, "1");
break;
case 'S':
attr_section = crm_strdup(optarg);
break;
case 'd':
attr_dampen = crm_get_msec(optarg);
break;
case 'i':
re_ping_interval = crm_get_msec(optarg);
break;
case 'n':
pings_per_host = crm_atoi(optarg, NULL);
break;
case 't':
ping_timeout = crm_atoi(optarg, NULL);
break;
case 'D':
daemonize = TRUE;
break;
case 'U':
cl_log_enable_stderr(TRUE);
do_updates = FALSE;
break;
case '$':
case '?':
crm_help(flag, LSB_EXIT_OK);
break;
default:
printf("Argument code 0%o (%c) is not (?yet?) supported\n", flag, flag);
crm_err("Argument code 0%o (%c) is not (?yet?) supported\n", flag, flag);
++argerr;
break;
}
}
if (optind < argc) {
crm_err("non-option ARGV-elements: ");
printf("non-option ARGV-elements: ");
while (optind < argc) {
crm_err("%s ", argv[optind]);
printf("%s ", argv[optind++]);
}
printf("\n");
}
if (argerr) {
crm_help(flag, LSB_EXIT_GENERIC);
}
crm_make_daemon(crm_system_name, daemonize, pid_file);
ident = getpid();
if(do_updates == FALSE) {
goto start_ping;
}
#if SUPPORT_AIS
if(is_openais_cluster()) {
stand_alone = TRUE;
}
#endif
#if SUPPORT_HEARTBEAT
if(stand_alone == FALSE && register_with_ha() == FALSE) {
crm_err("HA registration failed");
cl_flush_logs();
exit(LSB_EXIT_GENERIC);
}
#endif
start_ping:
if(stand_alone && ping_list == NULL) {
crm_err("You must specify a list of hosts to monitor");
exit(LSB_EXIT_GENERIC);
}
crm_info("Starting %s", crm_system_name);
mainloop = g_main_new(FALSE);
if(stand_alone) {
stand_alone_ping(NULL);
g_timeout_add(re_ping_interval, stand_alone_ping, NULL);
}
g_main_run(mainloop);
crm_info("Exiting %s", crm_system_name);
return 0;
}
static void count_ping_nodes(gpointer key, gpointer value, gpointer user_data)
{
int *num_active = user_data;
CRM_CHECK(num_active != NULL, return);
if(need_shutdown) {
return;
}
if(safe_str_eq(value, "ping")) {
(*num_active)++;
} else if(safe_str_eq(value, "up")) {
(*num_active)++;
}
}
void
send_update(int num_active)
{
char *value = NULL;
char *damp = crm_itoa(attr_dampen/1000);
if(num_active < 0) {
num_active = 0;
g_hash_table_foreach(ping_nodes, count_ping_nodes, &num_active);
}
value = crm_itoa(attr_multiplier*num_active);
attrd_lazy_update('U', NULL, pingd_attr, value, attr_section, attr_set, damp);
crm_free(value);
crm_free(damp);
}
void
pingd_nstatus_callback(
const char *node, const char * status, void* private_data)
{
crm_notice("Status update: Ping node %s now has status [%s]",
node, status);
if(g_hash_table_lookup(ping_nodes, node) != NULL) {
g_hash_table_replace(
ping_nodes, crm_strdup(node), crm_strdup(status));
send_update(-1);
}
}
void
pingd_lstatus_callback(const char *node, const char *lnk, const char *status,
void *private)
{
crm_notice("Status update: Ping node %s now has status [%s]",
node, status);
pingd_nstatus_callback(node, status, private);
}
|