totemrrp.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154
  1. /*
  2. * Copyright (c) 2005 MontaVista Software, Inc.
  3. * Copyright (c) 2006-2012 Red Hat, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. * Author: Steven Dake (sdake@redhat.com)
  8. *
  9. * This software licensed under BSD license, the text of which follows:
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above copyright notice,
  15. * this list of conditions and the following disclaimer.
  16. * - Redistributions in binary form must reproduce the above copyright notice,
  17. * this list of conditions and the following disclaimer in the documentation
  18. * and/or other materials provided with the distribution.
  19. * - Neither the name of the MontaVista Software, Inc. nor the names of its
  20. * contributors may be used to endorse or promote products derived from this
  21. * software without specific prior written permission.
  22. *
  23. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  27. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  33. * THE POSSIBILITY OF SUCH DAMAGE.
  34. */
  35. #include <config.h>
  36. #include <assert.h>
  37. #include <pthread.h>
  38. #include <sys/mman.h>
  39. #include <sys/types.h>
  40. #include <sys/stat.h>
  41. #include <sys/socket.h>
  42. #include <netdb.h>
  43. #include <sys/un.h>
  44. #include <sys/ioctl.h>
  45. #include <sys/param.h>
  46. #include <netinet/in.h>
  47. #include <arpa/inet.h>
  48. #include <unistd.h>
  49. #include <fcntl.h>
  50. #include <stdlib.h>
  51. #include <stdio.h>
  52. #include <errno.h>
  53. #include <sched.h>
  54. #include <time.h>
  55. #include <sys/time.h>
  56. #include <sys/poll.h>
  57. #include <limits.h>
  58. #include <corosync/sq.h>
  59. #include <corosync/list.h>
  60. #include <corosync/swab.h>
  61. #include <qb/qbdefs.h>
  62. #include <qb/qbloop.h>
  63. #define LOGSYS_UTILS_ONLY 1
  64. #include <corosync/logsys.h>
  65. #include "totemnet.h"
  66. #include "totemrrp.h"
  67. void rrp_deliver_fn (
  68. void *context,
  69. const void *msg,
  70. unsigned int msg_len);
  71. void rrp_iface_change_fn (
  72. void *context,
  73. const struct totem_ip_address *iface_addr);
  74. struct totemrrp_instance;
  75. struct passive_instance {
  76. struct totemrrp_instance *rrp_instance;
  77. unsigned int *faulty;
  78. unsigned int *token_recv_count;
  79. unsigned int *mcast_recv_count;
  80. unsigned char token[15000];
  81. unsigned int token_len;
  82. qb_loop_timer_handle timer_expired_token;
  83. qb_loop_timer_handle timer_problem_decrementer;
  84. void *totemrrp_context;
  85. unsigned int token_xmit_iface;
  86. unsigned int msg_xmit_iface;
  87. };
  88. struct active_instance {
  89. struct totemrrp_instance *rrp_instance;
  90. unsigned int *faulty;
  91. unsigned int *last_token_recv;
  92. unsigned int *counter_problems;
  93. unsigned char token[15000];
  94. unsigned int token_len;
  95. unsigned int last_token_seq;
  96. qb_loop_timer_handle timer_expired_token;
  97. qb_loop_timer_handle timer_problem_decrementer;
  98. void *totemrrp_context;
  99. };
  100. struct rrp_algo {
  101. const char *name;
  102. void * (*initialize) (
  103. struct totemrrp_instance *rrp_instance,
  104. int interface_count);
  105. void (*mcast_recv) (
  106. struct totemrrp_instance *instance,
  107. unsigned int iface_no,
  108. void *context,
  109. const void *msg,
  110. unsigned int msg_len);
  111. void (*mcast_noflush_send) (
  112. struct totemrrp_instance *instance,
  113. const void *msg,
  114. unsigned int msg_len);
  115. void (*mcast_flush_send) (
  116. struct totemrrp_instance *instance,
  117. const void *msg,
  118. unsigned int msg_len);
  119. void (*token_recv) (
  120. struct totemrrp_instance *instance,
  121. unsigned int iface_no,
  122. void *context,
  123. const void *msg,
  124. unsigned int msg_len,
  125. unsigned int token_seqid);
  126. void (*token_send) (
  127. struct totemrrp_instance *instance,
  128. const void *msg,
  129. unsigned int msg_len);
  130. void (*recv_flush) (
  131. struct totemrrp_instance *instance);
  132. void (*send_flush) (
  133. struct totemrrp_instance *instance);
  134. void (*iface_check) (
  135. struct totemrrp_instance *instance);
  136. void (*processor_count_set) (
  137. struct totemrrp_instance *instance,
  138. unsigned int processor_count);
  139. void (*token_target_set) (
  140. struct totemrrp_instance *instance,
  141. struct totem_ip_address *token_target,
  142. unsigned int iface_no);
  143. void (*ring_reenable) (
  144. struct totemrrp_instance *instance,
  145. unsigned int iface_no);
  146. int (*mcast_recv_empty) (
  147. struct totemrrp_instance *instance);
  148. int (*member_add) (
  149. struct totemrrp_instance *instance,
  150. const struct totem_ip_address *member,
  151. unsigned int iface_no);
  152. int (*member_remove) (
  153. struct totemrrp_instance *instance,
  154. const struct totem_ip_address *member,
  155. unsigned int iface_no);
  156. };
  157. struct totemrrp_instance {
  158. qb_loop_t *poll_handle;
  159. struct totem_interface *interfaces;
  160. struct rrp_algo *rrp_algo;
  161. void *context;
  162. char *status[INTERFACE_MAX];
  163. void (*totemrrp_deliver_fn) (
  164. void *context,
  165. const void *msg,
  166. unsigned int msg_len);
  167. void (*totemrrp_iface_change_fn) (
  168. void *context,
  169. const struct totem_ip_address *iface_addr,
  170. unsigned int iface_no);
  171. void (*totemrrp_token_seqid_get) (
  172. const void *msg,
  173. unsigned int *seqid,
  174. unsigned int *token_is);
  175. void (*totemrrp_target_set_completed) (
  176. void *context);
  177. unsigned int (*totemrrp_msgs_missing) (void);
  178. /*
  179. * Function and data used to log messages
  180. */
  181. int totemrrp_log_level_security;
  182. int totemrrp_log_level_error;
  183. int totemrrp_log_level_warning;
  184. int totemrrp_log_level_notice;
  185. int totemrrp_log_level_debug;
  186. int totemrrp_subsys_id;
  187. void (*totemrrp_log_printf) (
  188. int level,
  189. int subsys,
  190. const char *function,
  191. const char *file,
  192. int line,
  193. const char *format, ...)__attribute__((format(printf, 6, 7)));
  194. void **net_handles;
  195. void *rrp_algo_instance;
  196. int interface_count;
  197. int processor_count;
  198. int my_nodeid;
  199. struct totem_config *totem_config;
  200. void *deliver_fn_context[INTERFACE_MAX];
  201. qb_loop_timer_handle timer_active_test_ring_timeout[INTERFACE_MAX];
  202. totemrrp_stats_t stats;
  203. };
  204. static void stats_set_interface_faulty(struct totemrrp_instance *rrp_instance,
  205. unsigned int iface_no, int is_faulty);
  206. /*
  207. * None Replication Forward Declerations
  208. */
  209. static void none_mcast_recv (
  210. struct totemrrp_instance *instance,
  211. unsigned int iface_no,
  212. void *context,
  213. const void *msg,
  214. unsigned int msg_len);
  215. static void none_mcast_noflush_send (
  216. struct totemrrp_instance *instance,
  217. const void *msg,
  218. unsigned int msg_len);
  219. static void none_mcast_flush_send (
  220. struct totemrrp_instance *instance,
  221. const void *msg,
  222. unsigned int msg_len);
  223. static void none_token_recv (
  224. struct totemrrp_instance *instance,
  225. unsigned int iface_no,
  226. void *context,
  227. const void *msg,
  228. unsigned int msg_len,
  229. unsigned int token_seqid);
  230. static void none_token_send (
  231. struct totemrrp_instance *instance,
  232. const void *msg,
  233. unsigned int msg_len);
  234. static void none_recv_flush (
  235. struct totemrrp_instance *instance);
  236. static void none_send_flush (
  237. struct totemrrp_instance *instance);
  238. static void none_iface_check (
  239. struct totemrrp_instance *instance);
  240. static void none_processor_count_set (
  241. struct totemrrp_instance *instance,
  242. unsigned int processor_count_set);
  243. static void none_token_target_set (
  244. struct totemrrp_instance *instance,
  245. struct totem_ip_address *token_target,
  246. unsigned int iface_no);
  247. static void none_ring_reenable (
  248. struct totemrrp_instance *instance,
  249. unsigned int iface_no);
  250. static int none_mcast_recv_empty (
  251. struct totemrrp_instance *instance);
  252. static int none_member_add (
  253. struct totemrrp_instance *instance,
  254. const struct totem_ip_address *member,
  255. unsigned int iface_no);
  256. static int none_member_remove (
  257. struct totemrrp_instance *instance,
  258. const struct totem_ip_address *member,
  259. unsigned int iface_no);
  260. /*
  261. * Passive Replication Forward Declerations
  262. */
  263. static void *passive_instance_initialize (
  264. struct totemrrp_instance *rrp_instance,
  265. int interface_count);
  266. static void passive_mcast_recv (
  267. struct totemrrp_instance *instance,
  268. unsigned int iface_no,
  269. void *context,
  270. const void *msg,
  271. unsigned int msg_len);
  272. static void passive_mcast_noflush_send (
  273. struct totemrrp_instance *instance,
  274. const void *msg,
  275. unsigned int msg_len);
  276. static void passive_mcast_flush_send (
  277. struct totemrrp_instance *instance,
  278. const void *msg,
  279. unsigned int msg_len);
  280. static void passive_monitor (
  281. struct totemrrp_instance *rrp_instance,
  282. unsigned int iface_no,
  283. int is_token_recv_count);
  284. static void passive_token_recv (
  285. struct totemrrp_instance *instance,
  286. unsigned int iface_no,
  287. void *context,
  288. const void *msg,
  289. unsigned int msg_len,
  290. unsigned int token_seqid);
  291. static void passive_token_send (
  292. struct totemrrp_instance *instance,
  293. const void *msg,
  294. unsigned int msg_len);
  295. static void passive_recv_flush (
  296. struct totemrrp_instance *instance);
  297. static void passive_send_flush (
  298. struct totemrrp_instance *instance);
  299. static void passive_iface_check (
  300. struct totemrrp_instance *instance);
  301. static void passive_processor_count_set (
  302. struct totemrrp_instance *instance,
  303. unsigned int processor_count_set);
  304. static void passive_token_target_set (
  305. struct totemrrp_instance *instance,
  306. struct totem_ip_address *token_target,
  307. unsigned int iface_no);
  308. static void passive_ring_reenable (
  309. struct totemrrp_instance *instance,
  310. unsigned int iface_no);
  311. static int passive_mcast_recv_empty (
  312. struct totemrrp_instance *instance);
  313. static int passive_member_add (
  314. struct totemrrp_instance *instance,
  315. const struct totem_ip_address *member,
  316. unsigned int iface_no);
  317. static int passive_member_remove (
  318. struct totemrrp_instance *instance,
  319. const struct totem_ip_address *member,
  320. unsigned int iface_no);
  321. /*
  322. * Active Replication Forward Definitions
  323. */
  324. static void *active_instance_initialize (
  325. struct totemrrp_instance *rrp_instance,
  326. int interface_count);
  327. static void active_mcast_recv (
  328. struct totemrrp_instance *instance,
  329. unsigned int iface_no,
  330. void *context,
  331. const void *msg,
  332. unsigned int msg_len);
  333. static void active_mcast_noflush_send (
  334. struct totemrrp_instance *instance,
  335. const void *msg,
  336. unsigned int msg_len);
  337. static void active_mcast_flush_send (
  338. struct totemrrp_instance *instance,
  339. const void *msg,
  340. unsigned int msg_len);
  341. static void active_token_recv (
  342. struct totemrrp_instance *instance,
  343. unsigned int iface_no,
  344. void *context,
  345. const void *msg,
  346. unsigned int msg_len,
  347. unsigned int token_seqid);
  348. static void active_token_send (
  349. struct totemrrp_instance *instance,
  350. const void *msg,
  351. unsigned int msg_len);
  352. static void active_recv_flush (
  353. struct totemrrp_instance *instance);
  354. static void active_send_flush (
  355. struct totemrrp_instance *instance);
  356. static void active_iface_check (
  357. struct totemrrp_instance *instance);
  358. static void active_processor_count_set (
  359. struct totemrrp_instance *instance,
  360. unsigned int processor_count_set);
  361. static void active_token_target_set (
  362. struct totemrrp_instance *instance,
  363. struct totem_ip_address *token_target,
  364. unsigned int iface_no);
  365. static void active_ring_reenable (
  366. struct totemrrp_instance *instance,
  367. unsigned int iface_no);
  368. static int active_mcast_recv_empty (
  369. struct totemrrp_instance *instance);
  370. static int active_member_add (
  371. struct totemrrp_instance *instance,
  372. const struct totem_ip_address *member,
  373. unsigned int iface_no);
  374. static int active_member_remove (
  375. struct totemrrp_instance *instance,
  376. const struct totem_ip_address *member,
  377. unsigned int iface_no);
  378. static void active_timer_expired_token_start (
  379. struct active_instance *active_instance);
  380. static void active_timer_expired_token_cancel (
  381. struct active_instance *active_instance);
  382. static void active_timer_problem_decrementer_start (
  383. struct active_instance *active_instance);
  384. static void active_timer_problem_decrementer_cancel (
  385. struct active_instance *active_instance);
  386. /*
  387. * 0-5 reserved for totemsrp.c
  388. */
  389. #define MESSAGE_TYPE_RING_TEST_ACTIVE 6
  390. #define MESSAGE_TYPE_RING_TEST_ACTIVATE 7
  391. #define ENDIAN_LOCAL 0xff22
  392. /*
  393. * Rollover handling:
  394. *
  395. * ARR_SEQNO_START_TOKEN is the starting sequence number of last seen sequence
  396. * for a token for active redundand ring. This should remain zero, unless testing
  397. * overflow in which case 07fffff00 or 0xffffff00 are good starting values.
  398. * It should be same as on defined in totemsrp.c
  399. */
  400. #define ARR_SEQNO_START_TOKEN 0x0
  401. /*
  402. * These can be used ot test different rollover points
  403. * #define ARR_SEQNO_START_MSG 0xfffffe00
  404. */
  405. /*
  406. * Threshold value when recv_count for passive rrp should be adjusted.
  407. * Set this value to some smaller for testing of adjusting proper
  408. * functionality. Also keep in mind that this value must be smaller
  409. * then rrp_problem_count_threshold
  410. */
  411. #define PASSIVE_RECV_COUNT_THRESHOLD (INT_MAX / 2)
  412. struct message_header {
  413. char type;
  414. char encapsulated;
  415. unsigned short endian_detector;
  416. int ring_number;
  417. int nodeid_activator;
  418. } __attribute__((packed));
  419. struct deliver_fn_context {
  420. struct totemrrp_instance *instance;
  421. void *context;
  422. int iface_no;
  423. };
  424. struct rrp_algo none_algo = {
  425. .name = "none",
  426. .initialize = NULL,
  427. .mcast_recv = none_mcast_recv,
  428. .mcast_noflush_send = none_mcast_noflush_send,
  429. .mcast_flush_send = none_mcast_flush_send,
  430. .token_recv = none_token_recv,
  431. .token_send = none_token_send,
  432. .recv_flush = none_recv_flush,
  433. .send_flush = none_send_flush,
  434. .iface_check = none_iface_check,
  435. .processor_count_set = none_processor_count_set,
  436. .token_target_set = none_token_target_set,
  437. .ring_reenable = none_ring_reenable,
  438. .mcast_recv_empty = none_mcast_recv_empty,
  439. .member_add = none_member_add,
  440. .member_remove = none_member_remove
  441. };
  442. struct rrp_algo passive_algo = {
  443. .name = "passive",
  444. .initialize = passive_instance_initialize,
  445. .mcast_recv = passive_mcast_recv,
  446. .mcast_noflush_send = passive_mcast_noflush_send,
  447. .mcast_flush_send = passive_mcast_flush_send,
  448. .token_recv = passive_token_recv,
  449. .token_send = passive_token_send,
  450. .recv_flush = passive_recv_flush,
  451. .send_flush = passive_send_flush,
  452. .iface_check = passive_iface_check,
  453. .processor_count_set = passive_processor_count_set,
  454. .token_target_set = passive_token_target_set,
  455. .ring_reenable = passive_ring_reenable,
  456. .mcast_recv_empty = passive_mcast_recv_empty,
  457. .member_add = passive_member_add,
  458. .member_remove = passive_member_remove
  459. };
  460. struct rrp_algo active_algo = {
  461. .name = "active",
  462. .initialize = active_instance_initialize,
  463. .mcast_recv = active_mcast_recv,
  464. .mcast_noflush_send = active_mcast_noflush_send,
  465. .mcast_flush_send = active_mcast_flush_send,
  466. .token_recv = active_token_recv,
  467. .token_send = active_token_send,
  468. .recv_flush = active_recv_flush,
  469. .send_flush = active_send_flush,
  470. .iface_check = active_iface_check,
  471. .processor_count_set = active_processor_count_set,
  472. .token_target_set = active_token_target_set,
  473. .ring_reenable = active_ring_reenable,
  474. .mcast_recv_empty = active_mcast_recv_empty,
  475. .member_add = active_member_add,
  476. .member_remove = active_member_remove
  477. };
  478. struct rrp_algo *rrp_algos[] = {
  479. &none_algo,
  480. &passive_algo,
  481. &active_algo
  482. };
  483. #define RRP_ALGOS_COUNT 3
  484. #define log_printf(level, format, args...) \
  485. do { \
  486. rrp_instance->totemrrp_log_printf ( \
  487. level, rrp_instance->totemrrp_subsys_id, \
  488. __FUNCTION__, __FILE__, __LINE__, \
  489. format, ##args); \
  490. } while (0);
  491. static void stats_set_interface_faulty(struct totemrrp_instance *rrp_instance,
  492. unsigned int iface_no, int is_faulty)
  493. {
  494. rrp_instance->stats.faulty[iface_no] = (is_faulty ? 1 : 0);
  495. }
  496. static void test_active_msg_endian_convert(const struct message_header *in, struct message_header *out)
  497. {
  498. out->type = in->type;
  499. out->encapsulated = in->encapsulated;
  500. out->endian_detector = ENDIAN_LOCAL;
  501. out->ring_number = swab32 (in->ring_number);
  502. out->nodeid_activator = swab32(in->nodeid_activator);
  503. }
  504. static void timer_function_test_ring_timeout (void *context)
  505. {
  506. struct deliver_fn_context *deliver_fn_context = (struct deliver_fn_context *)context;
  507. struct totemrrp_instance *rrp_instance = deliver_fn_context->instance;
  508. unsigned int *faulty = NULL;
  509. int iface_no = deliver_fn_context->iface_no;
  510. struct message_header msg = {
  511. .type = MESSAGE_TYPE_RING_TEST_ACTIVE,
  512. .endian_detector = ENDIAN_LOCAL,
  513. };
  514. if (strcmp(rrp_instance->totem_config->rrp_mode, "active") == 0)
  515. faulty = ((struct active_instance *)(rrp_instance->rrp_algo_instance))->faulty;
  516. if (strcmp(rrp_instance->totem_config->rrp_mode, "passive") == 0)
  517. faulty = ((struct passive_instance *)(rrp_instance->rrp_algo_instance))->faulty;
  518. assert (faulty != NULL);
  519. if (faulty[iface_no] == 1) {
  520. msg.ring_number = iface_no;
  521. msg.nodeid_activator = rrp_instance->my_nodeid;
  522. totemnet_token_send (
  523. rrp_instance->net_handles[iface_no],
  524. &msg, sizeof (struct message_header));
  525. qb_loop_timer_add (rrp_instance->poll_handle,
  526. QB_LOOP_MED,
  527. rrp_instance->totem_config->rrp_autorecovery_check_timeout*QB_TIME_NS_IN_MSEC,
  528. (void *)deliver_fn_context,
  529. timer_function_test_ring_timeout,
  530. &rrp_instance->timer_active_test_ring_timeout[iface_no]);
  531. }
  532. }
  533. /*
  534. * None Replication Implementation
  535. */
  536. static void none_mcast_recv (
  537. struct totemrrp_instance *rrp_instance,
  538. unsigned int iface_no,
  539. void *context,
  540. const void *msg,
  541. unsigned int msg_len)
  542. {
  543. rrp_instance->totemrrp_deliver_fn (
  544. context,
  545. msg,
  546. msg_len);
  547. }
  548. static void none_mcast_flush_send (
  549. struct totemrrp_instance *instance,
  550. const void *msg,
  551. unsigned int msg_len)
  552. {
  553. totemnet_mcast_flush_send (instance->net_handles[0], msg, msg_len);
  554. }
  555. static void none_mcast_noflush_send (
  556. struct totemrrp_instance *instance,
  557. const void *msg,
  558. unsigned int msg_len)
  559. {
  560. totemnet_mcast_noflush_send (instance->net_handles[0], msg, msg_len);
  561. }
  562. static void none_token_recv (
  563. struct totemrrp_instance *rrp_instance,
  564. unsigned int iface_no,
  565. void *context,
  566. const void *msg,
  567. unsigned int msg_len,
  568. unsigned int token_seq)
  569. {
  570. rrp_instance->totemrrp_deliver_fn (
  571. context,
  572. msg,
  573. msg_len);
  574. }
  575. static void none_token_send (
  576. struct totemrrp_instance *instance,
  577. const void *msg,
  578. unsigned int msg_len)
  579. {
  580. totemnet_token_send (
  581. instance->net_handles[0],
  582. msg, msg_len);
  583. }
  584. static void none_recv_flush (struct totemrrp_instance *instance)
  585. {
  586. totemnet_recv_flush (instance->net_handles[0]);
  587. }
  588. static void none_send_flush (struct totemrrp_instance *instance)
  589. {
  590. totemnet_send_flush (instance->net_handles[0]);
  591. }
  592. static void none_iface_check (struct totemrrp_instance *instance)
  593. {
  594. totemnet_iface_check (instance->net_handles[0]);
  595. }
  596. static void none_processor_count_set (
  597. struct totemrrp_instance *instance,
  598. unsigned int processor_count)
  599. {
  600. totemnet_processor_count_set (instance->net_handles[0],
  601. processor_count);
  602. }
  603. static void none_token_target_set (
  604. struct totemrrp_instance *instance,
  605. struct totem_ip_address *token_target,
  606. unsigned int iface_no)
  607. {
  608. totemnet_token_target_set (instance->net_handles[0], token_target);
  609. }
  610. static void none_ring_reenable (
  611. struct totemrrp_instance *instance,
  612. unsigned int iface_no)
  613. {
  614. /*
  615. * No operation
  616. */
  617. }
  618. static int none_mcast_recv_empty (
  619. struct totemrrp_instance *instance)
  620. {
  621. int res;
  622. res = totemnet_recv_mcast_empty (instance->net_handles[0]);
  623. return (res);
  624. }
  625. static int none_member_add (
  626. struct totemrrp_instance *instance,
  627. const struct totem_ip_address *member,
  628. unsigned int iface_no)
  629. {
  630. int res;
  631. res = totemnet_member_add (instance->net_handles[0], member);
  632. return (res);
  633. }
  634. static int none_member_remove (
  635. struct totemrrp_instance *instance,
  636. const struct totem_ip_address *member,
  637. unsigned int iface_no)
  638. {
  639. int res;
  640. res = totemnet_member_remove (instance->net_handles[0], member);
  641. return (res);
  642. }
  643. /*
  644. * Passive Replication Implementation
  645. */
  646. void *passive_instance_initialize (
  647. struct totemrrp_instance *rrp_instance,
  648. int interface_count)
  649. {
  650. struct passive_instance *instance;
  651. int i;
  652. instance = malloc (sizeof (struct passive_instance));
  653. if (instance == 0) {
  654. goto error_exit;
  655. }
  656. memset (instance, 0, sizeof (struct passive_instance));
  657. instance->faulty = malloc (sizeof (int) * interface_count);
  658. if (instance->faulty == 0) {
  659. free (instance);
  660. instance = 0;
  661. goto error_exit;
  662. }
  663. memset (instance->faulty, 0, sizeof (int) * interface_count);
  664. for (i = 0; i < interface_count; i++) {
  665. stats_set_interface_faulty (rrp_instance, i, 0);
  666. }
  667. instance->token_recv_count = malloc (sizeof (int) * interface_count);
  668. if (instance->token_recv_count == 0) {
  669. free (instance->faulty);
  670. free (instance);
  671. instance = 0;
  672. goto error_exit;
  673. }
  674. memset (instance->token_recv_count, 0, sizeof (int) * interface_count);
  675. instance->mcast_recv_count = malloc (sizeof (int) * interface_count);
  676. if (instance->mcast_recv_count == 0) {
  677. free (instance->token_recv_count);
  678. free (instance->faulty);
  679. free (instance);
  680. instance = 0;
  681. goto error_exit;
  682. }
  683. memset (instance->mcast_recv_count, 0, sizeof (int) * interface_count);
  684. error_exit:
  685. return ((void *)instance);
  686. }
  687. static void timer_function_passive_token_expired (void *context)
  688. {
  689. struct passive_instance *passive_instance = (struct passive_instance *)context;
  690. struct totemrrp_instance *rrp_instance = passive_instance->rrp_instance;
  691. rrp_instance->totemrrp_deliver_fn (
  692. passive_instance->totemrrp_context,
  693. passive_instance->token,
  694. passive_instance->token_len);
  695. }
  696. /* TODO
  697. static void timer_function_passive_problem_decrementer (void *context)
  698. {
  699. // struct passive_instance *passive_instance = (struct passive_instance *)context;
  700. // struct totemrrp_instance *rrp_instance = passive_instance->rrp_instance;
  701. }
  702. */
  703. static void passive_timer_expired_token_start (
  704. struct passive_instance *passive_instance)
  705. {
  706. qb_loop_timer_add (
  707. passive_instance->rrp_instance->poll_handle,
  708. QB_LOOP_MED,
  709. passive_instance->rrp_instance->totem_config->rrp_token_expired_timeout*QB_TIME_NS_IN_MSEC,
  710. (void *)passive_instance,
  711. timer_function_passive_token_expired,
  712. &passive_instance->timer_expired_token);
  713. }
  714. static void passive_timer_expired_token_cancel (
  715. struct passive_instance *passive_instance)
  716. {
  717. qb_loop_timer_del (
  718. passive_instance->rrp_instance->poll_handle,
  719. passive_instance->timer_expired_token);
  720. }
  721. /*
  722. static void passive_timer_problem_decrementer_start (
  723. struct passive_instance *passive_instance)
  724. {
  725. qb_loop_timer_add (
  726. QB_LOOP_MED,
  727. passive_instance->rrp_instance->poll_handle,
  728. passive_instance->rrp_instance->totem_config->rrp_problem_count_timeout*QB_TIME_NS_IN_MSEC,
  729. (void *)passive_instance,
  730. timer_function_passive_problem_decrementer,
  731. &passive_instance->timer_problem_decrementer);
  732. }
  733. static void passive_timer_problem_decrementer_cancel (
  734. struct passive_instance *passive_instance)
  735. {
  736. qb_loop_timer_del (
  737. passive_instance->rrp_instance->poll_handle,
  738. passive_instance->timer_problem_decrementer);
  739. }
  740. */
  741. /*
  742. * Monitor function implementation from rrp paper.
  743. * rrp_instance is passive rrp instance, iface_no is interface with received messgae/token and
  744. * is_token_recv_count is boolean variable which donates if message is token (>1) or regular
  745. * message (= 0)
  746. */
  747. static void passive_monitor (
  748. struct totemrrp_instance *rrp_instance,
  749. unsigned int iface_no,
  750. int is_token_recv_count)
  751. {
  752. struct passive_instance *passive_instance = (struct passive_instance *)rrp_instance->rrp_algo_instance;
  753. unsigned int *recv_count;
  754. unsigned int max;
  755. unsigned int i;
  756. unsigned int min_all, min_active;
  757. unsigned int threshold;
  758. /*
  759. * Monitor for failures
  760. */
  761. if (is_token_recv_count) {
  762. recv_count = passive_instance->token_recv_count;
  763. threshold = rrp_instance->totem_config->rrp_problem_count_threshold;
  764. } else {
  765. recv_count = passive_instance->mcast_recv_count;
  766. threshold = rrp_instance->totem_config->rrp_problem_count_mcast_threshold;
  767. }
  768. recv_count[iface_no] += 1;
  769. max = 0;
  770. for (i = 0; i < rrp_instance->interface_count; i++) {
  771. if (max < recv_count[i]) {
  772. max = recv_count[i];
  773. }
  774. }
  775. /*
  776. * Max is larger then threshold -> start adjusting process
  777. */
  778. if (max > PASSIVE_RECV_COUNT_THRESHOLD) {
  779. min_all = min_active = recv_count[iface_no];
  780. for (i = 0; i < rrp_instance->interface_count; i++) {
  781. if (recv_count[i] < min_all) {
  782. min_all = recv_count[i];
  783. }
  784. if (passive_instance->faulty[i] == 0 &&
  785. recv_count[i] < min_active) {
  786. min_active = recv_count[i];
  787. }
  788. }
  789. if (min_all > 0) {
  790. /*
  791. * There is one or more faulty device with recv_count > 0
  792. */
  793. for (i = 0; i < rrp_instance->interface_count; i++) {
  794. recv_count[i] -= min_all;
  795. }
  796. } else {
  797. /*
  798. * No faulty device with recv_count > 0, adjust only active
  799. * devices
  800. */
  801. for (i = 0; i < rrp_instance->interface_count; i++) {
  802. if (passive_instance->faulty[i] == 0) {
  803. recv_count[i] -= min_active;
  804. }
  805. }
  806. }
  807. /*
  808. * Find again max
  809. */
  810. max = 0;
  811. for (i = 0; i < rrp_instance->interface_count; i++) {
  812. if (max < recv_count[i]) {
  813. max = recv_count[i];
  814. }
  815. }
  816. }
  817. for (i = 0; i < rrp_instance->interface_count; i++) {
  818. if ((passive_instance->faulty[i] == 0) &&
  819. (max - recv_count[i] > threshold)) {
  820. passive_instance->faulty[i] = 1;
  821. qb_loop_timer_add (rrp_instance->poll_handle,
  822. QB_LOOP_MED,
  823. rrp_instance->totem_config->rrp_autorecovery_check_timeout*QB_TIME_NS_IN_MSEC,
  824. rrp_instance->deliver_fn_context[i],
  825. timer_function_test_ring_timeout,
  826. &rrp_instance->timer_active_test_ring_timeout[i]);
  827. stats_set_interface_faulty (rrp_instance, i, passive_instance->faulty[i]);
  828. sprintf (rrp_instance->status[i],
  829. "Marking ringid %u interface %s FAULTY",
  830. i,
  831. totemnet_iface_print (rrp_instance->net_handles[i]));
  832. log_printf (
  833. rrp_instance->totemrrp_log_level_error,
  834. "%s",
  835. rrp_instance->status[i]);
  836. }
  837. }
  838. }
  839. static void passive_mcast_recv (
  840. struct totemrrp_instance *rrp_instance,
  841. unsigned int iface_no,
  842. void *context,
  843. const void *msg,
  844. unsigned int msg_len)
  845. {
  846. struct passive_instance *passive_instance = (struct passive_instance *)rrp_instance->rrp_algo_instance;
  847. rrp_instance->totemrrp_deliver_fn (
  848. context,
  849. msg,
  850. msg_len);
  851. if (rrp_instance->totemrrp_msgs_missing() == 0 &&
  852. passive_instance->timer_expired_token) {
  853. /*
  854. * Delivers the last token
  855. */
  856. rrp_instance->totemrrp_deliver_fn (
  857. passive_instance->totemrrp_context,
  858. passive_instance->token,
  859. passive_instance->token_len);
  860. passive_timer_expired_token_cancel (passive_instance);
  861. }
  862. passive_monitor (rrp_instance, iface_no, 0);
  863. }
  864. static void passive_mcast_flush_send (
  865. struct totemrrp_instance *instance,
  866. const void *msg,
  867. unsigned int msg_len)
  868. {
  869. struct passive_instance *passive_instance = (struct passive_instance *)instance->rrp_algo_instance;
  870. int i = 0;
  871. do {
  872. passive_instance->msg_xmit_iface = (passive_instance->msg_xmit_iface + 1) % instance->interface_count;
  873. i++;
  874. } while ((i <= instance->interface_count) && (passive_instance->faulty[passive_instance->msg_xmit_iface] == 1));
  875. if (i <= instance->interface_count) {
  876. totemnet_mcast_flush_send (instance->net_handles[passive_instance->msg_xmit_iface], msg, msg_len);
  877. }
  878. }
  879. static void passive_mcast_noflush_send (
  880. struct totemrrp_instance *instance,
  881. const void *msg,
  882. unsigned int msg_len)
  883. {
  884. struct passive_instance *passive_instance = (struct passive_instance *)instance->rrp_algo_instance;
  885. int i = 0;
  886. do {
  887. passive_instance->msg_xmit_iface = (passive_instance->msg_xmit_iface + 1) % instance->interface_count;
  888. i++;
  889. } while ((i <= instance->interface_count) && (passive_instance->faulty[passive_instance->msg_xmit_iface] == 1));
  890. if (i <= instance->interface_count) {
  891. totemnet_mcast_noflush_send (instance->net_handles[passive_instance->msg_xmit_iface], msg, msg_len);
  892. }
  893. }
  894. static void passive_token_recv (
  895. struct totemrrp_instance *rrp_instance,
  896. unsigned int iface_no,
  897. void *context,
  898. const void *msg,
  899. unsigned int msg_len,
  900. unsigned int token_seq)
  901. {
  902. struct passive_instance *passive_instance = (struct passive_instance *)rrp_instance->rrp_algo_instance;
  903. passive_instance->totemrrp_context = context; // this should be in totemrrp_instance ? TODO
  904. if (rrp_instance->totemrrp_msgs_missing() == 0) {
  905. rrp_instance->totemrrp_deliver_fn (
  906. context,
  907. msg,
  908. msg_len);
  909. } else {
  910. memcpy (passive_instance->token, msg, msg_len);
  911. passive_timer_expired_token_start (passive_instance);
  912. }
  913. passive_monitor (rrp_instance, iface_no, 1);
  914. }
  915. static void passive_token_send (
  916. struct totemrrp_instance *instance,
  917. const void *msg,
  918. unsigned int msg_len)
  919. {
  920. struct passive_instance *passive_instance = (struct passive_instance *)instance->rrp_algo_instance;
  921. int i = 0;
  922. do {
  923. passive_instance->token_xmit_iface = (passive_instance->token_xmit_iface + 1) % instance->interface_count;
  924. i++;
  925. } while ((i <= instance->interface_count) && (passive_instance->faulty[passive_instance->token_xmit_iface] == 1));
  926. if (i <= instance->interface_count) {
  927. totemnet_token_send (
  928. instance->net_handles[passive_instance->token_xmit_iface],
  929. msg, msg_len);
  930. }
  931. }
  932. static void passive_recv_flush (struct totemrrp_instance *instance)
  933. {
  934. struct passive_instance *rrp_algo_instance = (struct passive_instance *)instance->rrp_algo_instance;
  935. unsigned int i;
  936. for (i = 0; i < instance->interface_count; i++) {
  937. if (rrp_algo_instance->faulty[i] == 0) {
  938. totemnet_recv_flush (instance->net_handles[i]);
  939. }
  940. }
  941. }
  942. static void passive_send_flush (struct totemrrp_instance *instance)
  943. {
  944. struct passive_instance *rrp_algo_instance = (struct passive_instance *)instance->rrp_algo_instance;
  945. unsigned int i;
  946. for (i = 0; i < instance->interface_count; i++) {
  947. if (rrp_algo_instance->faulty[i] == 0) {
  948. totemnet_send_flush (instance->net_handles[i]);
  949. }
  950. }
  951. }
  952. static void passive_iface_check (struct totemrrp_instance *instance)
  953. {
  954. struct passive_instance *rrp_algo_instance = (struct passive_instance *)instance->rrp_algo_instance;
  955. unsigned int i;
  956. for (i = 0; i < instance->interface_count; i++) {
  957. if (rrp_algo_instance->faulty[i] == 0) {
  958. totemnet_iface_check (instance->net_handles[i]);
  959. }
  960. }
  961. }
  962. static void passive_processor_count_set (
  963. struct totemrrp_instance *instance,
  964. unsigned int processor_count)
  965. {
  966. struct passive_instance *rrp_algo_instance = (struct passive_instance *)instance->rrp_algo_instance;
  967. unsigned int i;
  968. for (i = 0; i < instance->interface_count; i++) {
  969. if (rrp_algo_instance->faulty[i] == 0) {
  970. totemnet_processor_count_set (instance->net_handles[i],
  971. processor_count);
  972. }
  973. }
  974. }
  975. static void passive_token_target_set (
  976. struct totemrrp_instance *instance,
  977. struct totem_ip_address *token_target,
  978. unsigned int iface_no)
  979. {
  980. totemnet_token_target_set (instance->net_handles[iface_no], token_target);
  981. }
  982. static int passive_mcast_recv_empty (
  983. struct totemrrp_instance *instance)
  984. {
  985. int res;
  986. int msgs_emptied = 0;
  987. int i;
  988. for (i = 0; i < instance->interface_count; i++) {
  989. res = totemnet_recv_mcast_empty (instance->net_handles[i]);
  990. if (res == -1) {
  991. return (-1);
  992. }
  993. if (res == 1) {
  994. msgs_emptied = 1;
  995. }
  996. }
  997. return (msgs_emptied);
  998. }
  999. static int passive_member_add (
  1000. struct totemrrp_instance *instance,
  1001. const struct totem_ip_address *member,
  1002. unsigned int iface_no)
  1003. {
  1004. int res;
  1005. res = totemnet_member_add (instance->net_handles[iface_no], member);
  1006. return (res);
  1007. }
  1008. static int passive_member_remove (
  1009. struct totemrrp_instance *instance,
  1010. const struct totem_ip_address *member,
  1011. unsigned int iface_no)
  1012. {
  1013. int res;
  1014. res = totemnet_member_remove (instance->net_handles[iface_no], member);
  1015. return (res);
  1016. }
  1017. static void passive_ring_reenable (
  1018. struct totemrrp_instance *instance,
  1019. unsigned int iface_no)
  1020. {
  1021. struct passive_instance *rrp_algo_instance = (struct passive_instance *)instance->rrp_algo_instance;
  1022. int i;
  1023. memset (rrp_algo_instance->mcast_recv_count, 0, sizeof (unsigned int) *
  1024. instance->interface_count);
  1025. memset (rrp_algo_instance->token_recv_count, 0, sizeof (unsigned int) *
  1026. instance->interface_count);
  1027. if (iface_no == instance->interface_count) {
  1028. memset (rrp_algo_instance->faulty, 0, sizeof (unsigned int) *
  1029. instance->interface_count);
  1030. for (i = 0; i < instance->interface_count; i++) {
  1031. stats_set_interface_faulty (instance, i, 0);
  1032. }
  1033. } else {
  1034. rrp_algo_instance->faulty[iface_no] = 0;
  1035. stats_set_interface_faulty (instance, iface_no, 0);
  1036. }
  1037. }
  1038. /*
  1039. * Active Replication Implementation
  1040. */
  1041. void *active_instance_initialize (
  1042. struct totemrrp_instance *rrp_instance,
  1043. int interface_count)
  1044. {
  1045. struct active_instance *instance;
  1046. int i;
  1047. instance = malloc (sizeof (struct active_instance));
  1048. if (instance == 0) {
  1049. goto error_exit;
  1050. }
  1051. memset (instance, 0, sizeof (struct active_instance));
  1052. instance->faulty = malloc (sizeof (int) * interface_count);
  1053. if (instance->faulty == 0) {
  1054. free (instance);
  1055. instance = 0;
  1056. goto error_exit;
  1057. }
  1058. memset (instance->faulty, 0, sizeof (unsigned int) * interface_count);
  1059. for (i = 0; i < interface_count; i++) {
  1060. stats_set_interface_faulty (rrp_instance, i, 0);
  1061. }
  1062. instance->last_token_recv = malloc (sizeof (int) * interface_count);
  1063. if (instance->last_token_recv == 0) {
  1064. free (instance->faulty);
  1065. free (instance);
  1066. instance = 0;
  1067. goto error_exit;
  1068. }
  1069. memset (instance->last_token_recv, 0, sizeof (unsigned int) * interface_count);
  1070. instance->counter_problems = malloc (sizeof (int) * interface_count);
  1071. if (instance->counter_problems == 0) {
  1072. free (instance->last_token_recv);
  1073. free (instance->faulty);
  1074. free (instance);
  1075. instance = 0;
  1076. goto error_exit;
  1077. }
  1078. memset (instance->counter_problems, 0, sizeof (unsigned int) * interface_count);
  1079. instance->timer_expired_token = 0;
  1080. instance->timer_problem_decrementer = 0;
  1081. instance->rrp_instance = rrp_instance;
  1082. instance->last_token_seq = ARR_SEQNO_START_TOKEN - 1;
  1083. error_exit:
  1084. return ((void *)instance);
  1085. }
  1086. static void timer_function_active_problem_decrementer (void *context)
  1087. {
  1088. struct active_instance *active_instance = (struct active_instance *)context;
  1089. struct totemrrp_instance *rrp_instance = active_instance->rrp_instance;
  1090. unsigned int problem_found = 0;
  1091. unsigned int i;
  1092. for (i = 0; i < rrp_instance->interface_count; i++) {
  1093. if (active_instance->counter_problems[i] > 0) {
  1094. problem_found = 1;
  1095. active_instance->counter_problems[i] -= 1;
  1096. if (active_instance->counter_problems[i] == 0) {
  1097. sprintf (rrp_instance->status[i],
  1098. "ring %d active with no faults", i);
  1099. } else {
  1100. sprintf (rrp_instance->status[i],
  1101. "Decrementing problem counter for iface %s to [%d of %d]",
  1102. totemnet_iface_print (rrp_instance->net_handles[i]),
  1103. active_instance->counter_problems[i],
  1104. rrp_instance->totem_config->rrp_problem_count_threshold);
  1105. }
  1106. log_printf (
  1107. rrp_instance->totemrrp_log_level_warning,
  1108. "%s",
  1109. rrp_instance->status[i]);
  1110. }
  1111. }
  1112. if (problem_found) {
  1113. active_timer_problem_decrementer_start (active_instance);
  1114. } else {
  1115. active_instance->timer_problem_decrementer = 0;
  1116. }
  1117. }
  1118. static void timer_function_active_token_expired (void *context)
  1119. {
  1120. struct active_instance *active_instance = (struct active_instance *)context;
  1121. struct totemrrp_instance *rrp_instance = active_instance->rrp_instance;
  1122. unsigned int i;
  1123. for (i = 0; i < rrp_instance->interface_count; i++) {
  1124. if (active_instance->last_token_recv[i] == 0) {
  1125. active_instance->counter_problems[i] += 1;
  1126. if (active_instance->timer_problem_decrementer == 0) {
  1127. active_timer_problem_decrementer_start (active_instance);
  1128. }
  1129. sprintf (rrp_instance->status[i],
  1130. "Incrementing problem counter for seqid %d iface %s to [%d of %d]",
  1131. active_instance->last_token_seq,
  1132. totemnet_iface_print (rrp_instance->net_handles[i]),
  1133. active_instance->counter_problems[i],
  1134. rrp_instance->totem_config->rrp_problem_count_threshold);
  1135. log_printf (
  1136. rrp_instance->totemrrp_log_level_warning,
  1137. "%s",
  1138. rrp_instance->status[i]);
  1139. }
  1140. }
  1141. for (i = 0; i < rrp_instance->interface_count; i++) {
  1142. if (active_instance->counter_problems[i] >= rrp_instance->totem_config->rrp_problem_count_threshold &&
  1143. active_instance->faulty[i] == 0) {
  1144. active_instance->faulty[i] = 1;
  1145. qb_loop_timer_add (rrp_instance->poll_handle,
  1146. QB_LOOP_MED,
  1147. rrp_instance->totem_config->rrp_autorecovery_check_timeout*QB_TIME_NS_IN_MSEC,
  1148. rrp_instance->deliver_fn_context[i],
  1149. timer_function_test_ring_timeout,
  1150. &rrp_instance->timer_active_test_ring_timeout[i]);
  1151. stats_set_interface_faulty (rrp_instance, i, active_instance->faulty[i]);
  1152. sprintf (rrp_instance->status[i],
  1153. "Marking seqid %d ringid %u interface %s FAULTY",
  1154. active_instance->last_token_seq,
  1155. i,
  1156. totemnet_iface_print (rrp_instance->net_handles[i]));
  1157. log_printf (
  1158. rrp_instance->totemrrp_log_level_error,
  1159. "%s",
  1160. rrp_instance->status[i]);
  1161. active_timer_problem_decrementer_cancel (active_instance);
  1162. }
  1163. }
  1164. rrp_instance->totemrrp_deliver_fn (
  1165. active_instance->totemrrp_context,
  1166. active_instance->token,
  1167. active_instance->token_len);
  1168. }
  1169. static void active_timer_expired_token_start (
  1170. struct active_instance *active_instance)
  1171. {
  1172. qb_loop_timer_add (
  1173. active_instance->rrp_instance->poll_handle,
  1174. QB_LOOP_MED,
  1175. active_instance->rrp_instance->totem_config->rrp_token_expired_timeout*QB_TIME_NS_IN_MSEC,
  1176. (void *)active_instance,
  1177. timer_function_active_token_expired,
  1178. &active_instance->timer_expired_token);
  1179. }
  1180. static void active_timer_expired_token_cancel (
  1181. struct active_instance *active_instance)
  1182. {
  1183. qb_loop_timer_del (
  1184. active_instance->rrp_instance->poll_handle,
  1185. active_instance->timer_expired_token);
  1186. }
  1187. static void active_timer_problem_decrementer_start (
  1188. struct active_instance *active_instance)
  1189. {
  1190. qb_loop_timer_add (
  1191. active_instance->rrp_instance->poll_handle,
  1192. QB_LOOP_MED,
  1193. active_instance->rrp_instance->totem_config->rrp_problem_count_timeout*QB_TIME_NS_IN_MSEC,
  1194. (void *)active_instance,
  1195. timer_function_active_problem_decrementer,
  1196. &active_instance->timer_problem_decrementer);
  1197. }
  1198. static void active_timer_problem_decrementer_cancel (
  1199. struct active_instance *active_instance)
  1200. {
  1201. qb_loop_timer_del (
  1202. active_instance->rrp_instance->poll_handle,
  1203. active_instance->timer_problem_decrementer);
  1204. }
  1205. /*
  1206. * active replication
  1207. */
  1208. static void active_mcast_recv (
  1209. struct totemrrp_instance *instance,
  1210. unsigned int iface_no,
  1211. void *context,
  1212. const void *msg,
  1213. unsigned int msg_len)
  1214. {
  1215. instance->totemrrp_deliver_fn (
  1216. context,
  1217. msg,
  1218. msg_len);
  1219. }
  1220. static void active_mcast_flush_send (
  1221. struct totemrrp_instance *instance,
  1222. const void *msg,
  1223. unsigned int msg_len)
  1224. {
  1225. int i;
  1226. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1227. for (i = 0; i < instance->interface_count; i++) {
  1228. if (rrp_algo_instance->faulty[i] == 0) {
  1229. totemnet_mcast_flush_send (instance->net_handles[i], msg, msg_len);
  1230. }
  1231. }
  1232. }
  1233. static void active_mcast_noflush_send (
  1234. struct totemrrp_instance *instance,
  1235. const void *msg,
  1236. unsigned int msg_len)
  1237. {
  1238. int i;
  1239. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1240. for (i = 0; i < instance->interface_count; i++) {
  1241. if (rrp_algo_instance->faulty[i] == 0) {
  1242. totemnet_mcast_noflush_send (instance->net_handles[i], msg, msg_len);
  1243. }
  1244. }
  1245. }
  1246. static void active_token_recv (
  1247. struct totemrrp_instance *rrp_instance,
  1248. unsigned int iface_no,
  1249. void *context,
  1250. const void *msg,
  1251. unsigned int msg_len,
  1252. unsigned int token_seq)
  1253. {
  1254. int i;
  1255. struct active_instance *active_instance = (struct active_instance *)rrp_instance->rrp_algo_instance;
  1256. active_instance->totemrrp_context = context;
  1257. if (sq_lt_compare (active_instance->last_token_seq, token_seq)) {
  1258. memcpy (active_instance->token, msg, msg_len);
  1259. active_instance->token_len = msg_len;
  1260. for (i = 0; i < rrp_instance->interface_count; i++) {
  1261. active_instance->last_token_recv[i] = 0;
  1262. }
  1263. active_instance->last_token_recv[iface_no] = 1;
  1264. active_timer_expired_token_start (active_instance);
  1265. }
  1266. /*
  1267. * This doesn't follow spec because the spec assumes we will know
  1268. * when token resets occur.
  1269. */
  1270. active_instance->last_token_seq = token_seq;
  1271. if (token_seq == active_instance->last_token_seq) {
  1272. active_instance->last_token_recv[iface_no] = 1;
  1273. for (i = 0; i < rrp_instance->interface_count; i++) {
  1274. if ((active_instance->last_token_recv[i] == 0) &&
  1275. active_instance->faulty[i] == 0) {
  1276. return; /* don't deliver token */
  1277. }
  1278. }
  1279. active_timer_expired_token_cancel (active_instance);
  1280. rrp_instance->totemrrp_deliver_fn (
  1281. context,
  1282. msg,
  1283. msg_len);
  1284. }
  1285. }
  1286. static void active_token_send (
  1287. struct totemrrp_instance *instance,
  1288. const void *msg,
  1289. unsigned int msg_len)
  1290. {
  1291. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1292. int i;
  1293. for (i = 0; i < instance->interface_count; i++) {
  1294. if (rrp_algo_instance->faulty[i] == 0) {
  1295. totemnet_token_send (
  1296. instance->net_handles[i],
  1297. msg, msg_len);
  1298. }
  1299. }
  1300. }
  1301. static void active_recv_flush (struct totemrrp_instance *instance)
  1302. {
  1303. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1304. unsigned int i;
  1305. for (i = 0; i < instance->interface_count; i++) {
  1306. if (rrp_algo_instance->faulty[i] == 0) {
  1307. totemnet_recv_flush (instance->net_handles[i]);
  1308. }
  1309. }
  1310. }
  1311. static void active_send_flush (struct totemrrp_instance *instance)
  1312. {
  1313. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1314. unsigned int i;
  1315. for (i = 0; i < instance->interface_count; i++) {
  1316. if (rrp_algo_instance->faulty[i] == 0) {
  1317. totemnet_send_flush (instance->net_handles[i]);
  1318. }
  1319. }
  1320. }
  1321. static int active_member_add (
  1322. struct totemrrp_instance *instance,
  1323. const struct totem_ip_address *member,
  1324. unsigned int iface_no)
  1325. {
  1326. int res;
  1327. res = totemnet_member_add (instance->net_handles[iface_no], member);
  1328. return (res);
  1329. }
  1330. static int active_member_remove (
  1331. struct totemrrp_instance *instance,
  1332. const struct totem_ip_address *member,
  1333. unsigned int iface_no)
  1334. {
  1335. int res;
  1336. res = totemnet_member_remove (instance->net_handles[iface_no], member);
  1337. return (res);
  1338. }
  1339. static void active_iface_check (struct totemrrp_instance *instance)
  1340. {
  1341. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1342. unsigned int i;
  1343. for (i = 0; i < instance->interface_count; i++) {
  1344. if (rrp_algo_instance->faulty[i] == 0) {
  1345. totemnet_iface_check (instance->net_handles[i]);
  1346. }
  1347. }
  1348. }
  1349. static void active_processor_count_set (
  1350. struct totemrrp_instance *instance,
  1351. unsigned int processor_count)
  1352. {
  1353. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1354. unsigned int i;
  1355. for (i = 0; i < instance->interface_count; i++) {
  1356. if (rrp_algo_instance->faulty[i] == 0) {
  1357. totemnet_processor_count_set (instance->net_handles[i],
  1358. processor_count);
  1359. }
  1360. }
  1361. }
  1362. static void active_token_target_set (
  1363. struct totemrrp_instance *instance,
  1364. struct totem_ip_address *token_target,
  1365. unsigned int iface_no)
  1366. {
  1367. totemnet_token_target_set (instance->net_handles[iface_no], token_target);
  1368. }
  1369. static int active_mcast_recv_empty (
  1370. struct totemrrp_instance *instance)
  1371. {
  1372. int res;
  1373. int msgs_emptied = 0;
  1374. int i;
  1375. for (i = 0; i < instance->interface_count; i++) {
  1376. res = totemnet_recv_mcast_empty (instance->net_handles[i]);
  1377. if (res == -1) {
  1378. return (-1);
  1379. }
  1380. if (res == 1) {
  1381. msgs_emptied = 1;
  1382. }
  1383. }
  1384. return (msgs_emptied);
  1385. }
  1386. static void active_ring_reenable (
  1387. struct totemrrp_instance *instance,
  1388. unsigned int iface_no)
  1389. {
  1390. struct active_instance *rrp_algo_instance = (struct active_instance *)instance->rrp_algo_instance;
  1391. int i;
  1392. if (iface_no == instance->interface_count) {
  1393. memset (rrp_algo_instance->last_token_recv, 0, sizeof (unsigned int) *
  1394. instance->interface_count);
  1395. memset (rrp_algo_instance->faulty, 0, sizeof (unsigned int) *
  1396. instance->interface_count);
  1397. memset (rrp_algo_instance->counter_problems, 0, sizeof (unsigned int) *
  1398. instance->interface_count);
  1399. for (i = 0; i < instance->interface_count; i++) {
  1400. stats_set_interface_faulty (instance, i, 0);
  1401. }
  1402. } else {
  1403. rrp_algo_instance->last_token_recv[iface_no] = 0;
  1404. rrp_algo_instance->faulty[iface_no] = 0;
  1405. rrp_algo_instance->counter_problems[iface_no] = 0;
  1406. stats_set_interface_faulty (instance, iface_no, 0);
  1407. }
  1408. }
  1409. static void totemrrp_instance_initialize (struct totemrrp_instance *instance)
  1410. {
  1411. memset (instance, 0, sizeof (struct totemrrp_instance));
  1412. }
  1413. static int totemrrp_algorithm_set (
  1414. struct totem_config *totem_config,
  1415. struct totemrrp_instance *instance)
  1416. {
  1417. unsigned int res = -1;
  1418. unsigned int i;
  1419. for (i = 0; i < RRP_ALGOS_COUNT; i++) {
  1420. if (strcmp (totem_config->rrp_mode, rrp_algos[i]->name) == 0) {
  1421. instance->rrp_algo = rrp_algos[i];
  1422. if (rrp_algos[i]->initialize) {
  1423. instance->rrp_algo_instance = rrp_algos[i]->initialize (
  1424. instance,
  1425. totem_config->interface_count);
  1426. }
  1427. res = 0;
  1428. break;
  1429. }
  1430. }
  1431. for (i = 0; i < totem_config->interface_count; i++) {
  1432. instance->status[i] = malloc (1024);
  1433. sprintf (instance->status[i], "ring %d active with no faults", i);
  1434. }
  1435. return (res);
  1436. }
  1437. void rrp_deliver_fn (
  1438. void *context,
  1439. const void *msg,
  1440. unsigned int msg_len)
  1441. {
  1442. unsigned int token_seqid;
  1443. unsigned int token_is;
  1444. struct deliver_fn_context *deliver_fn_context = (struct deliver_fn_context *)context;
  1445. struct totemrrp_instance *rrp_instance = deliver_fn_context->instance;
  1446. const struct message_header *hdr = msg;
  1447. struct message_header tmp_msg, activate_msg;
  1448. memset(&tmp_msg, 0, sizeof(struct message_header));
  1449. memset(&activate_msg, 0, sizeof(struct message_header));
  1450. rrp_instance->totemrrp_token_seqid_get (
  1451. msg,
  1452. &token_seqid,
  1453. &token_is);
  1454. if (hdr->type == MESSAGE_TYPE_RING_TEST_ACTIVE) {
  1455. log_printf (
  1456. rrp_instance->totemrrp_log_level_debug,
  1457. "received message requesting test of ring now active");
  1458. if (hdr->endian_detector != ENDIAN_LOCAL) {
  1459. test_active_msg_endian_convert(hdr, &tmp_msg);
  1460. hdr = &tmp_msg;
  1461. }
  1462. if (hdr->nodeid_activator == rrp_instance->my_nodeid) {
  1463. /*
  1464. * Send an activate message
  1465. */
  1466. activate_msg.type = MESSAGE_TYPE_RING_TEST_ACTIVATE;
  1467. activate_msg.endian_detector = ENDIAN_LOCAL;
  1468. activate_msg.ring_number = hdr->ring_number;
  1469. activate_msg.nodeid_activator = rrp_instance->my_nodeid;
  1470. totemnet_token_send (
  1471. rrp_instance->net_handles[deliver_fn_context->iface_no],
  1472. &activate_msg, sizeof (struct message_header));
  1473. } else {
  1474. /*
  1475. * Send a ring test message
  1476. */
  1477. totemnet_token_send (
  1478. rrp_instance->net_handles[deliver_fn_context->iface_no],
  1479. msg, msg_len);
  1480. }
  1481. } else
  1482. if (hdr->type == MESSAGE_TYPE_RING_TEST_ACTIVATE) {
  1483. log_printf (
  1484. rrp_instance->totemrrp_log_level_notice,
  1485. "Automatically recovered ring %d", hdr->ring_number);
  1486. if (hdr->endian_detector != ENDIAN_LOCAL) {
  1487. test_active_msg_endian_convert(hdr, &tmp_msg);
  1488. hdr = &tmp_msg;
  1489. }
  1490. totemrrp_ring_reenable (rrp_instance, deliver_fn_context->iface_no);
  1491. if (hdr->nodeid_activator != rrp_instance->my_nodeid) {
  1492. totemnet_token_send (
  1493. rrp_instance->net_handles[deliver_fn_context->iface_no],
  1494. msg, msg_len);
  1495. }
  1496. } else
  1497. if (token_is) {
  1498. /*
  1499. * Deliver to the token receiver for this rrp algorithm
  1500. */
  1501. rrp_instance->rrp_algo->token_recv (
  1502. rrp_instance,
  1503. deliver_fn_context->iface_no,
  1504. deliver_fn_context->context,
  1505. msg,
  1506. msg_len,
  1507. token_seqid);
  1508. } else {
  1509. /*
  1510. * Deliver to the mcast receiver for this rrp algorithm
  1511. */
  1512. rrp_instance->rrp_algo->mcast_recv (
  1513. rrp_instance,
  1514. deliver_fn_context->iface_no,
  1515. deliver_fn_context->context,
  1516. msg,
  1517. msg_len);
  1518. }
  1519. }
  1520. void rrp_iface_change_fn (
  1521. void *context,
  1522. const struct totem_ip_address *iface_addr)
  1523. {
  1524. struct deliver_fn_context *deliver_fn_context = (struct deliver_fn_context *)context;
  1525. deliver_fn_context->instance->my_nodeid = iface_addr->nodeid;
  1526. deliver_fn_context->instance->totemrrp_iface_change_fn (
  1527. deliver_fn_context->context,
  1528. iface_addr,
  1529. deliver_fn_context->iface_no);
  1530. }
  1531. int totemrrp_finalize (
  1532. void *rrp_context)
  1533. {
  1534. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1535. int i;
  1536. for (i = 0; i < instance->interface_count; i++) {
  1537. totemnet_finalize (instance->net_handles[i]);
  1538. }
  1539. free (instance->net_handles);
  1540. free (instance);
  1541. return (0);
  1542. }
  1543. static void rrp_target_set_completed (void *context)
  1544. {
  1545. struct deliver_fn_context *deliver_fn_context = (struct deliver_fn_context *)context;
  1546. deliver_fn_context->instance->totemrrp_target_set_completed (deliver_fn_context->context);
  1547. }
  1548. /*
  1549. * Totem Redundant Ring interface
  1550. * depends on poll abstraction, POSIX, IPV4
  1551. */
  1552. /*
  1553. * Create an instance
  1554. */
  1555. int totemrrp_initialize (
  1556. qb_loop_t *poll_handle,
  1557. void **rrp_context,
  1558. struct totem_config *totem_config,
  1559. totemsrp_stats_t *stats,
  1560. void *context,
  1561. void (*deliver_fn) (
  1562. void *context,
  1563. const void *msg,
  1564. unsigned int msg_len),
  1565. void (*iface_change_fn) (
  1566. void *context,
  1567. const struct totem_ip_address *iface_addr,
  1568. unsigned int iface_no),
  1569. void (*token_seqid_get) (
  1570. const void *msg,
  1571. unsigned int *seqid,
  1572. unsigned int *token_is),
  1573. unsigned int (*msgs_missing) (void),
  1574. void (*target_set_completed) (void *context))
  1575. {
  1576. struct totemrrp_instance *instance;
  1577. unsigned int res;
  1578. int i;
  1579. instance = malloc (sizeof (struct totemrrp_instance));
  1580. if (instance == 0) {
  1581. return (-1);
  1582. }
  1583. totemrrp_instance_initialize (instance);
  1584. instance->totem_config = totem_config;
  1585. stats->rrp = &instance->stats;
  1586. instance->stats.interface_count = totem_config->interface_count;
  1587. instance->stats.faulty = calloc(instance->stats.interface_count, sizeof(uint8_t));
  1588. res = totemrrp_algorithm_set (
  1589. instance->totem_config,
  1590. instance);
  1591. if (res == -1) {
  1592. goto error_destroy;
  1593. }
  1594. /*
  1595. * Configure logging
  1596. */
  1597. instance->totemrrp_log_level_security = totem_config->totem_logging_configuration.log_level_security;
  1598. instance->totemrrp_log_level_error = totem_config->totem_logging_configuration.log_level_error;
  1599. instance->totemrrp_log_level_warning = totem_config->totem_logging_configuration.log_level_warning;
  1600. instance->totemrrp_log_level_notice = totem_config->totem_logging_configuration.log_level_notice;
  1601. instance->totemrrp_log_level_debug = totem_config->totem_logging_configuration.log_level_debug;
  1602. instance->totemrrp_subsys_id = totem_config->totem_logging_configuration.log_subsys_id;
  1603. instance->totemrrp_log_printf = totem_config->totem_logging_configuration.log_printf;
  1604. instance->interfaces = totem_config->interfaces;
  1605. instance->poll_handle = poll_handle;
  1606. instance->totemrrp_deliver_fn = deliver_fn;
  1607. instance->totemrrp_iface_change_fn = iface_change_fn;
  1608. instance->totemrrp_token_seqid_get = token_seqid_get;
  1609. instance->totemrrp_target_set_completed = target_set_completed;
  1610. instance->totemrrp_msgs_missing = msgs_missing;
  1611. instance->interface_count = totem_config->interface_count;
  1612. instance->net_handles = malloc (sizeof (void *) * totem_config->interface_count);
  1613. instance->context = context;
  1614. instance->poll_handle = poll_handle;
  1615. for (i = 0; i < totem_config->interface_count; i++) {
  1616. struct deliver_fn_context *deliver_fn_context;
  1617. deliver_fn_context = malloc (sizeof (struct deliver_fn_context));
  1618. assert (deliver_fn_context);
  1619. deliver_fn_context->instance = instance;
  1620. deliver_fn_context->context = context;
  1621. deliver_fn_context->iface_no = i;
  1622. instance->deliver_fn_context[i] = (void *)deliver_fn_context;
  1623. totemnet_initialize (
  1624. poll_handle,
  1625. &instance->net_handles[i],
  1626. totem_config,
  1627. i,
  1628. (void *)deliver_fn_context,
  1629. rrp_deliver_fn,
  1630. rrp_iface_change_fn,
  1631. rrp_target_set_completed);
  1632. totemnet_net_mtu_adjust (instance->net_handles[i], totem_config);
  1633. }
  1634. *rrp_context = instance;
  1635. return (0);
  1636. error_destroy:
  1637. free (instance);
  1638. return (res);
  1639. }
  1640. void *totemrrp_buffer_alloc (void *rrp_context)
  1641. {
  1642. struct totemrrp_instance *instance = rrp_context;
  1643. assert (instance != NULL);
  1644. return totemnet_buffer_alloc (instance->net_handles[0]);
  1645. }
  1646. void totemrrp_buffer_release (void *rrp_context, void *ptr)
  1647. {
  1648. struct totemrrp_instance *instance = rrp_context;
  1649. assert (instance != NULL);
  1650. totemnet_buffer_release (instance->net_handles[0], ptr);
  1651. }
  1652. int totemrrp_processor_count_set (
  1653. void *rrp_context,
  1654. unsigned int processor_count)
  1655. {
  1656. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1657. instance->rrp_algo->processor_count_set (instance, processor_count);
  1658. instance->processor_count = processor_count;
  1659. return (0);
  1660. }
  1661. int totemrrp_token_target_set (
  1662. void *rrp_context,
  1663. struct totem_ip_address *addr,
  1664. unsigned int iface_no)
  1665. {
  1666. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1667. instance->rrp_algo->token_target_set (instance, addr, iface_no);
  1668. return (0);
  1669. }
  1670. int totemrrp_recv_flush (void *rrp_context)
  1671. {
  1672. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1673. instance->rrp_algo->recv_flush (instance);
  1674. return (0);
  1675. }
  1676. int totemrrp_send_flush (void *rrp_context)
  1677. {
  1678. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1679. instance->rrp_algo->send_flush (instance);
  1680. return (0);
  1681. }
  1682. int totemrrp_token_send (
  1683. void *rrp_context,
  1684. const void *msg,
  1685. unsigned int msg_len)
  1686. {
  1687. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1688. instance->rrp_algo->token_send (instance, msg, msg_len);
  1689. return (0);
  1690. }
  1691. int totemrrp_mcast_flush_send (
  1692. void *rrp_context,
  1693. const void *msg,
  1694. unsigned int msg_len)
  1695. {
  1696. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1697. int res = 0;
  1698. // TODO this needs to return the result
  1699. instance->rrp_algo->mcast_flush_send (instance, msg, msg_len);
  1700. return (res);
  1701. }
  1702. int totemrrp_mcast_noflush_send (
  1703. void *rrp_context,
  1704. const void *msg,
  1705. unsigned int msg_len)
  1706. {
  1707. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1708. /*
  1709. * merge detects go out through mcast_flush_send so it is safe to
  1710. * flush these messages if we are only one processor. This avoids
  1711. * an encryption/hmac and decryption/hmac
  1712. */
  1713. if (instance->processor_count > 1) {
  1714. // TODO this needs to return the result
  1715. instance->rrp_algo->mcast_noflush_send (instance, msg, msg_len);
  1716. }
  1717. return (0);
  1718. }
  1719. int totemrrp_iface_check (void *rrp_context)
  1720. {
  1721. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1722. instance->rrp_algo->iface_check (instance);
  1723. return (0);
  1724. }
  1725. int totemrrp_ifaces_get (
  1726. void *rrp_context,
  1727. char ***status,
  1728. unsigned int *iface_count)
  1729. {
  1730. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1731. *status = instance->status;
  1732. if (iface_count) {
  1733. *iface_count = instance->interface_count;
  1734. }
  1735. return (0);
  1736. }
  1737. int totemrrp_crypto_set (
  1738. void *rrp_context,
  1739. const char *cipher_type,
  1740. const char *hash_type)
  1741. {
  1742. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1743. int res;
  1744. res = totemnet_crypto_set(instance->net_handles[0], cipher_type, hash_type);
  1745. return (res);
  1746. }
  1747. /*
  1748. * iface_no indicates the interface number [0, ..., interface_count-1] of the
  1749. * specific ring which will be reenabled. We specify iface_no == interface_count
  1750. * means reenabling all the rings.
  1751. */
  1752. int totemrrp_ring_reenable (
  1753. void *rrp_context,
  1754. unsigned int iface_no)
  1755. {
  1756. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1757. int res = 0;
  1758. unsigned int i;
  1759. instance->rrp_algo->ring_reenable (instance, iface_no);
  1760. if (iface_no == instance->interface_count) {
  1761. for (i = 0; i < instance->interface_count; i++) {
  1762. sprintf (instance->status[i], "ring %d active with no faults", i);
  1763. }
  1764. } else {
  1765. sprintf (instance->status[iface_no], "ring %d active with no faults", iface_no);
  1766. }
  1767. return (res);
  1768. }
  1769. extern int totemrrp_mcast_recv_empty (
  1770. void *rrp_context)
  1771. {
  1772. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1773. int res;
  1774. res = instance->rrp_algo->mcast_recv_empty (instance);
  1775. return (res);
  1776. }
  1777. int totemrrp_member_add (
  1778. void *rrp_context,
  1779. const struct totem_ip_address *member,
  1780. int iface_no)
  1781. {
  1782. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1783. int res;
  1784. res = instance->rrp_algo->member_add (instance, member, iface_no);
  1785. return (res);
  1786. }
  1787. int totemrrp_member_remove (
  1788. void *rrp_context,
  1789. const struct totem_ip_address *member,
  1790. int iface_no)
  1791. {
  1792. struct totemrrp_instance *instance = (struct totemrrp_instance *)rrp_context;
  1793. int res;
  1794. res = instance->rrp_algo->member_remove (instance, member, iface_no);
  1795. return (res);
  1796. }