4
0

schedwrk.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * Copyright (c) 2009-2010 Red Hat, Inc.
  3. *
  4. * All rights reserved.
  5. *
  6. * Author: Steven Dake (sdake@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 the MontaVista Software, 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 CONTIBUTORS "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 <corosync/totem/totempg.h>
  36. #include <corosync/hdb.h>
  37. #include "schedwrk.h"
  38. static void (*serialize_lock) (void);
  39. static void (*serialize_unlock) (void);
  40. DECLARE_HDB_DATABASE (schedwrk_instance_database,NULL);
  41. struct schedwrk_instance {
  42. int (*schedwrk_fn) (const void *);
  43. const void *context;
  44. void *callback_handle;
  45. int lock;
  46. };
  47. static int schedwrk_do (enum totem_callback_token_type type, const void *context)
  48. {
  49. hdb_handle_t handle = *((hdb_handle_t *)context);
  50. struct schedwrk_instance *instance;
  51. int res;
  52. res = hdb_handle_get (&schedwrk_instance_database,
  53. handle,
  54. (void *)&instance);
  55. if (res != 0) {
  56. goto error_exit;
  57. }
  58. if (instance->lock)
  59. serialize_lock ();
  60. res = instance->schedwrk_fn (instance->context);
  61. if (instance->lock)
  62. serialize_unlock ();
  63. if (res == 0) {
  64. hdb_handle_destroy (&schedwrk_instance_database, handle);
  65. }
  66. hdb_handle_put (&schedwrk_instance_database, handle);
  67. return (res);
  68. error_exit:
  69. return (-1);
  70. }
  71. void schedwrk_init (
  72. void (*serialize_lock_fn) (void),
  73. void (*serialize_unlock_fn) (void))
  74. {
  75. serialize_lock = serialize_lock_fn;
  76. serialize_unlock = serialize_unlock_fn;
  77. }
  78. static int schedwrk_internal_create (
  79. hdb_handle_t *handle,
  80. int (schedwrk_fn) (const void *),
  81. const void *context,
  82. int lock)
  83. {
  84. struct schedwrk_instance *instance;
  85. int res;
  86. res = hdb_handle_create (&schedwrk_instance_database,
  87. sizeof (struct schedwrk_instance), handle);
  88. if (res != 0) {
  89. goto error_exit;
  90. }
  91. res = hdb_handle_get (&schedwrk_instance_database, *handle,
  92. (void *)&instance);
  93. if (res != 0) {
  94. goto error_destroy;
  95. }
  96. totempg_callback_token_create (
  97. &instance->callback_handle,
  98. TOTEM_CALLBACK_TOKEN_SENT,
  99. 1,
  100. schedwrk_do,
  101. handle);
  102. instance->schedwrk_fn = schedwrk_fn;
  103. instance->context = context;
  104. instance->lock = lock;
  105. hdb_handle_put (&schedwrk_instance_database, *handle);
  106. return (0);
  107. error_destroy:
  108. hdb_handle_destroy (&schedwrk_instance_database, *handle);
  109. error_exit:
  110. return (-1);
  111. }
  112. /*
  113. * handle pointer is internally used by totempg_callback_token_create. To make schedwrk work,
  114. * handle must be pointer to ether heap or .text or static memory (not stack) which is not
  115. * changed by caller.
  116. */
  117. int schedwrk_create (
  118. hdb_handle_t *handle,
  119. int (schedwrk_fn) (const void *),
  120. const void *context)
  121. {
  122. return schedwrk_internal_create (handle, schedwrk_fn, context, 1);
  123. }
  124. int schedwrk_create_nolock (
  125. hdb_handle_t *handle,
  126. int (schedwrk_fn) (const void *),
  127. const void *context)
  128. {
  129. return schedwrk_internal_create (handle, schedwrk_fn, context, 0);
  130. }
  131. void schedwrk_destroy (hdb_handle_t handle)
  132. {
  133. hdb_handle_destroy (&schedwrk_instance_database, handle);
  134. }