res_timing_kqueue.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2010, Digium, Inc.
  5. *
  6. * Tilghman Lesher <tlesher AT digium DOT com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*!
  19. * \file
  20. * \author Tilghman Lesher \verbatim <tlesher AT digium DOT com> \endverbatim
  21. *
  22. * \brief kqueue timing interface
  23. *
  24. * \ingroup resource
  25. */
  26. /*** MODULEINFO
  27. <depend>kqueue</depend>
  28. <conflict>launchd</conflict>
  29. <support_level>extended</support_level>
  30. ***/
  31. #include "asterisk.h"
  32. #include <sys/types.h>
  33. #include <sys/event.h>
  34. #include <sys/time.h>
  35. #include "asterisk/module.h"
  36. #include "asterisk/astobj2.h"
  37. #include "asterisk/timing.h"
  38. #include "asterisk/logger.h"
  39. #include "asterisk/utils.h"
  40. #include "asterisk/time.h"
  41. #include "asterisk/test.h"
  42. #include "asterisk/poll-compat.h" /* for ast_poll() */
  43. static void *timing_funcs_handle;
  44. static int kqueue_timer_open(void);
  45. static void kqueue_timer_close(int handle);
  46. static int kqueue_timer_set_rate(int handle, unsigned int rate);
  47. static int kqueue_timer_ack(int handle, unsigned int quantity);
  48. static int kqueue_timer_enable_continuous(int handle);
  49. static int kqueue_timer_disable_continuous(int handle);
  50. static enum ast_timer_event kqueue_timer_get_event(int handle);
  51. static unsigned int kqueue_timer_get_max_rate(int handle);
  52. static struct ast_timing_interface kqueue_timing = {
  53. .name = "kqueue",
  54. .priority = 150,
  55. .timer_open = kqueue_timer_open,
  56. .timer_close = kqueue_timer_close,
  57. .timer_set_rate = kqueue_timer_set_rate,
  58. .timer_ack = kqueue_timer_ack,
  59. .timer_enable_continuous = kqueue_timer_enable_continuous,
  60. .timer_disable_continuous = kqueue_timer_disable_continuous,
  61. .timer_get_event = kqueue_timer_get_event,
  62. .timer_get_max_rate = kqueue_timer_get_max_rate,
  63. };
  64. static struct ao2_container *kqueue_timers;
  65. struct kqueue_timer {
  66. int handle;
  67. uint64_t nsecs;
  68. uint64_t unacked;
  69. unsigned int is_continuous:1;
  70. };
  71. static int kqueue_timer_hash(const void *obj, const int flags)
  72. {
  73. const struct kqueue_timer *timer = obj;
  74. return timer->handle;
  75. }
  76. static int kqueue_timer_cmp(void *obj, void *args, int flags)
  77. {
  78. struct kqueue_timer *timer1 = obj, *timer2 = args;
  79. return timer1->handle == timer2->handle ? CMP_MATCH | CMP_STOP : 0;
  80. }
  81. static void timer_destroy(void *obj)
  82. {
  83. struct kqueue_timer *timer = obj;
  84. close(timer->handle);
  85. }
  86. #define lookup_timer(a) _lookup_timer(a, __FILE__, __LINE__, __PRETTY_FUNCTION__)
  87. static struct kqueue_timer *_lookup_timer(int handle, const char *file, int line, const char *func)
  88. {
  89. struct kqueue_timer *our_timer, find_helper = {
  90. .handle = handle,
  91. };
  92. if (!(our_timer = ao2_find(kqueue_timers, &find_helper, OBJ_POINTER))) {
  93. ast_log(__LOG_ERROR, file, line, func, "Couldn't find timer with handle %d\n", handle);
  94. /* API says we set errno */
  95. errno = ESRCH;
  96. return NULL;
  97. }
  98. return our_timer;
  99. }
  100. static int kqueue_timer_open(void)
  101. {
  102. struct kqueue_timer *timer;
  103. int handle;
  104. if (!(timer = ao2_alloc(sizeof(*timer), timer_destroy))) {
  105. ast_log(LOG_ERROR, "Could not allocate memory for kqueue_timer structure\n");
  106. return -1;
  107. }
  108. if ((handle = kqueue()) < 0) {
  109. ast_log(LOG_ERROR, "Failed to create kqueue timer: %s\n", strerror(errno));
  110. ao2_ref(timer, -1);
  111. return -1;
  112. }
  113. timer->handle = handle;
  114. ao2_link(kqueue_timers, timer);
  115. /* Get rid of the reference from the allocation */
  116. ao2_ref(timer, -1);
  117. return handle;
  118. }
  119. static void kqueue_timer_close(int handle)
  120. {
  121. struct kqueue_timer *our_timer;
  122. if (!(our_timer = lookup_timer(handle))) {
  123. return;
  124. }
  125. ao2_unlink(kqueue_timers, our_timer);
  126. ao2_ref(our_timer, -1);
  127. }
  128. static void kqueue_set_nsecs(struct kqueue_timer *our_timer, uint64_t nsecs)
  129. {
  130. struct timespec nowait = { 0, 1 };
  131. #ifdef HAVE_KEVENT64
  132. struct kevent64_s kev;
  133. EV_SET64(&kev, our_timer->handle, EVFILT_TIMER, EV_ADD | EV_ENABLE, NOTE_NSECONDS,
  134. nsecs, 0, 0, 0);
  135. kevent64(our_timer->handle, &kev, 1, NULL, 0, 0, &nowait);
  136. #else
  137. struct kevent kev;
  138. EV_SET(&kev, our_timer->handle, EVFILT_TIMER, EV_ADD | EV_ENABLE,
  139. #ifdef NOTE_NSECONDS
  140. nsecs <= 0xFFffFFff ? NOTE_NSECONDS :
  141. #endif
  142. #ifdef NOTE_USECONDS
  143. NOTE_USECONDS
  144. #else /* Milliseconds, if no constants are defined */
  145. 0
  146. #endif
  147. ,
  148. #ifdef NOTE_NSECONDS
  149. nsecs <= 0xFFffFFff ? nsecs :
  150. #endif
  151. #ifdef NOTE_USECONDS
  152. nsecs / 1000
  153. #else /* Milliseconds, if nothing else is defined */
  154. nsecs / 1000000
  155. #endif
  156. , NULL);
  157. kevent(our_timer->handle, &kev, 1, NULL, 0, &nowait);
  158. #endif
  159. }
  160. static int kqueue_timer_set_rate(int handle, unsigned int rate)
  161. {
  162. struct kqueue_timer *our_timer;
  163. if (!(our_timer = lookup_timer(handle))) {
  164. return -1;
  165. }
  166. kqueue_set_nsecs(our_timer, (our_timer->nsecs = rate ? (long) (1000000000 / rate) : 0L));
  167. ao2_ref(our_timer, -1);
  168. return 0;
  169. }
  170. static int kqueue_timer_ack(int handle, unsigned int quantity)
  171. {
  172. struct kqueue_timer *our_timer;
  173. if (!(our_timer = lookup_timer(handle))) {
  174. return -1;
  175. }
  176. if (our_timer->unacked < quantity) {
  177. ast_debug(1, "Acking more events than have expired?!!\n");
  178. our_timer->unacked = 0;
  179. ao2_ref(our_timer, -1);
  180. return -1;
  181. } else {
  182. our_timer->unacked -= quantity;
  183. }
  184. ao2_ref(our_timer, -1);
  185. return 0;
  186. }
  187. static int kqueue_timer_enable_continuous(int handle)
  188. {
  189. struct kqueue_timer *our_timer;
  190. if (!(our_timer = lookup_timer(handle))) {
  191. return -1;
  192. }
  193. kqueue_set_nsecs(our_timer, 1);
  194. our_timer->is_continuous = 1;
  195. our_timer->unacked = 0;
  196. ao2_ref(our_timer, -1);
  197. return 0;
  198. }
  199. static int kqueue_timer_disable_continuous(int handle)
  200. {
  201. struct kqueue_timer *our_timer;
  202. if (!(our_timer = lookup_timer(handle))) {
  203. return -1;
  204. }
  205. kqueue_set_nsecs(our_timer, our_timer->nsecs);
  206. our_timer->is_continuous = 0;
  207. our_timer->unacked = 0;
  208. ao2_ref(our_timer, -1);
  209. return 0;
  210. }
  211. static enum ast_timer_event kqueue_timer_get_event(int handle)
  212. {
  213. enum ast_timer_event res = -1;
  214. struct kqueue_timer *our_timer;
  215. struct timespec sixty_seconds = { 60, 0 };
  216. struct kevent kev;
  217. if (!(our_timer = lookup_timer(handle))) {
  218. return -1;
  219. }
  220. /* If we have non-ACKed events, just return immediately */
  221. if (our_timer->unacked == 0) {
  222. if (kevent(handle, NULL, 0, &kev, 1, &sixty_seconds) > 0) {
  223. our_timer->unacked += kev.data;
  224. }
  225. }
  226. if (our_timer->unacked > 0) {
  227. res = our_timer->is_continuous ? AST_TIMING_EVENT_CONTINUOUS : AST_TIMING_EVENT_EXPIRED;
  228. }
  229. ao2_ref(our_timer, -1);
  230. return res;
  231. }
  232. static unsigned int kqueue_timer_get_max_rate(int handle)
  233. {
  234. /* Actually, the max rate is 2^64-1 seconds, but that's not representable in a 32-bit integer. */
  235. return UINT_MAX;
  236. }
  237. #ifdef TEST_FRAMEWORK
  238. AST_TEST_DEFINE(test_kqueue_timing)
  239. {
  240. int res = AST_TEST_PASS, handle, i;
  241. uint64_t diff;
  242. struct pollfd pfd = { 0, POLLIN, 0 };
  243. struct kqueue_timer *kt;
  244. struct timeval start;
  245. switch (cmd) {
  246. case TEST_INIT:
  247. info->name = "test_kqueue_timing";
  248. info->category = "/res/res_timing_kqueue/";
  249. info->summary = "Test KQueue timing interface";
  250. info->description = "Verify that the KQueue timing interface correctly generates timing events";
  251. return AST_TEST_NOT_RUN;
  252. case TEST_EXECUTE:
  253. break;
  254. }
  255. if (!(handle = kqueue_timer_open())) {
  256. ast_test_status_update(test, "Cannot open timer!\n");
  257. return AST_TEST_FAIL;
  258. }
  259. do {
  260. pfd.fd = handle;
  261. if (kqueue_timer_set_rate(handle, 1000)) {
  262. ast_test_status_update(test, "Cannot set timer rate to 1000/s\n");
  263. res = AST_TEST_FAIL;
  264. break;
  265. }
  266. if (ast_poll(&pfd, 1, 1000) < 1) {
  267. ast_test_status_update(test, "Polling on a kqueue doesn't work\n");
  268. res = AST_TEST_FAIL;
  269. break;
  270. }
  271. if (pfd.revents != POLLIN) {
  272. ast_test_status_update(test, "poll() should have returned POLLIN, but instead returned %hd\n", pfd.revents);
  273. res = AST_TEST_FAIL;
  274. break;
  275. }
  276. if (!(kt = lookup_timer(handle))) {
  277. ast_test_status_update(test, "Could not find timer structure in container?!!\n");
  278. res = AST_TEST_FAIL;
  279. break;
  280. }
  281. if (kqueue_timer_get_event(handle) <= 0) {
  282. ast_test_status_update(test, "No events generated after a poll returned successfully?!!\n");
  283. res = AST_TEST_FAIL;
  284. break;
  285. }
  286. #if 0
  287. if (kt->unacked == 0) {
  288. ast_test_status_update(test, "Unacked events is 0, but there should be at least 1.\n");
  289. res = AST_TEST_FAIL;
  290. break;
  291. }
  292. #endif
  293. kqueue_timer_enable_continuous(handle);
  294. start = ast_tvnow();
  295. for (i = 0; i < 100; i++) {
  296. if (ast_poll(&pfd, 1, 1000) < 1) {
  297. ast_test_status_update(test, "Polling on a kqueue doesn't work\n");
  298. res = AST_TEST_FAIL;
  299. break;
  300. }
  301. if (kqueue_timer_get_event(handle) <= 0) {
  302. ast_test_status_update(test, "No events generated in continuous mode after 1 microsecond?!!\n");
  303. res = AST_TEST_FAIL;
  304. break;
  305. }
  306. }
  307. diff = ast_tvdiff_us(ast_tvnow(), start);
  308. ast_test_status_update(test, "diff is %llu\n", diff);
  309. /*
  310. if (abs(diff - kt->unacked) == 0) {
  311. ast_test_status_update(test, "Unacked events should be around 1000, not %llu\n", kt->unacked);
  312. res = AST_TEST_FAIL;
  313. }
  314. */
  315. } while (0);
  316. kqueue_timer_close(handle);
  317. return res;
  318. }
  319. #endif
  320. /*!
  321. * \brief Load the module
  322. *
  323. * Module loading including tests for configuration or dependencies.
  324. * This function can return AST_MODULE_LOAD_FAILURE, AST_MODULE_LOAD_DECLINE,
  325. * or AST_MODULE_LOAD_SUCCESS. If a dependency or environment variable fails
  326. * tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
  327. * configuration file or other non-critical problem return
  328. * AST_MODULE_LOAD_DECLINE. On success return AST_MODULE_LOAD_SUCCESS.
  329. */
  330. static int load_module(void)
  331. {
  332. if (!(kqueue_timers = ao2_container_alloc(563, kqueue_timer_hash, kqueue_timer_cmp))) {
  333. return AST_MODULE_LOAD_DECLINE;
  334. }
  335. if (!(timing_funcs_handle = ast_register_timing_interface(&kqueue_timing))) {
  336. ao2_ref(kqueue_timers, -1);
  337. return AST_MODULE_LOAD_DECLINE;
  338. }
  339. AST_TEST_REGISTER(test_kqueue_timing);
  340. return AST_MODULE_LOAD_SUCCESS;
  341. }
  342. static int unload_module(void)
  343. {
  344. int res;
  345. AST_TEST_UNREGISTER(test_kqueue_timing);
  346. if (!(res = ast_unregister_timing_interface(timing_funcs_handle))) {
  347. ao2_ref(kqueue_timers, -1);
  348. kqueue_timers = NULL;
  349. }
  350. return res;
  351. }
  352. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "KQueue Timing Interface",
  353. .load = load_module,
  354. .unload = unload_module,
  355. .load_pri = AST_MODPRI_CHANNEL_DEPEND,
  356. );