totemconfig.c 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535
  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 TOKEN_COEFFICIENT 650
  61. #define JOIN_TIMEOUT 50
  62. #define MERGE_TIMEOUT 200
  63. #define DOWNCHECK_TIMEOUT 1000
  64. #define FAIL_TO_RECV_CONST 2500
  65. #define SEQNO_UNCHANGED_CONST 30
  66. #define MINIMUM_TIMEOUT (int)(1000/HZ)*3
  67. #define MAX_NETWORK_DELAY 50
  68. #define WINDOW_SIZE 50
  69. #define MAX_MESSAGES 17
  70. #define MISS_COUNT_CONST 5
  71. #define RRP_PROBLEM_COUNT_TIMEOUT 2000
  72. #define RRP_PROBLEM_COUNT_THRESHOLD_DEFAULT 10
  73. #define RRP_PROBLEM_COUNT_THRESHOLD_MIN 2
  74. #define RRP_AUTORECOVERY_CHECK_TIMEOUT 1000
  75. #define DEFAULT_PORT 5405
  76. static char error_string_response[512];
  77. static void add_totem_config_notification(struct totem_config *totem_config);
  78. /* All the volatile parameters are uint32s, luckily */
  79. static uint32_t *totem_get_param_by_name(struct totem_config *totem_config, const char *param_name)
  80. {
  81. if (strcmp(param_name, "totem.token") == 0)
  82. return &totem_config->token_timeout;
  83. if (strcmp(param_name, "totem.token_retransmit") == 0)
  84. return &totem_config->token_retransmit_timeout;
  85. if (strcmp(param_name, "totem.hold") == 0)
  86. return &totem_config->token_hold_timeout;
  87. if (strcmp(param_name, "totem.token_retransmits_before_loss_const") == 0)
  88. return &totem_config->token_retransmits_before_loss_const;
  89. if (strcmp(param_name, "totem.join") == 0)
  90. return &totem_config->join_timeout;
  91. if (strcmp(param_name, "totem.send_join") == 0)
  92. return &totem_config->send_join_timeout;
  93. if (strcmp(param_name, "totem.consensus") == 0)
  94. return &totem_config->consensus_timeout;
  95. if (strcmp(param_name, "totem.merge") == 0)
  96. return &totem_config->merge_timeout;
  97. if (strcmp(param_name, "totem.downcheck") == 0)
  98. return &totem_config->downcheck_timeout;
  99. if (strcmp(param_name, "totem.fail_recv_const") == 0)
  100. return &totem_config->fail_to_recv_const;
  101. if (strcmp(param_name, "totem.seqno_unchanged_const") == 0)
  102. return &totem_config->seqno_unchanged_const;
  103. if (strcmp(param_name, "totem.rrp_token_expired_timeout") == 0)
  104. return &totem_config->rrp_token_expired_timeout;
  105. if (strcmp(param_name, "totem.rrp_problem_count_timeout") == 0)
  106. return &totem_config->rrp_problem_count_timeout;
  107. if (strcmp(param_name, "totem.rrp_problem_count_threshold") == 0)
  108. return &totem_config->rrp_problem_count_threshold;
  109. if (strcmp(param_name, "totem.rrp_problem_count_mcast_threshold") == 0)
  110. return &totem_config->rrp_problem_count_mcast_threshold;
  111. if (strcmp(param_name, "totem.rrp_autorecovery_check_timeout") == 0)
  112. return &totem_config->rrp_autorecovery_check_timeout;
  113. if (strcmp(param_name, "totem.heartbeat_failures_allowed") == 0)
  114. return &totem_config->heartbeat_failures_allowed;
  115. if (strcmp(param_name, "totem.max_network_delay") == 0)
  116. return &totem_config->max_network_delay;
  117. if (strcmp(param_name, "totem.window_size") == 0)
  118. return &totem_config->window_size;
  119. if (strcmp(param_name, "totem.max_messages") == 0)
  120. return &totem_config->max_messages;
  121. if (strcmp(param_name, "totem.miss_count_const") == 0)
  122. return &totem_config->miss_count_const;
  123. return NULL;
  124. }
  125. /*
  126. * Read key_name from icmap. If key is not found or key_name == delete_key or if allow_zero is false
  127. * and readed value is zero, default value is used and stored into totem_config.
  128. */
  129. static void totem_volatile_config_set_value (struct totem_config *totem_config,
  130. const char *key_name, const char *deleted_key, unsigned int default_value,
  131. int allow_zero_value)
  132. {
  133. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  134. if (icmap_get_uint32(key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  135. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  136. (!allow_zero_value && *totem_get_param_by_name(totem_config, key_name) == 0)) {
  137. *totem_get_param_by_name(totem_config, key_name) = default_value;
  138. }
  139. /*
  140. * Store totem_config value to cmap runtime section
  141. */
  142. strcpy(runtime_key_name, "runtime.config.");
  143. strcat(runtime_key_name, key_name);
  144. icmap_set_uint32(runtime_key_name, *totem_get_param_by_name(totem_config, key_name));
  145. }
  146. /*
  147. * Read and validate config values from cmap and store them into totem_config. If key doesn't exists,
  148. * default value is stored. deleted_key is name of key beeing processed by delete operation
  149. * from cmap. It is considered as non existing even if it can be read. Can be NULL.
  150. */
  151. static void totem_volatile_config_read (struct totem_config *totem_config, const char *deleted_key)
  152. {
  153. uint32_t u32;
  154. totem_volatile_config_set_value(totem_config, "totem.token_retransmits_before_loss_const", deleted_key,
  155. TOKEN_RETRANSMITS_BEFORE_LOSS_CONST, 0);
  156. totem_volatile_config_set_value(totem_config, "totem.token", deleted_key, TOKEN_TIMEOUT, 0);
  157. if (totem_config->interface_count > 0 && totem_config->interfaces[0].member_count > 2) {
  158. u32 = TOKEN_COEFFICIENT;
  159. icmap_get_uint32("totem.token_coefficient", &u32);
  160. totem_config->token_timeout += (totem_config->interfaces[0].member_count - 2) * u32;
  161. /*
  162. * Store totem_config value to cmap runtime section
  163. */
  164. icmap_set_uint32("runtime.config.totem.token", totem_config->token_timeout);
  165. }
  166. totem_volatile_config_set_value(totem_config, "totem.max_network_delay", deleted_key, MAX_NETWORK_DELAY, 0);
  167. totem_volatile_config_set_value(totem_config, "totem.window_size", deleted_key, WINDOW_SIZE, 0);
  168. totem_volatile_config_set_value(totem_config, "totem.max_messages", deleted_key, MAX_MESSAGES, 0);
  169. totem_volatile_config_set_value(totem_config, "totem.miss_count_const", deleted_key, MISS_COUNT_CONST, 0);
  170. totem_volatile_config_set_value(totem_config, "totem.token_retransmit", deleted_key,
  171. (int)(totem_config->token_timeout / (totem_config->token_retransmits_before_loss_const + 0.2)), 0);
  172. totem_volatile_config_set_value(totem_config, "totem.hold", deleted_key,
  173. (int)(totem_config->token_retransmit_timeout * 0.8 - (1000/HZ)), 0);
  174. totem_volatile_config_set_value(totem_config, "totem.join", deleted_key, JOIN_TIMEOUT, 0);
  175. totem_volatile_config_set_value(totem_config, "totem.consensus", deleted_key,
  176. (int)(float)(1.2 * totem_config->token_timeout), 0);
  177. totem_volatile_config_set_value(totem_config, "totem.merge", deleted_key, MERGE_TIMEOUT, 0);
  178. totem_volatile_config_set_value(totem_config, "totem.downcheck", deleted_key, DOWNCHECK_TIMEOUT, 0);
  179. totem_volatile_config_set_value(totem_config, "totem.fail_recv_const", deleted_key, FAIL_TO_RECV_CONST, 0);
  180. totem_volatile_config_set_value(totem_config, "totem.seqno_unchanged_const", deleted_key,
  181. SEQNO_UNCHANGED_CONST, 0);
  182. totem_volatile_config_set_value(totem_config, "totem.send_join", deleted_key, 0, 1);
  183. totem_volatile_config_set_value(totem_config, "totem.rrp_problem_count_timeout", deleted_key,
  184. RRP_PROBLEM_COUNT_TIMEOUT, 0);
  185. totem_volatile_config_set_value(totem_config, "totem.rrp_problem_count_threshold", deleted_key,
  186. RRP_PROBLEM_COUNT_THRESHOLD_DEFAULT, 0);
  187. totem_volatile_config_set_value(totem_config, "totem.rrp_problem_count_mcast_threshold", deleted_key,
  188. totem_config->rrp_problem_count_threshold * 10, 0);
  189. totem_volatile_config_set_value(totem_config, "totem.rrp_token_expired_timeout", deleted_key,
  190. totem_config->token_retransmit_timeout, 0);
  191. totem_volatile_config_set_value(totem_config, "totem.rrp_autorecovery_check_timeout", deleted_key,
  192. RRP_AUTORECOVERY_CHECK_TIMEOUT, 0);
  193. totem_volatile_config_set_value(totem_config, "totem.heartbeat_failures_allowed", deleted_key, 0, 1);
  194. }
  195. static int totem_volatile_config_validate (
  196. struct totem_config *totem_config,
  197. const char **error_string)
  198. {
  199. static char local_error_reason[512];
  200. const char *error_reason = local_error_reason;
  201. if (totem_config->max_network_delay < MINIMUM_TIMEOUT) {
  202. snprintf (local_error_reason, sizeof(local_error_reason),
  203. "The max_network_delay parameter (%d ms) may not be less than (%d ms).",
  204. totem_config->max_network_delay, MINIMUM_TIMEOUT);
  205. goto parse_error;
  206. }
  207. if (totem_config->token_timeout < MINIMUM_TIMEOUT) {
  208. snprintf (local_error_reason, sizeof(local_error_reason),
  209. "The token timeout parameter (%d ms) may not be less than (%d ms).",
  210. totem_config->token_timeout, MINIMUM_TIMEOUT);
  211. goto parse_error;
  212. }
  213. if (totem_config->token_retransmit_timeout < MINIMUM_TIMEOUT) {
  214. snprintf (local_error_reason, sizeof(local_error_reason),
  215. "The token retransmit timeout parameter (%d ms) may not be less than (%d ms).",
  216. totem_config->token_retransmit_timeout, MINIMUM_TIMEOUT);
  217. goto parse_error;
  218. }
  219. if (totem_config->token_hold_timeout < MINIMUM_TIMEOUT) {
  220. snprintf (local_error_reason, sizeof(local_error_reason),
  221. "The token hold timeout parameter (%d ms) may not be less than (%d ms).",
  222. totem_config->token_hold_timeout, MINIMUM_TIMEOUT);
  223. goto parse_error;
  224. }
  225. if (totem_config->join_timeout < MINIMUM_TIMEOUT) {
  226. snprintf (local_error_reason, sizeof(local_error_reason),
  227. "The join timeout parameter (%d ms) may not be less than (%d ms).",
  228. totem_config->join_timeout, MINIMUM_TIMEOUT);
  229. goto parse_error;
  230. }
  231. if (totem_config->consensus_timeout < MINIMUM_TIMEOUT) {
  232. snprintf (local_error_reason, sizeof(local_error_reason),
  233. "The consensus timeout parameter (%d ms) may not be less than (%d ms).",
  234. totem_config->consensus_timeout, MINIMUM_TIMEOUT);
  235. goto parse_error;
  236. }
  237. if (totem_config->consensus_timeout < totem_config->join_timeout) {
  238. snprintf (local_error_reason, sizeof(local_error_reason),
  239. "The consensus timeout parameter (%d ms) may not be less than join timeout (%d ms).",
  240. totem_config->consensus_timeout, totem_config->join_timeout);
  241. goto parse_error;
  242. }
  243. if (totem_config->merge_timeout < MINIMUM_TIMEOUT) {
  244. snprintf (local_error_reason, sizeof(local_error_reason),
  245. "The merge timeout parameter (%d ms) may not be less than (%d ms).",
  246. totem_config->merge_timeout, MINIMUM_TIMEOUT);
  247. goto parse_error;
  248. }
  249. if (totem_config->downcheck_timeout < MINIMUM_TIMEOUT) {
  250. snprintf (local_error_reason, sizeof(local_error_reason),
  251. "The downcheck timeout parameter (%d ms) may not be less than (%d ms).",
  252. totem_config->downcheck_timeout, MINIMUM_TIMEOUT);
  253. goto parse_error;
  254. }
  255. if (totem_config->rrp_problem_count_timeout < MINIMUM_TIMEOUT) {
  256. snprintf (local_error_reason, sizeof(local_error_reason),
  257. "The RRP problem count timeout parameter (%d ms) may not be less than (%d ms).",
  258. totem_config->rrp_problem_count_timeout, MINIMUM_TIMEOUT);
  259. goto parse_error;
  260. }
  261. if (totem_config->rrp_problem_count_threshold < RRP_PROBLEM_COUNT_THRESHOLD_MIN) {
  262. snprintf (local_error_reason, sizeof(local_error_reason),
  263. "The RRP problem count threshold (%d problem count) may not be less than (%d problem count).",
  264. totem_config->rrp_problem_count_threshold, RRP_PROBLEM_COUNT_THRESHOLD_MIN);
  265. goto parse_error;
  266. }
  267. if (totem_config->rrp_problem_count_mcast_threshold < RRP_PROBLEM_COUNT_THRESHOLD_MIN) {
  268. snprintf (local_error_reason, sizeof(local_error_reason),
  269. "The RRP multicast problem count threshold (%d problem count) may not be less than (%d problem count).",
  270. totem_config->rrp_problem_count_mcast_threshold, RRP_PROBLEM_COUNT_THRESHOLD_MIN);
  271. goto parse_error;
  272. }
  273. if (totem_config->rrp_token_expired_timeout < MINIMUM_TIMEOUT) {
  274. snprintf (local_error_reason, sizeof(local_error_reason),
  275. "The RRP token expired timeout parameter (%d ms) may not be less than (%d ms).",
  276. totem_config->rrp_token_expired_timeout, MINIMUM_TIMEOUT);
  277. goto parse_error;
  278. }
  279. return 0;
  280. parse_error:
  281. snprintf (error_string_response, sizeof(error_string_response),
  282. "parse error in config: %s\n", error_reason);
  283. *error_string = error_string_response;
  284. return (-1);
  285. }
  286. static int totem_get_crypto(struct totem_config *totem_config)
  287. {
  288. char *str;
  289. const char *tmp_cipher;
  290. const char *tmp_hash;
  291. tmp_hash = "sha1";
  292. tmp_cipher = "aes256";
  293. if (icmap_get_string("totem.secauth", &str) == CS_OK) {
  294. if (strcmp (str, "off") == 0) {
  295. tmp_hash = "none";
  296. tmp_cipher = "none";
  297. }
  298. free(str);
  299. }
  300. if (icmap_get_string("totem.crypto_cipher", &str) == CS_OK) {
  301. if (strcmp(str, "none") == 0) {
  302. tmp_cipher = "none";
  303. }
  304. if (strcmp(str, "aes256") == 0) {
  305. tmp_cipher = "aes256";
  306. }
  307. if (strcmp(str, "aes192") == 0) {
  308. tmp_cipher = "aes192";
  309. }
  310. if (strcmp(str, "aes128") == 0) {
  311. tmp_cipher = "aes128";
  312. }
  313. if (strcmp(str, "3des") == 0) {
  314. tmp_cipher = "3des";
  315. }
  316. free(str);
  317. }
  318. if (icmap_get_string("totem.crypto_hash", &str) == CS_OK) {
  319. if (strcmp(str, "none") == 0) {
  320. tmp_hash = "none";
  321. }
  322. if (strcmp(str, "md5") == 0) {
  323. tmp_hash = "md5";
  324. }
  325. if (strcmp(str, "sha1") == 0) {
  326. tmp_hash = "sha1";
  327. }
  328. if (strcmp(str, "sha256") == 0) {
  329. tmp_hash = "sha256";
  330. }
  331. if (strcmp(str, "sha384") == 0) {
  332. tmp_hash = "sha384";
  333. }
  334. if (strcmp(str, "sha512") == 0) {
  335. tmp_hash = "sha512";
  336. }
  337. free(str);
  338. }
  339. if ((strcmp(tmp_cipher, "none") != 0) &&
  340. (strcmp(tmp_hash, "none") == 0)) {
  341. return -1;
  342. }
  343. free(totem_config->crypto_cipher_type);
  344. free(totem_config->crypto_hash_type);
  345. totem_config->crypto_cipher_type = strdup(tmp_cipher);
  346. totem_config->crypto_hash_type = strdup(tmp_hash);
  347. return 0;
  348. }
  349. static int totem_config_get_ip_version(void)
  350. {
  351. int res;
  352. char *str;
  353. res = AF_INET;
  354. if (icmap_get_string("totem.ip_version", &str) == CS_OK) {
  355. if (strcmp(str, "ipv4") == 0) {
  356. res = AF_INET;
  357. }
  358. if (strcmp(str, "ipv6") == 0) {
  359. res = AF_INET6;
  360. }
  361. free(str);
  362. }
  363. return (res);
  364. }
  365. static uint16_t generate_cluster_id (const char *cluster_name)
  366. {
  367. int i;
  368. int value = 0;
  369. for (i = 0; i < strlen(cluster_name); i++) {
  370. value <<= 1;
  371. value += cluster_name[i];
  372. }
  373. return (value & 0xFFFF);
  374. }
  375. static int get_cluster_mcast_addr (
  376. const char *cluster_name,
  377. const struct totem_ip_address *bindnet,
  378. unsigned int ringnumber,
  379. int ip_version,
  380. struct totem_ip_address *res)
  381. {
  382. uint16_t clusterid;
  383. char addr[INET6_ADDRSTRLEN + 1];
  384. int err;
  385. if (cluster_name == NULL) {
  386. return (-1);
  387. }
  388. clusterid = generate_cluster_id(cluster_name) + ringnumber;
  389. memset (res, 0, sizeof(*res));
  390. switch (bindnet->family) {
  391. case AF_INET:
  392. snprintf(addr, sizeof(addr), "239.192.%d.%d", clusterid >> 8, clusterid % 0xFF);
  393. break;
  394. case AF_INET6:
  395. snprintf(addr, sizeof(addr), "ff15::%x", clusterid);
  396. break;
  397. default:
  398. /*
  399. * Unknown family
  400. */
  401. return (-1);
  402. }
  403. err = totemip_parse (res, addr, ip_version);
  404. return (err);
  405. }
  406. static int find_local_node_in_nodelist(struct totem_config *totem_config)
  407. {
  408. icmap_iter_t iter;
  409. const char *iter_key;
  410. int res = 0;
  411. unsigned int node_pos;
  412. int local_node_pos = -1;
  413. struct totem_ip_address bind_addr;
  414. int interface_up, interface_num;
  415. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  416. char *node_addr_str;
  417. struct totem_ip_address node_addr;
  418. res = totemip_iface_check(&totem_config->interfaces[0].bindnet,
  419. &bind_addr, &interface_up, &interface_num,
  420. totem_config->clear_node_high_bit);
  421. if (res == -1) {
  422. return (-1);
  423. }
  424. iter = icmap_iter_init("nodelist.node.");
  425. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  426. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  427. if (res != 2) {
  428. continue;
  429. }
  430. if (strcmp(tmp_key, "ring0_addr") != 0) {
  431. continue;
  432. }
  433. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  434. if (icmap_get_string(tmp_key, &node_addr_str) != CS_OK) {
  435. continue;
  436. }
  437. res = totemip_parse (&node_addr, node_addr_str, totem_config->ip_version);
  438. free(node_addr_str);
  439. if (res == -1) {
  440. continue ;
  441. }
  442. if (totemip_equal(&bind_addr, &node_addr)) {
  443. local_node_pos = node_pos;
  444. }
  445. }
  446. icmap_iter_finalize(iter);
  447. return (local_node_pos);
  448. }
  449. /*
  450. * Compute difference between two set of totem interface arrays. set1 and set2
  451. * are changed so for same ring, ip existing in both set1 and set2 are cleared
  452. * (set to 0), and ips which are only in set1 or set2 remains untouched.
  453. * totempg_node_add/remove is called.
  454. */
  455. static void compute_interfaces_diff(int interface_count,
  456. struct totem_interface *set1,
  457. struct totem_interface *set2)
  458. {
  459. int ring_no, set1_pos, set2_pos;
  460. struct totem_ip_address empty_ip_address;
  461. memset(&empty_ip_address, 0, sizeof(empty_ip_address));
  462. for (ring_no = 0; ring_no < interface_count; ring_no++) {
  463. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  464. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  465. /*
  466. * For current ring_no remove all set1 items existing
  467. * in set2
  468. */
  469. if (memcmp(&set1[ring_no].member_list[set1_pos],
  470. &set2[ring_no].member_list[set2_pos],
  471. sizeof(struct totem_ip_address)) == 0) {
  472. memset(&set1[ring_no].member_list[set1_pos], 0,
  473. sizeof(struct totem_ip_address));
  474. memset(&set2[ring_no].member_list[set2_pos], 0,
  475. sizeof(struct totem_ip_address));
  476. }
  477. }
  478. }
  479. }
  480. for (ring_no = 0; ring_no < interface_count; ring_no++) {
  481. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  482. /*
  483. * All items which remained in set1 doesn't exists in set2 any longer so
  484. * node has to be removed.
  485. */
  486. if (memcmp(&set1[ring_no].member_list[set1_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  487. log_printf(LOGSYS_LEVEL_DEBUG,
  488. "removing dynamic member %s for ring %u",
  489. totemip_print(&set1[ring_no].member_list[set1_pos]),
  490. ring_no);
  491. totempg_member_remove(&set1[ring_no].member_list[set1_pos], ring_no);
  492. }
  493. }
  494. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  495. /*
  496. * All items which remained in set2 doesn't existed in set1 so this is no node
  497. * and has to be added.
  498. */
  499. if (memcmp(&set2[ring_no].member_list[set2_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  500. log_printf(LOGSYS_LEVEL_DEBUG,
  501. "adding dynamic member %s for ring %u",
  502. totemip_print(&set2[ring_no].member_list[set2_pos]),
  503. ring_no);
  504. totempg_member_add(&set2[ring_no].member_list[set2_pos], ring_no);
  505. }
  506. }
  507. }
  508. }
  509. static void put_nodelist_members_to_config(struct totem_config *totem_config, int reload)
  510. {
  511. icmap_iter_t iter, iter2;
  512. const char *iter_key, *iter_key2;
  513. int res = 0;
  514. unsigned int node_pos;
  515. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  516. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  517. char *node_addr_str;
  518. int member_count;
  519. unsigned int ringnumber = 0;
  520. int i, j;
  521. struct totem_interface *orig_interfaces = NULL;
  522. struct totem_interface *new_interfaces = NULL;
  523. if (reload) {
  524. /*
  525. * We need to compute diff only for reload. Also for initial configuration
  526. * not all totem structures are initialized so corosync will crash during
  527. * member_add/remove
  528. */
  529. orig_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  530. assert(orig_interfaces != NULL);
  531. new_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  532. assert(new_interfaces != NULL);
  533. memcpy(orig_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  534. }
  535. /* Clear out nodelist so we can put the new one in if needed */
  536. for (i = 0; i < totem_config->interface_count; i++) {
  537. for (j = 0; j < PROCESSOR_COUNT_MAX; j++) {
  538. memset(&totem_config->interfaces[i].member_list[j], 0, sizeof(struct totem_ip_address));
  539. }
  540. totem_config->interfaces[i].member_count = 0;
  541. }
  542. iter = icmap_iter_init("nodelist.node.");
  543. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  544. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  545. if (res != 2) {
  546. continue;
  547. }
  548. if (strcmp(tmp_key, "ring0_addr") != 0) {
  549. continue;
  550. }
  551. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  552. iter2 = icmap_iter_init(tmp_key);
  553. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  554. res = sscanf(iter_key2, "nodelist.node.%u.ring%u%s", &node_pos, &ringnumber, tmp_key2);
  555. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  556. continue;
  557. }
  558. if (icmap_get_string(iter_key2, &node_addr_str) != CS_OK) {
  559. continue;
  560. }
  561. member_count = totem_config->interfaces[ringnumber].member_count;
  562. res = totemip_parse(&totem_config->interfaces[ringnumber].member_list[member_count],
  563. node_addr_str, totem_config->ip_version);
  564. if (res != -1) {
  565. totem_config->interfaces[ringnumber].member_count++;
  566. }
  567. free(node_addr_str);
  568. }
  569. icmap_iter_finalize(iter2);
  570. }
  571. icmap_iter_finalize(iter);
  572. if (reload) {
  573. memcpy(new_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  574. compute_interfaces_diff(totem_config->interface_count, orig_interfaces, new_interfaces);
  575. free(new_interfaces);
  576. free(orig_interfaces);
  577. }
  578. }
  579. static void nodelist_dynamic_notify(
  580. int32_t event,
  581. const char *key_name,
  582. struct icmap_notify_value new_val,
  583. struct icmap_notify_value old_val,
  584. void *user_data)
  585. {
  586. int res;
  587. unsigned int ring_no;
  588. unsigned int member_no;
  589. char tmp_str[ICMAP_KEYNAME_MAXLEN];
  590. uint8_t reloading;
  591. struct totem_config *totem_config = (struct totem_config *)user_data;
  592. /*
  593. * If a full reload is in progress then don't do anything until it's done and
  594. * can reconfigure it all atomically
  595. */
  596. if (icmap_get_uint8("config.totemconfig_reload_in_progress", &reloading) == CS_OK && reloading) {
  597. return ;
  598. }
  599. res = sscanf(key_name, "nodelist.node.%u.ring%u%s", &member_no, &ring_no, tmp_str);
  600. if (res != 3)
  601. return ;
  602. if (strcmp(tmp_str, "_addr") != 0) {
  603. return;
  604. }
  605. put_nodelist_members_to_config(totem_config, 1);
  606. }
  607. /*
  608. * Tries to find node (node_pos) in config nodelist which address matches any
  609. * local interface. Address can be stored in ring0_addr or if ipaddr_key_prefix is not NULL
  610. * key with prefix ipaddr_key is used (there can be multiuple of them)
  611. * This function differs * from find_local_node_in_nodelist because it doesn't need bindnetaddr,
  612. * but doesn't work when bind addr is network address (so IP must be exact
  613. * match).
  614. *
  615. * Returns 1 on success (address was found, node_pos is then correctly set) or 0 on failure.
  616. */
  617. int totem_config_find_local_addr_in_nodelist(const char *ipaddr_key_prefix, unsigned int *node_pos)
  618. {
  619. struct list_head addrs;
  620. struct totem_ip_if_address *if_addr;
  621. icmap_iter_t iter, iter2;
  622. const char *iter_key, *iter_key2;
  623. struct list_head *list;
  624. const char *ipaddr_key;
  625. int ip_version;
  626. struct totem_ip_address node_addr;
  627. char *node_addr_str;
  628. int node_found = 0;
  629. int res = 0;
  630. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  631. if (totemip_getifaddrs(&addrs) == -1) {
  632. return 0;
  633. }
  634. ip_version = totem_config_get_ip_version();
  635. iter = icmap_iter_init("nodelist.node.");
  636. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  637. res = sscanf(iter_key, "nodelist.node.%u.%s", node_pos, tmp_key);
  638. if (res != 2) {
  639. continue;
  640. }
  641. if (strcmp(tmp_key, "ring0_addr") != 0) {
  642. continue;
  643. }
  644. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  645. continue ;
  646. }
  647. free(node_addr_str);
  648. /*
  649. * ring0_addr found -> let's iterate thru ipaddr_key_prefix
  650. */
  651. snprintf(tmp_key, sizeof(tmp_key), "nodelist.node.%u.%s", *node_pos,
  652. (ipaddr_key_prefix != NULL ? ipaddr_key_prefix : "ring0_addr"));
  653. iter2 = icmap_iter_init(tmp_key);
  654. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  655. /*
  656. * ring0_addr must be exact match, not prefix
  657. */
  658. ipaddr_key = (ipaddr_key_prefix != NULL ? iter_key2 : tmp_key);
  659. if (icmap_get_string(ipaddr_key, &node_addr_str) != CS_OK) {
  660. continue ;
  661. }
  662. if (totemip_parse(&node_addr, node_addr_str, ip_version) == -1) {
  663. free(node_addr_str);
  664. continue ;
  665. }
  666. free(node_addr_str);
  667. /*
  668. * Try to match ip with if_addrs
  669. */
  670. node_found = 0;
  671. for (list = addrs.next; list != &addrs; list = list->next) {
  672. if_addr = list_entry(list, struct totem_ip_if_address, list);
  673. if (totemip_equal(&node_addr, &if_addr->ip_addr)) {
  674. node_found = 1;
  675. break;
  676. }
  677. }
  678. if (node_found) {
  679. break ;
  680. }
  681. }
  682. icmap_iter_finalize(iter2);
  683. if (node_found) {
  684. break ;
  685. }
  686. }
  687. icmap_iter_finalize(iter);
  688. totemip_freeifaddrs(&addrs);
  689. return (node_found);
  690. }
  691. static void config_convert_nodelist_to_interface(struct totem_config *totem_config)
  692. {
  693. int res = 0;
  694. unsigned int node_pos;
  695. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  696. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  697. char *node_addr_str;
  698. unsigned int ringnumber = 0;
  699. icmap_iter_t iter;
  700. const char *iter_key;
  701. if (totem_config_find_local_addr_in_nodelist(NULL, &node_pos)) {
  702. /*
  703. * We found node, so create interface section
  704. */
  705. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  706. iter = icmap_iter_init(tmp_key);
  707. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  708. res = sscanf(iter_key, "nodelist.node.%u.ring%u%s", &node_pos, &ringnumber, tmp_key2);
  709. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  710. continue ;
  711. }
  712. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  713. continue;
  714. }
  715. snprintf(tmp_key2, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.bindnetaddr", ringnumber);
  716. icmap_set_string(tmp_key2, node_addr_str);
  717. free(node_addr_str);
  718. }
  719. icmap_iter_finalize(iter);
  720. }
  721. }
  722. extern int totem_config_read (
  723. struct totem_config *totem_config,
  724. const char **error_string,
  725. uint64_t *warnings)
  726. {
  727. int res = 0;
  728. char *str;
  729. unsigned int ringnumber = 0;
  730. int member_count = 0;
  731. icmap_iter_t iter, member_iter;
  732. const char *iter_key;
  733. const char *member_iter_key;
  734. char ringnumber_key[ICMAP_KEYNAME_MAXLEN];
  735. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  736. uint8_t u8;
  737. uint16_t u16;
  738. char *cluster_name = NULL;
  739. int i;
  740. int local_node_pos;
  741. int nodeid_set;
  742. *warnings = 0;
  743. memset (totem_config, 0, sizeof (struct totem_config));
  744. totem_config->interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  745. if (totem_config->interfaces == 0) {
  746. *error_string = "Out of memory trying to allocate ethernet interface storage area";
  747. return -1;
  748. }
  749. memset (totem_config->interfaces, 0,
  750. sizeof (struct totem_interface) * INTERFACE_MAX);
  751. strcpy (totem_config->rrp_mode, "none");
  752. icmap_get_uint32("totem.version", (uint32_t *)&totem_config->version);
  753. if (totem_get_crypto(totem_config) != 0) {
  754. *error_string = "crypto_cipher requires crypto_hash with value other than none";
  755. return -1;
  756. }
  757. if (icmap_get_string("totem.rrp_mode", &str) == CS_OK) {
  758. if (strlen(str) >= TOTEM_RRP_MODE_BYTES) {
  759. *error_string = "totem.rrp_mode is too long";
  760. free(str);
  761. return -1;
  762. }
  763. strcpy (totem_config->rrp_mode, str);
  764. free(str);
  765. }
  766. icmap_get_uint32("totem.nodeid", &totem_config->node_id);
  767. totem_config->clear_node_high_bit = 0;
  768. if (icmap_get_string("totem.clear_node_high_bit", &str) == CS_OK) {
  769. if (strcmp (str, "yes") == 0) {
  770. totem_config->clear_node_high_bit = 1;
  771. }
  772. free(str);
  773. }
  774. icmap_get_uint32("totem.threads", &totem_config->threads);
  775. icmap_get_uint32("totem.netmtu", &totem_config->net_mtu);
  776. if (icmap_get_string("totem.cluster_name", &cluster_name) != CS_OK) {
  777. cluster_name = NULL;
  778. }
  779. totem_config->ip_version = totem_config_get_ip_version();
  780. if (icmap_get_string("totem.interface.0.bindnetaddr", &str) != CS_OK) {
  781. /*
  782. * We were not able to find ring 0 bindnet addr. Try to use nodelist informations
  783. */
  784. config_convert_nodelist_to_interface(totem_config);
  785. } else {
  786. free(str);
  787. }
  788. /*
  789. * Broadcast option is global but set in interface section,
  790. * so reset before processing interfaces.
  791. */
  792. totem_config->broadcast_use = 0;
  793. iter = icmap_iter_init("totem.interface.");
  794. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  795. res = sscanf(iter_key, "totem.interface.%[^.].%s", ringnumber_key, tmp_key);
  796. if (res != 2) {
  797. continue;
  798. }
  799. if (strcmp(tmp_key, "bindnetaddr") != 0) {
  800. continue;
  801. }
  802. member_count = 0;
  803. ringnumber = atoi(ringnumber_key);
  804. if (ringnumber >= INTERFACE_MAX) {
  805. free(cluster_name);
  806. snprintf (error_string_response, sizeof(error_string_response),
  807. "parse error in config: interface ring number %u is bigger than allowed maximum %u\n",
  808. ringnumber, INTERFACE_MAX - 1);
  809. *error_string = error_string_response;
  810. return -1;
  811. }
  812. /*
  813. * Get the bind net address
  814. */
  815. if (icmap_get_string(iter_key, &str) == CS_OK) {
  816. res = totemip_parse (&totem_config->interfaces[ringnumber].bindnet, str,
  817. totem_config->interfaces[ringnumber].mcast_addr.family);
  818. free(str);
  819. }
  820. /*
  821. * Get interface multicast address
  822. */
  823. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", ringnumber);
  824. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  825. res = totemip_parse (&totem_config->interfaces[ringnumber].mcast_addr, str, totem_config->ip_version);
  826. free(str);
  827. } else {
  828. /*
  829. * User not specified address -> autogenerate one from cluster_name key
  830. * (if available)
  831. */
  832. res = get_cluster_mcast_addr (cluster_name,
  833. &totem_config->interfaces[ringnumber].bindnet,
  834. ringnumber,
  835. totem_config->ip_version,
  836. &totem_config->interfaces[ringnumber].mcast_addr);
  837. }
  838. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.broadcast", ringnumber);
  839. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  840. if (strcmp (str, "yes") == 0) {
  841. totem_config->broadcast_use = 1;
  842. }
  843. free(str);
  844. }
  845. /*
  846. * Get mcast port
  847. */
  848. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", ringnumber);
  849. if (icmap_get_uint16(tmp_key, &totem_config->interfaces[ringnumber].ip_port) != CS_OK) {
  850. if (totem_config->broadcast_use) {
  851. totem_config->interfaces[ringnumber].ip_port = DEFAULT_PORT + (2 * ringnumber);
  852. } else {
  853. totem_config->interfaces[ringnumber].ip_port = DEFAULT_PORT;
  854. }
  855. }
  856. /*
  857. * Get the TTL
  858. */
  859. totem_config->interfaces[ringnumber].ttl = 1;
  860. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.ttl", ringnumber);
  861. if (icmap_get_uint8(tmp_key, &u8) == CS_OK) {
  862. totem_config->interfaces[ringnumber].ttl = u8;
  863. }
  864. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.member.", ringnumber);
  865. member_iter = icmap_iter_init(tmp_key);
  866. while ((member_iter_key = icmap_iter_next(member_iter, NULL, NULL)) != NULL) {
  867. if (member_count == 0) {
  868. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  869. free(str);
  870. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_IGNORED;
  871. break;
  872. } else {
  873. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_DEPRECATED;
  874. }
  875. }
  876. if (icmap_get_string(member_iter_key, &str) == CS_OK) {
  877. res = totemip_parse (&totem_config->interfaces[ringnumber].member_list[member_count++],
  878. str, totem_config->ip_version);
  879. }
  880. }
  881. icmap_iter_finalize(member_iter);
  882. totem_config->interfaces[ringnumber].member_count = member_count;
  883. totem_config->interface_count++;
  884. }
  885. icmap_iter_finalize(iter);
  886. /*
  887. * Use broadcast is global, so if set, make sure to fill mcast addr correctly
  888. */
  889. if (totem_config->broadcast_use) {
  890. for (ringnumber = 0; ringnumber < totem_config->interface_count; ringnumber++) {
  891. totemip_parse (&totem_config->interfaces[ringnumber].mcast_addr,
  892. "255.255.255.255", 0);
  893. }
  894. }
  895. /*
  896. * Store automatically generated items back to icmap
  897. */
  898. for (i = 0; i < totem_config->interface_count; i++) {
  899. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", i);
  900. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  901. free(str);
  902. } else {
  903. str = (char *)totemip_print(&totem_config->interfaces[i].mcast_addr);
  904. icmap_set_string(tmp_key, str);
  905. }
  906. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", i);
  907. if (icmap_get_uint16(tmp_key, &u16) != CS_OK) {
  908. icmap_set_uint16(tmp_key, totem_config->interfaces[i].ip_port);
  909. }
  910. }
  911. totem_config->transport_number = TOTEM_TRANSPORT_UDP;
  912. if (icmap_get_string("totem.transport", &str) == CS_OK) {
  913. if (strcmp (str, "udpu") == 0) {
  914. totem_config->transport_number = TOTEM_TRANSPORT_UDPU;
  915. }
  916. if (strcmp (str, "iba") == 0) {
  917. totem_config->transport_number = TOTEM_TRANSPORT_RDMA;
  918. }
  919. free(str);
  920. }
  921. free(cluster_name);
  922. /*
  923. * Check existence of nodelist
  924. */
  925. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  926. free(str);
  927. /*
  928. * find local node
  929. */
  930. local_node_pos = find_local_node_in_nodelist(totem_config);
  931. if (local_node_pos != -1) {
  932. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  933. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", local_node_pos);
  934. nodeid_set = (totem_config->node_id != 0);
  935. if (icmap_get_uint32(tmp_key, &totem_config->node_id) == CS_OK && nodeid_set) {
  936. *warnings |= TOTEM_CONFIG_WARNING_TOTEM_NODEID_IGNORED;
  937. }
  938. /*
  939. * Make localnode ring0_addr read only, so we can be sure that local
  940. * node never changes. If rebinding to other IP would be in future
  941. * supported, this must be changed and handled properly!
  942. */
  943. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", local_node_pos);
  944. icmap_set_ro_access(tmp_key, 0, 1);
  945. icmap_set_ro_access("nodelist.local_node_pos", 0, 1);
  946. }
  947. put_nodelist_members_to_config(totem_config, 0);
  948. }
  949. /*
  950. * Get things that might change in the future (and can depend on totem_config->interfaces);
  951. */
  952. totem_volatile_config_read(totem_config, NULL);
  953. icmap_set_uint8("config.totemconfig_reload_in_progress", 0);
  954. add_totem_config_notification(totem_config);
  955. return 0;
  956. }
  957. int totem_config_validate (
  958. struct totem_config *totem_config,
  959. const char **error_string)
  960. {
  961. static char local_error_reason[512];
  962. char parse_error[512];
  963. const char *error_reason = local_error_reason;
  964. int i, j;
  965. unsigned int interface_max = INTERFACE_MAX;
  966. unsigned int port1, port2;
  967. if (totem_config->interface_count == 0) {
  968. error_reason = "No interfaces defined";
  969. goto parse_error;
  970. }
  971. for (i = 0; i < totem_config->interface_count; i++) {
  972. /*
  973. * Some error checking of parsed data to make sure its valid
  974. */
  975. struct totem_ip_address null_addr;
  976. memset (&null_addr, 0, sizeof (struct totem_ip_address));
  977. if ((totem_config->transport_number == 0) &&
  978. memcmp (&totem_config->interfaces[i].mcast_addr, &null_addr,
  979. sizeof (struct totem_ip_address)) == 0) {
  980. error_reason = "No multicast address specified";
  981. goto parse_error;
  982. }
  983. if (totem_config->interfaces[i].ip_port == 0) {
  984. error_reason = "No multicast port specified";
  985. goto parse_error;
  986. }
  987. if (totem_config->interfaces[i].ttl > 255) {
  988. error_reason = "Invalid TTL (should be 0..255)";
  989. goto parse_error;
  990. }
  991. if (totem_config->transport_number != TOTEM_TRANSPORT_UDP &&
  992. totem_config->interfaces[i].ttl != 1) {
  993. error_reason = "Can only set ttl on multicast transport types";
  994. goto parse_error;
  995. }
  996. if (totem_config->interfaces[i].mcast_addr.family == AF_INET6 &&
  997. totem_config->node_id == 0) {
  998. error_reason = "An IPV6 network requires that a node ID be specified.";
  999. goto parse_error;
  1000. }
  1001. if (totem_config->broadcast_use == 0 && totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1002. if (totem_config->interfaces[i].mcast_addr.family != totem_config->interfaces[i].bindnet.family) {
  1003. error_reason = "Multicast address family does not match bind address family";
  1004. goto parse_error;
  1005. }
  1006. if (totemip_is_mcast (&totem_config->interfaces[i].mcast_addr) != 0) {
  1007. error_reason = "mcastaddr is not a correct multicast address.";
  1008. goto parse_error;
  1009. }
  1010. }
  1011. if (totem_config->interfaces[0].bindnet.family != totem_config->interfaces[i].bindnet.family) {
  1012. error_reason = "Not all bind address belong to the same IP family";
  1013. goto parse_error;
  1014. }
  1015. /*
  1016. * Ensure mcast address/port differs
  1017. */
  1018. if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1019. for (j = i + 1; j < totem_config->interface_count; j++) {
  1020. port1 = totem_config->interfaces[i].ip_port;
  1021. port2 = totem_config->interfaces[j].ip_port;
  1022. if (totemip_equal(&totem_config->interfaces[i].mcast_addr,
  1023. &totem_config->interfaces[j].mcast_addr) &&
  1024. (((port1 > port2 ? port1 : port2) - (port1 < port2 ? port1 : port2)) <= 1)) {
  1025. error_reason = "Interfaces multicast address/port pair must differ";
  1026. goto parse_error;
  1027. }
  1028. }
  1029. }
  1030. }
  1031. if (totem_config->version != 2) {
  1032. error_reason = "This totem parser can only parse version 2 configurations.";
  1033. goto parse_error;
  1034. }
  1035. if (totem_volatile_config_validate(totem_config, error_string) == -1) {
  1036. return (-1);
  1037. }
  1038. /*
  1039. * RRP values validation
  1040. */
  1041. if (strcmp (totem_config->rrp_mode, "none") &&
  1042. strcmp (totem_config->rrp_mode, "active") &&
  1043. strcmp (totem_config->rrp_mode, "passive")) {
  1044. snprintf (local_error_reason, sizeof(local_error_reason),
  1045. "The RRP mode \"%s\" specified is invalid. It must be none, active, or passive.\n", totem_config->rrp_mode);
  1046. goto parse_error;
  1047. }
  1048. if (strcmp (totem_config->rrp_mode, "none") == 0) {
  1049. interface_max = 1;
  1050. }
  1051. if (interface_max < totem_config->interface_count) {
  1052. snprintf (parse_error, sizeof(parse_error),
  1053. "%d is too many configured interfaces for the rrp_mode setting %s.",
  1054. totem_config->interface_count,
  1055. totem_config->rrp_mode);
  1056. error_reason = parse_error;
  1057. goto parse_error;
  1058. }
  1059. if (totem_config->net_mtu == 0) {
  1060. totem_config->net_mtu = 1500;
  1061. }
  1062. return 0;
  1063. parse_error:
  1064. snprintf (error_string_response, sizeof(error_string_response),
  1065. "parse error in config: %s\n", error_reason);
  1066. *error_string = error_string_response;
  1067. return (-1);
  1068. }
  1069. static int read_keyfile (
  1070. const char *key_location,
  1071. struct totem_config *totem_config,
  1072. const char **error_string)
  1073. {
  1074. int fd;
  1075. int res;
  1076. ssize_t expected_key_len = sizeof (totem_config->private_key);
  1077. int saved_errno;
  1078. char error_str[100];
  1079. const char *error_ptr;
  1080. fd = open (key_location, O_RDONLY);
  1081. if (fd == -1) {
  1082. error_ptr = qb_strerror_r(errno, error_str, sizeof(error_str));
  1083. snprintf (error_string_response, sizeof(error_string_response),
  1084. "Could not open %s: %s\n",
  1085. key_location, error_ptr);
  1086. goto parse_error;
  1087. }
  1088. res = read (fd, totem_config->private_key, expected_key_len);
  1089. saved_errno = errno;
  1090. close (fd);
  1091. if (res == -1) {
  1092. error_ptr = qb_strerror_r (saved_errno, error_str, sizeof(error_str));
  1093. snprintf (error_string_response, sizeof(error_string_response),
  1094. "Could not read %s: %s\n",
  1095. key_location, error_ptr);
  1096. goto parse_error;
  1097. }
  1098. totem_config->private_key_len = expected_key_len;
  1099. if (res != expected_key_len) {
  1100. snprintf (error_string_response, sizeof(error_string_response),
  1101. "Could only read %d bits of 1024 bits from %s.\n",
  1102. res * 8, key_location);
  1103. goto parse_error;
  1104. }
  1105. return 0;
  1106. parse_error:
  1107. *error_string = error_string_response;
  1108. return (-1);
  1109. }
  1110. int totem_config_keyread (
  1111. struct totem_config *totem_config,
  1112. const char **error_string)
  1113. {
  1114. int got_key = 0;
  1115. char *key_location = NULL;
  1116. int res;
  1117. size_t key_len;
  1118. memset (totem_config->private_key, 0, 128);
  1119. totem_config->private_key_len = 128;
  1120. if (strcmp(totem_config->crypto_cipher_type, "none") == 0 &&
  1121. strcmp(totem_config->crypto_hash_type, "none") == 0) {
  1122. return (0);
  1123. }
  1124. /* cmap may store the location of the key file */
  1125. if (icmap_get_string("totem.keyfile", &key_location) == CS_OK) {
  1126. res = read_keyfile(key_location, totem_config, error_string);
  1127. free(key_location);
  1128. if (res) {
  1129. goto key_error;
  1130. }
  1131. got_key = 1;
  1132. } else { /* Or the key itself may be in the cmap */
  1133. if (icmap_get("totem.key", NULL, &key_len, NULL) == CS_OK) {
  1134. if (key_len > sizeof (totem_config->private_key)) {
  1135. sprintf(error_string_response, "key is too long");
  1136. goto key_error;
  1137. }
  1138. if (icmap_get("totem.key", totem_config->private_key, &key_len, NULL) == CS_OK) {
  1139. totem_config->private_key_len = key_len;
  1140. got_key = 1;
  1141. } else {
  1142. sprintf(error_string_response, "can't store private key");
  1143. goto key_error;
  1144. }
  1145. }
  1146. }
  1147. /* In desperation we read the default filename */
  1148. if (!got_key) {
  1149. const char *filename = getenv("COROSYNC_TOTEM_AUTHKEY_FILE");
  1150. if (!filename)
  1151. filename = COROSYSCONFDIR "/authkey";
  1152. res = read_keyfile(filename, totem_config, error_string);
  1153. if (res)
  1154. goto key_error;
  1155. }
  1156. return (0);
  1157. key_error:
  1158. *error_string = error_string_response;
  1159. return (-1);
  1160. }
  1161. static void debug_dump_totem_config(const struct totem_config *totem_config)
  1162. {
  1163. log_printf(LOGSYS_LEVEL_DEBUG, "Token Timeout (%d ms) retransmit timeout (%d ms)",
  1164. totem_config->token_timeout, totem_config->token_retransmit_timeout);
  1165. log_printf(LOGSYS_LEVEL_DEBUG, "token hold (%d ms) retransmits before loss (%d retrans)",
  1166. totem_config->token_hold_timeout, totem_config->token_retransmits_before_loss_const);
  1167. log_printf(LOGSYS_LEVEL_DEBUG, "join (%d ms) send_join (%d ms) consensus (%d ms) merge (%d ms)",
  1168. totem_config->join_timeout, totem_config->send_join_timeout, totem_config->consensus_timeout,
  1169. totem_config->merge_timeout);
  1170. log_printf(LOGSYS_LEVEL_DEBUG, "downcheck (%d ms) fail to recv const (%d msgs)",
  1171. totem_config->downcheck_timeout, totem_config->fail_to_recv_const);
  1172. log_printf(LOGSYS_LEVEL_DEBUG,
  1173. "seqno unchanged const (%d rotations) Maximum network MTU %d",
  1174. totem_config->seqno_unchanged_const, totem_config->net_mtu);
  1175. log_printf(LOGSYS_LEVEL_DEBUG,
  1176. "window size per rotation (%d messages) maximum messages per rotation (%d messages)",
  1177. totem_config->window_size, totem_config->max_messages);
  1178. log_printf(LOGSYS_LEVEL_DEBUG, "missed count const (%d messages)", totem_config->miss_count_const);
  1179. log_printf(LOGSYS_LEVEL_DEBUG, "RRP token expired timeout (%d ms)",
  1180. totem_config->rrp_token_expired_timeout);
  1181. log_printf(LOGSYS_LEVEL_DEBUG, "RRP token problem counter (%d ms)",
  1182. totem_config->rrp_problem_count_timeout);
  1183. log_printf(LOGSYS_LEVEL_DEBUG, "RRP threshold (%d problem count)",
  1184. totem_config->rrp_problem_count_threshold);
  1185. log_printf(LOGSYS_LEVEL_DEBUG, "RRP multicast threshold (%d problem count)",
  1186. totem_config->rrp_problem_count_mcast_threshold);
  1187. log_printf(LOGSYS_LEVEL_DEBUG, "RRP automatic recovery check timeout (%d ms)",
  1188. totem_config->rrp_autorecovery_check_timeout);
  1189. log_printf(LOGSYS_LEVEL_DEBUG, "RRP mode set to %s.",
  1190. totem_config->rrp_mode);
  1191. log_printf(LOGSYS_LEVEL_DEBUG, "heartbeat_failures_allowed (%d)",
  1192. totem_config->heartbeat_failures_allowed);
  1193. log_printf(LOGSYS_LEVEL_DEBUG, "max_network_delay (%d ms)", totem_config->max_network_delay);
  1194. }
  1195. static void totem_change_notify(
  1196. int32_t event,
  1197. const char *key_name,
  1198. struct icmap_notify_value new_val,
  1199. struct icmap_notify_value old_val,
  1200. void *user_data)
  1201. {
  1202. struct totem_config *totem_config = (struct totem_config *)user_data;
  1203. uint32_t *param;
  1204. uint8_t reloading;
  1205. const char *deleted_key = NULL;
  1206. const char *error_string;
  1207. /*
  1208. * If a full reload is in progress then don't do anything until it's done and
  1209. * can reconfigure it all atomically
  1210. */
  1211. if (icmap_get_uint8("config.reload_in_progress", &reloading) == CS_OK && reloading)
  1212. return;
  1213. param = totem_get_param_by_name((struct totem_config *)user_data, key_name);
  1214. /*
  1215. * Process change only if changed key is found in totem_config (-> param is not NULL)
  1216. * or for special key token_coefficient. token_coefficient key is not stored in
  1217. * totem_config, but it is used for computation of token timeout.
  1218. */
  1219. if (!param && strcmp(key_name, "totem.token_coefficient") != 0)
  1220. return;
  1221. /*
  1222. * Values other than UINT32 are not supported, or needed (yet)
  1223. */
  1224. switch (event) {
  1225. case ICMAP_TRACK_DELETE:
  1226. deleted_key = key_name;
  1227. break;
  1228. case ICMAP_TRACK_ADD:
  1229. case ICMAP_TRACK_MODIFY:
  1230. deleted_key = NULL;
  1231. break;
  1232. default:
  1233. break;
  1234. }
  1235. totem_volatile_config_read (totem_config, deleted_key);
  1236. log_printf(LOGSYS_LEVEL_DEBUG, "Totem related config key changed. Dumping actual totem config.");
  1237. debug_dump_totem_config(totem_config);
  1238. if (totem_volatile_config_validate(totem_config, &error_string) == -1) {
  1239. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1240. /*
  1241. * TODO: Consider corosync exit and/or load defaults for volatile
  1242. * values. For now, log error seems to be enough
  1243. */
  1244. }
  1245. }
  1246. static void totem_reload_notify(
  1247. int32_t event,
  1248. const char *key_name,
  1249. struct icmap_notify_value new_val,
  1250. struct icmap_notify_value old_val,
  1251. void *user_data)
  1252. {
  1253. struct totem_config *totem_config = (struct totem_config *)user_data;
  1254. uint32_t local_node_pos;
  1255. const char *error_string;
  1256. /* Reload has completed */
  1257. if (*(uint8_t *)new_val.data == 0) {
  1258. put_nodelist_members_to_config (totem_config, 1);
  1259. totem_volatile_config_read (totem_config, NULL);
  1260. log_printf(LOGSYS_LEVEL_DEBUG, "Configuration reloaded. Dumping actual totem config.");
  1261. debug_dump_totem_config(totem_config);
  1262. if (totem_volatile_config_validate(totem_config, &error_string) == -1) {
  1263. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1264. /*
  1265. * TODO: Consider corosync exit and/or load defaults for volatile
  1266. * values. For now, log error seems to be enough
  1267. */
  1268. }
  1269. /* Reinstate the local_node_pos */
  1270. local_node_pos = find_local_node_in_nodelist(totem_config);
  1271. if (local_node_pos != -1) {
  1272. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  1273. }
  1274. icmap_set_uint8("config.totemconfig_reload_in_progress", 0);
  1275. } else {
  1276. icmap_set_uint8("config.totemconfig_reload_in_progress", 1);
  1277. }
  1278. }
  1279. static void add_totem_config_notification(struct totem_config *totem_config)
  1280. {
  1281. icmap_track_t icmap_track;
  1282. icmap_track_add("totem.",
  1283. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1284. totem_change_notify,
  1285. totem_config,
  1286. &icmap_track);
  1287. icmap_track_add("config.reload_in_progress",
  1288. ICMAP_TRACK_ADD | ICMAP_TRACK_MODIFY,
  1289. totem_reload_notify,
  1290. totem_config,
  1291. &icmap_track);
  1292. icmap_track_add("nodelist.node.",
  1293. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1294. nodelist_dynamic_notify,
  1295. (void *)totem_config,
  1296. &icmap_track);
  1297. }