2021-01-02 13:10:00 -05:00
|
|
|
/* 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>
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
# include <unistd.h> /* close */
|
|
|
|
#else
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static uv_pipe_t pipe_client;
|
|
|
|
static uv_pipe_t pipe_server;
|
|
|
|
static uv_connect_t connect_req;
|
|
|
|
|
|
|
|
static int pipe_close_cb_called = 0;
|
|
|
|
static int pipe_client_connect_cb_called = 0;
|
|
|
|
|
|
|
|
|
|
|
|
static void pipe_close_cb(uv_handle_t* handle) {
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_NE(handle == (uv_handle_t*) &pipe_client ||
|
|
|
|
handle == (uv_handle_t*) &pipe_server, 0);
|
2021-01-02 13:10:00 -05:00
|
|
|
pipe_close_cb_called++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void pipe_client_connect_cb(uv_connect_t* req, int status) {
|
|
|
|
char buf[1024];
|
|
|
|
size_t len;
|
|
|
|
int r;
|
|
|
|
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_PTR_EQ(req, &connect_req);
|
|
|
|
ASSERT_OK(status);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getpeername(&pipe_client, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
2023-07-03 20:24:48 -04:00
|
|
|
if (*buf == '\0') { /* Linux abstract socket. */
|
|
|
|
const char expected[] = "\0" TEST_PIPENAME;
|
|
|
|
ASSERT_GE(len, sizeof(expected));
|
|
|
|
ASSERT_MEM_EQ(buf, expected, sizeof(expected));
|
|
|
|
} else {
|
|
|
|
ASSERT_NE(0, buf[len - 1]);
|
|
|
|
ASSERT_MEM_EQ(buf, TEST_PIPENAME, len);
|
|
|
|
}
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getsockname(&pipe_client, buf, &len);
|
|
|
|
ASSERT(r == 0 && len == 0);
|
|
|
|
|
|
|
|
pipe_client_connect_cb_called++;
|
|
|
|
|
|
|
|
uv_close((uv_handle_t*) &pipe_client, pipe_close_cb);
|
|
|
|
uv_close((uv_handle_t*) &pipe_server, pipe_close_cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void pipe_server_connection_cb(uv_stream_t* handle, int status) {
|
|
|
|
/* This function *may* be called, depending on whether accept or the
|
|
|
|
* connection callback is called first.
|
|
|
|
*/
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(status);
|
2021-01-02 13:10:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(pipe_getsockname) {
|
|
|
|
#if defined(NO_SELF_CONNECT)
|
|
|
|
RETURN_SKIP(NO_SELF_CONNECT);
|
|
|
|
#endif
|
|
|
|
uv_loop_t* loop;
|
|
|
|
char buf[1024];
|
|
|
|
size_t len;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
loop = uv_default_loop();
|
2021-07-27 18:08:18 -04:00
|
|
|
ASSERT_NOT_NULL(loop);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_pipe_init(loop, &pipe_server, 0);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getsockname(&pipe_server, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(r, UV_EBADF);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getpeername(&pipe_server, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(r, UV_EBADF);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_pipe_bind(&pipe_server, TEST_PIPENAME);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getsockname(&pipe_server, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_NE(0, buf[len - 1]);
|
|
|
|
ASSERT_EQ(buf[len], '\0');
|
|
|
|
ASSERT_OK(memcmp(buf, TEST_PIPENAME, len));
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getpeername(&pipe_server, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(r, UV_ENOTCONN);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_listen((uv_stream_t*) &pipe_server, 0, pipe_server_connection_cb);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_pipe_init(loop, &pipe_client, 0);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getsockname(&pipe_client, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(r, UV_EBADF);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getpeername(&pipe_client, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(r, UV_EBADF);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
uv_pipe_connect(&connect_req, &pipe_client, TEST_PIPENAME, pipe_client_connect_cb);
|
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getsockname(&pipe_client, buf, &len);
|
|
|
|
ASSERT(r == 0 && len == 0);
|
|
|
|
|
|
|
|
len = sizeof buf;
|
|
|
|
r = uv_pipe_getpeername(&pipe_client, buf, &len);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_NE(0, buf[len - 1]);
|
|
|
|
ASSERT_OK(memcmp(buf, TEST_PIPENAME, len));
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_run(loop, UV_RUN_DEFAULT);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_EQ(1, pipe_client_connect_cb_called);
|
|
|
|
ASSERT_EQ(2, pipe_close_cb_called);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
2023-05-21 17:36:51 -04:00
|
|
|
MAKE_VALGRIND_HAPPY(loop);
|
2021-01-02 13:10:00 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TEST_IMPL(pipe_getsockname_abstract) {
|
2023-07-03 20:24:48 -04:00
|
|
|
/* TODO(bnoordhuis) Use unique name, susceptible to concurrent test runs. */
|
|
|
|
static const char name[] = "\0" TEST_PIPENAME;
|
2021-01-02 13:10:00 -05:00
|
|
|
#if defined(__linux__)
|
2023-07-03 20:24:48 -04:00
|
|
|
char buf[256];
|
|
|
|
size_t buflen;
|
|
|
|
|
|
|
|
buflen = sizeof(buf);
|
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
ASSERT_OK(uv_pipe_init(uv_default_loop(), &pipe_server, 0));
|
|
|
|
ASSERT_OK(uv_pipe_bind2(&pipe_server, name, sizeof(name), 0));
|
|
|
|
ASSERT_OK(uv_pipe_getsockname(&pipe_server, buf, &buflen));
|
|
|
|
ASSERT_MEM_EQ(name, buf, sizeof(name));
|
|
|
|
ASSERT_OK(uv_listen((uv_stream_t*) &pipe_server,
|
|
|
|
0,
|
|
|
|
pipe_server_connection_cb));
|
|
|
|
ASSERT_OK(uv_pipe_init(uv_default_loop(), &pipe_client, 0));
|
|
|
|
ASSERT_OK(uv_pipe_connect2(&connect_req,
|
|
|
|
&pipe_client,
|
|
|
|
name,
|
|
|
|
sizeof(name),
|
|
|
|
0,
|
|
|
|
pipe_client_connect_cb));
|
|
|
|
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
|
|
|
ASSERT_EQ(1, pipe_client_connect_cb_called);
|
|
|
|
ASSERT_EQ(2, pipe_close_cb_called);
|
2023-05-21 17:36:51 -04:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2021-01-02 13:10:00 -05:00
|
|
|
return 0;
|
|
|
|
#else
|
2023-07-03 20:24:48 -04:00
|
|
|
/* On other platforms it should simply fail with UV_EINVAL. */
|
|
|
|
ASSERT_OK(uv_pipe_init(uv_default_loop(), &pipe_server, 0));
|
|
|
|
ASSERT_EQ(UV_EINVAL, uv_pipe_bind2(&pipe_server, name, sizeof(name), 0));
|
|
|
|
ASSERT_OK(uv_pipe_init(uv_default_loop(), &pipe_client, 0));
|
|
|
|
uv_close((uv_handle_t*) &pipe_server, pipe_close_cb);
|
|
|
|
ASSERT_EQ(UV_EINVAL, uv_pipe_connect2(&connect_req,
|
|
|
|
&pipe_client,
|
|
|
|
name,
|
|
|
|
sizeof(name),
|
|
|
|
0,
|
|
|
|
(uv_connect_cb) abort));
|
|
|
|
uv_close((uv_handle_t*) &pipe_client, pipe_close_cb);
|
|
|
|
ASSERT_OK(uv_run(uv_default_loop(), UV_RUN_DEFAULT));
|
|
|
|
ASSERT_EQ(2, pipe_close_cb_called);
|
2023-05-21 17:36:51 -04:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2021-01-02 13:10:00 -05:00
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_IMPL(pipe_getsockname_blocking) {
|
|
|
|
#ifdef _WIN32
|
|
|
|
HANDLE readh, writeh;
|
|
|
|
int readfd;
|
|
|
|
char buf1[1024], buf2[1024];
|
|
|
|
size_t len1, len2;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = CreatePipe(&readh, &writeh, NULL, 65536);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_pipe_init(uv_default_loop(), &pipe_client, 0);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
readfd = _open_osfhandle((intptr_t)readh, _O_RDONLY);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_NE(r, -1);
|
2021-01-02 13:10:00 -05:00
|
|
|
r = uv_pipe_open(&pipe_client, readfd);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-07-27 18:08:18 -04:00
|
|
|
r = uv_read_start((uv_stream_t*) &pipe_client,
|
|
|
|
(uv_alloc_cb) abort,
|
|
|
|
(uv_read_cb) abort);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
Sleep(100);
|
|
|
|
r = uv_read_stop((uv_stream_t*)&pipe_client);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
len1 = sizeof buf1;
|
|
|
|
r = uv_pipe_getsockname(&pipe_client, buf1, &len1);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_OK(len1); /* It's an annonymous pipe. */
|
2021-01-02 13:10:00 -05:00
|
|
|
|
2021-07-27 18:08:18 -04:00
|
|
|
r = uv_read_start((uv_stream_t*)&pipe_client,
|
|
|
|
(uv_alloc_cb) abort,
|
|
|
|
(uv_read_cb) abort);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
Sleep(100);
|
|
|
|
|
|
|
|
len2 = sizeof buf2;
|
|
|
|
r = uv_pipe_getsockname(&pipe_client, buf2, &len2);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_OK(len2); /* It's an annonymous pipe. */
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
r = uv_read_stop((uv_stream_t*)&pipe_client);
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_OK(r);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(len1, len2);
|
|
|
|
ASSERT_OK(memcmp(buf1, buf2, len1));
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
pipe_close_cb_called = 0;
|
|
|
|
uv_close((uv_handle_t*)&pipe_client, pipe_close_cb);
|
|
|
|
|
|
|
|
uv_run(uv_default_loop(), UV_RUN_DEFAULT);
|
|
|
|
|
2023-11-07 12:30:39 -05:00
|
|
|
ASSERT_EQ(1, pipe_close_cb_called);
|
2021-01-02 13:10:00 -05:00
|
|
|
|
|
|
|
CloseHandle(writeh);
|
|
|
|
#endif
|
|
|
|
|
2023-05-21 17:36:51 -04:00
|
|
|
MAKE_VALGRIND_HAPPY(uv_default_loop());
|
2021-01-02 13:10:00 -05:00
|
|
|
return 0;
|
|
|
|
}
|