Changes since version 1.46.0: * test: fix license blurb (Ben Noordhuis) * linux: fix harmless warn_unused_result warning (Shuduo Sang) * darwin: fix build warnings (小明) * linux: don't use io_uring on pre-5.10.186 kernels (Ben Noordhuis) * fs: fix WTF-8 decoding issue (Jameson Nash) * test: enable disabled tcp_connect6_error_fault (Ben Noordhuis) * test: enable disabled fs_link (Ben Noordhuis) * test: enable disabled spawn_same_stdout_stderr (Ben Noordhuis) * linux: handle UNAME26 personality (Ben Noordhuis) * build: move cmake_minimum_required version to 3.9 (Keith Winstein) * unix: set ipv6 scope id for link-local addresses (Ben Noordhuis) * unix: match kqueue and epoll code (Trevor Norris) * win,spawn: allow `%PATH%` to be unset (Kyle Edwards) * doc: switch to Furo, a more modern Sphinx theme (Saúl Ibarra Corretgé) * darwin: make TCP_KEEPINTVL and TCP_KEEPCNT available (小明) * win,fs: avoid winapi macro redefinition (Brad King) * linux: add missing riscv syscall numbers (michalbiesek) * doc: fix broken "Shared library" Wikipedia link (Alois Klink) * unix: get mainline kernel version in Ubuntu (Santiago Gimeno) * unix: get mainline kernel version in Debian (Ben Noordhuis) * build: fix qemu install in CI-unix workflow (Santiago Gimeno) * unix: disable io_uring close on selected kernels (Santiago Gimeno) * test: skip tests when ipv6 is not available (Santiago Gimeno) * ibmi: implement ifaddrs, getifaddrs, freeifaddrs (Abdirahim Musse) * unix: reset signal counters after fork (SmorkalovG) * win,process: avoid assert after spawning Store app (Jameson Nash) * unix: remove pread/preadv conditionals (Ben Noordhuis) * unix: remove pwrite/pwritev conditionals (Ben Noordhuis) * darwin: remove workaround for data corruption bug (Ben Noordhuis) * src: default to stream=stderr in handle printer (Ben Noordhuis) * test: switch to new-style ASSERT_EQ macros (Pleuvens) * zos: correctly get cpu model in uv_cpu_info() (jolai) * test: fix get_passwd2 on IBM i (Abdirahim Musse) * unix: don't malloc on sync uv_fs_read (Ben Noordhuis) * freebsd: get fs event path with fcntl(F_KINFO) (David Carlier) * test: switch from ASSERT_* to ASSERT_PTR_* (Pleuvens) * darwin: workaround apple pthread_cond_wait bug (Julien Roncaglia) * doc: uv_close should be called after exit callback (Pleuvens) * test: 192.0.2.0/24 is the actual -TEST-NET-1 (prubel) * unix: add back preadv/pwritev fallback (Ben Noordhuis) * unix: rename variable for consistency (Ben Noordhuis) * unix: merge read/write code into single functions (Ben Noordhuis) * doc: filename arg to uv_fs_event_cb can be NULL (Ben Noordhuis) * build,win: we need to link against shell32.lib (Per Allansson) * unix: no preadv/pwritev workaround if not needed (Jeffrey H. Johnson) * build: add CI for Windows ARM64 (build only) (Per Allansson) * linux: disable io_uring on 32 bits arm systems (Ben Noordhuis) * build: run sanitizers on macos ci (Ben Noordhuis) * misc: export WTF8 conversion utilities (Jameson Nash) * build: fix libuv.a file name for cmake (Jameson Nash) * build: add windows ubsan and clang ci (Matheus Izvekov) * win: improve accuracy of ProductName between arch (Christian Heimlich) -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEz7ucqaW+r9cOKzxaeaZ8VaNnnIsFAmVJLa4ACgkQeaZ8VaNn nIvdMw//XQzU1OasKcghWZZAFmrgy8D+40Q5drSgCFryAA+WA9wXruKOeqQ3vw7+ 9Xwai97fMbxGSFhR2IwjbwD8o8DZotDTMBgSUvuyAlzdw0xB2D+eAnvxaMmYg2km R5eNb2KgmzhC7HFuPbpjWbL1mEnBU8rTSzV6yeMs2LXfLquJoopmgAjB2MXS6/Fr +WkwJx7/B/3wEhhbX5sopd6PT8UcWdbSvB/S+PU12kI0KgJeJlq0jXd5LyDaQYI6 j4XYcpgEp8B/gyiXSgso+eg1CiZQUYVMXZ5+6YA5le/s5ieJwJ2cEvo/HJa5guZ/ PBb+ulucUaupBzQFaPYwnrEzE3YHNVppBcfryxqn48Ih0Z9pNs/6EdxqggYvAyWk VA9Yi0qDFSFgD0hZSkvi/m/UEH17FLTac1DSob4EKfwAJ04spmEtiBWaL+7wQ/ca Kc819NXBaFUb+BEkN711B1CvaT6aef9wZcis42MPHjHJ19BNgb4uAa3GbmrvB2dt EodLGlbOAkKLFC29qAGeKZKhnSWfZS/HvuyqMOgONuJTj0Jm/RdwqIsvILejtj32 7m9saTkRWav4L1yvksUYT24WIk1e324gBgm9411IggdDILgbLYrwWNZb56FgMDQb cqmg0Ap6zMZ9UOf4hfqTiKZPjqqfxgSp20zCjVTy+vsCSXJnFaQ= =7yzD -----END PGP SIGNATURE----- Merge tag 'v1.47.0' into merge_1.47.0
187 lines
6.6 KiB
C
187 lines
6.6 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 <string.h>
|
|
|
|
#ifdef __linux__
|
|
# include <sys/socket.h>
|
|
# include <net/if.h>
|
|
#endif
|
|
|
|
|
|
TEST_IMPL(ip6_addr_link_local) {
|
|
#if defined(__CYGWIN__) || defined(__MSYS__)
|
|
/* FIXME: Does Cygwin support this? */
|
|
RETURN_SKIP("FIXME: This test needs more investigation on Cygwin");
|
|
#endif
|
|
char string_address[INET6_ADDRSTRLEN];
|
|
uv_interface_address_t* addresses;
|
|
uv_interface_address_t* address;
|
|
struct sockaddr_in6 addr;
|
|
unsigned int iface_index;
|
|
const char* device_name;
|
|
/* 40 bytes address, 16 bytes device name, plus reserve. */
|
|
char scoped_addr[128];
|
|
size_t scoped_addr_len;
|
|
char interface_id[UV_IF_NAMESIZE];
|
|
size_t interface_id_len;
|
|
int count;
|
|
int ix;
|
|
int r;
|
|
|
|
ASSERT_OK(uv_interface_addresses(&addresses, &count));
|
|
|
|
for (ix = 0; ix < count; ix++) {
|
|
address = addresses + ix;
|
|
|
|
if (address->address.address6.sin6_family != AF_INET6)
|
|
continue;
|
|
|
|
ASSERT_OK(uv_inet_ntop(AF_INET6,
|
|
&address->address.address6.sin6_addr,
|
|
string_address,
|
|
sizeof(string_address)));
|
|
|
|
/* Skip addresses that are not link-local. */
|
|
if (strncmp(string_address, "fe80::", 6) != 0)
|
|
continue;
|
|
|
|
iface_index = address->address.address6.sin6_scope_id;
|
|
device_name = address->name;
|
|
|
|
scoped_addr_len = sizeof(scoped_addr);
|
|
ASSERT_OK(uv_if_indextoname(iface_index,
|
|
scoped_addr,
|
|
&scoped_addr_len));
|
|
#ifndef _WIN32
|
|
/* This assert fails on Windows, as Windows semantics are different. */
|
|
ASSERT_OK(strcmp(device_name, scoped_addr));
|
|
#endif
|
|
|
|
interface_id_len = sizeof(interface_id);
|
|
r = uv_if_indextoiid(iface_index, interface_id, &interface_id_len);
|
|
ASSERT_OK(r);
|
|
#ifdef _WIN32
|
|
/* On Windows, the interface identifier is the numeric string of the index. */
|
|
ASSERT_EQ(strtoul(interface_id, NULL, 10), iface_index);
|
|
#else
|
|
/* On Unix/Linux, the interface identifier is the interface device name. */
|
|
ASSERT_OK(strcmp(device_name, interface_id));
|
|
#endif
|
|
|
|
snprintf(scoped_addr,
|
|
sizeof(scoped_addr),
|
|
"%s%%%s",
|
|
string_address,
|
|
interface_id);
|
|
|
|
fprintf(stderr, "Testing link-local address %s "
|
|
"(iface_index: 0x%02x, device_name: %s)\n",
|
|
scoped_addr,
|
|
iface_index,
|
|
device_name);
|
|
fflush(stderr);
|
|
|
|
ASSERT_OK(uv_ip6_addr(scoped_addr, TEST_PORT, &addr));
|
|
fprintf(stderr, "Got scope_id 0x%2x\n", (unsigned)addr.sin6_scope_id);
|
|
fflush(stderr);
|
|
ASSERT_EQ(iface_index, addr.sin6_scope_id);
|
|
}
|
|
|
|
uv_free_interface_addresses(addresses, count);
|
|
|
|
scoped_addr_len = sizeof(scoped_addr);
|
|
ASSERT_NE(0, uv_if_indextoname((unsigned int)-1,
|
|
scoped_addr,
|
|
&scoped_addr_len));
|
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
|
return 0;
|
|
}
|
|
|
|
|
|
#define GOOD_ADDR_LIST(X) \
|
|
X("::") \
|
|
X("::1") \
|
|
X("fe80::1") \
|
|
X("fe80::") \
|
|
X("fe80::2acf:daff:fedd:342a") \
|
|
X("fe80:0:0:0:2acf:daff:fedd:342a") \
|
|
X("fe80:0:0:0:2acf:daff:1.2.3.4") \
|
|
X("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") \
|
|
|
|
#define BAD_ADDR_LIST(X) \
|
|
X(":::1") \
|
|
X("abcde::1") \
|
|
X("fe80:0:0:0:2acf:daff:fedd:342a:5678") \
|
|
X("fe80:0:0:0:2acf:daff:abcd:1.2.3.4") \
|
|
X("fe80:0:0:2acf:daff:1.2.3.4.5") \
|
|
X("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255.255") \
|
|
|
|
#define TEST_GOOD(ADDR) \
|
|
ASSERT_OK(uv_inet_pton(AF_INET6, ADDR, &addr)); \
|
|
ASSERT_OK(uv_inet_pton(AF_INET6, ADDR "%en1", &addr)); \
|
|
ASSERT_OK(uv_inet_pton(AF_INET6, ADDR "%%%%", &addr)); \
|
|
ASSERT_OK(uv_inet_pton(AF_INET6, ADDR "%en1:1.2.3.4", &addr)); \
|
|
|
|
#define TEST_BAD(ADDR) \
|
|
ASSERT_NE(0, uv_inet_pton(AF_INET6, ADDR, &addr)); \
|
|
ASSERT_NE(0, uv_inet_pton(AF_INET6, ADDR "%en1", &addr)); \
|
|
ASSERT_NE(0, uv_inet_pton(AF_INET6, ADDR "%%%%", &addr)); \
|
|
ASSERT_NE(0, uv_inet_pton(AF_INET6, ADDR "%en1:1.2.3.4", &addr)); \
|
|
|
|
TEST_IMPL(ip6_pton) {
|
|
struct in6_addr addr;
|
|
|
|
GOOD_ADDR_LIST(TEST_GOOD)
|
|
BAD_ADDR_LIST(TEST_BAD)
|
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
|
return 0;
|
|
}
|
|
|
|
#undef GOOD_ADDR_LIST
|
|
#undef BAD_ADDR_LIST
|
|
|
|
#ifndef _WIN32
|
|
TEST_IMPL(ip6_invalid_interface) {
|
|
struct sockaddr_in6 s;
|
|
int r;
|
|
|
|
r = uv_ip6_addr("::0%bad", 0, &s);
|
|
ASSERT(r < 0);
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
TEST_IMPL(ip6_sin6_len) {
|
|
struct sockaddr_in6 s;
|
|
ASSERT_OK(uv_ip6_addr("::", 0, &s));
|
|
#ifdef SIN6_LEN
|
|
ASSERT_EQ(s.sin6_len, sizeof(s));
|
|
#endif
|
|
return 0;
|
|
}
|