testquorum.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * Copyright (c) 2008 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 <assert.h>
  35. #include <pwd.h>
  36. #include <grp.h>
  37. #include <sys/types.h>
  38. #include <sys/poll.h>
  39. #include <sys/uio.h>
  40. #include <sys/mman.h>
  41. #include <sys/socket.h>
  42. #include <sys/un.h>
  43. #include <sys/time.h>
  44. #include <sys/resource.h>
  45. #include <netinet/in.h>
  46. #include <arpa/inet.h>
  47. #include <unistd.h>
  48. #include <fcntl.h>
  49. #include <stdlib.h>
  50. #include <stdio.h>
  51. #include <errno.h>
  52. #include <signal.h>
  53. #include <sched.h>
  54. #include <time.h>
  55. #include <corosync/engine/logsys.h>
  56. #include <corosync/ipc_gen.h>
  57. #include <corosync/lcr/lcr_comp.h>
  58. #include <corosync/engine/coroapi.h>
  59. #include <corosync/engine/quorum.h>
  60. LOGSYS_DECLARE_SUBSYS ("TEST", LOG_INFO);
  61. static void test_init(struct corosync_api_v1 *api, quorum_set_quorate_fn_t report);
  62. /*
  63. * lcrso object definition
  64. */
  65. static struct quorum_services_api_ver1 test_quorum_iface_ver0 = {
  66. .init = test_init
  67. };
  68. static struct lcr_iface corosync_test_quorum_ver0[1] = {
  69. {
  70. .name = "testquorum",
  71. .version = 0,
  72. .versions_replace = 0,
  73. .versions_replace_count = 0,
  74. .dependencies = 0,
  75. .dependency_count = 0,
  76. .constructor = NULL,
  77. .destructor = NULL,
  78. .interfaces = (void **)(void *)&test_quorum_iface_ver0,
  79. },
  80. };
  81. static struct lcr_comp test_quorum_comp_ver0 = {
  82. .iface_count = 1,
  83. .ifaces = corosync_test_quorum_ver0
  84. };
  85. __attribute__ ((constructor)) static void test_quorum_comp_register (void) {
  86. lcr_interfaces_set (&corosync_test_quorum_ver0[0], &test_quorum_iface_ver0);
  87. lcr_component_register (&test_quorum_comp_ver0);
  88. }
  89. /* -------------------------------------------------- */
  90. static quorum_set_quorate_fn_t set_quorum;
  91. static void key_change_notify(object_change_type_t change_type,
  92. hdb_handle_t parent_object_handle,
  93. hdb_handle_t object_handle,
  94. void *object_name_pt, int object_name_len,
  95. void *key_name_pt, int key_len,
  96. void *key_value_pt, int key_value_len,
  97. void *priv_data_pt)
  98. {
  99. unsigned int members[1];
  100. struct memb_ring_id ring_id;
  101. memset(&ring_id, 0, sizeof(ring_id));
  102. /* If the 'quorum.quorate' key changes, then that changes quorum */
  103. if (strncmp(key_name_pt, "quorate", key_len) == 0) {
  104. set_quorum(members, 0, atoi(key_value_pt), &ring_id);
  105. }
  106. }
  107. static void quorum_callback(int quorate, void *context)
  108. {
  109. log_printf(LOG_LEVEL_DEBUG, "quorum callback: quorate = %d\n", quorate);
  110. }
  111. static void test_init(struct corosync_api_v1 *api,
  112. quorum_set_quorate_fn_t report)
  113. {
  114. hdb_handle_t find_handle;
  115. hdb_handle_t quorum_handle = 0;
  116. set_quorum = report;
  117. /*
  118. * Register for objdb changes on quorum { }
  119. */
  120. api->object_find_create(OBJECT_PARENT_HANDLE, "quorum", strlen("quorum"), &find_handle);
  121. api->object_find_next(find_handle, &quorum_handle);
  122. api->object_find_destroy(find_handle);
  123. api->object_track_start(quorum_handle,
  124. 1,
  125. key_change_notify,
  126. NULL, // object_create_notify
  127. NULL, // object_destroy_notify
  128. NULL, // object_reload_notify
  129. NULL); // priv_data
  130. /* Register for quorum changes too! */
  131. api->quorum_register_callback(quorum_callback, NULL);
  132. }