testquorum.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /*
  2. * Copyright (c) 2008, 2009 Red Hat, Inc.
  3. *
  4. * All rights reserved.
  5. *
  6. * Author: Christine Caulfield (ccaulfie@redhat.com)
  7. *
  8. * This software licensed under BSD license, the text of which follows:
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions are met:
  12. *
  13. * - Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * - Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * - Neither the name of Red Hat, Inc. nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  26. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  29. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  30. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  31. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  32. * THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #include <config.h>
  35. #include <assert.h>
  36. #include <pwd.h>
  37. #include <grp.h>
  38. #include <sys/types.h>
  39. #include <sys/poll.h>
  40. #include <sys/uio.h>
  41. #include <sys/mman.h>
  42. #include <sys/socket.h>
  43. #include <sys/un.h>
  44. #include <sys/time.h>
  45. #include <sys/resource.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 <signal.h>
  54. #include <sched.h>
  55. #include <time.h>
  56. #include <corosync/corotypes.h>
  57. #include <corosync/coroipc_types.h>
  58. #include <corosync/corodefs.h>
  59. #include <corosync/engine/logsys.h>
  60. #include <corosync/mar_gen.h>
  61. #include <corosync/lcr/lcr_comp.h>
  62. #include <corosync/engine/coroapi.h>
  63. #include <corosync/engine/quorum.h>
  64. LOGSYS_DECLARE_SUBSYS ("TEST");
  65. static void test_init(struct corosync_api_v1 *api, quorum_set_quorate_fn_t report);
  66. /*
  67. * lcrso object definition
  68. */
  69. static struct quorum_services_api_ver1 test_quorum_iface_ver0 = {
  70. .init = test_init
  71. };
  72. static struct lcr_iface corosync_test_quorum_ver0[1] = {
  73. {
  74. .name = "testquorum",
  75. .version = 0,
  76. .versions_replace = 0,
  77. .versions_replace_count = 0,
  78. .dependencies = 0,
  79. .dependency_count = 0,
  80. .constructor = NULL,
  81. .destructor = NULL,
  82. .interfaces = (void **)(void *)&test_quorum_iface_ver0,
  83. },
  84. };
  85. static struct lcr_comp test_quorum_comp_ver0 = {
  86. .iface_count = 1,
  87. .ifaces = corosync_test_quorum_ver0
  88. };
  89. __attribute__ ((constructor)) static void test_quorum_comp_register (void) {
  90. lcr_interfaces_set (&corosync_test_quorum_ver0[0], &test_quorum_iface_ver0);
  91. lcr_component_register (&test_quorum_comp_ver0);
  92. }
  93. /* -------------------------------------------------- */
  94. static quorum_set_quorate_fn_t set_quorum;
  95. static void key_change_notify(object_change_type_t change_type,
  96. hdb_handle_t parent_object_handle,
  97. hdb_handle_t object_handle,
  98. const void *object_name_pt, size_t object_name_len,
  99. const void *key_name_pt, size_t key_len,
  100. const void *key_value_pt, size_t key_value_len,
  101. void *priv_data_pt)
  102. {
  103. unsigned int members[1];
  104. struct memb_ring_id ring_id;
  105. memset(&ring_id, 0, sizeof(ring_id));
  106. /* If the 'quorum.quorate' key changes, then that changes quorum */
  107. if (strncmp(key_name_pt, "quorate", key_len) == 0) {
  108. set_quorum(members, 0, atoi(key_value_pt), &ring_id);
  109. }
  110. }
  111. static void quorum_callback(int quorate, void *context)
  112. {
  113. log_printf(LOGSYS_LEVEL_DEBUG, "quorum callback: quorate = %d\n", quorate);
  114. }
  115. static void test_init(struct corosync_api_v1 *api,
  116. quorum_set_quorate_fn_t report)
  117. {
  118. hdb_handle_t find_handle;
  119. hdb_handle_t quorum_handle = 0;
  120. set_quorum = report;
  121. /*
  122. * Register for objdb changes on quorum { }
  123. */
  124. api->object_find_create(OBJECT_PARENT_HANDLE, "quorum", strlen("quorum"), &find_handle);
  125. api->object_find_next(find_handle, &quorum_handle);
  126. api->object_find_destroy(find_handle);
  127. api->object_track_start(quorum_handle,
  128. 1,
  129. key_change_notify,
  130. NULL, // object_create_notify
  131. NULL, // object_destroy_notify
  132. NULL, // object_reload_notify
  133. NULL); // priv_data
  134. /* Register for quorum changes too! */
  135. api->quorum_register_callback(quorum_callback, NULL);
  136. }