test-watcher-cross-stop.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to
  5. * deal in the Software without restriction, including without limitation the
  6. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  7. * sell copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  18. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  19. * IN THE SOFTWARE.
  20. */
  21. #include "uv.h"
  22. #include "task.h"
  23. #include <string.h>
  24. #include <errno.h>
  25. /* NOTE: Number should be big enough to trigger this problem */
  26. #if defined(__CYGWIN__) || defined(__MSYS__) || defined(__PASE__)
  27. /* Cygwin crashes or hangs in socket() with too many AF_INET sockets. */
  28. /* IBMi PASE timeout with too many AF_INET sockets. */
  29. static uv_udp_t sockets[1250];
  30. #else
  31. static uv_udp_t sockets[2500];
  32. #endif
  33. static uv_udp_send_t reqs[ARRAY_SIZE(sockets)];
  34. static char slab[1];
  35. static unsigned int recv_cb_called;
  36. static unsigned int send_cb_called;
  37. static unsigned int close_cb_called;
  38. static void alloc_cb(uv_handle_t* handle, size_t size, uv_buf_t* buf) {
  39. buf->base = slab;
  40. buf->len = sizeof(slab);
  41. }
  42. static void recv_cb(uv_udp_t* handle,
  43. ssize_t nread,
  44. const uv_buf_t* buf,
  45. const struct sockaddr* addr,
  46. unsigned flags) {
  47. recv_cb_called++;
  48. }
  49. static void send_cb(uv_udp_send_t* req, int status) {
  50. send_cb_called++;
  51. }
  52. static void close_cb(uv_handle_t* handle) {
  53. close_cb_called++;
  54. }
  55. TEST_IMPL(watcher_cross_stop) {
  56. #if defined(__MVS__)
  57. RETURN_SKIP("zOS does not allow address or port reuse when using UDP sockets");
  58. #endif
  59. uv_loop_t* loop = uv_default_loop();
  60. unsigned int i;
  61. struct sockaddr_in addr;
  62. uv_buf_t buf;
  63. char big_string[1024];
  64. TEST_FILE_LIMIT(ARRAY_SIZE(sockets) + 32);
  65. ASSERT(0 == uv_ip4_addr("127.0.0.1", TEST_PORT, &addr));
  66. memset(big_string, 'A', sizeof(big_string));
  67. buf = uv_buf_init(big_string, sizeof(big_string));
  68. for (i = 0; i < ARRAY_SIZE(sockets); i++) {
  69. ASSERT(0 == uv_udp_init(loop, &sockets[i]));
  70. ASSERT(0 == uv_udp_bind(&sockets[i],
  71. (const struct sockaddr*) &addr,
  72. UV_UDP_REUSEADDR));
  73. ASSERT(0 == uv_udp_recv_start(&sockets[i], alloc_cb, recv_cb));
  74. ASSERT(0 == uv_udp_send(&reqs[i],
  75. &sockets[i],
  76. &buf,
  77. 1,
  78. (const struct sockaddr*) &addr,
  79. send_cb));
  80. }
  81. while (recv_cb_called == 0)
  82. uv_run(loop, UV_RUN_ONCE);
  83. for (i = 0; i < ARRAY_SIZE(sockets); i++)
  84. uv_close((uv_handle_t*) &sockets[i], close_cb);
  85. ASSERT(recv_cb_called > 0);
  86. uv_run(loop, UV_RUN_DEFAULT);
  87. ASSERT(ARRAY_SIZE(sockets) == send_cb_called);
  88. ASSERT(ARRAY_SIZE(sockets) == close_cb_called);
  89. MAKE_VALGRIND_HAPPY();
  90. return 0;
  91. }