totemconfig.c 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655
  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. unsigned int ringnumber,
  378. int ip_version,
  379. struct totem_ip_address *res)
  380. {
  381. uint16_t clusterid;
  382. char addr[INET6_ADDRSTRLEN + 1];
  383. int err;
  384. if (cluster_name == NULL) {
  385. return (-1);
  386. }
  387. clusterid = generate_cluster_id(cluster_name) + ringnumber;
  388. memset (res, 0, sizeof(*res));
  389. switch (ip_version) {
  390. case AF_INET:
  391. snprintf(addr, sizeof(addr), "239.192.%d.%d", clusterid >> 8, clusterid % 0xFF);
  392. break;
  393. case AF_INET6:
  394. snprintf(addr, sizeof(addr), "ff15::%x", clusterid);
  395. break;
  396. default:
  397. /*
  398. * Unknown family
  399. */
  400. return (-1);
  401. }
  402. err = totemip_parse (res, addr, ip_version);
  403. return (err);
  404. }
  405. static unsigned int generate_nodeid_for_duplicate_test(
  406. struct totem_config *totem_config,
  407. char *addr)
  408. {
  409. unsigned int nodeid;
  410. struct totem_ip_address totemip;
  411. /* AF_INET hard-coded here because auto-generated nodeids
  412. are only for IPv4 */
  413. if (totemip_parse(&totemip, addr, AF_INET) != 0)
  414. return -1;
  415. memcpy (&nodeid, &totemip.addr, sizeof (unsigned int));
  416. #if __BYTE_ORDER == __LITTLE_ENDIAN
  417. nodeid = swab32 (nodeid);
  418. #endif
  419. if (totem_config->clear_node_high_bit) {
  420. nodeid &= 0x7FFFFFFF;
  421. }
  422. return nodeid;
  423. }
  424. static int check_for_duplicate_nodeids(
  425. struct totem_config *totem_config,
  426. const char **error_string)
  427. {
  428. icmap_iter_t iter;
  429. icmap_iter_t subiter;
  430. const char *iter_key;
  431. int res = 0;
  432. int retval = 0;
  433. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  434. char *ring0_addr=NULL;
  435. char *ring0_addr1=NULL;
  436. unsigned int node_pos;
  437. unsigned int node_pos1;
  438. unsigned int nodeid;
  439. unsigned int nodeid1;
  440. int autogenerated;
  441. iter = icmap_iter_init("nodelist.node.");
  442. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  443. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  444. if (res != 2) {
  445. continue;
  446. }
  447. if (strcmp(tmp_key, "ring0_addr") != 0) {
  448. continue;
  449. }
  450. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos);
  451. autogenerated = 0;
  452. if (icmap_get_uint32(tmp_key, &nodeid) != CS_OK) {
  453. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  454. if (icmap_get_string(tmp_key, &ring0_addr) != CS_OK) {
  455. continue;
  456. }
  457. /* Generate nodeid so we can check that auto-generated nodeids don't clash either */
  458. nodeid = generate_nodeid_for_duplicate_test(totem_config, ring0_addr);
  459. if (nodeid == -1) {
  460. continue;
  461. }
  462. autogenerated = 1;
  463. }
  464. node_pos1 = 0;
  465. subiter = icmap_iter_init("nodelist.node.");
  466. while (((iter_key = icmap_iter_next(subiter, NULL, NULL)) != NULL) && (node_pos1 < node_pos)) {
  467. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos1, tmp_key);
  468. if ((res != 2) || (node_pos1 >= node_pos)) {
  469. continue;
  470. }
  471. if (strcmp(tmp_key, "ring0_addr") != 0) {
  472. continue;
  473. }
  474. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos1);
  475. if (icmap_get_uint32(tmp_key, &nodeid1) != CS_OK) {
  476. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos1);
  477. if (icmap_get_string(tmp_key, &ring0_addr1) != CS_OK) {
  478. continue;
  479. }
  480. nodeid1 = generate_nodeid_for_duplicate_test(totem_config, ring0_addr1);
  481. if (nodeid1 == -1) {
  482. continue;
  483. }
  484. }
  485. if (nodeid == nodeid1) {
  486. retval = -1;
  487. snprintf (error_string_response, sizeof(error_string_response),
  488. "Nodeid %u%s%s%s appears twice in corosync.conf", nodeid,
  489. autogenerated?"(autogenerated from ":"",
  490. autogenerated?ring0_addr:"",
  491. autogenerated?")":"");
  492. log_printf (LOGSYS_LEVEL_ERROR, error_string_response);
  493. *error_string = error_string_response;
  494. break;
  495. }
  496. }
  497. icmap_iter_finalize(subiter);
  498. }
  499. icmap_iter_finalize(iter);
  500. return retval;
  501. }
  502. static int find_local_node_in_nodelist(struct totem_config *totem_config)
  503. {
  504. icmap_iter_t iter;
  505. const char *iter_key;
  506. int res = 0;
  507. unsigned int node_pos;
  508. int local_node_pos = -1;
  509. struct totem_ip_address bind_addr;
  510. int interface_up, interface_num;
  511. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  512. char *node_addr_str;
  513. struct totem_ip_address node_addr;
  514. res = totemip_iface_check(&totem_config->interfaces[0].bindnet,
  515. &bind_addr, &interface_up, &interface_num,
  516. totem_config->clear_node_high_bit);
  517. if (res == -1) {
  518. return (-1);
  519. }
  520. iter = icmap_iter_init("nodelist.node.");
  521. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  522. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  523. if (res != 2) {
  524. continue;
  525. }
  526. if (strcmp(tmp_key, "ring0_addr") != 0) {
  527. continue;
  528. }
  529. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  530. if (icmap_get_string(tmp_key, &node_addr_str) != CS_OK) {
  531. continue;
  532. }
  533. res = totemip_parse (&node_addr, node_addr_str, totem_config->ip_version);
  534. free(node_addr_str);
  535. if (res == -1) {
  536. continue ;
  537. }
  538. if (totemip_equal(&bind_addr, &node_addr)) {
  539. local_node_pos = node_pos;
  540. }
  541. }
  542. icmap_iter_finalize(iter);
  543. return (local_node_pos);
  544. }
  545. /*
  546. * Compute difference between two set of totem interface arrays. set1 and set2
  547. * are changed so for same ring, ip existing in both set1 and set2 are cleared
  548. * (set to 0), and ips which are only in set1 or set2 remains untouched.
  549. * totempg_node_add/remove is called.
  550. */
  551. static void compute_interfaces_diff(int interface_count,
  552. struct totem_interface *set1,
  553. struct totem_interface *set2)
  554. {
  555. int ring_no, set1_pos, set2_pos;
  556. struct totem_ip_address empty_ip_address;
  557. memset(&empty_ip_address, 0, sizeof(empty_ip_address));
  558. for (ring_no = 0; ring_no < interface_count; ring_no++) {
  559. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  560. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  561. /*
  562. * For current ring_no remove all set1 items existing
  563. * in set2
  564. */
  565. if (memcmp(&set1[ring_no].member_list[set1_pos],
  566. &set2[ring_no].member_list[set2_pos],
  567. sizeof(struct totem_ip_address)) == 0) {
  568. memset(&set1[ring_no].member_list[set1_pos], 0,
  569. sizeof(struct totem_ip_address));
  570. memset(&set2[ring_no].member_list[set2_pos], 0,
  571. sizeof(struct totem_ip_address));
  572. }
  573. }
  574. }
  575. }
  576. for (ring_no = 0; ring_no < interface_count; ring_no++) {
  577. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  578. /*
  579. * All items which remained in set1 doesn't exists in set2 any longer so
  580. * node has to be removed.
  581. */
  582. if (memcmp(&set1[ring_no].member_list[set1_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  583. log_printf(LOGSYS_LEVEL_DEBUG,
  584. "removing dynamic member %s for ring %u",
  585. totemip_print(&set1[ring_no].member_list[set1_pos]),
  586. ring_no);
  587. totempg_member_remove(&set1[ring_no].member_list[set1_pos], ring_no);
  588. }
  589. }
  590. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  591. /*
  592. * All items which remained in set2 doesn't existed in set1 so this is no node
  593. * and has to be added.
  594. */
  595. if (memcmp(&set2[ring_no].member_list[set2_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  596. log_printf(LOGSYS_LEVEL_DEBUG,
  597. "adding dynamic member %s for ring %u",
  598. totemip_print(&set2[ring_no].member_list[set2_pos]),
  599. ring_no);
  600. totempg_member_add(&set2[ring_no].member_list[set2_pos], ring_no);
  601. }
  602. }
  603. }
  604. }
  605. static void put_nodelist_members_to_config(struct totem_config *totem_config, int reload)
  606. {
  607. icmap_iter_t iter, iter2;
  608. const char *iter_key, *iter_key2;
  609. int res = 0;
  610. unsigned int node_pos;
  611. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  612. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  613. char *node_addr_str;
  614. int member_count;
  615. unsigned int ringnumber = 0;
  616. int i, j;
  617. struct totem_interface *orig_interfaces = NULL;
  618. struct totem_interface *new_interfaces = NULL;
  619. if (reload) {
  620. /*
  621. * We need to compute diff only for reload. Also for initial configuration
  622. * not all totem structures are initialized so corosync will crash during
  623. * member_add/remove
  624. */
  625. orig_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  626. assert(orig_interfaces != NULL);
  627. new_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  628. assert(new_interfaces != NULL);
  629. memcpy(orig_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  630. }
  631. /* Clear out nodelist so we can put the new one in if needed */
  632. for (i = 0; i < totem_config->interface_count; i++) {
  633. for (j = 0; j < PROCESSOR_COUNT_MAX; j++) {
  634. memset(&totem_config->interfaces[i].member_list[j], 0, sizeof(struct totem_ip_address));
  635. }
  636. totem_config->interfaces[i].member_count = 0;
  637. }
  638. iter = icmap_iter_init("nodelist.node.");
  639. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  640. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  641. if (res != 2) {
  642. continue;
  643. }
  644. if (strcmp(tmp_key, "ring0_addr") != 0) {
  645. continue;
  646. }
  647. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  648. iter2 = icmap_iter_init(tmp_key);
  649. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  650. res = sscanf(iter_key2, "nodelist.node.%u.ring%u%s", &node_pos, &ringnumber, tmp_key2);
  651. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  652. continue;
  653. }
  654. if (icmap_get_string(iter_key2, &node_addr_str) != CS_OK) {
  655. continue;
  656. }
  657. member_count = totem_config->interfaces[ringnumber].member_count;
  658. res = totemip_parse(&totem_config->interfaces[ringnumber].member_list[member_count],
  659. node_addr_str, totem_config->ip_version);
  660. if (res != -1) {
  661. totem_config->interfaces[ringnumber].member_count++;
  662. }
  663. free(node_addr_str);
  664. }
  665. icmap_iter_finalize(iter2);
  666. }
  667. icmap_iter_finalize(iter);
  668. if (reload) {
  669. memcpy(new_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  670. compute_interfaces_diff(totem_config->interface_count, orig_interfaces, new_interfaces);
  671. free(new_interfaces);
  672. free(orig_interfaces);
  673. }
  674. }
  675. static void nodelist_dynamic_notify(
  676. int32_t event,
  677. const char *key_name,
  678. struct icmap_notify_value new_val,
  679. struct icmap_notify_value old_val,
  680. void *user_data)
  681. {
  682. int res;
  683. unsigned int ring_no;
  684. unsigned int member_no;
  685. char tmp_str[ICMAP_KEYNAME_MAXLEN];
  686. uint8_t reloading;
  687. struct totem_config *totem_config = (struct totem_config *)user_data;
  688. /*
  689. * If a full reload is in progress then don't do anything until it's done and
  690. * can reconfigure it all atomically
  691. */
  692. if (icmap_get_uint8("config.totemconfig_reload_in_progress", &reloading) == CS_OK && reloading) {
  693. return ;
  694. }
  695. res = sscanf(key_name, "nodelist.node.%u.ring%u%s", &member_no, &ring_no, tmp_str);
  696. if (res != 3)
  697. return ;
  698. if (strcmp(tmp_str, "_addr") != 0) {
  699. return;
  700. }
  701. put_nodelist_members_to_config(totem_config, 1);
  702. }
  703. /*
  704. * Tries to find node (node_pos) in config nodelist which address matches any
  705. * local interface. Address can be stored in ring0_addr or if ipaddr_key_prefix is not NULL
  706. * key with prefix ipaddr_key is used (there can be multiuple of them)
  707. * This function differs * from find_local_node_in_nodelist because it doesn't need bindnetaddr,
  708. * but doesn't work when bind addr is network address (so IP must be exact
  709. * match).
  710. *
  711. * Returns 1 on success (address was found, node_pos is then correctly set) or 0 on failure.
  712. */
  713. int totem_config_find_local_addr_in_nodelist(const char *ipaddr_key_prefix, unsigned int *node_pos)
  714. {
  715. struct list_head addrs;
  716. struct totem_ip_if_address *if_addr;
  717. icmap_iter_t iter, iter2;
  718. const char *iter_key, *iter_key2;
  719. struct list_head *list;
  720. const char *ipaddr_key;
  721. int ip_version;
  722. struct totem_ip_address node_addr;
  723. char *node_addr_str;
  724. int node_found = 0;
  725. int res = 0;
  726. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  727. if (totemip_getifaddrs(&addrs) == -1) {
  728. return 0;
  729. }
  730. ip_version = totem_config_get_ip_version();
  731. iter = icmap_iter_init("nodelist.node.");
  732. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  733. res = sscanf(iter_key, "nodelist.node.%u.%s", node_pos, tmp_key);
  734. if (res != 2) {
  735. continue;
  736. }
  737. if (strcmp(tmp_key, "ring0_addr") != 0) {
  738. continue;
  739. }
  740. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  741. continue ;
  742. }
  743. free(node_addr_str);
  744. /*
  745. * ring0_addr found -> let's iterate thru ipaddr_key_prefix
  746. */
  747. snprintf(tmp_key, sizeof(tmp_key), "nodelist.node.%u.%s", *node_pos,
  748. (ipaddr_key_prefix != NULL ? ipaddr_key_prefix : "ring0_addr"));
  749. iter2 = icmap_iter_init(tmp_key);
  750. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  751. /*
  752. * ring0_addr must be exact match, not prefix
  753. */
  754. ipaddr_key = (ipaddr_key_prefix != NULL ? iter_key2 : tmp_key);
  755. if (icmap_get_string(ipaddr_key, &node_addr_str) != CS_OK) {
  756. continue ;
  757. }
  758. if (totemip_parse(&node_addr, node_addr_str, ip_version) == -1) {
  759. free(node_addr_str);
  760. continue ;
  761. }
  762. free(node_addr_str);
  763. /*
  764. * Try to match ip with if_addrs
  765. */
  766. node_found = 0;
  767. for (list = addrs.next; list != &addrs; list = list->next) {
  768. if_addr = list_entry(list, struct totem_ip_if_address, list);
  769. if (totemip_equal(&node_addr, &if_addr->ip_addr)) {
  770. node_found = 1;
  771. break;
  772. }
  773. }
  774. if (node_found) {
  775. break ;
  776. }
  777. }
  778. icmap_iter_finalize(iter2);
  779. if (node_found) {
  780. break ;
  781. }
  782. }
  783. icmap_iter_finalize(iter);
  784. totemip_freeifaddrs(&addrs);
  785. return (node_found);
  786. }
  787. static void config_convert_nodelist_to_interface(struct totem_config *totem_config)
  788. {
  789. int res = 0;
  790. unsigned int node_pos;
  791. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  792. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  793. char *node_addr_str;
  794. unsigned int ringnumber = 0;
  795. icmap_iter_t iter;
  796. const char *iter_key;
  797. if (totem_config_find_local_addr_in_nodelist(NULL, &node_pos)) {
  798. /*
  799. * We found node, so create interface section
  800. */
  801. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  802. iter = icmap_iter_init(tmp_key);
  803. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  804. res = sscanf(iter_key, "nodelist.node.%u.ring%u%s", &node_pos, &ringnumber, tmp_key2);
  805. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  806. continue ;
  807. }
  808. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  809. continue;
  810. }
  811. snprintf(tmp_key2, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.bindnetaddr", ringnumber);
  812. icmap_set_string(tmp_key2, node_addr_str);
  813. free(node_addr_str);
  814. }
  815. icmap_iter_finalize(iter);
  816. }
  817. }
  818. extern int totem_config_read (
  819. struct totem_config *totem_config,
  820. const char **error_string,
  821. uint64_t *warnings)
  822. {
  823. int res = 0;
  824. char *str;
  825. unsigned int ringnumber = 0;
  826. int member_count = 0;
  827. icmap_iter_t iter, member_iter;
  828. const char *iter_key;
  829. const char *member_iter_key;
  830. char ringnumber_key[ICMAP_KEYNAME_MAXLEN];
  831. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  832. uint8_t u8;
  833. uint16_t u16;
  834. char *cluster_name = NULL;
  835. int i;
  836. int local_node_pos;
  837. int nodeid_set;
  838. *warnings = 0;
  839. memset (totem_config, 0, sizeof (struct totem_config));
  840. totem_config->interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  841. if (totem_config->interfaces == 0) {
  842. *error_string = "Out of memory trying to allocate ethernet interface storage area";
  843. return -1;
  844. }
  845. memset (totem_config->interfaces, 0,
  846. sizeof (struct totem_interface) * INTERFACE_MAX);
  847. strcpy (totem_config->rrp_mode, "none");
  848. icmap_get_uint32("totem.version", (uint32_t *)&totem_config->version);
  849. if (totem_get_crypto(totem_config) != 0) {
  850. *error_string = "crypto_cipher requires crypto_hash with value other than none";
  851. return -1;
  852. }
  853. if (icmap_get_string("totem.rrp_mode", &str) == CS_OK) {
  854. if (strlen(str) >= TOTEM_RRP_MODE_BYTES) {
  855. *error_string = "totem.rrp_mode is too long";
  856. free(str);
  857. return -1;
  858. }
  859. strcpy (totem_config->rrp_mode, str);
  860. free(str);
  861. }
  862. icmap_get_uint32("totem.nodeid", &totem_config->node_id);
  863. totem_config->clear_node_high_bit = 0;
  864. if (icmap_get_string("totem.clear_node_high_bit", &str) == CS_OK) {
  865. if (strcmp (str, "yes") == 0) {
  866. totem_config->clear_node_high_bit = 1;
  867. }
  868. free(str);
  869. }
  870. icmap_get_uint32("totem.threads", &totem_config->threads);
  871. icmap_get_uint32("totem.netmtu", &totem_config->net_mtu);
  872. if (icmap_get_string("totem.cluster_name", &cluster_name) != CS_OK) {
  873. cluster_name = NULL;
  874. }
  875. totem_config->ip_version = totem_config_get_ip_version();
  876. if (icmap_get_string("totem.interface.0.bindnetaddr", &str) != CS_OK) {
  877. /*
  878. * We were not able to find ring 0 bindnet addr. Try to use nodelist informations
  879. */
  880. config_convert_nodelist_to_interface(totem_config);
  881. } else {
  882. free(str);
  883. }
  884. /*
  885. * Broadcast option is global but set in interface section,
  886. * so reset before processing interfaces.
  887. */
  888. totem_config->broadcast_use = 0;
  889. iter = icmap_iter_init("totem.interface.");
  890. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  891. res = sscanf(iter_key, "totem.interface.%[^.].%s", ringnumber_key, tmp_key);
  892. if (res != 2) {
  893. continue;
  894. }
  895. if (strcmp(tmp_key, "bindnetaddr") != 0) {
  896. continue;
  897. }
  898. member_count = 0;
  899. ringnumber = atoi(ringnumber_key);
  900. if (ringnumber >= INTERFACE_MAX) {
  901. free(cluster_name);
  902. snprintf (error_string_response, sizeof(error_string_response),
  903. "parse error in config: interface ring number %u is bigger than allowed maximum %u\n",
  904. ringnumber, INTERFACE_MAX - 1);
  905. *error_string = error_string_response;
  906. return -1;
  907. }
  908. /*
  909. * Get the bind net address
  910. */
  911. if (icmap_get_string(iter_key, &str) == CS_OK) {
  912. res = totemip_parse (&totem_config->interfaces[ringnumber].bindnet, str,
  913. totem_config->ip_version);
  914. free(str);
  915. }
  916. /*
  917. * Get interface multicast address
  918. */
  919. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", ringnumber);
  920. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  921. res = totemip_parse (&totem_config->interfaces[ringnumber].mcast_addr, str, totem_config->ip_version);
  922. free(str);
  923. } else {
  924. /*
  925. * User not specified address -> autogenerate one from cluster_name key
  926. * (if available)
  927. */
  928. res = get_cluster_mcast_addr (cluster_name,
  929. ringnumber,
  930. totem_config->ip_version,
  931. &totem_config->interfaces[ringnumber].mcast_addr);
  932. if (res != 0) {
  933. *error_string = "Can't autogenerate multicast address";
  934. return -1;
  935. }
  936. }
  937. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.broadcast", ringnumber);
  938. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  939. if (strcmp (str, "yes") == 0) {
  940. totem_config->broadcast_use = 1;
  941. }
  942. free(str);
  943. }
  944. /*
  945. * Get mcast port
  946. */
  947. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", ringnumber);
  948. if (icmap_get_uint16(tmp_key, &totem_config->interfaces[ringnumber].ip_port) != CS_OK) {
  949. if (totem_config->broadcast_use) {
  950. totem_config->interfaces[ringnumber].ip_port = DEFAULT_PORT + (2 * ringnumber);
  951. } else {
  952. totem_config->interfaces[ringnumber].ip_port = DEFAULT_PORT;
  953. }
  954. }
  955. /*
  956. * Get the TTL
  957. */
  958. totem_config->interfaces[ringnumber].ttl = 1;
  959. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.ttl", ringnumber);
  960. if (icmap_get_uint8(tmp_key, &u8) == CS_OK) {
  961. totem_config->interfaces[ringnumber].ttl = u8;
  962. }
  963. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.member.", ringnumber);
  964. member_iter = icmap_iter_init(tmp_key);
  965. while ((member_iter_key = icmap_iter_next(member_iter, NULL, NULL)) != NULL) {
  966. if (member_count == 0) {
  967. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  968. free(str);
  969. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_IGNORED;
  970. break;
  971. } else {
  972. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_DEPRECATED;
  973. }
  974. }
  975. if (icmap_get_string(member_iter_key, &str) == CS_OK) {
  976. res = totemip_parse (&totem_config->interfaces[ringnumber].member_list[member_count++],
  977. str, totem_config->ip_version);
  978. }
  979. }
  980. icmap_iter_finalize(member_iter);
  981. totem_config->interfaces[ringnumber].member_count = member_count;
  982. totem_config->interface_count++;
  983. }
  984. icmap_iter_finalize(iter);
  985. /*
  986. * Use broadcast is global, so if set, make sure to fill mcast addr correctly
  987. */
  988. if (totem_config->broadcast_use) {
  989. for (ringnumber = 0; ringnumber < totem_config->interface_count; ringnumber++) {
  990. totemip_parse (&totem_config->interfaces[ringnumber].mcast_addr,
  991. "255.255.255.255", 0);
  992. }
  993. }
  994. /*
  995. * Store automatically generated items back to icmap
  996. */
  997. for (i = 0; i < totem_config->interface_count; i++) {
  998. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", i);
  999. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  1000. free(str);
  1001. } else {
  1002. str = (char *)totemip_print(&totem_config->interfaces[i].mcast_addr);
  1003. icmap_set_string(tmp_key, str);
  1004. }
  1005. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", i);
  1006. if (icmap_get_uint16(tmp_key, &u16) != CS_OK) {
  1007. icmap_set_uint16(tmp_key, totem_config->interfaces[i].ip_port);
  1008. }
  1009. }
  1010. totem_config->transport_number = TOTEM_TRANSPORT_UDP;
  1011. if (icmap_get_string("totem.transport", &str) == CS_OK) {
  1012. if (strcmp (str, "udpu") == 0) {
  1013. totem_config->transport_number = TOTEM_TRANSPORT_UDPU;
  1014. }
  1015. if (strcmp (str, "iba") == 0) {
  1016. totem_config->transport_number = TOTEM_TRANSPORT_RDMA;
  1017. }
  1018. free(str);
  1019. }
  1020. free(cluster_name);
  1021. /*
  1022. * Check existence of nodelist
  1023. */
  1024. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  1025. free(str);
  1026. /*
  1027. * find local node
  1028. */
  1029. local_node_pos = find_local_node_in_nodelist(totem_config);
  1030. if (local_node_pos != -1) {
  1031. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  1032. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", local_node_pos);
  1033. nodeid_set = (totem_config->node_id != 0);
  1034. if (icmap_get_uint32(tmp_key, &totem_config->node_id) == CS_OK && nodeid_set) {
  1035. *warnings |= TOTEM_CONFIG_WARNING_TOTEM_NODEID_IGNORED;
  1036. }
  1037. /*
  1038. * Make localnode ring0_addr read only, so we can be sure that local
  1039. * node never changes. If rebinding to other IP would be in future
  1040. * supported, this must be changed and handled properly!
  1041. */
  1042. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", local_node_pos);
  1043. icmap_set_ro_access(tmp_key, 0, 1);
  1044. icmap_set_ro_access("nodelist.local_node_pos", 0, 1);
  1045. }
  1046. put_nodelist_members_to_config(totem_config, 0);
  1047. }
  1048. /*
  1049. * Get things that might change in the future (and can depend on totem_config->interfaces);
  1050. */
  1051. totem_volatile_config_read(totem_config, NULL);
  1052. icmap_set_uint8("config.totemconfig_reload_in_progress", 0);
  1053. add_totem_config_notification(totem_config);
  1054. return 0;
  1055. }
  1056. int totem_config_validate (
  1057. struct totem_config *totem_config,
  1058. const char **error_string)
  1059. {
  1060. static char local_error_reason[512];
  1061. char parse_error[512];
  1062. const char *error_reason = local_error_reason;
  1063. int i, j;
  1064. unsigned int interface_max = INTERFACE_MAX;
  1065. unsigned int port1, port2;
  1066. if (totem_config->interface_count == 0) {
  1067. error_reason = "No interfaces defined";
  1068. goto parse_error;
  1069. }
  1070. for (i = 0; i < totem_config->interface_count; i++) {
  1071. /*
  1072. * Some error checking of parsed data to make sure its valid
  1073. */
  1074. struct totem_ip_address null_addr;
  1075. memset (&null_addr, 0, sizeof (struct totem_ip_address));
  1076. if ((totem_config->transport_number == 0) &&
  1077. memcmp (&totem_config->interfaces[i].mcast_addr, &null_addr,
  1078. sizeof (struct totem_ip_address)) == 0) {
  1079. error_reason = "No multicast address specified";
  1080. goto parse_error;
  1081. }
  1082. if (totem_config->interfaces[i].ip_port == 0) {
  1083. error_reason = "No multicast port specified";
  1084. goto parse_error;
  1085. }
  1086. if (totem_config->interfaces[i].ttl > 255) {
  1087. error_reason = "Invalid TTL (should be 0..255)";
  1088. goto parse_error;
  1089. }
  1090. if (totem_config->transport_number != TOTEM_TRANSPORT_UDP &&
  1091. totem_config->interfaces[i].ttl != 1) {
  1092. error_reason = "Can only set ttl on multicast transport types";
  1093. goto parse_error;
  1094. }
  1095. if (totem_config->interfaces[i].mcast_addr.family == AF_INET6 &&
  1096. totem_config->node_id == 0) {
  1097. error_reason = "An IPV6 network requires that a node ID be specified.";
  1098. goto parse_error;
  1099. }
  1100. if (totem_config->broadcast_use == 0 && totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1101. if (totem_config->interfaces[i].mcast_addr.family != totem_config->interfaces[i].bindnet.family) {
  1102. error_reason = "Multicast address family does not match bind address family";
  1103. goto parse_error;
  1104. }
  1105. if (totemip_is_mcast (&totem_config->interfaces[i].mcast_addr) != 0) {
  1106. error_reason = "mcastaddr is not a correct multicast address.";
  1107. goto parse_error;
  1108. }
  1109. }
  1110. if (totem_config->interfaces[0].bindnet.family != totem_config->interfaces[i].bindnet.family) {
  1111. error_reason = "Not all bind address belong to the same IP family";
  1112. goto parse_error;
  1113. }
  1114. /*
  1115. * Ensure mcast address/port differs
  1116. */
  1117. if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1118. for (j = i + 1; j < totem_config->interface_count; j++) {
  1119. port1 = totem_config->interfaces[i].ip_port;
  1120. port2 = totem_config->interfaces[j].ip_port;
  1121. if (totemip_equal(&totem_config->interfaces[i].mcast_addr,
  1122. &totem_config->interfaces[j].mcast_addr) &&
  1123. (((port1 > port2 ? port1 : port2) - (port1 < port2 ? port1 : port2)) <= 1)) {
  1124. error_reason = "Interfaces multicast address/port pair must differ";
  1125. goto parse_error;
  1126. }
  1127. }
  1128. }
  1129. }
  1130. if (totem_config->version != 2) {
  1131. error_reason = "This totem parser can only parse version 2 configurations.";
  1132. goto parse_error;
  1133. }
  1134. if (totem_volatile_config_validate(totem_config, error_string) == -1) {
  1135. return (-1);
  1136. }
  1137. if (check_for_duplicate_nodeids(totem_config, error_string) == -1) {
  1138. return (-1);
  1139. }
  1140. /*
  1141. * RRP values validation
  1142. */
  1143. if (strcmp (totem_config->rrp_mode, "none") &&
  1144. strcmp (totem_config->rrp_mode, "active") &&
  1145. strcmp (totem_config->rrp_mode, "passive")) {
  1146. snprintf (local_error_reason, sizeof(local_error_reason),
  1147. "The RRP mode \"%s\" specified is invalid. It must be none, active, or passive.\n", totem_config->rrp_mode);
  1148. goto parse_error;
  1149. }
  1150. if (strcmp (totem_config->rrp_mode, "none") == 0) {
  1151. interface_max = 1;
  1152. }
  1153. if (interface_max < totem_config->interface_count) {
  1154. snprintf (parse_error, sizeof(parse_error),
  1155. "%d is too many configured interfaces for the rrp_mode setting %s.",
  1156. totem_config->interface_count,
  1157. totem_config->rrp_mode);
  1158. error_reason = parse_error;
  1159. goto parse_error;
  1160. }
  1161. if (totem_config->net_mtu == 0) {
  1162. totem_config->net_mtu = 1500;
  1163. }
  1164. return 0;
  1165. parse_error:
  1166. snprintf (error_string_response, sizeof(error_string_response),
  1167. "parse error in config: %s\n", error_reason);
  1168. *error_string = error_string_response;
  1169. return (-1);
  1170. }
  1171. static int read_keyfile (
  1172. const char *key_location,
  1173. struct totem_config *totem_config,
  1174. const char **error_string)
  1175. {
  1176. int fd;
  1177. int res;
  1178. ssize_t expected_key_len = sizeof (totem_config->private_key);
  1179. int saved_errno;
  1180. char error_str[100];
  1181. const char *error_ptr;
  1182. fd = open (key_location, O_RDONLY);
  1183. if (fd == -1) {
  1184. error_ptr = qb_strerror_r(errno, error_str, sizeof(error_str));
  1185. snprintf (error_string_response, sizeof(error_string_response),
  1186. "Could not open %s: %s\n",
  1187. key_location, error_ptr);
  1188. goto parse_error;
  1189. }
  1190. res = read (fd, totem_config->private_key, expected_key_len);
  1191. saved_errno = errno;
  1192. close (fd);
  1193. if (res == -1) {
  1194. error_ptr = qb_strerror_r (saved_errno, error_str, sizeof(error_str));
  1195. snprintf (error_string_response, sizeof(error_string_response),
  1196. "Could not read %s: %s\n",
  1197. key_location, error_ptr);
  1198. goto parse_error;
  1199. }
  1200. totem_config->private_key_len = expected_key_len;
  1201. if (res != expected_key_len) {
  1202. snprintf (error_string_response, sizeof(error_string_response),
  1203. "Could only read %d bits of 1024 bits from %s.\n",
  1204. res * 8, key_location);
  1205. goto parse_error;
  1206. }
  1207. return 0;
  1208. parse_error:
  1209. *error_string = error_string_response;
  1210. return (-1);
  1211. }
  1212. int totem_config_keyread (
  1213. struct totem_config *totem_config,
  1214. const char **error_string)
  1215. {
  1216. int got_key = 0;
  1217. char *key_location = NULL;
  1218. int res;
  1219. size_t key_len;
  1220. memset (totem_config->private_key, 0, 128);
  1221. totem_config->private_key_len = 128;
  1222. if (strcmp(totem_config->crypto_cipher_type, "none") == 0 &&
  1223. strcmp(totem_config->crypto_hash_type, "none") == 0) {
  1224. return (0);
  1225. }
  1226. /* cmap may store the location of the key file */
  1227. if (icmap_get_string("totem.keyfile", &key_location) == CS_OK) {
  1228. res = read_keyfile(key_location, totem_config, error_string);
  1229. free(key_location);
  1230. if (res) {
  1231. goto key_error;
  1232. }
  1233. got_key = 1;
  1234. } else { /* Or the key itself may be in the cmap */
  1235. if (icmap_get("totem.key", NULL, &key_len, NULL) == CS_OK) {
  1236. if (key_len > sizeof (totem_config->private_key)) {
  1237. sprintf(error_string_response, "key is too long");
  1238. goto key_error;
  1239. }
  1240. if (icmap_get("totem.key", totem_config->private_key, &key_len, NULL) == CS_OK) {
  1241. totem_config->private_key_len = key_len;
  1242. got_key = 1;
  1243. } else {
  1244. sprintf(error_string_response, "can't store private key");
  1245. goto key_error;
  1246. }
  1247. }
  1248. }
  1249. /* In desperation we read the default filename */
  1250. if (!got_key) {
  1251. const char *filename = getenv("COROSYNC_TOTEM_AUTHKEY_FILE");
  1252. if (!filename)
  1253. filename = COROSYSCONFDIR "/authkey";
  1254. res = read_keyfile(filename, totem_config, error_string);
  1255. if (res)
  1256. goto key_error;
  1257. }
  1258. return (0);
  1259. key_error:
  1260. *error_string = error_string_response;
  1261. return (-1);
  1262. }
  1263. static void debug_dump_totem_config(const struct totem_config *totem_config)
  1264. {
  1265. log_printf(LOGSYS_LEVEL_DEBUG, "Token Timeout (%d ms) retransmit timeout (%d ms)",
  1266. totem_config->token_timeout, totem_config->token_retransmit_timeout);
  1267. log_printf(LOGSYS_LEVEL_DEBUG, "token hold (%d ms) retransmits before loss (%d retrans)",
  1268. totem_config->token_hold_timeout, totem_config->token_retransmits_before_loss_const);
  1269. log_printf(LOGSYS_LEVEL_DEBUG, "join (%d ms) send_join (%d ms) consensus (%d ms) merge (%d ms)",
  1270. totem_config->join_timeout, totem_config->send_join_timeout, totem_config->consensus_timeout,
  1271. totem_config->merge_timeout);
  1272. log_printf(LOGSYS_LEVEL_DEBUG, "downcheck (%d ms) fail to recv const (%d msgs)",
  1273. totem_config->downcheck_timeout, totem_config->fail_to_recv_const);
  1274. log_printf(LOGSYS_LEVEL_DEBUG,
  1275. "seqno unchanged const (%d rotations) Maximum network MTU %d",
  1276. totem_config->seqno_unchanged_const, totem_config->net_mtu);
  1277. log_printf(LOGSYS_LEVEL_DEBUG,
  1278. "window size per rotation (%d messages) maximum messages per rotation (%d messages)",
  1279. totem_config->window_size, totem_config->max_messages);
  1280. log_printf(LOGSYS_LEVEL_DEBUG, "missed count const (%d messages)", totem_config->miss_count_const);
  1281. log_printf(LOGSYS_LEVEL_DEBUG, "RRP token expired timeout (%d ms)",
  1282. totem_config->rrp_token_expired_timeout);
  1283. log_printf(LOGSYS_LEVEL_DEBUG, "RRP token problem counter (%d ms)",
  1284. totem_config->rrp_problem_count_timeout);
  1285. log_printf(LOGSYS_LEVEL_DEBUG, "RRP threshold (%d problem count)",
  1286. totem_config->rrp_problem_count_threshold);
  1287. log_printf(LOGSYS_LEVEL_DEBUG, "RRP multicast threshold (%d problem count)",
  1288. totem_config->rrp_problem_count_mcast_threshold);
  1289. log_printf(LOGSYS_LEVEL_DEBUG, "RRP automatic recovery check timeout (%d ms)",
  1290. totem_config->rrp_autorecovery_check_timeout);
  1291. log_printf(LOGSYS_LEVEL_DEBUG, "RRP mode set to %s.",
  1292. totem_config->rrp_mode);
  1293. log_printf(LOGSYS_LEVEL_DEBUG, "heartbeat_failures_allowed (%d)",
  1294. totem_config->heartbeat_failures_allowed);
  1295. log_printf(LOGSYS_LEVEL_DEBUG, "max_network_delay (%d ms)", totem_config->max_network_delay);
  1296. }
  1297. static void totem_change_notify(
  1298. int32_t event,
  1299. const char *key_name,
  1300. struct icmap_notify_value new_val,
  1301. struct icmap_notify_value old_val,
  1302. void *user_data)
  1303. {
  1304. struct totem_config *totem_config = (struct totem_config *)user_data;
  1305. uint32_t *param;
  1306. uint8_t reloading;
  1307. const char *deleted_key = NULL;
  1308. const char *error_string;
  1309. /*
  1310. * If a full reload is in progress then don't do anything until it's done and
  1311. * can reconfigure it all atomically
  1312. */
  1313. if (icmap_get_uint8("config.reload_in_progress", &reloading) == CS_OK && reloading)
  1314. return;
  1315. param = totem_get_param_by_name((struct totem_config *)user_data, key_name);
  1316. /*
  1317. * Process change only if changed key is found in totem_config (-> param is not NULL)
  1318. * or for special key token_coefficient. token_coefficient key is not stored in
  1319. * totem_config, but it is used for computation of token timeout.
  1320. */
  1321. if (!param && strcmp(key_name, "totem.token_coefficient") != 0)
  1322. return;
  1323. /*
  1324. * Values other than UINT32 are not supported, or needed (yet)
  1325. */
  1326. switch (event) {
  1327. case ICMAP_TRACK_DELETE:
  1328. deleted_key = key_name;
  1329. break;
  1330. case ICMAP_TRACK_ADD:
  1331. case ICMAP_TRACK_MODIFY:
  1332. deleted_key = NULL;
  1333. break;
  1334. default:
  1335. break;
  1336. }
  1337. totem_volatile_config_read (totem_config, deleted_key);
  1338. log_printf(LOGSYS_LEVEL_DEBUG, "Totem related config key changed. Dumping actual totem config.");
  1339. debug_dump_totem_config(totem_config);
  1340. if (totem_volatile_config_validate(totem_config, &error_string) == -1) {
  1341. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1342. /*
  1343. * TODO: Consider corosync exit and/or load defaults for volatile
  1344. * values. For now, log error seems to be enough
  1345. */
  1346. }
  1347. }
  1348. static void totem_reload_notify(
  1349. int32_t event,
  1350. const char *key_name,
  1351. struct icmap_notify_value new_val,
  1352. struct icmap_notify_value old_val,
  1353. void *user_data)
  1354. {
  1355. struct totem_config *totem_config = (struct totem_config *)user_data;
  1356. uint32_t local_node_pos;
  1357. const char *error_string;
  1358. /* Reload has completed */
  1359. if (*(uint8_t *)new_val.data == 0) {
  1360. put_nodelist_members_to_config (totem_config, 1);
  1361. totem_volatile_config_read (totem_config, NULL);
  1362. log_printf(LOGSYS_LEVEL_DEBUG, "Configuration reloaded. Dumping actual totem config.");
  1363. debug_dump_totem_config(totem_config);
  1364. if (totem_volatile_config_validate(totem_config, &error_string) == -1) {
  1365. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1366. /*
  1367. * TODO: Consider corosync exit and/or load defaults for volatile
  1368. * values. For now, log error seems to be enough
  1369. */
  1370. }
  1371. /* Reinstate the local_node_pos */
  1372. local_node_pos = find_local_node_in_nodelist(totem_config);
  1373. if (local_node_pos != -1) {
  1374. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  1375. }
  1376. icmap_set_uint8("config.totemconfig_reload_in_progress", 0);
  1377. } else {
  1378. icmap_set_uint8("config.totemconfig_reload_in_progress", 1);
  1379. }
  1380. }
  1381. static void add_totem_config_notification(struct totem_config *totem_config)
  1382. {
  1383. icmap_track_t icmap_track;
  1384. icmap_track_add("totem.",
  1385. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1386. totem_change_notify,
  1387. totem_config,
  1388. &icmap_track);
  1389. icmap_track_add("config.reload_in_progress",
  1390. ICMAP_TRACK_ADD | ICMAP_TRACK_MODIFY,
  1391. totem_reload_notify,
  1392. totem_config,
  1393. &icmap_track);
  1394. icmap_track_add("nodelist.node.",
  1395. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1396. nodelist_dynamic_notify,
  1397. (void *)totem_config,
  1398. &icmap_track);
  1399. }