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
304 lines
8.0 KiB
C
304 lines
8.0 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 <stdlib.h>
|
|
#include <string.h>
|
|
|
|
|
|
static char exepath[1024];
|
|
static size_t exepath_size = 1024;
|
|
static char* args[3];
|
|
static uv_process_options_t options;
|
|
static int close_cb_called;
|
|
static int exit_cb_called;
|
|
static int on_read_cb_called;
|
|
static int after_write_cb_called;
|
|
static uv_pipe_t in;
|
|
static uv_pipe_t out;
|
|
static uv_loop_t* loop;
|
|
#define OUTPUT_SIZE 1024
|
|
static char output[OUTPUT_SIZE];
|
|
static int output_used;
|
|
|
|
|
|
static void close_cb(uv_handle_t* handle) {
|
|
close_cb_called++;
|
|
}
|
|
|
|
|
|
static void exit_cb(uv_process_t* process,
|
|
int64_t exit_status,
|
|
int term_signal) {
|
|
printf("exit_cb\n");
|
|
exit_cb_called++;
|
|
ASSERT_OK(exit_status);
|
|
ASSERT_OK(term_signal);
|
|
uv_close((uv_handle_t*)process, close_cb);
|
|
uv_close((uv_handle_t*)&in, close_cb);
|
|
uv_close((uv_handle_t*)&out, close_cb);
|
|
}
|
|
|
|
|
|
static void init_process_options(char* test, uv_exit_cb exit_cb) {
|
|
int r = uv_exepath(exepath, &exepath_size);
|
|
ASSERT_OK(r);
|
|
exepath[exepath_size] = '\0';
|
|
args[0] = exepath;
|
|
args[1] = test;
|
|
args[2] = NULL;
|
|
options.file = exepath;
|
|
options.args = args;
|
|
options.exit_cb = exit_cb;
|
|
}
|
|
|
|
|
|
static void on_alloc(uv_handle_t* handle,
|
|
size_t suggested_size,
|
|
uv_buf_t* buf) {
|
|
buf->base = output + output_used;
|
|
buf->len = OUTPUT_SIZE - output_used;
|
|
}
|
|
|
|
|
|
static void after_write(uv_write_t* req, int status) {
|
|
if (status) {
|
|
fprintf(stderr, "uv_write error: %s\n", uv_strerror(status));
|
|
ASSERT(0);
|
|
}
|
|
|
|
/* Free the read/write buffer and the request */
|
|
free(req);
|
|
|
|
after_write_cb_called++;
|
|
}
|
|
|
|
|
|
static void on_read(uv_stream_t* pipe, ssize_t nread, const uv_buf_t* rdbuf) {
|
|
uv_write_t* req;
|
|
uv_buf_t wrbuf;
|
|
int r;
|
|
|
|
ASSERT(nread > 0 || nread == UV_EOF);
|
|
|
|
if (nread > 0) {
|
|
output_used += nread;
|
|
if (output_used % 12 == 0) {
|
|
ASSERT_OK(memcmp("hello world\n", output, 12));
|
|
wrbuf = uv_buf_init(output, 12);
|
|
req = malloc(sizeof(*req));
|
|
r = uv_write(req, (uv_stream_t*) &in, &wrbuf, 1, after_write);
|
|
ASSERT_OK(r);
|
|
}
|
|
}
|
|
|
|
on_read_cb_called++;
|
|
}
|
|
|
|
|
|
static void test_stdio_over_pipes(int overlapped) {
|
|
int r;
|
|
uv_process_t process;
|
|
uv_stdio_container_t stdio[3];
|
|
|
|
loop = uv_default_loop();
|
|
|
|
init_process_options("stdio_over_pipes_helper", exit_cb);
|
|
|
|
uv_pipe_init(loop, &out, 0);
|
|
uv_pipe_init(loop, &in, 0);
|
|
|
|
options.stdio = stdio;
|
|
options.stdio[0].flags = UV_CREATE_PIPE | UV_READABLE_PIPE |
|
|
(overlapped ? UV_OVERLAPPED_PIPE : 0);
|
|
options.stdio[0].data.stream = (uv_stream_t*) ∈
|
|
options.stdio[1].flags = UV_CREATE_PIPE | UV_WRITABLE_PIPE |
|
|
(overlapped ? UV_OVERLAPPED_PIPE : 0);
|
|
options.stdio[1].data.stream = (uv_stream_t*) &out;
|
|
options.stdio[2].flags = UV_INHERIT_FD;
|
|
options.stdio[2].data.file = uv_get_osfhandle(2);
|
|
options.stdio_count = 3;
|
|
|
|
r = uv_spawn(loop, &process, &options);
|
|
ASSERT_OK(r);
|
|
|
|
r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read);
|
|
ASSERT_OK(r);
|
|
|
|
r = uv_run(loop, UV_RUN_DEFAULT);
|
|
ASSERT_OK(r);
|
|
|
|
ASSERT_GT(on_read_cb_called, 1);
|
|
ASSERT_EQ(2, after_write_cb_called);
|
|
ASSERT_EQ(1, exit_cb_called);
|
|
ASSERT_EQ(3, close_cb_called);
|
|
ASSERT_OK(memcmp("hello world\nhello world\n", output, 24));
|
|
ASSERT_EQ(24, output_used);
|
|
|
|
MAKE_VALGRIND_HAPPY(loop);
|
|
}
|
|
|
|
TEST_IMPL(stdio_over_pipes) {
|
|
test_stdio_over_pipes(0);
|
|
return 0;
|
|
}
|
|
|
|
TEST_IMPL(stdio_emulate_iocp) {
|
|
test_stdio_over_pipes(1);
|
|
return 0;
|
|
}
|
|
|
|
|
|
/* Everything here runs in a child process. */
|
|
|
|
static int on_pipe_read_called;
|
|
static int after_write_called;
|
|
static uv_pipe_t stdin_pipe1;
|
|
static uv_pipe_t stdout_pipe1;
|
|
static uv_pipe_t stdin_pipe2;
|
|
static uv_pipe_t stdout_pipe2;
|
|
|
|
static void on_pipe_read(uv_stream_t* pipe, ssize_t nread, const uv_buf_t* buf) {
|
|
ASSERT_GT(nread, 0);
|
|
ASSERT_OK(memcmp("hello world\n", buf->base, nread));
|
|
on_pipe_read_called++;
|
|
|
|
free(buf->base);
|
|
|
|
uv_read_stop(pipe);
|
|
}
|
|
|
|
|
|
static void after_pipe_write(uv_write_t* req, int status) {
|
|
ASSERT_OK(status);
|
|
after_write_called++;
|
|
}
|
|
|
|
|
|
static void on_read_alloc(uv_handle_t* handle,
|
|
size_t suggested_size,
|
|
uv_buf_t* buf) {
|
|
buf->base = malloc(suggested_size);
|
|
buf->len = suggested_size;
|
|
}
|
|
|
|
|
|
int stdio_over_pipes_helper(void) {
|
|
/* Write several buffers to test that the write order is preserved. */
|
|
char* buffers[] = {
|
|
"he",
|
|
"ll",
|
|
"o ",
|
|
"wo",
|
|
"rl",
|
|
"d",
|
|
"\n"
|
|
};
|
|
|
|
uv_write_t write_req[ARRAY_SIZE(buffers)];
|
|
uv_buf_t buf[ARRAY_SIZE(buffers)];
|
|
unsigned int i;
|
|
int j;
|
|
int r;
|
|
uv_loop_t* loop = uv_default_loop();
|
|
|
|
ASSERT_EQ(UV_NAMED_PIPE, uv_guess_handle(UV_STDIN_FD));
|
|
ASSERT_EQ(UV_NAMED_PIPE, uv_guess_handle(UV_STDOUT_FD));
|
|
|
|
r = uv_pipe_init(loop, &stdin_pipe1, 0);
|
|
ASSERT_OK(r);
|
|
r = uv_pipe_init(loop, &stdout_pipe1, 0);
|
|
ASSERT_OK(r);
|
|
r = uv_pipe_init(loop, &stdin_pipe2, 0);
|
|
ASSERT_OK(r);
|
|
r = uv_pipe_init(loop, &stdout_pipe2, 0);
|
|
ASSERT(r == 0);
|
|
|
|
r = uv_pipe_open(&stdin_pipe1, UV_STDIN_FD);
|
|
ASSERT_OK(r);
|
|
r = uv_pipe_open(&stdout_pipe1, UV_STDOUT_FD);
|
|
ASSERT_OK(r);
|
|
r = uv_pipe_open(&stdin_pipe2, UV_STDIN_FD);
|
|
ASSERT_OK(r);
|
|
r = uv_pipe_open(&stdout_pipe2, UV_STDOUT_FD);
|
|
ASSERT_OK(r);
|
|
|
|
for (j = 0; j < 2; j++) {
|
|
/* Unref both stdio handles to make sure that all writes complete. */
|
|
uv_unref((uv_handle_t*) &stdin_pipe1);
|
|
uv_unref((uv_handle_t*) &stdout_pipe1);
|
|
uv_unref((uv_handle_t*) &stdin_pipe2);
|
|
uv_unref((uv_handle_t*) &stdout_pipe2);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(buffers); i++) {
|
|
buf[i] = uv_buf_init((char*) buffers[i], strlen(buffers[i]));
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(buffers); i++) {
|
|
r = uv_write(&write_req[i],
|
|
(uv_stream_t*) (j == 0 ? &stdout_pipe1 : &stdout_pipe2),
|
|
&buf[i],
|
|
1,
|
|
after_pipe_write);
|
|
ASSERT_OK(r);
|
|
}
|
|
|
|
notify_parent_process();
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
|
|
|
ASSERT_EQ(after_write_called, 7 * (j + 1));
|
|
ASSERT_EQ(on_pipe_read_called, j);
|
|
ASSERT_OK(close_cb_called);
|
|
|
|
uv_ref((uv_handle_t*) &stdout_pipe1);
|
|
uv_ref((uv_handle_t*) &stdin_pipe1);
|
|
uv_ref((uv_handle_t*) &stdout_pipe2);
|
|
uv_ref((uv_handle_t*) &stdin_pipe2);
|
|
|
|
r = uv_read_start((uv_stream_t*) (j == 0 ? &stdin_pipe1 : &stdin_pipe2),
|
|
on_read_alloc,
|
|
on_pipe_read);
|
|
ASSERT_OK(r);
|
|
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
|
|
|
ASSERT_EQ(after_write_called, 7 * (j + 1));
|
|
ASSERT_EQ(on_pipe_read_called, j + 1);
|
|
ASSERT_OK(close_cb_called);
|
|
}
|
|
|
|
uv_close((uv_handle_t*)&stdin_pipe1, close_cb);
|
|
uv_close((uv_handle_t*)&stdout_pipe1, close_cb);
|
|
uv_close((uv_handle_t*)&stdin_pipe2, close_cb);
|
|
uv_close((uv_handle_t*)&stdout_pipe2, close_cb);
|
|
|
|
uv_run(loop, UV_RUN_DEFAULT);
|
|
|
|
ASSERT_EQ(14, after_write_called);
|
|
ASSERT_EQ(2, on_pipe_read_called);
|
|
ASSERT_EQ(4, close_cb_called);
|
|
|
|
MAKE_VALGRIND_HAPPY(loop);
|
|
return 0;
|
|
}
|