4
0

totemconfig.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481
  1. /*
  2. * Copyright (c) 2002-2005 MontaVista Software, Inc.
  3. * Copyright (c) 2006-2022 Red Hat, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. * Author: Steven Dake (sdake@redhat.com)
  8. * Jan Friesse (jfriesse@redhat.com)
  9. * Chrissie Caulfield (ccaulfie@redhat.com)
  10. *
  11. * This software licensed under BSD license, the text of which follows:
  12. *
  13. * Redistribution and use in source and binary forms, with or without
  14. * modification, are permitted provided that the following conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above copyright notice,
  17. * this list of conditions and the following disclaimer.
  18. * - Redistributions in binary form must reproduce the above copyright notice,
  19. * this list of conditions and the following disclaimer in the documentation
  20. * and/or other materials provided with the distribution.
  21. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  22. * contributors may be used to endorse or promote products derived from this
  23. * software without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  26. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  29. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  30. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  31. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  32. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  33. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  34. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  35. * THE POSSIBILITY OF SUCH DAMAGE.
  36. */
  37. #include <config.h>
  38. #include <stdio.h>
  39. #include <string.h>
  40. #include <stdlib.h>
  41. #include <errno.h>
  42. #include <unistd.h>
  43. #include <sys/socket.h>
  44. #include <sys/types.h>
  45. #include <sys/stat.h>
  46. #include <fcntl.h>
  47. #include <ifaddrs.h>
  48. #include <netdb.h>
  49. #include <netinet/in.h>
  50. #include <arpa/inet.h>
  51. #include <sys/param.h>
  52. #include <sys/utsname.h>
  53. #include <corosync/swab.h>
  54. #include <qb/qblist.h>
  55. #include <qb/qbdefs.h>
  56. #include <libknet.h>
  57. #include <corosync/totem/totem.h>
  58. #include <corosync/config.h>
  59. #include <corosync/logsys.h>
  60. #include <corosync/icmap.h>
  61. #include "util.h"
  62. #include "totemconfig.h"
  63. #define TOKEN_RETRANSMITS_BEFORE_LOSS_CONST 4
  64. #define TOKEN_TIMEOUT 3000
  65. #define TOKEN_WARNING 75
  66. #define TOKEN_COEFFICIENT 650
  67. #define JOIN_TIMEOUT 50
  68. #define MERGE_TIMEOUT 200
  69. #define DOWNCHECK_TIMEOUT 1000
  70. #define FAIL_TO_RECV_CONST 2500
  71. #define SEQNO_UNCHANGED_CONST 30
  72. #define MINIMUM_TIMEOUT (int)(1000/HZ)*3
  73. #define MINIMUM_TIMEOUT_HOLD (int)(MINIMUM_TIMEOUT * 0.8 - (1000/HZ))
  74. #define MAX_NETWORK_DELAY 50
  75. #define WINDOW_SIZE 50
  76. #define MAX_MESSAGES 17
  77. #define MISS_COUNT_CONST 5
  78. #define BLOCK_UNLISTED_IPS 1
  79. #define CANCEL_TOKEN_HOLD_ON_RETRANSMIT 0
  80. /* This constant is not used for knet */
  81. #define UDP_NETMTU 1500
  82. /* Currently all but PONG_COUNT match the defaults in libknet.h */
  83. #define KNET_PING_INTERVAL 1000
  84. #define KNET_PING_TIMEOUT 2000
  85. #define KNET_PING_PRECISION 2048
  86. #define KNET_PONG_COUNT 2
  87. #define KNET_PMTUD_INTERVAL 30
  88. #define KNET_MTU 0
  89. #define KNET_DEFAULT_TRANSPORT KNET_TRANSPORT_UDP
  90. #define DEFAULT_PORT 5405
  91. static char error_string_response[768];
  92. static void add_totem_config_notification(struct totem_config *totem_config);
  93. static void *totem_get_param_by_name(struct totem_config *totem_config, const char *param_name)
  94. {
  95. if (strcmp(param_name, "totem.token") == 0)
  96. return &totem_config->token_timeout;
  97. if (strcmp(param_name, "totem.token_warning") == 0)
  98. return &totem_config->token_warning;
  99. if (strcmp(param_name, "totem.token_retransmit") == 0)
  100. return &totem_config->token_retransmit_timeout;
  101. if (strcmp(param_name, "totem.hold") == 0)
  102. return &totem_config->token_hold_timeout;
  103. if (strcmp(param_name, "totem.token_retransmits_before_loss_const") == 0)
  104. return &totem_config->token_retransmits_before_loss_const;
  105. if (strcmp(param_name, "totem.join") == 0)
  106. return &totem_config->join_timeout;
  107. if (strcmp(param_name, "totem.send_join") == 0)
  108. return &totem_config->send_join_timeout;
  109. if (strcmp(param_name, "totem.consensus") == 0)
  110. return &totem_config->consensus_timeout;
  111. if (strcmp(param_name, "totem.merge") == 0)
  112. return &totem_config->merge_timeout;
  113. if (strcmp(param_name, "totem.downcheck") == 0)
  114. return &totem_config->downcheck_timeout;
  115. if (strcmp(param_name, "totem.fail_recv_const") == 0)
  116. return &totem_config->fail_to_recv_const;
  117. if (strcmp(param_name, "totem.seqno_unchanged_const") == 0)
  118. return &totem_config->seqno_unchanged_const;
  119. if (strcmp(param_name, "totem.heartbeat_failures_allowed") == 0)
  120. return &totem_config->heartbeat_failures_allowed;
  121. if (strcmp(param_name, "totem.max_network_delay") == 0)
  122. return &totem_config->max_network_delay;
  123. if (strcmp(param_name, "totem.window_size") == 0)
  124. return &totem_config->window_size;
  125. if (strcmp(param_name, "totem.max_messages") == 0)
  126. return &totem_config->max_messages;
  127. if (strcmp(param_name, "totem.miss_count_const") == 0)
  128. return &totem_config->miss_count_const;
  129. if (strcmp(param_name, "totem.knet_pmtud_interval") == 0)
  130. return &totem_config->knet_pmtud_interval;
  131. if (strcmp(param_name, "totem.knet_mtu") == 0)
  132. return &totem_config->knet_mtu;
  133. if (strcmp(param_name, "totem.knet_compression_threshold") == 0)
  134. return &totem_config->knet_compression_threshold;
  135. if (strcmp(param_name, "totem.knet_compression_level") == 0)
  136. return &totem_config->knet_compression_level;
  137. if (strcmp(param_name, "totem.knet_compression_model") == 0)
  138. return totem_config->knet_compression_model;
  139. if (strcmp(param_name, "totem.block_unlisted_ips") == 0)
  140. return &totem_config->block_unlisted_ips;
  141. if (strcmp(param_name, "totem.cancel_token_hold_on_retransmit") == 0)
  142. return &totem_config->cancel_token_hold_on_retransmit;
  143. return NULL;
  144. }
  145. /*
  146. * Read key_name from icmap. If key is not found or key_name == delete_key or if allow_zero is false
  147. * and readed value is zero, default value is used and stored into totem_config.
  148. */
  149. static void totem_volatile_config_set_uint32_value (struct totem_config *totem_config, icmap_map_t map,
  150. const char *key_name, const char *deleted_key, unsigned int default_value,
  151. int allow_zero_value)
  152. {
  153. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  154. if (icmap_get_uint32_r(map, key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  155. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  156. (!allow_zero_value && *(uint32_t *)totem_get_param_by_name(totem_config, key_name) == 0)) {
  157. *(uint32_t *)totem_get_param_by_name(totem_config, key_name) = default_value;
  158. }
  159. /*
  160. * Store totem_config value to cmap runtime section
  161. */
  162. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  163. /*
  164. * This shouldn't happen
  165. */
  166. return ;
  167. }
  168. strcpy(runtime_key_name, "runtime.config.");
  169. strcat(runtime_key_name, key_name);
  170. icmap_set_uint32_r(map, runtime_key_name, *(uint32_t *)totem_get_param_by_name(totem_config, key_name));
  171. }
  172. static void totem_volatile_config_set_int32_value (struct totem_config *totem_config, icmap_map_t map,
  173. const char *key_name, const char *deleted_key, int default_value,
  174. int allow_zero_value)
  175. {
  176. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  177. if (icmap_get_int32_r(map, key_name, totem_get_param_by_name(totem_config, key_name)) != CS_OK ||
  178. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  179. (!allow_zero_value && *(int32_t *)totem_get_param_by_name(totem_config, key_name) == 0)) {
  180. *(int32_t *)totem_get_param_by_name(totem_config, key_name) = default_value;
  181. }
  182. /*
  183. * Store totem_config value to cmap runtime section
  184. */
  185. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  186. /*
  187. * This shouldn't happen
  188. */
  189. return ;
  190. }
  191. strcpy(runtime_key_name, "runtime.config.");
  192. strcat(runtime_key_name, key_name);
  193. icmap_set_int32_r(map, runtime_key_name, *(int32_t *)totem_get_param_by_name(totem_config, key_name));
  194. }
  195. static void totem_volatile_config_set_string_value (struct totem_config *totem_config, icmap_map_t map,
  196. const char *key_name, const char *deleted_key, const char *default_value)
  197. {
  198. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  199. int res;
  200. char *new_config_value;
  201. const void *config_value;
  202. config_value = totem_get_param_by_name(totem_config, key_name);
  203. res = icmap_get_string_r(map, key_name, (char **)&new_config_value);
  204. if (res != CS_OK ||
  205. (deleted_key != NULL && strcmp(deleted_key, key_name) == 0)) {
  206. /* Slightly pointless use of strncpy but it keeps coverity happy */
  207. strncpy((char *)config_value, default_value, CONFIG_STRING_LEN_MAX);
  208. } else {
  209. strncpy((char *)config_value, new_config_value, CONFIG_STRING_LEN_MAX);
  210. }
  211. if (res == CS_OK) {
  212. free(new_config_value);
  213. }
  214. /*
  215. * Store totem_config value to cmap runtime section
  216. */
  217. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  218. /*
  219. * This shouldn't happen
  220. */
  221. return ;
  222. }
  223. strcpy(runtime_key_name, "runtime.config.");
  224. strcat(runtime_key_name, key_name);
  225. (void)icmap_set_string_r(map, runtime_key_name, (char *)config_value);
  226. }
  227. /*
  228. * Read string value stored in key_name from icmap, use it as a boolean (yes/no) type, convert it
  229. * to integer value (1/0) and store into totem_config.
  230. *
  231. * If key is not found or key_name == delete_key default value is used
  232. * and stored into totem_config.
  233. */
  234. static void totem_volatile_config_set_boolean_value (struct totem_config *totem_config, icmap_map_t map,
  235. const char *key_name, const char *deleted_key, unsigned int default_value)
  236. {
  237. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  238. char *str;
  239. int val;
  240. str = NULL;
  241. val = default_value;
  242. if ((deleted_key != NULL && strcmp(deleted_key, key_name) == 0) ||
  243. (icmap_get_string_r(map, key_name, &str) != CS_OK)) {
  244. /*
  245. * Do nothing. str is NULL (icmap_get_string ether not called or
  246. * not changed str).
  247. */
  248. } else {
  249. if (strcmp(str, "yes") == 0) {
  250. val = 1;
  251. } else if (strcmp(str, "no") == 0) {
  252. val = 0;
  253. }
  254. free(str);
  255. }
  256. /*
  257. * Store totem_config value to cmap runtime section
  258. */
  259. if (strlen("runtime.config.") + strlen(key_name) >= ICMAP_KEYNAME_MAXLEN) {
  260. /*
  261. * This shouldn't happen
  262. */
  263. return ;
  264. }
  265. strcpy(runtime_key_name, "runtime.config.");
  266. strcat(runtime_key_name, key_name);
  267. *(uint32_t *)totem_get_param_by_name(totem_config, key_name) = val;
  268. icmap_set_uint32_r(map, runtime_key_name, val);
  269. }
  270. /*
  271. * Read and validate config values from cmap and store them into totem_config. If key doesn't exists,
  272. * default value is stored. deleted_key is name of key beeing processed by delete operation
  273. * from cmap. It is considered as non existing even if it can be read. Can be NULL.
  274. */
  275. void totem_volatile_config_read (struct totem_config *totem_config, icmap_map_t temp_map, const char *deleted_key)
  276. {
  277. uint32_t u32;
  278. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.token_retransmits_before_loss_const", deleted_key,
  279. TOKEN_RETRANSMITS_BEFORE_LOSS_CONST, 0);
  280. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.token", deleted_key, TOKEN_TIMEOUT, 0);
  281. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.token_warning", deleted_key, TOKEN_WARNING, 1);
  282. if (totem_config->interfaces[0].member_count > 2) {
  283. u32 = TOKEN_COEFFICIENT;
  284. icmap_get_uint32_r(temp_map, "totem.token_coefficient", &u32);
  285. totem_config->token_timeout += (totem_config->interfaces[0].member_count - 2) * u32;
  286. /*
  287. * Store totem_config value to cmap runtime section
  288. */
  289. icmap_set_uint32_r(temp_map, "runtime.config.totem.token", totem_config->token_timeout);
  290. }
  291. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.max_network_delay", deleted_key, MAX_NETWORK_DELAY, 0);
  292. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.window_size", deleted_key, WINDOW_SIZE, 0);
  293. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.max_messages", deleted_key, MAX_MESSAGES, 0);
  294. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.miss_count_const", deleted_key, MISS_COUNT_CONST, 0);
  295. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.knet_pmtud_interval", deleted_key, KNET_PMTUD_INTERVAL, 0);
  296. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.knet_mtu", deleted_key, KNET_MTU, 0);
  297. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.token_retransmit", deleted_key,
  298. (int)(totem_config->token_timeout / (totem_config->token_retransmits_before_loss_const + 0.2)), 0);
  299. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.hold", deleted_key,
  300. (int)(totem_config->token_retransmit_timeout * 0.8 - (1000/HZ)), 0);
  301. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.join", deleted_key, JOIN_TIMEOUT, 0);
  302. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.consensus", deleted_key,
  303. (int)(float)(1.2 * totem_config->token_timeout), 0);
  304. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.merge", deleted_key, MERGE_TIMEOUT, 0);
  305. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.downcheck", deleted_key, DOWNCHECK_TIMEOUT, 0);
  306. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.fail_recv_const", deleted_key, FAIL_TO_RECV_CONST, 0);
  307. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.seqno_unchanged_const", deleted_key,
  308. SEQNO_UNCHANGED_CONST, 0);
  309. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.send_join", deleted_key, 0, 1);
  310. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.heartbeat_failures_allowed", deleted_key, 0, 1);
  311. totem_volatile_config_set_uint32_value(totem_config, temp_map, "totem.knet_compression_threshold", deleted_key, 0, 1);
  312. totem_volatile_config_set_int32_value(totem_config, temp_map, "totem.knet_compression_level", deleted_key, 0, 1);
  313. totem_volatile_config_set_string_value(totem_config, temp_map, "totem.knet_compression_model", deleted_key, "none");
  314. totem_volatile_config_set_boolean_value(totem_config, temp_map, "totem.block_unlisted_ips", deleted_key,
  315. BLOCK_UNLISTED_IPS);
  316. totem_volatile_config_set_boolean_value(totem_config, temp_map, "totem.cancel_token_hold_on_retransmit",
  317. deleted_key, CANCEL_TOKEN_HOLD_ON_RETRANSMIT);
  318. }
  319. int totem_volatile_config_validate (
  320. struct totem_config *totem_config,
  321. icmap_map_t temp_map,
  322. const char **error_string)
  323. {
  324. /* Static just to keep them off the stack */
  325. static char local_error_reason[512];
  326. static char addr_str_buf[INET6_ADDRSTRLEN];
  327. const char *error_reason = local_error_reason;
  328. char name_key[ICMAP_KEYNAME_MAXLEN];
  329. char *name_str;
  330. int i, j, num_configured, members;
  331. uint32_t tmp_config_value;
  332. if (totem_config->max_network_delay < MINIMUM_TIMEOUT) {
  333. snprintf (local_error_reason, sizeof(local_error_reason),
  334. "The max_network_delay parameter (%d ms) may not be less than (%d ms).",
  335. totem_config->max_network_delay, MINIMUM_TIMEOUT);
  336. goto parse_error;
  337. }
  338. if (totem_config->token_timeout < MINIMUM_TIMEOUT) {
  339. snprintf (local_error_reason, sizeof(local_error_reason),
  340. "The token timeout parameter (%d ms) may not be less than (%d ms).",
  341. totem_config->token_timeout, MINIMUM_TIMEOUT);
  342. goto parse_error;
  343. }
  344. // coverity[NO_EFFECT:SUPPRESS] clarify bounds of token_warning values and defensive programming
  345. if (totem_config->token_warning > 100 || totem_config->token_warning < 0) {
  346. snprintf (local_error_reason, sizeof(local_error_reason),
  347. "The token warning parameter (%d%%) must be between 0 (disabled) and 100.",
  348. totem_config->token_warning);
  349. goto parse_error;
  350. }
  351. if (totem_config->token_retransmit_timeout < MINIMUM_TIMEOUT) {
  352. if (icmap_get_uint32_r(temp_map, "totem.token_retransmit", &tmp_config_value) == CS_OK) {
  353. snprintf (local_error_reason, sizeof(local_error_reason),
  354. "The token retransmit timeout parameter (%d ms) may not be less than (%d ms).",
  355. totem_config->token_retransmit_timeout, MINIMUM_TIMEOUT);
  356. goto parse_error;
  357. } else {
  358. snprintf (local_error_reason, sizeof(local_error_reason),
  359. "Not appropriate token or token_retransmits_before_loss_const value set");
  360. goto parse_error;
  361. }
  362. }
  363. if (totem_config->token_hold_timeout < MINIMUM_TIMEOUT_HOLD) {
  364. snprintf (local_error_reason, sizeof(local_error_reason),
  365. "The token hold timeout parameter (%d ms) may not be less than (%d ms).",
  366. totem_config->token_hold_timeout, MINIMUM_TIMEOUT_HOLD);
  367. goto parse_error;
  368. }
  369. if (totem_config->join_timeout < MINIMUM_TIMEOUT) {
  370. snprintf (local_error_reason, sizeof(local_error_reason),
  371. "The join timeout parameter (%d ms) may not be less than (%d ms).",
  372. totem_config->join_timeout, MINIMUM_TIMEOUT);
  373. goto parse_error;
  374. }
  375. if (totem_config->consensus_timeout < MINIMUM_TIMEOUT) {
  376. snprintf (local_error_reason, sizeof(local_error_reason),
  377. "The consensus timeout parameter (%d ms) may not be less than (%d ms).",
  378. totem_config->consensus_timeout, MINIMUM_TIMEOUT);
  379. goto parse_error;
  380. }
  381. if (totem_config->consensus_timeout < totem_config->join_timeout) {
  382. snprintf (local_error_reason, sizeof(local_error_reason),
  383. "The consensus timeout parameter (%d ms) may not be less than join timeout (%d ms).",
  384. totem_config->consensus_timeout, totem_config->join_timeout);
  385. goto parse_error;
  386. }
  387. if (totem_config->merge_timeout < MINIMUM_TIMEOUT) {
  388. snprintf (local_error_reason, sizeof(local_error_reason),
  389. "The merge timeout parameter (%d ms) may not be less than (%d ms).",
  390. totem_config->merge_timeout, MINIMUM_TIMEOUT);
  391. goto parse_error;
  392. }
  393. if (totem_config->downcheck_timeout < MINIMUM_TIMEOUT) {
  394. snprintf (local_error_reason, sizeof(local_error_reason),
  395. "The downcheck timeout parameter (%d ms) may not be less than (%d ms).",
  396. totem_config->downcheck_timeout, MINIMUM_TIMEOUT);
  397. goto parse_error;
  398. }
  399. /* Check that we have nodelist 'name' if there is more than one link */
  400. num_configured = 0;
  401. members = -1;
  402. for (i = 0; i < INTERFACE_MAX; i++) {
  403. if (totem_config->interfaces[i].configured) {
  404. if (num_configured == 0) {
  405. members = totem_config->interfaces[i].member_count;
  406. }
  407. num_configured++;
  408. }
  409. }
  410. if (num_configured > 1) {
  411. /*
  412. * This assert is here just to make compiler happy
  413. */
  414. assert(members != -1);
  415. for (i=0; i < members; i++) {
  416. snprintf(name_key, sizeof(name_key), "nodelist.node.%d.name", i);
  417. if (icmap_get_string_r(temp_map, name_key, &name_str) != CS_OK) {
  418. snprintf (local_error_reason, sizeof(local_error_reason),
  419. "for a multi-link configuration, all nodes must have a 'name' attribute");
  420. goto parse_error;
  421. }
  422. free(name_str);
  423. }
  424. for (i=0; i < INTERFACE_MAX; i++) {
  425. if (!totem_config->interfaces[i].configured) {
  426. continue;
  427. }
  428. if (totem_config->interfaces[i].member_count != members) {
  429. snprintf (local_error_reason, sizeof(local_error_reason),
  430. "Not all nodes have the same number of links");
  431. goto parse_error;
  432. }
  433. }
  434. }
  435. /* Verify that all nodes on the same link have the same IP family */
  436. for (i=0; i < INTERFACE_MAX; i++) {
  437. for (j=1; j<totem_config->interfaces[i].member_count; j++) {
  438. if (totem_config->interfaces[i].configured) {
  439. if (totem_config->interfaces[i].member_list[j].family !=
  440. totem_config->interfaces[i].member_list[0].family) {
  441. memcpy(addr_str_buf,
  442. totemip_print(&(totem_config->interfaces[i].member_list[j])),
  443. sizeof(addr_str_buf));
  444. snprintf (local_error_reason, sizeof(local_error_reason),
  445. "Nodes for link %d have different IP families "
  446. "(compared %s with %s)", i,
  447. addr_str_buf,
  448. totemip_print(&(totem_config->interfaces[i].member_list[0])));
  449. goto parse_error;
  450. }
  451. }
  452. }
  453. }
  454. return 0;
  455. parse_error:
  456. snprintf (error_string_response, sizeof(error_string_response),
  457. "parse error in config: %s\n", error_reason);
  458. *error_string = error_string_response;
  459. return (-1);
  460. }
  461. static int totem_get_crypto(struct totem_config *totem_config, icmap_map_t map, const char **error_string)
  462. {
  463. char *str;
  464. const char *tmp_cipher;
  465. const char *tmp_hash;
  466. const char *tmp_model;
  467. char *crypto_model_str;
  468. int res = 0;
  469. tmp_hash = "none";
  470. tmp_cipher = "none";
  471. tmp_model = "none";
  472. crypto_model_str = NULL;
  473. if (icmap_get_string_r(map, "totem.crypto_model", &crypto_model_str) == CS_OK) {
  474. tmp_model = crypto_model_str;
  475. } else {
  476. tmp_model = "nss";
  477. }
  478. if (icmap_get_string_r(map, "totem.secauth", &str) == CS_OK) {
  479. if (strcmp(str, "on") == 0) {
  480. tmp_cipher = "aes256";
  481. tmp_hash = "sha256";
  482. }
  483. free(str);
  484. }
  485. if (icmap_get_string_r(map, "totem.crypto_cipher", &str) == CS_OK) {
  486. if (strcmp(str, "none") == 0) {
  487. tmp_cipher = "none";
  488. }
  489. if (strcmp(str, "aes256") == 0) {
  490. tmp_cipher = "aes256";
  491. }
  492. if (strcmp(str, "aes192") == 0) {
  493. tmp_cipher = "aes192";
  494. }
  495. if (strcmp(str, "aes128") == 0) {
  496. tmp_cipher = "aes128";
  497. }
  498. free(str);
  499. }
  500. if (icmap_get_string_r(map, "totem.crypto_hash", &str) == CS_OK) {
  501. if (strcmp(str, "none") == 0) {
  502. tmp_hash = "none";
  503. }
  504. if (strcmp(str, "md5") == 0) {
  505. tmp_hash = "md5";
  506. }
  507. if (strcmp(str, "sha1") == 0) {
  508. tmp_hash = "sha1";
  509. }
  510. if (strcmp(str, "sha256") == 0) {
  511. tmp_hash = "sha256";
  512. }
  513. if (strcmp(str, "sha384") == 0) {
  514. tmp_hash = "sha384";
  515. }
  516. if (strcmp(str, "sha512") == 0) {
  517. tmp_hash = "sha512";
  518. }
  519. free(str);
  520. }
  521. if ((strcmp(tmp_cipher, "none") != 0) &&
  522. (strcmp(tmp_hash, "none") == 0)) {
  523. *error_string = "crypto_cipher requires crypto_hash with value other than none";
  524. res = -1;
  525. goto out_free_crypto_model_str;
  526. }
  527. if (strcmp(tmp_model, "none") == 0) {
  528. /*
  529. * Shouldn't happen because it is handled by coroparse
  530. */
  531. *error_string = "invalid crypto_model";
  532. res = -1;
  533. goto out_free_crypto_model_str;
  534. }
  535. if (strcmp(tmp_cipher, totem_config->crypto_cipher_type) ||
  536. strcmp(tmp_hash, totem_config->crypto_hash_type) ||
  537. strcmp(tmp_model, totem_config->crypto_model)) {
  538. totem_config->crypto_changed = 1;
  539. }
  540. strncpy(totem_config->crypto_cipher_type, tmp_cipher, CONFIG_STRING_LEN_MAX - 1);
  541. totem_config->crypto_cipher_type[CONFIG_STRING_LEN_MAX - 1] = '\0';
  542. strncpy(totem_config->crypto_hash_type, tmp_hash, CONFIG_STRING_LEN_MAX - 1);
  543. totem_config->crypto_hash_type[CONFIG_STRING_LEN_MAX - 1] = '\0';
  544. strncpy(totem_config->crypto_model, tmp_model, CONFIG_STRING_LEN_MAX - 1);
  545. totem_config->crypto_model[CONFIG_STRING_LEN_MAX - 1] = '\0';
  546. out_free_crypto_model_str:
  547. free(crypto_model_str);
  548. return (res);
  549. }
  550. static int nodelist_byname(icmap_map_t map, const char *find_name, int strip_domain)
  551. {
  552. icmap_iter_t iter;
  553. const char *iter_key;
  554. char name_str[ICMAP_KEYNAME_MAXLEN];
  555. int res = 0;
  556. unsigned int node_pos;
  557. char *name;
  558. unsigned int namelen;
  559. iter = icmap_iter_init_r(map, "nodelist.node.");
  560. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  561. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, name_str);
  562. if (res != 2) {
  563. continue;
  564. }
  565. /* ring0_addr is allowed as a fallback */
  566. if (strcmp(name_str, "name") && strcmp(name_str, "ring0_addr")) {
  567. continue;
  568. }
  569. if (icmap_get_string_r(map, iter_key, &name) != CS_OK) {
  570. continue;
  571. }
  572. namelen = strlen(name);
  573. if (strip_domain) {
  574. char *dot;
  575. dot = strchr(name, '.');
  576. if (dot) {
  577. namelen = dot - name;
  578. }
  579. }
  580. if (strncmp(find_name, name, namelen) == 0 &&
  581. strlen(find_name) == namelen) {
  582. icmap_iter_finalize(iter);
  583. return node_pos;
  584. }
  585. }
  586. icmap_iter_finalize(iter);
  587. return -1;
  588. }
  589. /* Compare two addresses - only address part (sin_addr/sin6_addr) is checked */
  590. static int ipaddr_equal(const struct sockaddr *addr1, const struct sockaddr *addr2)
  591. {
  592. int addrlen = 0;
  593. const void *addr1p, *addr2p;
  594. if (addr1->sa_family != addr2->sa_family)
  595. return 0;
  596. switch (addr1->sa_family) {
  597. case AF_INET:
  598. addrlen = sizeof(struct in_addr);
  599. addr1p = &((struct sockaddr_in *)addr1)->sin_addr;
  600. addr2p = &((struct sockaddr_in *)addr2)->sin_addr;
  601. break;
  602. case AF_INET6:
  603. addrlen = sizeof(struct in6_addr);
  604. addr1p = &((struct sockaddr_in6 *)addr1)->sin6_addr;
  605. addr2p = &((struct sockaddr_in6 *)addr2)->sin6_addr;
  606. break;
  607. default:
  608. assert(0);
  609. }
  610. return (memcmp(addr1p, addr2p, addrlen) == 0);
  611. }
  612. /* Finds the local node and returns its position in the nodelist.
  613. * Uses nodelist.local_node_pos as a cache to save effort
  614. */
  615. static int find_local_node(icmap_map_t map, int use_cache)
  616. {
  617. char nodename2[PATH_MAX];
  618. char name_str[ICMAP_KEYNAME_MAXLEN];
  619. icmap_iter_t iter;
  620. const char *iter_key;
  621. unsigned int cached_pos;
  622. char *dot = NULL;
  623. const char *node;
  624. struct ifaddrs *ifa, *ifa_list;
  625. struct sockaddr *sa;
  626. int found = 0;
  627. int node_pos = -1;
  628. int res;
  629. struct utsname utsname;
  630. /* Check for cached value first */
  631. if (use_cache) {
  632. if (icmap_get_uint32("nodelist.local_node_pos", &cached_pos) == CS_OK) {
  633. return cached_pos;
  634. }
  635. }
  636. res = uname(&utsname);
  637. if (res < 0) {
  638. return -1;
  639. }
  640. node = utsname.nodename;
  641. /* 1. Exact match */
  642. node_pos = nodelist_byname(map, node, 0);
  643. if (node_pos > -1) {
  644. found = 1;
  645. goto ret_found;
  646. }
  647. /* 2. Try to match with increasingly more
  648. * specific versions of it
  649. */
  650. strcpy(nodename2, node);
  651. dot = strrchr(nodename2, '.');
  652. while (dot) {
  653. *dot = '\0';
  654. node_pos = nodelist_byname(map, nodename2, 0);
  655. if (node_pos > -1) {
  656. found = 1;
  657. goto ret_found;
  658. }
  659. dot = strrchr(nodename2, '.');
  660. }
  661. node_pos = nodelist_byname(map, nodename2, 1);
  662. if (node_pos > -1) {
  663. found = 1;
  664. goto ret_found;
  665. }
  666. /*
  667. * The corosync.conf name may not be related to uname at all,
  668. * they may match a hostname on some network interface.
  669. */
  670. if (getifaddrs(&ifa_list))
  671. return -1;
  672. for (ifa = ifa_list; ifa; ifa = ifa->ifa_next) {
  673. socklen_t salen = 0;
  674. /* Restore this */
  675. strcpy(nodename2, node);
  676. sa = ifa->ifa_addr;
  677. if (!sa) {
  678. continue;
  679. }
  680. if (sa->sa_family != AF_INET && sa->sa_family != AF_INET6) {
  681. continue;
  682. }
  683. if (sa->sa_family == AF_INET) {
  684. salen = sizeof(struct sockaddr_in);
  685. }
  686. if (sa->sa_family == AF_INET6) {
  687. salen = sizeof(struct sockaddr_in6);
  688. }
  689. if (getnameinfo(sa, salen,
  690. nodename2, sizeof(nodename2),
  691. NULL, 0, 0) == 0) {
  692. node_pos = nodelist_byname(map, nodename2, 0);
  693. if (node_pos > -1) {
  694. found = 1;
  695. goto out;
  696. }
  697. /* Truncate this name and try again */
  698. dot = strchr(nodename2, '.');
  699. if (dot) {
  700. *dot = '\0';
  701. node_pos = nodelist_byname(map, nodename2, 0);
  702. if (node_pos > -1) {
  703. found = 1;
  704. goto out;
  705. }
  706. }
  707. }
  708. /* See if it's the IP address that's in corosync.conf */
  709. if (getnameinfo(sa, sizeof(*sa),
  710. nodename2, sizeof(nodename2),
  711. NULL, 0, NI_NUMERICHOST))
  712. continue;
  713. node_pos = nodelist_byname(map, nodename2, 0);
  714. if (node_pos > -1) {
  715. found = 1;
  716. goto out;
  717. }
  718. }
  719. out:
  720. if (found) {
  721. freeifaddrs(ifa_list);
  722. goto ret_found;
  723. }
  724. /*
  725. * This section covers the usecase where the nodename specified in cluster.conf
  726. * is an alias specified in /etc/hosts. For example:
  727. * <ipaddr> hostname alias1 alias2
  728. * and <clusternode name="alias2">
  729. * the above calls use uname and getnameinfo does not return aliases.
  730. * here we take the name specified in cluster.conf, resolve it to an address
  731. * and then compare against all known local ip addresses.
  732. * if we have a match, we found our nodename. In theory this chunk of code
  733. * could replace all the checks above, but let's avoid any possible regressions
  734. * and use it as last.
  735. */
  736. iter = icmap_iter_init_r(map, "nodelist.node.");
  737. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  738. char *dbnodename = NULL;
  739. struct addrinfo hints;
  740. struct addrinfo *result = NULL, *rp = NULL;
  741. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, name_str);
  742. if (res != 2) {
  743. continue;
  744. }
  745. /* 'ring0_addr' is allowed as a fallback, but 'name' will be found first
  746. * because the names are in alpha order.
  747. */
  748. if (strcmp(name_str, "name") && strcmp(name_str, "ring0_addr")) {
  749. continue;
  750. }
  751. if (icmap_get_string_r(map, iter_key, &dbnodename) != CS_OK) {
  752. continue;
  753. }
  754. memset(&hints, 0, sizeof(struct addrinfo));
  755. hints.ai_family = AF_UNSPEC;
  756. hints.ai_socktype = SOCK_DGRAM;
  757. hints.ai_flags = 0;
  758. hints.ai_protocol = IPPROTO_UDP;
  759. if (getaddrinfo(dbnodename, NULL, &hints, &result)) {
  760. continue;
  761. }
  762. for (rp = result; rp != NULL; rp = rp->ai_next) {
  763. for (ifa = ifa_list; ifa; ifa = ifa->ifa_next) {
  764. if (ifa->ifa_addr &&
  765. ipaddr_equal(rp->ai_addr, ifa->ifa_addr)) {
  766. freeaddrinfo(result);
  767. found = 1;
  768. goto out2;
  769. }
  770. }
  771. }
  772. freeaddrinfo(result);
  773. }
  774. out2:
  775. icmap_iter_finalize(iter);
  776. freeifaddrs(ifa_list);
  777. ret_found:
  778. if (found) {
  779. res = icmap_set_uint32_r(map, "nodelist.local_node_pos", node_pos);
  780. }
  781. return node_pos;
  782. }
  783. static enum totem_ip_version_enum totem_config_get_ip_version(struct totem_config *totem_config)
  784. {
  785. enum totem_ip_version_enum res;
  786. char *str;
  787. res = TOTEM_IP_VERSION_6_4;
  788. if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  789. res = TOTEM_IP_VERSION_4;
  790. }
  791. if (icmap_get_string("totem.ip_version", &str) == CS_OK) {
  792. if (strcmp(str, "ipv4") == 0) {
  793. res = TOTEM_IP_VERSION_4;
  794. }
  795. if (strcmp(str, "ipv6") == 0) {
  796. res = TOTEM_IP_VERSION_6;
  797. }
  798. if (strcmp(str, "ipv6-4") == 0) {
  799. res = TOTEM_IP_VERSION_6_4;
  800. }
  801. if (strcmp(str, "ipv4-6") == 0) {
  802. res = TOTEM_IP_VERSION_4_6;
  803. }
  804. free(str);
  805. }
  806. return (res);
  807. }
  808. static uint16_t generate_cluster_id (const char *cluster_name)
  809. {
  810. int i;
  811. int value = 0;
  812. for (i = 0; i < strlen(cluster_name); i++) {
  813. value <<= 1;
  814. value += cluster_name[i];
  815. }
  816. return (value & 0xFFFF);
  817. }
  818. static int get_cluster_mcast_addr (
  819. const char *cluster_name,
  820. unsigned int linknumber,
  821. enum totem_ip_version_enum ip_version,
  822. struct totem_ip_address *res)
  823. {
  824. uint16_t clusterid;
  825. char addr[INET6_ADDRSTRLEN + 1];
  826. int err;
  827. if (cluster_name == NULL) {
  828. return (-1);
  829. }
  830. clusterid = generate_cluster_id(cluster_name) + linknumber;
  831. memset (res, 0, sizeof(*res));
  832. switch (ip_version) {
  833. case TOTEM_IP_VERSION_4:
  834. case TOTEM_IP_VERSION_4_6:
  835. snprintf(addr, sizeof(addr), "239.192.%d.%d", clusterid >> 8, clusterid % 0xFF);
  836. break;
  837. case TOTEM_IP_VERSION_6:
  838. case TOTEM_IP_VERSION_6_4:
  839. snprintf(addr, sizeof(addr), "ff15::%x", clusterid);
  840. break;
  841. default:
  842. /*
  843. * Unknown family
  844. */
  845. return (-1);
  846. }
  847. err = totemip_parse (res, addr, ip_version);
  848. return (err);
  849. }
  850. static unsigned int generate_nodeid(
  851. struct totem_config *totem_config,
  852. char *addr)
  853. {
  854. unsigned int nodeid;
  855. struct totem_ip_address totemip;
  856. /* AF_INET hard-coded here because auto-generated nodeids
  857. are only for IPv4 */
  858. if (totemip_parse(&totemip, addr, TOTEM_IP_VERSION_4) != 0)
  859. return -1;
  860. memcpy (&nodeid, &totemip.addr, sizeof (unsigned int));
  861. #if __BYTE_ORDER == __LITTLE_ENDIAN
  862. nodeid = swab32 (nodeid);
  863. #endif
  864. if (totem_config->clear_node_high_bit) {
  865. nodeid &= 0x7FFFFFFF;
  866. }
  867. return nodeid;
  868. }
  869. static int check_for_duplicate_nodeids(
  870. struct totem_config *totem_config,
  871. const char **error_string)
  872. {
  873. icmap_iter_t iter;
  874. icmap_iter_t subiter;
  875. const char *iter_key;
  876. int res = 0;
  877. int retval = 0;
  878. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  879. char *ring0_addr=NULL;
  880. char *ring0_addr1=NULL;
  881. unsigned int node_pos;
  882. unsigned int node_pos1;
  883. unsigned int last_node_pos = -1;
  884. unsigned int nodeid;
  885. unsigned int nodeid1;
  886. int autogenerated;
  887. iter = icmap_iter_init("nodelist.node.");
  888. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  889. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  890. if (res != 2) {
  891. continue;
  892. }
  893. /*
  894. * This relies on the fact the icmap keys are always returned in order
  895. * so all of the keys for a node will be grouped together. We're basically
  896. * just running the code below once for each node.
  897. */
  898. if (last_node_pos == node_pos) {
  899. continue;
  900. }
  901. last_node_pos = node_pos;
  902. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos);
  903. autogenerated = 0;
  904. /* Generated nodeids are only allowed for UDP/UDPU so ring0_addr is valid here */
  905. if (icmap_get_uint32(tmp_key, &nodeid) != CS_OK) {
  906. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  907. if (icmap_get_string(tmp_key, &ring0_addr) != CS_OK) {
  908. continue;
  909. }
  910. /* Generate nodeid so we can check that auto-generated nodeids don't clash either */
  911. nodeid = generate_nodeid(totem_config, ring0_addr);
  912. if (nodeid == -1) {
  913. continue;
  914. }
  915. autogenerated = 1;
  916. }
  917. node_pos1 = 0;
  918. subiter = icmap_iter_init("nodelist.node.");
  919. while (((iter_key = icmap_iter_next(subiter, NULL, NULL)) != NULL) && (node_pos1 < node_pos)) {
  920. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos1, tmp_key);
  921. if ((res != 2) || (node_pos1 >= node_pos)) {
  922. continue;
  923. }
  924. if (strcmp(tmp_key, "nodeid") != 0) {
  925. continue;
  926. }
  927. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos1);
  928. if (icmap_get_uint32(tmp_key, &nodeid1) != CS_OK) {
  929. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos1);
  930. if (icmap_get_string(tmp_key, &ring0_addr1) != CS_OK) {
  931. continue;
  932. }
  933. nodeid1 = generate_nodeid(totem_config, ring0_addr1);
  934. if (nodeid1 == -1) {
  935. continue;
  936. }
  937. }
  938. if (nodeid == nodeid1) {
  939. retval = -1;
  940. snprintf (error_string_response, sizeof(error_string_response),
  941. "Nodeid %u%s%s%s appears twice in corosync.conf", nodeid,
  942. autogenerated?"(autogenerated from ":"",
  943. autogenerated?ring0_addr:"",
  944. autogenerated?")":"");
  945. *error_string = error_string_response;
  946. break;
  947. }
  948. }
  949. icmap_iter_finalize(subiter);
  950. }
  951. icmap_iter_finalize(iter);
  952. return retval;
  953. }
  954. /*
  955. * This needs to be done last of all. It would be nice to do it when reading the
  956. * interface params, but the totem params need to have them to be read first. We
  957. * need both, so this is a way round that circular dependancy.
  958. */
  959. void totem_calc_knet_ping_timers(struct totem_config *totem_config, icmap_map_t temp_map)
  960. {
  961. char runtime_key_name[ICMAP_KEYNAME_MAXLEN];
  962. int interface;
  963. for (interface = 0; interface < INTERFACE_MAX; interface++) {
  964. if (totem_config->interfaces[interface].configured) {
  965. if (!totem_config->interfaces[interface].knet_pong_count) {
  966. totem_config->interfaces[interface].knet_pong_count = KNET_PONG_COUNT;
  967. }
  968. if (!totem_config->interfaces[interface].knet_ping_timeout) {
  969. totem_config->interfaces[interface].knet_ping_timeout =
  970. totem_config->token_timeout / totem_config->interfaces[interface].knet_pong_count;
  971. }
  972. snprintf(runtime_key_name, sizeof(runtime_key_name),
  973. "runtime.config.totem.interface.%d.knet_ping_timeout", interface);
  974. icmap_set_uint32_r(temp_map, runtime_key_name, totem_config->interfaces[interface].knet_ping_timeout);
  975. if (!totem_config->interfaces[interface].knet_ping_interval) {
  976. totem_config->interfaces[interface].knet_ping_interval =
  977. totem_config->token_timeout / (totem_config->interfaces[interface].knet_pong_count * 2);
  978. }
  979. snprintf(runtime_key_name, sizeof(runtime_key_name),
  980. "runtime.config.totem.interface.%d.knet_ping_interval", interface);
  981. icmap_set_uint32_r(temp_map, runtime_key_name, totem_config->interfaces[interface].knet_ping_interval);
  982. }
  983. }
  984. }
  985. /*
  986. * Compute difference between two set of totem interface arrays and commit it.
  987. * set1 and set2
  988. * are changed so for same ring, ip existing in both set1 and set2 are cleared
  989. * (set to 0), and ips which are only in set1 or set2 remains untouched.
  990. * totempg_node_add/remove is called.
  991. */
  992. static int compute_and_set_totempg_interfaces(struct totem_interface *set1,
  993. struct totem_interface *set2)
  994. {
  995. int ring_no, set1_pos, set2_pos;
  996. struct totem_ip_address empty_ip_address;
  997. int res = 0;
  998. memset(&empty_ip_address, 0, sizeof(empty_ip_address));
  999. for (ring_no = 0; ring_no < INTERFACE_MAX; ring_no++) {
  1000. if (!set1[ring_no].configured && !set2[ring_no].configured) {
  1001. continue;
  1002. }
  1003. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  1004. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  1005. /*
  1006. * For current ring_no remove all set1 items existing
  1007. * in set2
  1008. */
  1009. if (memcmp(&set1[ring_no].member_list[set1_pos],
  1010. &set2[ring_no].member_list[set2_pos],
  1011. sizeof(struct totem_ip_address)) == 0) {
  1012. memset(&set1[ring_no].member_list[set1_pos], 0,
  1013. sizeof(struct totem_ip_address));
  1014. memset(&set2[ring_no].member_list[set2_pos], 0,
  1015. sizeof(struct totem_ip_address));
  1016. }
  1017. }
  1018. }
  1019. }
  1020. for (ring_no = 0; ring_no < INTERFACE_MAX; ring_no++) {
  1021. for (set1_pos = 0; set1_pos < set1[ring_no].member_count; set1_pos++) {
  1022. /*
  1023. * All items which remain in set1 and don't exist in set2 any more
  1024. * have to be removed.
  1025. */
  1026. if (memcmp(&set1[ring_no].member_list[set1_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  1027. log_printf(LOGSYS_LEVEL_DEBUG,
  1028. "removing dynamic member %s for ring %u",
  1029. totemip_print(&set1[ring_no].member_list[set1_pos]),
  1030. ring_no);
  1031. totempg_member_remove(&set1[ring_no].member_list[set1_pos], ring_no);
  1032. }
  1033. }
  1034. if (!set2[ring_no].configured) {
  1035. continue;
  1036. }
  1037. for (set2_pos = 0; set2_pos < set2[ring_no].member_count; set2_pos++) {
  1038. /*
  1039. * All items which remain in set2 and don't exist in set1 are new nodes
  1040. * and have to be added.
  1041. */
  1042. if (memcmp(&set2[ring_no].member_list[set2_pos], &empty_ip_address, sizeof(empty_ip_address)) != 0) {
  1043. log_printf(LOGSYS_LEVEL_DEBUG,
  1044. "adding dynamic member %s for ring %u",
  1045. totemip_print(&set2[ring_no].member_list[set2_pos]),
  1046. ring_no);
  1047. if (totempg_member_add(&set2[ring_no].member_list[set2_pos], ring_no)) {
  1048. res = -1;
  1049. }
  1050. }
  1051. }
  1052. }
  1053. return res;
  1054. }
  1055. /*
  1056. * Configure parameters for links
  1057. */
  1058. static void configure_link_params(struct totem_config *totem_config, icmap_map_t map)
  1059. {
  1060. int i;
  1061. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  1062. char *addr_string;
  1063. int err;
  1064. int local_node_pos = find_local_node(map, 0);
  1065. for (i = 0; i<INTERFACE_MAX; i++) {
  1066. if (!totem_config->interfaces[i].configured) {
  1067. continue;
  1068. }
  1069. log_printf(LOGSYS_LEVEL_DEBUG, "Configuring link %d params\n", i);
  1070. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring%u_addr", local_node_pos, i);
  1071. if (icmap_get_string_r(map, tmp_key, &addr_string) != CS_OK) {
  1072. continue;
  1073. }
  1074. err = totemip_parse(&totem_config->interfaces[i].local_ip, addr_string, totem_config->ip_version);
  1075. if (err != 0) {
  1076. continue;
  1077. }
  1078. totem_config->interfaces[i].local_ip.nodeid = totem_config->node_id;
  1079. /* In case this is a new link, fill in the defaults if there was no interface{} section for it */
  1080. if (!totem_config->interfaces[i].knet_link_priority)
  1081. totem_config->interfaces[i].knet_link_priority = 1;
  1082. /* knet_ping_interval & knet_ping_timeout are set later once we know all the other params */
  1083. if (!totem_config->interfaces[i].knet_ping_precision)
  1084. totem_config->interfaces[i].knet_ping_precision = KNET_PING_PRECISION;
  1085. if (!totem_config->interfaces[i].knet_pong_count)
  1086. totem_config->interfaces[i].knet_pong_count = KNET_PONG_COUNT;
  1087. if (!totem_config->interfaces[i].knet_transport)
  1088. totem_config->interfaces[i].knet_transport = KNET_TRANSPORT_UDP;
  1089. if (!totem_config->interfaces[i].ip_port)
  1090. totem_config->interfaces[i].ip_port = DEFAULT_PORT + i;
  1091. }
  1092. }
  1093. static void configure_totem_links(struct totem_config *totem_config, icmap_map_t map)
  1094. {
  1095. int i;
  1096. for (i = 0; i<INTERFACE_MAX; i++) {
  1097. if (!totem_config->interfaces[i].configured) {
  1098. continue;
  1099. }
  1100. log_printf(LOGSYS_LEVEL_INFO, "Configuring link %d\n", i);
  1101. totempg_iface_set(&totem_config->interfaces[i].local_ip, totem_config->interfaces[i].ip_port, i);
  1102. }
  1103. }
  1104. /* Check for differences in config that can't be done on-the-fly and print an error */
  1105. static int check_things_have_not_changed(struct totem_config *totem_config, const char **error_string)
  1106. {
  1107. int i,j,k;
  1108. const char *ip_str;
  1109. char addr_buf[INET6_ADDRSTRLEN];
  1110. int changed = 0;
  1111. for (i = 0; i<INTERFACE_MAX; i++) {
  1112. if (totem_config->interfaces[i].configured &&
  1113. totem_config->orig_interfaces[i].configured) {
  1114. if (totem_config->interfaces[i].knet_transport !=
  1115. totem_config->orig_interfaces[i].knet_transport) {
  1116. log_printf(LOGSYS_LEVEL_ERROR,
  1117. "New config has different knet transport for link %d. Internal value was NOT changed.\n", i);
  1118. changed = 1;
  1119. }
  1120. /* Check each nodeid in the new configuration and make sure its IP address on this link has not changed */
  1121. for (j=0; j < totem_config->interfaces[i].member_count; j++) {
  1122. for (k=0; k < totem_config->orig_interfaces[i].member_count; k++) {
  1123. if (totem_config->interfaces[i].member_list[j].nodeid ==
  1124. totem_config->orig_interfaces[i].member_list[k].nodeid) {
  1125. /* Found our nodeid - check the IP address */
  1126. if (memcmp(&totem_config->interfaces[i].member_list[j],
  1127. &totem_config->orig_interfaces[i].member_list[k],
  1128. sizeof(struct totem_ip_address))) {
  1129. ip_str = totemip_print(&totem_config->orig_interfaces[i].member_list[k]);
  1130. /* if ip_str is NULL then the old address was invalid and is allowed to change */
  1131. if (ip_str) {
  1132. strncpy(addr_buf, ip_str, sizeof(addr_buf));
  1133. addr_buf[sizeof(addr_buf) - 1] = '\0';
  1134. log_printf(LOGSYS_LEVEL_ERROR,
  1135. "new config has different address for link %d (addr changed from %s to %s). Internal value was NOT changed.\n",
  1136. i, addr_buf, totemip_print(&totem_config->interfaces[i].member_list[j]));
  1137. changed = 1;
  1138. }
  1139. }
  1140. }
  1141. }
  1142. }
  1143. }
  1144. }
  1145. if (changed) {
  1146. snprintf (error_string_response, sizeof(error_string_response),
  1147. "To reconfigure an interface it must be deleted and recreated. A working interface needs to be available to corosync at all times");
  1148. *error_string = error_string_response;
  1149. return -1;
  1150. }
  1151. return 0;
  1152. }
  1153. static int put_nodelist_members_to_config(struct totem_config *totem_config, icmap_map_t map,
  1154. int reload, const char **error_string)
  1155. {
  1156. icmap_iter_t iter, iter2;
  1157. const char *iter_key, *iter_key2;
  1158. int res = 0;
  1159. unsigned int node_pos;
  1160. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  1161. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  1162. char *node_addr_str;
  1163. int member_count;
  1164. unsigned int linknumber = 0;
  1165. int i, j;
  1166. int last_node_pos = -1;
  1167. /* Clear out nodelist so we can put the new one in if needed */
  1168. for (i = 0; i < INTERFACE_MAX; i++) {
  1169. for (j = 0; j < PROCESSOR_COUNT_MAX; j++) {
  1170. memset(&totem_config->interfaces[i].member_list[j], 0, sizeof(struct totem_ip_address));
  1171. }
  1172. totem_config->interfaces[i].member_count = 0;
  1173. }
  1174. iter = icmap_iter_init_r(map, "nodelist.node.");
  1175. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  1176. res = sscanf(iter_key, "nodelist.node.%u.%s", &node_pos, tmp_key);
  1177. if (res != 2) {
  1178. continue;
  1179. }
  1180. /* If it's the same as the last node_pos then skip it */
  1181. if (node_pos == last_node_pos) {
  1182. continue;
  1183. }
  1184. last_node_pos = node_pos;
  1185. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  1186. iter2 = icmap_iter_init_r(map, tmp_key);
  1187. while ((iter_key2 = icmap_iter_next(iter2, NULL, NULL)) != NULL) {
  1188. unsigned int nodeid;
  1189. char *str;
  1190. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos);
  1191. if (icmap_get_uint32_r(map, tmp_key, &nodeid) != CS_OK) {
  1192. nodeid = 0;
  1193. }
  1194. res = sscanf(iter_key2, "nodelist.node.%u.ring%u%s", &node_pos, &linknumber, tmp_key2);
  1195. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  1196. continue;
  1197. }
  1198. if (linknumber >= INTERFACE_MAX) {
  1199. snprintf (error_string_response, sizeof(error_string_response),
  1200. "parse error in config: interface ring number %u is bigger than allowed maximum %u\n",
  1201. linknumber, INTERFACE_MAX - 1);
  1202. *error_string = error_string_response;
  1203. icmap_iter_finalize(iter2);
  1204. icmap_iter_finalize(iter);
  1205. return (-1);
  1206. }
  1207. if (icmap_get_string_r(map, iter_key2, &node_addr_str) != CS_OK) {
  1208. continue;
  1209. }
  1210. /* Generate nodeids if they are not provided and transport is UDP/U */
  1211. if (!nodeid &&
  1212. (totem_config->transport_number == TOTEM_TRANSPORT_UDP ||
  1213. totem_config->transport_number == TOTEM_TRANSPORT_UDPU)) {
  1214. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", node_pos);
  1215. if (icmap_get_string_r(map, tmp_key, &str) == CS_OK) {
  1216. nodeid = generate_nodeid(totem_config, str);
  1217. if (nodeid == -1) {
  1218. sprintf(error_string_response,
  1219. "An IPV6 network requires that a node ID be specified "
  1220. "for address '%s'.", node_addr_str);
  1221. *error_string = error_string_response;
  1222. free(str);
  1223. return (-1);
  1224. }
  1225. log_printf(LOGSYS_LEVEL_DEBUG,
  1226. "Generated nodeid = " CS_PRI_NODE_ID " for %s", nodeid, str);
  1227. free(str);
  1228. /*
  1229. * Put nodeid back to nodelist to make cfgtool work
  1230. */
  1231. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", node_pos);
  1232. /*
  1233. * Not critical
  1234. */
  1235. (void)icmap_set_uint32_r(map, tmp_key, nodeid);
  1236. }
  1237. }
  1238. if (!nodeid && totem_config->transport_number == TOTEM_TRANSPORT_KNET) {
  1239. sprintf(error_string_response,
  1240. "Knet requires an explicit nodeid to be specified "
  1241. "for address '%s'.", node_addr_str);
  1242. *error_string = error_string_response;
  1243. return (-1);
  1244. }
  1245. if (totem_config->transport_number == TOTEM_TRANSPORT_KNET && nodeid >= KNET_MAX_HOST) {
  1246. sprintf(error_string_response,
  1247. "Knet requires nodeid to be less than %u "
  1248. "for address '%s'.", KNET_MAX_HOST, node_addr_str);
  1249. *error_string = error_string_response;
  1250. return (-1);
  1251. }
  1252. member_count = totem_config->interfaces[linknumber].member_count;
  1253. res = totemip_parse(&totem_config->interfaces[linknumber].member_list[member_count],
  1254. node_addr_str, totem_config->ip_version);
  1255. if (res == 0) {
  1256. totem_config->interfaces[linknumber].member_list[member_count].nodeid = nodeid;
  1257. totem_config->interfaces[linknumber].member_count++;
  1258. totem_config->interfaces[linknumber].configured = 1;
  1259. } else {
  1260. sprintf(error_string_response, "failed to parse node address '%s'\n", node_addr_str);
  1261. *error_string = error_string_response;
  1262. memset(&totem_config->interfaces[linknumber].member_list[member_count], 0,
  1263. sizeof(struct totem_ip_address));
  1264. free(node_addr_str);
  1265. icmap_iter_finalize(iter2);
  1266. icmap_iter_finalize(iter);
  1267. return -1;
  1268. }
  1269. free(node_addr_str);
  1270. }
  1271. icmap_iter_finalize(iter2);
  1272. }
  1273. icmap_iter_finalize(iter);
  1274. configure_link_params(totem_config, map);
  1275. if (reload) {
  1276. log_printf(LOGSYS_LEVEL_DEBUG, "About to reconfigure links from nodelist.\n");
  1277. if (check_things_have_not_changed(totem_config, error_string) == -1) {
  1278. return -1;
  1279. }
  1280. }
  1281. return 0;
  1282. }
  1283. static void config_convert_nodelist_to_interface(icmap_map_t map, struct totem_config *totem_config)
  1284. {
  1285. int res = 0;
  1286. int node_pos;
  1287. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  1288. char tmp_key2[ICMAP_KEYNAME_MAXLEN];
  1289. char *node_addr_str;
  1290. unsigned int linknumber = 0;
  1291. icmap_iter_t iter;
  1292. const char *iter_key;
  1293. node_pos = find_local_node(map, 1);
  1294. if (node_pos > -1) {
  1295. /*
  1296. * We found node, so create interface section
  1297. */
  1298. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.", node_pos);
  1299. iter = icmap_iter_init_r(map, tmp_key);
  1300. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  1301. res = sscanf(iter_key, "nodelist.node.%u.ring%u%s", &node_pos, &linknumber, tmp_key2);
  1302. if (res != 3 || strcmp(tmp_key2, "_addr") != 0) {
  1303. continue ;
  1304. }
  1305. if (icmap_get_string_r(map, iter_key, &node_addr_str) != CS_OK) {
  1306. continue;
  1307. }
  1308. snprintf(tmp_key2, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.bindnetaddr", linknumber);
  1309. icmap_set_string_r(map, tmp_key2, node_addr_str);
  1310. free(node_addr_str);
  1311. }
  1312. icmap_iter_finalize(iter);
  1313. }
  1314. }
  1315. static int get_interface_params(struct totem_config *totem_config, icmap_map_t map,
  1316. const char **error_string, uint64_t *warnings,
  1317. int reload)
  1318. {
  1319. int res = 0;
  1320. unsigned int linknumber = 0;
  1321. int member_count = 0;
  1322. int i;
  1323. icmap_iter_t iter, member_iter;
  1324. const char *iter_key;
  1325. const char *member_iter_key;
  1326. char linknumber_key[ICMAP_KEYNAME_MAXLEN];
  1327. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  1328. uint8_t u8;
  1329. uint32_t u32;
  1330. char *str;
  1331. char *cluster_name = NULL;
  1332. enum totem_ip_version_enum tmp_ip_version = TOTEM_IP_VERSION_4;
  1333. int ret = 0;
  1334. if (reload) {
  1335. for (i=0; i<INTERFACE_MAX; i++) {
  1336. /*
  1337. * Set back to defaults things that might have been configured and
  1338. * now have been taken out of corosync.conf. These won't be caught by the
  1339. * code below which only looks at interface{} sections that actually exist.
  1340. */
  1341. totem_config->interfaces[i].configured = 0;
  1342. totem_config->interfaces[i].knet_ping_timeout = 0;
  1343. totem_config->interfaces[i].knet_ping_interval = 0;
  1344. totem_config->interfaces[i].knet_ping_precision = KNET_PING_PRECISION;
  1345. totem_config->interfaces[i].knet_pong_count = KNET_PONG_COUNT;
  1346. }
  1347. }
  1348. if (icmap_get_string_r(map, "totem.cluster_name", &cluster_name) != CS_OK) {
  1349. cluster_name = NULL;
  1350. }
  1351. iter = icmap_iter_init_r(map, "totem.interface.");
  1352. while ((iter_key = icmap_iter_next(iter, NULL, NULL)) != NULL) {
  1353. res = sscanf(iter_key, "totem.interface.%[^.].%s", linknumber_key, tmp_key);
  1354. if (res != 2) {
  1355. continue;
  1356. }
  1357. if (strcmp(tmp_key, "bindnetaddr") != 0 && totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1358. continue;
  1359. }
  1360. member_count = 0;
  1361. linknumber = atoi(linknumber_key);
  1362. if (linknumber >= INTERFACE_MAX) {
  1363. snprintf (error_string_response, sizeof(error_string_response),
  1364. "parse error in config: interface ring number %u is bigger than allowed maximum %u\n",
  1365. linknumber, INTERFACE_MAX - 1);
  1366. *error_string = error_string_response;
  1367. ret = -1;
  1368. goto out;
  1369. }
  1370. /* These things are only valid for the initial read */
  1371. if (!reload) {
  1372. /*
  1373. * Get the bind net address
  1374. */
  1375. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.bindnetaddr", linknumber);
  1376. if (icmap_get_string_r(map, tmp_key, &str) == CS_OK) {
  1377. res = totemip_parse (&totem_config->interfaces[linknumber].bindnet, str,
  1378. totem_config->ip_version);
  1379. if (res) {
  1380. sprintf(error_string_response, "failed to parse bindnet address '%s'\n", str);
  1381. *error_string = error_string_response;
  1382. free(str);
  1383. ret = -1;
  1384. goto out;
  1385. }
  1386. free(str);
  1387. }
  1388. /*
  1389. * Get interface multicast address
  1390. */
  1391. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", linknumber);
  1392. if (icmap_get_string_r(map, tmp_key, &str) == CS_OK) {
  1393. res = totemip_parse (&totem_config->interfaces[linknumber].mcast_addr, str,
  1394. totem_config->ip_version);
  1395. if (res) {
  1396. sprintf(error_string_response, "failed to parse mcast address '%s'\n", str);
  1397. *error_string = error_string_response;
  1398. free(str);
  1399. ret = -1;
  1400. goto out;
  1401. }
  1402. free(str);
  1403. } else if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1404. /*
  1405. * User not specified address -> autogenerate one from cluster_name key
  1406. * (if available). Return code is intentionally ignored, because
  1407. * udpu doesn't need mcastaddr and validity of mcastaddr for udp is
  1408. * checked later anyway.
  1409. */
  1410. if (totem_config->interfaces[0].bindnet.family == AF_INET) {
  1411. tmp_ip_version = TOTEM_IP_VERSION_4;
  1412. } else if (totem_config->interfaces[0].bindnet.family == AF_INET6) {
  1413. tmp_ip_version = TOTEM_IP_VERSION_6;
  1414. }
  1415. (void)get_cluster_mcast_addr (cluster_name,
  1416. linknumber,
  1417. tmp_ip_version,
  1418. &totem_config->interfaces[linknumber].mcast_addr);
  1419. }
  1420. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.broadcast", linknumber);
  1421. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  1422. if (strcmp (str, "yes") == 0) {
  1423. totem_config->broadcast_use = 1;
  1424. }
  1425. free(str);
  1426. }
  1427. }
  1428. /* These things are only valid for the initial read OR a newly-defined link */
  1429. if (!reload || (totem_config->interfaces[linknumber].configured == 0)) {
  1430. /*
  1431. * Get mcast port
  1432. */
  1433. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", linknumber);
  1434. if (icmap_get_uint16_r(map, tmp_key, &totem_config->interfaces[linknumber].ip_port) != CS_OK) {
  1435. if (totem_config->broadcast_use) {
  1436. totem_config->interfaces[linknumber].ip_port = DEFAULT_PORT + (2 * linknumber);
  1437. } else {
  1438. totem_config->interfaces[linknumber].ip_port = DEFAULT_PORT + linknumber;
  1439. }
  1440. }
  1441. /*
  1442. * Get the TTL
  1443. */
  1444. totem_config->interfaces[linknumber].ttl = 1;
  1445. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.ttl", linknumber);
  1446. if (icmap_get_uint8_r(map, tmp_key, &u8) == CS_OK) {
  1447. totem_config->interfaces[linknumber].ttl = u8;
  1448. }
  1449. totem_config->interfaces[linknumber].knet_transport = KNET_DEFAULT_TRANSPORT;
  1450. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_transport", linknumber);
  1451. if (icmap_get_string_r(map, tmp_key, &str) == CS_OK) {
  1452. #ifdef KNET_TRANSPORT_SCTP
  1453. if (strcmp(str, "sctp") == 0) {
  1454. totem_config->interfaces[linknumber].knet_transport = KNET_TRANSPORT_SCTP;
  1455. log_printf(LOGSYS_LEVEL_WARNING, "WARNING SCTP transport is deprecated and will be removed in a future release.\n");
  1456. } else
  1457. #endif
  1458. if (strcmp(str, "udp") == 0) {
  1459. totem_config->interfaces[linknumber].knet_transport = KNET_TRANSPORT_UDP;
  1460. }
  1461. else {
  1462. #ifdef KNET_TRANSPORT_SCTP
  1463. *error_string = "Unrecognised knet_transport. expected 'udp' or 'sctp'";
  1464. #else
  1465. *error_string = "Unrecognised knet_transport. only 'udp' is supported";
  1466. #endif
  1467. ret = -1;
  1468. goto out;
  1469. }
  1470. }
  1471. }
  1472. totem_config->interfaces[linknumber].configured = 1;
  1473. /*
  1474. * Get the knet link params
  1475. */
  1476. totem_config->interfaces[linknumber].knet_link_priority = 1;
  1477. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_link_priority", linknumber);
  1478. if (icmap_get_uint8_r(map, tmp_key, &u8) == CS_OK) {
  1479. totem_config->interfaces[linknumber].knet_link_priority = u8;
  1480. }
  1481. totem_config->interfaces[linknumber].knet_ping_interval = 0; /* real default applied later */
  1482. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_ping_interval", linknumber);
  1483. if (icmap_get_uint32_r(map, tmp_key, &u32) == CS_OK) {
  1484. totem_config->interfaces[linknumber].knet_ping_interval = u32;
  1485. }
  1486. totem_config->interfaces[linknumber].knet_ping_timeout = 0; /* real default applied later */
  1487. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_ping_timeout", linknumber);
  1488. if (icmap_get_uint32_r(map, tmp_key, &u32) == CS_OK) {
  1489. totem_config->interfaces[linknumber].knet_ping_timeout = u32;
  1490. }
  1491. totem_config->interfaces[linknumber].knet_ping_precision = KNET_PING_PRECISION;
  1492. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_ping_precision", linknumber);
  1493. if (icmap_get_uint32_r(map, tmp_key, &u32) == CS_OK) {
  1494. totem_config->interfaces[linknumber].knet_ping_precision = u32;
  1495. }
  1496. totem_config->interfaces[linknumber].knet_pong_count = KNET_PONG_COUNT;
  1497. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.knet_pong_count", linknumber);
  1498. if (icmap_get_uint32_r(map, tmp_key, &u32) == CS_OK) {
  1499. totem_config->interfaces[linknumber].knet_pong_count = u32;
  1500. }
  1501. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.member.", linknumber);
  1502. member_iter = icmap_iter_init_r(map, tmp_key);
  1503. while ((member_iter_key = icmap_iter_next(member_iter, NULL, NULL)) != NULL) {
  1504. if (member_count == 0) {
  1505. if (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK) {
  1506. free(str);
  1507. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_IGNORED;
  1508. break;
  1509. } else {
  1510. *warnings |= TOTEM_CONFIG_WARNING_MEMBERS_DEPRECATED;
  1511. }
  1512. }
  1513. if (icmap_get_string_r(map, member_iter_key, &str) == CS_OK) {
  1514. res = totemip_parse (&totem_config->interfaces[linknumber].member_list[member_count++],
  1515. str, totem_config->ip_version);
  1516. if (res) {
  1517. sprintf(error_string_response, "failed to parse node address '%s'\n", str);
  1518. *error_string = error_string_response;
  1519. icmap_iter_finalize(member_iter);
  1520. free(str);
  1521. ret = -1;
  1522. goto out;
  1523. }
  1524. free(str);
  1525. }
  1526. }
  1527. icmap_iter_finalize(member_iter);
  1528. totem_config->interfaces[linknumber].member_count = member_count;
  1529. }
  1530. out:
  1531. icmap_iter_finalize(iter);
  1532. free(cluster_name);
  1533. return (ret);
  1534. }
  1535. extern int totem_config_read (
  1536. struct totem_config *totem_config,
  1537. const char **error_string,
  1538. uint64_t *warnings)
  1539. {
  1540. int res = 0;
  1541. char *str, *ring0_addr_str;
  1542. char tmp_key[ICMAP_KEYNAME_MAXLEN];
  1543. uint16_t u16;
  1544. int i;
  1545. int local_node_pos;
  1546. uint32_t u32;
  1547. *warnings = 0;
  1548. memset (totem_config, 0, sizeof (struct totem_config));
  1549. totem_config->interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  1550. if (totem_config->interfaces == 0) {
  1551. *error_string = "Out of memory trying to allocate ethernet interface storage area";
  1552. return -1;
  1553. }
  1554. totem_config->transport_number = TOTEM_TRANSPORT_KNET;
  1555. if (icmap_get_string("totem.transport", &str) == CS_OK) {
  1556. if (strcmp (str, "udpu") == 0) {
  1557. totem_config->transport_number = TOTEM_TRANSPORT_UDPU;
  1558. } else if (strcmp (str, "udp") == 0) {
  1559. totem_config->transport_number = TOTEM_TRANSPORT_UDP;
  1560. } else if (strcmp (str, "knet") == 0) {
  1561. totem_config->transport_number = TOTEM_TRANSPORT_KNET;
  1562. } else {
  1563. *error_string = "Invalid transport type. Should be udpu, udp or knet";
  1564. free(str);
  1565. return -1;
  1566. }
  1567. free(str);
  1568. }
  1569. memset (totem_config->interfaces, 0,
  1570. sizeof (struct totem_interface) * INTERFACE_MAX);
  1571. strcpy (totem_config->link_mode, "passive");
  1572. icmap_get_uint32("totem.version", (uint32_t *)&totem_config->version);
  1573. /* initial crypto load */
  1574. if (totem_get_crypto(totem_config, icmap_get_global_map(), error_string) != 0) {
  1575. return -1;
  1576. }
  1577. if (totem_config_keyread(totem_config, icmap_get_global_map(), error_string) != 0) {
  1578. return -1;
  1579. }
  1580. totem_config->crypto_index = 1;
  1581. totem_config->crypto_changed = 0;
  1582. if (icmap_get_string("totem.link_mode", &str) == CS_OK) {
  1583. if (strlen(str) >= TOTEM_LINK_MODE_BYTES) {
  1584. *error_string = "totem.link_mode is too long";
  1585. free(str);
  1586. return -1;
  1587. }
  1588. strcpy (totem_config->link_mode, str);
  1589. free(str);
  1590. }
  1591. if (icmap_get_uint32("totem.nodeid", &u32) == CS_OK) {
  1592. *warnings |= TOTEM_CONFIG_WARNING_TOTEM_NODEID_SET;
  1593. }
  1594. totem_config->clear_node_high_bit = 0;
  1595. if (icmap_get_string("totem.clear_node_high_bit", &str) == CS_OK) {
  1596. if (strcmp (str, "yes") == 0) {
  1597. totem_config->clear_node_high_bit = 1;
  1598. }
  1599. free(str);
  1600. }
  1601. icmap_get_uint32("totem.threads", &totem_config->threads);
  1602. icmap_get_uint32("totem.netmtu", &totem_config->net_mtu);
  1603. totem_config->ip_version = totem_config_get_ip_version(totem_config);
  1604. if (icmap_get_string("totem.interface.0.bindnetaddr", &str) != CS_OK) {
  1605. /*
  1606. * We were not able to find ring 0 bindnet addr. Try to use nodelist informations
  1607. */
  1608. config_convert_nodelist_to_interface(icmap_get_global_map(), totem_config);
  1609. } else {
  1610. if (icmap_get_string("nodelist.node.0.ring0_addr", &ring0_addr_str) == CS_OK) {
  1611. /*
  1612. * Both bindnetaddr and ring0_addr are set.
  1613. * Log warning information, and use nodelist instead
  1614. */
  1615. *warnings |= TOTEM_CONFIG_BINDNETADDR_NODELIST_SET;
  1616. config_convert_nodelist_to_interface(icmap_get_global_map(), totem_config);
  1617. free(ring0_addr_str);
  1618. }
  1619. free(str);
  1620. }
  1621. /*
  1622. * Broadcast option is global but set in interface section,
  1623. * so reset before processing interfaces.
  1624. */
  1625. totem_config->broadcast_use = 0;
  1626. res = get_interface_params(totem_config, icmap_get_global_map(), error_string, warnings, 0);
  1627. if (res < 0) {
  1628. return res;
  1629. }
  1630. /*
  1631. * Use broadcast is global, so if set, make sure to fill mcast addr correctly
  1632. * broadcast is only supported for UDP so just do interface 0;
  1633. */
  1634. if (totem_config->broadcast_use) {
  1635. totemip_parse (&totem_config->interfaces[0].mcast_addr,
  1636. "255.255.255.255", TOTEM_IP_VERSION_4);
  1637. }
  1638. totem_config->ip_dscp = 0;
  1639. (void)icmap_get_uint8("totem.ip_dscp", &totem_config->ip_dscp);
  1640. /*
  1641. * Store automatically generated items back to icmap only for UDP
  1642. */
  1643. if (totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1644. for (i = 0; i < INTERFACE_MAX; i++) {
  1645. if (!totem_config->interfaces[i].configured) {
  1646. continue;
  1647. }
  1648. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastaddr", i);
  1649. if (icmap_get_string(tmp_key, &str) == CS_OK) {
  1650. free(str);
  1651. } else {
  1652. str = (char *)totemip_print(&totem_config->interfaces[i].mcast_addr);
  1653. icmap_set_string(tmp_key, str);
  1654. }
  1655. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "totem.interface.%u.mcastport", i);
  1656. if (icmap_get_uint16(tmp_key, &u16) != CS_OK) {
  1657. icmap_set_uint16(tmp_key, totem_config->interfaces[i].ip_port);
  1658. }
  1659. }
  1660. }
  1661. /*
  1662. * Store mcastport value to cmap runtime section for KNET
  1663. */
  1664. if (totem_config->transport_number == TOTEM_TRANSPORT_KNET) {
  1665. for (i = 0; i < INTERFACE_MAX; i++) {
  1666. if (!totem_config->interfaces[i].configured) {
  1667. continue;
  1668. }
  1669. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "runtime.config.totem.interface.%u.mcastport", i);
  1670. icmap_set_uint16(tmp_key, totem_config->interfaces[i].ip_port);
  1671. }
  1672. }
  1673. /*
  1674. * Check existence of nodelist
  1675. */
  1676. if ((icmap_get_string("nodelist.node.0.name", &str) == CS_OK) ||
  1677. (icmap_get_string("nodelist.node.0.ring0_addr", &str) == CS_OK)) {
  1678. free(str);
  1679. /*
  1680. * find local node
  1681. */
  1682. local_node_pos = find_local_node(icmap_get_global_map(), 1);
  1683. if (local_node_pos != -1) {
  1684. assert(totem_config->node_id == 0);
  1685. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.nodeid", local_node_pos);
  1686. (void)icmap_get_uint32(tmp_key, &totem_config->node_id);
  1687. if ((totem_config->transport_number == TOTEM_TRANSPORT_KNET) && (!totem_config->node_id)) {
  1688. *error_string = "Knet requires an explicit nodeid for the local node";
  1689. return -1;
  1690. }
  1691. if ((totem_config->transport_number == TOTEM_TRANSPORT_UDP ||
  1692. totem_config->transport_number == TOTEM_TRANSPORT_UDPU) && (!totem_config->node_id)) {
  1693. snprintf(tmp_key, ICMAP_KEYNAME_MAXLEN, "nodelist.node.%u.ring0_addr", local_node_pos);
  1694. icmap_get_string(tmp_key, &str);
  1695. totem_config->node_id = generate_nodeid(totem_config, str);
  1696. if (totem_config->node_id == -1) {
  1697. *error_string = "An IPV6 network requires that a node ID be specified";
  1698. free(str);
  1699. return (-1);
  1700. }
  1701. totem_config->interfaces[0].member_list[local_node_pos].nodeid = totem_config->node_id;
  1702. free(str);
  1703. }
  1704. /* Users must not change this */
  1705. icmap_set_ro_access("nodelist.local_node_pos", 0, 1);
  1706. }
  1707. if (put_nodelist_members_to_config(totem_config, icmap_get_global_map(), 0, error_string)) {
  1708. return -1;
  1709. }
  1710. }
  1711. /*
  1712. * Get things that might change in the future (and can depend on totem_config->interfaces);
  1713. */
  1714. totem_volatile_config_read(totem_config, icmap_get_global_map(), NULL);
  1715. totem_calc_knet_ping_timers(totem_config, icmap_get_global_map());
  1716. /* This is now done in the totemknet interface callback */
  1717. /* configure_totem_links(totem_config, icmap_get_global_map()); */
  1718. add_totem_config_notification(totem_config);
  1719. return 0;
  1720. }
  1721. int totem_config_validate (
  1722. struct totem_config *totem_config,
  1723. const char **error_string)
  1724. {
  1725. static char local_error_reason[512];
  1726. char parse_error[512];
  1727. const char *error_reason = local_error_reason;
  1728. int i;
  1729. uint32_t u32;
  1730. int num_configured = 0;
  1731. unsigned int interface_max = INTERFACE_MAX;
  1732. for (i = 0; i < INTERFACE_MAX; i++) {
  1733. if (totem_config->interfaces[i].configured) {
  1734. num_configured++;
  1735. }
  1736. }
  1737. if (num_configured == 0) {
  1738. error_reason = "No interfaces defined";
  1739. goto parse_error;
  1740. }
  1741. /* Check we found a local node name */
  1742. if (icmap_get_uint32("nodelist.local_node_pos", &u32) != CS_OK) {
  1743. error_reason = "No valid name found for local host";
  1744. goto parse_error;
  1745. }
  1746. for (i = 0; i < INTERFACE_MAX; i++) {
  1747. /*
  1748. * Some error checking of parsed data to make sure its valid
  1749. */
  1750. struct totem_ip_address null_addr;
  1751. if (!totem_config->interfaces[i].configured) {
  1752. continue;
  1753. }
  1754. memset (&null_addr, 0, sizeof (struct totem_ip_address));
  1755. if ((totem_config->transport_number == TOTEM_TRANSPORT_UDP) &&
  1756. memcmp (&totem_config->interfaces[i].mcast_addr, &null_addr,
  1757. sizeof (struct totem_ip_address)) == 0) {
  1758. snprintf (local_error_reason, sizeof(local_error_reason),
  1759. "No multicast address specified for interface %u", i);
  1760. goto parse_error;
  1761. }
  1762. if (totem_config->interfaces[i].ip_port == 0) {
  1763. snprintf (local_error_reason, sizeof(local_error_reason),
  1764. "No multicast port specified for interface %u", i);
  1765. goto parse_error;
  1766. }
  1767. if (totem_config->interfaces[i].ttl > 255) {
  1768. snprintf (local_error_reason, sizeof(local_error_reason),
  1769. "Invalid TTL (should be 0..255) for interface %u", i);
  1770. goto parse_error;
  1771. }
  1772. if (totem_config->transport_number != TOTEM_TRANSPORT_UDP &&
  1773. totem_config->interfaces[i].ttl != 1) {
  1774. snprintf (local_error_reason, sizeof(local_error_reason),
  1775. "Can only set ttl on multicast transport types for interface %u", i);
  1776. goto parse_error;
  1777. }
  1778. if (totem_config->interfaces[i].knet_link_priority > 255) {
  1779. snprintf (local_error_reason, sizeof(local_error_reason),
  1780. "Invalid link priority (should be 0..255) for interface %u", i);
  1781. goto parse_error;
  1782. }
  1783. if (totem_config->transport_number != TOTEM_TRANSPORT_KNET &&
  1784. totem_config->interfaces[i].knet_link_priority != 1) {
  1785. snprintf (local_error_reason, sizeof(local_error_reason),
  1786. "Can only set link priority on knet transport type for interface %u", i);
  1787. goto parse_error;
  1788. }
  1789. if (totem_config->interfaces[i].mcast_addr.family == AF_INET6 &&
  1790. totem_config->node_id == 0) {
  1791. snprintf (local_error_reason, sizeof(local_error_reason),
  1792. "An IPV6 network requires that a node ID be specified for interface %u", i);
  1793. goto parse_error;
  1794. }
  1795. if (totem_config->broadcast_use == 0 && totem_config->transport_number == TOTEM_TRANSPORT_UDP) {
  1796. if (totem_config->interfaces[i].mcast_addr.family != totem_config->interfaces[i].bindnet.family) {
  1797. snprintf (local_error_reason, sizeof(local_error_reason),
  1798. "Multicast address family does not match bind address family for interface %u", i);
  1799. goto parse_error;
  1800. }
  1801. if (totemip_is_mcast (&totem_config->interfaces[i].mcast_addr) != 0) {
  1802. snprintf (local_error_reason, sizeof(local_error_reason),
  1803. "mcastaddr is not a correct multicast address for interface %u", i);
  1804. goto parse_error;
  1805. }
  1806. }
  1807. }
  1808. if (totem_config->version != 2) {
  1809. error_reason = "This totem parser can only parse version 2 configurations.";
  1810. goto parse_error;
  1811. }
  1812. if (totem_volatile_config_validate(totem_config, icmap_get_global_map(), error_string) == -1) {
  1813. return (-1);
  1814. }
  1815. if (check_for_duplicate_nodeids(totem_config, error_string) == -1) {
  1816. return (-1);
  1817. }
  1818. /*
  1819. * KNET Link values validation
  1820. */
  1821. if (strcmp (totem_config->link_mode, "active") &&
  1822. strcmp (totem_config->link_mode, "rr") &&
  1823. strcmp (totem_config->link_mode, "passive")) {
  1824. snprintf (local_error_reason, sizeof(local_error_reason),
  1825. "The Knet link mode \"%s\" specified is invalid. It must be active, passive or rr.\n", totem_config->link_mode);
  1826. goto parse_error;
  1827. }
  1828. /* Only Knet does multiple interfaces */
  1829. if (totem_config->transport_number != TOTEM_TRANSPORT_KNET) {
  1830. interface_max = 1;
  1831. }
  1832. if (interface_max < num_configured) {
  1833. snprintf (parse_error, sizeof(parse_error),
  1834. "%d is too many configured interfaces for non-Knet transport.",
  1835. num_configured);
  1836. error_reason = parse_error;
  1837. goto parse_error;
  1838. }
  1839. /* Only knet allows crypto */
  1840. if (totem_config->transport_number != TOTEM_TRANSPORT_KNET) {
  1841. if ((strcmp(totem_config->crypto_cipher_type, "none") != 0) ||
  1842. (strcmp(totem_config->crypto_hash_type, "none") != 0)) {
  1843. snprintf (parse_error, sizeof(parse_error),
  1844. "crypto_cipher & crypto_hash are only valid for the Knet transport.");
  1845. error_reason = parse_error;
  1846. goto parse_error;
  1847. }
  1848. }
  1849. if (totem_config->net_mtu == 0) {
  1850. if (totem_config->transport_number == TOTEM_TRANSPORT_KNET) {
  1851. totem_config->net_mtu = KNET_MAX_PACKET_SIZE;
  1852. }
  1853. else {
  1854. totem_config->net_mtu = UDP_NETMTU;
  1855. }
  1856. }
  1857. return 0;
  1858. parse_error:
  1859. snprintf (error_string_response, sizeof(error_string_response),
  1860. "parse error in config: %s\n", error_reason);
  1861. *error_string = error_string_response;
  1862. return (-1);
  1863. }
  1864. static int read_keyfile (
  1865. const char *key_location,
  1866. struct totem_config *totem_config,
  1867. const char **error_string)
  1868. {
  1869. int fd;
  1870. int res;
  1871. int saved_errno;
  1872. char error_str[100];
  1873. const char *error_ptr;
  1874. fd = open (key_location, O_RDONLY);
  1875. if (fd == -1) {
  1876. error_ptr = qb_strerror_r(errno, error_str, sizeof(error_str));
  1877. snprintf (error_string_response, sizeof(error_string_response),
  1878. "Could not open %s: %s\n",
  1879. key_location, error_ptr);
  1880. goto parse_error;
  1881. }
  1882. res = read (fd, totem_config->private_key, TOTEM_PRIVATE_KEY_LEN_MAX);
  1883. saved_errno = errno;
  1884. close (fd);
  1885. if (res == -1) {
  1886. error_ptr = qb_strerror_r (saved_errno, error_str, sizeof(error_str));
  1887. snprintf (error_string_response, sizeof(error_string_response),
  1888. "Could not read %s: %s\n",
  1889. key_location, error_ptr);
  1890. goto parse_error;
  1891. }
  1892. if (res < TOTEM_PRIVATE_KEY_LEN_MIN) {
  1893. snprintf (error_string_response, sizeof(error_string_response),
  1894. "Could only read %d bits of minimum %u bits from %s.\n",
  1895. res * 8, TOTEM_PRIVATE_KEY_LEN_MIN * 8, key_location);
  1896. goto parse_error;
  1897. }
  1898. totem_config->private_key_len = res;
  1899. return 0;
  1900. parse_error:
  1901. *error_string = error_string_response;
  1902. return (-1);
  1903. }
  1904. int totem_config_keyread (
  1905. struct totem_config *totem_config,
  1906. icmap_map_t map,
  1907. const char **error_string)
  1908. {
  1909. int got_key = 0;
  1910. char *key_location = NULL;
  1911. int res;
  1912. size_t key_len;
  1913. char old_key[TOTEM_PRIVATE_KEY_LEN_MAX];
  1914. size_t old_key_len;
  1915. /* Take a copy so we can see if it has changed */
  1916. memcpy(old_key, totem_config->private_key, sizeof(totem_config->private_key));
  1917. old_key_len = totem_config->private_key_len;
  1918. memset (totem_config->private_key, 0, sizeof(totem_config->private_key));
  1919. totem_config->private_key_len = 0;
  1920. if (strcmp(totem_config->crypto_cipher_type, "none") == 0 &&
  1921. strcmp(totem_config->crypto_hash_type, "none") == 0) {
  1922. return (0);
  1923. }
  1924. /* cmap may store the location of the key file */
  1925. if (icmap_get_string_r(map, "totem.keyfile", &key_location) == CS_OK) {
  1926. res = read_keyfile(key_location, totem_config, error_string);
  1927. free(key_location);
  1928. if (res) {
  1929. goto key_error;
  1930. }
  1931. got_key = 1;
  1932. } else { /* Or the key itself may be in the cmap */
  1933. if (icmap_get_r(map, "totem.key", NULL, &key_len, NULL) == CS_OK) {
  1934. if (key_len > sizeof(totem_config->private_key)) {
  1935. sprintf(error_string_response, "key is too long");
  1936. goto key_error;
  1937. }
  1938. if (key_len < TOTEM_PRIVATE_KEY_LEN_MIN) {
  1939. sprintf(error_string_response, "key is too short");
  1940. goto key_error;
  1941. }
  1942. if (icmap_get_r(map, "totem.key", totem_config->private_key, &key_len, NULL) == CS_OK) {
  1943. totem_config->private_key_len = key_len;
  1944. got_key = 1;
  1945. } else {
  1946. sprintf(error_string_response, "can't load private key");
  1947. goto key_error;
  1948. }
  1949. }
  1950. }
  1951. /* In desperation we read the default filename */
  1952. if (!got_key) {
  1953. res = read_keyfile(COROSYSCONFDIR "/authkey", totem_config, error_string);
  1954. if (res)
  1955. goto key_error;
  1956. }
  1957. if (old_key_len != totem_config->private_key_len ||
  1958. memcmp(old_key, totem_config->private_key, sizeof(totem_config->private_key))) {
  1959. totem_config->crypto_changed = 1;
  1960. }
  1961. return (0);
  1962. key_error:
  1963. *error_string = error_string_response;
  1964. return (-1);
  1965. }
  1966. int totem_reread_crypto_config(struct totem_config *totem_config, icmap_map_t map, const char **error_string)
  1967. {
  1968. if (totem_get_crypto(totem_config, map, error_string) != 0) {
  1969. return -1;
  1970. }
  1971. if (totem_config_keyread(totem_config, map, error_string) != 0) {
  1972. return -1;
  1973. }
  1974. return 0;
  1975. }
  1976. static void debug_dump_totem_config(const struct totem_config *totem_config)
  1977. {
  1978. log_printf(LOGSYS_LEVEL_DEBUG, "Token Timeout (%d ms) retransmit timeout (%d ms)",
  1979. totem_config->token_timeout, totem_config->token_retransmit_timeout);
  1980. if (totem_config->token_warning) {
  1981. uint32_t token_warning_ms = totem_config->token_warning * totem_config->token_timeout / 100;
  1982. log_printf(LOGSYS_LEVEL_DEBUG, "Token warning every %d ms (%d%% of Token Timeout)",
  1983. token_warning_ms, totem_config->token_warning);
  1984. if (token_warning_ms < totem_config->token_retransmit_timeout)
  1985. log_printf (LOGSYS_LEVEL_DEBUG,
  1986. "The token warning interval (%d ms) is less than the token retransmit timeout (%d ms) "
  1987. "which can lead to spurious token warnings. Consider increasing the token_warning parameter.",
  1988. token_warning_ms, totem_config->token_retransmit_timeout);
  1989. } else
  1990. log_printf(LOGSYS_LEVEL_DEBUG, "Token warnings disabled");
  1991. log_printf(LOGSYS_LEVEL_DEBUG, "token hold (%d ms) retransmits before loss (%d retrans)",
  1992. totem_config->token_hold_timeout, totem_config->token_retransmits_before_loss_const);
  1993. log_printf(LOGSYS_LEVEL_DEBUG, "join (%d ms) send_join (%d ms) consensus (%d ms) merge (%d ms)",
  1994. totem_config->join_timeout, totem_config->send_join_timeout, totem_config->consensus_timeout,
  1995. totem_config->merge_timeout);
  1996. log_printf(LOGSYS_LEVEL_DEBUG, "downcheck (%d ms) fail to recv const (%d msgs)",
  1997. totem_config->downcheck_timeout, totem_config->fail_to_recv_const);
  1998. log_printf(LOGSYS_LEVEL_DEBUG,
  1999. "seqno unchanged const (%d rotations) Maximum network MTU %d",
  2000. totem_config->seqno_unchanged_const, totem_config->net_mtu);
  2001. log_printf(LOGSYS_LEVEL_DEBUG,
  2002. "window size per rotation (%d messages) maximum messages per rotation (%d messages)",
  2003. totem_config->window_size, totem_config->max_messages);
  2004. log_printf(LOGSYS_LEVEL_DEBUG, "missed count const (%d messages)", totem_config->miss_count_const);
  2005. log_printf(LOGSYS_LEVEL_DEBUG, "heartbeat_failures_allowed (%d)",
  2006. totem_config->heartbeat_failures_allowed);
  2007. log_printf(LOGSYS_LEVEL_DEBUG, "max_network_delay (%d ms)", totem_config->max_network_delay);
  2008. }
  2009. static void totem_change_notify(
  2010. int32_t event,
  2011. const char *key_name,
  2012. struct icmap_notify_value new_val,
  2013. struct icmap_notify_value old_val,
  2014. void *user_data)
  2015. {
  2016. struct totem_config *totem_config = (struct totem_config *)user_data;
  2017. uint32_t *param;
  2018. uint8_t reloading;
  2019. const char *deleted_key = NULL;
  2020. const char *error_string;
  2021. /*
  2022. * If a full reload is in progress then don't do anything until it's done and
  2023. * can reconfigure it all atomically
  2024. */
  2025. if (icmap_get_uint8("config.reload_in_progress", &reloading) == CS_OK && reloading)
  2026. return;
  2027. param = totem_get_param_by_name((struct totem_config *)user_data, key_name);
  2028. /*
  2029. * Process change only if changed key is found in totem_config (-> param is not NULL)
  2030. * or for special key token_coefficient. token_coefficient key is not stored in
  2031. * totem_config, but it is used for computation of token timeout.
  2032. */
  2033. if (!param && strcmp(key_name, "totem.token_coefficient") != 0)
  2034. return;
  2035. /*
  2036. * Values other than UINT32 are not supported, or needed (yet)
  2037. */
  2038. switch (event) {
  2039. case ICMAP_TRACK_DELETE:
  2040. deleted_key = key_name;
  2041. break;
  2042. case ICMAP_TRACK_ADD:
  2043. case ICMAP_TRACK_MODIFY:
  2044. deleted_key = NULL;
  2045. break;
  2046. default:
  2047. break;
  2048. }
  2049. totem_volatile_config_read (totem_config, icmap_get_global_map(), deleted_key);
  2050. log_printf(LOGSYS_LEVEL_DEBUG, "Totem related config key changed. Dumping actual totem config.");
  2051. debug_dump_totem_config(totem_config);
  2052. if (totem_volatile_config_validate(totem_config, icmap_get_global_map(), &error_string) == -1) {
  2053. log_printf (LOGSYS_LEVEL_ERROR, "%s", error_string);
  2054. /*
  2055. * TODO: Consider corosync exit and/or load defaults for volatile
  2056. * values. For now, log error seems to be enough
  2057. */
  2058. }
  2059. }
  2060. int totemconfig_configure_new_params(
  2061. struct totem_config *totem_config,
  2062. icmap_map_t map,
  2063. const char **error_string)
  2064. {
  2065. uint64_t warnings = 0LL;
  2066. get_interface_params(totem_config, map, error_string, &warnings, 1);
  2067. if (put_nodelist_members_to_config (totem_config, map, 1, error_string)) {
  2068. return -1;
  2069. }
  2070. log_printf(LOGSYS_LEVEL_DEBUG, "Configuration reloaded. Dumping actual totem config.");
  2071. debug_dump_totem_config(totem_config);
  2072. /* Reinstate the local_node_pos */
  2073. (void)find_local_node(map, 0);
  2074. return 0;
  2075. }
  2076. int totemconfig_commit_new_params(
  2077. struct totem_config *totem_config,
  2078. icmap_map_t map)
  2079. {
  2080. int res;
  2081. struct totem_interface *new_interfaces = NULL;
  2082. new_interfaces = malloc (sizeof (struct totem_interface) * INTERFACE_MAX);
  2083. assert(new_interfaces != NULL);
  2084. memcpy(new_interfaces, totem_config->interfaces, sizeof (struct totem_interface) * INTERFACE_MAX);
  2085. /* Set link parameters including local_ip */
  2086. configure_totem_links(totem_config, map);
  2087. /* Add & remove nodes & link properties */
  2088. res = compute_and_set_totempg_interfaces(totem_config->orig_interfaces, new_interfaces);
  2089. /* Does basic global params (like compression) */
  2090. totempg_reconfigure();
  2091. free(new_interfaces);
  2092. /*
  2093. * On a reload this return is ignored because it's too late to do anything about it,
  2094. * but errors are reported back via cmap.
  2095. */
  2096. return res;
  2097. }
  2098. static void add_totem_config_notification(struct totem_config *totem_config)
  2099. {
  2100. icmap_track_t icmap_track;
  2101. icmap_track_add("totem.",
  2102. ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX,
  2103. totem_change_notify,
  2104. totem_config,
  2105. &icmap_track);
  2106. }