42#include <sys/socket.h>
45#include <netinet/in.h>
61#include <qb/qbipc_common.h>
70#define MAP_ANONYMOUS MAP_ANON
77#define GROUP_HASH_SIZE 32
143static struct qb_list_head joinlist_messages_head;
172static unsigned int my_member_list_entries;
176static unsigned int my_old_member_list_entries = 0;
208static int cpg_lib_init_fn (
void *conn);
210static int cpg_lib_exit_fn (
void *conn);
212static void message_handler_req_exec_cpg_procjoin (
216static void message_handler_req_exec_cpg_procleave (
220static void message_handler_req_exec_cpg_joinlist (
224static void message_handler_req_exec_cpg_mcast (
228static void message_handler_req_exec_cpg_partial_mcast (
232static void message_handler_req_exec_cpg_downlist_old (
236static void message_handler_req_exec_cpg_downlist (
240static void exec_cpg_procjoin_endian_convert (
void *msg);
242static void exec_cpg_joinlist_endian_convert (
void *msg);
244static void exec_cpg_mcast_endian_convert (
void *msg);
246static void exec_cpg_partial_mcast_endian_convert (
void *msg);
248static void exec_cpg_downlist_endian_convert_old (
void *msg);
250static void exec_cpg_downlist_endian_convert (
void *msg);
252static void message_handler_req_lib_cpg_join (
void *conn,
const void *message);
254static void message_handler_req_lib_cpg_leave (
void *conn,
const void *message);
256static void message_handler_req_lib_cpg_finalize (
void *conn,
const void *message);
258static void message_handler_req_lib_cpg_mcast (
void *conn,
const void *message);
260static void message_handler_req_lib_cpg_partial_mcast (
void *conn,
const void *message);
262static void message_handler_req_lib_cpg_membership (
void *conn,
263 const void *message);
265static void message_handler_req_lib_cpg_local_get (
void *conn,
266 const void *message);
268static void message_handler_req_lib_cpg_iteration_initialize (
270 const void *message);
272static void message_handler_req_lib_cpg_iteration_next (
274 const void *message);
276static void message_handler_req_lib_cpg_iteration_finalize (
278 const void *message);
280static void message_handler_req_lib_cpg_zc_alloc (
282 const void *message);
284static void message_handler_req_lib_cpg_zc_free (
286 const void *message);
288static void message_handler_req_lib_cpg_zc_execute (
290 const void *message);
292static int cpg_node_joinleave_send (
unsigned int pid,
const mar_cpg_name_t *group_name,
int fn,
int reason);
294static int cpg_exec_send_downlist(
void);
296static int cpg_exec_send_joinlist(
void);
298static void downlist_inform_clients (
void);
300static void joinlist_inform_clients (
void);
302static void joinlist_messages_delete (
void);
304static void cpg_sync_init (
305 const unsigned int *trans_list,
306 size_t trans_list_entries,
307 const unsigned int *member_list,
308 size_t member_list_entries,
311static int cpg_sync_process (
void);
313static void cpg_sync_activate (
void);
315static void cpg_sync_abort (
void);
317static void do_proc_join(
322 qb_map_t *group_notify_map);
324static void do_proc_leave(
330static int notify_lib_totem_membership (
332 int member_list_entries,
333 const unsigned int *member_list);
335static inline int zcb_all_free (
338static char *cpg_print_group_name (
351 .lib_handler_fn = message_handler_req_lib_cpg_leave,
355 .lib_handler_fn = message_handler_req_lib_cpg_mcast,
359 .lib_handler_fn = message_handler_req_lib_cpg_membership,
363 .lib_handler_fn = message_handler_req_lib_cpg_local_get,
367 .lib_handler_fn = message_handler_req_lib_cpg_iteration_initialize,
371 .lib_handler_fn = message_handler_req_lib_cpg_iteration_next,
375 .lib_handler_fn = message_handler_req_lib_cpg_iteration_finalize,
379 .lib_handler_fn = message_handler_req_lib_cpg_finalize,
383 .lib_handler_fn = message_handler_req_lib_cpg_zc_alloc,
387 .lib_handler_fn = message_handler_req_lib_cpg_zc_free,
391 .lib_handler_fn = message_handler_req_lib_cpg_zc_execute,
395 .lib_handler_fn = message_handler_req_lib_cpg_partial_mcast,
405 .exec_endian_convert_fn = exec_cpg_procjoin_endian_convert
408 .exec_handler_fn = message_handler_req_exec_cpg_procleave,
409 .exec_endian_convert_fn = exec_cpg_procjoin_endian_convert
412 .exec_handler_fn = message_handler_req_exec_cpg_joinlist,
413 .exec_endian_convert_fn = exec_cpg_joinlist_endian_convert
416 .exec_handler_fn = message_handler_req_exec_cpg_mcast,
417 .exec_endian_convert_fn = exec_cpg_mcast_endian_convert
420 .exec_handler_fn = message_handler_req_exec_cpg_downlist_old,
421 .exec_endian_convert_fn = exec_cpg_downlist_endian_convert_old
424 .exec_handler_fn = message_handler_req_exec_cpg_downlist,
425 .exec_endian_convert_fn = exec_cpg_downlist_endian_convert
428 .exec_handler_fn = message_handler_req_exec_cpg_partial_mcast,
429 .exec_endian_convert_fn = exec_cpg_partial_mcast_endian_convert
434 .
name =
"corosync cluster closed process group service v1.01",
437 .private_data_size =
sizeof (
struct cpg_pd),
440 .lib_init_fn = cpg_lib_init_fn,
441 .lib_exit_fn = cpg_lib_exit_fn,
442 .lib_engine = cpg_lib_engine,
444 .exec_init_fn = cpg_exec_init_fn,
445 .exec_dump_fn = NULL,
446 .exec_engine = cpg_exec_engine,
448 .sync_init = cpg_sync_init,
449 .sync_process = cpg_sync_process,
450 .sync_activate = cpg_sync_activate,
451 .sync_abort = cpg_sync_abort
520 for (i = 0; i < group->length; i++) {
523 if (c >=
' ' && c < 0x7f && c !=
'\\') {
527 res[dest_pos++] =
'\\';
528 res[dest_pos++] =
'\\';
530 snprintf(res + dest_pos,
sizeof(res) - dest_pos,
"\\x%02X", c);
540static void cpg_sync_init (
541 const unsigned int *trans_list,
542 size_t trans_list_entries,
543 const unsigned int *member_list,
544 size_t member_list_entries,
553 memcpy (my_member_list, member_list, member_list_entries *
554 sizeof (
unsigned int));
555 my_member_list_entries = member_list_entries;
564 for (i = 0; i < my_old_member_list_entries; i++) {
566 for (j = 0; j < trans_list_entries; j++) {
567 if (my_old_member_list[i] == trans_list[j]) {
573 g_req_exec_cpg_downlist.nodeids[entries++] =
574 my_old_member_list[i];
577 g_req_exec_cpg_downlist.left_nodes = entries;
580static int cpg_sync_process (
void)
585 res = cpg_exec_send_downlist();
592 res = cpg_exec_send_joinlist();
597static void cpg_sync_activate (
void)
599 memcpy (my_old_member_list, my_member_list,
600 my_member_list_entries *
sizeof (
unsigned int));
601 my_old_member_list_entries = my_member_list_entries;
603 downlist_inform_clients ();
605 joinlist_inform_clients ();
607 joinlist_messages_delete ();
609 notify_lib_totem_membership (NULL, my_member_list_entries, my_member_list);
612static void cpg_sync_abort (
void)
615 joinlist_messages_delete ();
618static int notify_lib_totem_membership (
620 int member_list_entries,
621 const unsigned int *member_list)
623 struct qb_list_head *iter;
635 res->member_list_entries = member_list_entries;
636 res->header.size = size;
638 res->header.error =
CS_OK;
644 qb_list_for_each(iter, &cpg_pd_list_head) {
663static void notify_lib_joinlist_fill_member_list(
665 int left_list_entries,
667 int *member_list_entries,
670 struct qb_list_head *iter;
673 if (member_list_entries != NULL) {
674 *member_list_entries = 0;
677 qb_list_for_each(iter, &process_info_list_head) {
680 if (mar_name_compare (&pi->
group, group_name) == 0) {
681 int in_left_list = 0;
683 for (i = 0; i < left_list_entries; i++) {
684 if (left_list[i].
nodeid == pi->
nodeid && left_list[i].pid == pi->
pid) {
691 if (member_list_entries != NULL) {
692 (*member_list_entries)++;
695 if (member_list != NULL) {
696 (*member_list)->nodeid = pi->
nodeid;
697 (*member_list)->pid = pi->
pid;
706static int notify_lib_joinlist(
708 int joined_list_entries,
710 int left_list_entries,
716 struct qb_list_head *iter;
717 int member_list_entries;
725 notify_lib_joinlist_fill_member_list(group_name, left_list_entries, left_list,
726 &member_list_entries, NULL);
729 sizeof(
mar_cpg_address_t) * (member_list_entries + left_list_entries + joined_list_entries);
735 res->joined_list_entries = joined_list_entries;
736 res->left_list_entries = left_list_entries;
737 res->member_list_entries = member_list_entries;
739 res->header.size = size;
741 res->header.error =
CS_OK;
747 notify_lib_joinlist_fill_member_list(group_name, left_list_entries, left_list,
753 if (left_list_entries) {
755 retgi += left_list_entries;
758 if (joined_list_entries) {
763 retgi += joined_list_entries;
768 for (i = 0; i < joined_list_entries; i++) {
770 qb_list_for_each(iter, &cpg_pd_list_head) {
772 if (joined_list[i].
pid == cpd->
pid &&
784 qb_list_for_each(iter, &cpg_pd_list_head) {
796 if (left_list_entries) {
803 for (i = 0; i < joined_list_entries; i++) {
806 qb_list_for_each(iter, &cpg_pd_list_head) {
808 if (left_list[i].
pid == cpd->
pid &&
822 qb_list_for_each(iter, &cpg_pd_list_head) {
828 notify_lib_totem_membership (cpd->
conn, my_old_member_list_entries, my_old_member_list);
838 "%s: members(old:%d left:%d)",
844static void downlist_inform_clients (
void)
846 struct qb_list_head *iter, *tmp_iter;
854 int left_list_entries;
855 struct qb_list_head list;
857 qb_map_iter_t *miter;
860 downlist_log(
"my downlist", &g_req_exec_cpg_downlist);
862 group_map = qb_skiplist_create();
869 qb_list_for_each_safe(iter, tmp_iter, &process_info_list_head) {
873 for (i = 0; i < g_req_exec_cpg_downlist.left_nodes; i++) {
875 if (pi->
nodeid == g_req_exec_cpg_downlist.nodeids[i]) {
882 marshall_from_mar_cpg_name_t(&cpg_group, &left_pi->
group);
883 cpg_group.value[cpg_group.length] = 0;
885 pcd = (
struct confchg_data *)qb_map_get(group_map, cpg_group.value);
887 pcd = (
struct confchg_data *)calloc(1,
sizeof(
struct confchg_data));
888 memcpy(&pcd->cpg_group, &cpg_group,
sizeof(
struct cpg_name));
889 qb_map_put(group_map, pcd->cpg_group.value, pcd);
891 size = pcd->left_list_entries;
892 pcd->left_list[size].nodeid = left_pi->
nodeid;
893 pcd->left_list[size].pid = left_pi->
pid;
895 pcd->left_list_entries++;
896 qb_list_del (&left_pi->
list);
902 miter = qb_map_iter_create(group_map);
903 while (qb_map_iter_next(miter, (
void **)&pcd)) {
904 marshall_to_mar_cpg_name_t(&group, &pcd->cpg_group);
906 log_printf (LOG_DEBUG,
"left_list_entries:%d", pcd->left_list_entries);
907 for (i=0; i<pcd->left_list_entries; i++) {
908 log_printf (LOG_DEBUG,
"left_list[%d] group:%s, ip:%s, pid:%d",
909 i, cpg_print_group_name(&group),
911 pcd->left_list[i].pid);
915 notify_lib_joinlist(&group,
917 pcd->left_list_entries,
923 qb_map_iter_free(miter);
924 qb_map_destroy(group_map);
930static void joinlist_remove_zombie_pi_entries (
void)
932 struct qb_list_head *pi_iter, *tmp_iter;
933 struct qb_list_head *jl_iter;
938 qb_list_for_each_safe(pi_iter, tmp_iter, &process_info_list_head) {
952 qb_list_for_each(jl_iter, &joinlist_messages_head) {
960 pi->
pid == stored_msg->
pid &&
973static void joinlist_inform_clients (
void)
976 struct qb_list_head *iter;
978 qb_map_t *group_notify_map;
979 qb_map_iter_t *miter;
982 group_notify_map = qb_skiplist_create();
985 qb_list_for_each(iter, &joinlist_messages_head) {
986 stored_msg = qb_list_entry(iter,
struct joinlist_msg, list);
988 log_printf (LOG_DEBUG,
"joinlist_messages[%u] group:%s, ip:%s, pid:%d",
989 i++, cpg_print_group_name(&stored_msg->
group_name),
1002 miter = qb_map_iter_create(group_notify_map);
1003 while (qb_map_iter_next(miter, (
void **)&jld)) {
1004 notify_lib_joinlist(&jld->cpg_group,
1005 jld->join_list_entries, jld->join_list,
1010 qb_map_iter_free(miter);
1011 qb_map_destroy(group_notify_map);
1013 joinlist_remove_zombie_pi_entries ();
1016static void joinlist_messages_delete (
void)
1019 struct qb_list_head *iter, *tmp_iter;
1021 qb_list_for_each_safe(iter, tmp_iter, &joinlist_messages_head) {
1022 stored_msg = qb_list_entry(iter,
struct joinlist_msg, list);
1023 qb_list_del (&stored_msg->
list);
1026 qb_list_init (&joinlist_messages_head);
1031 qb_list_init (&joinlist_messages_head);
1038 struct qb_list_head *iter, *tmp_iter;
1043 qb_list_del (&pi->
list);
1051static void cpg_pd_finalize (
struct cpg_pd *cpd)
1053 struct qb_list_head *iter, *tmp_iter;
1060 cpg_iteration_instance_finalize (cpii);
1063 qb_list_del (&cpd->
list);
1066static int cpg_lib_exit_fn (
void *conn)
1077 cpg_pd_finalize (cpd);
1086 struct iovec req_exec_cpg_iovec;
1107static void exec_cpg_procjoin_endian_convert (
void *msg)
1116static void exec_cpg_joinlist_endian_convert (
void *msg_v)
1119 struct qb_ipc_response_header *res = (
struct qb_ipc_response_header *)msg;
1122 swab_mar_int32_t (&res->size);
1124 while ((
const char*)jle < msg + res->size) {
1131static void exec_cpg_downlist_endian_convert_old (
void *msg)
1135static void exec_cpg_downlist_endian_convert (
void *msg)
1149static void exec_cpg_mcast_endian_convert (
void *msg)
1160static void exec_cpg_partial_mcast_endian_convert (
void *msg)
1174 struct qb_list_head *iter;
1176 qb_list_for_each(iter, &process_info_list_head) {
1180 mar_name_compare (&pi->
group, group_name) == 0) {
1188static void do_proc_join(
1193 qb_map_t *group_notify_map)
1198 struct qb_list_head *list;
1199 struct qb_list_head *list_to_add = NULL;
1202 if (process_info_find (name, pid,
nodeid) != NULL) {
1212 memcpy(&pi->
group, name,
sizeof(*name));
1213 qb_list_init(&pi->
list);
1218 list_to_add = &process_info_list_head;
1219 qb_list_for_each(list, &process_info_list_head) {
1220 pi_entry = qb_list_entry(list,
struct process_info, list);
1228 qb_list_add (&pi->
list, list_to_add);
1230 notify_info.pid = pi->
pid;
1231 notify_info.nodeid =
nodeid;
1232 notify_info.reason = reason;
1234 if (group_notify_map == NULL) {
1235 notify_lib_joinlist(&pi->
group,
1244 qb_map_put(group_notify_map, jld->
cpg_group.value, jld);
1247 jld->
join_list[size].nodeid = notify_info.nodeid;
1248 jld->
join_list[size].pid = notify_info.pid;
1249 jld->
join_list[size].reason = notify_info.reason;
1254static void do_proc_leave(
1261 struct qb_list_head *iter, *tmp_iter;
1264 notify_info.pid = pid;
1265 notify_info.nodeid =
nodeid;
1266 notify_info.reason = reason;
1268 notify_lib_joinlist(name,
1273 qb_list_for_each_safe(iter, tmp_iter, &process_info_list_head) {
1277 mar_name_compare (&pi->
group, name)==0) {
1278 qb_list_del (&pi->
list);
1284static void message_handler_req_exec_cpg_downlist_old (
1285 const void *message,
1292static void message_handler_req_exec_cpg_downlist(
1293 const void *message,
1303static void message_handler_req_exec_cpg_procjoin (
1304 const void *message,
1319static void message_handler_req_exec_cpg_procleave (
1320 const void *message,
1337static void message_handler_req_exec_cpg_joinlist (
1338 const void *message_v,
1341 const char *message = message_v;
1342 const struct qb_ipc_response_header *res = (
const struct qb_ipc_response_header *)message;
1349 while ((
const char*)jle < message + res->size) {
1353 stored_msg->
pid = jle->
pid;
1355 qb_list_init (&stored_msg->
list);
1356 qb_list_add (&stored_msg->
list, &joinlist_messages_head);
1361static void message_handler_req_exec_cpg_mcast (
1362 const void *message,
1368 struct qb_list_head *iter, *pi_iter, *tmp_iter;
1370 struct iovec iovec[2];
1385 iovec[1].iov_len = msglen;
1387 qb_list_for_each_safe(iter, tmp_iter, &cpg_pd_list_head) {
1388 cpd = qb_list_entry(iter,
struct cpg_pd, list);
1394 qb_list_for_each(pi_iter, &process_info_list_head) {
1415static void message_handler_req_exec_cpg_partial_mcast (
1416 const void *message,
1422 struct qb_list_head *iter, *pi_iter, *tmp_iter;
1424 struct iovec iovec[2];
1443 iovec[1].iov_len = msglen;
1445 qb_list_for_each_safe(iter, tmp_iter, &cpg_pd_list_head) {
1446 cpd = qb_list_entry(iter,
struct cpg_pd, list);
1453 qb_list_for_each(pi_iter, &process_info_list_head) {
1475static int cpg_exec_send_downlist(
void)
1482 g_req_exec_cpg_downlist.old_members = my_old_member_list_entries;
1484 iov.iov_base = (
void *)&g_req_exec_cpg_downlist;
1485 iov.iov_len = g_req_exec_cpg_downlist.header.size;
1490static int cpg_exec_send_joinlist(
void)
1493 struct qb_list_head *iter;
1494 struct qb_ipc_response_header *res;
1498 struct iovec req_exec_cpg_iovec;
1500 qb_list_for_each(iter, &process_info_list_head) {
1512 buf_size =
sizeof(
struct qb_ipc_response_header) + sizeof(struct
join_list_entry) * count;
1513 buf = alloca(buf_size);
1518 memset(buf, 0, buf_size);
1520 jle = (
struct join_list_entry *)(buf +
sizeof(
struct qb_ipc_response_header));
1521 res = (
struct qb_ipc_response_header *)buf;
1523 qb_list_for_each(iter, &process_info_list_head) {
1534 res->size =
sizeof(
struct qb_ipc_response_header)+sizeof(struct
join_list_entry) * count;
1536 req_exec_cpg_iovec.iov_base = buf;
1537 req_exec_cpg_iovec.iov_len = res->size;
1542static int cpg_lib_init_fn (
void *conn)
1545 memset (cpd, 0,
sizeof(
struct cpg_pd));
1547 qb_list_add (&cpd->
list, &cpg_pd_list_head);
1558static void message_handler_req_lib_cpg_join (
void *
conn,
const void *message)
1564 struct qb_list_head *iter;
1567 qb_list_for_each(iter, &cpg_pd_list_head) {
1583 qb_list_for_each(iter, &process_info_list_head) {
1631static void message_handler_req_lib_cpg_leave (
void *conn,
const void *message)
1668static void message_handler_req_lib_cpg_finalize (
1670 const void *message)
1682 qb_list_del (&cpd->
list);
1683 qb_list_init (&cpd->
list);
1703 fd = open (path, O_RDWR, 0600);
1711 res = ftruncate (fd, bytes);
1713 goto error_close_unlink;
1716 addr = mmap (NULL, bytes, PROT_READ | PROT_WRITE,
1719 if (
addr == MAP_FAILED) {
1720 goto error_close_unlink;
1723 madvise(
addr, bytes, MADV_NOSYNC);
1728 munmap (
addr, bytes);
1740static inline int zcb_alloc (
1742 const char *path_to_file,
1781static inline int zcb_by_addr_free (
struct cpg_pd *cpd,
void *
addr)
1783 struct qb_list_head *list, *tmp_iter;
1785 unsigned int res = 0;
1799static inline int zcb_all_free (
1802 struct qb_list_head *list, *tmp_iter;
1818static uint64_t void2serveraddr (
void *server_ptr)
1826static void *serveraddr2void (uint64_t
server_addr)
1834static void message_handler_req_lib_cpg_zc_alloc (
1836 const void *message)
1839 struct qb_ipc_response_header res_header;
1847 res = zcb_alloc (cpd, hdr->path_to_file, hdr->map_size,
1854 res_header.size =
sizeof (
struct qb_ipc_response_header);
1861static void message_handler_req_lib_cpg_zc_free (
1863 const void *message)
1866 struct qb_ipc_response_header res_header;
1872 addr = serveraddr2void (hdr->server_address);
1874 zcb_by_addr_free (cpd,
addr);
1876 res_header.size =
sizeof (
struct qb_ipc_response_header);
1884static void message_handler_req_lib_cpg_partial_mcast (
void *conn,
const void *message)
1890 struct iovec req_exec_cpg_iovec[2];
1925 if (error ==
CS_OK) {
1940 req_exec_cpg_iovec[1].iov_len = msglen;
1943 assert(result == 0);
1946 conn, group_name.value, cpd->
cpd_state, error);
1955static void message_handler_req_lib_cpg_mcast (
void *conn,
const void *message)
1961 struct iovec req_exec_cpg_iovec[2];
1984 if (error ==
CS_OK) {
1999 req_exec_cpg_iovec[1].iov_len = msglen;
2002 assert(result == 0);
2005 conn, group_name.value, cpd->
cpd_state, error);
2009static void message_handler_req_lib_cpg_zc_execute (
2011 const void *message)
2014 struct qb_ipc_request_header *
header;
2017 struct iovec req_exec_cpg_iovec[2];
2025 header = (
struct qb_ipc_request_header *)(((
char *)serveraddr2void(hdr->server_address) + sizeof (
struct coroipcs_zc_header)));
2045 if (error ==
CS_OK) {
2075static void message_handler_req_lib_cpg_membership (
void *conn,
2076 const void *message)
2081 struct qb_list_head *iter;
2082 int member_count = 0;
2089 qb_list_for_each(iter, &process_info_list_head) {
2103static void message_handler_req_lib_cpg_local_get (
void *conn,
2104 const void *message)
2117static void message_handler_req_lib_cpg_iteration_initialize (
2119 const void *message)
2125 struct qb_list_head *iter, *iter2;
2140 &cpg_iteration_handle);
2147 res = hdb_handle_get (&cpg_iteration_handle_t_db, cpg_iteration_handle, (
void *)&
cpg_iteration_instance);
2160 qb_list_for_each(iter, &process_info_list_head) {
2173 if (mar_name_compare (&pi2->
group, &pi->
group) == 0) {
2202 goto error_put_destroy;
2206 qb_list_init (&new_pi->
list);
2221 if (mar_name_compare (&pi2->
group, &pi->
group) == 0) {
2226 qb_list_add (&new_pi->
list, iter2);
2242 hdb_handle_put (&cpg_iteration_handle_t_db, cpg_iteration_handle);
2244 if (error !=
CS_OK) {
2245 hdb_handle_destroy (&cpg_iteration_handle_t_db, cpg_iteration_handle);
2258static void message_handler_req_lib_cpg_iteration_next (
2260 const void *message)
2271 res = hdb_handle_get (&cpg_iteration_handle_t_db,
2311static void message_handler_req_lib_cpg_iteration_finalize (
2313 const void *message)
2323 res = hdb_handle_get (&cpg_iteration_handle_t_db,
#define SERVICE_ID_MAKE(a, b)
unsigned char addr[TOTEMIP_ADDRLEN]
@ CS_LIB_FLOW_CONTROL_REQUIRED
@ CS_LIB_FLOW_CONTROL_NOT_REQUIRED
#define PROCESSOR_COUNT_MAX
cs_error_t
The cs_error_t enum.
struct corosync_service_engine cpg_service_engine
QB_LIST_DECLARE(cpg_pd_list_head)
@ MESSAGE_REQ_EXEC_CPG_JOINLIST
@ MESSAGE_REQ_EXEC_CPG_PARTIAL_MCAST
@ MESSAGE_REQ_EXEC_CPG_PROCLEAVE
@ MESSAGE_REQ_EXEC_CPG_DOWNLIST_OLD
@ MESSAGE_REQ_EXEC_CPG_MCAST
@ MESSAGE_REQ_EXEC_CPG_PROCJOIN
@ MESSAGE_REQ_EXEC_CPG_DOWNLIST
DECLARE_HDB_DATABASE(cpg_iteration_handle_t_db, NULL)
@ CPD_STATE_LEAVE_STARTED
@ CPD_STATE_JOIN_COMPLETED
struct corosync_service_engine * cpg_get_service_engine_ver0(void)
LOGSYS_DECLARE_SUBSYS("CPG")
#define CPG_MAX_NAME_LENGTH
#define CPG_MODEL_V1_DELIVER_INITIAL_TOTEM_CONF
@ CPG_ITERATION_ONE_GROUP
@ CPG_ITERATION_NAME_ONLY
@ MESSAGE_RES_CPG_ITERATIONFINALIZE
@ MESSAGE_RES_CPG_MEMBERSHIP
@ MESSAGE_RES_CPG_PARTIAL_DELIVER_CALLBACK
@ MESSAGE_RES_CPG_FINALIZE
@ MESSAGE_RES_CPG_DELIVER_CALLBACK
@ MESSAGE_RES_CPG_TOTEM_CONFCHG_CALLBACK
@ MESSAGE_RES_CPG_ITERATIONNEXT
@ MESSAGE_RES_CPG_CONFCHG_CALLBACK
@ MESSAGE_RES_CPG_PARTIAL_SEND
@ MESSAGE_RES_CPG_ITERATIONINITIALIZE
@ MESSAGE_RES_CPG_LOCAL_GET
@ CONFCHG_CPG_REASON_LEAVE
@ CONFCHG_CPG_REASON_PROCDOWN
@ CONFCHG_CPG_REASON_NODEUP
@ CONFCHG_CPG_REASON_JOIN
@ CONFCHG_CPG_REASON_NODEDOWN
#define LOGSYS_LEVEL_ERROR
#define log_printf(level, format, args...)
#define LOGSYS_LEVEL_WARNING
#define LOGSYS_LEVEL_DEBUG
#define LOGSYS_LEVEL_TRACE
The corosync_api_v1 struct.
int(* totem_mcast)(const struct iovec *iovec, unsigned int iov_len, unsigned int guarantee)
void *(* ipc_private_data_get)(void *conn)
unsigned int(* totem_nodeid_get)(void)
const char *(* totem_ifaces_print)(unsigned int nodeid)
void(* ipc_refcnt_dec)(void *conn)
void(* ipc_source_set)(mar_message_source_t *source, void *conn)
void(* ipc_refcnt_inc)(void *conn)
int(* ipc_dispatch_send)(void *conn, const void *msg, size_t mlen)
int(* ipc_response_send)(void *conn, const void *msg, size_t mlen)
int(* ipc_dispatch_iov_send)(void *conn, const struct iovec *iov, unsigned int iov_len)
The corosync_exec_handler struct.
void(* exec_handler_fn)(const void *msg, unsigned int nodeid)
The corosync_lib_handler struct.
void(* lib_handler_fn)(void *conn, const void *msg)
The corosync_service_engine struct.
struct qb_list_head items_list_head
struct qb_list_head * current_pointer
uint64_t transition_counter
int initial_totem_conf_sent
mar_cpg_name_t group_name
struct qb_list_head iteration_instance_list_head
uint64_t initial_transition_counter
struct qb_list_head zcb_mapped_list_head
mar_cpg_address_t join_list[CPG_MEMBERS_MAX]
mar_cpg_name_t group_name
mar_uint32_t sender_nodeid
mar_cpg_name_t group_name
The mar_message_source_t struct.
mar_req_coroipcc_zc_alloc_t struct
mar_req_coroipcc_zc_execute_t struct
mar_req_coroipcc_zc_free_t struct
struct qb_ipc_request_header header __attribute__((aligned(8)))
mar_uint32_t nodeids[PROCESSOR_COUNT_MAX] __attribute__((aligned(8)))
mar_uint32_t left_nodes __attribute__((aligned(8)))
mar_uint32_t old_members __attribute__((aligned(8)))
mar_uint32_t left_nodes __attribute__((aligned(8)))
struct qb_ipc_request_header header __attribute__((aligned(8)))
mar_uint32_t nodeids[PROCESSOR_COUNT_MAX] __attribute__((aligned(8)))
struct qb_ipc_request_header header __attribute__((aligned(8)))
mar_cpg_name_t group_name __attribute__((aligned(8)))
mar_uint32_t pid __attribute__((aligned(8)))
mar_uint32_t msglen __attribute__((aligned(8)))
mar_message_source_t source __attribute__((aligned(8)))
mar_uint8_t message[] __attribute__((aligned(8)))
mar_uint32_t type __attribute__((aligned(8)))
mar_message_source_t source __attribute__((aligned(8)))
mar_cpg_name_t group_name __attribute__((aligned(8)))
mar_uint32_t pid __attribute__((aligned(8)))
mar_uint8_t message[] __attribute__((aligned(8)))
struct qb_ipc_request_header header __attribute__((aligned(8)))
mar_uint32_t msglen __attribute__((aligned(8)))
mar_uint32_t fraglen __attribute__((aligned(8)))
mar_uint32_t pid __attribute__((aligned(8)))
mar_uint32_t reason __attribute__((aligned(8)))
struct qb_ipc_request_header header __attribute__((aligned(8)))
mar_cpg_name_t group_name __attribute__((aligned(8)))
The req_lib_cpg_iterationfinalize struct.
The req_lib_cpg_iterationinitialize struct.
The req_lib_cpg_iterationnext struct.
The req_lib_cpg_join struct.
The req_lib_cpg_leave struct.
The req_lib_cpg_mcast struct.
The req_lib_cpg_membership_get struct.
The req_lib_cpg_partial_mcast struct.
The res_lib_cpg_confchg_callback struct.
mar_cpg_address_t member_list[]
Message from another node.
The res_lib_cpg_finalize struct.
The res_lib_cpg_iterationfinalize struct.
The res_lib_cpg_iterationinitialize struct.
The res_lib_cpg_iterationnext struct.
The res_lib_cpg_join struct.
The res_lib_cpg_leave struct.
The res_lib_cpg_local_get struct.
The res_lib_cpg_mcast struct.
The res_lib_cpg_membership_get struct.
mar_cpg_address_t member_list[PROCESSOR_COUNT_MAX]
The res_lib_cpg_partial_deliver_callback struct.
The res_lib_cpg_partial_send struct.
The res_lib_cpg_totem_confchg_callback struct.
mar_uint32_t member_list[]
#define swab32(x)
The swab32 macro.
struct memb_ring_id ring_id
struct totem_message_header header