| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805 |
- /*
- * Copyright (c) 2010 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 <errno.h>
- #include <unistd.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <assert.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <sys/uio.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <netdb.h>
- #include <poll.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <qb/qblist.h>
- #include <qb/qbdefs.h>
- #include <qb/qbutil.h>
- #include <qb/qbloop.h>
- #include <qb/qblog.h>
- #include <corosync/cpg.h>
- #include <corosync/cfg.h>
- #include "common_test_agent.h"
- #include <nss.h>
- #include <pk11pub.h>
- typedef enum {
- MSG_OK,
- MSG_NODEID_ERR,
- MSG_PID_ERR,
- MSG_SEQ_ERR,
- MSG_SIZE_ERR,
- MSG_SHA1_ERR,
- } msg_status_t;
- typedef struct {
- uint32_t nodeid;
- pid_t pid;
- unsigned char sha1[20];
- uint32_t seq;
- size_t size;
- unsigned char payload[0];
- } msg_t;
- #define LOG_STR_SIZE 80
- typedef struct {
- char log[LOG_STR_SIZE];
- struct qb_list_head list;
- } log_entry_t;
- static char big_and_buf[HOW_BIG_AND_BUF];
- static int32_t record_config_events_g = 0;
- static int32_t record_messages_g = 0;
- static cpg_handle_t cpg_handle = 0;
- static corosync_cfg_handle_t cfg_handle = 0;
- static int32_t cpg_fd = -1;
- static int32_t cfg_fd = -1;
- static struct qb_list_head config_chg_log_head;
- static struct qb_list_head msg_log_head;
- static pid_t my_pid;
- static uint32_t my_nodeid;
- static int32_t my_seq;
- static int32_t use_zcb = QB_FALSE;
- static int32_t my_msgs_to_send;
- static int32_t my_msgs_sent;
- static int32_t total_stored_msgs = 0;
- static int32_t total_msgs_revd = 0;
- static int32_t in_cnchg = 0;
- static int32_t pcmk_test = 0;
- PK11Context* sha1_context;
- static void send_some_more_messages (void * unused);
- static char*
- err_status_string (char * buf, size_t buf_len, msg_status_t status)
- {
- switch (status) {
- case MSG_OK:
- strncpy (buf, "OK", buf_len);
- break;
- case MSG_NODEID_ERR:
- strncpy (buf, "NODEID_ERR", buf_len);
- break;
- case MSG_PID_ERR:
- strncpy (buf, "PID_ERR", buf_len);
- break;
- case MSG_SEQ_ERR:
- strncpy (buf, "SEQ_ERR", buf_len);
- break;
- case MSG_SIZE_ERR:
- strncpy (buf, "SIZE_ERR", buf_len);
- break;
- case MSG_SHA1_ERR:
- strncpy (buf, "SHA1_ERR", buf_len);
- break;
- default:
- strncpy (buf, "UNKNOWN_ERR", buf_len);
- break;
- }
- if (buf_len > 0) {
- buf[buf_len - 1] = '\0';
- }
- return buf;
- }
- static void delivery_callback (
- cpg_handle_t handle,
- const struct cpg_name *groupName,
- uint32_t nodeid,
- uint32_t pid,
- void *msg,
- size_t msg_len)
- {
- log_entry_t *log_pt;
- msg_t *msg_pt = (msg_t*)msg;
- msg_status_t status = MSG_OK;
- char status_buf[20];
- unsigned char sha1_compare[20];
- unsigned int sha1_len;
- if (record_messages_g == 0) {
- return;
- }
- if (nodeid != msg_pt->nodeid) {
- status = MSG_NODEID_ERR;
- }
- if (pid != msg_pt->pid) {
- status = MSG_PID_ERR;
- }
- if (msg_len != msg_pt->size) {
- status = MSG_SIZE_ERR;
- }
- PK11_DigestBegin(sha1_context);
- PK11_DigestOp(sha1_context, msg_pt->payload, (msg_pt->size - sizeof (msg_t)));
- PK11_DigestFinal(sha1_context, sha1_compare, &sha1_len, sizeof(sha1_compare));
- if (memcmp (sha1_compare, msg_pt->sha1, 20) != 0) {
- qb_log (LOG_ERR, "msg seq:%d; incorrect hash",
- msg_pt->seq);
- status = MSG_SHA1_ERR;
- }
- log_pt = malloc (sizeof(log_entry_t));
- qb_list_init (&log_pt->list);
- snprintf (log_pt->log, LOG_STR_SIZE, "%u:%d:%d:%s;",
- msg_pt->nodeid, msg_pt->seq, my_seq,
- err_status_string (status_buf, 20, status));
- qb_list_add_tail (&log_pt->list, &msg_log_head);
- total_stored_msgs++;
- total_msgs_revd++;
- my_seq++;
- if ((total_msgs_revd % 1000) == 0) {
- qb_log (LOG_INFO, "rx %d", total_msgs_revd);
- }
- }
- static void config_change_callback (
- cpg_handle_t handle,
- const struct cpg_name *groupName,
- const struct cpg_address *member_list, size_t member_list_entries,
- const struct cpg_address *left_list, size_t left_list_entries,
- const struct cpg_address *joined_list, size_t joined_list_entries)
- {
- int i;
- log_entry_t *log_pt;
- /* group_name,ip,pid,join|leave */
- if (record_config_events_g > 0) {
- qb_log (LOG_INFO, "got cpg event[recording] for group %s", groupName->value);
- } else {
- qb_log (LOG_INFO, "got cpg event[ignoring] for group %s", groupName->value);
- }
- for (i = 0; i < left_list_entries; i++) {
- if (record_config_events_g > 0) {
- log_pt = malloc (sizeof(log_entry_t));
- qb_list_init (&log_pt->list);
- snprintf (log_pt->log, LOG_STR_SIZE, "%s,%u,%u,left",
- groupName->value, left_list[i].nodeid,left_list[i].pid);
- qb_list_add_tail(&log_pt->list, &config_chg_log_head);
- qb_log (LOG_INFO, "cpg event %s", log_pt->log);
- }
- }
- for (i = 0; i < joined_list_entries; i++) {
- if (record_config_events_g > 0) {
- log_pt = malloc (sizeof(log_entry_t));
- qb_list_init (&log_pt->list);
- snprintf (log_pt->log, LOG_STR_SIZE, "%s,%u,%u,join",
- groupName->value, joined_list[i].nodeid,joined_list[i].pid);
- qb_list_add_tail (&log_pt->list, &config_chg_log_head);
- qb_log (LOG_INFO, "cpg event %s", log_pt->log);
- }
- }
- if (pcmk_test == 1) {
- in_cnchg = 1;
- send_some_more_messages (NULL);
- in_cnchg = 0;
- }
- }
- static void my_shutdown_callback (corosync_cfg_handle_t handle,
- corosync_cfg_shutdown_flags_t flags)
- {
- qb_log (LOG_CRIT, "flags:%d", flags);
- if (flags == COROSYNC_CFG_SHUTDOWN_FLAG_REQUEST) {
- corosync_cfg_replyto_shutdown (cfg_handle, COROSYNC_CFG_SHUTDOWN_FLAG_YES);
- }
- }
- static corosync_cfg_callbacks_t cfg_callbacks = {
- .corosync_cfg_shutdown_callback = my_shutdown_callback,
- };
- static cpg_callbacks_t callbacks = {
- .cpg_deliver_fn = delivery_callback,
- .cpg_confchg_fn = config_change_callback,
- };
- static void record_messages (void)
- {
- record_messages_g = 1;
- qb_log (LOG_INFO, "record:%d", record_messages_g);
- }
- static void record_config_events (int sock)
- {
- char response[100];
- ssize_t rc;
- size_t send_len;
- record_config_events_g = 1;
- qb_log (LOG_INFO, "record:%d", record_config_events_g);
- snprintf (response, 100, "%s", OK_STR);
- send_len = strlen (response);
- rc = send (sock, response, send_len, 0);
- assert(rc == send_len);
- }
- static void read_config_event (int sock)
- {
- const char *empty = "None";
- log_entry_t *entry;
- ssize_t rc;
- size_t send_len;
- if (qb_list_empty(&config_chg_log_head) == 0) {
- entry = qb_list_first_entry (&config_chg_log_head, log_entry_t, list);
- send_len = strlen (entry->log);
- rc = send (sock, entry->log, send_len, 0);
- qb_list_del (&entry->list);
- free (entry);
- } else {
- qb_log (LOG_DEBUG, "no events in list");
- send_len = strlen (empty);
- rc = send (sock, empty, send_len, 0);
- }
- assert(rc == send_len);
- }
- static void read_messages (int sock, char* atmost_str)
- {
- struct qb_list_head *iter, *tmp_iter;
- log_entry_t *entry;
- int atmost = atoi (atmost_str);
- int packed = 0;
- ssize_t rc;
- if (atmost == 0)
- atmost = 1;
- if (atmost > (HOW_BIG_AND_BUF / LOG_STR_SIZE))
- atmost = (HOW_BIG_AND_BUF / LOG_STR_SIZE);
- big_and_buf[0] = '\0';
- qb_list_for_each_safe(iter, tmp_iter, &msg_log_head) {
- if (packed >= atmost)
- break;
- entry = qb_list_entry (iter, log_entry_t, list);
- strcat (big_and_buf, entry->log);
- packed++;
- qb_list_del (&entry->list);
- free (entry);
- total_stored_msgs--;
- }
- if (packed == 0) {
- strcpy (big_and_buf, "None");
- } else {
- if ((total_stored_msgs % 1000) == 0) {
- qb_log(LOG_INFO, "sending %d; total_stored_msgs:%d; len:%d",
- packed, total_stored_msgs, (int)strlen (big_and_buf));
- }
- }
- rc = send (sock, big_and_buf, strlen (big_and_buf), 0);
- assert(rc == strlen (big_and_buf));
- }
- static qb_loop_timer_handle more_messages_timer_handle;
- static void send_some_more_messages_later (void)
- {
- cpg_dispatch (cpg_handle, CS_DISPATCH_ALL);
- qb_loop_timer_add (
- ta_poll_handle_get(),
- QB_LOOP_MED,
- 300*QB_TIME_NS_IN_MSEC, NULL,
- send_some_more_messages,
- &more_messages_timer_handle);
- }
- static void send_some_more_messages_zcb (void)
- {
- msg_t *my_msg;
- int i;
- int send_now;
- size_t payload_size;
- size_t total_size;
- unsigned int sha1_len;
- cs_error_t res;
- cpg_flow_control_state_t fc_state;
- void *zcb_buffer;
- if (cpg_fd < 0)
- return;
- send_now = my_msgs_to_send;
- payload_size = (rand() % 100000);
- total_size = payload_size + sizeof (msg_t);
- cpg_zcb_alloc (cpg_handle, total_size, &zcb_buffer);
- my_msg = (msg_t*)zcb_buffer;
- qb_log(LOG_DEBUG, "send_now:%d", send_now);
- my_msg->pid = my_pid;
- my_msg->nodeid = my_nodeid;
- my_msg->size = sizeof (msg_t) + payload_size;
- my_msg->seq = my_msgs_sent;
- for (i = 0; i < payload_size; i++) {
- my_msg->payload[i] = i;
- }
- PK11_DigestBegin(sha1_context);
- PK11_DigestOp(sha1_context, my_msg->payload, payload_size);
- PK11_DigestFinal(sha1_context, my_msg->sha1, &sha1_len, sizeof(my_msg->sha1));
- for (i = 0; i < send_now; i++) {
- res = cpg_flow_control_state_get (cpg_handle, &fc_state);
- if (res == CS_OK && fc_state == CPG_FLOW_CONTROL_ENABLED) {
- /* lets do this later */
- send_some_more_messages_later ();
- qb_log (LOG_INFO, "flow control enabled.");
- goto free_buffer;
- }
- res = cpg_zcb_mcast_joined (cpg_handle, CPG_TYPE_AGREED, zcb_buffer, total_size);
- if (res == CS_ERR_TRY_AGAIN) {
- /* lets do this later */
- send_some_more_messages_later ();
- goto free_buffer;
- } else if (res != CS_OK) {
- qb_log (LOG_ERR, "cpg_mcast_joined error:%d, exiting.",
- res);
- exit (-2);
- }
- my_msgs_sent++;
- my_msgs_to_send--;
- }
- free_buffer:
- cpg_zcb_free (cpg_handle, zcb_buffer);
- }
- #define cs_repeat(counter, max, code) do { \
- code; \
- if (res == CS_ERR_TRY_AGAIN) { \
- counter++; \
- sleep(counter); \
- } \
- } while (res == CS_ERR_TRY_AGAIN && counter < max)
- static unsigned char buffer[200000];
- static void send_some_more_messages_normal (void)
- {
- msg_t my_msg;
- struct iovec iov[2];
- int i;
- int send_now;
- size_t payload_size;
- cs_error_t res;
- cpg_flow_control_state_t fc_state;
- int retries = 0;
- time_t before;
- unsigned int sha1_len;
- if (cpg_fd < 0)
- return;
- send_now = my_msgs_to_send;
- qb_log (LOG_TRACE, "send_now:%d", send_now);
- my_msg.pid = my_pid;
- my_msg.nodeid = my_nodeid;
- payload_size = (rand() % 10000);
- my_msg.size = sizeof (msg_t) + payload_size;
- my_msg.seq = my_msgs_sent;
- for (i = 0; i < payload_size; i++) {
- buffer[i] = i;
- }
- PK11_DigestBegin(sha1_context);
- PK11_DigestOp(sha1_context, buffer, payload_size);
- PK11_DigestFinal(sha1_context, my_msg.sha1, &sha1_len, sizeof(my_msg.sha1));
- iov[0].iov_len = sizeof (msg_t);
- iov[0].iov_base = &my_msg;
- iov[1].iov_len = payload_size;
- iov[1].iov_base = buffer;
- for (i = 0; i < send_now; i++) {
- if (in_cnchg && pcmk_test) {
- retries = 0;
- before = time(NULL);
- cs_repeat(retries, 30, res = cpg_mcast_joined(cpg_handle, CPG_TYPE_AGREED, iov, 2));
- if (retries > 20) {
- qb_log (LOG_ERR, "cs_repeat: blocked for :%lu secs.",
- (unsigned long)(time(NULL) - before));
- }
- if (res != CS_OK) {
- qb_log (LOG_ERR, "cpg_mcast_joined error:%d.",
- res);
- return;
- }
- } else {
- res = cpg_flow_control_state_get (cpg_handle, &fc_state);
- if (res == CS_OK && fc_state == CPG_FLOW_CONTROL_ENABLED) {
- /* lets do this later */
- send_some_more_messages_later ();
- qb_log (LOG_INFO, "flow control enabled.");
- return;
- }
- res = cpg_mcast_joined (cpg_handle, CPG_TYPE_AGREED, iov, 2);
- if (res == CS_ERR_TRY_AGAIN) {
- /* lets do this later */
- send_some_more_messages_later ();
- if (i > 0) {
- qb_log (LOG_INFO, "TRY_AGAIN %d to send.",
- my_msgs_to_send);
- }
- return;
- } else if (res != CS_OK) {
- qb_log (LOG_ERR, "cpg_mcast_joined error:%d, exiting.",
- res);
- exit (-2);
- }
- }
- my_msgs_sent++;
- my_msg.seq = my_msgs_sent;
- my_msgs_to_send--;
- }
- qb_log (LOG_TRACE, "sent %d; to send %d.",
- my_msgs_sent, my_msgs_to_send);
- }
- static void send_some_more_messages (void * unused)
- {
- if (use_zcb) {
- send_some_more_messages_zcb ();
- } else {
- send_some_more_messages_normal ();
- }
- }
- static void msg_blaster (int sock, char* num_to_send_str)
- {
- my_msgs_to_send = atoi (num_to_send_str);
- my_msgs_sent = 0;
- my_seq = 1;
- my_pid = getpid();
- use_zcb = QB_FALSE;
- total_stored_msgs = 0;
- cpg_local_get (cpg_handle, &my_nodeid);
- /* control the limits */
- if (my_msgs_to_send <= 0)
- my_msgs_to_send = 1;
- if (my_msgs_to_send > 10000)
- my_msgs_to_send = 10000;
- send_some_more_messages_normal ();
- }
- static void context_test (int sock)
- {
- char response[100];
- char *cmp;
- ssize_t rc;
- size_t send_len;
- cpg_context_set (cpg_handle, response);
- cpg_context_get (cpg_handle, (void**)&cmp);
- if (response != cmp) {
- snprintf (response, 100, "%s", FAIL_STR);
- }
- else {
- snprintf (response, 100, "%s", OK_STR);
- }
- send_len = strlen (response);
- rc = send (sock, response, send_len, 0);
- assert(rc == send_len);
- }
- static void msg_blaster_zcb (int sock, char* num_to_send_str)
- {
- my_msgs_to_send = atoi (num_to_send_str);
- my_seq = 1;
- my_pid = getpid();
- use_zcb = QB_TRUE;
- total_stored_msgs = 0;
- cpg_local_get (cpg_handle, &my_nodeid);
- /* control the limits */
- if (my_msgs_to_send <= 0)
- my_msgs_to_send = 1;
- if (my_msgs_to_send > 10000)
- my_msgs_to_send = 10000;
- send_some_more_messages_zcb ();
- }
- static int cfg_dispatch_wrapper_fn (
- int fd,
- int revents,
- void *data)
- {
- cs_error_t error;
- if (revents & POLLHUP || revents & POLLERR) {
- qb_log (LOG_ERR, "got POLLHUP disconnecting from CFG");
- corosync_cfg_finalize(cfg_handle);
- cfg_handle = 0;
- return -1;
- }
- error = corosync_cfg_dispatch (cfg_handle, CS_DISPATCH_ALL);
- if (error == CS_ERR_LIBRARY) {
- qb_log (LOG_ERR, "got LIB error disconnecting from CFG.");
- corosync_cfg_finalize(cfg_handle);
- cfg_handle = 0;
- return -1;
- }
- return 0;
- }
- static int cpg_dispatch_wrapper_fn (
- int fd,
- int revents,
- void *data)
- {
- cs_error_t error;
- if (revents & POLLHUP || revents & POLLERR) {
- qb_log (LOG_ERR, "got POLLHUP disconnecting from CPG");
- cpg_finalize(cpg_handle);
- cpg_handle = 0;
- return -1;
- }
- error = cpg_dispatch (cpg_handle, CS_DISPATCH_ALL);
- if (error == CS_ERR_LIBRARY) {
- qb_log (LOG_ERR, "got LIB error disconnecting from CPG");
- cpg_finalize(cpg_handle);
- cpg_handle = 0;
- return -1;
- }
- return 0;
- }
- static void do_command (int sock, char* func, char*args[], int num_args)
- {
- int result;
- char response[100];
- struct cpg_name group_name;
- ssize_t rc;
- size_t send_len;
- qb_log (LOG_TRACE, "RPC:%s() called.", func);
- if (strcmp ("cpg_mcast_joined",func) == 0) {
- struct iovec iov[5];
- int a;
- for (a = 0; a < num_args; a++) {
- iov[a].iov_base = args[a];
- iov[a].iov_len = strlen(args[a])+1;
- }
- cpg_mcast_joined (cpg_handle, CPG_TYPE_AGREED, iov, num_args);
- } else if (strcmp ("cpg_join",func) == 0) {
- if (strlen(args[0]) >= CPG_MAX_NAME_LENGTH) {
- qb_log (LOG_ERR, "Invalid group name");
- exit (1);
- }
- strcpy (group_name.value, args[0]);
- group_name.length = strlen(args[0]);
- result = cpg_join (cpg_handle, &group_name);
- if (result != CS_OK) {
- qb_log (LOG_ERR,
- "Could not join process group, error %d", result);
- exit (1);
- }
- qb_log (LOG_INFO, "called cpg_join(%s)!", group_name.value);
- } else if (strcmp ("cpg_leave",func) == 0) {
- strcpy (group_name.value, args[0]);
- group_name.length = strlen(args[0]);
- result = cpg_leave (cpg_handle, &group_name);
- if (result != CS_OK) {
- qb_log (LOG_ERR,
- "Could not leave process group, error %d", result);
- exit (1);
- }
- qb_log (LOG_INFO, "called cpg_leave(%s)!", group_name.value);
- } else if (strcmp ("cpg_initialize",func) == 0) {
- int retry_count = 0;
- result = cpg_initialize (&cpg_handle, &callbacks);
- while (result != CS_OK) {
- qb_log (LOG_ERR,
- "cpg_initialize error %d (attempt %d)",
- result, retry_count);
- if (retry_count >= 3) {
- exit (1);
- }
- sleep(1);
- retry_count++;
- result = cpg_initialize (&cpg_handle, &callbacks);
- }
- cpg_fd_get (cpg_handle, &cpg_fd);
- qb_loop_poll_add (ta_poll_handle_get(),
- QB_LOOP_MED,
- cpg_fd,
- POLLIN|POLLNVAL,
- NULL,
- cpg_dispatch_wrapper_fn);
- } else if (strcmp ("cpg_local_get", func) == 0) {
- unsigned int local_nodeid;
- cpg_local_get (cpg_handle, &local_nodeid);
- snprintf (response, 100, "%u",local_nodeid);
- send_len = strlen (response);
- rc = send (sock, response, send_len, 0);
- assert(rc == send_len);
- } else if (strcmp ("cpg_finalize", func) == 0) {
- if (cpg_handle > 0) {
- cpg_finalize (cpg_handle);
- cpg_handle = 0;
- }
- } else if (strcmp ("record_config_events", func) == 0) {
- record_config_events (sock);
- } else if (strcmp ("record_messages", func) == 0) {
- record_messages ();
- } else if (strcmp ("read_config_event", func) == 0) {
- read_config_event (sock);
- } else if (strcmp ("read_messages", func) == 0) {
- read_messages (sock, args[0]);
- } else if (strcmp ("msg_blaster_zcb", func) == 0) {
- msg_blaster_zcb (sock, args[0]);
- } else if (strcmp ("pcmk_test", func) == 0) {
- pcmk_test = 1;
- } else if (strcmp ("msg_blaster", func) == 0) {
- msg_blaster (sock, args[0]);
- } else if (strcmp ("context_test", func) == 0) {
- context_test (sock);
- } else if (strcmp ("are_you_ok_dude", func) == 0) {
- snprintf (response, 100, "%s", OK_STR);
- send_len = strlen (response);
- rc = send (sock, response, strlen (response), 0);
- assert(rc == send_len);
- } else if (strcmp ("cfg_shutdown", func) == 0) {
- qb_log (LOG_INFO, "calling %s() called!", func);
- result = corosync_cfg_try_shutdown (cfg_handle, COROSYNC_CFG_SHUTDOWN_FLAG_REQUEST);
- qb_log (LOG_INFO,"%s() returned %d!", func, result);
- } else if (strcmp ("cfg_initialize",func) == 0) {
- int retry_count = 0;
- qb_log (LOG_INFO,"%s() called!", func);
- result = corosync_cfg_initialize (&cfg_handle, &cfg_callbacks);
- while (result != CS_OK) {
- qb_log (LOG_ERR,
- "cfg_initialize error %d (attempt %d)",
- result, retry_count);
- if (retry_count >= 3) {
- exit (1);
- }
- sleep(1);
- retry_count++;
- result = corosync_cfg_initialize (&cfg_handle, &cfg_callbacks);
- }
- qb_log (LOG_INFO,"corosync_cfg_initialize() == %d", result);
- result = corosync_cfg_fd_get (cfg_handle, &cfg_fd);
- qb_log (LOG_INFO,"corosync_cfg_fd_get() == %d", result);
- qb_loop_poll_add (ta_poll_handle_get(),
- QB_LOOP_MED,
- cfg_fd,
- POLLIN|POLLNVAL,
- NULL,
- cfg_dispatch_wrapper_fn);
- } else {
- qb_log(LOG_ERR, "RPC:%s not supported!", func);
- }
- }
- static void my_pre_exit(void)
- {
- qb_log (LOG_INFO, "%s PRE EXIT", __FILE__);
- if (cpg_handle > 0) {
- cpg_finalize (cpg_handle);
- cpg_handle = 0;
- }
- if (cfg_handle > 0) {
- corosync_cfg_finalize (cfg_handle);
- cfg_handle = 0;
- }
- PK11_DestroyContext(sha1_context, PR_TRUE);
- }
- int
- main(int argc, char *argv[])
- {
- qb_list_init (&msg_log_head);
- qb_list_init (&config_chg_log_head);
- if (NSS_NoDB_Init(".") != SECSuccess) {
- qb_log(LOG_ERR, "Couldn't initialize nss");
- exit (0);
- }
- if ((sha1_context = PK11_CreateDigestContext(SEC_OID_SHA1)) == NULL) {
- qb_log(LOG_ERR, "Couldn't initialize nss");
- exit (0);
- }
- return test_agent_run ("cpg_test_agent", 9034, do_command, my_pre_exit);
- }
|