evs.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. /*
  2. * Copyright (c) 2004-2006 MontaVista Software, Inc.
  3. * Copyright (c) 2006-2009 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 <sys/types.h>
  37. #include <sys/socket.h>
  38. #include <sys/un.h>
  39. #include <sys/ioctl.h>
  40. #include <netinet/in.h>
  41. #include <sys/uio.h>
  42. #include <unistd.h>
  43. #include <fcntl.h>
  44. #include <stdlib.h>
  45. #include <stdio.h>
  46. #include <errno.h>
  47. #include <signal.h>
  48. #include <time.h>
  49. #include <netinet/in.h>
  50. #include <arpa/inet.h>
  51. #include <corosync/swab.h>
  52. #include <corosync/corotypes.h>
  53. #include <corosync/ipc_gen.h>
  54. #include <corosync/lcr/lcr_comp.h>
  55. #include <corosync/engine/coroapi.h>
  56. #include <corosync/ipc_evs.h>
  57. #include <corosync/list.h>
  58. #include <corosync/engine/logsys.h>
  59. LOGSYS_DECLARE_SUBSYS ("EVS", LOG_INFO);
  60. enum evs_exec_message_req_types {
  61. MESSAGE_REQ_EXEC_EVS_MCAST = 0
  62. };
  63. /*
  64. * Service Interfaces required by service_message_handler struct
  65. */
  66. static int evs_exec_init_fn (
  67. struct corosync_api_v1 *corosync_api);
  68. static void evs_confchg_fn (
  69. enum totem_configuration_type configuration_type,
  70. unsigned int *member_list, int member_list_entries,
  71. unsigned int *left_list, int left_list_entries,
  72. unsigned int *joined_list, int joined_list_entries,
  73. struct memb_ring_id *ring_id);
  74. static void message_handler_req_exec_mcast (const void *msg, unsigned int nodeid);
  75. static void req_exec_mcast_endian_convert (void *msg);
  76. static void message_handler_req_evs_join (void *conn, void *msg);
  77. static void message_handler_req_evs_leave (void *conn, void *msg);
  78. static void message_handler_req_evs_mcast_joined (void *conn, void *msg);
  79. static void message_handler_req_evs_mcast_groups (void *conn, void *msg);
  80. static void message_handler_req_evs_membership_get (void *conn, void *msg);
  81. static int evs_lib_init_fn (void *conn);
  82. static int evs_lib_exit_fn (void *conn);
  83. struct evs_pd {
  84. struct evs_group *groups;
  85. int group_entries;
  86. struct list_head list;
  87. void *conn;
  88. };
  89. static struct corosync_api_v1 *api;
  90. static struct corosync_lib_handler evs_lib_engine[] =
  91. {
  92. { /* 0 */
  93. .lib_handler_fn = message_handler_req_evs_join,
  94. .response_size = sizeof (struct res_lib_evs_join),
  95. .response_id = MESSAGE_RES_EVS_JOIN,
  96. .flow_control = CS_LIB_FLOW_CONTROL_NOT_REQUIRED
  97. },
  98. { /* 1 */
  99. .lib_handler_fn = message_handler_req_evs_leave,
  100. .response_size = sizeof (struct res_lib_evs_leave),
  101. .response_id = MESSAGE_RES_EVS_LEAVE,
  102. .flow_control = CS_LIB_FLOW_CONTROL_NOT_REQUIRED
  103. },
  104. { /* 2 */
  105. .lib_handler_fn = message_handler_req_evs_mcast_joined,
  106. .response_size = sizeof (struct res_lib_evs_mcast_joined),
  107. .response_id = MESSAGE_RES_EVS_MCAST_JOINED,
  108. .flow_control = CS_LIB_FLOW_CONTROL_REQUIRED
  109. },
  110. { /* 3 */
  111. .lib_handler_fn = message_handler_req_evs_mcast_groups,
  112. .response_size = sizeof (struct res_lib_evs_mcast_groups),
  113. .response_id = MESSAGE_RES_EVS_MCAST_GROUPS,
  114. .flow_control = CS_LIB_FLOW_CONTROL_REQUIRED
  115. },
  116. { /* 4 */
  117. .lib_handler_fn = message_handler_req_evs_membership_get,
  118. .response_size = sizeof (struct res_lib_evs_membership_get),
  119. .response_id = MESSAGE_RES_EVS_MEMBERSHIP_GET,
  120. .flow_control = CS_LIB_FLOW_CONTROL_NOT_REQUIRED
  121. }
  122. };
  123. static struct corosync_exec_handler evs_exec_engine[] =
  124. {
  125. {
  126. .exec_handler_fn = message_handler_req_exec_mcast,
  127. .exec_endian_convert_fn = req_exec_mcast_endian_convert
  128. }
  129. };
  130. struct corosync_service_engine evs_service_engine = {
  131. .name = "corosync extended virtual synchrony service",
  132. .id = EVS_SERVICE,
  133. .private_data_size = sizeof (struct evs_pd),
  134. .flow_control = CS_LIB_FLOW_CONTROL_REQUIRED,
  135. .lib_init_fn = evs_lib_init_fn,
  136. .lib_exit_fn = evs_lib_exit_fn,
  137. .lib_engine = evs_lib_engine,
  138. .lib_engine_count = sizeof (evs_lib_engine) / sizeof (struct corosync_lib_handler),
  139. .exec_engine = evs_exec_engine,
  140. .exec_engine_count = sizeof (evs_exec_engine) / sizeof (struct corosync_exec_handler),
  141. .confchg_fn = evs_confchg_fn,
  142. .exec_init_fn = evs_exec_init_fn,
  143. .exec_dump_fn = NULL
  144. };
  145. static DECLARE_LIST_INIT (confchg_notify);
  146. /*
  147. * Dynamic loading descriptor
  148. */
  149. static struct corosync_service_engine *evs_get_service_engine_ver0 (void);
  150. static struct corosync_service_engine_iface_ver0 evs_service_engine_iface = {
  151. .corosync_get_service_engine_ver0 = evs_get_service_engine_ver0
  152. };
  153. static struct lcr_iface corosync_evs_ver0[1] = {
  154. {
  155. .name = "corosync_evs",
  156. .version = 0,
  157. .versions_replace = 0,
  158. .versions_replace_count = 0,
  159. .dependencies = 0,
  160. .dependency_count = 0,
  161. .constructor = NULL,
  162. .destructor = NULL,
  163. .interfaces = NULL,
  164. }
  165. };
  166. static struct lcr_comp evs_comp_ver0 = {
  167. .iface_count = 1,
  168. .ifaces = corosync_evs_ver0
  169. };
  170. static struct corosync_service_engine *evs_get_service_engine_ver0 (void)
  171. {
  172. return (&evs_service_engine);
  173. }
  174. __attribute__ ((constructor)) static void evs_comp_register (void) {
  175. lcr_interfaces_set (&corosync_evs_ver0[0], &evs_service_engine_iface);
  176. lcr_component_register (&evs_comp_ver0);
  177. }
  178. static int evs_exec_init_fn (
  179. struct corosync_api_v1 *corosync_api)
  180. {
  181. api = corosync_api;
  182. return 0;
  183. }
  184. struct res_evs_confchg_callback res_evs_confchg_callback;
  185. static void evs_confchg_fn (
  186. enum totem_configuration_type configuration_type,
  187. unsigned int *member_list, int member_list_entries,
  188. unsigned int *left_list, int left_list_entries,
  189. unsigned int *joined_list, int joined_list_entries,
  190. struct memb_ring_id *ring_id)
  191. {
  192. struct list_head *list;
  193. struct evs_pd *evs_pd;
  194. /*
  195. * Build configuration change message
  196. */
  197. res_evs_confchg_callback.header.size = sizeof (struct res_evs_confchg_callback);
  198. res_evs_confchg_callback.header.id = MESSAGE_RES_EVS_CONFCHG_CALLBACK;
  199. res_evs_confchg_callback.header.error = CS_OK;
  200. memcpy (res_evs_confchg_callback.member_list,
  201. member_list, member_list_entries * sizeof(*member_list));
  202. res_evs_confchg_callback.member_list_entries = member_list_entries;
  203. memcpy (res_evs_confchg_callback.left_list,
  204. left_list, left_list_entries * sizeof(*left_list));
  205. res_evs_confchg_callback.left_list_entries = left_list_entries;
  206. memcpy (res_evs_confchg_callback.joined_list,
  207. joined_list, joined_list_entries * sizeof(*joined_list));
  208. res_evs_confchg_callback.joined_list_entries = joined_list_entries;
  209. /*
  210. * Send configuration change message to every EVS library user
  211. */
  212. for (list = confchg_notify.next; list != &confchg_notify; list = list->next) {
  213. evs_pd = list_entry (list, struct evs_pd, list);
  214. api->ipc_response_send (evs_pd->conn,
  215. &res_evs_confchg_callback,
  216. sizeof (res_evs_confchg_callback));
  217. }
  218. }
  219. static int evs_lib_init_fn (void *conn)
  220. {
  221. struct evs_pd *evs_pd = (struct evs_pd *)api->ipc_private_data_get (conn);
  222. log_printf (LOG_LEVEL_DEBUG, "Got request to initalize evs service.\n");
  223. evs_pd->groups = NULL;
  224. evs_pd->group_entries = 0;
  225. evs_pd->conn = conn;
  226. list_init (&evs_pd->list);
  227. list_add (&evs_pd->list, &confchg_notify);
  228. api->ipc_response_send (conn, &res_evs_confchg_callback,
  229. sizeof (res_evs_confchg_callback));
  230. return (0);
  231. }
  232. static int evs_lib_exit_fn (void *conn)
  233. {
  234. struct evs_pd *evs_pd = (struct evs_pd *)api->ipc_private_data_get (conn);
  235. list_del (&evs_pd->list);
  236. return (0);
  237. }
  238. static void message_handler_req_evs_join (void *conn, void *msg)
  239. {
  240. cs_error_t error = CS_OK;
  241. struct req_lib_evs_join *req_lib_evs_join = (struct req_lib_evs_join *)msg;
  242. struct res_lib_evs_join res_lib_evs_join;
  243. void *addr;
  244. struct evs_pd *evs_pd = (struct evs_pd *)api->ipc_private_data_get (conn);
  245. if (req_lib_evs_join->group_entries > 50) {
  246. error = CS_ERR_TOO_MANY_GROUPS;
  247. goto exit_error;
  248. }
  249. addr = realloc (evs_pd->groups, sizeof (struct evs_group) *
  250. (evs_pd->group_entries + req_lib_evs_join->group_entries));
  251. if (addr == NULL) {
  252. error = CS_ERR_NO_MEMORY;
  253. goto exit_error;
  254. }
  255. evs_pd->groups = addr;
  256. memcpy (&evs_pd->groups[evs_pd->group_entries],
  257. req_lib_evs_join->groups,
  258. sizeof (struct evs_group) * req_lib_evs_join->group_entries);
  259. evs_pd->group_entries += req_lib_evs_join->group_entries;
  260. exit_error:
  261. res_lib_evs_join.header.size = sizeof (struct res_lib_evs_join);
  262. res_lib_evs_join.header.id = MESSAGE_RES_EVS_JOIN;
  263. res_lib_evs_join.header.error = error;
  264. api->ipc_response_send (conn, &res_lib_evs_join,
  265. sizeof (struct res_lib_evs_join));
  266. }
  267. static void message_handler_req_evs_leave (void *conn, void *msg)
  268. {
  269. struct req_lib_evs_leave *req_lib_evs_leave = (struct req_lib_evs_leave *)msg;
  270. struct res_lib_evs_leave res_lib_evs_leave;
  271. cs_error_t error = CS_OK;
  272. int error_index;
  273. int i, j;
  274. int found;
  275. struct evs_pd *evs_pd = (struct evs_pd *)api->ipc_private_data_get (conn);
  276. for (i = 0; i < req_lib_evs_leave->group_entries; i++) {
  277. found = 0;
  278. for (j = 0; j < evs_pd->group_entries;) {
  279. if (memcmp (&req_lib_evs_leave->groups[i],
  280. &evs_pd->groups[j], sizeof (struct evs_group)) == 0) {
  281. /*
  282. * Delete entry
  283. */
  284. memmove (&evs_pd->groups[j], &evs_pd->groups[j + 1],
  285. (evs_pd->group_entries - j - 1) * sizeof (struct evs_group));
  286. evs_pd->group_entries -= 1;
  287. found = 1;
  288. break;
  289. } else {
  290. j++;
  291. }
  292. }
  293. if (found == 0) {
  294. error = CS_ERR_NOT_EXIST;
  295. error_index = i;
  296. break;
  297. }
  298. }
  299. res_lib_evs_leave.header.size = sizeof (struct res_lib_evs_leave);
  300. res_lib_evs_leave.header.id = MESSAGE_RES_EVS_LEAVE;
  301. res_lib_evs_leave.header.error = error;
  302. api->ipc_response_send (conn, &res_lib_evs_leave,
  303. sizeof (struct res_lib_evs_leave));
  304. }
  305. static void message_handler_req_evs_mcast_joined (void *conn, void *msg)
  306. {
  307. cs_error_t error = CS_ERR_TRY_AGAIN;
  308. struct req_lib_evs_mcast_joined *req_lib_evs_mcast_joined = (struct req_lib_evs_mcast_joined *)msg;
  309. struct res_lib_evs_mcast_joined res_lib_evs_mcast_joined;
  310. struct iovec req_exec_evs_mcast_iovec[3];
  311. struct req_exec_evs_mcast req_exec_evs_mcast;
  312. int res;
  313. struct evs_pd *evs_pd = (struct evs_pd *)api->ipc_private_data_get (conn);
  314. req_exec_evs_mcast.header.size = sizeof (struct req_exec_evs_mcast) +
  315. evs_pd->group_entries * sizeof (struct evs_group) +
  316. req_lib_evs_mcast_joined->msg_len;
  317. req_exec_evs_mcast.header.id =
  318. SERVICE_ID_MAKE (EVS_SERVICE, MESSAGE_REQ_EXEC_EVS_MCAST);
  319. req_exec_evs_mcast.msg_len = req_lib_evs_mcast_joined->msg_len;
  320. req_exec_evs_mcast.group_entries = evs_pd->group_entries;
  321. req_exec_evs_mcast_iovec[0].iov_base = (char *)&req_exec_evs_mcast;
  322. req_exec_evs_mcast_iovec[0].iov_len = sizeof (req_exec_evs_mcast);
  323. req_exec_evs_mcast_iovec[1].iov_base = (char *)evs_pd->groups;
  324. req_exec_evs_mcast_iovec[1].iov_len = evs_pd->group_entries * sizeof (struct evs_group);
  325. req_exec_evs_mcast_iovec[2].iov_base = (char *)&req_lib_evs_mcast_joined->msg;
  326. req_exec_evs_mcast_iovec[2].iov_len = req_lib_evs_mcast_joined->msg_len;
  327. res = api->totem_mcast (req_exec_evs_mcast_iovec, 3, TOTEM_AGREED);
  328. // TODO
  329. if (res == 0) {
  330. error = CS_OK;
  331. }
  332. res_lib_evs_mcast_joined.header.size = sizeof (struct res_lib_evs_mcast_joined);
  333. res_lib_evs_mcast_joined.header.id = MESSAGE_RES_EVS_MCAST_JOINED;
  334. res_lib_evs_mcast_joined.header.error = error;
  335. api->ipc_response_send (conn, &res_lib_evs_mcast_joined,
  336. sizeof (struct res_lib_evs_mcast_joined));
  337. }
  338. static void message_handler_req_evs_mcast_groups (void *conn, void *msg)
  339. {
  340. cs_error_t error = CS_ERR_TRY_AGAIN;
  341. struct req_lib_evs_mcast_groups *req_lib_evs_mcast_groups = (struct req_lib_evs_mcast_groups *)msg;
  342. struct res_lib_evs_mcast_groups res_lib_evs_mcast_groups;
  343. struct iovec req_exec_evs_mcast_iovec[3];
  344. struct req_exec_evs_mcast req_exec_evs_mcast;
  345. char *msg_addr;
  346. int res;
  347. req_exec_evs_mcast.header.size = sizeof (struct req_exec_evs_mcast) +
  348. sizeof (struct evs_group) * req_lib_evs_mcast_groups->group_entries +
  349. req_lib_evs_mcast_groups->msg_len;
  350. req_exec_evs_mcast.header.id =
  351. SERVICE_ID_MAKE (EVS_SERVICE, MESSAGE_REQ_EXEC_EVS_MCAST);
  352. req_exec_evs_mcast.msg_len = req_lib_evs_mcast_groups->msg_len;
  353. req_exec_evs_mcast.group_entries = req_lib_evs_mcast_groups->group_entries;
  354. msg_addr = (char *)req_lib_evs_mcast_groups +
  355. sizeof (struct req_lib_evs_mcast_groups) +
  356. (sizeof (struct evs_group) * req_lib_evs_mcast_groups->group_entries);
  357. req_exec_evs_mcast_iovec[0].iov_base = (char *)&req_exec_evs_mcast;
  358. req_exec_evs_mcast_iovec[0].iov_len = sizeof (req_exec_evs_mcast);
  359. req_exec_evs_mcast_iovec[1].iov_base = (char *)&req_lib_evs_mcast_groups->groups;
  360. req_exec_evs_mcast_iovec[1].iov_len = sizeof (struct evs_group) * req_lib_evs_mcast_groups->group_entries;
  361. req_exec_evs_mcast_iovec[2].iov_base = msg_addr;
  362. req_exec_evs_mcast_iovec[2].iov_len = req_lib_evs_mcast_groups->msg_len;
  363. res = api->totem_mcast (req_exec_evs_mcast_iovec, 3, TOTEM_AGREED);
  364. if (res == 0) {
  365. error = CS_OK;
  366. }
  367. res_lib_evs_mcast_groups.header.size = sizeof (struct res_lib_evs_mcast_groups);
  368. res_lib_evs_mcast_groups.header.id = MESSAGE_RES_EVS_MCAST_GROUPS;
  369. res_lib_evs_mcast_groups.header.error = error;
  370. api->ipc_response_send (conn, &res_lib_evs_mcast_groups,
  371. sizeof (struct res_lib_evs_mcast_groups));
  372. }
  373. static void message_handler_req_evs_membership_get (void *conn, void *msg)
  374. {
  375. struct res_lib_evs_membership_get res_lib_evs_membership_get;
  376. res_lib_evs_membership_get.header.size = sizeof (struct res_lib_evs_membership_get);
  377. res_lib_evs_membership_get.header.id = MESSAGE_RES_EVS_MEMBERSHIP_GET;
  378. res_lib_evs_membership_get.header.error = CS_OK;
  379. res_lib_evs_membership_get.local_nodeid = api->totem_nodeid_get ();
  380. memcpy (&res_lib_evs_membership_get.member_list,
  381. &res_evs_confchg_callback.member_list,
  382. sizeof (res_lib_evs_membership_get.member_list));
  383. res_lib_evs_membership_get.member_list_entries =
  384. res_evs_confchg_callback.member_list_entries;
  385. api->ipc_response_send (conn, &res_lib_evs_membership_get,
  386. sizeof (struct res_lib_evs_membership_get));
  387. }
  388. static void req_exec_mcast_endian_convert (void *msg)
  389. {
  390. struct req_exec_evs_mcast *req_exec_evs_mcast =
  391. (struct req_exec_evs_mcast *)msg;
  392. req_exec_evs_mcast->group_entries =
  393. swab32 (req_exec_evs_mcast->group_entries);
  394. req_exec_evs_mcast->msg_len = swab32 (req_exec_evs_mcast->msg_len);
  395. }
  396. static void message_handler_req_exec_mcast (
  397. const void *msg,
  398. unsigned int nodeid)
  399. {
  400. const struct req_exec_evs_mcast *req_exec_evs_mcast = msg;
  401. struct res_evs_deliver_callback res_evs_deliver_callback;
  402. const char *msg_addr;
  403. struct list_head *list;
  404. int found = 0;
  405. int i, j;
  406. struct evs_pd *evs_pd;
  407. struct iovec iov[2];
  408. res_evs_deliver_callback.header.size = sizeof (struct res_evs_deliver_callback) +
  409. req_exec_evs_mcast->msg_len;
  410. res_evs_deliver_callback.header.id = MESSAGE_RES_EVS_DELIVER_CALLBACK;
  411. res_evs_deliver_callback.header.error = CS_OK;
  412. res_evs_deliver_callback.msglen = req_exec_evs_mcast->msg_len;
  413. msg_addr = (const char *)req_exec_evs_mcast + sizeof (struct req_exec_evs_mcast) +
  414. (sizeof (struct evs_group) * req_exec_evs_mcast->group_entries);
  415. for (list = confchg_notify.next; list != &confchg_notify; list = list->next) {
  416. found = 0;
  417. evs_pd = list_entry (list, struct evs_pd, list);
  418. for (i = 0; i < evs_pd->group_entries; i++) {
  419. for (j = 0; j < req_exec_evs_mcast->group_entries; j++) {
  420. if (memcmp (&evs_pd->groups[i], &req_exec_evs_mcast->groups[j],
  421. sizeof (struct evs_group)) == 0) {
  422. found = 1;
  423. break;
  424. }
  425. }
  426. if (found) {
  427. break;
  428. }
  429. }
  430. if (found) {
  431. res_evs_deliver_callback.local_nodeid = nodeid;
  432. iov[0].iov_base = &res_evs_deliver_callback;
  433. iov[0].iov_len = sizeof (struct res_evs_deliver_callback);
  434. iov[1].iov_base = (void *) msg_addr; /* discard const */
  435. iov[1].iov_len = req_exec_evs_mcast->msg_len;
  436. api->ipc_dispatch_iov_send (
  437. evs_pd->conn,
  438. iov,
  439. 2);
  440. }
  441. }
  442. }