totemconfig.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  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 <qb/qblist.h>
  51. #include <qb/qbdefs.h>
  52. #include <libknet.h>
  53. #include <corosync/totem/totem.h>
  54. #include <corosync/config.h>
  55. #include <corosync/logsys.h>
  56. #include <corosync/icmap.h>
  57. #include "util.h"
  58. #include "totemconfig.h"
  59. #define TOKEN_RETRANSMITS_BEFORE_LOSS_CONST 4
  60. #define TOKEN_TIMEOUT 1000
  61. #define TOKEN_COEFFICIENT 650
  62. #define JOIN_TIMEOUT 50
  63. #define MERGE_TIMEOUT 200
  64. #define DOWNCHECK_TIMEOUT 1000
  65. #define FAIL_TO_RECV_CONST 2500
  66. #define SEQNO_UNCHANGED_CONST 30
  67. #define MINIMUM_TIMEOUT (int)(1000/HZ)*3
  68. #define MAX_NETWORK_DELAY 50
  69. #define WINDOW_SIZE 50
  70. #define MAX_MESSAGES 17
  71. #define MISS_COUNT_CONST 5
  72. /* These currently match the defaults in libknet.h */
  73. #define KNET_PING_INTERVAL 1000
  74. #define KNET_PING_TIMEOUT 2000
  75. #define KNET_PING_PRECISION 2048
  76. #define KNET_PONG_COUNT 2
  77. #define KNET_PMTUD_INTERVAL 30
  78. #define KNET_DEFAULT_TRANSPORT KNET_TRANSPORT_UDP
  79. #define DEFAULT_PORT 5405
  80. static char error_string_response[512];
  81. static void add_totem_config_notification(struct totem_config *totem_config);
  82. static void *totem_get_param_by_name(struct totem_config *totem_config, const char *param_name)
  83. {
  84. if (strcmp(param_name, "totem.token") == 0)
  85. return &totem_config->token_timeout;
  86. if (strcmp(param_name, "totem.token_retransmit") == 0)
  87. return &totem_config->token_retransmit_timeout;
  88. if (strcmp(param_name, "totem.hold") == 0)
  89. return &totem_config->token_hold_timeout;
  90. if (strcmp(param_name, "totem.token_retransmits_before_loss_const") == 0)
  91. return &totem_config->token_retransmits_before_loss_const;
  92. if (strcmp(param_name, "totem.join") == 0)
  93. return &totem_config->join_timeout;
  94. if (strcmp(param_name, "totem.send_join") == 0)
  95. return &totem_config->send_join_timeout;
  96. if (strcmp(param_name, "totem.consensus") == 0)
  97. return &totem_config->consensus_timeout;
  98. if (strcmp(param_name, "totem.merge") == 0)
  99. return &totem_config->merge_timeout;
  100. if (strcmp(param_name, "totem.downcheck") == 0)
  101. return &totem_config->downcheck_timeout;
  102. if (strcmp(param_name, "totem.fail_recv_const") == 0)
  103. return &totem_config->fail_to_recv_const;
  104. if (strcmp(param_name, "totem.seqno_unchanged_const") == 0)
  105. return &totem_config->seqno_unchanged_const;
  106. if (strcmp(param_name, "totem.heartbeat_failures_allowed") == 0)
  107. return &totem_config->heartbeat_failures_allowed;
  108. if (strcmp(param_name, "totem.max_network_delay") == 0)
  109. return &totem_config->max_network_delay;
  110. if (strcmp(param_name, "totem.window_size") == 0)
  111. return &totem_config->window_size;
  112. if (strcmp(param_name, "totem.max_messages") == 0)
  113. return &totem_config->max_messages;
  114. if (strcmp(param_name, "totem.miss_count_const") == 0)
  115. return &totem_config->miss_count_const;
  116. if (strcmp(param_name, "totem.knet_pmtud_interval") == 0)
  117. return &totem_config->knet_pmtud_interval;
  118. if (strcmp(param_name, "totem.knet_compression_threshold") == 0)
  119. return &totem_config->knet_compression_threshold;
  120. if (strcmp(param_name, "totem.knet_compression_level") == 0)
  121. return &totem_config->knet_compression_level;
  122. if (strcmp(param_name, "totem.knet_compression_model") == 0)
  123. return &totem_config->knet_compression_model;
  124. return NULL;
  125. }
  126. /*
  127. * Read key_name from icmap. If key is not found or key_name == delete_key or if allow_zero is false
  128. * and readed value is zero, default value is used and stored into totem_config.
  129. */
  130. static void totem_volatile_config_set_uint32_value (struct totem_config *totem_config,
  131. const char *key_name, const char *deleted_key, unsigned int default_value,
  132. int allow_zero_value)
  133. {
  134. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  135. if (icmap_get_uint32(key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  136. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  137. (!allow_zero_value && *(uint32_t *)totem_get_param_by_name(totem_config, key_name) == 0)) {
  138. *(uint32_t *)totem_get_param_by_name(totem_config, key_name) = default_value;
  139. }
  140. /*
  141. * Store totem_config value to cmap runtime section
  142. */
  143. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  144. /*
  145. * This shouldn't happen
  146. */
  147. return ;
  148. }
  149. strcpy(runtime_key_name, "runtime.config.");
  150. strcat(runtime_key_name, key_name);
  151. icmap_set_uint32(runtime_key_name, *(uint32_t *)totem_get_param_by_name(totem_config, key_name));
  152. }
  153. static void totem_volatile_config_set_int32_value (struct totem_config *totem_config,
  154. const char *key_name, const char *deleted_key, int default_value,
  155. int allow_zero_value)
  156. {
  157. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  158. if (icmap_get_int32(key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  159. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  160. (!allow_zero_value && *(int32_t *)totem_get_param_by_name(totem_config, key_name) == 0)) {
  161. *(int32_t *)totem_get_param_by_name(totem_config, key_name) = default_value;
  162. }
  163. /*
  164. * Store totem_config value to cmap runtime section
  165. */
  166. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  167. /*
  168. * This shouldn't happen
  169. */
  170. return ;
  171. }
  172. strcpy(runtime_key_name, "runtime.config.");
  173. strcat(runtime_key_name, key_name);
  174. icmap_set_int32(runtime_key_name, *(int32_t *)totem_get_param_by_name(totem_config, key_name));
  175. }
  176. static void totem_volatile_config_set_string_value (struct totem_config *totem_config,
  177. const char *key_name, const char *deleted_key, const char *default_value)
  178. {
  179. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  180. void **config_value;
  181. void *old_config_ptr;
  182. config_value = totem_get_param_by_name(totem_config, key_name);
  183. old_config_ptr = *config_value;
  184. if (icmap_get_string(key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  185. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0)) {
  186. /* Need to strdup() here so that the free() below works for a default and a configured value */
  187. *config_value = strdup(default_value);
  188. }
  189. free(old_config_ptr);
  190. /*
  191. * Store totem_config value to cmap runtime section
  192. */
  193. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  194. /*
  195. * This shouldn't happen
  196. */
  197. return ;
  198. }
  199. strcpy(runtime_key_name, "runtime.config.");
  200. strcat(runtime_key_name, key_name);
  201. icmap_set_string(runtime_key_name, (char *)*config_value);
  202. }
  203. /*
  204. * Read and validate config values from cmap and store them into totem_config. If key doesn't exists,
  205. * default value is stored. deleted_key is name of key beeing processed by delete operation
  206. * from cmap. It is considered as non existing even if it can be read. Can be NULL.
  207. */
  208. static void totem_volatile_config_read (struct totem_config *totem_config, const char *deleted_key)
  209. {
  210. uint32_t u32;
  211. totem_volatile_config_set_uint32_value(totem_config, "totem.token_retransmits_before_loss_const", deleted_key,
  212. TOKEN_RETRANSMITS_BEFORE_LOSS_CONST, 0);
  213. totem_volatile_config_set_uint32_value(totem_config, "totem.token", deleted_key, TOKEN_TIMEOUT, 0);
  214. if (totem_config->interfaces[0].member_count > 2) {
  215. u32 = TOKEN_COEFFICIENT;
  216. icmap_get_uint32("totem.token_coefficient", &u32);
  217. totem_config->token_timeout += (totem_config->interfaces[0].member_count - 2) * u32;
  218. /*
  219. * Store totem_config value to cmap runtime section
  220. */
  221. icmap_set_uint32("runtime.config.totem.token", totem_config->token_timeout);
  222. }
  223. totem_volatile_config_set_uint32_value(totem_config, "totem.max_network_delay", deleted_key, MAX_NETWORK_DELAY, 0);
  224. totem_volatile_config_set_uint32_value(totem_config, "totem.window_size", deleted_key, WINDOW_SIZE, 0);
  225. totem_volatile_config_set_uint32_value(totem_config, "totem.max_messages", deleted_key, MAX_MESSAGES, 0);
  226. totem_volatile_config_set_uint32_value(totem_config, "totem.miss_count_const", deleted_key, MISS_COUNT_CONST, 0);
  227. totem_volatile_config_set_uint32_value(totem_config, "totem.knet_pmtud_interval", deleted_key, KNET_PMTUD_INTERVAL, 0);
  228. totem_volatile_config_set_uint32_value(totem_config, "totem.token_retransmit", deleted_key,
  229. (int)(totem_config->token_timeout / (totem_config->token_retransmits_before_loss_const + 0.2)), 0);
  230. totem_volatile_config_set_uint32_value(totem_config, "totem.hold", deleted_key,
  231. (int)(totem_config->token_retransmit_timeout * 0.8 - (1000/HZ)), 0);
  232. totem_volatile_config_set_uint32_value(totem_config, "totem.join", deleted_key, JOIN_TIMEOUT, 0);
  233. totem_volatile_config_set_uint32_value(totem_config, "totem.consensus", deleted_key,
  234. (int)(float)(1.2 * totem_config->token_timeout), 0);
  235. totem_volatile_config_set_uint32_value(totem_config, "totem.merge", deleted_key, MERGE_TIMEOUT, 0);
  236. totem_volatile_config_set_uint32_value(totem_config, "totem.downcheck", deleted_key, DOWNCHECK_TIMEOUT, 0);
  237. totem_volatile_config_set_uint32_value(totem_config, "totem.fail_recv_const", deleted_key, FAIL_TO_RECV_CONST, 0);
  238. totem_volatile_config_set_uint32_value(totem_config, "totem.seqno_unchanged_const", deleted_key,
  239. SEQNO_UNCHANGED_CONST, 0);
  240. totem_volatile_config_set_uint32_value(totem_config, "totem.send_join", deleted_key, 0, 1);
  241. totem_volatile_config_set_uint32_value(totem_config, "totem.heartbeat_failures_allowed", deleted_key, 0, 1);
  242. totem_volatile_config_set_uint32_value(totem_config, "totem.knet_compression_threshold", deleted_key, 0, 1);
  243. totem_volatile_config_set_int32_value(totem_config, "totem.knet_compression_level", deleted_key, 0, 1);
  244. totem_volatile_config_set_string_value(totem_config, "totem.knet_compression_model", deleted_key, "none");
  245. }
  246. static int totem_volatile_config_validate (
  247. struct totem_config *totem_config,
  248. const char **error_string)
  249. {
  250. static char local_error_reason[512];
  251. const char *error_reason = local_error_reason;
  252. if (totem_config->max_network_delay < MINIMUM_TIMEOUT) {
  253. snprintf (local_error_reason, sizeof(local_error_reason),
  254. "The max_network_delay parameter (%d ms) may not be less than (%d ms).",
  255. totem_config->max_network_delay, MINIMUM_TIMEOUT);
  256. goto parse_error;
  257. }
  258. if (totem_config->token_timeout < MINIMUM_TIMEOUT) {
  259. snprintf (local_error_reason, sizeof(local_error_reason),
  260. "The token timeout parameter (%d ms) may not be less than (%d ms).",
  261. totem_config->token_timeout, MINIMUM_TIMEOUT);
  262. goto parse_error;
  263. }
  264. if (totem_config->token_retransmit_timeout < MINIMUM_TIMEOUT) {
  265. snprintf (local_error_reason, sizeof(local_error_reason),
  266. "The token retransmit timeout parameter (%d ms) may not be less than (%d ms).",
  267. totem_config->token_retransmit_timeout, MINIMUM_TIMEOUT);
  268. goto parse_error;
  269. }
  270. if (totem_config->token_hold_timeout < MINIMUM_TIMEOUT) {
  271. snprintf (local_error_reason, sizeof(local_error_reason),
  272. "The token hold timeout parameter (%d ms) may not be less than (%d ms).",
  273. totem_config->token_hold_timeout, MINIMUM_TIMEOUT);
  274. goto parse_error;
  275. }
  276. if (totem_config->join_timeout < MINIMUM_TIMEOUT) {
  277. snprintf (local_error_reason, sizeof(local_error_reason),
  278. "The join timeout parameter (%d ms) may not be less than (%d ms).",
  279. totem_config->join_timeout, MINIMUM_TIMEOUT);
  280. goto parse_error;
  281. }
  282. if (totem_config->consensus_timeout < MINIMUM_TIMEOUT) {
  283. snprintf (local_error_reason, sizeof(local_error_reason),
  284. "The consensus timeout parameter (%d ms) may not be less than (%d ms).",
  285. totem_config->consensus_timeout, MINIMUM_TIMEOUT);
  286. goto parse_error;
  287. }
  288. if (totem_config->consensus_timeout < totem_config->join_timeout) {
  289. snprintf (local_error_reason, sizeof(local_error_reason),
  290. "The consensus timeout parameter (%d ms) may not be less than join timeout (%d ms).",
  291. totem_config->consensus_timeout, totem_config->join_timeout);
  292. goto parse_error;
  293. }
  294. if (totem_config->merge_timeout < MINIMUM_TIMEOUT) {
  295. snprintf (local_error_reason, sizeof(local_error_reason),
  296. "The merge timeout parameter (%d ms) may not be less than (%d ms).",
  297. totem_config->merge_timeout, MINIMUM_TIMEOUT);
  298. goto parse_error;
  299. }
  300. if (totem_config->downcheck_timeout < MINIMUM_TIMEOUT) {
  301. snprintf (local_error_reason, sizeof(local_error_reason),
  302. "The downcheck timeout parameter (%d ms) may not be less than (%d ms).",
  303. totem_config->downcheck_timeout, MINIMUM_TIMEOUT);
  304. goto parse_error;
  305. }
  306. return 0;
  307. parse_error:
  308. snprintf (error_string_response, sizeof(error_string_response),
  309. "parse error in config: %s\n", error_reason);
  310. *error_string = error_string_response;
  311. return (-1);
  312. }
  313. static int totem_get_crypto(struct totem_config *totem_config)
  314. {
  315. char *str;
  316. const char *tmp_cipher;
  317. const char *tmp_hash;
  318. tmp_hash = "none";
  319. tmp_cipher = "none";
  320. if (icmap_get_string("totem.crypto_cipher", &str) == CS_OK) {
  321. if (strcmp(str, "none") == 0) {
  322. tmp_cipher = "none";
  323. }
  324. if (strcmp(str, "aes256") == 0) {
  325. tmp_cipher = "aes256";
  326. }
  327. if (strcmp(str, "aes192") == 0) {
  328. tmp_cipher = "aes192";
  329. }
  330. if (strcmp(str, "aes128") == 0) {
  331. tmp_cipher = "aes128";
  332. }
  333. if (strcmp(str, "3des") == 0) {
  334. tmp_cipher = "3des";
  335. }
  336. free(str);
  337. }
  338. if (icmap_get_string("totem.crypto_hash", &str) == CS_OK) {
  339. if (strcmp(str, "none") == 0) {
  340. tmp_hash = "none";
  341. }
  342. if (strcmp(str, "md5") == 0) {
  343. tmp_hash = "md5";
  344. }
  345. if (strcmp(str, "sha1") == 0) {
  346. tmp_hash = "sha1";
  347. }
  348. if (strcmp(str, "sha256") == 0) {
  349. tmp_hash = "sha256";
  350. }
  351. if (strcmp(str, "sha384") == 0) {
  352. tmp_hash = "sha384";
  353. }
  354. if (strcmp(str, "sha512") == 0) {
  355. tmp_hash = "sha512";
  356. }
  357. free(str);
  358. }
  359. if ((strcmp(tmp_cipher, "none") != 0) &&
  360. (strcmp(tmp_hash, "none") == 0)) {
  361. return -1;
  362. }
  363. free(totem_config->crypto_cipher_type);
  364. free(totem_config->crypto_hash_type);
  365. totem_config->crypto_cipher_type = strdup(tmp_cipher);
  366. totem_config->crypto_hash_type = strdup(tmp_hash);
  367. return 0;
  368. }
  369. static int totem_config_get_ip_version(struct totem_config *totem_config)
  370. {
  371. int res;
  372. char *str;
  373. res = AF_INET;
  374. if (totem_config->transport_number == TOTEM_TRANSPORT_KNET ||
  375. totem_config->transport_number == 0) {
  376. res = AF_UNSPEC;
  377. } else {
  378. if (icmap_get_string("totem.ip_version", &str) == CS_OK) {
  379. if (strcmp(str, "ipv4") == 0) {
  380. res = AF_INET;
  381. }
  382. if (strcmp(str, "ipv6") == 0) {
  383. res = AF_INET6;
  384. }
  385. free(str);
  386. }
  387. }
  388. return (res);
  389. }
  390. static uint16_t generate_cluster_id (const char *cluster_name)
  391. {
  392. int i;
  393. int value = 0;
  394. for (i = 0; i < strlen(cluster_name); i++) {
  395. value <<= 1;
  396. value += cluster_name[i];
  397. }
  398. return (value & 0xFFFF);
  399. }
  400. static int get_cluster_mcast_addr (
  401. const char *cluster_name,
  402. unsigned int linknumber,
  403. int ip_version,
  404. struct totem_ip_address *res)
  405. {
  406. uint16_t clusterid;
  407. char addr[INET6_ADDRSTRLEN + 1];
  408. int err;
  409. if (cluster_name == NULL) {
  410. return (-1);
  411. }
  412. clusterid = generate_cluster_id(cluster_name) + linknumber;
  413. memset (res, 0, sizeof(*res));
  414. switch (ip_version) {
  415. case AF_INET:
  416. snprintf(addr, sizeof(addr), "239.192.%d.%d", clusterid >> 8, clusterid % 0xFF);
  417. break;
  418. case AF_INET6:
  419. snprintf(addr, sizeof(addr), "ff15::%x", clusterid);
  420. break;
  421. default:
  422. /*
  423. * Unknown family
  424. */
  425. return (-1);
  426. }
  427. err = totemip_parse (res, addr, ip_version);
  428. return (err);
  429. }
  430. static unsigned int generate_nodeid_for_duplicate_test(
  431. struct totem_config *totem_config,
  432. char *addr)
  433. {
  434. unsigned int nodeid;
  435. struct totem_ip_address totemip;
  436. /* AF_INET hard-coded here because auto-generated nodeids
  437. are only for IPv4 */
  438. if (totemip_parse(&totemip, addr, AF_INET) != 0)
  439. return -1;
  440. memcpy (&nodeid, &totemip.addr, sizeof (unsigned int));
  441. #if __BYTE_ORDER == __LITTLE_ENDIAN
  442. nodeid = swab32 (nodeid);
  443. #endif
  444. if (totem_config->clear_node_high_bit) {
  445. nodeid &= 0x7FFFFFFF;
  446. }
  447. return nodeid;
  448. }
  449. static int check_for_duplicate_nodeids(
  450. struct totem_config *totem_config,
  451. const char **error_string)
  452. {
  453. icmap_iter_t iter;
  454. icmap_iter_t subiter;
  455. const char *iter_key;
  456. int res = 0;
  457. int retval = 0;
  458. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  459. char *ring0_addr=NULL;
  460. char *ring0_addr1=NULL;
  461. unsigned int node_pos;
  462. unsigned int node_pos1;
  463. unsigned int nodeid;
  464. unsigned int nodeid1;
  465. int autogenerated;
  466. iter = icmap_iter_init("nodelist.node.");
  467. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  468. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  469. if (res != 2) {
  470. continue;
  471. }
  472. if (strcmp(tmp_key, "ring0_addr") != 0) {
  473. continue;
  474. }
  475. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos);
  476. autogenerated = 0;
  477. if (icmap_get_uint32(tmp_key, &nodeid) != CS_OK) {
  478. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  479. if (icmap_get_string(tmp_key, &ring0_addr) != CS_OK) {
  480. continue;
  481. }
  482. /* Generate nodeid so we can check that auto-generated nodeids don't clash either */
  483. nodeid = generate_nodeid_for_duplicate_test(totem_config, ring0_addr);
  484. if (nodeid == -1) {
  485. continue;
  486. }
  487. autogenerated = 1;
  488. }
  489. node_pos1 = 0;
  490. subiter = icmap_iter_init("nodelist.node.");
  491. while (((iter_key = icmap_iter_next(subiter, NULL, NULL)) != NULL) && (node_pos1 < node_pos)) {
  492. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos1, tmp_key);
  493. if ((res != 2) || (node_pos1 >= node_pos)) {
  494. continue;
  495. }
  496. if (strcmp(tmp_key, "ring0_addr") != 0) {
  497. continue;
  498. }
  499. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos1);
  500. if (icmap_get_uint32(tmp_key, &nodeid1) != CS_OK) {
  501. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos1);
  502. if (icmap_get_string(tmp_key, &ring0_addr1) != CS_OK) {
  503. continue;
  504. }
  505. nodeid1 = generate_nodeid_for_duplicate_test(totem_config, ring0_addr1);
  506. if (nodeid1 == -1) {
  507. continue;
  508. }
  509. }
  510. if (nodeid == nodeid1) {
  511. retval = -1;
  512. snprintf (error_string_response, sizeof(error_string_response),
  513. "Nodeid %u%s%s%s appears twice in corosync.conf", nodeid,
  514. autogenerated?"(autogenerated from ":"",
  515. autogenerated?ring0_addr:"",
  516. autogenerated?")":"");
  517. log_printf (LOGSYS_LEVEL_ERROR, error_string_response);
  518. *error_string = error_string_response;
  519. break;
  520. }
  521. }
  522. icmap_iter_finalize(subiter);
  523. }
  524. icmap_iter_finalize(iter);
  525. return retval;
  526. }
  527. static int find_local_node_in_nodelist(struct totem_config *totem_config)
  528. {
  529. icmap_iter_t iter;
  530. const char *iter_key;
  531. int res = 0;
  532. unsigned int node_pos;
  533. int local_node_pos = -1;
  534. struct totem_ip_address bind_addr;
  535. int interface_up, interface_num;
  536. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  537. char *node_addr_str;
  538. struct totem_ip_address node_addr;
  539. res = totemip_iface_check(&totem_config->interfaces[0].bindnet,
  540. &bind_addr, &interface_up, &interface_num,
  541. totem_config->clear_node_high_bit);
  542. if (res == -1) {
  543. return (-1);
  544. }
  545. iter = icmap_iter_init("nodelist.node.");
  546. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  547. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  548. if (res != 2) {
  549. continue;
  550. }
  551. if (strcmp(tmp_key, "ring0_addr") != 0) {
  552. continue;
  553. }
  554. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  555. if (icmap_get_string(tmp_key, &node_addr_str) != CS_OK) {
  556. continue;
  557. }
  558. res = totemip_parse (&node_addr, node_addr_str, totem_config->ip_version);
  559. free(node_addr_str);
  560. if (res == -1) {
  561. continue ;
  562. }
  563. if (totemip_equal(&bind_addr, &node_addr)) {
  564. local_node_pos = node_pos;
  565. }
  566. }
  567. icmap_iter_finalize(iter);
  568. return (local_node_pos);
  569. }
  570. /*
  571. * Compute difference between two set of totem interface arrays. set1 and set2
  572. * are changed so for same ring, ip existing in both set1 and set2 are cleared
  573. * (set to 0), and ips which are only in set1 or set2 remains untouched.
  574. * totempg_node_add/remove is called.
  575. */
  576. static void compute_interfaces_diff(struct totem_interface *set1,
  577. struct totem_interface *set2)
  578. {
  579. int ring_no, set1_pos, set2_pos;
  580. struct totem_ip_address empty_ip_address;
  581. memset(&empty_ip_address, 0, sizeof(empty_ip_address));
  582. for (ring_no = 0; ring_no < INTERFACE_MAX; ring_no++) {
  583. if (!set1[ring_no].configured && !set2[ring_no].configured) {
  584. continue;
  585. }
  586. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  587. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  588. /*
  589. * For current ring_no remove all set1 items existing
  590. * in set2
  591. */
  592. if (memcmp(&set1[ring_no].member_list[set1_pos],
  593. &set2[ring_no].member_list[set2_pos],
  594. sizeof(struct totem_ip_address)) == 0) {
  595. memset(&set1[ring_no].member_list[set1_pos], 0,
  596. sizeof(struct totem_ip_address));
  597. memset(&set2[ring_no].member_list[set2_pos], 0,
  598. sizeof(struct totem_ip_address));
  599. }
  600. }
  601. }
  602. }
  603. for (ring_no = 0; ring_no < INTERFACE_MAX; ring_no++) {
  604. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  605. /*
  606. * All items which remained in set1 doesn't exists in set2 any longer so
  607. * node has to be removed.
  608. */
  609. if (memcmp(&set1[ring_no].member_list[set1_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  610. log_printf(LOGSYS_LEVEL_DEBUG,
  611. "removing dynamic member %s for ring %u",
  612. totemip_print(&set1[ring_no].member_list[set1_pos]),
  613. ring_no);
  614. totempg_member_remove(&set1[ring_no].member_list[set1_pos], ring_no);
  615. }
  616. }
  617. if (!set2[ring_no].configured) {
  618. continue;
  619. }
  620. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  621. /*
  622. * All items which remained in set2 doesn't existed in set1 so this is no node
  623. * and has to be added.
  624. */
  625. if (memcmp(&set2[ring_no].member_list[set2_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  626. log_printf(LOGSYS_LEVEL_DEBUG,
  627. "adding dynamic member %s for ring %u",
  628. totemip_print(&set2[ring_no].member_list[set2_pos]),
  629. ring_no);
  630. totempg_member_add(&set2[ring_no].member_list[set2_pos], ring_no);
  631. }
  632. }
  633. }
  634. }
  635. /*
  636. * Reconfigure links in totempg. Sets new local IP address and adds params for new links.
  637. */
  638. static void reconfigure_links(struct totem_config *totem_config)
  639. {
  640. int i;
  641. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  642. char *addr_string;
  643. struct totem_ip_address local_ip;
  644. int err;
  645. unsigned int local_node_pos = find_local_node_in_nodelist(totem_config);
  646. for (i = 0; i<INTERFACE_MAX; i++) {
  647. if (!totem_config->interfaces[i].configured) {
  648. continue;
  649. }
  650. log_printf(LOGSYS_LEVEL_INFO, "Configuring link %d\n", i);
  651. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring%u_addr", local_node_pos, i);
  652. if (icmap_get_string(tmp_key, &addr_string) != CS_OK) {
  653. continue;
  654. }
  655. err = totemip_parse(&local_ip, addr_string, AF_UNSPEC);
  656. if (err != 0) {
  657. continue;
  658. }
  659. local_ip.nodeid = totem_config->node_id;
  660. /* In case this is a new link, fill in the defaults if there was no interface{} section for it */
  661. if (!totem_config->interfaces[i].knet_link_priority)
  662. totem_config->interfaces[i].knet_link_priority = 1;
  663. if (!totem_config->interfaces[i].knet_ping_interval)
  664. totem_config->interfaces[i].knet_ping_interval = KNET_PING_INTERVAL;
  665. if (!totem_config->interfaces[i].knet_ping_timeout)
  666. totem_config->interfaces[i].knet_ping_timeout = KNET_PING_TIMEOUT;
  667. if (!totem_config->interfaces[i].knet_ping_precision)
  668. totem_config->interfaces[i].knet_ping_precision = KNET_PING_PRECISION;
  669. if (!totem_config->interfaces[i].knet_pong_count)
  670. totem_config->interfaces[i].knet_pong_count = KNET_PONG_COUNT;
  671. if (!totem_config->interfaces[i].knet_transport)
  672. totem_config->interfaces[i].knet_transport = KNET_TRANSPORT_UDP;
  673. if (!totem_config->interfaces[i].ip_port)
  674. totem_config->interfaces[i].ip_port = DEFAULT_PORT;
  675. totempg_iface_set(&local_ip, totem_config->interfaces[i].ip_port, i);
  676. }
  677. }
  678. static void put_nodelist_members_to_config(struct totem_config *totem_config, int reload)
  679. {
  680. icmap_iter_t iter, iter2;
  681. const char *iter_key, *iter_key2;
  682. int res = 0;
  683. unsigned int node_pos;
  684. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  685. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  686. char *node_addr_str;
  687. int member_count;
  688. unsigned int linknumber = 0;
  689. int i, j;
  690. struct totem_interface *new_interfaces = NULL;
  691. if (reload) {
  692. /*
  693. * We need to compute diff only for reload. Also for initial configuration
  694. * not all totem structures are initialized so corosync will crash during
  695. * member_add/remove
  696. */
  697. new_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  698. assert(new_interfaces != NULL);
  699. }
  700. /* Clear out nodelist so we can put the new one in if needed */
  701. for (i = 0; i < INTERFACE_MAX; i++) {
  702. for (j = 0; j < PROCESSOR_COUNT_MAX; j++) {
  703. memset(&totem_config->interfaces[i].member_list[j], 0, sizeof(struct totem_ip_address));
  704. }
  705. totem_config->interfaces[i].member_count = 0;
  706. }
  707. iter = icmap_iter_init("nodelist.node.");
  708. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  709. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  710. if (res != 2) {
  711. continue;
  712. }
  713. if (strcmp(tmp_key, "ring0_addr") != 0) {
  714. continue;
  715. }
  716. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  717. iter2 = icmap_iter_init(tmp_key);
  718. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  719. unsigned int nodeid;
  720. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos);
  721. if (icmap_get_uint32(tmp_key, &nodeid) != CS_OK) {
  722. }
  723. res = sscanf(iter_key2, "nodelist.node.%u.ring%u%s", &node_pos, &linknumber, tmp_key2);
  724. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  725. continue;
  726. }
  727. if (icmap_get_string(iter_key2, &node_addr_str) != CS_OK) {
  728. continue;
  729. }
  730. member_count = totem_config->interfaces[linknumber].member_count;
  731. res = totemip_parse(&totem_config->interfaces[linknumber].member_list[member_count],
  732. node_addr_str, totem_config->ip_version);
  733. if (res != -1) {
  734. totem_config->interfaces[linknumber].member_list[member_count].nodeid = nodeid;
  735. totem_config->interfaces[linknumber].member_count++;
  736. }
  737. totem_config->interfaces[linknumber].configured = 1;
  738. free(node_addr_str);
  739. }
  740. icmap_iter_finalize(iter2);
  741. }
  742. icmap_iter_finalize(iter);
  743. if (reload) {
  744. log_printf(LOGSYS_LEVEL_DEBUG, "About to reconfigure links from nodelist.\n");
  745. reconfigure_links(totem_config);
  746. memcpy(new_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  747. compute_interfaces_diff(totem_config->orig_interfaces, new_interfaces);
  748. free(new_interfaces);
  749. }
  750. }
  751. static void nodelist_dynamic_notify(
  752. int32_t event,
  753. const char *key_name,
  754. struct icmap_notify_value new_val,
  755. struct icmap_notify_value old_val,
  756. void *user_data)
  757. {
  758. int res;
  759. unsigned int ring_no;
  760. unsigned int member_no;
  761. char tmp_str[ICMAP_KEYNAME_MAXLEN];
  762. uint8_t reloading;
  763. struct totem_config *totem_config = (struct totem_config *)user_data;
  764. /*
  765. * If a full reload is in progress then don't do anything until it's done and
  766. * can reconfigure it all atomically
  767. */
  768. if (icmap_get_uint8("config.totemconfig_reload_in_progress", &reloading) == CS_OK && reloading) {
  769. return ;
  770. }
  771. res = sscanf(key_name, "nodelist.node.%u.ring%u%s", &member_no, &ring_no, tmp_str);
  772. if (res != 3)
  773. return ;
  774. if (strcmp(tmp_str, "_addr") != 0) {
  775. return;
  776. }
  777. put_nodelist_members_to_config(totem_config, 1);
  778. }
  779. /*
  780. * Tries to find node (node_pos) in config nodelist which address matches any
  781. * local interface. Address can be stored in ring0_addr or if ipaddr_key_prefix is not NULL
  782. * key with prefix ipaddr_key is used (there can be multiuple of them)
  783. * This function differs * from find_local_node_in_nodelist because it doesn't need bindnetaddr,
  784. * but doesn't work when bind addr is network address (so IP must be exact
  785. * match).
  786. *
  787. * Returns 1 on success (address was found, node_pos is then correctly set) or 0 on failure.
  788. */
  789. int totem_config_find_local_addr_in_nodelist(struct totem_config *totem_config, const char *ipaddr_key_prefix, unsigned int *node_pos)
  790. {
  791. struct qb_list_head addrs;
  792. struct totem_ip_if_address *if_addr;
  793. icmap_iter_t iter, iter2;
  794. const char *iter_key, *iter_key2;
  795. struct qb_list_head *list;
  796. const char *ipaddr_key;
  797. int ip_version;
  798. struct totem_ip_address node_addr;
  799. char *node_addr_str;
  800. int node_found = 0;
  801. int res = 0;
  802. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  803. if (totemip_getifaddrs(&addrs) == -1) {
  804. return 0;
  805. }
  806. ip_version = totem_config_get_ip_version(totem_config);
  807. iter = icmap_iter_init("nodelist.node.");
  808. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  809. res = sscanf(iter_key, "nodelist.node.%u.%s", node_pos, tmp_key);
  810. if (res != 2) {
  811. continue;
  812. }
  813. if (strcmp(tmp_key, "ring0_addr") != 0) {
  814. continue;
  815. }
  816. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  817. continue ;
  818. }
  819. free(node_addr_str);
  820. /*
  821. * ring0_addr found -> let's iterate thru ipaddr_key_prefix
  822. */
  823. snprintf(tmp_key, sizeof(tmp_key), "nodelist.node.%u.%s", *node_pos,
  824. (ipaddr_key_prefix != NULL ? ipaddr_key_prefix : "ring0_addr"));
  825. iter2 = icmap_iter_init(tmp_key);
  826. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  827. /*
  828. * ring0_addr must be exact match, not prefix
  829. */
  830. ipaddr_key = (ipaddr_key_prefix != NULL ? iter_key2 : tmp_key);
  831. if (icmap_get_string(ipaddr_key, &node_addr_str) != CS_OK) {
  832. continue ;
  833. }
  834. if (totemip_parse(&node_addr, node_addr_str, ip_version) == -1) {
  835. free(node_addr_str);
  836. continue ;
  837. }
  838. free(node_addr_str);
  839. /*
  840. * Try to match ip with if_addrs
  841. */
  842. node_found = 0;
  843. qb_list_for_each(list, &(addrs)) {
  844. if_addr = qb_list_entry(list, struct totem_ip_if_address, list);
  845. if (totemip_equal(&node_addr, &if_addr->ip_addr)) {
  846. node_found = 1;
  847. break;
  848. }
  849. }
  850. if (node_found) {
  851. break ;
  852. }
  853. }
  854. icmap_iter_finalize(iter2);
  855. if (node_found) {
  856. break ;
  857. }
  858. }
  859. icmap_iter_finalize(iter);
  860. totemip_freeifaddrs(&addrs);
  861. return (node_found);
  862. }
  863. static void config_convert_nodelist_to_interface(struct totem_config *totem_config)
  864. {
  865. int res = 0;
  866. unsigned int node_pos;
  867. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  868. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  869. char *node_addr_str;
  870. unsigned int linknumber = 0;
  871. icmap_iter_t iter;
  872. const char *iter_key;
  873. if (totem_config_find_local_addr_in_nodelist(totem_config, NULL, &node_pos)) {
  874. /*
  875. * We found node, so create interface section
  876. */
  877. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  878. iter = icmap_iter_init(tmp_key);
  879. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  880. res = sscanf(iter_key, "nodelist.node.%u.ring%u%s", &node_pos, &linknumber, tmp_key2);
  881. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  882. continue ;
  883. }
  884. if (icmap_get_string(iter_key, &node_addr_str) != CS_OK) {
  885. continue;
  886. }
  887. snprintf(tmp_key2, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.bindnetaddr", linknumber);
  888. icmap_set_string(tmp_key2, node_addr_str);
  889. free(node_addr_str);
  890. }
  891. icmap_iter_finalize(iter);
  892. }
  893. }
  894. static int get_interface_params(struct totem_config *totem_config,
  895. const char **error_string, uint64_t *warnings,
  896. int reload)
  897. {
  898. int res = 0;
  899. unsigned int linknumber = 0;
  900. int member_count = 0;
  901. int i;
  902. icmap_iter_t iter, member_iter;
  903. const char *iter_key;
  904. const char *member_iter_key;
  905. char linknumber_key[ICMAP_KEYNAME_MAXLEN];
  906. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  907. uint8_t u8;
  908. uint32_t u32;
  909. char *str;
  910. char *cluster_name = NULL;
  911. if (reload) {
  912. for (i=0; i<INTERFACE_MAX; i++) {
  913. totem_config->interfaces[i].configured = 0;
  914. }
  915. }
  916. if (icmap_get_string("totem.cluster_name", &cluster_name) != CS_OK) {
  917. cluster_name = NULL;
  918. }
  919. iter = icmap_iter_init("totem.interface.");
  920. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  921. res = sscanf(iter_key, "totem.interface.%[^.].%s", linknumber_key, tmp_key);
  922. if (res != 2) {
  923. continue;
  924. }
  925. if (strcmp(tmp_key, "bindnetaddr") != 0 && totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  926. continue;
  927. }
  928. member_count = 0;
  929. linknumber = atoi(linknumber_key);
  930. if (linknumber >= INTERFACE_MAX) {
  931. free(cluster_name);
  932. snprintf (error_string_response, sizeof(error_string_response),
  933. "parse error in config: interface ring number %u is bigger than allowed maximum %u\n",
  934. linknumber, INTERFACE_MAX - 1);
  935. *error_string = error_string_response;
  936. return -1;
  937. }
  938. /* These things are only valid for the initial read */
  939. if (!reload) {
  940. /*
  941. * Get the bind net address
  942. */
  943. if (icmap_get_string(iter_key, &str) == CS_OK) {
  944. res = totemip_parse (&totem_config->interfaces[linknumber].bindnet, str,
  945. totem_config->ip_version);
  946. free(str);
  947. }
  948. /*
  949. * Get interface multicast address
  950. */
  951. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", linknumber);
  952. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  953. res = totemip_parse (&totem_config->interfaces[linknumber].mcast_addr, str, totem_config->ip_version);
  954. free(str);
  955. } else {
  956. /*
  957. * User not specified address -> autogenerate one from cluster_name key
  958. * (if available). Return code is intentionally ignored, because
  959. * udpu doesn't need mcastaddr and validity of mcastaddr for udp is
  960. * checked later anyway.
  961. */
  962. (void)get_cluster_mcast_addr (cluster_name,
  963. linknumber,
  964. totem_config->ip_version,
  965. &totem_config->interfaces[linknumber].mcast_addr);
  966. }
  967. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.broadcast", linknumber);
  968. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  969. if (strcmp (str, "yes") == 0) {
  970. totem_config->broadcast_use = 1;
  971. }
  972. free(str);
  973. }
  974. }
  975. /* These things are only valid for the initial read OR a newly-defined link */
  976. if (!reload || (totem_config->interfaces[linknumber].configured == 0)) {
  977. /*
  978. * Get mcast port
  979. */
  980. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", linknumber);
  981. if (icmap_get_uint16(tmp_key, &totem_config->interfaces[linknumber].ip_port) != CS_OK) {
  982. if (totem_config->broadcast_use) {
  983. totem_config->interfaces[linknumber].ip_port = DEFAULT_PORT + (2 * linknumber);
  984. } else {
  985. totem_config->interfaces[linknumber].ip_port = DEFAULT_PORT;
  986. }
  987. }
  988. /*
  989. * Get the TTL
  990. */
  991. totem_config->interfaces[linknumber].ttl = 1;
  992. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.ttl", linknumber);
  993. if (icmap_get_uint8(tmp_key, &u8) == CS_OK) {
  994. totem_config->interfaces[linknumber].ttl = u8;
  995. }
  996. totem_config->interfaces[linknumber].knet_transport = KNET_DEFAULT_TRANSPORT;
  997. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_transport", linknumber);
  998. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  999. if (strcmp(str, "sctp") == 0) {
  1000. totem_config->interfaces[linknumber].knet_transport = KNET_TRANSPORT_SCTP;
  1001. }
  1002. else if (strcmp(str, "udp") == 0) {
  1003. totem_config->interfaces[linknumber].knet_transport = KNET_TRANSPORT_UDP;
  1004. }
  1005. else {
  1006. *error_string = "Unrecognised knet_transport. expected 'udp' or 'sctp'";
  1007. return -1;
  1008. }
  1009. }
  1010. }
  1011. totem_config->interfaces[linknumber].configured = 1;
  1012. /*
  1013. * Get the knet link params
  1014. */
  1015. totem_config->interfaces[linknumber].knet_link_priority = 1;
  1016. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_link_priority", linknumber);
  1017. if (icmap_get_uint8(tmp_key, &u8) == CS_OK) {
  1018. totem_config->interfaces[linknumber].knet_link_priority = u8;
  1019. }
  1020. totem_config->interfaces[linknumber].knet_ping_interval = KNET_PING_INTERVAL;
  1021. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_ping_interval", linknumber);
  1022. if (icmap_get_uint32(tmp_key, &u32) == CS_OK) {
  1023. totem_config->interfaces[linknumber].knet_ping_interval = u32;
  1024. }
  1025. totem_config->interfaces[linknumber].knet_ping_timeout = KNET_PING_TIMEOUT;
  1026. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_ping_timeout", linknumber);
  1027. if (icmap_get_uint32(tmp_key, &u32) == CS_OK) {
  1028. totem_config->interfaces[linknumber].knet_ping_timeout = u32;
  1029. }
  1030. totem_config->interfaces[linknumber].knet_ping_precision = KNET_PING_PRECISION;
  1031. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_ping_precision", linknumber);
  1032. if (icmap_get_uint32(tmp_key, &u32) == CS_OK) {
  1033. totem_config->interfaces[linknumber].knet_ping_precision = u32;
  1034. }
  1035. totem_config->interfaces[linknumber].knet_pong_count = KNET_PONG_COUNT;
  1036. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_pong_count", linknumber);
  1037. if (icmap_get_uint32(tmp_key, &u32) == CS_OK) {
  1038. totem_config->interfaces[linknumber].knet_pong_count = u32;
  1039. }
  1040. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.member.", linknumber);
  1041. member_iter = icmap_iter_init(tmp_key);
  1042. while ((member_iter_key = icmap_iter_next(member_iter, NULL, NULL)) != NULL) {
  1043. if (member_count == 0) {
  1044. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  1045. free(str);
  1046. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_IGNORED;
  1047. break;
  1048. } else {
  1049. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_DEPRECATED;
  1050. }
  1051. }
  1052. if (icmap_get_string(member_iter_key, &str) == CS_OK) {
  1053. res = totemip_parse (&totem_config->interfaces[linknumber].member_list[member_count++],
  1054. str, totem_config->ip_version);
  1055. }
  1056. }
  1057. icmap_iter_finalize(member_iter);
  1058. totem_config->interfaces[linknumber].member_count = member_count;
  1059. }
  1060. icmap_iter_finalize(iter);
  1061. return 0;
  1062. }
  1063. extern int totem_config_read (
  1064. struct totem_config *totem_config,
  1065. const char **error_string,
  1066. uint64_t *warnings)
  1067. {
  1068. int res = 0;
  1069. char *str, *ring0_addr_str;
  1070. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  1071. uint16_t u16;
  1072. int i;
  1073. int local_node_pos;
  1074. int nodeid_set;
  1075. *warnings = 0;
  1076. memset (totem_config, 0, sizeof (struct totem_config));
  1077. totem_config->interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  1078. if (totem_config->interfaces == 0) {
  1079. *error_string = "Out of memory trying to allocate ethernet interface storage area";
  1080. return -1;
  1081. }
  1082. memset (totem_config->interfaces, 0,
  1083. sizeof (struct totem_interface) * INTERFACE_MAX);
  1084. strcpy (totem_config->link_mode, "passive");
  1085. icmap_get_uint32("totem.version", (uint32_t *)&totem_config->version);
  1086. if (totem_get_crypto(totem_config) != 0) {
  1087. *error_string = "crypto_cipher requires crypto_hash with value other than none";
  1088. return -1;
  1089. }
  1090. if (icmap_get_string("totem.link_mode", &str) == CS_OK) {
  1091. if (strlen(str) >= TOTEM_LINK_MODE_BYTES) {
  1092. *error_string = "totem.link_mode is too long";
  1093. free(str);
  1094. return -1;
  1095. }
  1096. strcpy (totem_config->link_mode, str);
  1097. free(str);
  1098. }
  1099. icmap_get_uint32("totem.nodeid", &totem_config->node_id);
  1100. totem_config->clear_node_high_bit = 0;
  1101. if (icmap_get_string("totem.clear_node_high_bit", &str) == CS_OK) {
  1102. if (strcmp (str, "yes") == 0) {
  1103. totem_config->clear_node_high_bit = 1;
  1104. }
  1105. free(str);
  1106. }
  1107. icmap_get_uint32("totem.threads", &totem_config->threads);
  1108. icmap_get_uint32("totem.netmtu", &totem_config->net_mtu);
  1109. totem_config->ip_version = totem_config_get_ip_version(totem_config);
  1110. if (icmap_get_string("totem.interface.0.bindnetaddr", &str) != CS_OK) {
  1111. /*
  1112. * We were not able to find ring 0 bindnet addr. Try to use nodelist informations
  1113. */
  1114. config_convert_nodelist_to_interface(totem_config);
  1115. } else {
  1116. if (icmap_get_string("nodelist.node.0.ring0_addr", &ring0_addr_str) == CS_OK) {
  1117. /*
  1118. * Both bindnetaddr and ring0_addr are set.
  1119. * Log warning information, and use nodelist instead
  1120. */
  1121. *warnings |= TOTEM_CONFIG_BINDNETADDR_NODELIST_SET;
  1122. config_convert_nodelist_to_interface(totem_config);
  1123. free(ring0_addr_str);
  1124. }
  1125. free(str);
  1126. }
  1127. /*
  1128. * Broadcast option is global but set in interface section,
  1129. * so reset before processing interfaces.
  1130. */
  1131. totem_config->broadcast_use = 0;
  1132. res = get_interface_params(totem_config, error_string, warnings, 0);
  1133. if (res < 0) {
  1134. return res;
  1135. }
  1136. /*
  1137. * Use broadcast is global, so if set, make sure to fill mcast addr correctly
  1138. * broadcast is only supported for UDP so just do interface 0;
  1139. */
  1140. if (totem_config->broadcast_use) {
  1141. totemip_parse (&totem_config->interfaces[0].mcast_addr,
  1142. "255.255.255.255", 0);
  1143. }
  1144. totem_config->transport_number = TOTEM_TRANSPORT_KNET;
  1145. if (icmap_get_string("totem.transport", &str) == CS_OK) {
  1146. if (strcmp (str, "udpu") == 0) {
  1147. totem_config->transport_number = TOTEM_TRANSPORT_UDPU;
  1148. }
  1149. if (strcmp (str, "udp") == 0) {
  1150. totem_config->transport_number = TOTEM_TRANSPORT_UDP;
  1151. }
  1152. if (strcmp (str, "knet") == 0) {
  1153. totem_config->transport_number = TOTEM_TRANSPORT_KNET;
  1154. }
  1155. free(str);
  1156. }
  1157. /*
  1158. * Store automatically generated items back to icmap only for UDP
  1159. */
  1160. if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1161. for (i = 0; i < INTERFACE_MAX; i++) {
  1162. if (!totem_config->interfaces[i].configured) {
  1163. continue;
  1164. }
  1165. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", i);
  1166. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  1167. free(str);
  1168. } else {
  1169. str = (char *)totemip_print(&totem_config->interfaces[i].mcast_addr);
  1170. icmap_set_string(tmp_key, str);
  1171. }
  1172. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", i);
  1173. if (icmap_get_uint16(tmp_key, &u16) != CS_OK) {
  1174. icmap_set_uint16(tmp_key, totem_config->interfaces[i].ip_port);
  1175. }
  1176. }
  1177. }
  1178. /*
  1179. * Check existence of nodelist
  1180. */
  1181. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  1182. free(str);
  1183. /*
  1184. * find local node
  1185. */
  1186. local_node_pos = find_local_node_in_nodelist(totem_config);
  1187. if (local_node_pos != -1) {
  1188. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  1189. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", local_node_pos);
  1190. nodeid_set = (totem_config->node_id != 0);
  1191. if (icmap_get_uint32(tmp_key, &totem_config->node_id) == CS_OK && nodeid_set) {
  1192. *warnings |= TOTEM_CONFIG_WARNING_TOTEM_NODEID_IGNORED;
  1193. }
  1194. if ((totem_config->transport_number == TOTEM_TRANSPORT_KNET) && (!totem_config->node_id)) {
  1195. *error_string = "With knet, you must specify nodeid for current node";
  1196. return -1;
  1197. }
  1198. /*
  1199. * Make localnode ring0_addr read only, so we can be sure that local
  1200. * node never changes. If rebinding to other IP would be in future
  1201. * supported, this must be changed and handled properly!
  1202. */
  1203. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", local_node_pos);
  1204. icmap_set_ro_access(tmp_key, 0, 1);
  1205. icmap_set_ro_access("nodelist.local_node_pos", 0, 1);
  1206. }
  1207. put_nodelist_members_to_config(totem_config, 0);
  1208. }
  1209. /*
  1210. * Get things that might change in the future (and can depend on totem_config->interfaces);
  1211. */
  1212. totem_volatile_config_read(totem_config, NULL);
  1213. icmap_set_uint8("config.totemconfig_reload_in_progress", 0);
  1214. add_totem_config_notification(totem_config);
  1215. return 0;
  1216. }
  1217. int totem_config_validate (
  1218. struct totem_config *totem_config,
  1219. const char **error_string)
  1220. {
  1221. static char local_error_reason[512];
  1222. char parse_error[512];
  1223. const char *error_reason = local_error_reason;
  1224. int i,j;
  1225. int num_configured = 0;
  1226. unsigned int interface_max = INTERFACE_MAX;
  1227. for (i = 0; i < INTERFACE_MAX; i++) {
  1228. if (totem_config->interfaces[i].configured) {
  1229. num_configured++;
  1230. }
  1231. }
  1232. if (num_configured == 0) {
  1233. error_reason = "No interfaces defined";
  1234. goto parse_error;
  1235. }
  1236. for (i = 0; i < INTERFACE_MAX; i++) {
  1237. /*
  1238. * Some error checking of parsed data to make sure its valid
  1239. */
  1240. struct totem_ip_address null_addr;
  1241. if (!totem_config->interfaces[i].configured) {
  1242. continue;
  1243. }
  1244. memset (&null_addr, 0, sizeof (struct totem_ip_address));
  1245. if ((totem_config->transport_number == TOTEM_TRANSPORT_UDP) &&
  1246. memcmp (&totem_config->interfaces[i].mcast_addr, &null_addr,
  1247. sizeof (struct totem_ip_address)) == 0) {
  1248. error_reason = "No multicast address specified";
  1249. goto parse_error;
  1250. }
  1251. if (totem_config->interfaces[i].ip_port == 0) {
  1252. error_reason = "No multicast port specified";
  1253. goto parse_error;
  1254. }
  1255. if (totem_config->interfaces[i].ttl > 255) {
  1256. error_reason = "Invalid TTL (should be 0..255)";
  1257. goto parse_error;
  1258. }
  1259. if (totem_config->transport_number != TOTEM_TRANSPORT_UDP &&
  1260. totem_config->interfaces[i].ttl != 1) {
  1261. error_reason = "Can only set ttl on multicast transport types";
  1262. goto parse_error;
  1263. }
  1264. if (totem_config->interfaces[i].knet_link_priority > 255) {
  1265. error_reason = "Invalid link priority (should be 0..255)";
  1266. goto parse_error;
  1267. }
  1268. if (totem_config->transport_number != TOTEM_TRANSPORT_KNET &&
  1269. totem_config->interfaces[i].knet_link_priority != 1) {
  1270. error_reason = "Can only set link priority on knet transport type";
  1271. goto parse_error;
  1272. }
  1273. if (totem_config->interfaces[i].mcast_addr.family == AF_INET6 &&
  1274. totem_config->node_id == 0) {
  1275. error_reason = "An IPV6 network requires that a node ID be specified.";
  1276. goto parse_error;
  1277. }
  1278. if (totem_config->broadcast_use == 0 && totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1279. if (totem_config->interfaces[i].mcast_addr.family != totem_config->interfaces[i].bindnet.family) {
  1280. error_reason = "Multicast address family does not match bind address family";
  1281. goto parse_error;
  1282. }
  1283. if (totemip_is_mcast (&totem_config->interfaces[i].mcast_addr) != 0) {
  1284. error_reason = "mcastaddr is not a correct multicast address.";
  1285. goto parse_error;
  1286. }
  1287. }
  1288. /* Verify that all nodes on the same knet link have the same IP family */
  1289. for (j=1; j<totem_config->interfaces[i].member_count; j++) {
  1290. if (totem_config->interfaces[i].configured) {
  1291. if (totem_config->interfaces[i].member_list[j].family !=
  1292. totem_config->interfaces[i].member_list[0].family) {
  1293. snprintf (local_error_reason, sizeof(local_error_reason),
  1294. "Nodes for link %d have different IP families", i);
  1295. goto parse_error;
  1296. }
  1297. }
  1298. }
  1299. }
  1300. if (totem_config->version != 2) {
  1301. error_reason = "This totem parser can only parse version 2 configurations.";
  1302. goto parse_error;
  1303. }
  1304. if (totem_volatile_config_validate(totem_config, error_string) == -1) {
  1305. return (-1);
  1306. }
  1307. if (check_for_duplicate_nodeids(totem_config, error_string) == -1) {
  1308. return (-1);
  1309. }
  1310. /*
  1311. * KNET Link values validation
  1312. */
  1313. if (strcmp (totem_config->link_mode, "active") &&
  1314. strcmp (totem_config->link_mode, "rr") &&
  1315. strcmp (totem_config->link_mode, "passive")) {
  1316. snprintf (local_error_reason, sizeof(local_error_reason),
  1317. "The Knet link mode \"%s\" specified is invalid. It must be active, passive or rr.\n", totem_config->link_mode);
  1318. goto parse_error;
  1319. }
  1320. /* Only Knet does multiple interfaces */
  1321. if (totem_config->transport_number != TOTEM_TRANSPORT_KNET) {
  1322. interface_max = 1;
  1323. }
  1324. if (interface_max < num_configured) {
  1325. snprintf (parse_error, sizeof(parse_error),
  1326. "%d is too many configured interfaces for non-Knet transport.",
  1327. num_configured);
  1328. error_reason = parse_error;
  1329. goto parse_error;
  1330. }
  1331. /* Only knet allows crypto */
  1332. if (totem_config->transport_number != TOTEM_TRANSPORT_KNET) {
  1333. if ((strcmp(totem_config->crypto_cipher_type, "none") != 0) ||
  1334. (strcmp(totem_config->crypto_hash_type, "none") != 0)) {
  1335. snprintf (parse_error, sizeof(parse_error),
  1336. "crypto_cipher & crypto_hash are only valid for the Knet transport.");
  1337. error_reason = parse_error;
  1338. goto parse_error;
  1339. }
  1340. }
  1341. if (totem_config->net_mtu == 0) {
  1342. if (totem_config->transport_number == TOTEM_TRANSPORT_KNET) {
  1343. totem_config->net_mtu = KNET_MAX_PACKET_SIZE;
  1344. }
  1345. else {
  1346. totem_config->net_mtu = 1500;
  1347. }
  1348. }
  1349. return 0;
  1350. parse_error:
  1351. snprintf (error_string_response, sizeof(error_string_response),
  1352. "parse error in config: %s\n", error_reason);
  1353. *error_string = error_string_response;
  1354. return (-1);
  1355. }
  1356. static int read_keyfile (
  1357. const char *key_location,
  1358. struct totem_config *totem_config,
  1359. const char **error_string)
  1360. {
  1361. int fd;
  1362. int res;
  1363. int saved_errno;
  1364. char error_str[100];
  1365. const char *error_ptr;
  1366. fd = open (key_location, O_RDONLY);
  1367. if (fd == -1) {
  1368. error_ptr = qb_strerror_r(errno, error_str, sizeof(error_str));
  1369. snprintf (error_string_response, sizeof(error_string_response),
  1370. "Could not open %s: %s\n",
  1371. key_location, error_ptr);
  1372. goto parse_error;
  1373. }
  1374. res = read (fd, totem_config->private_key, TOTEM_PRIVATE_KEY_LEN_MAX);
  1375. saved_errno = errno;
  1376. close (fd);
  1377. if (res == -1) {
  1378. error_ptr = qb_strerror_r (saved_errno, error_str, sizeof(error_str));
  1379. snprintf (error_string_response, sizeof(error_string_response),
  1380. "Could not read %s: %s\n",
  1381. key_location, error_ptr);
  1382. goto parse_error;
  1383. }
  1384. if (res < TOTEM_PRIVATE_KEY_LEN_MIN) {
  1385. snprintf (error_string_response, sizeof(error_string_response),
  1386. "Could only read %d bits of minimum %u bits from %s.\n",
  1387. res * 8, TOTEM_PRIVATE_KEY_LEN_MIN * 8, key_location);
  1388. goto parse_error;
  1389. }
  1390. totem_config->private_key_len = res;
  1391. return 0;
  1392. parse_error:
  1393. *error_string = error_string_response;
  1394. return (-1);
  1395. }
  1396. int totem_config_keyread (
  1397. struct totem_config *totem_config,
  1398. const char **error_string)
  1399. {
  1400. int got_key = 0;
  1401. char *key_location = NULL;
  1402. int res;
  1403. size_t key_len;
  1404. memset (totem_config->private_key, 0, sizeof(totem_config->private_key));
  1405. totem_config->private_key_len = 0;
  1406. if (strcmp(totem_config->crypto_cipher_type, "none") == 0 &&
  1407. strcmp(totem_config->crypto_hash_type, "none") == 0) {
  1408. return (0);
  1409. }
  1410. /* cmap may store the location of the key file */
  1411. if (icmap_get_string("totem.keyfile", &key_location) == CS_OK) {
  1412. res = read_keyfile(key_location, totem_config, error_string);
  1413. free(key_location);
  1414. if (res) {
  1415. goto key_error;
  1416. }
  1417. got_key = 1;
  1418. } else { /* Or the key itself may be in the cmap */
  1419. if (icmap_get("totem.key", NULL, &key_len, NULL) == CS_OK) {
  1420. if (key_len > sizeof(totem_config->private_key)) {
  1421. sprintf(error_string_response, "key is too long");
  1422. goto key_error;
  1423. }
  1424. if (key_len < TOTEM_PRIVATE_KEY_LEN_MIN) {
  1425. sprintf(error_string_response, "key is too short");
  1426. goto key_error;
  1427. }
  1428. if (icmap_get("totem.key", totem_config->private_key, &key_len, NULL) == CS_OK) {
  1429. totem_config->private_key_len = key_len;
  1430. got_key = 1;
  1431. } else {
  1432. sprintf(error_string_response, "can't load private key");
  1433. goto key_error;
  1434. }
  1435. }
  1436. }
  1437. /* In desperation we read the default filename */
  1438. if (!got_key) {
  1439. const char *filename = getenv("COROSYNC_TOTEM_AUTHKEY_FILE");
  1440. if (!filename)
  1441. filename = COROSYSCONFDIR "/authkey";
  1442. res = read_keyfile(filename, totem_config, error_string);
  1443. if (res)
  1444. goto key_error;
  1445. }
  1446. return (0);
  1447. key_error:
  1448. *error_string = error_string_response;
  1449. return (-1);
  1450. }
  1451. static void debug_dump_totem_config(const struct totem_config *totem_config)
  1452. {
  1453. log_printf(LOGSYS_LEVEL_DEBUG, "Token Timeout (%d ms) retransmit timeout (%d ms)",
  1454. totem_config->token_timeout, totem_config->token_retransmit_timeout);
  1455. log_printf(LOGSYS_LEVEL_DEBUG, "token hold (%d ms) retransmits before loss (%d retrans)",
  1456. totem_config->token_hold_timeout, totem_config->token_retransmits_before_loss_const);
  1457. log_printf(LOGSYS_LEVEL_DEBUG, "join (%d ms) send_join (%d ms) consensus (%d ms) merge (%d ms)",
  1458. totem_config->join_timeout, totem_config->send_join_timeout, totem_config->consensus_timeout,
  1459. totem_config->merge_timeout);
  1460. log_printf(LOGSYS_LEVEL_DEBUG, "downcheck (%d ms) fail to recv const (%d msgs)",
  1461. totem_config->downcheck_timeout, totem_config->fail_to_recv_const);
  1462. log_printf(LOGSYS_LEVEL_DEBUG,
  1463. "seqno unchanged const (%d rotations) Maximum network MTU %d",
  1464. totem_config->seqno_unchanged_const, totem_config->net_mtu);
  1465. log_printf(LOGSYS_LEVEL_DEBUG,
  1466. "window size per rotation (%d messages) maximum messages per rotation (%d messages)",
  1467. totem_config->window_size, totem_config->max_messages);
  1468. log_printf(LOGSYS_LEVEL_DEBUG, "missed count const (%d messages)", totem_config->miss_count_const);
  1469. log_printf(LOGSYS_LEVEL_DEBUG, "heartbeat_failures_allowed (%d)",
  1470. totem_config->heartbeat_failures_allowed);
  1471. log_printf(LOGSYS_LEVEL_DEBUG, "max_network_delay (%d ms)", totem_config->max_network_delay);
  1472. }
  1473. static void totem_change_notify(
  1474. int32_t event,
  1475. const char *key_name,
  1476. struct icmap_notify_value new_val,
  1477. struct icmap_notify_value old_val,
  1478. void *user_data)
  1479. {
  1480. struct totem_config *totem_config = (struct totem_config *)user_data;
  1481. uint32_t *param;
  1482. uint8_t reloading;
  1483. const char *deleted_key = NULL;
  1484. const char *error_string;
  1485. /*
  1486. * If a full reload is in progress then don't do anything until it's done and
  1487. * can reconfigure it all atomically
  1488. */
  1489. if (icmap_get_uint8("config.reload_in_progress", &reloading) == CS_OK && reloading)
  1490. return;
  1491. param = totem_get_param_by_name((struct totem_config *)user_data, key_name);
  1492. /*
  1493. * Process change only if changed key is found in totem_config (-> param is not NULL)
  1494. * or for special key token_coefficient. token_coefficient key is not stored in
  1495. * totem_config, but it is used for computation of token timeout.
  1496. */
  1497. if (!param && strcmp(key_name, "totem.token_coefficient") != 0)
  1498. return;
  1499. /*
  1500. * Values other than UINT32 are not supported, or needed (yet)
  1501. */
  1502. switch (event) {
  1503. case ICMAP_TRACK_DELETE:
  1504. deleted_key = key_name;
  1505. break;
  1506. case ICMAP_TRACK_ADD:
  1507. case ICMAP_TRACK_MODIFY:
  1508. deleted_key = NULL;
  1509. break;
  1510. default:
  1511. break;
  1512. }
  1513. totem_volatile_config_read (totem_config, deleted_key);
  1514. log_printf(LOGSYS_LEVEL_DEBUG, "Totem related config key changed. Dumping actual totem config.");
  1515. debug_dump_totem_config(totem_config);
  1516. if (totem_volatile_config_validate(totem_config, &error_string) == -1) {
  1517. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1518. /*
  1519. * TODO: Consider corosync exit and/or load defaults for volatile
  1520. * values. For now, log error seems to be enough
  1521. */
  1522. }
  1523. }
  1524. static void totem_reload_notify(
  1525. int32_t event,
  1526. const char *key_name,
  1527. struct icmap_notify_value new_val,
  1528. struct icmap_notify_value old_val,
  1529. void *user_data)
  1530. {
  1531. struct totem_config *totem_config = (struct totem_config *)user_data;
  1532. uint32_t local_node_pos;
  1533. const char *error_string;
  1534. uint64_t warnings;
  1535. /* Reload has completed */
  1536. if (*(uint8_t *)new_val.data == 0) {
  1537. totem_config->orig_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  1538. assert(totem_config->orig_interfaces != NULL);
  1539. memcpy(totem_config->orig_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  1540. get_interface_params(totem_config, &error_string, &warnings, 1);
  1541. put_nodelist_members_to_config (totem_config, 1);
  1542. totem_volatile_config_read (totem_config, NULL);
  1543. log_printf(LOGSYS_LEVEL_DEBUG, "Configuration reloaded. Dumping actual totem config.");
  1544. debug_dump_totem_config(totem_config);
  1545. if (totem_volatile_config_validate(totem_config, &error_string) == -1) {
  1546. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  1547. /*
  1548. * TODO: Consider corosync exit and/or load defaults for volatile
  1549. * values. For now, log error seems to be enough
  1550. */
  1551. }
  1552. /* Reinstate the local_node_pos */
  1553. local_node_pos = find_local_node_in_nodelist(totem_config);
  1554. if (local_node_pos != -1) {
  1555. icmap_set_uint32("nodelist.local_node_pos", local_node_pos);
  1556. }
  1557. /* Reconfigure network params as appropriate */
  1558. totempg_reconfigure();
  1559. free(totem_config->orig_interfaces);
  1560. icmap_set_uint8("config.totemconfig_reload_in_progress", 0);
  1561. } else {
  1562. icmap_set_uint8("config.totemconfig_reload_in_progress", 1);
  1563. }
  1564. }
  1565. static void add_totem_config_notification(struct totem_config *totem_config)
  1566. {
  1567. icmap_track_t icmap_track;
  1568. icmap_track_add("totem.",
  1569. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1570. totem_change_notify,
  1571. totem_config,
  1572. &icmap_track);
  1573. icmap_track_add("config.reload_in_progress",
  1574. ICMAP_TRACK_ADD | ICMAP_TRACK_MODIFY,
  1575. totem_reload_notify,
  1576. totem_config,
  1577. &icmap_track);
  1578. icmap_track_add("nodelist.node.",
  1579. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  1580. nodelist_dynamic_notify,
  1581. (void *)totem_config,
  1582. &icmap_track);
  1583. }