| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191 |
- /*
- * Copyright (c) 2011 Red Hat
- *
- * 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_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)
- {
- cmap_dispatch(cmap_handle, CS_DISPATCH_ONE);
- 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)
- {
- quorum_dispatch(quorum_handle, CS_DISPATCH_ONE);
- 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);
- quorum_trackstart(quorum_handle, CS_TRACK_CHANGES);
- }
- 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);
- dbus_connection_read_write(db, 500);
- 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].application_connection_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_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;
- }
|