Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit cf78d04

Browse files
committed
Upgrade libuv to 9c7ed0d
Fixes test-net-pipe-connect-errors.js on UNIX. See #2001.
1 parent b904a07 commit cf78d04

13 files changed

+86
-12
lines changed

deps/uv/common.gypi

-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@
152152
'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
153153
'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
154154
'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
155-
'GCC_VERSION': '4.2',
156155
'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
157156
'MACOSX_DEPLOYMENT_TARGET': '10.4', # -mmacosx-version-min=10.4
158157
'PREBINDING': 'NO', # No -Wl,-prebind

deps/uv/include/uv.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ typedef enum {
7272
UV_OK = 0,
7373
UV_EOF,
7474
UV_EADDRINFO,
75-
UV_EACCESS,
75+
UV_EACCES,
7676
UV_EAGAIN,
7777
UV_EADDRINUSE,
7878
UV_EADDRNOTAVAIL,

deps/uv/src/unix/error.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ void uv_fatal_error(const int errorno, const char* syscall) {
5959
static int uv__translate_lib_error(int code) {
6060
switch (code) {
6161
case UV_ENOSYS: return ENOSYS;
62+
case UV_ENOTSOCK: return ENOTSOCK;
6263
case UV_ENOENT: return ENOENT;
63-
case UV_EACCESS: return EACCES;
64+
case UV_EACCES: return EACCES;
6465
case UV_EAFNOSUPPORT: return EAFNOSUPPORT;
6566
case UV_EBADF: return EBADF;
6667
case UV_EPIPE: return EPIPE;
@@ -89,8 +90,9 @@ uv_err_code uv_translate_sys_error(int sys_errno) {
8990
switch (sys_errno) {
9091
case 0: return UV_OK;
9192
case ENOSYS: return UV_ENOSYS;
93+
case ENOTSOCK: return UV_ENOTSOCK;
9294
case ENOENT: return UV_ENOENT;
93-
case EACCES: return UV_EACCESS;
95+
case EACCES: return UV_EACCES;
9496
case EAFNOSUPPORT: return UV_EAFNOSUPPORT;
9597
case EBADF: return UV_EBADF;
9698
case EPIPE: return UV_EPIPE;

deps/uv/src/unix/pipe.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ int uv_pipe_connect(uv_connect_t* req,
209209
while (r == -1 && errno == EINTR);
210210

211211
if (r == -1) {
212-
uv__set_sys_error(handle->loop, errno);
212+
status = errno;
213213
uv__close(sockfd);
214214
goto out;
215215
}

deps/uv/src/uv-common.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const char* uv_err_name(uv_err_t err) {
5757
case UV_OK: return "OK";
5858
case UV_EOF: return "EOF";
5959
case UV_EADDRINFO: return "EADDRINFO";
60-
case UV_EACCESS: return "EACCESS";
60+
case UV_EACCES: return "EACCES";
6161
case UV_EAGAIN: return "EAGAIN";
6262
case UV_EADDRINUSE: return "EADDRINUSE";
6363
case UV_EADDRNOTAVAIL: return "EADDRNOTAVAIL";

deps/uv/src/win/error.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ uv_err_code uv_translate_sys_error(int sys_errno) {
9090
case ERROR_SUCCESS: return UV_OK;
9191
case ERROR_FILE_NOT_FOUND: return UV_ENOENT;
9292
case ERROR_PATH_NOT_FOUND: return UV_ENOENT;
93-
case ERROR_NOACCESS: return UV_EACCESS;
94-
case WSAEACCES: return UV_EACCESS;
93+
case ERROR_NOACCESS: return UV_EACCES;
94+
case WSAEACCES: return UV_EACCES;
9595
case ERROR_ADDRESS_ALREADY_ASSOCIATED: return UV_EADDRINUSE;
9696
case WSAEADDRINUSE: return UV_EADDRINUSE;
9797
case WSAEADDRNOTAVAIL: return UV_EADDRNOTAVAIL;

deps/uv/src/win/pipe.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ int uv_pipe_bind(uv_pipe_t* handle, const char* name) {
362362
if (errno == ERROR_ACCESS_DENIED) {
363363
uv__set_error(loop, UV_EADDRINUSE, errno);
364364
} else if (errno == ERROR_PATH_NOT_FOUND || errno == ERROR_INVALID_NAME) {
365-
uv__set_error(loop, UV_EACCESS, errno);
365+
uv__set_error(loop, UV_EACCES, errno);
366366
} else {
367367
uv__set_sys_error(loop, errno);
368368
}

deps/uv/src/win/process.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ static uv_err_t uv__kill(HANDLE process_handle, int signum) {
10591059
DWORD status;
10601060
uv_err_t err;
10611061

1062-
if (signum == SIGTERM || signum == SIGKILL) {
1062+
if (signum == SIGTERM || signum == SIGKILL || signum == SIGINT) {
10631063
/* Kill the process. On Windows, killed processes normally return 1. */
10641064
if (TerminateProcess(process_handle, 1)) {
10651065
err = uv_ok_;

deps/uv/test/test-ipc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,4 @@ TEST_IMPL(listen_no_simultaneous_accepts) {
275275

276276
return 0;
277277
}
278-
#endif
278+
#endif

deps/uv/test/test-list.h

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ TEST_DECLARE (pipe_bind_error_addrinuse)
5555
TEST_DECLARE (pipe_bind_error_addrnotavail)
5656
TEST_DECLARE (pipe_bind_error_inval)
5757
TEST_DECLARE (pipe_listen_without_bind)
58+
TEST_DECLARE (pipe_connect_bad_name)
5859
TEST_DECLARE (connection_fail)
5960
TEST_DECLARE (connection_fail_doesnt_auto_close)
6061
TEST_DECLARE (shutdown_eof)
@@ -124,6 +125,8 @@ HELPER_DECLARE (pipe_echo_server)
124125

125126

126127
TASK_LIST_START
128+
TEST_ENTRY (pipe_connect_bad_name)
129+
127130
TEST_ENTRY (tty)
128131
TEST_ENTRY (stdio_over_pipes)
129132
TEST_ENTRY (ipc_listen_before_write)

deps/uv/test/test-pipe-bind-error.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ TEST_IMPL(pipe_bind_error_addrnotavail) {
8484
r = uv_pipe_bind(&server, BAD_PIPENAME);
8585

8686
ASSERT(r == -1);
87-
ASSERT(uv_last_error(uv_default_loop()).code == UV_EACCESS);
87+
ASSERT(uv_last_error(uv_default_loop()).code == UV_EACCES);
8888

8989
uv_close((uv_handle_t*)&server, close_cb);
9090

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2+
*
3+
* Permission is hereby granted, free of charge, to any person obtaining a copy
4+
* of this software and associated documentation files (the "Software"), to
5+
* deal in the Software without restriction, including without limitation the
6+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7+
* sell copies of the Software, and to permit persons to whom the Software is
8+
* furnished to do so, subject to the following conditions:
9+
*
10+
* The above copyright notice and this permission notice shall be included in
11+
* all copies or substantial portions of the Software.
12+
*
13+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19+
* IN THE SOFTWARE.
20+
*/
21+
22+
#include "uv.h"
23+
#include "task.h"
24+
#include <stdio.h>
25+
#include <stdlib.h>
26+
27+
28+
#ifdef _WIN32
29+
# define BAD_PIPENAME "bad-pipe"
30+
#else
31+
# define BAD_PIPENAME "/path/to/unix/socket/that/really/should/not/be/there"
32+
#endif
33+
34+
35+
static int close_cb_called = 0;
36+
static int connect_cb_called = 0;
37+
38+
39+
static void close_cb(uv_handle_t* handle) {
40+
ASSERT(handle != NULL);
41+
close_cb_called++;
42+
}
43+
44+
45+
static void connect_cb(uv_connect_t* connect_req, int status) {
46+
ASSERT(status == -1);
47+
ASSERT(uv_last_error(uv_default_loop()).code == UV_ENOENT);
48+
uv_close((uv_handle_t*)connect_req->handle, close_cb);
49+
connect_cb_called++;
50+
}
51+
52+
53+
TEST_IMPL(pipe_connect_bad_name) {
54+
uv_pipe_t client;
55+
uv_connect_t req;
56+
int r;
57+
58+
r = uv_pipe_init(uv_default_loop(), &client, 0);
59+
ASSERT(r == 0);
60+
uv_pipe_connect(&req, &client, BAD_PIPENAME, connect_cb);
61+
ASSERT(r == 0);
62+
63+
uv_run(uv_default_loop());
64+
65+
ASSERT(close_cb_called == 1);
66+
ASSERT(connect_cb_called == 1);
67+
68+
return 0;
69+
}

deps/uv/uv.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@
296296
'test/test-pass-always.c',
297297
'test/test-ping-pong.c',
298298
'test/test-pipe-bind-error.c',
299+
'test/test-pipe-connect-error.c',
299300
'test/test-ref.c',
300301
'test/test-shutdown-eof.c',
301302
'test/test-spawn.c',

0 commit comments

Comments
 (0)