| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220 |
- /*
- * Copyright (c) 2011-2012 Red Hat, Inc.
- *
- * All rights reserved.
- *
- * Author: Angus Salkeld <asalkeld@redhat.com>
- *
- * This software licensed under BSD license, the text of which follows:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * - Neither the name of the MontaVista Software, Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <config.h>
- #include <sys/select.h>
- #include <sys/socket.h>
- #include <sys/un.h>
- #include <sys/types.h>
- #include <netdb.h>
- #include <arpa/inet.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <unistd.h>
- #include <string.h>
- #include <ctype.h>
- #include <poll.h>
- #include <signal.h>
- #include <qb/qbdefs.h>
- #include <qb/qbloop.h>
- #include <qb/qblog.h>
- #include <qb/qbdefs.h>
- #include <qb/qbloop.h>
- #include <corosync/corotypes.h>
- #include <corosync/cfg.h>
- #include <corosync/quorum.h>
- #include <corosync/cmap.h>
- /*
- * generic declarations
- */
- enum {
- CS_NTF_LOG,
- CS_NTF_STDOUT,
- CS_NTF_SNMP,
- CS_NTF_DBUS,
- CS_NTF_FG,
- CS_NTF_MAX,
- };
- static int conf[CS_NTF_MAX];
- static int32_t _cs_is_quorate = 0;
- typedef void (*node_membership_fn_t)(char *nodename, uint32_t nodeid, char *state, char* ip);
- typedef void (*node_quorum_fn_t)(char *nodename, uint32_t nodeid, const char *state);
- typedef void (*application_connection_fn_t)(char *nodename, uint32_t nodeid, char *app_name, const char *state);
- typedef void (*rrp_faulty_fn_t)(char *nodename, uint32_t nodeid, uint32_t iface_no, const char *state);
- struct notify_callbacks {
- node_membership_fn_t node_membership_fn;
- node_quorum_fn_t node_quorum_fn;
- application_connection_fn_t application_connection_fn;
- rrp_faulty_fn_t rrp_faulty_fn;
- };
- #define MAX_NOTIFIERS 5
- static int num_notifiers = 0;
- static struct notify_callbacks notifiers[MAX_NOTIFIERS];
- static uint32_t local_nodeid = 0;
- static char local_nodename[CS_MAX_NAME_LENGTH];
- static qb_loop_t *main_loop;
- static quorum_handle_t quorum_handle;
- static void _cs_node_membership_event(char *nodename, uint32_t nodeid, char *state, char* ip);
- static void _cs_node_quorum_event(const char *state);
- static void _cs_application_connection_event(char *app_name, const char *state);
- static void _cs_rrp_faulty_event(uint32_t iface_no, const char *state);
- #ifdef HAVE_DBUS
- #include <dbus/dbus.h>
- /*
- * dbus
- */
- #define DBUS_CS_NAME "org.corosync"
- #define DBUS_CS_IFACE "org.corosync"
- #define DBUS_CS_PATH "/org/corosync"
- static DBusConnection *db = NULL;
- static char _err[512];
- static int err_set = 0;
- static void _cs_dbus_init(void);
- #endif /* HAVE_DBUS */
- #ifdef ENABLE_SNMP
- #include <net-snmp/net-snmp-config.h>
- #include <net-snmp/snmpv3_api.h>
- #include <net-snmp/agent/agent_trap.h>
- #include <net-snmp/library/mib.h>
- #include <net-snmp/library/snmp_api.h>
- #include <net-snmp/library/snmp_client.h>
- #include <net-snmp/library/snmp_debug.h>
- enum snmp_node_status {
- SNMP_NODE_STATUS_UNKNOWN = 0,
- SNMP_NODE_STATUS_JOINED = 1,
- SNMP_NODE_STATUS_LEFT = 2
- };
- #define SNMP_OID_COROSYNC "1.3.6.1.4.1.35488"
- #define SNMP_OID_OBJECT_ROOT SNMP_OID_COROSYNC ".1"
- #define SNMP_OID_OBJECT_NODE_NAME SNMP_OID_OBJECT_ROOT ".1"
- #define SNMP_OID_OBJECT_NODE_ID SNMP_OID_OBJECT_ROOT ".2"
- #define SNMP_OID_OBJECT_NODE_STATUS SNMP_OID_OBJECT_ROOT ".3"
- #define SNMP_OID_OBJECT_NODE_ADDR SNMP_OID_OBJECT_ROOT ".4"
- #define SNMP_OID_OBJECT_RINGSEQ SNMP_OID_OBJECT_ROOT ".20"
- #define SNMP_OID_OBJECT_QUORUM SNMP_OID_OBJECT_ROOT ".21"
- #define SNMP_OID_OBJECT_APP_NAME SNMP_OID_OBJECT_ROOT ".40"
- #define SNMP_OID_OBJECT_APP_STATUS SNMP_OID_OBJECT_ROOT ".41"
- #define SNMP_OID_OBJECT_RRP_IFACE_NO SNMP_OID_OBJECT_ROOT ".60"
- #define SNMP_OID_OBJECT_RRP_STATUS SNMP_OID_OBJECT_ROOT ".61"
- #define SNMP_OID_TRAPS_ROOT SNMP_OID_COROSYNC ".0"
- #define SNMP_OID_TRAPS_NODE SNMP_OID_TRAPS_ROOT ".1"
- #define SNMP_OID_TRAPS_QUORUM SNMP_OID_TRAPS_ROOT ".2"
- #define SNMP_OID_TRAPS_APP SNMP_OID_TRAPS_ROOT ".3"
- #define SNMP_OID_TRAPS_RRP SNMP_OID_TRAPS_ROOT ".4"
- #define CS_TIMESTAMP_STR_LEN 20
- static const char *local_host = "localhost";
- #endif /* ENABLE_SNMP */
- static char snmp_manager_buf[CS_MAX_NAME_LENGTH];
- static char *snmp_manager = NULL;
- #define CMAP_MAX_RETRIES 10
- /*
- * cmap
- */
- static cmap_handle_t cmap_handle;
- static int32_t _cs_ip_to_hostname(char* ip, char* name_out)
- {
- struct sockaddr_in sa;
- int rc;
- if (strchr(ip, ':') == NULL) {
- sa.sin_family = AF_INET;
- } else {
- sa.sin_family = AF_INET6;
- }
- rc = inet_pton(sa.sin_family, ip, &sa.sin_addr);
- if (rc == 0) {
- return -EINVAL;
- }
- rc = getnameinfo((struct sockaddr*)&sa, sizeof(sa),
- name_out, CS_MAX_NAME_LENGTH, NULL, 0, 0);
- if (rc != 0) {
- qb_log(LOG_ERR, 0, "error looking up %s : %s", ip, gai_strerror(rc));
- return -EINVAL;
- }
- return 0;
- }
- static void _cs_cmap_members_key_changed (
- cmap_handle_t cmap_handle_c,
- cmap_track_handle_t cmap_track_handle,
- int32_t event,
- const char *key_name,
- struct cmap_notify_value new_value,
- struct cmap_notify_value old_value,
- void *user_data)
- {
- char nodename[CS_MAX_NAME_LENGTH];
- char* open_bracket = NULL;
- char* close_bracket = NULL;
- int res;
- uint32_t nodeid;
- char *ip_str;
- char tmp_key[CMAP_KEYNAME_MAXLEN];
- cs_error_t err;
- int no_retries;
- if (event != CMAP_TRACK_ADD && event != CMAP_TRACK_MODIFY) {
- return ;
- }
- res = sscanf(key_name, "runtime.totem.pg.mrp.srp.members.%u.%s", &nodeid, tmp_key);
- if (res != 2)
- return ;
- if (strcmp(tmp_key, "status") != 0) {
- return ;
- }
- snprintf(tmp_key, CMAP_KEYNAME_MAXLEN, "runtime.totem.pg.mrp.srp.members.%u.ip", nodeid);
- no_retries = 0;
- while ((err = cmap_get_string(cmap_handle, tmp_key, &ip_str)) == CS_ERR_TRY_AGAIN &&
- no_retries++ < CMAP_MAX_RETRIES) {
- sleep(1);
- }
- if (err != CS_OK) {
- return ;
- }
- /*
- * We want the ip out of: "r(0) ip(192.168.100.92)"
- */
- open_bracket = strrchr(ip_str, '(');
- open_bracket++;
- close_bracket = strrchr(open_bracket, ')');
- *close_bracket = '\0';
- _cs_ip_to_hostname(open_bracket, nodename);
- _cs_node_membership_event(nodename, nodeid, (char *)new_value.data, open_bracket);
- free(ip_str);
- }
- static void _cs_cmap_connections_key_changed (
- cmap_handle_t cmap_handle_c,
- cmap_track_handle_t cmap_track_handle,
- int32_t event,
- const char *key_name,
- struct cmap_notify_value new_value,
- struct cmap_notify_value old_value,
- void *user_data)
- {
- char obj_name[CS_MAX_NAME_LENGTH];
- char conn_str[CMAP_KEYNAME_MAXLEN];
- char tmp_key[CMAP_KEYNAME_MAXLEN];
- int res;
- res = sscanf(key_name, "runtime.connections.%[^.].%s", conn_str, tmp_key);
- if (res != 2) {
- return ;
- }
- if (strcmp(tmp_key, "service_id") != 0) {
- return ;
- }
- snprintf(obj_name, CS_MAX_NAME_LENGTH, "%s", conn_str);
- if (event == CMAP_TRACK_ADD) {
- _cs_application_connection_event(obj_name, "connected");
- }
- if (event == CMAP_TRACK_DELETE) {
- _cs_application_connection_event(obj_name, "disconnected");
- }
- }
- static void _cs_cmap_rrp_faulty_key_changed (
- cmap_handle_t cmap_handle_c,
- cmap_track_handle_t cmap_track_handle,
- int32_t event,
- const char *key_name,
- struct cmap_notify_value new_value,
- struct cmap_notify_value old_value,
- void *user_data)
- {
- uint32_t iface_no;
- char tmp_key[CMAP_KEYNAME_MAXLEN];
- int res;
- int no_retries;
- uint8_t faulty;
- cs_error_t err;
- res = sscanf(key_name, "runtime.totem.pg.mrp.rrp.%u.%s", &iface_no, tmp_key);
- if (res != 2) {
- return ;
- }
- if (strcmp(tmp_key, "faulty") != 0) {
- return ;
- }
- no_retries = 0;
- while ((err = cmap_get_uint8(cmap_handle, key_name, &faulty)) == CS_ERR_TRY_AGAIN &&
- no_retries++ < CMAP_MAX_RETRIES) {
- sleep(1);
- }
- if (err != CS_OK) {
- return ;
- }
- if (faulty) {
- _cs_rrp_faulty_event(iface_no, "faulty");
- } else {
- _cs_rrp_faulty_event(iface_no, "operational");
- }
- }
- static int
- _cs_cmap_dispatch(int fd, int revents, void *data)
- {
- cs_error_t err;
- err = cmap_dispatch(cmap_handle, CS_DISPATCH_ONE);
- if (err != CS_ERR_TRY_AGAIN && err != CS_ERR_TIMEOUT && err != CS_ERR_QUEUE_FULL) {
- qb_log(LOG_ERR, "Could not dispatch cmap events. Error %u", err);
- qb_loop_stop(main_loop);
- return -1;
- }
- return 0;
- }
- static void _cs_quorum_notification(quorum_handle_t handle,
- uint32_t quorate, uint64_t ring_seq,
- uint32_t view_list_entries, uint32_t *view_list)
- {
- if (_cs_is_quorate == quorate) {
- return;
- }
- _cs_is_quorate = quorate;
- if (quorate) {
- _cs_node_quorum_event("quorate");
- } else {
- _cs_node_quorum_event("not quorate");
- }
- }
- static int
- _cs_quorum_dispatch(int fd, int revents, void *data)
- {
- cs_error_t err;
- err = quorum_dispatch(quorum_handle, CS_DISPATCH_ONE);
- if (err != CS_ERR_TRY_AGAIN && err != CS_ERR_TIMEOUT && err != CS_ERR_QUEUE_FULL) {
- qb_log(LOG_ERR, "Could not dispatch quorum events. Error %u", err);
- qb_loop_stop(main_loop);
- return -1;
- }
- return 0;
- }
- static void
- _cs_quorum_init(void)
- {
- cs_error_t rc;
- uint32_t quorum_type;
- int fd;
- quorum_callbacks_t quorum_callbacks = {
- .quorum_notify_fn = _cs_quorum_notification,
- };
- rc = quorum_initialize (&quorum_handle, &quorum_callbacks,
- &quorum_type);
- if (rc != CS_OK) {
- qb_log(LOG_ERR, "Could not connect to corosync(quorum)");
- return;
- }
- quorum_fd_get(quorum_handle, &fd);
- qb_loop_poll_add(main_loop, QB_LOOP_MED, fd, POLLIN|POLLNVAL, NULL,
- _cs_quorum_dispatch);
- rc = quorum_trackstart(quorum_handle, CS_TRACK_CHANGES);
- if (rc != CS_OK) {
- qb_log(LOG_ERR, "Could not start tracking");
- return;
- }
- }
- static void
- _cs_quorum_finalize(void)
- {
- quorum_finalize (quorum_handle);
- }
- #ifdef HAVE_DBUS
- /*
- * dbus notifications
- */
- static void
- _cs_dbus_auto_flush(void)
- {
- dbus_connection_ref(db);
- while (dbus_connection_get_dispatch_status(db) == DBUS_DISPATCH_DATA_REMAINS) {
- dbus_connection_dispatch(db);
- }
- while (dbus_connection_has_messages_to_send(db)) {
- dbus_connection_flush(db);
- }
- dbus_connection_unref(db);
- }
- static void
- _cs_dbus_release(void)
- {
- DBusError err;
- if (!db)
- return;
- dbus_error_init(&err);
- dbus_bus_release_name(db, DBUS_CS_NAME, &err);
- dbus_error_free(&err);
- dbus_connection_unref(db);
- db = NULL;
- }
- static void
- _cs_dbus_node_quorum_event(char *nodename, uint32_t nodeid, const char *state)
- {
- DBusMessage *msg = NULL;
- if (err_set) {
- qb_log(LOG_ERR, "%s", _err);
- err_set = 0;
- }
- if (!db) {
- goto out_free;
- }
- if (dbus_connection_get_is_connected(db) != TRUE) {
- err_set = 1;
- snprintf(_err, sizeof(_err), "DBus connection lost");
- _cs_dbus_release();
- goto out_unlock;
- }
- _cs_dbus_auto_flush();
- if (!(msg = dbus_message_new_signal(DBUS_CS_PATH,
- DBUS_CS_IFACE,
- "QuorumStateChange"))) {
- qb_log(LOG_ERR, "error creating dbus signal");
- goto out_unlock;
- }
- if (!dbus_message_append_args(msg,
- DBUS_TYPE_STRING, &nodename,
- DBUS_TYPE_UINT32, &nodeid,
- DBUS_TYPE_STRING, &state,
- DBUS_TYPE_INVALID)) {
- qb_log(LOG_ERR, "error adding args to quorum signal");
- goto out_unlock;
- }
- dbus_connection_send(db, msg, NULL);
- out_unlock:
- if (msg) {
- dbus_message_unref(msg);
- }
- out_free:
- return;
- }
- static void
- _cs_dbus_node_membership_event(char *nodename, uint32_t nodeid, char *state, char* ip)
- {
- DBusMessage *msg = NULL;
- if (err_set) {
- qb_log(LOG_ERR, "%s", _err);
- err_set = 0;
- }
- if (!db) {
- goto out_free;
- }
- if (dbus_connection_get_is_connected(db) != TRUE) {
- err_set = 1;
- snprintf(_err, sizeof(_err), "DBus connection lost");
- _cs_dbus_release();
- goto out_unlock;
- }
- _cs_dbus_auto_flush();
- if (!(msg = dbus_message_new_signal(DBUS_CS_PATH,
- DBUS_CS_IFACE,
- "NodeStateChange"))) {
- qb_log(LOG_ERR, "error creating NodeStateChange signal");
- goto out_unlock;
- }
- if (!dbus_message_append_args(msg,
- DBUS_TYPE_STRING, &nodename,
- DBUS_TYPE_UINT32, &nodeid,
- DBUS_TYPE_STRING, &ip,
- DBUS_TYPE_STRING, &state,
- DBUS_TYPE_INVALID)) {
- qb_log(LOG_ERR, "error adding args to NodeStateChange signal");
- goto out_unlock;
- }
- dbus_connection_send(db, msg, NULL);
- out_unlock:
- if (msg) {
- dbus_message_unref(msg);
- }
- out_free:
- return;
- }
- static void
- _cs_dbus_application_connection_event(char *nodename, uint32_t nodeid, char *app_name, const char *state)
- {
- DBusMessage *msg = NULL;
- if (err_set) {
- qb_log(LOG_ERR, "%s", _err);
- err_set = 0;
- }
- if (!db) {
- goto out_free;
- }
- if (dbus_connection_get_is_connected(db) != TRUE) {
- err_set = 1;
- snprintf(_err, sizeof(_err), "DBus connection lost");
- _cs_dbus_release();
- goto out_unlock;
- }
- _cs_dbus_auto_flush();
- if (!(msg = dbus_message_new_signal(DBUS_CS_PATH,
- DBUS_CS_IFACE,
- "ConnectionStateChange"))) {
- qb_log(LOG_ERR, "error creating ConnectionStateChange signal");
- goto out_unlock;
- }
- if (!dbus_message_append_args(msg,
- DBUS_TYPE_STRING, &nodename,
- DBUS_TYPE_UINT32, &nodeid,
- DBUS_TYPE_STRING, &app_name,
- DBUS_TYPE_STRING, &state,
- DBUS_TYPE_INVALID)) {
- qb_log(LOG_ERR, "error adding args to ConnectionStateChange signal");
- goto out_unlock;
- }
- dbus_connection_send(db, msg, NULL);
- out_unlock:
- if (msg) {
- dbus_message_unref(msg);
- }
- out_free:
- return;
- }
- static void
- _cs_dbus_rrp_faulty_event(char *nodename, uint32_t nodeid, uint32_t iface_no, const char *state)
- {
- DBusMessage *msg = NULL;
- if (err_set) {
- qb_log(LOG_ERR, "%s", _err);
- err_set = 0;
- }
- if (!db) {
- goto out_free;
- }
- if (dbus_connection_get_is_connected(db) != TRUE) {
- err_set = 1;
- snprintf(_err, sizeof(_err), "DBus connection lost");
- _cs_dbus_release();
- goto out_unlock;
- }
- _cs_dbus_auto_flush();
- if (!(msg = dbus_message_new_signal(DBUS_CS_PATH,
- DBUS_CS_IFACE,
- "QuorumStateChange"))) {
- qb_log(LOG_ERR, "error creating dbus signal");
- goto out_unlock;
- }
- if (!dbus_message_append_args(msg,
- DBUS_TYPE_STRING, &nodename,
- DBUS_TYPE_UINT32, &nodeid,
- DBUS_TYPE_UINT32, &iface_no,
- DBUS_TYPE_STRING, &state,
- DBUS_TYPE_INVALID)) {
- qb_log(LOG_ERR, "error adding args to rrp signal");
- goto out_unlock;
- }
- dbus_connection_send(db, msg, NULL);
- out_unlock:
- if (msg) {
- dbus_message_unref(msg);
- }
- out_free:
- return;
- }
- static void
- _cs_dbus_init(void)
- {
- DBusConnection *dbc = NULL;
- DBusError err;
- dbus_error_init(&err);
- dbc = dbus_bus_get(DBUS_BUS_SYSTEM, &err);
- if (!dbc) {
- snprintf(_err, sizeof(_err),
- "dbus_bus_get: %s", err.message);
- err_set = 1;
- dbus_error_free(&err);
- return;
- }
- dbus_connection_set_exit_on_disconnect(dbc, FALSE);
- db = dbc;
- notifiers[num_notifiers].node_membership_fn =
- _cs_dbus_node_membership_event;
- notifiers[num_notifiers].node_quorum_fn =
- _cs_dbus_node_quorum_event;
- notifiers[num_notifiers].application_connection_fn =
- _cs_dbus_application_connection_event;
- notifiers[num_notifiers].rrp_faulty_fn =
- _cs_dbus_rrp_faulty_event;
- num_notifiers++;
- }
- #endif /* HAVE_DBUS */
- #ifdef ENABLE_SNMP
- static netsnmp_session *snmp_init (const char *target)
- {
- static netsnmp_session *session = NULL;
- #ifndef NETSNMPV54
- char default_port[128];
- snprintf (default_port, sizeof (default_port), "%s:162", target);
- #endif
- if (session) {
- return (session);
- }
- if (target == NULL) {
- return NULL;
- }
- session = malloc (sizeof (netsnmp_session));
- snmp_sess_init (session);
- session->version = SNMP_VERSION_2c;
- session->callback = NULL;
- session->callback_magic = NULL;
- session = snmp_add(session,
- #ifdef NETSNMPV54
- netsnmp_transport_open_client ("snmptrap", target),
- #else
- netsnmp_tdomain_transport (default_port, 0, "udp"),
- #endif
- NULL, NULL);
- if (session == NULL) {
- qb_log(LOG_ERR, 0, "Could not create snmp transport");
- }
- return (session);
- }
- static inline void add_field (
- netsnmp_pdu *trap_pdu,
- u_char asn_type,
- const char *prefix,
- void *value,
- size_t value_size)
- {
- oid _oid[MAX_OID_LEN];
- size_t _oid_len = MAX_OID_LEN;
- if (snmp_parse_oid(prefix, _oid, &_oid_len)) {
- snmp_pdu_add_variable (trap_pdu, _oid, _oid_len, asn_type, (u_char *) value, value_size);
- }
- }
- static void
- _cs_snmp_node_membership_event(char *nodename, uint32_t nodeid, char *state, char* ip)
- {
- int ret;
- char csysuptime[CS_TIMESTAMP_STR_LEN];
- static oid snmptrap_oid[] = { 1,3,6,1,6,3,1,1,4,1,0 };
- static oid sysuptime_oid[] = { 1,3,6,1,2,1,1,3,0 };
- time_t now = time (NULL);
- netsnmp_pdu *trap_pdu;
- netsnmp_session *session = snmp_init (snmp_manager);
- if (session == NULL) {
- qb_log(LOG_NOTICE, "Failed to init SNMP session.");
- return ;
- }
- trap_pdu = snmp_pdu_create (SNMP_MSG_TRAP2);
- if (!trap_pdu) {
- qb_log(LOG_NOTICE, "Failed to create SNMP notification.");
- return ;
- }
- /* send uptime */
- snprintf (csysuptime, CS_TIMESTAMP_STR_LEN, "%ld", now);
- snmp_add_var (trap_pdu, sysuptime_oid, sizeof (sysuptime_oid) / sizeof (oid), 't', csysuptime);
- snmp_add_var (trap_pdu, snmptrap_oid, sizeof (snmptrap_oid) / sizeof (oid), 'o', SNMP_OID_TRAPS_NODE);
- /* Add extries to the trap */
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_NODE_NAME, (void*)nodename, strlen (nodename));
- add_field (trap_pdu, ASN_INTEGER, SNMP_OID_OBJECT_NODE_ID, (void*)&nodeid, sizeof (nodeid));
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_NODE_ADDR, (void*)ip, strlen (ip));
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_NODE_STATUS, (void*)state, strlen (state));
- /* Send and cleanup */
- ret = snmp_send (session, trap_pdu);
- if (ret == 0) {
- /* error */
- qb_log(LOG_ERR, "Could not send SNMP trap");
- snmp_free_pdu (trap_pdu);
- }
- }
- static void
- _cs_snmp_node_quorum_event(char *nodename, uint32_t nodeid,
- const char *state)
- {
- int ret;
- char csysuptime[20];
- static oid snmptrap_oid[] = { 1,3,6,1,6,3,1,1,4,1,0 };
- static oid sysuptime_oid[] = { 1,3,6,1,2,1,1,3,0 };
- time_t now = time (NULL);
- netsnmp_pdu *trap_pdu;
- netsnmp_session *session = snmp_init (snmp_manager);
- if (session == NULL) {
- qb_log(LOG_NOTICE, "Failed to init SNMP session.");
- return ;
- }
- trap_pdu = snmp_pdu_create (SNMP_MSG_TRAP2);
- if (!trap_pdu) {
- qb_log(LOG_NOTICE, "Failed to create SNMP notification.");
- return ;
- }
- /* send uptime */
- sprintf (csysuptime, "%ld", now);
- snmp_add_var (trap_pdu, sysuptime_oid, sizeof (sysuptime_oid) / sizeof (oid), 't', csysuptime);
- snmp_add_var (trap_pdu, snmptrap_oid, sizeof (snmptrap_oid) / sizeof (oid), 'o', SNMP_OID_TRAPS_QUORUM);
- /* Add extries to the trap */
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_NODE_NAME, (void*)nodename, strlen (nodename));
- add_field (trap_pdu, ASN_INTEGER, SNMP_OID_OBJECT_NODE_ID, (void*)&nodeid, sizeof (nodeid));
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_QUORUM, (void*)state, strlen (state));
- /* Send and cleanup */
- ret = snmp_send (session, trap_pdu);
- if (ret == 0) {
- /* error */
- qb_log(LOG_ERR, "Could not send SNMP trap");
- snmp_free_pdu (trap_pdu);
- }
- }
- static void
- _cs_snmp_rrp_faulty_event(char *nodename, uint32_t nodeid,
- uint32_t iface_no, const char *state)
- {
- int ret;
- char csysuptime[20];
- static oid snmptrap_oid[] = { 1,3,6,1,6,3,1,1,4,1,0 };
- static oid sysuptime_oid[] = { 1,3,6,1,2,1,1,3,0 };
- time_t now = time (NULL);
- netsnmp_pdu *trap_pdu;
- netsnmp_session *session = snmp_init (snmp_manager);
- if (session == NULL) {
- qb_log(LOG_NOTICE, "Failed to init SNMP session.");
- return ;
- }
- trap_pdu = snmp_pdu_create (SNMP_MSG_TRAP2);
- if (!trap_pdu) {
- qb_log(LOG_NOTICE, "Failed to create SNMP notification.");
- return ;
- }
- /* send uptime */
- sprintf (csysuptime, "%ld", now);
- snmp_add_var (trap_pdu, sysuptime_oid, sizeof (sysuptime_oid) / sizeof (oid), 't', csysuptime);
- snmp_add_var (trap_pdu, snmptrap_oid, sizeof (snmptrap_oid) / sizeof (oid), 'o', SNMP_OID_TRAPS_RRP);
- /* Add extries to the trap */
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_NODE_NAME, (void*)nodename, strlen (nodename));
- add_field (trap_pdu, ASN_INTEGER, SNMP_OID_OBJECT_NODE_ID, (void*)&nodeid, sizeof (nodeid));
- add_field (trap_pdu, ASN_INTEGER, SNMP_OID_OBJECT_RRP_IFACE_NO, (void*)&iface_no, sizeof (iface_no));
- add_field (trap_pdu, ASN_OCTET_STR, SNMP_OID_OBJECT_RRP_STATUS, (void*)state, strlen (state));
- /* Send and cleanup */
- ret = snmp_send (session, trap_pdu);
- if (ret == 0) {
- /* error */
- qb_log(LOG_ERR, "Could not send SNMP trap");
- snmp_free_pdu (trap_pdu);
- }
- }
- static void
- _cs_snmp_init(void)
- {
- if (snmp_manager == NULL) {
- snmp_manager = (char*)local_host;
- }
- notifiers[num_notifiers].node_membership_fn =
- _cs_snmp_node_membership_event;
- notifiers[num_notifiers].node_quorum_fn =
- _cs_snmp_node_quorum_event;
- notifiers[num_notifiers].application_connection_fn = NULL;
- notifiers[num_notifiers].rrp_faulty_fn =
- _cs_snmp_rrp_faulty_event;
- num_notifiers++;
- }
- #endif /* ENABLE_SNMP */
- static void
- _cs_syslog_node_membership_event(char *nodename, uint32_t nodeid, char *state, char* ip)
- {
- qb_log(LOG_NOTICE, "%s[%d] ip:%s %s", nodename, nodeid, ip, state);
- }
- static void
- _cs_syslog_node_quorum_event(char *nodename, uint32_t nodeid, const char *state)
- {
- if (strcmp(state, "quorate") == 0) {
- qb_log(LOG_NOTICE, "%s[%d] is now %s", nodename, nodeid, state);
- } else {
- qb_log(LOG_NOTICE, "%s[%d] has lost quorum", nodename, nodeid);
- }
- }
- static void
- _cs_syslog_application_connection_event(char *nodename, uint32_t nodeid, char* app_name, const char *state)
- {
- if (strcmp(state, "connected") == 0) {
- qb_log(LOG_NOTICE, "%s[%d] %s is now %s to corosync", nodename, nodeid, app_name, state);
- } else {
- qb_log(LOG_NOTICE, "%s[%d] %s is now %s from corosync", nodename, nodeid, app_name, state);
- }
- }
- static void
- _cs_syslog_rrp_faulty_event(char *nodename, uint32_t nodeid, uint32_t iface_no, const char *state)
- {
- qb_log(LOG_NOTICE, "%s[%d] interface %u is now %s", nodename, nodeid, iface_no, state);
- }
- static void
- _cs_node_membership_event(char *nodename, uint32_t nodeid, char *state, char* ip)
- {
- int i;
- for (i = 0; i < num_notifiers; i++) {
- if (notifiers[i].node_membership_fn) {
- notifiers[i].node_membership_fn(nodename, nodeid, state, ip);
- }
- }
- }
- static void
- _cs_local_node_info_get(char **nodename, uint32_t *nodeid)
- {
- cs_error_t rc;
- corosync_cfg_handle_t cfg_handle;
- if (local_nodeid == 0) {
- rc = corosync_cfg_initialize(&cfg_handle, NULL);
- if (rc != CS_OK) {
- syslog (LOG_ERR, "Failed to initialize the cfg API. Error %d\n", rc);
- exit (EXIT_FAILURE);
- }
- rc = corosync_cfg_local_get (cfg_handle, &local_nodeid);
- corosync_cfg_finalize(cfg_handle);
- if (rc != CS_OK) {
- local_nodeid = 0;
- strncpy(local_nodename, "localhost", sizeof (local_nodename));
- local_nodename[sizeof (local_nodename) - 1] = '\0';
- } else {
- gethostname(local_nodename, CS_MAX_NAME_LENGTH);
- }
- }
- *nodeid = local_nodeid;
- *nodename = local_nodename;
- }
- static void
- _cs_node_quorum_event(const char *state)
- {
- int i;
- char *nodename;
- uint32_t nodeid;
- _cs_local_node_info_get(&nodename, &nodeid);
- for (i = 0; i < num_notifiers; i++) {
- if (notifiers[i].node_quorum_fn) {
- notifiers[i].node_quorum_fn(nodename, nodeid, state);
- }
- }
- }
- static void
- _cs_application_connection_event(char *app_name, const char *state)
- {
- int i;
- char *nodename;
- uint32_t nodeid;
- _cs_local_node_info_get(&nodename, &nodeid);
- for (i = 0; i < num_notifiers; i++) {
- if (notifiers[i].application_connection_fn) {
- notifiers[i].application_connection_fn(nodename, nodeid, app_name, state);
- }
- }
- }
- static void
- _cs_rrp_faulty_event(uint32_t iface_no, const char *state)
- {
- int i;
- char *nodename;
- uint32_t nodeid;
- _cs_local_node_info_get(&nodename, &nodeid);
- for (i = 0; i < num_notifiers; i++) {
- if (notifiers[i].rrp_faulty_fn) {
- notifiers[i].rrp_faulty_fn(nodename, nodeid, iface_no, state);
- }
- }
- }
- static int32_t
- sig_exit_handler(int32_t num, void *data)
- {
- qb_loop_stop(main_loop);
- return 0;
- }
- static void
- _cs_cmap_init(void)
- {
- cs_error_t rc;
- int cmap_fd = 0;
- cmap_track_handle_t track_handle;
- rc = cmap_initialize (&cmap_handle);
- if (rc != CS_OK) {
- qb_log(LOG_ERR, "Failed to initialize the cmap API. Error %d", rc);
- exit (EXIT_FAILURE);
- }
- cmap_fd_get(cmap_handle, &cmap_fd);
- qb_loop_poll_add(main_loop, QB_LOOP_MED, cmap_fd, POLLIN|POLLNVAL, NULL,
- _cs_cmap_dispatch);
- rc = cmap_track_add(cmap_handle, "runtime.connections.",
- CMAP_TRACK_ADD | CMAP_TRACK_DELETE | CMAP_TRACK_PREFIX,
- _cs_cmap_connections_key_changed,
- NULL,
- &track_handle);
- if (rc != CS_OK) {
- qb_log(LOG_ERR,
- "Failed to track the connections key. Error %d", rc);
- exit (EXIT_FAILURE);
- }
- rc = cmap_track_add(cmap_handle, "runtime.totem.pg.mrp.srp.members.",
- CMAP_TRACK_ADD | CMAP_TRACK_MODIFY | CMAP_TRACK_PREFIX,
- _cs_cmap_members_key_changed,
- NULL,
- &track_handle);
- if (rc != CS_OK) {
- qb_log(LOG_ERR,
- "Failed to track the members key. Error %d", rc);
- exit (EXIT_FAILURE);
- }
- rc = cmap_track_add(cmap_handle, "runtime.totem.pg.mrp.rrp.",
- CMAP_TRACK_ADD | CMAP_TRACK_MODIFY | CMAP_TRACK_PREFIX,
- _cs_cmap_rrp_faulty_key_changed,
- NULL,
- &track_handle);
- if (rc != CS_OK) {
- qb_log(LOG_ERR,
- "Failed to track the rrp key. Error %d", rc);
- exit (EXIT_FAILURE);
- }
- }
- static void
- _cs_cmap_finalize(void)
- {
- cmap_finalize (cmap_handle);
- }
- static void
- _cs_check_config(void)
- {
- if (conf[CS_NTF_LOG] == QB_FALSE &&
- conf[CS_NTF_STDOUT] == QB_FALSE &&
- conf[CS_NTF_SNMP] == QB_FALSE &&
- conf[CS_NTF_DBUS] == QB_FALSE) {
- qb_log(LOG_ERR, "no event type enabled, see corosync-notifyd -h, exiting.");
- exit(EXIT_FAILURE);
- }
- #ifndef ENABLE_SNMP
- if (conf[CS_NTF_SNMP]) {
- qb_log(LOG_ERR, "Not compiled with SNMP support enabled, exiting.");
- exit(EXIT_FAILURE);
- }
- #endif
- #ifndef HAVE_DBUS
- if (conf[CS_NTF_DBUS]) {
- qb_log(LOG_ERR, "Not compiled with DBus support enabled, exiting.");
- exit(EXIT_FAILURE);
- }
- #endif
- if (conf[CS_NTF_STDOUT] && !conf[CS_NTF_FG]) {
- qb_log(LOG_ERR, "configured to print to stdout and run in the background, exiting");
- exit(EXIT_FAILURE);
- }
- if (conf[CS_NTF_SNMP] && conf[CS_NTF_DBUS]) {
- qb_log(LOG_ERR, "configured to send snmp traps and dbus signals - are you sure?.");
- }
- }
- static void
- _cs_usage(void)
- {
- fprintf(stderr, "usage:\n"\
- " -f : Start application in foreground.\n"\
- " -l : Log all events.\n"\
- " -o : Print events to stdout (turns on -l).\n"\
- " -s : Send SNMP traps on all events.\n"\
- " -m : SNMP Manager IP address (defaults to localhost).\n"\
- " -d : Send DBUS signals on all events.\n"\
- " -h : Print this help\n\n");
- }
- int
- main(int argc, char *argv[])
- {
- int ch;
- conf[CS_NTF_FG] = QB_FALSE;
- conf[CS_NTF_LOG] = QB_FALSE;
- conf[CS_NTF_STDOUT] = QB_FALSE;
- conf[CS_NTF_SNMP] = QB_FALSE;
- conf[CS_NTF_DBUS] = QB_FALSE;
- while ((ch = getopt (argc, argv, "floshdm:")) != EOF) {
- switch (ch) {
- case 'f':
- conf[CS_NTF_FG] = QB_TRUE;
- break;
- case 'l':
- conf[CS_NTF_LOG] = QB_TRUE;
- break;
- case 'm':
- conf[CS_NTF_SNMP] = QB_TRUE;
- strncpy(snmp_manager_buf, optarg, sizeof (snmp_manager_buf));
- snmp_manager_buf[sizeof (snmp_manager_buf) - 1] = '\0';
- snmp_manager = snmp_manager_buf;
- break;
- case 'o':
- conf[CS_NTF_LOG] = QB_TRUE;
- conf[CS_NTF_STDOUT] = QB_TRUE;
- break;
- case 's':
- conf[CS_NTF_SNMP] = QB_TRUE;
- break;
- case 'd':
- conf[CS_NTF_DBUS] = QB_TRUE;
- break;
- case 'h':
- default:
- _cs_usage();
- return EXIT_FAILURE;
- }
- }
- qb_log_init("notifyd", LOG_DAEMON, LOG_INFO);
- if (conf[CS_NTF_STDOUT]) {
- qb_log_filter_ctl(QB_LOG_STDERR, QB_LOG_FILTER_ADD,
- QB_LOG_FILTER_FILE, "*", LOG_DEBUG);
- qb_log_ctl(QB_LOG_STDERR, QB_LOG_CONF_ENABLED, conf[CS_NTF_STDOUT]);
- }
- _cs_check_config();
- if (!conf[CS_NTF_FG]) {
- if (daemon(0, 0) < 0)
- {
- perror("daemon() failed");
- return EXIT_FAILURE;
- }
- }
- num_notifiers = 0;
- if (conf[CS_NTF_LOG]) {
- notifiers[num_notifiers].node_membership_fn =
- _cs_syslog_node_membership_event;
- notifiers[num_notifiers].node_quorum_fn =
- _cs_syslog_node_quorum_event;
- notifiers[num_notifiers].application_connection_fn =
- _cs_syslog_application_connection_event;
- notifiers[num_notifiers].rrp_faulty_fn =
- _cs_syslog_rrp_faulty_event;
- num_notifiers++;
- }
- main_loop = qb_loop_create();
- _cs_cmap_init();
- _cs_quorum_init();
- #ifdef HAVE_DBUS
- if (conf[CS_NTF_DBUS]) {
- _cs_dbus_init();
- }
- #endif /* HAVE_DBUS */
- #ifdef ENABLE_SNMP
- if (conf[CS_NTF_SNMP]) {
- _cs_snmp_init();
- }
- #endif /* ENABLE_SNMP */
- qb_loop_signal_add(main_loop,
- QB_LOOP_HIGH,
- SIGINT,
- NULL,
- sig_exit_handler,
- NULL);
- qb_loop_signal_add(main_loop,
- QB_LOOP_HIGH,
- SIGQUIT,
- NULL,
- sig_exit_handler,
- NULL);
- qb_loop_signal_add(main_loop,
- QB_LOOP_HIGH,
- SIGTERM,
- NULL,
- sig_exit_handler,
- NULL);
- qb_loop_run(main_loop);
- #ifdef HAVE_DBUS
- if (conf[CS_NTF_DBUS]) {
- _cs_dbus_release();
- }
- #endif /* HAVE_DBUS */
- _cs_quorum_finalize();
- _cs_cmap_finalize();
- return 0;
- }
|