totemconfig.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215
  1. /*
  2. * Copyright (c) 2002-2005 MontaVista Software, Inc.
  3. * Copyright (c) 2006-2013 Red Hat, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. * Author: Steven Dake (sdake@redhat.com)
  8. * Jan Friesse (jfriesse@redhat.com)
  9. *
  10. * This software licensed under BSD license, the text of which follows:
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above copyright notice,
  16. * this list of conditions and the following disclaimer.
  17. * - Redistributions in binary form must reproduce the above copyright notice,
  18. * this list of conditions and the following disclaimer in the documentation
  19. * and/or other materials provided with the distribution.
  20. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  21. * contributors may be used to endorse or promote products derived from this
  22. * software without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  28. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  31. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  32. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  33. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  34. * THE POSSIBILITY OF SUCH DAMAGE.
  35. */
  36. #include <config.h>
  37. #include <stdio.h>
  38. #include <string.h>
  39. #include <stdlib.h>
  40. #include <errno.h>
  41. #include <unistd.h>
  42. #include <sys/socket.h>
  43. #include <sys/types.h>
  44. #include <sys/stat.h>
  45. #include <fcntl.h>
  46. #include <netinet/in.h>
  47. #include <arpa/inet.h>
  48. #include <sys/param.h>
  49. #include <corosync/swab.h>
  50. #include <corosync/list.h>
  51. #include <qb/qbdefs.h>
  52. #include <corosync/totem/totem.h>
  53. #include <corosync/config.h>
  54. #include <corosync/logsys.h>
  55. #include <corosync/icmap.h>
  56. #include "util.h"
  57. #include "totemconfig.h"
  58. #define TOKEN_RETRANSMITS_BEFORE_LOSS_CONST 4
  59. #define TOKEN_TIMEOUT 1000
  60. #define JOIN_TIMEOUT 50
  61. #define MERGE_TIMEOUT 200
  62. #define DOWNCHECK_TIMEOUT 1000
  63. #define FAIL_TO_RECV_CONST 2500
  64. #define SEQNO_UNCHANGED_CONST 30
  65. #define MINIMUM_TIMEOUT (int)(1000/HZ)*3
  66. #define MAX_NETWORK_DELAY 50
  67. #define WINDOW_SIZE 50
  68. #define MAX_MESSAGES 17
  69. #define MISS_COUNT_CONST 5
  70. #define RRP_PROBLEM_COUNT_TIMEOUT 2000
  71. #define RRP_PROBLEM_COUNT_THRESHOLD_DEFAULT 10
  72. #define RRP_PROBLEM_COUNT_THRESHOLD_MIN 2
  73. #define RRP_AUTORECOVERY_CHECK_TIMEOUT 1000
  74. #define DEFAULT_PORT 5405
  75. static char error_string_response[512];
  76. static void add_totem_config_notification(struct totem_config *totem_config);
  77. /* All the volatile parameters are uint32s, luckily */
  78. static uint32_t *totem_get_param_by_name(struct totem_config *totem_config, const char *param_name)
  79. {
  80. if (strcmp(param_name, "totem.token") == 0)
  81. return &totem_config->token_timeout;
  82. if (strcmp(param_name, "totem.token_retransmit") == 0)
  83. return &totem_config->token_retransmit_timeout;
  84. if (strcmp(param_name, "totem.hold") == 0)
  85. return &totem_config->token_hold_timeout;
  86. if (strcmp(param_name, "totem.token_retransmits_before_loss_const") == 0)
  87. return &totem_config->token_retransmits_before_loss_const;
  88. if (strcmp(param_name, "totem.join") == 0)
  89. return &totem_config->join_timeout;
  90. if (strcmp(param_name, "totem.send_join") == 0)
  91. return &totem_config->send_join_timeout;
  92. if (strcmp(param_name, "totem.consensus") == 0)
  93. return &totem_config->consensus_timeout;
  94. if (strcmp(param_name, "totem.merge") == 0)
  95. return &totem_config->merge_timeout;
  96. if (strcmp(param_name, "totem.downcheck") == 0)
  97. return &totem_config->downcheck_timeout;
  98. if (strcmp(param_name, "totem.fail_recv_const") == 0)
  99. return &totem_config->fail_to_recv_const;
  100. if (strcmp(param_name, "totem.seqno_unchanged_const") == 0)
  101. return &totem_config->seqno_unchanged_const;
  102. if (strcmp(param_name, "totem.rrp_token_expired_timeout") == 0)
  103. return &totem_config->rrp_token_expired_timeout;
  104. if (strcmp(param_name, "totem.rrp_problem_count_timeout") == 0)
  105. return &totem_config->rrp_problem_count_timeout;
  106. if (strcmp(param_name, "totem.rrp_problem_count_threshold") == 0)
  107. return &totem_config->rrp_problem_count_threshold;
  108. if (strcmp(param_name, "totem.rrp_problem_count_mcast_threshold") == 0)
  109. return &totem_config->rrp_problem_count_mcast_threshold;
  110. if (strcmp(param_name, "totem.rrp_autorecovery_check_timeout") == 0)
  111. return &totem_config->rrp_autorecovery_check_timeout;
  112. if (strcmp(param_name, "totem.heartbeat_failures_allowed") == 0)
  113. return &totem_config->heartbeat_failures_allowed;
  114. if (strcmp(param_name, "totem.max_network_delay") == 0)
  115. return &totem_config->max_network_delay;
  116. if (strcmp(param_name, "totem.window_size") == 0)
  117. return &totem_config->window_size;
  118. if (strcmp(param_name, "totem.max_messages") == 0)
  119. return &totem_config->max_messages;
  120. if (strcmp(param_name, "totem.miss_count_const") == 0)
  121. return &totem_config->miss_count_const;
  122. return NULL;
  123. }
  124. /*
  125. * Read key_name from icmap. If key is not found or key_name == delete_key or if allow_zero is false
  126. * and readed value is zero, default value is used and stored into totem_config.
  127. */
  128. static void totem_volatile_config_set_value (struct totem_config *totem_config,
  129. const char *key_name, const char *deleted_key, unsigned int default_value,
  130. int allow_zero_value)
  131. {
  132. if (icmap_get_uint32(key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  133. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  134. (!allow_zero_value && *totem_get_param_by_name(totem_config, key_name) == 0)) {
  135. *totem_get_param_by_name(totem_config, key_name) = default_value;
  136. }
  137. }
  138. /*
  139. * Read and validate config values from cmap and store them into totem_config. If key doesn't exists,
  140. * default value is stored. deleted_key is name of key beeing processed by delete operation
  141. * from cmap. It is considered as non existing even if it can be read. Can be NULL.
  142. */
  143. static void totem_volatile_config_read (struct totem_config *totem_config, const char *deleted_key)
  144. {
  145. totem_volatile_config_set_value(totem_config, "totem.token_retransmits_before_loss_const", deleted_key,
  146. TOKEN_RETRANSMITS_BEFORE_LOSS_CONST, 0);
  147. totem_volatile_config_set_value(totem_config, "totem.token", deleted_key, TOKEN_TIMEOUT, 0);
  148. totem_volatile_config_set_value(totem_config, "totem.max_network_delay", deleted_key, MAX_NETWORK_DELAY, 0);
  149. totem_volatile_config_set_value(totem_config, "totem.window_size", deleted_key, WINDOW_SIZE, 0);
  150. totem_volatile_config_set_value(totem_config, "totem.max_messages", deleted_key, MAX_MESSAGES, 0);
  151. totem_volatile_config_set_value(totem_config, "totem.miss_count_const", deleted_key, MISS_COUNT_CONST, 0);
  152. totem_volatile_config_set_value(totem_config, "totem.token_retransmit", deleted_key,
  153. (int)(totem_config->token_timeout / (totem_config->token_retransmits_before_loss_const + 0.2)), 0);
  154. totem_volatile_config_set_value(totem_config, "totem.hold", deleted_key,
  155. (int)(totem_config->token_retransmit_timeout * 0.8 - (1000/HZ)), 0);
  156. totem_volatile_config_set_value(totem_config, "totem.join", deleted_key, JOIN_TIMEOUT, 0);
  157. totem_volatile_config_set_value(totem_config, "totem.consensus", deleted_key,
  158. (int)(float)(1.2 * totem_config->token_timeout), 0);
  159. totem_volatile_config_set_value(totem_config, "totem.merge", deleted_key, MERGE_TIMEOUT, 0);
  160. totem_volatile_config_set_value(totem_config, "totem.downcheck", deleted_key, DOWNCHECK_TIMEOUT, 0);
  161. totem_volatile_config_set_value(totem_config, "totem.fail_recv_const", deleted_key, FAIL_TO_RECV_CONST, 0);
  162. totem_volatile_config_set_value(totem_config, "totem.seqno_unchanged_const", deleted_key,
  163. SEQNO_UNCHANGED_CONST, 0);
  164. totem_volatile_config_set_value(totem_config, "totem.send_join", deleted_key, 0, 1);
  165. totem_volatile_config_set_value(totem_config, "totem.rrp_problem_count_timeout", deleted_key,
  166. RRP_PROBLEM_COUNT_TIMEOUT, 0);
  167. totem_volatile_config_set_value(totem_config, "totem.rrp_problem_count_threshold", deleted_key,
  168. RRP_PROBLEM_COUNT_THRESHOLD_DEFAULT, 0);
  169. totem_volatile_config_set_value(totem_config, "totem.rrp_problem_count_mcast_threshold", deleted_key,
  170. totem_config->rrp_problem_count_threshold * 10, 0);
  171. totem_volatile_config_set_value(totem_config, "totem.rrp_token_expired_timeout", deleted_key,
  172. totem_config->token_retransmit_timeout, 0);
  173. totem_volatile_config_set_value(totem_config, "totem.rrp_autorecovery_check_timeout", deleted_key,
  174. RRP_AUTORECOVERY_CHECK_TIMEOUT, 0);
  175. totem_volatile_config_set_value(totem_config, "totem.heartbeat_failures_allowed", deleted_key, 0, 1);
  176. }
  177. static int totem_volatile_config_validate (
  178. struct totem_config *totem_config,
  179. const char **error_string)
  180. {
  181. static char local_error_reason[512];
  182. const char *error_reason = local_error_reason;
  183. if (totem_config->max_network_delay < MINIMUM_TIMEOUT) {
  184. snprintf (local_error_reason, sizeof(local_error_reason),
  185. "The max_network_delay parameter (%d ms) may not be less then (%d ms).",
  186. totem_config->max_network_delay, MINIMUM_TIMEOUT);
  187. goto parse_error;
  188. }
  189. if (totem_config->token_timeout < MINIMUM_TIMEOUT) {
  190. snprintf (local_error_reason, sizeof(local_error_reason),
  191. "The token timeout parameter (%d ms) may not be less then (%d ms).",
  192. totem_config->token_timeout, MINIMUM_TIMEOUT);
  193. goto parse_error;
  194. }
  195. if (totem_config->token_retransmit_timeout < MINIMUM_TIMEOUT) {
  196. snprintf (local_error_reason, sizeof(local_error_reason),
  197. "The token retransmit timeout parameter (%d ms) may not be less then (%d ms).",
  198. totem_config->token_retransmit_timeout, MINIMUM_TIMEOUT);
  199. goto parse_error;
  200. }
  201. if (totem_config->token_hold_timeout < MINIMUM_TIMEOUT) {
  202. snprintf (local_error_reason, sizeof(local_error_reason),
  203. "The token hold timeout parameter (%d ms) may not be less then (%d ms).",
  204. totem_config->token_hold_timeout, MINIMUM_TIMEOUT);
  205. goto parse_error;
  206. }
  207. if (totem_config->join_timeout < MINIMUM_TIMEOUT) {
  208. snprintf (local_error_reason, sizeof(local_error_reason),
  209. "The join timeout parameter (%d ms) may not be less then (%d ms).",
  210. totem_config->join_timeout, MINIMUM_TIMEOUT);
  211. goto parse_error;
  212. }
  213. if (totem_config->consensus_timeout < MINIMUM_TIMEOUT) {
  214. snprintf (local_error_reason, sizeof(local_error_reason),
  215. "The consensus timeout parameter (%d ms) may not be less then (%d ms).",
  216. totem_config->consensus_timeout, MINIMUM_TIMEOUT);
  217. goto parse_error;
  218. }
  219. if (totem_config->merge_timeout < MINIMUM_TIMEOUT) {
  220. snprintf (local_error_reason, sizeof(local_error_reason),
  221. "The merge timeout parameter (%d ms) may not be less then (%d ms).",
  222. totem_config->merge_timeout, MINIMUM_TIMEOUT);
  223. goto parse_error;
  224. }
  225. if (totem_config->downcheck_timeout < MINIMUM_TIMEOUT) {
  226. snprintf (local_error_reason, sizeof(local_error_reason),
  227. "The downcheck timeout parameter (%d ms) may not be less then (%d ms).",
  228. totem_config->downcheck_timeout, MINIMUM_TIMEOUT);
  229. goto parse_error;
  230. }
  231. if (totem_config->rrp_problem_count_timeout < MINIMUM_TIMEOUT) {
  232. snprintf (local_error_reason, sizeof(local_error_reason),
  233. "The RRP problem count timeout parameter (%d ms) may not be less then (%d ms).",
  234. totem_config->rrp_problem_count_timeout, MINIMUM_TIMEOUT);
  235. goto parse_error;
  236. }
  237. if (totem_config->rrp_problem_count_threshold < RRP_PROBLEM_COUNT_THRESHOLD_MIN) {
  238. snprintf (local_error_reason, sizeof(local_error_reason),
  239. "The RRP problem count threshold (%d problem count) may not be less then (%d problem count).",
  240. totem_config->rrp_problem_count_threshold, RRP_PROBLEM_COUNT_THRESHOLD_MIN);
  241. goto parse_error;
  242. }
  243. if (totem_config->rrp_problem_count_mcast_threshold < RRP_PROBLEM_COUNT_THRESHOLD_MIN) {
  244. snprintf (local_error_reason, sizeof(local_error_reason),
  245. "The RRP multicast problem count threshold (%d problem count) may not be less then (%d problem count).",
  246. totem_config->rrp_problem_count_mcast_threshold, RRP_PROBLEM_COUNT_THRESHOLD_MIN);
  247. goto parse_error;
  248. }
  249. if (totem_config->rrp_token_expired_timeout < MINIMUM_TIMEOUT) {
  250. snprintf (local_error_reason, sizeof(local_error_reason),
  251. "The RRP token expired timeout parameter (%d ms) may not be less then (%d ms).",
  252. totem_config->rrp_token_expired_timeout, MINIMUM_TIMEOUT);
  253. goto parse_error;
  254. }
  255. return 0;
  256. parse_error:
  257. snprintf (error_string_response, sizeof(error_string_response),
  258. "parse error in config: %s\n", error_reason);
  259. *error_string = error_string_response;
  260. return (-1);
  261. }
  262. static int totem_get_crypto(struct totem_config *totem_config)
  263. {
  264. char *str;
  265. const char *tmp_cipher;
  266. const char *tmp_hash;
  267. tmp_hash = "sha1";
  268. tmp_cipher = "aes256";
  269. if (icmap_get_string("totem.secauth", &str) == CS_OK) {
  270. if (strcmp (str, "off") == 0) {
  271. tmp_hash = "none";
  272. tmp_cipher = "none";
  273. }
  274. free(str);
  275. }
  276. if (icmap_get_string("totem.crypto_cipher", &str) == CS_OK) {
  277. if (strcmp(str, "none") == 0) {
  278. tmp_cipher = "none";
  279. }
  280. if (strcmp(str, "aes256") == 0) {
  281. tmp_cipher = "aes256";
  282. }
  283. if (strcmp(str, "aes192") == 0) {
  284. tmp_cipher = "aes192";
  285. }
  286. if (strcmp(str, "aes128") == 0) {
  287. tmp_cipher = "aes128";
  288. }
  289. if (strcmp(str, "3des") == 0) {
  290. tmp_cipher = "3des";
  291. }
  292. free(str);
  293. }
  294. if (icmap_get_string("totem.crypto_hash", &str) == CS_OK) {
  295. if (strcmp(str, "none") == 0) {
  296. tmp_hash = "none";
  297. }
  298. if (strcmp(str, "md5") == 0) {
  299. tmp_hash = "md5";
  300. }
  301. if (strcmp(str, "sha1") == 0) {
  302. tmp_hash = "sha1";
  303. }
  304. if (strcmp(str, "sha256") == 0) {
  305. tmp_hash = "sha256";
  306. }
  307. if (strcmp(str, "sha384") == 0) {
  308. tmp_hash = "sha384";
  309. }
  310. if (strcmp(str, "sha512") == 0) {
  311. tmp_hash = "sha512";
  312. }
  313. free(str);
  314. }
  315. if ((strcmp(tmp_cipher, "none") != 0) &&
  316. (strcmp(tmp_hash, "none") == 0)) {
  317. return -1;
  318. }
  319. free(totem_config->crypto_cipher_type);
  320. free(totem_config->crypto_hash_type);
  321. totem_config->crypto_cipher_type = strdup(tmp_cipher);
  322. totem_config->crypto_hash_type = strdup(tmp_hash);
  323. return 0;
  324. }
  325. static uint16_t generate_cluster_id (const char *cluster_name)
  326. {
  327. int i;
  328. int value = 0;
  329. for (i = 0; i < strlen(cluster_name); i++) {
  330. value <<= 1;
  331. value += cluster_name[i];
  332. }
  333. return (value & 0xFFFF);
  334. }
  335. static int get_cluster_mcast_addr (
  336. const char *cluster_name,
  337. const struct totem_ip_address *bindnet,
  338. unsigned int ringnumber,
  339. int ip_version,
  340. struct totem_ip_address *res)
  341. {
  342. uint16_t clusterid;
  343. char addr[INET6_ADDRSTRLEN + 1];
  344. int err;
  345. if (cluster_name == NULL) {
  346. return (-1);
  347. }
  348. clusterid = generate_cluster_id(cluster_name) + ringnumber;
  349. memset (res, 0, sizeof(*res));
  350. switch (bindnet->family) {
  351. case AF_INET:
  352. snprintf(addr, sizeof(addr), "239.192.%d.%d", clusterid >> 8, clusterid % 0xFF);
  353. break;
  354. case AF_INET6:
  355. snprintf(addr, sizeof(addr), "ff15::%x", clusterid);
  356. break;
  357. default:
  358. /*
  359. * Unknown family
  360. */
  361. return (-1);
  362. }
  363. err = totemip_parse (res, addr, ip_version);
  364. return (err);
  365. }
  366. static int find_local_node_in_nodelist(struct totem_config *totem_config)
  367. {
  368. icmap_iter_t iter;
  369. const char *iter_key;
  370. int res = 0;
  371. unsigned int node_pos;
  372. int local_node_pos = -1;
  373. struct totem_ip_address bind_addr;
  374. int interface_up, interface_num;
  375. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  376. char *node_addr_str;
  377. struct totem_ip_address node_addr;
  378. res = totemip_iface_check(&totem_config->interfaces[0].bindnet,
  379. &bind_addr, &interface_up, &interface_num,
  380. totem_config->clear_node_high_bit);
  381. if (res == -1) {
  382. return (-1);
  383. }
  384. iter = icmap_iter_init("nodelist.node.");
  385. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  386. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  387. if (res != 2) {
  388. continue;
  389. }
  390. if (strcmp(tmp_key, "ring0_addr") != 0) {
  391. continue;
  392. }
  393. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  394. if (icmap_get_string(tmp_key, &node_addr_str) != CS_OK) {
  395. continue;
  396. }
  397. res = totemip_parse (&node_addr, node_addr_str, totem_config->ip_version);
  398. free(node_addr_str);
  399. if (res == -1) {
  400. continue ;
  401. }
  402. if (totemip_equal(&bind_addr, &node_addr)) {
  403. local_node_pos = node_pos;
  404. }
  405. }
  406. icmap_iter_finalize(iter);
  407. return (local_node_pos);
  408. }
  409. static void put_nodelist_members_to_config(struct totem_config *totem_config)
  410. {
  411. icmap_iter_t iter, iter2;
  412. const char *iter_key, *iter_key2;
  413. int res = 0;
  414. unsigned int node_pos;
  415. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  416. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  417. char *node_addr_str;
  418. int member_count;
  419. unsigned int ringnumber = 0;
  420. int i, j;
  421. /* Clear out nodelist so we can put the new one in if needed */
  422. for (i = 0; i < totem_config->interface_count; i++) {
  423. for (j = 0; j < PROCESSOR_COUNT_MAX; j++) {
  424. memset(&totem_config->interfaces[i].member_list[j], 0, sizeof(struct totem_ip_address));
  425. }
  426. totem_config->interfaces[i].member_count = 0;
  427. }
  428. iter = icmap_iter_init("nodelist.node.");
  429. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  430. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  431. if (res != 2) {
  432. continue;
  433. }
  434. if (strcmp(tmp_key, "ring0_addr") != 0) {
  435. continue;
  436. }
  437. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  438. iter2 = icmap_iter_init(tmp_key);
  439. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  440. res = sscanf(iter_key2, "nodelist.node.%u.ring%u%s", &node_pos, &ringnumber, tmp_key2);
  441. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  442. continue;
  443. }
  444. if (icmap_get_string(iter_key2, &node_addr_str) != CS_OK) {
  445. continue;
  446. }
  447. member_count = totem_config->interfaces[ringnumber].member_count;
  448. res = totemip_parse(&totem_config->interfaces[ringnumber].member_list[member_count],
  449. node_addr_str, totem_config->ip_version);
  450. if (res != -1) {
  451. totem_config->interfaces[ringnumber].member_count++;
  452. }
  453. free(node_addr_str);
  454. }
  455. icmap_iter_finalize(iter2);
  456. }
  457. icmap_iter_finalize(iter);
  458. }
  459. static void config_convert_nodelist_to_interface(struct totem_config *totem_config)
  460. {
  461. icmap_iter_t iter;
  462. const char *iter_key;
  463. int res = 0;
  464. unsigned int node_pos;
  465. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  466. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  467. char *node_addr_str;
  468. unsigned int ringnumber = 0;
  469. struct list_head addrs;
  470. struct list_head *list;
  471. struct totem_ip_if_address *if_addr;
  472. struct totem_ip_address node_addr;
  473. int node_found = 0;
  474. if (totemip_getifaddrs(&addrs) == -1) {
  475. return ;
  476. }
  477. iter = icmap_iter_init("nodelist.node.");
  478. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  479. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  480. if (res != 2) {
  481. continue;
  482. }
  483. if (strcmp(tmp_key, "ring0_addr") != 0) {
  484. continue;
  485. }
  486. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  487. continue ;
  488. }
  489. if (totemip_parse(&node_addr, node_addr_str, totem_config->ip_version) == -1) {
  490. free(node_addr_str);
  491. continue ;
  492. }
  493. free(node_addr_str);
  494. /*
  495. * Try to find node in if_addrs
  496. */
  497. node_found = 0;
  498. for (list = addrs.next; list != &addrs; list = list->next) {
  499. if_addr = list_entry(list, struct totem_ip_if_address, list);
  500. if (totemip_equal(&node_addr, &if_addr->ip_addr)) {
  501. node_found = 1;
  502. break;
  503. }
  504. }
  505. if (node_found) {
  506. break ;
  507. }
  508. }
  509. icmap_iter_finalize(iter);
  510. if (node_found) {
  511. /*
  512. * We found node, so create interface section
  513. */
  514. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  515. iter = icmap_iter_init(tmp_key);
  516. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  517. res = sscanf(iter_key, "nodelist.node.%u.ring%u%s", &node_pos, &ringnumber, tmp_key2);
  518. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  519. continue ;
  520. }
  521. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  522. continue;
  523. }
  524. snprintf(tmp_key2, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.bindnetaddr", ringnumber);
  525. icmap_set_string(tmp_key2, node_addr_str);
  526. free(node_addr_str);
  527. }
  528. icmap_iter_finalize(iter);
  529. }
  530. }
  531. extern int totem_config_read (
  532. struct totem_config *totem_config,
  533. const char **error_string,
  534. uint64_t *warnings)
  535. {
  536. int res = 0;
  537. char *str;
  538. unsigned int ringnumber = 0;
  539. int member_count = 0;
  540. icmap_iter_t iter, member_iter;
  541. const char *iter_key;
  542. const char *member_iter_key;
  543. char ringnumber_key[ICMAP_KEYNAME_MAXLEN];
  544. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  545. uint8_t u8;
  546. uint16_t u16;
  547. char *cluster_name = NULL;
  548. int i;
  549. int local_node_pos;
  550. int nodeid_set;
  551. *warnings = 0;
  552. memset (totem_config, 0, sizeof (struct totem_config));
  553. totem_config->interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  554. if (totem_config->interfaces == 0) {
  555. *error_string = "Out of memory trying to allocate ethernet interface storage area";
  556. return -1;
  557. }
  558. memset (totem_config->interfaces, 0,
  559. sizeof (struct totem_interface) * INTERFACE_MAX);
  560. strcpy (totem_config->rrp_mode, "none");
  561. icmap_get_uint32("totem.version", (uint32_t *)&totem_config->version);
  562. if (totem_get_crypto(totem_config) != 0) {
  563. *error_string = "crypto_cipher requires crypto_hash with value other than none";
  564. return -1;
  565. }
  566. if (icmap_get_string("totem.rrp_mode", &str) == CS_OK) {
  567. if (strlen(str) >= TOTEM_RRP_MODE_BYTES) {
  568. *error_string = "totem.rrp_mode is too long";
  569. free(str);
  570. return -1;
  571. }
  572. strcpy (totem_config->rrp_mode, str);
  573. free(str);
  574. }
  575. icmap_get_uint32("totem.nodeid", &totem_config->node_id);
  576. totem_config->clear_node_high_bit = 0;
  577. if (icmap_get_string("totem.clear_node_high_bit", &str) == CS_OK) {
  578. if (strcmp (str, "yes") == 0) {
  579. totem_config->clear_node_high_bit = 1;
  580. }
  581. free(str);
  582. }
  583. icmap_get_uint32("totem.threads", &totem_config->threads);
  584. icmap_get_uint32("totem.netmtu", &totem_config->net_mtu);
  585. if (icmap_get_string("totem.cluster_name", &cluster_name) != CS_OK) {
  586. cluster_name = NULL;
  587. }
  588. totem_config->ip_version = AF_INET;
  589. if (icmap_get_string("totem.ip_version", &str) == CS_OK) {
  590. if (strcmp(str, "ipv4") == 0) {
  591. totem_config->ip_version = AF_INET;
  592. }
  593. if (strcmp(str, "ipv6") == 0) {
  594. totem_config->ip_version = AF_INET6;
  595. }
  596. free(str);
  597. }
  598. if (icmap_get_string("totem.interface.0.bindnetaddr", &str) != CS_OK) {
  599. /*
  600. * We were not able to find ring 0 bindnet addr. Try to use nodelist informations
  601. */
  602. config_convert_nodelist_to_interface(totem_config);
  603. } else {
  604. free(str);
  605. }
  606. iter = icmap_iter_init("totem.interface.");
  607. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  608. res = sscanf(iter_key, "totem.interface.%[^.].%s", ringnumber_key, tmp_key);
  609. if (res != 2) {
  610. continue;
  611. }
  612. if (strcmp(tmp_key, "bindnetaddr") != 0) {
  613. continue;
  614. }
  615. member_count = 0;
  616. ringnumber = atoi(ringnumber_key);
  617. if (ringnumber >= INTERFACE_MAX) {
  618. free(cluster_name);
  619. snprintf (error_string_response, sizeof(error_string_response),
  620. "parse error in config: interface ring number %u is bigger then allowed maximum %u\n",
  621. ringnumber, INTERFACE_MAX - 1);
  622. *error_string = error_string_response;
  623. return -1;
  624. }
  625. /*
  626. * Get the bind net address
  627. */
  628. if (icmap_get_string(iter_key, &str) == CS_OK) {
  629. res = totemip_parse (&totem_config->interfaces[ringnumber].bindnet, str,
  630. totem_config->interfaces[ringnumber].mcast_addr.family);
  631. free(str);
  632. }
  633. /*
  634. * Get interface multicast address
  635. */
  636. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", ringnumber);
  637. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  638. res = totemip_parse (&totem_config->interfaces[ringnumber].mcast_addr, str, totem_config->ip_version);
  639. free(str);
  640. } else {
  641. /*
  642. * User not specified address -> autogenerate one from cluster_name key
  643. * (if available)
  644. */
  645. res = get_cluster_mcast_addr (cluster_name,
  646. &totem_config->interfaces[ringnumber].bindnet,
  647. ringnumber,
  648. totem_config->ip_version,
  649. &totem_config->interfaces[ringnumber].mcast_addr);
  650. }
  651. totem_config->broadcast_use = 0;
  652. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.broadcast", ringnumber);
  653. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  654. if (strcmp (str, "yes") == 0) {
  655. totem_config->broadcast_use = 1;
  656. totemip_parse (
  657. &totem_config->interfaces[ringnumber].mcast_addr,
  658. "255.255.255.255", totem_config->ip_version);
  659. }
  660. free(str);
  661. }
  662. /*
  663. * Get mcast port
  664. */
  665. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", ringnumber);
  666. if (icmap_get_uint16(tmp_key, &totem_config->interfaces[ringnumber].ip_port) != CS_OK) {
  667. if (totem_config->broadcast_use) {
  668. totem_config->interfaces[ringnumber].ip_port = DEFAULT_PORT + (2 * ringnumber);
  669. } else {
  670. totem_config->interfaces[ringnumber].ip_port = DEFAULT_PORT;
  671. }
  672. }
  673. /*
  674. * Get the TTL
  675. */
  676. totem_config->interfaces[ringnumber].ttl = 1;
  677. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.ttl", ringnumber);
  678. if (icmap_get_uint8(tmp_key, &u8) == CS_OK) {
  679. totem_config->interfaces[ringnumber].ttl = u8;
  680. }
  681. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.member.", ringnumber);
  682. member_iter = icmap_iter_init(tmp_key);
  683. while ((member_iter_key = icmap_iter_next(member_iter, NULL, NULL)) != NULL) {
  684. if (member_count == 0) {
  685. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  686. free(str);
  687. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_IGNORED;
  688. break;
  689. } else {
  690. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_DEPRECATED;
  691. }
  692. }
  693. if (icmap_get_string(member_iter_key, &str) == CS_OK) {
  694. res = totemip_parse (&totem_config->interfaces[ringnumber].member_list[member_count++],
  695. str, totem_config->ip_version);
  696. }
  697. }
  698. icmap_iter_finalize(member_iter);
  699. totem_config->interfaces[ringnumber].member_count = member_count;
  700. totem_config->interface_count++;
  701. }
  702. icmap_iter_finalize(iter);
  703. /*
  704. * Store automatically generated items back to icmap
  705. */
  706. for (i = 0; i < totem_config->interface_count; i++) {
  707. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", i);
  708. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  709. free(str);
  710. } else {
  711. str = (char *)totemip_print(&totem_config->interfaces[i].mcast_addr);
  712. icmap_set_string(tmp_key, str);
  713. }
  714. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", i);
  715. if (icmap_get_uint16(tmp_key, &u16) != CS_OK) {
  716. icmap_set_uint16(tmp_key, totem_config->interfaces[i].ip_port);
  717. }
  718. }
  719. totem_config->transport_number = TOTEM_TRANSPORT_UDP;
  720. if (icmap_get_string("totem.transport", &str) == CS_OK) {
  721. if (strcmp (str, "udpu") == 0) {
  722. totem_config->transport_number = TOTEM_TRANSPORT_UDPU;
  723. }
  724. if (strcmp (str, "iba") == 0) {
  725. totem_config->transport_number = TOTEM_TRANSPORT_RDMA;
  726. }
  727. free(str);
  728. }
  729. free(cluster_name);
  730. /*
  731. * Check existence of nodelist
  732. */
  733. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  734. free(str);
  735. /*
  736. * find local node
  737. */
  738. local_node_pos = find_local_node_in_nodelist(totem_config);
  739. if (local_node_pos != -1) {
  740. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  741. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", local_node_pos);
  742. nodeid_set = (totem_config->node_id != 0);
  743. if (icmap_get_uint32(tmp_key, &totem_config->node_id) == CS_OK && nodeid_set) {
  744. *warnings |= TOTEM_CONFIG_WARNING_TOTEM_NODEID_IGNORED;
  745. }
  746. /*
  747. * Make localnode ring0_addr read only, so we can be sure that local
  748. * node never changes. If rebinding to other IP would be in future
  749. * supported, this must be changed and handled properly!
  750. */
  751. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", local_node_pos);
  752. icmap_set_ro_access(tmp_key, 0, 1);
  753. icmap_set_ro_access("nodelist.local_node_pos", 0, 1);
  754. }
  755. put_nodelist_members_to_config(totem_config);
  756. }
  757. /*
  758. * Get things that might change in the future (and can depend on totem_config->interfaces);
  759. */
  760. totem_volatile_config_read(totem_config, NULL);
  761. add_totem_config_notification(totem_config);
  762. return 0;
  763. }
  764. int totem_config_validate (
  765. struct totem_config *totem_config,
  766. const char **error_string)
  767. {
  768. static char local_error_reason[512];
  769. char parse_error[512];
  770. const char *error_reason = local_error_reason;
  771. int i;
  772. unsigned int interface_max = INTERFACE_MAX;
  773. if (totem_config->interface_count == 0) {
  774. error_reason = "No interfaces defined";
  775. goto parse_error;
  776. }
  777. for (i = 0; i < totem_config->interface_count; i++) {
  778. /*
  779. * Some error checking of parsed data to make sure its valid
  780. */
  781. struct totem_ip_address null_addr;
  782. memset (&null_addr, 0, sizeof (struct totem_ip_address));
  783. if ((totem_config->transport_number == 0) &&
  784. memcmp (&totem_config->interfaces[i].mcast_addr, &null_addr,
  785. sizeof (struct totem_ip_address)) == 0) {
  786. error_reason = "No multicast address specified";
  787. goto parse_error;
  788. }
  789. if (totem_config->interfaces[i].ip_port == 0) {
  790. error_reason = "No multicast port specified";
  791. goto parse_error;
  792. }
  793. if (totem_config->interfaces[i].ttl > 255) {
  794. error_reason = "Invalid TTL (should be 0..255)";
  795. goto parse_error;
  796. }
  797. if (totem_config->transport_number != TOTEM_TRANSPORT_UDP &&
  798. totem_config->interfaces[i].ttl != 1) {
  799. error_reason = "Can only set ttl on multicast transport types";
  800. goto parse_error;
  801. }
  802. if (totem_config->interfaces[i].mcast_addr.family == AF_INET6 &&
  803. totem_config->node_id == 0) {
  804. error_reason = "An IPV6 network requires that a node ID be specified.";
  805. goto parse_error;
  806. }
  807. if (totem_config->broadcast_use == 0 && totem_config->transport_number == 0) {
  808. if (totem_config->interfaces[i].mcast_addr.family != totem_config->interfaces[i].bindnet.family) {
  809. error_reason = "Multicast address family does not match bind address family";
  810. goto parse_error;
  811. }
  812. if (totem_config->interfaces[i].mcast_addr.family != totem_config->interfaces[i].bindnet.family) {
  813. error_reason = "Not all bind address belong to the same IP family";
  814. goto parse_error;
  815. }
  816. if (totemip_is_mcast (&totem_config->interfaces[i].mcast_addr) != 0) {
  817. error_reason = "mcastaddr is not a correct multicast address.";
  818. goto parse_error;
  819. }
  820. }
  821. }
  822. if (totem_config->version != 2) {
  823. error_reason = "This totem parser can only parse version 2 configurations.";
  824. goto parse_error;
  825. }
  826. if (totem_volatile_config_validate(totem_config, error_string) == -1) {
  827. return (-1);
  828. }
  829. /*
  830. * RRP values validation
  831. */
  832. if (strcmp (totem_config->rrp_mode, "none") &&
  833. strcmp (totem_config->rrp_mode, "active") &&
  834. strcmp (totem_config->rrp_mode, "passive")) {
  835. snprintf (local_error_reason, sizeof(local_error_reason),
  836. "The RRP mode \"%s\" specified is invalid. It must be none, active, or passive.\n", totem_config->rrp_mode);
  837. goto parse_error;
  838. }
  839. if (strcmp (totem_config->rrp_mode, "none") == 0) {
  840. interface_max = 1;
  841. }
  842. if (interface_max < totem_config->interface_count) {
  843. snprintf (parse_error, sizeof(parse_error),
  844. "%d is too many configured interfaces for the rrp_mode setting %s.",
  845. totem_config->interface_count,
  846. totem_config->rrp_mode);
  847. error_reason = parse_error;
  848. goto parse_error;
  849. }
  850. if (totem_config->net_mtu == 0) {
  851. totem_config->net_mtu = 1500;
  852. }
  853. return 0;
  854. parse_error:
  855. snprintf (error_string_response, sizeof(error_string_response),
  856. "parse error in config: %s\n", error_reason);
  857. *error_string = error_string_response;
  858. return (-1);
  859. }
  860. static int read_keyfile (
  861. const char *key_location,
  862. struct totem_config *totem_config,
  863. const char **error_string)
  864. {
  865. int fd;
  866. int res;
  867. ssize_t expected_key_len = sizeof (totem_config->private_key);
  868. int saved_errno;
  869. char error_str[100];
  870. const char *error_ptr;
  871. fd = open (key_location, O_RDONLY);
  872. if (fd == -1) {
  873. error_ptr = qb_strerror_r(errno, error_str, sizeof(error_str));
  874. snprintf (error_string_response, sizeof(error_string_response),
  875. "Could not open %s: %s\n",
  876. key_location, error_ptr);
  877. goto parse_error;
  878. }
  879. res = read (fd, totem_config->private_key, expected_key_len);
  880. saved_errno = errno;
  881. close (fd);
  882. if (res == -1) {
  883. error_ptr = qb_strerror_r (saved_errno, error_str, sizeof(error_str));
  884. snprintf (error_string_response, sizeof(error_string_response),
  885. "Could not read %s: %s\n",
  886. key_location, error_ptr);
  887. goto parse_error;
  888. }
  889. totem_config->private_key_len = expected_key_len;
  890. if (res != expected_key_len) {
  891. snprintf (error_string_response, sizeof(error_string_response),
  892. "Could only read %d bits of 1024 bits from %s.\n",
  893. res * 8, key_location);
  894. goto parse_error;
  895. }
  896. return 0;
  897. parse_error:
  898. *error_string = error_string_response;
  899. return (-1);
  900. }
  901. int totem_config_keyread (
  902. struct totem_config *totem_config,
  903. const char **error_string)
  904. {
  905. int got_key = 0;
  906. char *key_location = NULL;
  907. int res;
  908. size_t key_len;
  909. memset (totem_config->private_key, 0, 128);
  910. totem_config->private_key_len = 128;
  911. if (strcmp(totem_config->crypto_cipher_type, "none") == 0 &&
  912. strcmp(totem_config->crypto_hash_type, "none") == 0) {
  913. return (0);
  914. }
  915. /* cmap may store the location of the key file */
  916. if (icmap_get_string("totem.keyfile", &key_location) == CS_OK) {
  917. res = read_keyfile(key_location, totem_config, error_string);
  918. free(key_location);
  919. if (res) {
  920. goto key_error;
  921. }
  922. got_key = 1;
  923. } else { /* Or the key itself may be in the cmap */
  924. if (icmap_get("totem.key", NULL, &key_len, NULL) == CS_OK) {
  925. if (key_len > sizeof (totem_config->private_key)) {
  926. sprintf(error_string_response, "key is too long");
  927. goto key_error;
  928. }
  929. if (icmap_get("totem.key", totem_config->private_key, &key_len, NULL) == CS_OK) {
  930. totem_config->private_key_len = key_len;
  931. got_key = 1;
  932. } else {
  933. sprintf(error_string_response, "can't store private key");
  934. goto key_error;
  935. }
  936. }
  937. }
  938. /* In desperation we read the default filename */
  939. if (!got_key) {
  940. const char *filename = getenv("COROSYNC_TOTEM_AUTHKEY_FILE");
  941. if (!filename)
  942. filename = COROSYSCONFDIR "/authkey";
  943. res = read_keyfile(filename, totem_config, error_string);
  944. if (res)
  945. goto key_error;
  946. }
  947. return (0);
  948. key_error:
  949. *error_string = error_string_response;
  950. return (-1);
  951. }
  952. static void totem_change_notify(
  953. int32_t event,
  954. const char *key_name,
  955. struct icmap_notify_value new_val,
  956. struct icmap_notify_value old_val,
  957. void *user_data)
  958. {
  959. uint32_t *param;
  960. uint8_t reloading;
  961. const char *deleted_key;
  962. /*
  963. * If a full reload is in progress then don't do anything until it's done and
  964. * can reconfigure it all atomically
  965. */
  966. if (icmap_get_uint8("config.reload_in_progress", &reloading) == CS_OK && reloading)
  967. return;
  968. param = totem_get_param_by_name((struct totem_config *)user_data, key_name);
  969. if (!param)
  970. return;
  971. /*
  972. * Values other then UINT32 are not supported, or needed (yet)
  973. */
  974. switch (event) {
  975. case ICMAP_TRACK_DELETE:
  976. deleted_key = key_name;
  977. break;
  978. case ICMAP_TRACK_ADD:
  979. case ICMAP_TRACK_MODIFY:
  980. deleted_key = NULL;
  981. break;
  982. default:
  983. break;
  984. }
  985. totem_volatile_config_read ((struct totem_config *)user_data, deleted_key);
  986. }
  987. static void totem_reload_notify(
  988. int32_t event,
  989. const char *key_name,
  990. struct icmap_notify_value new_val,
  991. struct icmap_notify_value old_val,
  992. void *user_data)
  993. {
  994. struct totem_config *totem_config = (struct totem_config *)user_data;
  995. uint32_t local_node_pos;
  996. /* Reload has completed */
  997. if (*(uint8_t *)new_val.data == 0) {
  998. put_nodelist_members_to_config (totem_config);
  999. totem_volatile_config_read (totem_config, NULL);
  1000. /* Reinstate the local_node_pos */
  1001. local_node_pos = find_local_node_in_nodelist(totem_config);
  1002. if (local_node_pos != -1) {
  1003. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  1004. }
  1005. }
  1006. }
  1007. static void add_totem_config_notification(struct totem_config *totem_config)
  1008. {
  1009. icmap_track_t icmap_track;
  1010. icmap_track_add("totem.",
  1011. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1012. totem_change_notify,
  1013. totem_config,
  1014. &icmap_track);
  1015. icmap_track_add("config.reload_in_progress",
  1016. ICMAP_TRACK_ADD | ICMAP_TRACK_MODIFY,
  1017. totem_reload_notify,
  1018. totem_config,
  1019. &icmap_track);
  1020. }