| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690 |
- /*
- * Copyright (c) 2002-2006 MontaVista Software, Inc.
- * Copyright (c) 2006-2008 Red Hat, Inc.
- *
- * All rights reserved.
- *
- * Author: Steven Dake (sdake@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 <pthread.h>
- #include <assert.h>
- #include <sys/types.h>
- #include <sys/poll.h>
- #include <sys/uio.h>
- #include <sys/mman.h>
- #include <sys/socket.h>
- #include <sys/un.h>
- #include <sys/time.h>
- #include <sys/resource.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <errno.h>
- #include <signal.h>
- #include <sched.h>
- #include <time.h>
- #include <corosync/swab.h>
- #include <corosync/corotypes.h>
- #include <corosync/list.h>
- #include <corosync/queue.h>
- #include <corosync/lcr/lcr_ifact.h>
- #include <corosync/totem/coropoll.h>
- #include <corosync/totem/totempg.h>
- #include <corosync/engine/objdb.h>
- #include <corosync/engine/config.h>
- #include <corosync/engine/logsys.h>
- #include "quorum.h"
- #include "totemsrp.h"
- #include "mempool.h"
- #include "mainconfig.h"
- #include "totemconfig.h"
- #include "main.h"
- #include "sync.h"
- #include "tlist.h"
- #include "ipc.h"
- #include "timer.h"
- #include "util.h"
- #include "apidef.h"
- #include "service.h"
- #include "version.h"
- LOGSYS_DECLARE_SYSTEM ("corosync",
- LOG_MODE_OUTPUT_STDERR | LOG_MODE_THREADED | LOG_MODE_FORK,
- NULL,
- LOG_DAEMON,
- NULL,
- 1000000);
- LOGSYS_DECLARE_SUBSYS ("MAIN", LOG_INFO);
- #define SERVER_BACKLOG 5
- static unsigned int service_count = 32;
- static pthread_mutex_t serialize_mutex = PTHREAD_MUTEX_INITIALIZER;
- static struct totem_logging_configuration totem_logging_configuration;
- static char delivery_data[MESSAGE_SIZE_MAX];
- static int num_config_modules;
- static struct config_iface_ver0 *config_modules[MAX_DYNAMIC_SERVICES];
- static struct objdb_iface_ver0 *objdb = NULL;
- static struct corosync_api_v1 *api = NULL;
- unsigned long long *(*main_clm_get_by_nodeid) (unsigned int node_id);
- hdb_handle_t corosync_poll_handle;
- static void sigusr2_handler (int num)
- {
- int i;
- for (i = 0; ais_service[i]; i++) {
- if (ais_service[i]->exec_dump_fn) {
- ais_service[i]->exec_dump_fn ();
- }
- }
- }
- static void *corosync_exit (void *arg)
- {
- if (api) {
- corosync_service_unlink_all (api);
- }
- #ifdef DEBUG_MEMPOOL
- int stats_inuse[MEMPOOL_GROUP_SIZE];
- int stats_avail[MEMPOOL_GROUP_SIZE];
- int stats_memoryused[MEMPOOL_GROUP_SIZE];
- int i;
- mempool_getstats (stats_inuse, stats_avail, stats_memoryused);
- log_printf (LOG_LEVEL_DEBUG, "Memory pools:\n");
- for (i = 0; i < MEMPOOL_GROUP_SIZE; i++) {
- log_printf (LOG_LEVEL_DEBUG, "order %d size %d inuse %d avail %d memory used %d\n",
- i, 1<<i, stats_inuse[i], stats_avail[i], stats_memoryused[i]);
- }
- #endif
- poll_stop (0);
- totempg_finalize ();
- cs_ipc_exit ();
- corosync_exit_error (AIS_DONE_EXIT);
- /* never reached */
- return NULL;
- }
- pthread_t corosync_exit_thread;
- static void init_shutdown(void *data)
- {
- pthread_create (&corosync_exit_thread, NULL, corosync_exit, NULL);
- }
- static poll_timer_handle shutdown_handle;
- static void sigquit_handler (int num)
- {
- /* avoid creating threads from within the interrupt context */
- poll_timer_add (corosync_poll_handle, 500, NULL, init_shutdown, &shutdown_handle);
- }
- static void sigsegv_handler (int num)
- {
- (void)signal (SIGSEGV, SIG_DFL);
- logsys_atsegv();
- logsys_log_rec_store ("/var/lib/corosync/fdata");
- raise (SIGSEGV);
- }
- static void sigabrt_handler (int num)
- {
- (void)signal (SIGABRT, SIG_DFL);
- logsys_atsegv();
- logsys_log_rec_store ("/var/lib/corosync/fdata");
- raise (SIGABRT);
- }
- #define LOCALHOST_IP inet_addr("127.0.0.1")
- hdb_handle_t corosync_group_handle;
- struct totempg_group corosync_group = {
- .group = "a",
- .group_len = 1
- };
- void sigintr_handler (int signum)
- {
- poll_timer_add (corosync_poll_handle, 500, NULL, init_shutdown, &shutdown_handle);
- }
- static int pool_sizes[] = { 0, 0, 0, 0, 0, 4096, 0, 1, 0, /* 256 */
- 1024, 0, 1, 4096, 0, 0, 0, 0, /* 65536 */
- 1, 1, 1, 1, 1, 1, 1, 1, 1 };
- void serialize_mutex_lock (void)
- {
- pthread_mutex_lock (&serialize_mutex);
- }
- void serialize_mutex_unlock (void)
- {
- pthread_mutex_unlock (&serialize_mutex);
- }
- static void corosync_sync_completed (void)
- {
- }
- static int corosync_sync_callbacks_retrieve (int sync_id,
- struct sync_callbacks *callbacks)
- {
- unsigned int ais_service_index;
- unsigned int ais_services_found = 0;
-
- for (ais_service_index = 0;
- ais_service_index < SERVICE_HANDLER_MAXIMUM_COUNT;
- ais_service_index++) {
- if (ais_service[ais_service_index] != NULL) {
- if (ais_services_found == sync_id) {
- break;
- }
- ais_services_found += 1;
- }
- }
- if (ais_service_index == SERVICE_HANDLER_MAXIMUM_COUNT) {
- memset (callbacks, 0, sizeof (struct sync_callbacks));
- return (-1);
- }
- callbacks->name = ais_service[ais_service_index]->name;
- callbacks->sync_init = ais_service[ais_service_index]->sync_init;
- callbacks->sync_process = ais_service[ais_service_index]->sync_process;
- callbacks->sync_activate = ais_service[ais_service_index]->sync_activate;
- callbacks->sync_abort = ais_service[ais_service_index]->sync_abort;
- return (0);
- }
- static struct memb_ring_id corosync_ring_id;
- static void confchg_fn (
- enum totem_configuration_type configuration_type,
- unsigned int *member_list, int member_list_entries,
- unsigned int *left_list, int left_list_entries,
- unsigned int *joined_list, int joined_list_entries,
- struct memb_ring_id *ring_id)
- {
- int i;
- memcpy (&corosync_ring_id, ring_id, sizeof (struct memb_ring_id));
- /*
- * Call configuration change for all services
- */
- for (i = 0; i < service_count; i++) {
- if (ais_service[i] && ais_service[i]->confchg_fn) {
- ais_service[i]->confchg_fn (configuration_type,
- member_list, member_list_entries,
- left_list, left_list_entries,
- joined_list, joined_list_entries, ring_id);
- }
- }
- }
- static void priv_drop (struct main_config *main_config)
- {
- return; /* TODO: we are still not dropping privs */
- setuid (main_config->uid);
- setegid (main_config->gid);
- }
- static void corosync_mempool_init (void)
- {
- int res;
- res = mempool_init (pool_sizes);
- if (res == ENOMEM) {
- log_printf (LOG_LEVEL_ERROR, "Couldn't allocate memory pools, not enough memory");
- corosync_exit_error (AIS_DONE_MEMPOOL_INIT);
- }
- }
- static void corosync_tty_detach (void)
- {
- int fd;
- /*
- * Disconnect from TTY if this is not a debug run
- */
- switch (fork ()) {
- case -1:
- corosync_exit_error (AIS_DONE_FORK);
- break;
- case 0:
- /*
- * child which is disconnected, run this process
- */
- /* setset();
- close (0);
- close (1);
- close (2);
- */
- break;
- default:
- exit (0);
- break;
- }
- /* Create new session */
- (void)setsid();
- /*
- * Map stdin/out/err to /dev/null.
- */
- fd = open("/dev/null", O_RDWR);
- if (fd >= 0) {
- /* dup2 to 0 / 1 / 2 (stdin / stdout / stderr) */
- dup2(fd, STDIN_FILENO); /* 0 */
- dup2(fd, STDOUT_FILENO); /* 1 */
- dup2(fd, STDERR_FILENO); /* 2 */
- /* Should be 0, but just in case it isn't... */
- if (fd > 2)
- close(fd);
- }
- }
- static void corosync_setscheduler (void)
- {
- #if ! defined(TS_CLASS) && (defined(COROSYNC_BSD) || defined(COROSYNC_LINUX) || defined(COROSYNC_SOLARIS))
- struct sched_param sched_param;
- int res;
- res = sched_get_priority_max (SCHED_RR);
- if (res != -1) {
- sched_param.sched_priority = 1;//res;
- res = sched_setscheduler (0, SCHED_RR, &sched_param);
- if (res == -1) {
- log_printf (LOG_LEVEL_WARNING, "Could not set SCHED_RR at priority %d: %s\n",
- sched_param.sched_priority, strerror (errno));
- }
- } else
- log_printf (LOG_LEVEL_WARNING, "Could not get maximum scheduler priority: %s\n", strerror (errno));
- #else
- log_printf(LOG_LEVEL_WARNING, "Scheduler priority left to default value (no OS support)\n");
- #endif
- }
- static void corosync_mlockall (void)
- {
- #if !defined(COROSYNC_BSD)
- int res;
- #endif
- struct rlimit rlimit;
- rlimit.rlim_cur = RLIM_INFINITY;
- rlimit.rlim_max = RLIM_INFINITY;
- #ifndef COROSYNC_SOLARIS
- setrlimit (RLIMIT_MEMLOCK, &rlimit);
- #else
- setrlimit (RLIMIT_VMEM, &rlimit);
- #endif
- #if defined(COROSYNC_BSD)
- /* under FreeBSD a process with locked page cannot call dlopen
- * code disabled until FreeBSD bug i386/93396 was solved
- */
- log_printf (LOG_LEVEL_WARNING, "Could not lock memory of service to avoid page faults\n");
- #else
- res = mlockall (MCL_CURRENT | MCL_FUTURE);
- if (res == -1) {
- log_printf (LOG_LEVEL_WARNING, "Could not lock memory of service to avoid page faults: %s\n", strerror (errno));
- };
- #endif
- }
- static void deliver_fn (
- unsigned int nodeid,
- struct iovec *iovec,
- int iov_len,
- int endian_conversion_required)
- {
- mar_req_header_t *header;
- int pos = 0;
- int i;
- int service;
- int fn_id;
- /*
- * Build buffer without iovecs to make processing easier
- * This is only used for messages which are multicast with iovecs
- * and self-delivered. All other mechanisms avoid the copy.
- */
- if (iov_len > 1) {
- for (i = 0; i < iov_len; i++) {
- memcpy (&delivery_data[pos], iovec[i].iov_base, iovec[i].iov_len);
- pos += iovec[i].iov_len;
- assert (pos < MESSAGE_SIZE_MAX);
- }
- header = (mar_req_header_t *)delivery_data;
- } else {
- header = (mar_req_header_t *)iovec[0].iov_base;
- }
- if (endian_conversion_required) {
- header->id = swab32 (header->id);
- header->size = swab32 (header->size);
- }
- // assert(iovec->iov_len == header->size);
- /*
- * Call the proper executive handler
- */
- service = header->id >> 16;
- fn_id = header->id & 0xffff;
- if (!ais_service[service])
- return;
- if (endian_conversion_required) {
- assert(ais_service[service]->exec_engine[fn_id].exec_endian_convert_fn != NULL);
- ais_service[service]->exec_engine[fn_id].exec_endian_convert_fn
- (header);
- }
- ais_service[service]->exec_engine[fn_id].exec_handler_fn
- (header, nodeid);
- }
- void main_get_config_modules(struct config_iface_ver0 ***modules, int *num)
- {
- *modules = config_modules;
- *num = num_config_modules;
- }
- int main_mcast (
- struct iovec *iovec,
- int iov_len,
- unsigned int guarantee)
- {
- return (totempg_groups_mcast_joined (corosync_group_handle, iovec, iov_len, guarantee));
- }
- int main (int argc, char **argv)
- {
- char *error_string;
- struct main_config main_config;
- struct totem_config totem_config;
- hdb_handle_t objdb_handle;
- hdb_handle_t config_handle;
- unsigned int config_version = 0;
- void *objdb_p;
- struct config_iface_ver0 *config;
- void *config_p;
- char *config_iface;
- char *iface;
- int res, ch;
- int background, setprio;
- /* default configuration
- */
- background = 1;
- setprio = 1;
-
- while ((ch = getopt (argc, argv, "fp")) != EOF) {
-
- switch (ch) {
- case 'f':
- background = 0;
- logsys_config_mode_set (LOG_MODE_OUTPUT_STDERR|LOG_MODE_THREADED|LOG_MODE_FORK);
- break;
- case 'p':
- setprio = 0;
- break;
- default:
- fprintf(stderr, \
- "usage:\n"\
- " -f : Start application in foreground.\n"\
- " -p : Do not set process priority. \n");
- return EXIT_FAILURE;
- }
- }
- if (background)
- corosync_tty_detach ();
- log_printf (LOG_LEVEL_NOTICE, "Corosync Executive Service RELEASE '%s'\n", RELEASE_VERSION);
- log_printf (LOG_LEVEL_NOTICE, "Copyright (C) 2002-2006 MontaVista Software, Inc and contributors.\n");
- log_printf (LOG_LEVEL_NOTICE, "Copyright (C) 2006-2008 Red Hat, Inc.\n");
- (void)signal (SIGINT, sigintr_handler);
- (void)signal (SIGUSR2, sigusr2_handler);
- (void)signal (SIGSEGV, sigsegv_handler);
- (void)signal (SIGABRT, sigabrt_handler);
- (void)signal (SIGQUIT, sigquit_handler);
-
- corosync_timer_init (
- serialize_mutex_lock,
- serialize_mutex_unlock);
- log_printf (LOG_LEVEL_NOTICE, "Corosync Executive Service: started and ready to provide service.\n");
- corosync_poll_handle = poll_create (
- serialize_mutex_lock,
- serialize_mutex_unlock);
- /*
- * Load the object database interface
- */
- res = lcr_ifact_reference (
- &objdb_handle,
- "objdb",
- 0,
- &objdb_p,
- 0);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, "Corosync Executive couldn't open configuration object database component.\n");
- corosync_exit_error (AIS_DONE_OBJDB);
- }
- objdb = (struct objdb_iface_ver0 *)objdb_p;
- objdb->objdb_init ();
- /*
- * Initialize the corosync_api_v1 definition
- */
- apidef_init (objdb);
- api = apidef_get ();
- num_config_modules = 0;
- /*
- * Bootstrap in the default configuration parser or use
- * the corosync default built in parser if the configuration parser
- * isn't overridden
- */
- config_iface = getenv("COROSYNC_DEFAULT_CONFIG_IFACE");
- if (!config_iface) {
- config_iface = "corosync_parser";
- }
- /* Make a copy so we can deface it with strtok */
- config_iface = strdup(config_iface);
- iface = strtok(config_iface, ":");
- while (iface)
- {
- res = lcr_ifact_reference (
- &config_handle,
- iface,
- config_version,
- &config_p,
- 0);
- config = (struct config_iface_ver0 *)config_p;
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, "Corosync Executive couldn't open configuration component '%s'\n", iface);
- corosync_exit_error (AIS_DONE_MAINCONFIGREAD);
- }
- res = config->config_readconfig(objdb, &error_string);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, error_string);
- corosync_exit_error (AIS_DONE_MAINCONFIGREAD);
- }
- log_printf (LOG_LEVEL_NOTICE, error_string);
- config_modules[num_config_modules++] = config;
- iface = strtok(NULL, ":");
- }
- if (config_iface)
- free(config_iface);
- res = corosync_main_config_read (objdb, &error_string, &main_config);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, error_string);
- corosync_exit_error (AIS_DONE_MAINCONFIGREAD);
- }
- res = totem_config_read (objdb, &totem_config, &error_string);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, error_string);
- corosync_exit_error (AIS_DONE_MAINCONFIGREAD);
- }
- res = totem_config_keyread (objdb, &totem_config, &error_string);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, error_string);
- corosync_exit_error (AIS_DONE_MAINCONFIGREAD);
- }
- res = totem_config_validate (&totem_config, &error_string);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, error_string);
- corosync_exit_error (AIS_DONE_MAINCONFIGREAD);
- }
- /*
- * Set round robin realtime scheduling with priority 99
- * Lock all memory to avoid page faults which may interrupt
- * application healthchecking
- */
- if (setprio)
- corosync_setscheduler ();
- corosync_mlockall ();
- totem_config.totem_logging_configuration = totem_logging_configuration;
- totem_config.totem_logging_configuration.log_subsys_id =
- _logsys_subsys_create ("TOTEM", LOG_INFO);
- totem_config.totem_logging_configuration.log_level_security = LOG_LEVEL_SECURITY;
- totem_config.totem_logging_configuration.log_level_error = LOG_LEVEL_ERROR;
- totem_config.totem_logging_configuration.log_level_warning = LOG_LEVEL_WARNING;
- totem_config.totem_logging_configuration.log_level_notice = LOG_LEVEL_NOTICE;
- totem_config.totem_logging_configuration.log_level_debug = LOG_LEVEL_DEBUG;
- totem_config.totem_logging_configuration.log_printf = _logsys_log_printf;
- /*
- * Sleep for a while to let other nodes in the cluster
- * understand that this node has been away (if it was
- * an corosync restart).
- */
- // TODO what is this hack for? usleep(totem_config.token_timeout * 2000);
- /*
- * if totempg_initialize doesn't have root priveleges, it cannot
- * bind to a specific interface. This only matters if
- * there is more then one interface in a system, so
- * in this case, only a warning is printed
- */
- /*
- * Join multicast group and setup delivery
- * and configuration change functions
- */
- totempg_initialize (
- corosync_poll_handle,
- &totem_config);
- totempg_groups_initialize (
- &corosync_group_handle,
- deliver_fn,
- confchg_fn);
- totempg_groups_join (
- corosync_group_handle,
- &corosync_group,
- 1);
- /*
- * This must occur after totempg is initialized because "this_ip" must be set
- */
- res = corosync_service_defaults_link_and_init (api);
- if (res == -1) {
- log_printf (LOG_LEVEL_ERROR, "Could not initialize default services\n");
- corosync_exit_error (AIS_DONE_INIT_SERVICES);
- }
- sync_register (corosync_sync_callbacks_retrieve, corosync_sync_completed);
- /*
- * Drop root privleges to user 'ais'
- * TODO: Don't really need full root capabilities;
- * needed capabilities are:
- * CAP_NET_RAW (bindtodevice)
- * CAP_SYS_NICE (setscheduler)
- * CAP_IPC_LOCK (mlockall)
- */
- priv_drop (&main_config);
- corosync_mempool_init ();
- cs_ipc_init (main_config.gid);
- /*
- * Start main processing loop
- */
- poll_run (corosync_poll_handle);
- return EXIT_SUCCESS;
- }
|