Conflicts:
src/win/pipe.c
commit e53ab6675ba12d97ad6d93c9913a473ba5172617
Author: Bert Belder <bertbelder@gmail.com>
Date: Fri Mar 9 17:04:03 2012 +0100
Windows: report UV_ENOTSOCK when we opened a file instead of a pipe
Makes the pipe_connect_to_file test pass on Windows.
commit 8cbbfbe4c6489868470a7e410f80d4729f4091bf
Author: Igor Zinkovsky <igorzi@microsoft.com>
Date: Thu Mar 1 14:32:59 2012 -0800
test: make pipe_connect_to_file succeed with ECONNREFUSED
commit 6bbccf1fe0
Author: Igor Zinkovsky <igorzi@microsoft.com>
Date: Thu Mar 1 12:11:12 2012 -0800
windows: return UV_ENOTSOCK when doing uv_pipe_connect to a file
133 lines
5.9 KiB
C
133 lines
5.9 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 <assert.h>
|
|
#include <errno.h>
|
|
#include <malloc.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "uv.h"
|
|
#include "../uv-common.h"
|
|
#include "internal.h"
|
|
|
|
|
|
/*
|
|
* Display an error message and abort the event loop.
|
|
*/
|
|
void uv_fatal_error(const int errorno, const char* syscall) {
|
|
char* buf = NULL;
|
|
const char* errmsg;
|
|
|
|
FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
|
|
FORMAT_MESSAGE_IGNORE_INSERTS, NULL, errorno,
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)&buf, 0, NULL);
|
|
|
|
if (buf) {
|
|
errmsg = buf;
|
|
} else {
|
|
errmsg = "Unknown error";
|
|
}
|
|
|
|
/* FormatMessage messages include a newline character already, */
|
|
/* so don't add another. */
|
|
if (syscall) {
|
|
fprintf(stderr, "%s: (%d) %s", syscall, errorno, errmsg);
|
|
} else {
|
|
fprintf(stderr, "(%d) %s", errorno, errmsg);
|
|
}
|
|
|
|
if (buf) {
|
|
LocalFree(buf);
|
|
}
|
|
|
|
*((char*)NULL) = 0xff; /* Force debug break */
|
|
abort();
|
|
}
|
|
|
|
|
|
uv_err_code uv_translate_sys_error(int sys_errno) {
|
|
switch (sys_errno) {
|
|
case ERROR_SUCCESS: return UV_OK;
|
|
case ERROR_FILE_NOT_FOUND: return UV_ENOENT;
|
|
case ERROR_PATH_NOT_FOUND: return UV_ENOENT;
|
|
case ERROR_ACCESS_DENIED: return UV_EPERM;
|
|
case ERROR_NOACCESS: return UV_EACCES;
|
|
case WSAEACCES: return UV_EACCES;
|
|
case ERROR_ADDRESS_ALREADY_ASSOCIATED: return UV_EADDRINUSE;
|
|
case WSAEADDRINUSE: return UV_EADDRINUSE;
|
|
case WSAEADDRNOTAVAIL: return UV_EADDRNOTAVAIL;
|
|
case WSAEAFNOSUPPORT: return UV_EAFNOSUPPORT;
|
|
case WSAEWOULDBLOCK: return UV_EAGAIN;
|
|
case WSAEALREADY: return UV_EALREADY;
|
|
case ERROR_LOCK_VIOLATION: return UV_EBUSY;
|
|
case ERROR_SHARING_VIOLATION: return UV_EBUSY;
|
|
case ERROR_CONNECTION_ABORTED: return UV_ECONNABORTED;
|
|
case WSAECONNABORTED: return UV_ECONNABORTED;
|
|
case ERROR_CONNECTION_REFUSED: return UV_ECONNREFUSED;
|
|
case WSAECONNREFUSED: return UV_ECONNREFUSED;
|
|
case ERROR_NETNAME_DELETED: return UV_ECONNRESET;
|
|
case WSAECONNRESET: return UV_ECONNRESET;
|
|
case ERROR_ALREADY_EXISTS: return UV_EEXIST;
|
|
case ERROR_FILE_EXISTS: return UV_EEXIST;
|
|
case WSAEFAULT: return UV_EFAULT;
|
|
case ERROR_HOST_UNREACHABLE: return UV_EHOSTUNREACH;
|
|
case WSAEHOSTUNREACH: return UV_EHOSTUNREACH;
|
|
case ERROR_OPERATION_ABORTED: return UV_EINTR;
|
|
case WSAEINTR: return UV_EINTR;
|
|
case ERROR_INVALID_DATA: return UV_EINVAL;
|
|
case WSAEINVAL: return UV_EINVAL;
|
|
case ERROR_CANT_RESOLVE_FILENAME: return UV_ELOOP;
|
|
case ERROR_TOO_MANY_OPEN_FILES: return UV_EMFILE;
|
|
case WSAEMFILE: return UV_EMFILE;
|
|
case WSAEMSGSIZE: return UV_EMSGSIZE;
|
|
case ERROR_FILENAME_EXCED_RANGE: return UV_ENAMETOOLONG;
|
|
case ERROR_NETWORK_UNREACHABLE: return UV_ENETUNREACH;
|
|
case WSAENETUNREACH: return UV_ENETUNREACH;
|
|
case WSAENOBUFS: return UV_ENOBUFS;
|
|
case ERROR_OUTOFMEMORY: return UV_ENOMEM;
|
|
case ERROR_CANNOT_MAKE: return UV_ENOSPC;
|
|
case ERROR_DISK_FULL: return UV_ENOSPC;
|
|
case ERROR_EA_TABLE_FULL: return UV_ENOSPC;
|
|
case ERROR_END_OF_MEDIA: return UV_ENOSPC;
|
|
case ERROR_HANDLE_DISK_FULL: return UV_ENOSPC;
|
|
case ERROR_NOT_CONNECTED: return UV_ENOTCONN;
|
|
case WSAENOTCONN: return UV_ENOTCONN;
|
|
case ERROR_DIR_NOT_EMPTY: return UV_ENOTEMPTY;
|
|
case ERROR_NOT_SUPPORTED: return UV_ENOTSUP;
|
|
case ERROR_INSUFFICIENT_BUFFER: return UV_EINVAL;
|
|
case ERROR_INVALID_FLAGS: return UV_EBADF;
|
|
case ERROR_INVALID_PARAMETER: return UV_EINVAL;
|
|
case ERROR_NO_UNICODE_TRANSLATION: return UV_ECHARSET;
|
|
case ERROR_BROKEN_PIPE: return UV_EOF;
|
|
case ERROR_BAD_PIPE: return UV_EPIPE;
|
|
case ERROR_NO_DATA: return UV_EPIPE;
|
|
case ERROR_PIPE_NOT_CONNECTED: return UV_EPIPE;
|
|
case ERROR_PIPE_BUSY: return UV_EBUSY;
|
|
case ERROR_SEM_TIMEOUT: return UV_ETIMEDOUT;
|
|
case WSAETIMEDOUT: return UV_ETIMEDOUT;
|
|
case WSAHOST_NOT_FOUND: return UV_ENOENT;
|
|
case WSAENOTSOCK: return UV_ENOTSOCK;
|
|
default: return UV_UNKNOWN;
|
|
}
|
|
}
|
|
|