Changes since version 1.38.0: * test: use last matching qemu version (cjihrig) * win, util: rearrange uv_hrtime (Bartosz Sosnowski) * test: skip signal_multiple_loops test on QEMU (gengjiawen) * build: add android build to CI (gengjiawen) * test: extend fs_event_error_reporting timeout (cjihrig) * build: link libkvm on netbsd only (Alexander Tokmakov) * linux: refactor /proc file reader logic (Ben Noordhuis) * linux: read load average from /proc/loadavg (Ben Noordhuis) * android: remove patch code for below 21 (gengjiawen) * win: fix visual studio 2008 build (Arenoros) * win,tty: fix deadlock caused by inconsistent state (lander0s) * unix: use relaxed loads/stores for feature checks (Ben Noordhuis) * build: don't .gitignore m4/ax_pthread.m4 (Ben Noordhuis) * unix: fix gcc atomics feature check (Ben Noordhuis) * darwin: work around clock jumping back in time (Ben Noordhuis) * udp: fix write_queue cleanup on sendmmsg error (Santiago Gimeno) * src: build fix for Android (David Carlier) -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQIzBAABCgAdFiEElK42Z1xGTWS6+mjddDQ5C9vpucUFAl7/Yg8ACgkQdDQ5C9vp ucXgdg//euAx0jByjpOdc4RjLAXpq+iEDuLQXIzT3GmvK3g5+ymrB1HVkw455l7o gHY9f/GM+A8wZBcLoyfMywLiSD78/HOrHwQ1MGiieMm1hPFr8OXQ4Z25Bdx/GsE4 2nCprDrfMrVUQs8eFVx30fjFvOymzhpHak173N6uBOVBLQRivQHSuOG4Dk7RJSAA iCIKQ6JulQ/yX0OFvvnYjwbnt5bCDlr1gTFX1HQZFi4dELIbdfaqn1AkY6COa4mc tKZRMC1rV81HejNAYFG2Js1QQaUKtMemyHUple6qRo/TYhsZXMaWShjOOHtBqT5X hQ8yqGLcaQhWXI7FlBK9aOFBc2/c7Jrxn78MFnd0C8kUHMT9oMhK3KOUHjJ4K5Zt sN06cS9Zj9Gpvcnzffohx6/0ePyIVHsEGBt8gRI3YCH4GR0A12WYc4Kr8YuJu11J 7WVEjIpxZBRajOq8xfA4n6brM0s8gwJvCm2/ypYZKbQ0kz0ZZD5nOK+Ax+ukdg51 cBtTyx0tme0bQPZkzJP5sMP6DqGKgHbMzeUueqJ5xXOuXWjnOZRWfxmT22RSc6vI 9D+9p12GD81KlYoprbKk5Fg/adIW/kKrT1cFMeKgcKhyuq8B5maDoaN/FP0oIZc2 p1Pv9KEJCo7gI35XwkEvEIDLJ1Ax8B8RQE+8sophzsxVxo5E+GE= =P+eq -----END PGP SIGNATURE----- Merge tag 'v1.38.1' into merge_1.38.1 PR-URL: https://github.com/libuv/libuv/pull/2927 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
119 lines
3.2 KiB
C
119 lines
3.2 KiB
C
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal in the Software without restriction, including without limitation the
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "uv.h"
|
|
#include "task.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define CHECK_HANDLE(handle) \
|
|
ASSERT((uv_udp_t*)(handle) == &server || (uv_udp_t*)(handle) == &client)
|
|
|
|
static uv_udp_t server;
|
|
static uv_udp_t client;
|
|
|
|
static int sv_send_cb_called;
|
|
static int close_cb_called;
|
|
|
|
|
|
static void close_cb(uv_handle_t* handle) {
|
|
CHECK_HANDLE(handle);
|
|
close_cb_called++;
|
|
}
|
|
|
|
|
|
static void sv_send_cb(uv_udp_send_t* req, int status) {
|
|
ASSERT(req != NULL);
|
|
ASSERT(status == 0);
|
|
CHECK_HANDLE(req->handle);
|
|
|
|
sv_send_cb_called++;
|
|
|
|
uv_close((uv_handle_t*) req->handle, close_cb);
|
|
}
|
|
|
|
|
|
TEST_IMPL(udp_multicast_interface6) {
|
|
/* TODO(gengjiawen): Fix test on QEMU. */
|
|
#if defined(__QEMU__)
|
|
RETURN_SKIP("Test does not currently work in QEMU");
|
|
#endif
|
|
|
|
int r;
|
|
uv_udp_send_t req;
|
|
uv_buf_t buf;
|
|
struct sockaddr_in6 addr;
|
|
struct sockaddr_in6 baddr;
|
|
|
|
if (!can_ipv6())
|
|
RETURN_SKIP("IPv6 not supported");
|
|
|
|
ASSERT(0 == uv_ip6_addr("::1", TEST_PORT, &addr));
|
|
|
|
r = uv_udp_init(uv_default_loop(), &server);
|
|
ASSERT(r == 0);
|
|
|
|
ASSERT(0 == uv_ip6_addr("::", 0, &baddr));
|
|
r = uv_udp_bind(&server, (const struct sockaddr*)&baddr, 0);
|
|
ASSERT(r == 0);
|
|
|
|
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
|
r = uv_udp_set_multicast_interface(&server, "::1%lo0");
|
|
#elif defined(__MVS__)
|
|
r = uv_udp_set_multicast_interface(&server, "::1%LOOPBACK6");
|
|
#else
|
|
r = uv_udp_set_multicast_interface(&server, NULL);
|
|
#endif
|
|
|
|
#if defined(__MVS__)
|
|
if (r == UV_EADDRNOTAVAIL) {
|
|
MAKE_VALGRIND_HAPPY();
|
|
RETURN_SKIP("No ipv6 multicast route");
|
|
}
|
|
#endif
|
|
|
|
ASSERT(r == 0);
|
|
|
|
/* server sends "PING" */
|
|
buf = uv_buf_init("PING", 4);
|
|
r = uv_udp_send(&req,
|
|
&server,
|
|
&buf,
|
|
1,
|
|
(const struct sockaddr*)&addr,
|
|
sv_send_cb);
|
|
ASSERT(r == 0);
|
|
|
|
ASSERT(close_cb_called == 0);
|
|
ASSERT(sv_send_cb_called == 0);
|
|
|
|
/* run the loop till all events are processed */
|
|
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
|
|
|
ASSERT(sv_send_cb_called == 1);
|
|
ASSERT(close_cb_called == 1);
|
|
|
|
MAKE_VALGRIND_HAPPY();
|
|
return 0;
|
|
}
|