10e552da7Schristos /* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
20e552da7Schristos *
30e552da7Schristos * Permission is hereby granted, free of charge, to any person obtaining a copy
40e552da7Schristos * of this software and associated documentation files (the "Software"), to
50e552da7Schristos * deal in the Software without restriction, including without limitation the
60e552da7Schristos * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
70e552da7Schristos * sell copies of the Software, and to permit persons to whom the Software is
80e552da7Schristos * furnished to do so, subject to the following conditions:
90e552da7Schristos *
100e552da7Schristos * The above copyright notice and this permission notice shall be included in
110e552da7Schristos * all copies or substantial portions of the Software.
120e552da7Schristos *
130e552da7Schristos * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
140e552da7Schristos * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
150e552da7Schristos * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
160e552da7Schristos * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
170e552da7Schristos * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
180e552da7Schristos * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
190e552da7Schristos * IN THE SOFTWARE.
200e552da7Schristos */
210e552da7Schristos
220e552da7Schristos #include "uv.h"
230e552da7Schristos #include "task.h"
240e552da7Schristos
250e552da7Schristos #include <stdio.h>
260e552da7Schristos #include <stdlib.h>
270e552da7Schristos #include <string.h>
280e552da7Schristos
290e552da7Schristos #define CHECK_HANDLE(handle) \
300e552da7Schristos ASSERT((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client)
310e552da7Schristos
320e552da7Schristos static uv_udp_t server;
330e552da7Schristos static uv_udp_t client;
340e552da7Schristos
350e552da7Schristos static int sv_send_cb_called;
360e552da7Schristos static int close_cb_called;
370e552da7Schristos
380e552da7Schristos
close_cb(uv_handle_t * handle)390e552da7Schristos static void close_cb(uv_handle_t* handle) {
400e552da7Schristos CHECK_HANDLE(handle);
410e552da7Schristos close_cb_called++;
420e552da7Schristos }
430e552da7Schristos
440e552da7Schristos
sv_send_cb(uv_udp_send_t * req,int status)450e552da7Schristos static void sv_send_cb(uv_udp_send_t* req, int status) {
46*5f2f4271Schristos ASSERT_NOT_NULL(req);
470e552da7Schristos ASSERT(status == 0);
480e552da7Schristos CHECK_HANDLE(req->handle);
490e552da7Schristos
500e552da7Schristos sv_send_cb_called++;
510e552da7Schristos
520e552da7Schristos uv_close((uv_handle_t*) req->handle, close_cb);
530e552da7Schristos }
540e552da7Schristos
550e552da7Schristos
TEST_IMPL(udp_multicast_interface6)560e552da7Schristos TEST_IMPL(udp_multicast_interface6) {
570e552da7Schristos /* TODO(gengjiawen): Fix test on QEMU. */
580e552da7Schristos #if defined(__QEMU__)
590e552da7Schristos RETURN_SKIP("Test does not currently work in QEMU");
600e552da7Schristos #endif
610e552da7Schristos
620e552da7Schristos int r;
630e552da7Schristos uv_udp_send_t req;
640e552da7Schristos uv_buf_t buf;
650e552da7Schristos struct sockaddr_in6 addr;
660e552da7Schristos struct sockaddr_in6 baddr;
670e552da7Schristos
680e552da7Schristos if (!can_ipv6())
690e552da7Schristos RETURN_SKIP("IPv6 not supported");
700e552da7Schristos
710e552da7Schristos ASSERT(0 == uv_ip6_addr("::1", TEST_PORT, &addr));
720e552da7Schristos
730e552da7Schristos r = uv_udp_init(uv_default_loop(), &server);
740e552da7Schristos ASSERT(r == 0);
750e552da7Schristos
760e552da7Schristos ASSERT(0 == uv_ip6_addr("::", 0, &baddr));
770e552da7Schristos r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0);
780e552da7Schristos ASSERT(r == 0);
790e552da7Schristos
800e552da7Schristos #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
810e552da7Schristos r = uv_udp_set_multicast_interface(&server, "::1%lo0");
820e552da7Schristos #else
830e552da7Schristos r = uv_udp_set_multicast_interface(&server, NULL);
840e552da7Schristos #endif
850e552da7Schristos ASSERT(r == 0);
860e552da7Schristos
870e552da7Schristos /* server sends "PING" */
880e552da7Schristos buf = uv_buf_init("PING", 4);
890e552da7Schristos r = uv_udp_send(&req,
900e552da7Schristos &server,
910e552da7Schristos &buf,
920e552da7Schristos 1,
930e552da7Schristos (const struct sockaddr*)&addr,
940e552da7Schristos sv_send_cb);
950e552da7Schristos ASSERT(r == 0);
960e552da7Schristos
970e552da7Schristos ASSERT(close_cb_called == 0);
980e552da7Schristos ASSERT(sv_send_cb_called == 0);
990e552da7Schristos
1000e552da7Schristos /* run the loop till all events are processed */
1010e552da7Schristos uv_run(uv_default_loop(), UV_RUN_DEFAULT);
1020e552da7Schristos
1030e552da7Schristos ASSERT(sv_send_cb_called == 1);
1040e552da7Schristos ASSERT(close_cb_called == 1);
1050e552da7Schristos
1060e552da7Schristos MAKE_VALGRIND_HAPPY();
1070e552da7Schristos return 0;
1080e552da7Schristos }
109