main.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272
  1. /*
  2. * Copyright (c) 2002-2006 MontaVista Software, Inc.
  3. * Copyright (c) 2006-2009 Red Hat, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. * Author: Steven Dake (sdake@redhat.com)
  8. *
  9. * This software licensed under BSD license, the text of which follows:
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above copyright notice,
  15. * this list of conditions and the following disclaimer.
  16. * - Redistributions in binary form must reproduce the above copyright notice,
  17. * this list of conditions and the following disclaimer in the documentation
  18. * and/or other materials provided with the distribution.
  19. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  20. * contributors may be used to endorse or promote products derived from this
  21. * software without specific prior written permission.
  22. *
  23. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  27. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  33. * THE POSSIBILITY OF SUCH DAMAGE.
  34. */
  35. /**
  36. * \mainpage Corosync
  37. *
  38. * This is the doxygen generated developer documentation for the Corosync
  39. * project. For more information about Corosync, please see the project
  40. * web site, <a href="http://www.corosync.org">corosync.org</a>.
  41. *
  42. * \section license License
  43. *
  44. * This software licensed under BSD license, the text of which follows:
  45. *
  46. * Redistribution and use in source and binary forms, with or without
  47. * modification, are permitted provided that the following conditions are met:
  48. *
  49. * - Redistributions of source code must retain the above copyright notice,
  50. * this list of conditions and the following disclaimer.
  51. * - Redistributions in binary form must reproduce the above copyright notice,
  52. * this list of conditions and the following disclaimer in the documentation
  53. * and/or other materials provided with the distribution.
  54. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  55. * contributors may be used to endorse or promote products derived from this
  56. * software without specific prior written permission.
  57. *
  58. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  59. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  60. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  61. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  62. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  63. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  64. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  65. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  66. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  67. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  68. * THE POSSIBILITY OF SUCH DAMAGE.
  69. */
  70. #include <config.h>
  71. #include <pthread.h>
  72. #include <assert.h>
  73. #include <sys/types.h>
  74. #include <sys/file.h>
  75. #include <sys/poll.h>
  76. #include <sys/uio.h>
  77. #include <sys/mman.h>
  78. #include <sys/socket.h>
  79. #include <sys/un.h>
  80. #include <sys/time.h>
  81. #include <sys/resource.h>
  82. #include <sys/stat.h>
  83. #include <netinet/in.h>
  84. #include <arpa/inet.h>
  85. #include <unistd.h>
  86. #include <fcntl.h>
  87. #include <stdlib.h>
  88. #include <stdio.h>
  89. #include <errno.h>
  90. #include <signal.h>
  91. #include <sched.h>
  92. #include <time.h>
  93. #include <semaphore.h>
  94. #include <qb/qbdefs.h>
  95. #include <qb/qblog.h>
  96. #include <qb/qbloop.h>
  97. #include <qb/qbutil.h>
  98. #include <qb/qbipcs.h>
  99. #include <corosync/swab.h>
  100. #include <corosync/corotypes.h>
  101. #include <corosync/corodefs.h>
  102. #include <corosync/list.h>
  103. #include <corosync/totem/totempg.h>
  104. #include <corosync/logsys.h>
  105. #include <corosync/icmap.h>
  106. #include "quorum.h"
  107. #include "totemsrp.h"
  108. #include "mainconfig.h"
  109. #include "totemconfig.h"
  110. #include "main.h"
  111. #include "sync.h"
  112. #include "syncv2.h"
  113. #include "timer.h"
  114. #include "util.h"
  115. #include "apidef.h"
  116. #include "service.h"
  117. #include "schedwrk.h"
  118. #include "evil.h"
  119. #ifdef HAVE_SMALL_MEMORY_FOOTPRINT
  120. #define IPC_LOGSYS_SIZE 1024*64
  121. #else
  122. #define IPC_LOGSYS_SIZE 8192*128
  123. #endif
  124. LOGSYS_DECLARE_SYSTEM ("corosync",
  125. LOGSYS_MODE_OUTPUT_STDERR,
  126. LOG_DAEMON,
  127. LOG_INFO);
  128. LOGSYS_DECLARE_SUBSYS ("MAIN");
  129. #define SERVER_BACKLOG 5
  130. static int sched_priority = 0;
  131. static unsigned int service_count = 32;
  132. static struct totem_logging_configuration totem_logging_configuration;
  133. static int num_config_modules;
  134. static struct config_iface_ver0 *config_modules[MAX_DYNAMIC_SERVICES];
  135. static struct corosync_api_v1 *api = NULL;
  136. static enum cs_sync_mode minimum_sync_mode;
  137. static int sync_in_process = 1;
  138. static qb_loop_t *corosync_poll_handle;
  139. struct sched_param global_sched_param;
  140. static corosync_timer_handle_t corosync_stats_timer_handle;
  141. static const char *corosync_lock_file = LOCALSTATEDIR"/run/corosync.pid";
  142. qb_loop_t *cs_poll_handle_get (void)
  143. {
  144. return (corosync_poll_handle);
  145. }
  146. int cs_poll_dispatch_add (qb_loop_t * handle,
  147. int fd,
  148. int events,
  149. void *data,
  150. int (*dispatch_fn) (int fd,
  151. int revents,
  152. void *data))
  153. {
  154. return qb_loop_poll_add(handle, QB_LOOP_MED, fd, events, data,
  155. dispatch_fn);
  156. }
  157. int cs_poll_dispatch_delete(qb_loop_t * handle, int fd)
  158. {
  159. return qb_loop_poll_del(handle, fd);
  160. }
  161. void corosync_state_dump (void)
  162. {
  163. int i;
  164. for (i = 0; i < SERVICE_HANDLER_MAXIMUM_COUNT; i++) {
  165. if (corosync_service[i] && corosync_service[i]->exec_dump_fn) {
  166. corosync_service[i]->exec_dump_fn ();
  167. }
  168. }
  169. }
  170. static void unlink_all_completed (void)
  171. {
  172. api->timer_delete (corosync_stats_timer_handle);
  173. qb_loop_stop (corosync_poll_handle);
  174. }
  175. void corosync_shutdown_request (void)
  176. {
  177. corosync_service_unlink_all (api, unlink_all_completed);
  178. }
  179. static int32_t sig_diag_handler (int num, void *data)
  180. {
  181. corosync_state_dump ();
  182. qb_log_blackbox_write_to_file(LOCALSTATEDIR "/lib/corosync/fdata");
  183. return 0;
  184. }
  185. static int32_t sig_exit_handler (int num, void *data)
  186. {
  187. corosync_service_unlink_all (api, unlink_all_completed);
  188. return 0;
  189. }
  190. static void sigsegv_handler (int num)
  191. {
  192. (void)signal (SIGSEGV, SIG_DFL);
  193. qb_log_blackbox_write_to_file(LOCALSTATEDIR "/lib/corosync/fdata");
  194. qb_log_fini();
  195. raise (SIGSEGV);
  196. }
  197. static void sigabrt_handler (int num)
  198. {
  199. (void)signal (SIGABRT, SIG_DFL);
  200. qb_log_blackbox_write_to_file(LOCALSTATEDIR "/lib/corosync/fdata");
  201. qb_log_fini();
  202. raise (SIGABRT);
  203. }
  204. #define LOCALHOST_IP inet_addr("127.0.0.1")
  205. static void *corosync_group_handle;
  206. static struct totempg_group corosync_group = {
  207. .group = "a",
  208. .group_len = 1
  209. };
  210. static void serialize_lock (void)
  211. {
  212. }
  213. static void serialize_unlock (void)
  214. {
  215. }
  216. static void corosync_sync_completed (void)
  217. {
  218. log_printf (LOGSYS_LEVEL_NOTICE,
  219. "Completed service synchronization, ready to provide service.\n");
  220. sync_in_process = 0;
  221. cs_ipcs_sync_state_changed(sync_in_process);
  222. }
  223. static int corosync_sync_callbacks_retrieve (int sync_id,
  224. struct sync_callbacks *callbacks)
  225. {
  226. unsigned int corosync_service_index;
  227. int res;
  228. for (corosync_service_index = 0;
  229. corosync_service_index < SERVICE_HANDLER_MAXIMUM_COUNT;
  230. corosync_service_index++) {
  231. if (corosync_service[corosync_service_index] != NULL
  232. && (corosync_service[corosync_service_index]->sync_mode == CS_SYNC_V1
  233. || corosync_service[corosync_service_index]->sync_mode == CS_SYNC_V1_APIV2)) {
  234. if (corosync_service_index == sync_id) {
  235. break;
  236. }
  237. }
  238. }
  239. /*
  240. * Try to load backwards compat sync engines
  241. */
  242. if (corosync_service_index == SERVICE_HANDLER_MAXIMUM_COUNT) {
  243. res = evil_callbacks_load (sync_id, callbacks);
  244. return (res);
  245. }
  246. callbacks->name = corosync_service[corosync_service_index]->name;
  247. callbacks->sync_init_api.sync_init_v1 = corosync_service[corosync_service_index]->sync_init;
  248. callbacks->api_version = 1;
  249. if (corosync_service[corosync_service_index]->sync_mode == CS_SYNC_V1_APIV2) {
  250. callbacks->api_version = 2;
  251. }
  252. callbacks->sync_process = corosync_service[corosync_service_index]->sync_process;
  253. callbacks->sync_activate = corosync_service[corosync_service_index]->sync_activate;
  254. callbacks->sync_abort = corosync_service[corosync_service_index]->sync_abort;
  255. return (0);
  256. }
  257. static int corosync_sync_v2_callbacks_retrieve (
  258. int service_id,
  259. struct sync_callbacks *callbacks)
  260. {
  261. int res;
  262. if (minimum_sync_mode == CS_SYNC_V2 && service_id == CLM_SERVICE && corosync_service[CLM_SERVICE] == NULL) {
  263. res = evil_callbacks_load (service_id, callbacks);
  264. return (res);
  265. }
  266. if (minimum_sync_mode == CS_SYNC_V2 && service_id == EVT_SERVICE && corosync_service[EVT_SERVICE] == NULL) {
  267. res = evil_callbacks_load (service_id, callbacks);
  268. return (res);
  269. }
  270. if (corosync_service[service_id] == NULL) {
  271. return (-1);
  272. }
  273. if (minimum_sync_mode == CS_SYNC_V1 && corosync_service[service_id]->sync_mode != CS_SYNC_V2) {
  274. return (-1);
  275. }
  276. callbacks->name = corosync_service[service_id]->name;
  277. callbacks->api_version = 1;
  278. if (corosync_service[service_id]->sync_mode == CS_SYNC_V1_APIV2) {
  279. callbacks->api_version = 2;
  280. }
  281. callbacks->sync_init_api.sync_init_v1 = corosync_service[service_id]->sync_init;
  282. callbacks->sync_process = corosync_service[service_id]->sync_process;
  283. callbacks->sync_activate = corosync_service[service_id]->sync_activate;
  284. callbacks->sync_abort = corosync_service[service_id]->sync_abort;
  285. return (0);
  286. }
  287. static struct memb_ring_id corosync_ring_id;
  288. static void member_object_joined (unsigned int nodeid)
  289. {
  290. char member_ip[ICMAP_KEYNAME_MAXLEN];
  291. char member_join_count[ICMAP_KEYNAME_MAXLEN];
  292. char member_status[ICMAP_KEYNAME_MAXLEN];
  293. snprintf(member_ip, ICMAP_KEYNAME_MAXLEN, "runtime.totem.pg.mrp.srp.members.%u.ip", nodeid);
  294. snprintf(member_join_count, ICMAP_KEYNAME_MAXLEN, "runtime.totem.pg.mrp.srp.members.%u.join_count", nodeid);
  295. snprintf(member_status, ICMAP_KEYNAME_MAXLEN, "runtime.totem.pg.mrp.srp.members.%u.status", nodeid);
  296. if (icmap_get(member_ip, NULL, NULL, NULL) == CS_OK) {
  297. icmap_inc(member_join_count);
  298. icmap_set_string(member_status, "joined");
  299. } else {
  300. icmap_set_string(member_ip, (char*)api->totem_ifaces_print (nodeid));
  301. icmap_set_uint32(member_join_count, 1);
  302. icmap_set_string(member_status, "joined");
  303. }
  304. }
  305. static void member_object_left (unsigned int nodeid)
  306. {
  307. char member_status[ICMAP_KEYNAME_MAXLEN];
  308. snprintf(member_status, ICMAP_KEYNAME_MAXLEN, "runtime.totem.pg.mrp.srp.members.%u.status", nodeid);
  309. icmap_set_string(member_status, "left");
  310. }
  311. static void confchg_fn (
  312. enum totem_configuration_type configuration_type,
  313. const unsigned int *member_list, size_t member_list_entries,
  314. const unsigned int *left_list, size_t left_list_entries,
  315. const unsigned int *joined_list, size_t joined_list_entries,
  316. const struct memb_ring_id *ring_id)
  317. {
  318. int i;
  319. int abort_activate = 0;
  320. if (sync_in_process == 1) {
  321. abort_activate = 1;
  322. }
  323. sync_in_process = 1;
  324. cs_ipcs_sync_state_changed(sync_in_process);
  325. memcpy (&corosync_ring_id, ring_id, sizeof (struct memb_ring_id));
  326. for (i = 0; i < left_list_entries; i++) {
  327. member_object_left (left_list[i]);
  328. }
  329. for (i = 0; i < joined_list_entries; i++) {
  330. member_object_joined (joined_list[i]);
  331. }
  332. /*
  333. * Call configuration change for all services
  334. */
  335. for (i = 0; i < service_count; i++) {
  336. if (corosync_service[i] && corosync_service[i]->confchg_fn) {
  337. corosync_service[i]->confchg_fn (configuration_type,
  338. member_list, member_list_entries,
  339. left_list, left_list_entries,
  340. joined_list, joined_list_entries, ring_id);
  341. }
  342. }
  343. if (abort_activate) {
  344. sync_v2_abort ();
  345. }
  346. if (minimum_sync_mode == CS_SYNC_V2 && configuration_type == TOTEM_CONFIGURATION_TRANSITIONAL) {
  347. sync_v2_save_transitional (member_list, member_list_entries, ring_id);
  348. }
  349. if (minimum_sync_mode == CS_SYNC_V2 && configuration_type == TOTEM_CONFIGURATION_REGULAR) {
  350. sync_v2_start (member_list, member_list_entries, ring_id);
  351. }
  352. }
  353. static void priv_drop (void)
  354. {
  355. return; /* TODO: we are still not dropping privs */
  356. }
  357. static void corosync_tty_detach (void)
  358. {
  359. FILE *r;
  360. /*
  361. * Disconnect from TTY if this is not a debug run
  362. */
  363. switch (fork ()) {
  364. case -1:
  365. corosync_exit_error (COROSYNC_DONE_FORK);
  366. break;
  367. case 0:
  368. /*
  369. * child which is disconnected, run this process
  370. */
  371. break;
  372. default:
  373. exit (0);
  374. break;
  375. }
  376. /* Create new session */
  377. (void)setsid();
  378. /*
  379. * Map stdin/out/err to /dev/null.
  380. */
  381. r = freopen("/dev/null", "r", stdin);
  382. if (r == NULL) {
  383. corosync_exit_error (COROSYNC_DONE_STD_TO_NULL_REDIR);
  384. }
  385. r = freopen("/dev/null", "a", stderr);
  386. if (r == NULL) {
  387. corosync_exit_error (COROSYNC_DONE_STD_TO_NULL_REDIR);
  388. }
  389. r = freopen("/dev/null", "a", stdout);
  390. if (r == NULL) {
  391. corosync_exit_error (COROSYNC_DONE_STD_TO_NULL_REDIR);
  392. }
  393. }
  394. static void corosync_mlockall (void)
  395. {
  396. #if !defined(COROSYNC_BSD) || defined(COROSYNC_FREEBSD_GE_8)
  397. int res;
  398. #endif
  399. struct rlimit rlimit;
  400. rlimit.rlim_cur = RLIM_INFINITY;
  401. rlimit.rlim_max = RLIM_INFINITY;
  402. #ifndef COROSYNC_SOLARIS
  403. setrlimit (RLIMIT_MEMLOCK, &rlimit);
  404. #else
  405. setrlimit (RLIMIT_VMEM, &rlimit);
  406. #endif
  407. #if defined(COROSYNC_BSD) && !defined(COROSYNC_FREEBSD_GE_8)
  408. /* under FreeBSD < 8 a process with locked page cannot call dlopen
  409. * code disabled until FreeBSD bug i386/93396 was solved
  410. */
  411. log_printf (LOGSYS_LEVEL_WARNING, "Could not lock memory of service to avoid page faults\n");
  412. #else
  413. res = mlockall (MCL_CURRENT | MCL_FUTURE);
  414. if (res == -1) {
  415. LOGSYS_PERROR (errno, LOGSYS_LEVEL_WARNING,
  416. "Could not lock memory of service to avoid page faults");
  417. };
  418. #endif
  419. }
  420. static void corosync_totem_stats_updater (void *data)
  421. {
  422. totempg_stats_t * stats;
  423. uint32_t total_mtt_rx_token;
  424. uint32_t total_backlog_calc;
  425. uint32_t total_token_holdtime;
  426. int t, prev, i;
  427. int32_t token_count;
  428. char key_name[ICMAP_KEYNAME_MAXLEN];
  429. stats = api->totem_get_stats();
  430. icmap_set_uint32("runtime.totem.pg.msg_reserved", stats->msg_reserved);
  431. icmap_set_uint32("runtime.totem.pg.msg_queue_avail", stats->msg_queue_avail);
  432. icmap_set_uint64("runtime.totem.pg.mrp.srp.orf_token_tx", stats->mrp->srp->orf_token_tx);
  433. icmap_set_uint64("runtime.totem.pg.mrp.srp.orf_token_rx", stats->mrp->srp->orf_token_rx);
  434. icmap_set_uint64("runtime.totem.pg.mrp.srp.memb_merge_detect_tx", stats->mrp->srp->memb_merge_detect_tx);
  435. icmap_set_uint64("runtime.totem.pg.mrp.srp.memb_merge_detect_rx", stats->mrp->srp->memb_merge_detect_rx);
  436. icmap_set_uint64("runtime.totem.pg.mrp.srp.memb_join_tx", stats->mrp->srp->memb_join_tx);
  437. icmap_set_uint64("runtime.totem.pg.mrp.srp.memb_join_rx", stats->mrp->srp->memb_join_rx);
  438. icmap_set_uint64("runtime.totem.pg.mrp.srp.mcast_tx", stats->mrp->srp->mcast_tx);
  439. icmap_set_uint64("runtime.totem.pg.mrp.srp.mcast_retx", stats->mrp->srp->mcast_retx);
  440. icmap_set_uint64("runtime.totem.pg.mrp.srp.mcast_rx", stats->mrp->srp->mcast_rx);
  441. icmap_set_uint64("runtime.totem.pg.mrp.srp.memb_commit_token_tx", stats->mrp->srp->memb_commit_token_tx);
  442. icmap_set_uint64("runtime.totem.pg.mrp.srp.memb_commit_token_rx", stats->mrp->srp->memb_commit_token_rx);
  443. icmap_set_uint64("runtime.totem.pg.mrp.srp.token_hold_cancel_tx", stats->mrp->srp->token_hold_cancel_tx);
  444. icmap_set_uint64("runtime.totem.pg.mrp.srp.token_hold_cancel_rx", stats->mrp->srp->token_hold_cancel_rx);
  445. icmap_set_uint64("runtime.totem.pg.mrp.srp.operational_entered", stats->mrp->srp->operational_entered);
  446. icmap_set_uint64("runtime.totem.pg.mrp.srp.operational_token_lost", stats->mrp->srp->operational_token_lost);
  447. icmap_set_uint64("runtime.totem.pg.mrp.srp.gather_entered", stats->mrp->srp->gather_entered);
  448. icmap_set_uint64("runtime.totem.pg.mrp.srp.gather_token_lost", stats->mrp->srp->gather_token_lost);
  449. icmap_set_uint64("runtime.totem.pg.mrp.srp.commit_entered", stats->mrp->srp->commit_entered);
  450. icmap_set_uint64("runtime.totem.pg.mrp.srp.commit_token_lost", stats->mrp->srp->commit_token_lost);
  451. icmap_set_uint64("runtime.totem.pg.mrp.srp.recovery_entered", stats->mrp->srp->recovery_entered);
  452. icmap_set_uint64("runtime.totem.pg.mrp.srp.recovery_token_lost", stats->mrp->srp->recovery_token_lost);
  453. icmap_set_uint64("runtime.totem.pg.mrp.srp.consensus_timeouts", stats->mrp->srp->consensus_timeouts);
  454. icmap_set_uint64("runtime.totem.pg.mrp.srp.rx_msg_dropped", stats->mrp->srp->rx_msg_dropped);
  455. icmap_set_uint32("runtime.totem.pg.mrp.srp.continuous_gather", stats->mrp->srp->continuous_gather);
  456. icmap_set_uint8("runtime.totem.pg.mrp.srp.firewall_enabled_or_nic_failure",
  457. stats->mrp->srp->continuous_gather > MAX_NO_CONT_GATHER ? 1 : 0);
  458. for (i = 0; i < stats->mrp->srp->rrp->interface_count; i++) {
  459. snprintf(key_name, ICMAP_KEYNAME_MAXLEN, "runtime.totem.pg.mrp.rrp.%u.faulty", i);
  460. icmap_set_uint8(key_name, stats->mrp->srp->rrp->faulty[i]);
  461. }
  462. total_mtt_rx_token = 0;
  463. total_token_holdtime = 0;
  464. total_backlog_calc = 0;
  465. token_count = 0;
  466. t = stats->mrp->srp->latest_token;
  467. while (1) {
  468. if (t == 0)
  469. prev = TOTEM_TOKEN_STATS_MAX - 1;
  470. else
  471. prev = t - 1;
  472. if (prev == stats->mrp->srp->earliest_token)
  473. break;
  474. /* if tx == 0, then dropped token (not ours) */
  475. if (stats->mrp->srp->token[t].tx != 0 ||
  476. (stats->mrp->srp->token[t].rx - stats->mrp->srp->token[prev].rx) > 0 ) {
  477. total_mtt_rx_token += (stats->mrp->srp->token[t].rx - stats->mrp->srp->token[prev].rx);
  478. total_token_holdtime += (stats->mrp->srp->token[t].tx - stats->mrp->srp->token[t].rx);
  479. total_backlog_calc += stats->mrp->srp->token[t].backlog_calc;
  480. token_count++;
  481. }
  482. t = prev;
  483. }
  484. if (token_count) {
  485. icmap_set_uint32("runtime.totem.pg.mrp.srp.mtt_rx_token", (total_mtt_rx_token / token_count));
  486. icmap_set_uint32("runtime.totem.pg.mrp.srp.avg_token_workload", (total_token_holdtime / token_count));
  487. icmap_set_uint32("runtime.totem.pg.mrp.srp.avg_backlog_calc", (total_backlog_calc / token_count));
  488. }
  489. cs_ipcs_stats_update();
  490. api->timer_add_duration (1500 * MILLI_2_NANO_SECONDS, NULL,
  491. corosync_totem_stats_updater,
  492. &corosync_stats_timer_handle);
  493. }
  494. static void totem_dynamic_notify(
  495. int32_t event,
  496. const char *key_name,
  497. struct icmap_notify_value new_val,
  498. struct icmap_notify_value old_val,
  499. void *user_data)
  500. {
  501. int res;
  502. int ring_no;
  503. int member_no;
  504. struct totem_ip_address member;
  505. int add_new_member = 0;
  506. int remove_old_member = 0;
  507. res = sscanf(key_name, "totem.interface.%u.member.%u", &ring_no, &member_no);
  508. if (res != 2)
  509. return ;
  510. if (event == ICMAP_TRACK_ADD && new_val.type == ICMAP_VALUETYPE_STRING) {
  511. add_new_member = 1;
  512. }
  513. if (event == ICMAP_TRACK_DELETE && old_val.type == ICMAP_VALUETYPE_STRING) {
  514. remove_old_member = 1;
  515. }
  516. if (event == ICMAP_TRACK_MODIFY && new_val.type == ICMAP_VALUETYPE_STRING &&
  517. old_val.type == ICMAP_VALUETYPE_STRING) {
  518. add_new_member = 1;
  519. remove_old_member = 1;
  520. }
  521. if (remove_old_member) {
  522. log_printf(LOGSYS_LEVEL_DEBUG,
  523. "removing dynamic member %s for ring %u\n", (char *)old_val.data, ring_no);
  524. if (totemip_parse(&member, (char *)old_val.data, 0) == 0) {
  525. totempg_member_remove (&member, ring_no);
  526. }
  527. }
  528. if (add_new_member) {
  529. log_printf(LOGSYS_LEVEL_DEBUG,
  530. "adding dynamic member %s for ring %u\n", (char *)new_val.data, ring_no);
  531. if (totemip_parse(&member, (char *)new_val.data, 0) == 0) {
  532. totempg_member_add (&member, ring_no);
  533. }
  534. }
  535. }
  536. static void corosync_totem_dynamic_init (void)
  537. {
  538. icmap_track_t icmap_track;
  539. icmap_track_add("totem.interface.",
  540. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  541. totem_dynamic_notify,
  542. NULL,
  543. &icmap_track);
  544. }
  545. static void corosync_totem_stats_init (void)
  546. {
  547. icmap_set_uint32("runtime.totem.pg.mrp.srp.mtt_rx_token", 0);
  548. icmap_set_uint32("runtime.totem.pg.mrp.srp.avg_token_workload", 0);
  549. icmap_set_uint32("runtime.totem.pg.mrp.srp.avg_backlog_calc", 0);
  550. icmap_set_ro_access("runtime.totem", CS_TRUE, CS_TRUE);
  551. /* start stats timer */
  552. api->timer_add_duration (1500 * MILLI_2_NANO_SECONDS, NULL,
  553. corosync_totem_stats_updater,
  554. &corosync_stats_timer_handle);
  555. }
  556. static void deliver_fn (
  557. unsigned int nodeid,
  558. const void *msg,
  559. unsigned int msg_len,
  560. int endian_conversion_required)
  561. {
  562. const struct qb_ipc_request_header *header;
  563. int32_t service;
  564. int32_t fn_id;
  565. uint32_t id;
  566. header = msg;
  567. if (endian_conversion_required) {
  568. id = swab32 (header->id);
  569. } else {
  570. id = header->id;
  571. }
  572. /*
  573. * Call the proper executive handler
  574. */
  575. service = id >> 16;
  576. fn_id = id & 0xffff;
  577. if (corosync_service[service] == NULL && service == EVT_SERVICE) {
  578. evil_deliver_fn (nodeid, service, fn_id, msg,
  579. endian_conversion_required);
  580. }
  581. if (!corosync_service[service]) {
  582. return;
  583. }
  584. if (fn_id >= corosync_service[service]->exec_engine_count) {
  585. log_printf(LOGSYS_LEVEL_WARNING, "discarded unknown message %d for service %d (max id %d)",
  586. fn_id, service, corosync_service[service]->exec_engine_count);
  587. return;
  588. }
  589. icmap_fast_inc(service_stats_rx[service][fn_id]);
  590. if (endian_conversion_required) {
  591. assert(corosync_service[service]->exec_engine[fn_id].exec_endian_convert_fn != NULL);
  592. corosync_service[service]->exec_engine[fn_id].exec_endian_convert_fn
  593. ((void *)msg);
  594. }
  595. corosync_service[service]->exec_engine[fn_id].exec_handler_fn
  596. (msg, nodeid);
  597. }
  598. void main_get_config_modules(struct config_iface_ver0 ***modules, int *num)
  599. {
  600. *modules = config_modules;
  601. *num = num_config_modules;
  602. }
  603. int main_mcast (
  604. const struct iovec *iovec,
  605. unsigned int iov_len,
  606. unsigned int guarantee)
  607. {
  608. const struct qb_ipc_request_header *req = iovec->iov_base;
  609. int32_t service;
  610. int32_t fn_id;
  611. service = req->id >> 16;
  612. fn_id = req->id & 0xffff;
  613. if (corosync_service[service]) {
  614. icmap_fast_inc(service_stats_tx[service][fn_id]);
  615. }
  616. return (totempg_groups_mcast_joined (corosync_group_handle, iovec, iov_len, guarantee));
  617. }
  618. static qb_loop_timer_handle recheck_the_q_level_timer;
  619. void corosync_recheck_the_q_level(void *data)
  620. {
  621. totempg_check_q_level(corosync_group_handle);
  622. if (cs_ipcs_q_level_get() == TOTEM_Q_LEVEL_CRITICAL) {
  623. qb_loop_timer_add(cs_poll_handle_get(), QB_LOOP_MED, 1*QB_TIME_NS_IN_MSEC,
  624. NULL, corosync_recheck_the_q_level, &recheck_the_q_level_timer);
  625. }
  626. }
  627. struct sending_allowed_private_data_struct {
  628. int reserved_msgs;
  629. };
  630. int corosync_sending_allowed (
  631. unsigned int service,
  632. unsigned int id,
  633. const void *msg,
  634. void *sending_allowed_private_data)
  635. {
  636. struct sending_allowed_private_data_struct *pd =
  637. (struct sending_allowed_private_data_struct *)sending_allowed_private_data;
  638. struct iovec reserve_iovec;
  639. struct qb_ipc_request_header *header = (struct qb_ipc_request_header *)msg;
  640. int sending_allowed;
  641. reserve_iovec.iov_base = (char *)header;
  642. reserve_iovec.iov_len = header->size;
  643. pd->reserved_msgs = totempg_groups_joined_reserve (
  644. corosync_group_handle,
  645. &reserve_iovec, 1);
  646. if (pd->reserved_msgs == -1) {
  647. return -EINVAL;
  648. }
  649. sending_allowed = QB_FALSE;
  650. if (corosync_quorum_is_quorate() == 1 ||
  651. corosync_service[service]->allow_inquorate == CS_LIB_ALLOW_INQUORATE) {
  652. // we are quorate
  653. // now check flow control
  654. if (corosync_service[service]->lib_engine[id].flow_control == CS_LIB_FLOW_CONTROL_NOT_REQUIRED) {
  655. sending_allowed = QB_TRUE;
  656. } else if (pd->reserved_msgs && sync_in_process == 0) {
  657. sending_allowed = QB_TRUE;
  658. } else if (pd->reserved_msgs == 0) {
  659. return -ENOBUFS;
  660. } else /* (sync_in_process) */ {
  661. return -EINPROGRESS;
  662. }
  663. } else {
  664. return -EHOSTUNREACH;
  665. }
  666. return (sending_allowed);
  667. }
  668. void corosync_sending_allowed_release (void *sending_allowed_private_data)
  669. {
  670. struct sending_allowed_private_data_struct *pd =
  671. (struct sending_allowed_private_data_struct *)sending_allowed_private_data;
  672. if (pd->reserved_msgs == -1) {
  673. return;
  674. }
  675. totempg_groups_joined_release (pd->reserved_msgs);
  676. }
  677. int message_source_is_local (const mar_message_source_t *source)
  678. {
  679. int ret = 0;
  680. assert (source != NULL);
  681. if (source->nodeid == totempg_my_nodeid_get ()) {
  682. ret = 1;
  683. }
  684. return ret;
  685. }
  686. void message_source_set (
  687. mar_message_source_t *source,
  688. void *conn)
  689. {
  690. assert ((source != NULL) && (conn != NULL));
  691. memset (source, 0, sizeof (mar_message_source_t));
  692. source->nodeid = totempg_my_nodeid_get ();
  693. source->conn = conn;
  694. }
  695. static void corosync_setscheduler (void)
  696. {
  697. #if defined(HAVE_PTHREAD_SETSCHEDPARAM) && defined(HAVE_SCHED_GET_PRIORITY_MAX) && defined(HAVE_SCHED_SETSCHEDULER)
  698. int res;
  699. sched_priority = sched_get_priority_max (SCHED_RR);
  700. if (sched_priority != -1) {
  701. global_sched_param.sched_priority = sched_priority;
  702. res = sched_setscheduler (0, SCHED_RR, &global_sched_param);
  703. if (res == -1) {
  704. LOGSYS_PERROR(errno, LOGSYS_LEVEL_WARNING,
  705. "Could not set SCHED_RR at priority %d",
  706. global_sched_param.sched_priority);
  707. global_sched_param.sched_priority = 0;
  708. #ifdef HAVE_QB_LOG_THREAD_PRIORITY_SET
  709. qb_log_thread_priority_set (SCHED_OTHER, 0);
  710. #endif
  711. } else {
  712. /*
  713. * Turn on SCHED_RR in logsys system
  714. */
  715. #ifdef HAVE_QB_LOG_THREAD_PRIORITY_SET
  716. res = qb_log_thread_priority_set (SCHED_RR, sched_priority);
  717. #else
  718. res = -1;
  719. #endif
  720. if (res == -1) {
  721. log_printf (LOGSYS_LEVEL_ERROR,
  722. "Could not set logsys thread priority."
  723. " Can't continue because of priority inversions.");
  724. corosync_exit_error (COROSYNC_DONE_LOGSETUP);
  725. }
  726. }
  727. } else {
  728. LOGSYS_PERROR (errno, LOGSYS_LEVEL_WARNING,
  729. "Could not get maximum scheduler priority");
  730. sched_priority = 0;
  731. }
  732. #else
  733. log_printf(LOGSYS_LEVEL_WARNING,
  734. "The Platform is missing process priority setting features. Leaving at default.");
  735. #endif
  736. }
  737. static void
  738. _logsys_log_printf(int level, int subsys,
  739. const char *function_name,
  740. const char *file_name,
  741. int file_line,
  742. const char *format,
  743. ...) __attribute__((format(printf, 6, 7)));
  744. static void
  745. _logsys_log_printf(int level, int subsys,
  746. const char *function_name,
  747. const char *file_name,
  748. int file_line,
  749. const char *format, ...)
  750. {
  751. va_list ap;
  752. va_start(ap, format);
  753. qb_log_from_external_source_va(function_name, file_name,
  754. format, level, file_line,
  755. subsys, ap);
  756. va_end(ap);
  757. }
  758. static void fplay_key_change_notify_fn (
  759. int32_t event,
  760. const char *key_name,
  761. struct icmap_notify_value new_val,
  762. struct icmap_notify_value old_val,
  763. void *user_data)
  764. {
  765. if (strcmp(key_name, "runtime.blackbox.dump_flight_data") == 0) {
  766. fprintf(stderr,"Writetofile\n");
  767. qb_log_blackbox_write_to_file (LOCALSTATEDIR "/lib/corosync/fdata");
  768. }
  769. if (strcmp(key_name, "runtime.blackbox.dump_state") == 0) {
  770. fprintf(stderr,"statefump\n");
  771. corosync_state_dump ();
  772. }
  773. }
  774. static void corosync_fplay_control_init (void)
  775. {
  776. icmap_track_t track;
  777. icmap_set_string("runtime.blackbox.dump_flight_data", "no");
  778. icmap_set_string("runtime.blackbox.dump_state", "no");
  779. icmap_track_add("runtime.blackbox.dump_flight_data",
  780. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY,
  781. fplay_key_change_notify_fn,
  782. NULL, &track);
  783. icmap_track_add("runtime.blackbox.dump_state",
  784. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY,
  785. fplay_key_change_notify_fn,
  786. NULL, &track);
  787. }
  788. static void main_service_ready (void)
  789. {
  790. int res;
  791. /*
  792. * This must occur after totempg is initialized because "this_ip" must be set
  793. */
  794. res = corosync_service_defaults_link_and_init (api);
  795. if (res == -1) {
  796. log_printf (LOGSYS_LEVEL_ERROR, "Could not initialize default services\n");
  797. corosync_exit_error (COROSYNC_DONE_INIT_SERVICES);
  798. }
  799. evil_init (api);
  800. cs_ipcs_init();
  801. corosync_totem_stats_init ();
  802. corosync_fplay_control_init ();
  803. corosync_totem_dynamic_init ();
  804. if (minimum_sync_mode == CS_SYNC_V2) {
  805. log_printf (LOGSYS_LEVEL_NOTICE, "Compatibility mode set to none. Using V2 of the synchronization engine.\n");
  806. sync_v2_init (
  807. corosync_sync_v2_callbacks_retrieve,
  808. corosync_sync_completed);
  809. } else
  810. if (minimum_sync_mode == CS_SYNC_V1) {
  811. log_printf (LOGSYS_LEVEL_NOTICE, "Compatibility mode set to whitetank. Using V1 and V2 of the synchronization engine.\n");
  812. sync_register (
  813. corosync_sync_callbacks_retrieve,
  814. sync_v2_memb_list_determine,
  815. sync_v2_memb_list_abort,
  816. sync_v2_start);
  817. sync_v2_init (
  818. corosync_sync_v2_callbacks_retrieve,
  819. corosync_sync_completed);
  820. }
  821. }
  822. static enum e_corosync_done corosync_flock (const char *lockfile, pid_t pid)
  823. {
  824. struct flock lock;
  825. enum e_corosync_done err;
  826. char pid_s[17];
  827. int fd_flag;
  828. int lf;
  829. err = COROSYNC_DONE_EXIT;
  830. lf = open (lockfile, O_WRONLY | O_CREAT, 0640);
  831. if (lf == -1) {
  832. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't create lock file.\n");
  833. return (COROSYNC_DONE_AQUIRE_LOCK);
  834. }
  835. retry_fcntl:
  836. lock.l_type = F_WRLCK;
  837. lock.l_start = 0;
  838. lock.l_whence = SEEK_SET;
  839. lock.l_len = 0;
  840. if (fcntl (lf, F_SETLK, &lock) == -1) {
  841. switch (errno) {
  842. case EINTR:
  843. goto retry_fcntl;
  844. break;
  845. case EAGAIN:
  846. case EACCES:
  847. log_printf (LOGSYS_LEVEL_ERROR, "Another Corosync instance is already running.\n");
  848. err = COROSYNC_DONE_ALREADY_RUNNING;
  849. goto error_close;
  850. break;
  851. default:
  852. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't aquire lock. Error was %s\n",
  853. strerror(errno));
  854. err = COROSYNC_DONE_AQUIRE_LOCK;
  855. goto error_close;
  856. break;
  857. }
  858. }
  859. if (ftruncate (lf, 0) == -1) {
  860. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't truncate lock file. Error was %s\n",
  861. strerror (errno));
  862. err = COROSYNC_DONE_AQUIRE_LOCK;
  863. goto error_close_unlink;
  864. }
  865. memset (pid_s, 0, sizeof (pid_s));
  866. snprintf (pid_s, sizeof (pid_s) - 1, "%u\n", pid);
  867. retry_write:
  868. if (write (lf, pid_s, strlen (pid_s)) != strlen (pid_s)) {
  869. if (errno == EINTR) {
  870. goto retry_write;
  871. } else {
  872. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't write pid to lock file. "
  873. "Error was %s\n", strerror (errno));
  874. err = COROSYNC_DONE_AQUIRE_LOCK;
  875. goto error_close_unlink;
  876. }
  877. }
  878. if ((fd_flag = fcntl (lf, F_GETFD, 0)) == -1) {
  879. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't get close-on-exec flag from lock file. "
  880. "Error was %s\n", strerror (errno));
  881. err = COROSYNC_DONE_AQUIRE_LOCK;
  882. goto error_close_unlink;
  883. }
  884. fd_flag |= FD_CLOEXEC;
  885. if (fcntl (lf, F_SETFD, fd_flag) == -1) {
  886. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't set close-on-exec flag to lock file. "
  887. "Error was %s\n", strerror (errno));
  888. err = COROSYNC_DONE_AQUIRE_LOCK;
  889. goto error_close_unlink;
  890. }
  891. return (err);
  892. error_close_unlink:
  893. unlink (lockfile);
  894. error_close:
  895. close (lf);
  896. return (err);
  897. }
  898. int main (int argc, char **argv, char **envp)
  899. {
  900. const char *error_string;
  901. struct totem_config totem_config;
  902. int res, ch;
  903. int background, setprio;
  904. struct stat stat_out;
  905. char corosync_lib_dir[PATH_MAX];
  906. enum e_corosync_done flock_err;
  907. /* default configuration
  908. */
  909. background = 1;
  910. setprio = 0;
  911. while ((ch = getopt (argc, argv, "fprv")) != EOF) {
  912. switch (ch) {
  913. case 'f':
  914. background = 0;
  915. logsys_config_mode_set (NULL, LOGSYS_MODE_OUTPUT_STDERR|LOGSYS_MODE_THREADED|LOGSYS_MODE_FORK);
  916. break;
  917. case 'p':
  918. break;
  919. case 'r':
  920. setprio = 1;
  921. break;
  922. case 'v':
  923. printf ("Corosync Cluster Engine, version '%s'\n", VERSION);
  924. printf ("Copyright (c) 2006-2009 Red Hat, Inc.\n");
  925. return EXIT_SUCCESS;
  926. break;
  927. default:
  928. fprintf(stderr, \
  929. "usage:\n"\
  930. " -f : Start application in foreground.\n"\
  931. " -p : Does nothing. \n"\
  932. " -r : Set round robin realtime scheduling \n"\
  933. " -v : Display version and SVN revision of Corosync and exit.\n");
  934. return EXIT_FAILURE;
  935. }
  936. }
  937. /*
  938. * Set round robin realtime scheduling with priority 99
  939. * Lock all memory to avoid page faults which may interrupt
  940. * application healthchecking
  941. */
  942. if (setprio) {
  943. corosync_setscheduler ();
  944. }
  945. corosync_mlockall ();
  946. log_printf (LOGSYS_LEVEL_NOTICE, "Corosync Cluster Engine ('%s'): started and ready to provide service.\n", VERSION);
  947. log_printf (LOGSYS_LEVEL_INFO, "Corosync built-in features:" PACKAGE_FEATURES "\n");
  948. corosync_poll_handle = qb_loop_create ();
  949. qb_loop_signal_add(corosync_poll_handle, QB_LOOP_LOW,
  950. SIGUSR2, NULL, sig_diag_handler, NULL);
  951. qb_loop_signal_add(corosync_poll_handle, QB_LOOP_HIGH,
  952. SIGINT, NULL, sig_exit_handler, NULL);
  953. qb_loop_signal_add(corosync_poll_handle, QB_LOOP_HIGH,
  954. SIGQUIT, NULL, sig_exit_handler, NULL);
  955. qb_loop_signal_add(corosync_poll_handle, QB_LOOP_HIGH,
  956. SIGTERM, NULL, sig_exit_handler, NULL);
  957. (void)signal (SIGSEGV, sigsegv_handler);
  958. (void)signal (SIGABRT, sigabrt_handler);
  959. #if MSG_NOSIGNAL != 0
  960. (void)signal (SIGPIPE, SIG_IGN);
  961. #endif
  962. if (icmap_init() != CS_OK) {
  963. log_printf (LOGSYS_LEVEL_ERROR, "Corosync Executive couldn't initialize configuration component.\n");
  964. corosync_exit_error (COROSYNC_DONE_OBJDB);
  965. }
  966. /*
  967. * Initialize the corosync_api_v1 definition
  968. */
  969. api = apidef_get ();
  970. num_config_modules = 0;
  971. res = coroparse_configparse(&error_string);
  972. if (res == -1) {
  973. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  974. corosync_exit_error (COROSYNC_DONE_MAINCONFIGREAD);
  975. }
  976. res = corosync_main_config_read (&error_string);
  977. if (res == -1) {
  978. /*
  979. * if we are here, we _must_ flush the logsys queue
  980. * and try to inform that we couldn't read the config.
  981. * this is a desperate attempt before certain death
  982. * and there is no guarantee that we can print to stderr
  983. * nor that logsys is sending the messages where we expect.
  984. */
  985. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  986. fprintf(stderr, "%s", error_string);
  987. syslog (LOGSYS_LEVEL_ERROR, "%s", error_string);
  988. corosync_exit_error (COROSYNC_DONE_MAINCONFIGREAD);
  989. }
  990. /*
  991. * Make sure required directory is present
  992. */
  993. sprintf (corosync_lib_dir, "%s/lib/corosync", LOCALSTATEDIR);
  994. res = stat (corosync_lib_dir, &stat_out);
  995. if ((res == -1) || (res == 0 && !S_ISDIR(stat_out.st_mode))) {
  996. log_printf (LOGSYS_LEVEL_ERROR, "Required directory not present %s. Please create it.\n", corosync_lib_dir);
  997. corosync_exit_error (COROSYNC_DONE_DIR_NOT_PRESENT);
  998. }
  999. res = totem_config_read (&totem_config, &error_string);
  1000. if (res == -1) {
  1001. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1002. corosync_exit_error (COROSYNC_DONE_MAINCONFIGREAD);
  1003. }
  1004. res = totem_config_keyread (&totem_config, &error_string);
  1005. if (res == -1) {
  1006. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1007. corosync_exit_error (COROSYNC_DONE_MAINCONFIGREAD);
  1008. }
  1009. res = totem_config_validate (&totem_config, &error_string);
  1010. if (res == -1) {
  1011. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1012. corosync_exit_error (COROSYNC_DONE_MAINCONFIGREAD);
  1013. }
  1014. totem_config.totem_logging_configuration = totem_logging_configuration;
  1015. totem_config.totem_logging_configuration.log_subsys_id = _logsys_subsys_create("TOTEM", "totem");
  1016. totem_config.totem_logging_configuration.log_level_security = LOGSYS_LEVEL_WARNING;
  1017. totem_config.totem_logging_configuration.log_level_error = LOGSYS_LEVEL_ERROR;
  1018. totem_config.totem_logging_configuration.log_level_warning = LOGSYS_LEVEL_WARNING;
  1019. totem_config.totem_logging_configuration.log_level_notice = LOGSYS_LEVEL_NOTICE;
  1020. totem_config.totem_logging_configuration.log_level_debug = LOGSYS_LEVEL_DEBUG;
  1021. totem_config.totem_logging_configuration.log_printf = _logsys_log_printf;
  1022. logsys_config_apply();
  1023. res = corosync_main_config_compatibility_read (&minimum_sync_mode,
  1024. &error_string);
  1025. if (res == -1) {
  1026. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1027. corosync_exit_error (COROSYNC_DONE_MAINCONFIGREAD);
  1028. }
  1029. /*
  1030. * Now we are fully initialized.
  1031. */
  1032. if (background) {
  1033. corosync_tty_detach ();
  1034. }
  1035. qb_log_thread_start();
  1036. if ((flock_err = corosync_flock (corosync_lock_file, getpid ())) != COROSYNC_DONE_EXIT) {
  1037. corosync_exit_error (flock_err);
  1038. }
  1039. /*
  1040. * if totempg_initialize doesn't have root priveleges, it cannot
  1041. * bind to a specific interface. This only matters if
  1042. * there is more then one interface in a system, so
  1043. * in this case, only a warning is printed
  1044. */
  1045. /*
  1046. * Join multicast group and setup delivery
  1047. * and configuration change functions
  1048. */
  1049. totempg_initialize (
  1050. corosync_poll_handle,
  1051. &totem_config);
  1052. totempg_service_ready_register (
  1053. main_service_ready);
  1054. totempg_groups_initialize (
  1055. &corosync_group_handle,
  1056. deliver_fn,
  1057. confchg_fn);
  1058. totempg_groups_join (
  1059. corosync_group_handle,
  1060. &corosync_group,
  1061. 1);
  1062. /*
  1063. * Drop root privleges to user 'corosync'
  1064. * TODO: Don't really need full root capabilities;
  1065. * needed capabilities are:
  1066. * CAP_NET_RAW (bindtodevice)
  1067. * CAP_SYS_NICE (setscheduler)
  1068. * CAP_IPC_LOCK (mlockall)
  1069. */
  1070. priv_drop ();
  1071. schedwrk_init (
  1072. serialize_lock,
  1073. serialize_unlock);
  1074. /*
  1075. * Start main processing loop
  1076. */
  1077. qb_loop_run (corosync_poll_handle);
  1078. /*
  1079. * Exit was requested
  1080. */
  1081. totempg_finalize ();
  1082. /*
  1083. * free the loop resources
  1084. */
  1085. qb_loop_destroy (corosync_poll_handle);
  1086. /*
  1087. * free up the icmap
  1088. */
  1089. /*
  1090. * Remove pid lock file
  1091. */
  1092. unlink (corosync_lock_file);
  1093. corosync_exit_error (COROSYNC_DONE_EXIT);
  1094. return EXIT_SUCCESS;
  1095. }