1999-01-20 07:45:32 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993, Intergraph Corporation
|
|
|
|
*
|
|
|
|
* You may distribute under the terms of either the GNU General Public
|
|
|
|
* License or the Artistic License, as specified in the perl README file.
|
|
|
|
*
|
|
|
|
* Various Unix compatibility functions and NT specific functions.
|
|
|
|
*
|
|
|
|
* Some of this code was derived from the MSDOS port(s) and the OS/2 port.
|
|
|
|
*
|
|
|
|
*/
|
2011-08-05 15:31:52 +04:00
|
|
|
/*
|
|
|
|
The parts licensed under above copyright notice are marked as "Artistic or
|
|
|
|
GPL".
|
|
|
|
Another parts are licensed under Ruby's License.
|
|
|
|
|
|
|
|
Copyright (C) 1993-2011 Yukihiro Matsumoto
|
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
|
|
|
*/
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2013-07-08 18:13:13 +04:00
|
|
|
#undef __STRICT_ANSI__
|
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
2009-02-06 11:23:00 +03:00
|
|
|
#include "ruby/encoding.h"
|
1999-01-20 07:45:32 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <process.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
/* #include <sys/wait.h> */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <assert.h>
|
2008-06-01 23:55:25 +04:00
|
|
|
#include <ctype.h>
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <wincon.h>
|
2006-08-12 10:56:09 +04:00
|
|
|
#include <share.h>
|
2004-08-18 06:22:59 +04:00
|
|
|
#include <shlobj.h>
|
2007-07-15 17:24:39 +04:00
|
|
|
#include <mbstring.h>
|
2009-02-16 10:46:24 +03:00
|
|
|
#if _MSC_VER >= 1400
|
|
|
|
#include <crtdbg.h>
|
2009-03-10 22:29:51 +03:00
|
|
|
#include <rtcapi.h>
|
2009-02-16 10:46:24 +03:00
|
|
|
#endif
|
2002-04-19 11:33:18 +04:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <mswsock.h>
|
|
|
|
#endif
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/win32.h"
|
2001-03-21 02:10:05 +03:00
|
|
|
#include "win32/dir.h"
|
2013-08-05 12:38:39 +04:00
|
|
|
#include "internal.h"
|
2001-02-09 18:02:14 +03:00
|
|
|
#define isdirsep(x) ((x) == '/' || (x) == '\\')
|
2002-10-11 01:07:16 +04:00
|
|
|
|
2013-07-08 18:23:24 +04:00
|
|
|
#if defined _MSC_VER && _MSC_VER <= 1200
|
|
|
|
# define CharNextExA(cp, p, flags) CharNextExA((WORD)(cp), (p), (flags))
|
|
|
|
#endif
|
|
|
|
|
2013-06-30 05:58:55 +04:00
|
|
|
static int w32_stati64(const char *path, struct stati64 *st, UINT cp);
|
2013-06-30 05:58:59 +04:00
|
|
|
static char *w32_getenv(const char *name, UINT cp);
|
2013-06-30 05:58:55 +04:00
|
|
|
|
2013-06-30 05:59:12 +04:00
|
|
|
#undef getenv
|
|
|
|
#define DLN_FIND_EXTRA_ARG_DECL ,UINT cp
|
|
|
|
#define DLN_FIND_EXTRA_ARG ,cp
|
|
|
|
#define rb_w32_stati64(path, st) w32_stati64(path, st, cp)
|
|
|
|
#define getenv(name) w32_getenv(name, cp)
|
|
|
|
#define dln_find_exe_r rb_w32_udln_find_exe_r
|
|
|
|
#define dln_find_file_r rb_w32_udln_find_file_r
|
|
|
|
#include "dln.h"
|
|
|
|
#include "dln_find.c"
|
|
|
|
#undef MAXPATHLEN
|
|
|
|
#undef rb_w32_stati64
|
|
|
|
#undef dln_find_exe_r
|
|
|
|
#undef dln_find_file_r
|
|
|
|
#define dln_find_exe_r(fname, path, buf, size) rb_w32_udln_find_exe_r(fname, path, buf, size, cp)
|
|
|
|
#define dln_find_file_r(fname, path, buf, size) rb_w32_udln_find_file_r(fname, path, buf, size, cp)
|
|
|
|
|
2001-03-21 02:10:05 +03:00
|
|
|
#undef stat
|
2002-10-11 01:07:16 +04:00
|
|
|
#undef fclose
|
|
|
|
#undef close
|
|
|
|
#undef setsockopt
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2008-10-04 17:48:20 +04:00
|
|
|
#if defined __BORLANDC__
|
2002-06-11 05:27:48 +04:00
|
|
|
# define _filbuf _fgetc
|
2002-10-12 18:47:07 +04:00
|
|
|
# define _flsbuf _fputc
|
|
|
|
# define enough_to_get(n) (--(n) >= 0)
|
|
|
|
# define enough_to_put(n) (++(n) < 0)
|
|
|
|
#else
|
|
|
|
# define enough_to_get(n) (--(n) >= 0)
|
|
|
|
# define enough_to_put(n) (--(n) >= 0)
|
2002-06-11 05:27:48 +04:00
|
|
|
#endif
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
#ifdef WIN32_DEBUG
|
|
|
|
#define Debug(something) something
|
|
|
|
#else
|
|
|
|
#define Debug(something) /* nothing */
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#define TO_SOCKET(x) _get_osfhandle(x)
|
|
|
|
|
2012-04-07 18:10:30 +04:00
|
|
|
static struct ChildRecord *CreateChild(const WCHAR *, const WCHAR *, SECURITY_ATTRIBUTES *, HANDLE, HANDLE, HANDLE, DWORD);
|
2013-06-30 05:59:16 +04:00
|
|
|
static int has_redirection(const char *, UINT);
|
2007-02-23 12:33:53 +03:00
|
|
|
int rb_w32_wait_events(HANDLE *events, int num, DWORD timeout);
|
2007-06-27 15:47:53 +04:00
|
|
|
static int rb_w32_open_osfhandle(intptr_t osfhandle, int flags);
|
2010-05-01 01:45:33 +04:00
|
|
|
static int wstati64(const WCHAR *path, struct stati64 *st);
|
2010-05-08 07:25:17 +04:00
|
|
|
VALUE rb_w32_conv_from_wchar(const WCHAR *wstr, rb_encoding *enc);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2008-09-03 19:06:55 +04:00
|
|
|
#define RUBY_CRITICAL(expr) do { expr; } while (0)
|
|
|
|
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
/* errno mapping */
|
|
|
|
static struct {
|
|
|
|
DWORD winerr;
|
|
|
|
int err;
|
|
|
|
} errmap[] = {
|
|
|
|
{ ERROR_INVALID_FUNCTION, EINVAL },
|
|
|
|
{ ERROR_FILE_NOT_FOUND, ENOENT },
|
|
|
|
{ ERROR_PATH_NOT_FOUND, ENOENT },
|
|
|
|
{ ERROR_TOO_MANY_OPEN_FILES, EMFILE },
|
|
|
|
{ ERROR_ACCESS_DENIED, EACCES },
|
|
|
|
{ ERROR_INVALID_HANDLE, EBADF },
|
|
|
|
{ ERROR_ARENA_TRASHED, ENOMEM },
|
|
|
|
{ ERROR_NOT_ENOUGH_MEMORY, ENOMEM },
|
|
|
|
{ ERROR_INVALID_BLOCK, ENOMEM },
|
|
|
|
{ ERROR_BAD_ENVIRONMENT, E2BIG },
|
|
|
|
{ ERROR_BAD_FORMAT, ENOEXEC },
|
|
|
|
{ ERROR_INVALID_ACCESS, EINVAL },
|
|
|
|
{ ERROR_INVALID_DATA, EINVAL },
|
|
|
|
{ ERROR_INVALID_DRIVE, ENOENT },
|
|
|
|
{ ERROR_CURRENT_DIRECTORY, EACCES },
|
|
|
|
{ ERROR_NOT_SAME_DEVICE, EXDEV },
|
|
|
|
{ ERROR_NO_MORE_FILES, ENOENT },
|
|
|
|
{ ERROR_WRITE_PROTECT, EROFS },
|
|
|
|
{ ERROR_BAD_UNIT, ENODEV },
|
|
|
|
{ ERROR_NOT_READY, ENXIO },
|
|
|
|
{ ERROR_BAD_COMMAND, EACCES },
|
|
|
|
{ ERROR_CRC, EACCES },
|
|
|
|
{ ERROR_BAD_LENGTH, EACCES },
|
|
|
|
{ ERROR_SEEK, EIO },
|
|
|
|
{ ERROR_NOT_DOS_DISK, EACCES },
|
|
|
|
{ ERROR_SECTOR_NOT_FOUND, EACCES },
|
|
|
|
{ ERROR_OUT_OF_PAPER, EACCES },
|
|
|
|
{ ERROR_WRITE_FAULT, EIO },
|
|
|
|
{ ERROR_READ_FAULT, EIO },
|
|
|
|
{ ERROR_GEN_FAILURE, EACCES },
|
|
|
|
{ ERROR_LOCK_VIOLATION, EACCES },
|
|
|
|
{ ERROR_SHARING_VIOLATION, EACCES },
|
|
|
|
{ ERROR_WRONG_DISK, EACCES },
|
|
|
|
{ ERROR_SHARING_BUFFER_EXCEEDED, EACCES },
|
|
|
|
{ ERROR_BAD_NETPATH, ENOENT },
|
|
|
|
{ ERROR_NETWORK_ACCESS_DENIED, EACCES },
|
|
|
|
{ ERROR_BAD_NET_NAME, ENOENT },
|
|
|
|
{ ERROR_FILE_EXISTS, EEXIST },
|
|
|
|
{ ERROR_CANNOT_MAKE, EACCES },
|
|
|
|
{ ERROR_FAIL_I24, EACCES },
|
|
|
|
{ ERROR_INVALID_PARAMETER, EINVAL },
|
|
|
|
{ ERROR_NO_PROC_SLOTS, EAGAIN },
|
|
|
|
{ ERROR_DRIVE_LOCKED, EACCES },
|
|
|
|
{ ERROR_BROKEN_PIPE, EPIPE },
|
|
|
|
{ ERROR_DISK_FULL, ENOSPC },
|
|
|
|
{ ERROR_INVALID_TARGET_HANDLE, EBADF },
|
|
|
|
{ ERROR_INVALID_HANDLE, EINVAL },
|
|
|
|
{ ERROR_WAIT_NO_CHILDREN, ECHILD },
|
|
|
|
{ ERROR_CHILD_NOT_COMPLETE, ECHILD },
|
|
|
|
{ ERROR_DIRECT_ACCESS_HANDLE, EBADF },
|
|
|
|
{ ERROR_NEGATIVE_SEEK, EINVAL },
|
|
|
|
{ ERROR_SEEK_ON_DEVICE, EACCES },
|
|
|
|
{ ERROR_DIR_NOT_EMPTY, ENOTEMPTY },
|
2005-07-13 14:40:06 +04:00
|
|
|
{ ERROR_DIRECTORY, ENOTDIR },
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
{ ERROR_NOT_LOCKED, EACCES },
|
|
|
|
{ ERROR_BAD_PATHNAME, ENOENT },
|
|
|
|
{ ERROR_MAX_THRDS_REACHED, EAGAIN },
|
|
|
|
{ ERROR_LOCK_FAILED, EACCES },
|
|
|
|
{ ERROR_ALREADY_EXISTS, EEXIST },
|
|
|
|
{ ERROR_INVALID_STARTING_CODESEG, ENOEXEC },
|
|
|
|
{ ERROR_INVALID_STACKSEG, ENOEXEC },
|
|
|
|
{ ERROR_INVALID_MODULETYPE, ENOEXEC },
|
|
|
|
{ ERROR_INVALID_EXE_SIGNATURE, ENOEXEC },
|
|
|
|
{ ERROR_EXE_MARKED_INVALID, ENOEXEC },
|
|
|
|
{ ERROR_BAD_EXE_FORMAT, ENOEXEC },
|
|
|
|
{ ERROR_ITERATED_DATA_EXCEEDS_64k,ENOEXEC },
|
|
|
|
{ ERROR_INVALID_MINALLOCSIZE, ENOEXEC },
|
|
|
|
{ ERROR_DYNLINK_FROM_INVALID_RING,ENOEXEC },
|
|
|
|
{ ERROR_IOPL_NOT_ENABLED, ENOEXEC },
|
|
|
|
{ ERROR_INVALID_SEGDPL, ENOEXEC },
|
|
|
|
{ ERROR_AUTODATASEG_EXCEEDS_64k, ENOEXEC },
|
|
|
|
{ ERROR_RING2SEG_MUST_BE_MOVABLE, ENOEXEC },
|
|
|
|
{ ERROR_RELOC_CHAIN_XEEDS_SEGLIM, ENOEXEC },
|
|
|
|
{ ERROR_INFLOOP_IN_RELOC_CHAIN, ENOEXEC },
|
|
|
|
{ ERROR_FILENAME_EXCED_RANGE, ENOENT },
|
|
|
|
{ ERROR_NESTING_NOT_ALLOWED, EAGAIN },
|
2008-06-18 13:32:03 +04:00
|
|
|
#ifndef ERROR_PIPE_LOCAL
|
|
|
|
#define ERROR_PIPE_LOCAL 229L
|
|
|
|
#endif
|
|
|
|
{ ERROR_PIPE_LOCAL, EPIPE },
|
|
|
|
{ ERROR_BAD_PIPE, EPIPE },
|
|
|
|
{ ERROR_PIPE_BUSY, EAGAIN },
|
|
|
|
{ ERROR_NO_DATA, EPIPE },
|
|
|
|
{ ERROR_PIPE_NOT_CONNECTED, EPIPE },
|
2008-07-15 13:14:09 +04:00
|
|
|
{ ERROR_OPERATION_ABORTED, EINTR },
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
{ ERROR_NOT_ENOUGH_QUOTA, ENOMEM },
|
2010-04-05 08:26:33 +04:00
|
|
|
{ ERROR_MOD_NOT_FOUND, ENOENT },
|
2006-06-07 09:53:46 +04:00
|
|
|
{ WSAEINTR, EINTR },
|
|
|
|
{ WSAEBADF, EBADF },
|
|
|
|
{ WSAEACCES, EACCES },
|
|
|
|
{ WSAEFAULT, EFAULT },
|
|
|
|
{ WSAEINVAL, EINVAL },
|
|
|
|
{ WSAEMFILE, EMFILE },
|
2010-04-05 08:26:33 +04:00
|
|
|
{ WSAEWOULDBLOCK, EWOULDBLOCK },
|
2010-04-06 09:58:07 +04:00
|
|
|
{ WSAEINPROGRESS, EINPROGRESS },
|
|
|
|
{ WSAEALREADY, EALREADY },
|
|
|
|
{ WSAENOTSOCK, ENOTSOCK },
|
|
|
|
{ WSAEDESTADDRREQ, EDESTADDRREQ },
|
|
|
|
{ WSAEMSGSIZE, EMSGSIZE },
|
|
|
|
{ WSAEPROTOTYPE, EPROTOTYPE },
|
|
|
|
{ WSAENOPROTOOPT, ENOPROTOOPT },
|
|
|
|
{ WSAEPROTONOSUPPORT, EPROTONOSUPPORT },
|
|
|
|
{ WSAESOCKTNOSUPPORT, ESOCKTNOSUPPORT },
|
|
|
|
{ WSAEOPNOTSUPP, EOPNOTSUPP },
|
|
|
|
{ WSAEPFNOSUPPORT, EPFNOSUPPORT },
|
|
|
|
{ WSAEAFNOSUPPORT, EAFNOSUPPORT },
|
|
|
|
{ WSAEADDRINUSE, EADDRINUSE },
|
|
|
|
{ WSAEADDRNOTAVAIL, EADDRNOTAVAIL },
|
|
|
|
{ WSAENETDOWN, ENETDOWN },
|
|
|
|
{ WSAENETUNREACH, ENETUNREACH },
|
|
|
|
{ WSAENETRESET, ENETRESET },
|
|
|
|
{ WSAECONNABORTED, ECONNABORTED },
|
|
|
|
{ WSAECONNRESET, ECONNRESET },
|
|
|
|
{ WSAENOBUFS, ENOBUFS },
|
|
|
|
{ WSAEISCONN, EISCONN },
|
|
|
|
{ WSAENOTCONN, ENOTCONN },
|
|
|
|
{ WSAESHUTDOWN, ESHUTDOWN },
|
|
|
|
{ WSAETOOMANYREFS, ETOOMANYREFS },
|
|
|
|
{ WSAETIMEDOUT, ETIMEDOUT },
|
|
|
|
{ WSAECONNREFUSED, ECONNREFUSED },
|
|
|
|
{ WSAELOOP, ELOOP },
|
|
|
|
{ WSAENAMETOOLONG, ENAMETOOLONG },
|
|
|
|
{ WSAEHOSTDOWN, EHOSTDOWN },
|
|
|
|
{ WSAEHOSTUNREACH, EHOSTUNREACH },
|
|
|
|
{ WSAEPROCLIM, EPROCLIM },
|
|
|
|
{ WSAENOTEMPTY, ENOTEMPTY },
|
|
|
|
{ WSAEUSERS, EUSERS },
|
|
|
|
{ WSAEDQUOT, EDQUOT },
|
|
|
|
{ WSAESTALE, ESTALE },
|
|
|
|
{ WSAEREMOTE, EREMOTE },
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
};
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-02-20 17:55:21 +03:00
|
|
|
int
|
|
|
|
rb_w32_map_errno(DWORD winerr)
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (winerr == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-05 11:51:12 +03:00
|
|
|
for (i = 0; i < (int)(sizeof(errmap) / sizeof(*errmap)); i++) {
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
if (errmap[i].winerr == winerr) {
|
|
|
|
return errmap[i].err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
if (winerr >= WSABASEERR) {
|
|
|
|
return winerr;
|
|
|
|
}
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2008-02-20 17:55:21 +03:00
|
|
|
#define map_errno rb_w32_map_errno
|
|
|
|
|
2008-06-01 23:55:25 +04:00
|
|
|
static const char *NTLoginName;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2008-06-21 19:45:16 +04:00
|
|
|
static OSVERSIONINFO osver;
|
2009-03-05 07:38:23 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2009-03-05 07:21:47 +03:00
|
|
|
static void
|
|
|
|
get_version(void)
|
|
|
|
{
|
|
|
|
memset(&osver, 0, sizeof(OSVERSIONINFO));
|
|
|
|
osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
GetVersionEx(&osver);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _M_IX86
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-22 19:26:39 +03:00
|
|
|
DWORD
|
|
|
|
rb_w32_osid(void)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2009-03-05 08:52:51 +03:00
|
|
|
return osver.dwPlatformId;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2001-02-17 18:17:10 +03:00
|
|
|
#endif
|
2008-06-21 19:45:16 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2011-03-19 19:33:59 +03:00
|
|
|
DWORD
|
2008-06-21 19:45:16 +04:00
|
|
|
rb_w32_osver(void)
|
|
|
|
{
|
2009-03-05 08:52:51 +03:00
|
|
|
return osver.dwMajorVersion;
|
2008-06-21 19:45:16 +04:00
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
/* simulate flock by locking a range on the file */
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2006-02-04 15:21:55 +03:00
|
|
|
#define LK_ERR(f,i) \
|
|
|
|
do { \
|
|
|
|
if (f) \
|
|
|
|
i = 0; \
|
|
|
|
else { \
|
|
|
|
DWORD err = GetLastError(); \
|
2009-09-28 14:37:41 +04:00
|
|
|
if (err == ERROR_LOCK_VIOLATION || err == ERROR_IO_PENDING) \
|
2006-02-04 15:21:55 +03:00
|
|
|
errno = EWOULDBLOCK; \
|
|
|
|
else if (err == ERROR_NOT_LOCKED) \
|
|
|
|
i = 0; \
|
|
|
|
else \
|
|
|
|
errno = map_errno(err); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2003-02-28 16:54:14 +03:00
|
|
|
#define LK_LEN ULONG_MAX
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2007-06-27 15:47:53 +04:00
|
|
|
static uintptr_t
|
|
|
|
flock_winnt(uintptr_t self, int argc, uintptr_t* argv)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
OVERLAPPED o;
|
|
|
|
int i = -1;
|
2000-11-14 10:10:31 +03:00
|
|
|
const HANDLE fh = (HANDLE)self;
|
|
|
|
const int oper = argc;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
memset(&o, 0, sizeof(o));
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
switch(oper) {
|
|
|
|
case LOCK_SH: /* shared lock */
|
2003-02-28 16:54:14 +03:00
|
|
|
LK_ERR(LockFileEx(fh, 0, 0, LK_LEN, LK_LEN, &o), i);
|
2000-11-14 10:10:31 +03:00
|
|
|
break;
|
|
|
|
case LOCK_EX: /* exclusive lock */
|
2003-02-28 16:54:14 +03:00
|
|
|
LK_ERR(LockFileEx(fh, LOCKFILE_EXCLUSIVE_LOCK, 0, LK_LEN, LK_LEN, &o), i);
|
2000-11-14 10:10:31 +03:00
|
|
|
break;
|
|
|
|
case LOCK_SH|LOCK_NB: /* non-blocking shared lock */
|
2003-02-28 16:54:14 +03:00
|
|
|
LK_ERR(LockFileEx(fh, LOCKFILE_FAIL_IMMEDIATELY, 0, LK_LEN, LK_LEN, &o), i);
|
2000-11-14 10:10:31 +03:00
|
|
|
break;
|
|
|
|
case LOCK_EX|LOCK_NB: /* non-blocking exclusive lock */
|
|
|
|
LK_ERR(LockFileEx(fh,
|
|
|
|
LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
|
2003-02-28 16:54:14 +03:00
|
|
|
0, LK_LEN, LK_LEN, &o), i);
|
2000-11-14 10:10:31 +03:00
|
|
|
break;
|
|
|
|
case LOCK_UN: /* unlock lock */
|
2005-01-26 04:51:06 +03:00
|
|
|
case LOCK_UN|LOCK_NB: /* unlock is always non-blocking, I hope */
|
2003-02-28 16:54:14 +03:00
|
|
|
LK_ERR(UnlockFileEx(fh, 0, LK_LEN, LK_LEN, &o), i);
|
2000-11-14 10:10:31 +03:00
|
|
|
break;
|
|
|
|
default: /* unknown */
|
|
|
|
errno = EINVAL;
|
|
|
|
break;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
#undef LK_ERR
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2000-11-14 10:10:31 +03:00
|
|
|
int
|
|
|
|
flock(int fd, int oper)
|
|
|
|
{
|
2001-02-17 18:17:10 +03:00
|
|
|
const asynchronous_func_t locker = flock_winnt;
|
2000-11-14 10:10:31 +03:00
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
return rb_w32_asynchronize(locker,
|
2000-11-14 10:10:31 +03:00
|
|
|
(VALUE)_get_osfhandle(fd), oper, NULL,
|
|
|
|
(DWORD)-1);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-03-02 06:22:14 +03:00
|
|
|
static inline WCHAR *
|
|
|
|
translate_wchar(WCHAR *p, int from, int to)
|
|
|
|
{
|
|
|
|
for (; *p; p++) {
|
|
|
|
if (*p == from)
|
|
|
|
*p = to;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-12-20 12:28:29 +03:00
|
|
|
static inline char *
|
2013-06-30 05:59:16 +04:00
|
|
|
translate_char(char *p, int from, int to, UINT cp)
|
2008-12-20 12:28:29 +03:00
|
|
|
{
|
|
|
|
while (*p) {
|
|
|
|
if ((unsigned char)*p == from)
|
|
|
|
*p = to;
|
2013-06-30 05:59:16 +04:00
|
|
|
p = CharNextExA(cp, p, 0);
|
2008-12-20 12:28:29 +03:00
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2009-03-11 07:16:56 +03:00
|
|
|
#ifndef CSIDL_LOCAL_APPDATA
|
|
|
|
#define CSIDL_LOCAL_APPDATA 28
|
|
|
|
#endif
|
|
|
|
#ifndef CSIDL_COMMON_APPDATA
|
|
|
|
#define CSIDL_COMMON_APPDATA 35
|
|
|
|
#endif
|
|
|
|
#ifndef CSIDL_WINDOWS
|
|
|
|
#define CSIDL_WINDOWS 36
|
|
|
|
#endif
|
|
|
|
#ifndef CSIDL_SYSTEM
|
|
|
|
#define CSIDL_SYSTEM 37
|
|
|
|
#endif
|
2009-01-05 06:52:11 +03:00
|
|
|
#ifndef CSIDL_PROFILE
|
|
|
|
#define CSIDL_PROFILE 40
|
|
|
|
#endif
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-01-05 06:52:11 +03:00
|
|
|
static BOOL
|
2009-03-02 06:22:14 +03:00
|
|
|
get_special_folder(int n, WCHAR *env)
|
2009-01-05 06:52:11 +03:00
|
|
|
{
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
LPMALLOC alloc;
|
|
|
|
BOOL f = FALSE;
|
|
|
|
if (SHGetSpecialFolderLocation(NULL, n, &pidl) == 0) {
|
2009-03-02 06:22:14 +03:00
|
|
|
f = SHGetPathFromIDListW(pidl, env);
|
2009-01-05 06:52:11 +03:00
|
|
|
SHGetMalloc(&alloc);
|
|
|
|
alloc->lpVtbl->Free(alloc, pidl);
|
|
|
|
alloc->lpVtbl->Release(alloc);
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-03-02 06:22:14 +03:00
|
|
|
static void
|
|
|
|
regulate_path(WCHAR *path)
|
|
|
|
{
|
|
|
|
WCHAR *p = translate_wchar(path, L'\\', L'/');
|
|
|
|
if (p - path == 2 && path[1] == L':') {
|
|
|
|
*p++ = L'/';
|
|
|
|
*p = L'\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-11-08 05:03:40 +03:00
|
|
|
static FARPROC
|
|
|
|
get_proc_address(const char *module, const char *func, HANDLE *mh)
|
2009-03-11 07:16:56 +03:00
|
|
|
{
|
2010-11-08 05:03:40 +03:00
|
|
|
HANDLE h;
|
|
|
|
FARPROC ptr;
|
2009-03-11 07:16:56 +03:00
|
|
|
|
2010-11-08 05:03:40 +03:00
|
|
|
if (mh)
|
|
|
|
h = LoadLibrary(module);
|
|
|
|
else
|
|
|
|
h = GetModuleHandle(module);
|
|
|
|
if (!h)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ptr = GetProcAddress(h, func);
|
|
|
|
if (mh) {
|
|
|
|
if (ptr)
|
|
|
|
*mh = h;
|
|
|
|
else
|
|
|
|
FreeLibrary(h);
|
2009-03-11 07:16:56 +03:00
|
|
|
}
|
2010-11-08 05:03:40 +03:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-11-08 05:03:40 +03:00
|
|
|
static UINT
|
|
|
|
get_system_directory(WCHAR *path, UINT len)
|
|
|
|
{
|
|
|
|
typedef UINT WINAPI wgetdir_func(WCHAR*, UINT);
|
|
|
|
FARPROC ptr =
|
|
|
|
get_proc_address("kernel32", "GetSystemWindowsDirectoryW", NULL);
|
|
|
|
if (ptr)
|
|
|
|
return (*(wgetdir_func *)ptr)(path, len);
|
2009-03-11 07:16:56 +03:00
|
|
|
return GetWindowsDirectoryW(path, len);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-05-08 07:25:17 +04:00
|
|
|
VALUE
|
|
|
|
rb_w32_special_folder(int type)
|
|
|
|
{
|
|
|
|
WCHAR path[_MAX_PATH];
|
|
|
|
|
|
|
|
if (!get_special_folder(type, path)) return Qnil;
|
|
|
|
regulate_path(path);
|
|
|
|
return rb_w32_conv_from_wchar(path, rb_filesystem_encoding());
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-03-16 09:20:23 +03:00
|
|
|
UINT
|
|
|
|
rb_w32_system_tmpdir(WCHAR *path, UINT len)
|
|
|
|
{
|
|
|
|
static const WCHAR temp[] = L"temp";
|
|
|
|
WCHAR *p;
|
|
|
|
|
|
|
|
if (!get_special_folder(CSIDL_LOCAL_APPDATA, path)) {
|
|
|
|
if (get_system_directory(path, len)) return 0;
|
|
|
|
}
|
|
|
|
p = translate_wchar(path, L'\\', L'/');
|
|
|
|
if (*(p - 1) != L'/') *p++ = L'/';
|
2013-08-06 09:12:48 +04:00
|
|
|
if ((UINT)(p - path + numberof(temp)) >= len) return 0;
|
2010-03-16 09:20:23 +03:00
|
|
|
memcpy(p, temp, sizeof(temp));
|
2013-08-06 09:12:48 +04:00
|
|
|
return (UINT)(p - path + numberof(temp) - 1);
|
2010-03-16 09:20:23 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-07 04:37:53 +04:00
|
|
|
static void
|
|
|
|
init_env(void)
|
2004-08-18 06:22:59 +04:00
|
|
|
{
|
2009-03-11 07:16:56 +03:00
|
|
|
static const WCHAR TMPDIR[] = L"TMPDIR";
|
2010-03-12 01:25:22 +03:00
|
|
|
struct {WCHAR name[6], eq, val[_MAX_PATH];} wk;
|
2004-08-18 06:22:59 +04:00
|
|
|
DWORD len;
|
|
|
|
BOOL f;
|
2010-03-12 01:25:22 +03:00
|
|
|
#define env wk.val
|
|
|
|
#define set_env_val(vname) do { \
|
2013-02-28 08:30:26 +04:00
|
|
|
typedef char wk_name_offset[(numberof(wk.name) - (numberof(vname) - 1)) * 2 + 1]; \
|
2013-02-27 08:47:12 +04:00
|
|
|
WCHAR *const buf = wk.name + sizeof(wk_name_offset) / 2; \
|
2010-03-12 01:25:22 +03:00
|
|
|
MEMCPY(buf, vname, WCHAR, numberof(vname) - 1); \
|
|
|
|
_wputenv(buf); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
wk.eq = L'=';
|
2004-08-18 06:22:59 +04:00
|
|
|
|
2009-03-02 06:22:14 +03:00
|
|
|
if (!GetEnvironmentVariableW(L"HOME", env, numberof(env))) {
|
2004-08-18 06:22:59 +04:00
|
|
|
f = FALSE;
|
2009-03-02 06:22:14 +03:00
|
|
|
if (GetEnvironmentVariableW(L"HOMEDRIVE", env, numberof(env)))
|
|
|
|
len = lstrlenW(env);
|
2004-08-18 06:22:59 +04:00
|
|
|
else
|
|
|
|
len = 0;
|
2009-03-02 06:22:14 +03:00
|
|
|
if (GetEnvironmentVariableW(L"HOMEPATH", env + len, numberof(env) - len) || len) {
|
2004-08-18 06:22:59 +04:00
|
|
|
f = TRUE;
|
|
|
|
}
|
2009-03-02 06:22:14 +03:00
|
|
|
else if (GetEnvironmentVariableW(L"USERPROFILE", env, numberof(env))) {
|
2004-08-18 06:22:59 +04:00
|
|
|
f = TRUE;
|
|
|
|
}
|
2009-01-05 06:52:11 +03:00
|
|
|
else if (get_special_folder(CSIDL_PROFILE, env)) {
|
|
|
|
f = TRUE;
|
|
|
|
}
|
|
|
|
else if (get_special_folder(CSIDL_PERSONAL, env)) {
|
|
|
|
f = TRUE;
|
2004-08-18 06:22:59 +04:00
|
|
|
}
|
|
|
|
if (f) {
|
2009-03-02 06:22:14 +03:00
|
|
|
regulate_path(env);
|
2010-03-12 01:25:22 +03:00
|
|
|
set_env_val(L"HOME");
|
2004-08-18 06:22:59 +04:00
|
|
|
}
|
|
|
|
}
|
2007-10-02 15:17:23 +04:00
|
|
|
|
2009-03-02 06:22:14 +03:00
|
|
|
if (!GetEnvironmentVariableW(L"USER", env, numberof(env))) {
|
|
|
|
if (!GetEnvironmentVariableW(L"USERNAME", env, numberof(env)) &&
|
|
|
|
!GetUserNameW(env, (len = numberof(env), &len))) {
|
2007-10-02 15:17:23 +04:00
|
|
|
NTLoginName = "<Unknown>";
|
|
|
|
return;
|
|
|
|
}
|
2010-03-12 01:25:22 +03:00
|
|
|
set_env_val(L"USER");
|
2004-08-18 06:22:59 +04:00
|
|
|
}
|
2009-03-02 06:22:14 +03:00
|
|
|
NTLoginName = strdup(rb_w32_getenv("USER"));
|
2009-03-11 07:16:56 +03:00
|
|
|
|
|
|
|
if (!GetEnvironmentVariableW(TMPDIR, env, numberof(env)) &&
|
|
|
|
!GetEnvironmentVariableW(L"TMP", env, numberof(env)) &&
|
|
|
|
!GetEnvironmentVariableW(L"TEMP", env, numberof(env)) &&
|
2010-03-16 09:20:23 +03:00
|
|
|
rb_w32_system_tmpdir(env, numberof(env))) {
|
|
|
|
set_env_val(TMPDIR);
|
2009-03-11 07:16:56 +03:00
|
|
|
}
|
2010-03-12 01:25:22 +03:00
|
|
|
|
|
|
|
#undef env
|
|
|
|
#undef set_env_val
|
2004-08-18 06:22:59 +04:00
|
|
|
}
|
|
|
|
|
2008-07-22 12:22:32 +04:00
|
|
|
|
|
|
|
typedef BOOL (WINAPI *cancel_io_t)(HANDLE);
|
|
|
|
static cancel_io_t cancel_io = NULL;
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-07-22 12:22:32 +04:00
|
|
|
static void
|
|
|
|
init_func(void)
|
|
|
|
{
|
|
|
|
if (!cancel_io)
|
2010-11-08 05:03:40 +03:00
|
|
|
cancel_io = (cancel_io_t)get_proc_address("kernel32", "CancelIo", NULL);
|
2008-07-22 12:22:32 +04:00
|
|
|
}
|
|
|
|
|
2005-07-16 10:59:05 +04:00
|
|
|
static void init_stdhandle(void);
|
2005-02-10 06:06:43 +03:00
|
|
|
|
2012-04-16 11:08:27 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION >= 80
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-02-16 10:46:24 +03:00
|
|
|
static void
|
|
|
|
invalid_parameter(const wchar_t *expr, const wchar_t *func, const wchar_t *file, unsigned int line, uintptr_t dummy)
|
2006-02-24 05:19:44 +03:00
|
|
|
{
|
|
|
|
// nothing to do
|
|
|
|
}
|
2009-02-16 10:46:24 +03:00
|
|
|
|
|
|
|
int ruby_w32_rtc_error;
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-02-16 10:46:24 +03:00
|
|
|
static int __cdecl
|
|
|
|
rtc_error_handler(int e, const char *src, int line, const char *exe, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
VALUE str;
|
|
|
|
|
|
|
|
if (!ruby_w32_rtc_error) return 0;
|
|
|
|
str = rb_sprintf("%s:%d: ", src, line);
|
|
|
|
va_start(ap, fmt);
|
|
|
|
rb_str_vcatf(str, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
rb_str_cat(str, "\n", 1);
|
|
|
|
rb_write_error2(RSTRING_PTR(str), RSTRING_LEN(str));
|
|
|
|
return 0;
|
|
|
|
}
|
2006-02-24 05:19:44 +03:00
|
|
|
#endif
|
|
|
|
|
2007-04-25 10:28:20 +04:00
|
|
|
static CRITICAL_SECTION select_mutex;
|
2008-07-18 09:59:46 +04:00
|
|
|
static int NtSocketsInitialized = 0;
|
|
|
|
static st_table *socklist = NULL;
|
2012-06-04 10:39:40 +04:00
|
|
|
static st_table *conlist = NULL;
|
2006-07-31 11:58:34 +04:00
|
|
|
static char *envarea;
|
2012-03-15 07:57:02 +04:00
|
|
|
static char *uenvarea;
|
2008-07-18 09:59:46 +04:00
|
|
|
|
2012-06-04 10:39:40 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
struct constat {
|
|
|
|
struct {
|
|
|
|
int state, seq[16];
|
|
|
|
WORD attr;
|
|
|
|
COORD saved;
|
|
|
|
} vt100;
|
|
|
|
};
|
|
|
|
enum {constat_init = -2, constat_esc = -1, constat_seq = 0};
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static int
|
|
|
|
free_conlist(st_data_t key, st_data_t val, st_data_t arg)
|
|
|
|
{
|
|
|
|
xfree((struct constat *)val);
|
|
|
|
return ST_DELETE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static void
|
|
|
|
constat_delete(HANDLE h)
|
|
|
|
{
|
|
|
|
if (conlist) {
|
|
|
|
st_data_t key = (st_data_t)h, val;
|
|
|
|
st_delete(conlist, &key, &val);
|
|
|
|
xfree((struct constat *)val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-07-31 11:58:34 +04:00
|
|
|
static void
|
|
|
|
exit_handler(void)
|
|
|
|
{
|
2008-07-18 09:59:46 +04:00
|
|
|
if (NtSocketsInitialized) {
|
2006-07-31 11:58:34 +04:00
|
|
|
WSACleanup();
|
2011-10-20 17:55:31 +04:00
|
|
|
if (socklist) {
|
|
|
|
st_free_table(socklist);
|
|
|
|
socklist = NULL;
|
|
|
|
}
|
|
|
|
DeleteCriticalSection(&select_mutex);
|
2008-07-18 09:59:46 +04:00
|
|
|
NtSocketsInitialized = 0;
|
2006-07-31 11:58:34 +04:00
|
|
|
}
|
2012-06-04 10:39:40 +04:00
|
|
|
if (conlist) {
|
|
|
|
st_foreach(conlist, free_conlist, 0);
|
|
|
|
st_free_table(conlist);
|
|
|
|
conlist = NULL;
|
|
|
|
}
|
2006-07-31 11:58:34 +04:00
|
|
|
if (envarea) {
|
|
|
|
FreeEnvironmentStrings(envarea);
|
|
|
|
envarea = NULL;
|
|
|
|
}
|
2012-03-15 07:57:02 +04:00
|
|
|
if (uenvarea) {
|
|
|
|
free(uenvarea);
|
|
|
|
uenvarea = NULL;
|
|
|
|
}
|
2006-07-31 11:58:34 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2008-07-18 09:59:46 +04:00
|
|
|
static void
|
|
|
|
StartSockets(void)
|
|
|
|
{
|
|
|
|
WORD version;
|
|
|
|
WSADATA retdata;
|
|
|
|
|
|
|
|
//
|
2013-05-19 07:10:21 +04:00
|
|
|
// initialize the winsock interface and insure that it's
|
2008-07-18 09:59:46 +04:00
|
|
|
// cleaned up at exit.
|
|
|
|
//
|
|
|
|
version = MAKEWORD(2, 0);
|
|
|
|
if (WSAStartup(version, &retdata))
|
|
|
|
rb_fatal ("Unable to locate winsock library!\n");
|
|
|
|
if (LOBYTE(retdata.wVersion) != 2)
|
|
|
|
rb_fatal("could not find version 2 of winsock dll\n");
|
|
|
|
|
2011-10-20 17:55:31 +04:00
|
|
|
InitializeCriticalSection(&select_mutex);
|
2008-07-18 09:59:46 +04:00
|
|
|
|
|
|
|
NtSocketsInitialized = 1;
|
|
|
|
}
|
|
|
|
|
2012-07-24 10:05:29 +04:00
|
|
|
#define MAKE_SOCKDATA(af, fl) ((int)((((int)af)<<4)|((fl)&0xFFFF)))
|
|
|
|
#define GET_FAMILY(v) ((int)(((v)>>4)&0xFFFF))
|
|
|
|
#define GET_FLAGS(v) ((int)((v)&0xFFFF))
|
|
|
|
|
2011-10-20 17:55:31 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
static inline int
|
|
|
|
socklist_insert(SOCKET sock, int flag)
|
|
|
|
{
|
|
|
|
if (!socklist)
|
|
|
|
socklist = st_init_numtable();
|
|
|
|
return st_insert(socklist, (st_data_t)sock, (st_data_t)flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static inline int
|
|
|
|
socklist_lookup(SOCKET sock, int *flagp)
|
|
|
|
{
|
|
|
|
st_data_t data;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!socklist)
|
|
|
|
return 0;
|
|
|
|
ret = st_lookup(socklist, (st_data_t)sock, (st_data_t *)&data);
|
|
|
|
if (ret && flagp)
|
|
|
|
*flagp = (int)data;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static inline int
|
|
|
|
socklist_delete(SOCKET *sockp, int *flagp)
|
|
|
|
{
|
|
|
|
st_data_t key;
|
|
|
|
st_data_t data;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!socklist)
|
|
|
|
return 0;
|
|
|
|
key = (st_data_t)*sockp;
|
|
|
|
if (flagp)
|
|
|
|
data = (st_data_t)*flagp;
|
|
|
|
ret = st_delete(socklist, &key, &data);
|
|
|
|
if (ret) {
|
|
|
|
*sockp = (SOCKET)key;
|
|
|
|
if (flagp)
|
|
|
|
*flagp = (int)data;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Initialization stuff
|
|
|
|
//
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-01-20 07:45:32 +03:00
|
|
|
void
|
2007-09-29 12:45:24 +04:00
|
|
|
rb_w32_sysinit(int *argc, char ***argv)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2012-04-16 11:08:27 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION >= 80
|
2007-02-15 14:50:28 +03:00
|
|
|
static void set_pioinfo_extra(void);
|
|
|
|
|
2009-02-16 10:46:24 +03:00
|
|
|
_CrtSetReportMode(_CRT_ASSERT, 0);
|
2006-02-24 05:19:44 +03:00
|
|
|
_set_invalid_parameter_handler(invalid_parameter);
|
2009-02-16 10:46:24 +03:00
|
|
|
_RTC_SetErrorFunc(rtc_error_handler);
|
2007-02-15 14:50:28 +03:00
|
|
|
set_pioinfo_extra();
|
2012-06-04 16:54:00 +04:00
|
|
|
#else
|
|
|
|
SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOGPFAULTERRORBOX);
|
2006-02-24 05:19:44 +03:00
|
|
|
#endif
|
|
|
|
|
2009-03-05 08:52:51 +03:00
|
|
|
get_version();
|
|
|
|
|
2005-05-18 06:08:00 +04:00
|
|
|
//
|
|
|
|
// subvert cmd.exe's feeble attempt at command line parsing
|
|
|
|
//
|
2005-05-18 09:10:09 +04:00
|
|
|
*argc = rb_w32_cmdvector(GetCommandLine(), argv);
|
2005-05-18 06:08:00 +04:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Now set up the correct time stuff
|
|
|
|
//
|
|
|
|
|
|
|
|
tzset();
|
|
|
|
|
2004-08-18 06:22:59 +04:00
|
|
|
init_env();
|
|
|
|
|
2008-07-22 12:22:32 +04:00
|
|
|
init_func();
|
|
|
|
|
2005-02-10 06:06:43 +03:00
|
|
|
init_stdhandle();
|
|
|
|
|
2006-07-31 11:58:34 +04:00
|
|
|
atexit(exit_handler);
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
// Initialize Winsock
|
|
|
|
StartSockets();
|
|
|
|
}
|
|
|
|
|
2004-06-09 07:47:08 +04:00
|
|
|
char *
|
2005-07-16 10:59:05 +04:00
|
|
|
getlogin(void)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2008-06-01 23:55:25 +04:00
|
|
|
return (char *)NTLoginName;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
#define MAXCHILDNUM 256 /* max num of child processes */
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2003-07-30 10:10:09 +04:00
|
|
|
static struct ChildRecord {
|
2001-11-13 06:59:20 +03:00
|
|
|
HANDLE hProcess; /* process handle */
|
2005-05-14 18:57:53 +04:00
|
|
|
rb_pid_t pid; /* process id */
|
2001-11-13 06:59:20 +03:00
|
|
|
} ChildRecord[MAXCHILDNUM];
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-11-13 06:59:20 +03:00
|
|
|
#define FOREACH_CHILD(v) do { \
|
|
|
|
struct ChildRecord* v; \
|
|
|
|
for (v = ChildRecord; v < ChildRecord + sizeof(ChildRecord) / sizeof(ChildRecord[0]); ++v)
|
|
|
|
#define END_FOREACH_CHILD } while (0)
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-11-13 06:59:20 +03:00
|
|
|
static struct ChildRecord *
|
2005-05-14 18:57:53 +04:00
|
|
|
FindChildSlot(rb_pid_t pid)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
FOREACH_CHILD(child) {
|
|
|
|
if (child->pid == pid) {
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
} END_FOREACH_CHILD;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-12-04 17:31:37 +03:00
|
|
|
static struct ChildRecord *
|
|
|
|
FindChildSlotByHandle(HANDLE h)
|
|
|
|
{
|
|
|
|
|
|
|
|
FOREACH_CHILD(child) {
|
|
|
|
if (child->hProcess == h) {
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
} END_FOREACH_CHILD;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-11-13 06:59:20 +03:00
|
|
|
static void
|
|
|
|
CloseChildHandle(struct ChildRecord *child)
|
|
|
|
{
|
|
|
|
HANDLE h = child->hProcess;
|
|
|
|
child->hProcess = NULL;
|
|
|
|
child->pid = 0;
|
|
|
|
CloseHandle(h);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-11-13 06:59:20 +03:00
|
|
|
static struct ChildRecord *
|
|
|
|
FindFreeChildSlot(void)
|
|
|
|
{
|
|
|
|
FOREACH_CHILD(child) {
|
|
|
|
if (!child->pid) {
|
|
|
|
child->pid = -1; /* lock the slot */
|
|
|
|
child->hProcess = NULL;
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
} END_FOREACH_CHILD;
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
|
2003-09-05 19:00:33 +04:00
|
|
|
/*
|
|
|
|
ruby -lne 'BEGIN{$cmds = Hash.new(0); $mask = 1}'
|
|
|
|
-e '$cmds[$_.downcase] |= $mask' -e '$mask <<= 1 if ARGF.eof'
|
|
|
|
-e 'END{$cmds.sort.each{|n,f|puts " \"\\#{f.to_s(8)}\" #{n.dump} + 1,"}}'
|
|
|
|
98cmd ntcmd
|
|
|
|
*/
|
2007-07-13 10:02:18 +04:00
|
|
|
static const char *const szInternalCmds[] = {
|
2012-04-23 15:47:02 +04:00
|
|
|
"\2" "assoc",
|
|
|
|
"\3" "break",
|
|
|
|
"\3" "call",
|
|
|
|
"\3" "cd",
|
|
|
|
"\1" "chcp",
|
|
|
|
"\3" "chdir",
|
|
|
|
"\3" "cls",
|
|
|
|
"\2" "color",
|
|
|
|
"\3" "copy",
|
|
|
|
"\1" "ctty",
|
|
|
|
"\3" "date",
|
|
|
|
"\3" "del",
|
|
|
|
"\3" "dir",
|
|
|
|
"\3" "echo",
|
|
|
|
"\2" "endlocal",
|
|
|
|
"\3" "erase",
|
|
|
|
"\3" "exit",
|
|
|
|
"\3" "for",
|
|
|
|
"\2" "ftype",
|
|
|
|
"\3" "goto",
|
|
|
|
"\3" "if",
|
|
|
|
"\1" "lfnfor",
|
|
|
|
"\1" "lh",
|
|
|
|
"\1" "lock",
|
|
|
|
"\3" "md",
|
|
|
|
"\3" "mkdir",
|
|
|
|
"\2" "move",
|
|
|
|
"\3" "path",
|
|
|
|
"\3" "pause",
|
|
|
|
"\2" "popd",
|
|
|
|
"\3" "prompt",
|
|
|
|
"\2" "pushd",
|
|
|
|
"\3" "rd",
|
|
|
|
"\3" "rem",
|
|
|
|
"\3" "ren",
|
|
|
|
"\3" "rename",
|
|
|
|
"\3" "rmdir",
|
|
|
|
"\3" "set",
|
|
|
|
"\2" "setlocal",
|
|
|
|
"\3" "shift",
|
|
|
|
"\2" "start",
|
|
|
|
"\3" "time",
|
|
|
|
"\2" "title",
|
|
|
|
"\1" "truename",
|
|
|
|
"\3" "type",
|
|
|
|
"\1" "unlock",
|
|
|
|
"\3" "ver",
|
|
|
|
"\3" "verify",
|
|
|
|
"\3" "vol",
|
1999-01-20 07:45:32 +03:00
|
|
|
};
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2003-07-18 10:00:24 +04:00
|
|
|
static int
|
|
|
|
internal_match(const void *key, const void *elem)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2012-04-23 15:47:02 +04:00
|
|
|
return strcmp(key, (*(const char *const *)elem) + 1);
|
2003-07-18 10:00:24 +04:00
|
|
|
}
|
2001-09-25 05:47:47 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2003-07-18 10:00:24 +04:00
|
|
|
static int
|
2007-07-13 10:02:18 +04:00
|
|
|
is_command_com(const char *interp)
|
2003-07-18 10:00:24 +04:00
|
|
|
{
|
2007-07-13 10:02:18 +04:00
|
|
|
int i = strlen(interp) - 11;
|
2003-07-18 10:00:24 +04:00
|
|
|
|
2003-09-05 19:36:21 +04:00
|
|
|
if ((i == 0 || i > 0 && isdirsep(interp[i-1])) &&
|
2003-09-05 19:00:33 +04:00
|
|
|
strcasecmp(interp+i, "command.com") == 0) {
|
2007-07-13 10:02:18 +04:00
|
|
|
return 1;
|
2003-09-05 19:00:33 +04:00
|
|
|
}
|
2007-07-13 10:02:18 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-12 20:21:45 +03:00
|
|
|
static int internal_cmd_match(const char *cmdname, int nt);
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2007-07-13 10:02:18 +04:00
|
|
|
static int
|
|
|
|
is_internal_cmd(const char *cmd, int nt)
|
|
|
|
{
|
2009-01-12 20:21:45 +03:00
|
|
|
char cmdname[9], *b = cmdname, c;
|
2007-07-13 10:02:18 +04:00
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
do {
|
|
|
|
if (!(c = *cmd++)) return 0;
|
|
|
|
} while (isspace(c));
|
2011-02-14 07:17:01 +03:00
|
|
|
if (c == '@')
|
|
|
|
return 1;
|
2003-07-18 10:00:24 +04:00
|
|
|
while (isalpha(c)) {
|
|
|
|
*b++ = tolower(c);
|
|
|
|
if (b == cmdname + sizeof(cmdname)) return 0;
|
2003-08-01 10:54:28 +04:00
|
|
|
c = *cmd++;
|
2003-07-18 10:00:24 +04:00
|
|
|
}
|
|
|
|
if (c == '.') c = *cmd;
|
|
|
|
switch (c) {
|
|
|
|
case '<': case '>': case '|':
|
|
|
|
return 1;
|
|
|
|
case '\0': case ' ': case '\t': case '\n':
|
|
|
|
break;
|
|
|
|
default:
|
2001-09-25 05:47:47 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2003-07-18 10:00:24 +04:00
|
|
|
*b = 0;
|
2009-01-12 20:21:45 +03:00
|
|
|
return internal_cmd_match(cmdname, nt);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-01-12 20:21:45 +03:00
|
|
|
static int
|
|
|
|
internal_cmd_match(const char *cmdname, int nt)
|
|
|
|
{
|
|
|
|
char **nm;
|
|
|
|
|
2003-09-05 19:00:33 +04:00
|
|
|
nm = bsearch(cmdname, szInternalCmds,
|
2003-07-18 10:00:24 +04:00
|
|
|
sizeof(szInternalCmds) / sizeof(*szInternalCmds),
|
|
|
|
sizeof(*szInternalCmds),
|
2003-09-05 19:00:33 +04:00
|
|
|
internal_match);
|
2012-04-23 15:47:02 +04:00
|
|
|
if (!nm || !(nm[0][0] & (nt ? 2 : 1)))
|
2003-07-18 10:00:24 +04:00
|
|
|
return 0;
|
|
|
|
return 1;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-08-13 09:45:20 +04:00
|
|
|
SOCKET
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_get_osfhandle(int fh)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
|
|
|
return _get_osfhandle(fh);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-01-12 20:21:45 +03:00
|
|
|
static int
|
2013-06-30 05:59:25 +04:00
|
|
|
join_argv(char *cmd, char *const *argv, BOOL escape, UINT cp, int backslash)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
2005-09-12 15:40:40 +04:00
|
|
|
const char *p, *s;
|
|
|
|
char *q, *const *t;
|
2010-05-17 16:15:47 +04:00
|
|
|
int len, n, bs, quote;
|
2004-02-16 09:45:32 +03:00
|
|
|
|
2010-05-17 16:15:47 +04:00
|
|
|
for (t = argv, q = cmd, len = 0; p = *t; t++) {
|
2004-02-16 09:45:32 +03:00
|
|
|
quote = 0;
|
|
|
|
s = p;
|
2009-03-21 02:17:42 +03:00
|
|
|
if (!*p || strpbrk(p, " \t\"'")) {
|
2004-02-16 09:45:32 +03:00
|
|
|
quote = 1;
|
2010-05-17 16:15:47 +04:00
|
|
|
len++;
|
|
|
|
if (q) *q++ = '"';
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
for (bs = 0; *p; ++p) {
|
|
|
|
switch (*p) {
|
|
|
|
case '\\':
|
|
|
|
++bs;
|
|
|
|
break;
|
|
|
|
case '"':
|
2010-05-17 16:15:47 +04:00
|
|
|
len += n = p - s;
|
|
|
|
if (q) {
|
|
|
|
memcpy(q, s, n);
|
|
|
|
q += n;
|
|
|
|
}
|
|
|
|
s = p;
|
|
|
|
len += ++bs;
|
|
|
|
if (q) {
|
|
|
|
memset(q, '\\', bs);
|
|
|
|
q += bs;
|
|
|
|
}
|
|
|
|
bs = 0;
|
2004-02-16 09:45:32 +03:00
|
|
|
break;
|
2009-01-12 20:21:45 +03:00
|
|
|
case '<': case '>': case '|': case '^':
|
|
|
|
if (escape && !quote) {
|
2010-05-17 16:15:47 +04:00
|
|
|
len += (n = p - s) + 1;
|
|
|
|
if (q) {
|
|
|
|
memcpy(q, s, n);
|
|
|
|
q += n;
|
|
|
|
*q++ = '^';
|
|
|
|
}
|
|
|
|
s = p;
|
2009-01-12 20:21:45 +03:00
|
|
|
break;
|
|
|
|
}
|
2004-02-16 09:45:32 +03:00
|
|
|
default:
|
|
|
|
bs = 0;
|
2013-06-30 05:59:16 +04:00
|
|
|
p = CharNextExA(cp, p, 0) - 1;
|
2004-02-16 09:45:32 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-05-17 16:15:47 +04:00
|
|
|
len += (n = p - s) + 1;
|
|
|
|
if (quote) len++;
|
|
|
|
if (q) {
|
|
|
|
memcpy(q, s, n);
|
2013-06-30 05:59:25 +04:00
|
|
|
if (backslash > 0) {
|
|
|
|
--backslash;
|
|
|
|
q[n] = 0;
|
|
|
|
translate_char(q, '/', '\\', cp);
|
|
|
|
}
|
2010-05-17 16:15:47 +04:00
|
|
|
q += n;
|
|
|
|
if (quote) *q++ = '"';
|
|
|
|
*q++ = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (q > cmd) --len;
|
|
|
|
if (q) {
|
|
|
|
if (q > cmd) --q;
|
|
|
|
*q = '\0';
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
2010-05-17 16:15:47 +04:00
|
|
|
return len;
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
|
2008-12-20 12:28:29 +03:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
#else
|
|
|
|
# define MAXPATHLEN 512
|
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-01-27 14:31:48 +03:00
|
|
|
#define STRNDUPV(ptr, v, src, len) \
|
|
|
|
(((char *)memcpy(((ptr) = ALLOCV((v), (len) + 1)), (src), (len)))[len] = 0)
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-12-20 12:28:29 +03:00
|
|
|
static int
|
|
|
|
check_spawn_mode(int mode)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2003-01-06 07:30:27 +03:00
|
|
|
switch (mode) {
|
|
|
|
case P_NOWAIT:
|
|
|
|
case P_OVERLAY:
|
2008-12-20 12:28:29 +03:00
|
|
|
return 0;
|
2003-01-06 07:30:27 +03:00
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-12-20 12:28:29 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-12-20 12:28:29 +03:00
|
|
|
static rb_pid_t
|
|
|
|
child_result(struct ChildRecord *child, int mode)
|
|
|
|
{
|
|
|
|
DWORD exitcode;
|
2003-01-06 07:30:27 +03:00
|
|
|
|
2003-01-04 09:26:10 +03:00
|
|
|
if (!child) {
|
|
|
|
return -1;
|
|
|
|
}
|
2003-01-06 07:30:27 +03:00
|
|
|
|
2012-04-15 04:06:13 +04:00
|
|
|
if (mode == P_OVERLAY) {
|
2003-10-21 10:10:12 +04:00
|
|
|
WaitForSingleObject(child->hProcess, INFINITE);
|
2003-10-21 10:23:51 +04:00
|
|
|
GetExitCodeProcess(child->hProcess, &exitcode);
|
|
|
|
CloseChildHandle(child);
|
|
|
|
_exit(exitcode);
|
2003-01-06 07:30:27 +03:00
|
|
|
}
|
2012-04-15 04:06:13 +04:00
|
|
|
return child->pid;
|
2003-01-04 09:26:10 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-11-13 06:59:20 +03:00
|
|
|
static struct ChildRecord *
|
2010-09-02 04:02:52 +04:00
|
|
|
CreateChild(const WCHAR *cmd, const WCHAR *prog, SECURITY_ATTRIBUTES *psa,
|
2012-04-07 18:10:30 +04:00
|
|
|
HANDLE hInput, HANDLE hOutput, HANDLE hError, DWORD dwCreationFlags)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
|
|
|
BOOL fRet;
|
2010-09-02 04:02:52 +04:00
|
|
|
STARTUPINFOW aStartupInfo;
|
2001-11-13 06:59:20 +03:00
|
|
|
PROCESS_INFORMATION aProcessInformation;
|
|
|
|
SECURITY_ATTRIBUTES sa;
|
|
|
|
struct ChildRecord *child;
|
|
|
|
|
2003-07-30 10:10:09 +04:00
|
|
|
if (!cmd && !prog) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
child = FindFreeChildSlot();
|
|
|
|
if (!child) {
|
|
|
|
errno = EAGAIN;
|
|
|
|
return NULL;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
if (!psa) {
|
|
|
|
sa.nLength = sizeof (SECURITY_ATTRIBUTES);
|
|
|
|
sa.lpSecurityDescriptor = NULL;
|
2008-07-11 09:43:03 +04:00
|
|
|
sa.bInheritHandle = TRUE;
|
2001-11-13 06:59:20 +03:00
|
|
|
psa = &sa;
|
|
|
|
}
|
|
|
|
|
2010-09-02 04:02:52 +04:00
|
|
|
memset(&aStartupInfo, 0, sizeof(aStartupInfo));
|
|
|
|
memset(&aProcessInformation, 0, sizeof(aProcessInformation));
|
|
|
|
aStartupInfo.cb = sizeof(aStartupInfo);
|
2009-12-28 17:01:12 +03:00
|
|
|
aStartupInfo.dwFlags = STARTF_USESTDHANDLES;
|
|
|
|
if (hInput) {
|
|
|
|
aStartupInfo.hStdInput = hInput;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aStartupInfo.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
}
|
|
|
|
if (hOutput) {
|
|
|
|
aStartupInfo.hStdOutput = hOutput;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aStartupInfo.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
|
|
}
|
|
|
|
if (hError) {
|
|
|
|
aStartupInfo.hStdError = hError;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aStartupInfo.hStdError = GetStdHandle(STD_ERROR_HANDLE);
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
|
2012-04-07 18:10:30 +04:00
|
|
|
dwCreationFlags |= NORMAL_PRIORITY_CLASS;
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2011-04-20 20:15:35 +04:00
|
|
|
if (lstrlenW(cmd) > 32767) {
|
|
|
|
child->pid = 0; /* release the slot */
|
|
|
|
errno = E2BIG;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-20 12:28:29 +03:00
|
|
|
RUBY_CRITICAL({
|
2010-09-02 04:02:52 +04:00
|
|
|
fRet = CreateProcessW(prog, (WCHAR *)cmd, psa, psa,
|
|
|
|
psa->bInheritHandle, dwCreationFlags, NULL, NULL,
|
|
|
|
&aStartupInfo, &aProcessInformation);
|
2008-12-20 12:28:29 +03:00
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!fRet) {
|
|
|
|
child->pid = 0; /* release the slot */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(aProcessInformation.hThread);
|
|
|
|
|
|
|
|
child->hProcess = aProcessInformation.hProcess;
|
|
|
|
child->pid = (rb_pid_t)aProcessInformation.dwProcessId;
|
|
|
|
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-03-22 08:51:58 +03:00
|
|
|
static int
|
|
|
|
is_batch(const char *cmd)
|
|
|
|
{
|
|
|
|
int len = strlen(cmd);
|
|
|
|
if (len <= 4) return 0;
|
|
|
|
cmd += len - 4;
|
|
|
|
if (*cmd++ != '.') return 0;
|
|
|
|
if (strcasecmp(cmd, "bat") == 0) return 1;
|
|
|
|
if (strcasecmp(cmd, "cmd") == 0) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-24 00:13:35 +03:00
|
|
|
static UINT filecp(void);
|
|
|
|
static WCHAR *mbstr_to_wstr(UINT, const char *, int, long *);
|
|
|
|
static char *wstr_to_mbstr(UINT, const WCHAR *, int, long *);
|
|
|
|
#define acp_to_wstr(str, plen) mbstr_to_wstr(CP_ACP, str, -1, plen)
|
|
|
|
#define wstr_to_acp(str, plen) wstr_to_mbstr(CP_ACP, str, -1, plen)
|
|
|
|
#define filecp_to_wstr(str, plen) mbstr_to_wstr(filecp(), str, -1, plen)
|
|
|
|
#define wstr_to_filecp(str, plen) wstr_to_mbstr(filecp(), str, -1, plen)
|
|
|
|
#define utf8_to_wstr(str, plen) mbstr_to_wstr(CP_UTF8, str, -1, plen)
|
|
|
|
#define wstr_to_utf8(str, plen) wstr_to_mbstr(CP_UTF8, str, -1, plen)
|
2010-09-02 04:02:52 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2008-12-20 12:28:29 +03:00
|
|
|
rb_pid_t
|
2013-06-30 05:59:07 +04:00
|
|
|
w32_spawn(int mode, const char *cmd, const char *prog, UINT cp)
|
2008-12-20 12:28:29 +03:00
|
|
|
{
|
|
|
|
char fbuf[MAXPATHLEN];
|
|
|
|
char *p = NULL;
|
|
|
|
const char *shell = NULL;
|
2013-01-23 07:28:25 +04:00
|
|
|
WCHAR *wcmd = NULL, *wshell = NULL;
|
|
|
|
int e = 0;
|
2013-01-23 11:29:15 +04:00
|
|
|
rb_pid_t ret = -1;
|
2011-01-27 09:21:40 +03:00
|
|
|
VALUE v = 0;
|
2011-01-27 14:31:48 +03:00
|
|
|
VALUE v2 = 0;
|
2013-06-30 05:59:25 +04:00
|
|
|
int sep = 0;
|
|
|
|
char *cmd_sep = NULL;
|
2008-12-20 12:28:29 +03:00
|
|
|
|
|
|
|
if (check_spawn_mode(mode)) return -1;
|
|
|
|
|
2003-01-04 09:26:10 +03:00
|
|
|
if (prog) {
|
2008-07-27 04:15:31 +04:00
|
|
|
if (!(p = dln_find_exe_r(prog, NULL, fbuf, sizeof(fbuf)))) {
|
2004-02-20 06:57:36 +03:00
|
|
|
shell = prog;
|
|
|
|
}
|
2009-03-21 02:17:42 +03:00
|
|
|
else {
|
|
|
|
shell = p;
|
2013-06-30 05:59:16 +04:00
|
|
|
translate_char(p, '/', '\\', cp);
|
2009-03-21 02:17:42 +03:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
2003-09-05 20:25:55 +04:00
|
|
|
else {
|
|
|
|
int redir = -1;
|
2007-07-13 10:02:18 +04:00
|
|
|
int nt;
|
2004-08-27 05:14:30 +04:00
|
|
|
while (ISSPACE(*cmd)) cmd++;
|
2013-06-30 05:59:16 +04:00
|
|
|
if ((shell = getenv("RUBYSHELL")) && (redir = has_redirection(cmd, cp))) {
|
2013-06-30 05:59:25 +04:00
|
|
|
size_t shell_len = strlen(shell);
|
|
|
|
char *tmp = ALLOCV(v, shell_len + strlen(cmd) + sizeof(" -c ") + 2);
|
|
|
|
memcpy(tmp, shell, shell_len + 1);
|
|
|
|
translate_char(tmp, '/', '\\', cp);
|
|
|
|
sprintf(tmp + shell_len, " -c \"%s\"", cmd);
|
2011-01-27 09:21:40 +03:00
|
|
|
cmd = tmp;
|
2003-01-04 09:26:10 +03:00
|
|
|
}
|
2003-09-05 20:25:55 +04:00
|
|
|
else if ((shell = getenv("COMSPEC")) &&
|
2007-07-13 10:02:18 +04:00
|
|
|
(nt = !is_command_com(shell),
|
2013-06-30 05:59:16 +04:00
|
|
|
(redir < 0 ? has_redirection(cmd, cp) : redir) ||
|
2007-07-13 10:02:18 +04:00
|
|
|
is_internal_cmd(cmd, nt))) {
|
2011-01-27 09:21:40 +03:00
|
|
|
char *tmp = ALLOCV(v, strlen(shell) + strlen(cmd) + sizeof(" /c ") + (nt ? 2 : 0));
|
|
|
|
sprintf(tmp, nt ? "%s /c \"%s\"" : "%s /c %s", shell, cmd);
|
|
|
|
cmd = tmp;
|
2003-01-04 09:26:10 +03:00
|
|
|
}
|
2003-09-05 20:25:55 +04:00
|
|
|
else {
|
2009-10-16 11:10:08 +04:00
|
|
|
int len = 0, quote = (*cmd == '"') ? '"' : (*cmd == '\'') ? '\'' : 0;
|
2013-06-30 05:59:25 +04:00
|
|
|
int slash = 0;
|
2013-06-30 05:59:16 +04:00
|
|
|
for (prog = cmd + !!quote;; prog = CharNextExA(cp, prog, 0)) {
|
2013-06-30 05:59:25 +04:00
|
|
|
if (*prog == '/') slash = 1;
|
2009-03-21 02:17:42 +03:00
|
|
|
if (!*prog) {
|
2008-12-23 10:50:57 +03:00
|
|
|
len = prog - cmd;
|
2013-06-30 05:59:25 +04:00
|
|
|
if (slash) {
|
|
|
|
STRNDUPV(p, v2, cmd, len);
|
|
|
|
cmd = p;
|
|
|
|
}
|
2009-03-21 02:17:42 +03:00
|
|
|
shell = cmd;
|
2008-12-23 10:50:57 +03:00
|
|
|
break;
|
|
|
|
}
|
2009-03-22 08:51:58 +03:00
|
|
|
if ((unsigned char)*prog == quote) {
|
2009-03-21 02:17:42 +03:00
|
|
|
len = prog++ - cmd - 1;
|
2013-07-05 06:12:55 +04:00
|
|
|
STRNDUPV(p, v2, cmd + 1, len);
|
2009-03-21 02:17:42 +03:00
|
|
|
shell = p;
|
2004-03-02 10:30:35 +03:00
|
|
|
break;
|
|
|
|
}
|
2009-03-21 02:17:42 +03:00
|
|
|
if (quote) continue;
|
2009-03-22 08:51:58 +03:00
|
|
|
if (ISSPACE(*prog) || strchr("<>|*?\"", *prog)) {
|
2004-08-27 05:14:30 +04:00
|
|
|
len = prog - cmd;
|
2013-06-30 05:59:25 +04:00
|
|
|
STRNDUPV(p, v2, cmd, len + (slash ? strlen(prog) : 0));
|
|
|
|
if (slash) {
|
|
|
|
cmd = p;
|
|
|
|
sep = *(cmd_sep = &p[len]);
|
|
|
|
*cmd_sep = '\0';
|
|
|
|
}
|
2009-03-21 02:17:42 +03:00
|
|
|
shell = p;
|
2004-03-02 10:30:35 +03:00
|
|
|
break;
|
|
|
|
}
|
2009-03-21 02:17:42 +03:00
|
|
|
}
|
|
|
|
shell = dln_find_exe_r(shell, NULL, fbuf, sizeof(fbuf));
|
2013-06-30 05:59:25 +04:00
|
|
|
if (p && slash) translate_char(p, '/', '\\', cp);
|
2009-03-22 08:51:58 +03:00
|
|
|
if (!shell) {
|
2009-03-23 08:32:26 +03:00
|
|
|
shell = p ? p : cmd;
|
2009-03-21 02:17:42 +03:00
|
|
|
}
|
|
|
|
else {
|
2009-03-22 08:51:58 +03:00
|
|
|
len = strlen(shell);
|
|
|
|
if (strchr(shell, ' ')) quote = -1;
|
|
|
|
if (shell == fbuf) {
|
|
|
|
p = fbuf;
|
|
|
|
}
|
|
|
|
else if (shell != p && strchr(shell, '/')) {
|
2011-01-27 14:31:48 +03:00
|
|
|
STRNDUPV(p, v2, shell, len);
|
2009-03-22 08:51:58 +03:00
|
|
|
shell = p;
|
|
|
|
}
|
2013-06-30 05:59:16 +04:00
|
|
|
if (p) translate_char(p, '/', '\\', cp);
|
2009-03-22 08:51:58 +03:00
|
|
|
if (is_batch(shell)) {
|
|
|
|
int alen = strlen(prog);
|
2011-01-27 09:21:40 +03:00
|
|
|
cmd = p = ALLOCV(v, len + alen + (quote ? 2 : 0) + 1);
|
2009-03-22 08:51:58 +03:00
|
|
|
if (quote) *p++ = '"';
|
|
|
|
memcpy(p, shell, len);
|
|
|
|
p += len;
|
|
|
|
if (quote) *p++ = '"';
|
|
|
|
memcpy(p, prog, alen + 1);
|
|
|
|
shell = 0;
|
|
|
|
}
|
2004-03-02 10:30:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2013-06-30 05:59:07 +04:00
|
|
|
if (!e && shell && !(wshell = mbstr_to_wstr(cp, shell, -1, NULL))) e = E2BIG;
|
2011-01-27 14:31:48 +03:00
|
|
|
if (v2) ALLOCV_END(v2);
|
2013-06-30 05:59:25 +04:00
|
|
|
if (cmd_sep) *cmd_sep = sep;
|
|
|
|
if (!e && cmd && !(wcmd = mbstr_to_wstr(cp, cmd, -1, NULL))) e = E2BIG;
|
|
|
|
if (v) ALLOCV_END(v);
|
2010-09-02 04:02:52 +04:00
|
|
|
|
2013-01-23 07:28:25 +04:00
|
|
|
if (!e) {
|
|
|
|
ret = child_result(CreateChild(wcmd, wshell, NULL, NULL, NULL, NULL, 0), mode);
|
|
|
|
}
|
2010-09-02 04:12:43 +04:00
|
|
|
free(wshell);
|
|
|
|
free(wcmd);
|
2013-01-23 07:28:25 +04:00
|
|
|
if (e) errno = e;
|
2010-09-02 04:12:43 +04:00
|
|
|
return ret;
|
2008-12-20 12:28:29 +03:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2013-06-30 05:59:07 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
rb_pid_t
|
|
|
|
rb_w32_spawn(int mode, const char *cmd, const char *prog)
|
|
|
|
{
|
|
|
|
/* assume ACP */
|
|
|
|
return w32_spawn(mode, cmd, prog, filecp());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
rb_pid_t
|
|
|
|
rb_w32_uspawn(int mode, const char *cmd, const char *prog)
|
|
|
|
{
|
|
|
|
return w32_spawn(mode, cmd, prog, CP_UTF8);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2008-12-20 12:28:29 +03:00
|
|
|
rb_pid_t
|
2013-06-30 05:59:03 +04:00
|
|
|
w32_aspawn_flags(int mode, const char *prog, char *const *argv, DWORD flags, UINT cp)
|
2008-12-20 12:28:29 +03:00
|
|
|
{
|
2010-03-05 11:51:12 +03:00
|
|
|
int c_switch = 0;
|
|
|
|
size_t len;
|
2009-01-14 07:19:28 +03:00
|
|
|
BOOL ntcmd = FALSE, tmpnt;
|
2008-12-20 12:28:29 +03:00
|
|
|
const char *shell;
|
|
|
|
char *cmd, fbuf[MAXPATHLEN];
|
2013-01-23 07:28:25 +04:00
|
|
|
WCHAR *wcmd = NULL, *wprog = NULL;
|
|
|
|
int e = 0;
|
2013-01-23 11:29:15 +04:00
|
|
|
rb_pid_t ret = -1;
|
2011-01-27 09:21:40 +03:00
|
|
|
VALUE v = 0;
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2008-12-20 12:28:29 +03:00
|
|
|
if (check_spawn_mode(mode)) return -1;
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2008-12-20 12:28:29 +03:00
|
|
|
if (!prog) prog = argv[0];
|
|
|
|
if ((shell = getenv("COMSPEC")) &&
|
2009-01-14 07:19:28 +03:00
|
|
|
internal_cmd_match(prog, tmpnt = !is_command_com(shell))) {
|
|
|
|
ntcmd = tmpnt;
|
2008-12-20 12:28:29 +03:00
|
|
|
prog = shell;
|
|
|
|
c_switch = 1;
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
2008-12-20 12:28:29 +03:00
|
|
|
else if ((cmd = dln_find_exe_r(prog, NULL, fbuf, sizeof(fbuf)))) {
|
|
|
|
if (cmd == prog) strlcpy(cmd = fbuf, prog, sizeof(fbuf));
|
2013-06-30 05:59:16 +04:00
|
|
|
translate_char(cmd, '/', '\\', cp);
|
2008-12-20 12:28:29 +03:00
|
|
|
prog = cmd;
|
|
|
|
}
|
|
|
|
else if (strchr(prog, '/')) {
|
2009-03-22 08:51:58 +03:00
|
|
|
len = strlen(prog);
|
|
|
|
if (len < sizeof(fbuf))
|
|
|
|
strlcpy(cmd = fbuf, prog, sizeof(fbuf));
|
|
|
|
else
|
2011-01-27 15:33:57 +03:00
|
|
|
STRNDUPV(cmd, v, prog, len);
|
2013-06-30 05:59:16 +04:00
|
|
|
translate_char(cmd, '/', '\\', cp);
|
2009-03-22 08:51:58 +03:00
|
|
|
prog = cmd;
|
2008-12-20 12:28:29 +03:00
|
|
|
}
|
2009-03-22 08:51:58 +03:00
|
|
|
if (c_switch || is_batch(prog)) {
|
2008-12-20 12:28:29 +03:00
|
|
|
char *progs[2];
|
|
|
|
progs[0] = (char *)prog;
|
|
|
|
progs[1] = NULL;
|
2013-06-30 05:59:25 +04:00
|
|
|
len = join_argv(NULL, progs, ntcmd, cp, 1);
|
2008-12-20 12:28:29 +03:00
|
|
|
if (c_switch) len += 3;
|
2009-03-22 08:51:58 +03:00
|
|
|
else ++argv;
|
2013-06-30 05:59:25 +04:00
|
|
|
if (argv[0]) len += join_argv(NULL, argv, ntcmd, cp, 0);
|
2011-01-27 09:21:40 +03:00
|
|
|
cmd = ALLOCV(v, len);
|
2013-06-30 05:59:25 +04:00
|
|
|
join_argv(cmd, progs, ntcmd, cp, 1);
|
2008-12-20 12:28:29 +03:00
|
|
|
if (c_switch) strlcat(cmd, " /c", len);
|
2013-06-30 05:59:25 +04:00
|
|
|
if (argv[0]) join_argv(cmd + strlcat(cmd, " ", len), argv, ntcmd, cp, 0);
|
2009-03-22 08:51:58 +03:00
|
|
|
prog = c_switch ? shell : 0;
|
2008-12-20 12:28:29 +03:00
|
|
|
}
|
|
|
|
else {
|
2013-06-30 05:59:25 +04:00
|
|
|
len = join_argv(NULL, argv, FALSE, cp, 1);
|
2011-01-27 09:21:40 +03:00
|
|
|
cmd = ALLOCV(v, len);
|
2013-06-30 05:59:25 +04:00
|
|
|
join_argv(cmd, argv, FALSE, cp, 1);
|
2008-12-20 12:28:29 +03:00
|
|
|
}
|
2009-03-22 08:51:58 +03:00
|
|
|
|
2013-06-30 05:59:03 +04:00
|
|
|
if (!e && cmd && !(wcmd = mbstr_to_wstr(cp, cmd, -1, NULL))) e = E2BIG;
|
2011-01-27 09:21:40 +03:00
|
|
|
if (v) ALLOCV_END(v);
|
2013-06-30 05:59:03 +04:00
|
|
|
if (!e && prog && !(wprog = mbstr_to_wstr(cp, prog, -1, NULL))) e = E2BIG;
|
2010-09-02 04:02:52 +04:00
|
|
|
|
2013-01-23 07:28:25 +04:00
|
|
|
if (!e) {
|
|
|
|
ret = child_result(CreateChild(wcmd, wprog, NULL, NULL, NULL, NULL, flags), mode);
|
|
|
|
}
|
2010-09-02 04:12:43 +04:00
|
|
|
free(wprog);
|
|
|
|
free(wcmd);
|
2013-01-23 07:28:25 +04:00
|
|
|
if (e) errno = e;
|
2010-09-02 04:12:43 +04:00
|
|
|
return ret;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2013-06-30 05:59:03 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
rb_pid_t
|
|
|
|
rb_w32_aspawn_flags(int mode, const char *prog, char *const *argv, DWORD flags)
|
|
|
|
{
|
|
|
|
/* assume ACP */
|
|
|
|
return w32_aspawn_flags(mode, prog, argv, flags, filecp());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
rb_pid_t
|
|
|
|
rb_w32_uaspawn_flags(int mode, const char *prog, char *const *argv, DWORD flags)
|
|
|
|
{
|
|
|
|
return w32_aspawn_flags(mode, prog, argv, flags, CP_UTF8);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
2012-04-07 18:10:30 +04:00
|
|
|
rb_pid_t
|
|
|
|
rb_w32_aspawn(int mode, const char *prog, char *const *argv)
|
|
|
|
{
|
|
|
|
return rb_w32_aspawn_flags(mode, prog, argv, 0);
|
|
|
|
}
|
|
|
|
|
2013-06-30 05:59:03 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
rb_pid_t
|
|
|
|
rb_w32_uaspawn(int mode, const char *prog, char *const *argv)
|
|
|
|
{
|
|
|
|
return rb_w32_uaspawn_flags(mode, prog, argv, 0);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
typedef struct _NtCmdLineElement {
|
2003-07-18 10:00:24 +04:00
|
|
|
struct _NtCmdLineElement *next;
|
1999-01-20 07:45:32 +03:00
|
|
|
char *str;
|
|
|
|
int len;
|
|
|
|
int flags;
|
|
|
|
} NtCmdLineElement;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Possible values for flags
|
|
|
|
//
|
|
|
|
|
|
|
|
#define NTGLOB 0x1 // element contains a wildcard
|
|
|
|
#define NTMALLOC 0x2 // string in element was malloc'ed
|
|
|
|
#define NTSTRING 0x4 // element contains a quoted string
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-14 17:41:02 +04:00
|
|
|
static int
|
2008-07-10 12:22:04 +04:00
|
|
|
insert(const char *path, VALUE vinfo, void *enc)
|
2000-05-29 06:10:22 +04:00
|
|
|
{
|
|
|
|
NtCmdLineElement *tmpcurr;
|
2003-07-18 10:00:24 +04:00
|
|
|
NtCmdLineElement ***tail = (NtCmdLineElement ***)vinfo;
|
2000-05-29 06:10:22 +04:00
|
|
|
|
2006-10-30 17:23:46 +03:00
|
|
|
tmpcurr = (NtCmdLineElement *)malloc(sizeof(NtCmdLineElement));
|
|
|
|
if (!tmpcurr) return -1;
|
2000-05-29 06:10:22 +04:00
|
|
|
MEMZERO(tmpcurr, NtCmdLineElement, 1);
|
|
|
|
tmpcurr->len = strlen(path);
|
2007-03-30 06:50:58 +04:00
|
|
|
tmpcurr->str = strdup(path);
|
2006-10-30 17:23:46 +03:00
|
|
|
if (!tmpcurr->str) return -1;
|
2000-05-29 06:10:22 +04:00
|
|
|
tmpcurr->flags |= NTMALLOC;
|
2003-07-18 10:00:24 +04:00
|
|
|
**tail = tmpcurr;
|
|
|
|
*tail = &tmpcurr->next;
|
2005-09-14 17:41:02 +04:00
|
|
|
|
|
|
|
return 0;
|
2000-05-29 06:10:22 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2003-07-18 10:00:24 +04:00
|
|
|
static NtCmdLineElement **
|
|
|
|
cmdglob(NtCmdLineElement *patt, NtCmdLineElement **tail)
|
2000-05-29 06:10:22 +04:00
|
|
|
{
|
2000-07-05 20:01:49 +04:00
|
|
|
char buffer[MAXPATHLEN], *buf = buffer;
|
2000-09-25 17:39:58 +04:00
|
|
|
char *p;
|
2003-07-18 10:00:24 +04:00
|
|
|
NtCmdLineElement **last = tail;
|
2006-10-30 17:23:46 +03:00
|
|
|
int status;
|
2000-05-29 06:10:22 +04:00
|
|
|
|
2000-07-05 20:01:49 +04:00
|
|
|
if (patt->len >= MAXPATHLEN)
|
2006-10-30 17:23:46 +03:00
|
|
|
if (!(buf = malloc(patt->len + 1))) return 0;
|
2000-07-05 20:01:49 +04:00
|
|
|
|
2007-03-23 05:30:53 +03:00
|
|
|
strlcpy(buf, patt->str, patt->len + 1);
|
2000-09-25 17:39:58 +04:00
|
|
|
buf[patt->len] = '\0';
|
|
|
|
for (p = buf; *p; p = CharNext(p))
|
|
|
|
if (*p == '\\')
|
|
|
|
*p = '/';
|
2006-10-30 17:23:46 +03:00
|
|
|
status = ruby_brace_glob(buf, 0, insert, (VALUE)&tail);
|
2000-07-05 20:01:49 +04:00
|
|
|
if (buf != buffer)
|
|
|
|
free(buf);
|
2000-05-29 06:10:22 +04:00
|
|
|
|
2006-10-30 17:23:46 +03:00
|
|
|
if (status || last == tail) return 0;
|
2000-05-29 06:10:22 +04:00
|
|
|
if (patt->flags & NTMALLOC)
|
|
|
|
free(patt->str);
|
2003-07-18 10:00:24 +04:00
|
|
|
free(patt);
|
|
|
|
return tail;
|
2000-05-29 06:10:22 +04:00
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-05-02 23:05:03 +04:00
|
|
|
//
|
1999-01-20 07:45:32 +03:00
|
|
|
// Check a command string to determine if it has I/O redirection
|
|
|
|
// characters that require it to be executed by a command interpreter
|
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2004-06-09 07:47:08 +04:00
|
|
|
static int
|
2013-06-30 05:59:16 +04:00
|
|
|
has_redirection(const char *cmd, UINT cp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
char quote = '\0';
|
2003-07-18 10:00:24 +04:00
|
|
|
const char *ptr;
|
2001-11-14 21:41:46 +03:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
2009-08-04 17:13:17 +04:00
|
|
|
// Scan the string, looking for redirection characters (< or >), pipe
|
|
|
|
// character (|) or newline (\n) that are not in a quoted string
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
for (ptr = cmd; *ptr;) {
|
1999-01-20 07:45:32 +03:00
|
|
|
switch (*ptr) {
|
|
|
|
case '\'':
|
|
|
|
case '\"':
|
2003-07-18 10:00:24 +04:00
|
|
|
if (!quote)
|
1999-01-20 07:45:32 +03:00
|
|
|
quote = *ptr;
|
2003-07-18 10:00:24 +04:00
|
|
|
else if (quote == *ptr)
|
|
|
|
quote = '\0';
|
|
|
|
ptr++;
|
1999-01-20 07:45:32 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '>':
|
|
|
|
case '<':
|
2001-11-13 06:59:20 +03:00
|
|
|
case '|':
|
2012-10-25 12:50:55 +04:00
|
|
|
case '&':
|
2009-08-04 17:13:17 +04:00
|
|
|
case '\n':
|
2003-07-18 10:00:24 +04:00
|
|
|
if (!quote)
|
1999-01-20 07:45:32 +03:00
|
|
|
return TRUE;
|
2003-07-18 10:00:24 +04:00
|
|
|
ptr++;
|
|
|
|
break;
|
|
|
|
|
2008-12-20 12:28:29 +03:00
|
|
|
case '%':
|
|
|
|
if (*++ptr != '_' && !ISALPHA(*ptr)) break;
|
|
|
|
while (*++ptr == '_' || ISALNUM(*ptr));
|
|
|
|
if (*ptr++ == '%') return TRUE;
|
|
|
|
break;
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
case '\\':
|
|
|
|
ptr++;
|
|
|
|
default:
|
2013-06-30 05:59:16 +04:00
|
|
|
ptr = CharNextExA(cp, ptr, 0);
|
2003-07-18 10:00:24 +04:00
|
|
|
break;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2003-07-18 10:00:24 +04:00
|
|
|
static inline char *
|
|
|
|
skipspace(char *ptr)
|
|
|
|
{
|
|
|
|
while (ISSPACE(*ptr))
|
|
|
|
ptr++;
|
|
|
|
return ptr;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2011-05-02 23:05:03 +04:00
|
|
|
int
|
2004-11-12 09:15:40 +03:00
|
|
|
rb_w32_cmdvector(const char *cmd, char ***vec)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2008-06-01 23:55:25 +04:00
|
|
|
int globbing, len;
|
2003-07-18 10:00:24 +04:00
|
|
|
int elements, strsz, done;
|
|
|
|
int slashes, escape;
|
|
|
|
char *ptr, *base, *buffer, *cmdline;
|
1999-01-20 07:45:32 +03:00
|
|
|
char **vptr;
|
|
|
|
char quote;
|
2003-07-18 10:00:24 +04:00
|
|
|
NtCmdLineElement *curr, **tail;
|
|
|
|
NtCmdLineElement *cmdhead = NULL, **cmdtail = &cmdhead;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// just return if we don't have a command line
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
while (ISSPACE(*cmd))
|
|
|
|
cmd++;
|
|
|
|
if (!*cmd) {
|
1999-01-20 07:45:32 +03:00
|
|
|
*vec = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
ptr = cmdline = strdup(cmd);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Ok, parse the command line, building a list of CmdLineElements.
|
2001-11-14 21:41:46 +03:00
|
|
|
// When we've finished, and it's an input command (meaning that it's
|
2011-05-02 23:05:03 +04:00
|
|
|
// the processes argv), we'll do globing and then build the argument
|
1999-01-20 07:45:32 +03:00
|
|
|
// vector.
|
2013-05-19 07:10:21 +04:00
|
|
|
// The outer loop does one iteration for each element seen.
|
|
|
|
// The inner loop does one iteration for each character in the element.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
while (*(ptr = skipspace(ptr))) {
|
1999-01-20 07:45:32 +03:00
|
|
|
base = ptr;
|
2003-07-18 10:00:24 +04:00
|
|
|
quote = slashes = globbing = escape = 0;
|
|
|
|
for (done = 0; !done && *ptr; ) {
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Switch on the current character. We only care about the
|
|
|
|
// white-space characters, the wild-card characters, and the
|
|
|
|
// quote characters.
|
|
|
|
//
|
|
|
|
|
|
|
|
switch (*ptr) {
|
2000-05-29 06:10:22 +04:00
|
|
|
case '\\':
|
2006-06-01 14:13:41 +04:00
|
|
|
if (quote != '\'') slashes++;
|
2000-05-29 06:10:22 +04:00
|
|
|
break;
|
2003-07-18 10:00:24 +04:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
case ' ':
|
|
|
|
case '\t':
|
2003-07-18 10:00:24 +04:00
|
|
|
case '\n':
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// if we're not in a string, then we're finished with this
|
1999-01-20 07:45:32 +03:00
|
|
|
// element
|
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
if (!quote) {
|
|
|
|
*ptr = 0;
|
|
|
|
done = 1;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
case '?':
|
2003-07-18 10:00:24 +04:00
|
|
|
case '[':
|
|
|
|
case '{':
|
2011-05-02 23:05:03 +04:00
|
|
|
//
|
1999-01-20 07:45:32 +03:00
|
|
|
// record the fact that this element has a wildcard character
|
2001-11-14 21:41:46 +03:00
|
|
|
// N.B. Don't glob if inside a single quoted string
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
if (quote != '\'')
|
1999-01-20 07:45:32 +03:00
|
|
|
globbing++;
|
2003-07-18 10:00:24 +04:00
|
|
|
slashes = 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '\'':
|
|
|
|
case '\"':
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// if we're already in a string, see if this is the
|
2011-05-02 23:05:03 +04:00
|
|
|
// terminating close-quote. If it is, we're finished with
|
2013-05-19 07:10:21 +04:00
|
|
|
// the string, but not necessarily with the element.
|
2001-11-14 21:41:46 +03:00
|
|
|
// If we're not already in a string, start one.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
if (!(slashes & 1)) {
|
|
|
|
if (!quote)
|
|
|
|
quote = *ptr;
|
2004-02-26 06:15:08 +03:00
|
|
|
else if (quote == *ptr) {
|
2004-08-12 05:56:25 +04:00
|
|
|
if (quote == '"' && quote == ptr[1])
|
|
|
|
ptr++;
|
1999-01-20 07:45:32 +03:00
|
|
|
quote = '\0';
|
2004-02-26 06:15:08 +03:00
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2004-08-12 05:56:25 +04:00
|
|
|
escape++;
|
2003-07-18 10:00:24 +04:00
|
|
|
slashes = 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
break;
|
2003-07-18 10:00:24 +04:00
|
|
|
|
|
|
|
default:
|
|
|
|
ptr = CharNext(ptr);
|
|
|
|
slashes = 0;
|
|
|
|
continue;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2003-07-18 10:00:24 +04:00
|
|
|
ptr++;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// when we get here, we've got a pair of pointers to the element,
|
1999-01-20 07:45:32 +03:00
|
|
|
// base and ptr. Base points to the start of the element while ptr
|
|
|
|
// points to the character following the element.
|
|
|
|
//
|
|
|
|
|
|
|
|
len = ptr - base;
|
2003-11-06 05:42:10 +03:00
|
|
|
if (done) --len;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
2011-05-02 23:05:03 +04:00
|
|
|
// if it's an input vector element and it's enclosed by quotes,
|
1999-01-20 07:45:32 +03:00
|
|
|
// we can remove them.
|
|
|
|
//
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
if (escape) {
|
2004-02-26 06:15:08 +03:00
|
|
|
char *p = base, c;
|
2003-07-18 10:00:24 +04:00
|
|
|
slashes = quote = 0;
|
|
|
|
while (p < base + len) {
|
2004-02-26 06:15:08 +03:00
|
|
|
switch (c = *p) {
|
2003-07-18 10:00:24 +04:00
|
|
|
case '\\':
|
|
|
|
p++;
|
2006-06-01 14:13:41 +04:00
|
|
|
if (quote != '\'') slashes++;
|
2003-07-18 10:00:24 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '\'':
|
|
|
|
case '"':
|
2004-08-12 05:56:25 +04:00
|
|
|
if (!(slashes & 1) && quote && quote != c) {
|
|
|
|
p++;
|
|
|
|
slashes = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
memcpy(p - ((slashes + 1) >> 1), p + (~slashes & 1),
|
|
|
|
base + len - p);
|
|
|
|
len -= ((slashes + 1) >> 1) + (~slashes & 1);
|
|
|
|
p -= (slashes + 1) >> 1;
|
2003-07-18 10:00:24 +04:00
|
|
|
if (!(slashes & 1)) {
|
2004-08-12 05:56:25 +04:00
|
|
|
if (quote) {
|
|
|
|
if (quote == '"' && quote == *p)
|
|
|
|
p++;
|
2003-07-18 10:00:24 +04:00
|
|
|
quote = '\0';
|
2004-02-26 06:15:08 +03:00
|
|
|
}
|
2004-08-12 05:56:25 +04:00
|
|
|
else
|
|
|
|
quote = c;
|
2003-07-18 10:00:24 +04:00
|
|
|
}
|
2004-08-12 05:56:25 +04:00
|
|
|
else
|
|
|
|
p++;
|
|
|
|
slashes = 0;
|
2003-07-18 10:00:24 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
p = CharNext(p);
|
|
|
|
slashes = 0;
|
|
|
|
break;
|
2000-05-29 06:10:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2006-10-30 17:23:46 +03:00
|
|
|
curr = (NtCmdLineElement *)calloc(sizeof(NtCmdLineElement), 1);
|
|
|
|
if (!curr) goto do_nothing;
|
1999-01-20 07:45:32 +03:00
|
|
|
curr->str = base;
|
|
|
|
curr->len = len;
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
if (globbing && (tail = cmdglob(curr, cmdtail))) {
|
|
|
|
cmdtail = tail;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
else {
|
2003-07-18 10:00:24 +04:00
|
|
|
*cmdtail = curr;
|
|
|
|
cmdtail = &curr->next;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2011-05-02 23:05:03 +04:00
|
|
|
// Almost done!
|
1999-01-20 07:45:32 +03:00
|
|
|
// Count up the elements, then allocate space for a vector of pointers
|
|
|
|
// (argv) and a string table for the elements.
|
2011-05-02 23:05:03 +04:00
|
|
|
//
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
for (elements = 0, strsz = 0, curr = cmdhead; curr; curr = curr->next) {
|
1999-01-20 07:45:32 +03:00
|
|
|
elements++;
|
|
|
|
strsz += (curr->len + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
len = (elements+1)*sizeof(char *) + strsz;
|
2006-10-30 17:23:46 +03:00
|
|
|
buffer = (char *)malloc(len);
|
|
|
|
if (!buffer) {
|
|
|
|
do_nothing:
|
|
|
|
while (curr = cmdhead) {
|
|
|
|
cmdhead = curr->next;
|
|
|
|
if (curr->flags & NTMALLOC) free(curr->str);
|
|
|
|
free(curr);
|
|
|
|
}
|
|
|
|
free(cmdline);
|
|
|
|
for (vptr = *vec; *vptr; ++vptr);
|
|
|
|
return vptr - *vec;
|
|
|
|
}
|
2011-05-02 23:05:03 +04:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// make vptr point to the start of the buffer
|
2001-11-14 21:41:46 +03:00
|
|
|
// and ptr point to the area we'll consider the string table.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// buffer (*vec)
|
|
|
|
// |
|
|
|
|
// V ^---------------------V
|
|
|
|
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
|
|
|
|
// | | | .... | NULL | | ..... |\0 | | ..... |\0 |...
|
|
|
|
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
|
|
|
|
// |- elements+1 -| ^ 1st element ^ 2nd element
|
|
|
|
|
|
|
|
vptr = (char **) buffer;
|
|
|
|
|
|
|
|
ptr = buffer + (elements+1) * sizeof(char *);
|
|
|
|
|
2003-07-18 10:00:24 +04:00
|
|
|
while (curr = cmdhead) {
|
2007-03-30 06:50:58 +04:00
|
|
|
strlcpy(ptr, curr->str, curr->len + 1);
|
1999-01-20 07:45:32 +03:00
|
|
|
*vptr++ = ptr;
|
|
|
|
ptr += curr->len + 1;
|
2003-07-18 10:00:24 +04:00
|
|
|
cmdhead = curr->next;
|
|
|
|
if (curr->flags & NTMALLOC) free(curr->str);
|
|
|
|
free(curr);
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2003-07-18 10:00:24 +04:00
|
|
|
*vptr = 0;
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
*vec = (char **) buffer;
|
2000-05-29 06:10:22 +04:00
|
|
|
free(cmdline);
|
1999-01-20 07:45:32 +03:00
|
|
|
return elements;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// UNIX compatible directory access functions for NT
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// The idea here is to read all the directory names into a string table
|
|
|
|
// (separated by nulls) and when one of the other dir functions is called
|
2011-05-02 23:05:03 +04:00
|
|
|
// return the pointer to the current file name.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2007-05-29 05:53:14 +04:00
|
|
|
#define GetBit(bits, i) ((bits)[(i) / CHAR_BIT] & (1 << (i) % CHAR_BIT))
|
|
|
|
#define SetBit(bits, i) ((bits)[(i) / CHAR_BIT] |= (1 << (i) % CHAR_BIT))
|
|
|
|
|
|
|
|
#define BitOfIsDir(n) ((n) * 2)
|
|
|
|
#define BitOfIsRep(n) ((n) * 2 + 1)
|
|
|
|
#define DIRENT_PER_CHAR (CHAR_BIT / 2)
|
2004-01-05 13:01:54 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2009-01-12 10:45:31 +03:00
|
|
|
static HANDLE
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
open_dir_handle(const WCHAR *filename, WIN32_FIND_DATAW *fd)
|
2009-01-12 10:45:31 +03:00
|
|
|
{
|
|
|
|
HANDLE fh;
|
2009-02-02 04:59:05 +03:00
|
|
|
static const WCHAR wildcard[] = L"\\*";
|
|
|
|
WCHAR *scanname;
|
|
|
|
WCHAR *p;
|
|
|
|
int len;
|
2011-01-27 12:50:30 +03:00
|
|
|
VALUE v;
|
2009-01-12 10:45:31 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Create the search pattern
|
|
|
|
//
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
len = lstrlenW(filename);
|
2011-01-27 12:50:30 +03:00
|
|
|
scanname = ALLOCV_N(WCHAR, v, len + sizeof(wildcard) / sizeof(WCHAR));
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
lstrcpyW(scanname, filename);
|
2009-02-02 04:59:05 +03:00
|
|
|
p = CharPrevW(scanname, scanname + len);
|
|
|
|
if (*p == L'/' || *p == L'\\' || *p == L':')
|
|
|
|
lstrcatW(scanname, wildcard + 1);
|
2009-01-12 10:45:31 +03:00
|
|
|
else
|
2009-02-02 04:59:05 +03:00
|
|
|
lstrcatW(scanname, wildcard);
|
2009-01-12 10:45:31 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// do the FindFirstFile call
|
|
|
|
//
|
2009-02-02 04:59:05 +03:00
|
|
|
fh = FindFirstFileW(scanname, fd);
|
2011-01-27 12:50:30 +03:00
|
|
|
ALLOCV_END(v);
|
2009-01-12 10:45:31 +03:00
|
|
|
if (fh == INVALID_HANDLE_VALUE) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
}
|
|
|
|
return fh;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2009-02-06 11:23:00 +03:00
|
|
|
static DIR *
|
2011-04-28 11:22:18 +04:00
|
|
|
opendir_internal(WCHAR *wpath, const char *filename)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2011-04-28 11:22:18 +04:00
|
|
|
struct stati64 sbuf;
|
|
|
|
WIN32_FIND_DATAW fd;
|
|
|
|
HANDLE fh;
|
2009-02-06 11:23:00 +03:00
|
|
|
DIR *p;
|
|
|
|
long len;
|
|
|
|
long idx;
|
2009-02-02 04:59:05 +03:00
|
|
|
WCHAR *tmpW;
|
|
|
|
char *tmp;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-04-28 11:22:18 +04:00
|
|
|
//
|
|
|
|
// check to see if we've got a directory
|
|
|
|
//
|
|
|
|
if (wstati64(wpath, &sbuf) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!(sbuf.st_mode & S_IFDIR) &&
|
|
|
|
(!ISALPHA(filename[0]) || filename[1] != ':' || filename[2] != '\0' ||
|
|
|
|
((1 << ((filename[0] & 0x5f) - 'A')) & GetLogicalDrives()) == 0)) {
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
fh = open_dir_handle(wpath, &fd);
|
2009-01-12 10:45:31 +03:00
|
|
|
if (fh == INVALID_HANDLE_VALUE) {
|
2007-03-18 02:42:00 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
2009-01-12 10:45:31 +03:00
|
|
|
// Get us a DIR structure
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
2009-01-12 10:45:31 +03:00
|
|
|
p = calloc(sizeof(DIR), 1);
|
|
|
|
if (p == NULL)
|
1999-01-20 07:45:32 +03:00
|
|
|
return NULL;
|
|
|
|
|
2007-05-29 07:30:14 +04:00
|
|
|
idx = 0;
|
2007-03-23 05:30:53 +03:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// loop finding all the files that match the wildcard
|
|
|
|
// (which should be all of them in this directory!).
|
|
|
|
// the variable idx should point one past the null terminator
|
|
|
|
// of the previous string found.
|
|
|
|
//
|
2007-05-29 07:30:14 +04:00
|
|
|
do {
|
2011-04-28 11:22:18 +04:00
|
|
|
len = lstrlenW(fd.cFileName) + 1;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// bump the string table size by enough for the
|
2011-05-02 23:05:03 +04:00
|
|
|
// new name and it's null terminator
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
2009-02-02 04:59:05 +03:00
|
|
|
tmpW = realloc(p->start, (idx + len) * sizeof(WCHAR));
|
|
|
|
if (!tmpW) {
|
2007-05-29 07:30:14 +04:00
|
|
|
error:
|
|
|
|
rb_w32_closedir(p);
|
|
|
|
FindClose(fh);
|
|
|
|
errno = ENOMEM;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-02-02 04:59:05 +03:00
|
|
|
p->start = tmpW;
|
2011-04-28 11:22:18 +04:00
|
|
|
memcpy(&p->start[idx], fd.cFileName, len * sizeof(WCHAR));
|
2004-01-05 13:01:54 +03:00
|
|
|
|
2007-05-29 05:53:14 +04:00
|
|
|
if (p->nfiles % DIRENT_PER_CHAR == 0) {
|
|
|
|
tmp = realloc(p->bits, p->nfiles / DIRENT_PER_CHAR + 1);
|
2007-03-23 05:30:53 +03:00
|
|
|
if (!tmp)
|
2006-10-30 17:23:46 +03:00
|
|
|
goto error;
|
2007-03-23 05:30:53 +03:00
|
|
|
p->bits = tmp;
|
2007-05-29 05:53:14 +04:00
|
|
|
p->bits[p->nfiles / DIRENT_PER_CHAR] = 0;
|
2004-01-05 13:01:54 +03:00
|
|
|
}
|
2011-04-28 11:22:18 +04:00
|
|
|
if (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
|
2007-05-29 05:53:14 +04:00
|
|
|
SetBit(p->bits, BitOfIsDir(p->nfiles));
|
2011-04-28 11:22:18 +04:00
|
|
|
if (fd.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
|
2007-05-29 05:53:14 +04:00
|
|
|
SetBit(p->bits, BitOfIsRep(p->nfiles));
|
2004-01-05 13:01:54 +03:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
p->nfiles++;
|
2007-03-23 05:30:53 +03:00
|
|
|
idx += len;
|
2011-04-28 11:22:18 +04:00
|
|
|
} while (FindNextFileW(fh, &fd));
|
2004-01-05 13:01:54 +03:00
|
|
|
FindClose(fh);
|
1999-01-20 07:45:32 +03:00
|
|
|
p->size = idx;
|
|
|
|
p->curr = p->start;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-11-24 00:13:35 +03:00
|
|
|
static inline UINT
|
|
|
|
filecp(void)
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
{
|
|
|
|
UINT cp = AreFileApisANSI() ? CP_ACP : CP_OEMCP;
|
2010-11-24 00:13:35 +03:00
|
|
|
return cp;
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static char *
|
2010-11-24 00:13:35 +03:00
|
|
|
wstr_to_mbstr(UINT cp, const WCHAR *wstr, int clen, long *plen)
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
{
|
|
|
|
char *ptr;
|
2013-08-05 12:33:22 +04:00
|
|
|
int len = WideCharToMultiByte(cp, 0, wstr, clen, NULL, 0, NULL, NULL);
|
|
|
|
if (!(ptr = malloc(len))) return 0;
|
|
|
|
WideCharToMultiByte(cp, 0, wstr, clen, ptr, len, NULL, NULL);
|
|
|
|
if (plen) {
|
|
|
|
/* exclude NUL only if NUL-terminated string */
|
|
|
|
if (clen == -1) --len;
|
|
|
|
*plen = len;
|
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static WCHAR *
|
2010-11-24 00:13:35 +03:00
|
|
|
mbstr_to_wstr(UINT cp, const char *str, int clen, long *plen)
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
{
|
|
|
|
WCHAR *ptr;
|
2013-08-05 12:33:22 +04:00
|
|
|
int len = MultiByteToWideChar(cp, 0, str, clen, NULL, 0);
|
|
|
|
if (!(ptr = malloc(sizeof(WCHAR) * len))) return 0;
|
|
|
|
MultiByteToWideChar(cp, 0, str, clen, ptr, len);
|
|
|
|
if (plen) {
|
|
|
|
/* exclude NUL only if NUL-terminated string */
|
|
|
|
if (clen == -1) --len;
|
|
|
|
*plen = len;
|
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-02-06 11:23:00 +03:00
|
|
|
DIR *
|
|
|
|
rb_w32_opendir(const char *filename)
|
|
|
|
{
|
2011-04-28 11:22:18 +04:00
|
|
|
DIR *ret;
|
|
|
|
WCHAR *wpath = filecp_to_wstr(filename, NULL);
|
|
|
|
if (!wpath)
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
return NULL;
|
2011-04-28 11:22:18 +04:00
|
|
|
ret = opendir_internal(wpath, filename);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
2009-02-06 11:23:00 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-04-28 11:22:18 +04:00
|
|
|
DIR *
|
|
|
|
rb_w32_uopendir(const char *filename)
|
|
|
|
{
|
|
|
|
DIR *ret;
|
|
|
|
WCHAR *wpath = utf8_to_wstr(filename, NULL);
|
|
|
|
if (!wpath)
|
2009-02-06 11:23:00 +03:00
|
|
|
return NULL;
|
2011-04-28 11:22:18 +04:00
|
|
|
ret = opendir_internal(wpath, filename);
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
free(wpath);
|
2011-04-28 11:22:18 +04:00
|
|
|
return ret;
|
2009-02-06 11:23:00 +03:00
|
|
|
}
|
|
|
|
|
2006-01-01 08:49:01 +03:00
|
|
|
//
|
|
|
|
// Move to next entry
|
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2006-01-01 08:49:01 +03:00
|
|
|
static void
|
|
|
|
move_to_next_entry(DIR *dirp)
|
|
|
|
{
|
|
|
|
if (dirp->curr) {
|
|
|
|
dirp->loc++;
|
2009-02-02 04:59:05 +03:00
|
|
|
dirp->curr += lstrlenW(dirp->curr) + 1;
|
2006-01-01 08:49:01 +03:00
|
|
|
if (dirp->curr >= (dirp->start + dirp->size)) {
|
|
|
|
dirp->curr = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Readdir just returns the current string pointer and bumps the
|
|
|
|
// string pointer to the next entry.
|
|
|
|
//
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-02-06 11:23:00 +03:00
|
|
|
static BOOL
|
|
|
|
win32_direct_conv(const WCHAR *file, struct direct *entry, rb_encoding *dummy)
|
|
|
|
{
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!(entry->d_name = wstr_to_filecp(file, &entry->d_namlen)))
|
2009-02-06 11:23:00 +03:00
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-03-11 07:16:56 +03:00
|
|
|
VALUE
|
|
|
|
rb_w32_conv_from_wchar(const WCHAR *wstr, rb_encoding *enc)
|
2009-02-06 11:23:00 +03:00
|
|
|
{
|
|
|
|
VALUE src;
|
2013-08-06 12:02:20 +04:00
|
|
|
long len = lstrlenW(wstr);
|
|
|
|
int encindex = ENC_TO_ENCINDEX(enc);
|
2009-02-06 11:23:00 +03:00
|
|
|
|
2013-08-06 12:02:20 +04:00
|
|
|
if (encindex == ENCINDEX_UTF_16LE) {
|
|
|
|
return rb_enc_str_new((char *)wstr, len * sizeof(WCHAR), enc);
|
2009-02-06 11:23:00 +03:00
|
|
|
}
|
2013-08-06 12:02:20 +04:00
|
|
|
else {
|
|
|
|
#if SIZEOF_INT < SIZEOF_LONG
|
|
|
|
# error long should equal to int on Windows
|
|
|
|
#endif
|
|
|
|
int clen = rb_long2int(len);
|
|
|
|
len = WideCharToMultiByte(CP_UTF8, 0, wstr, clen, NULL, 0, NULL, NULL);
|
2013-08-06 12:42:25 +04:00
|
|
|
src = rb_enc_str_new(0, len, rb_enc_from_index(ENCINDEX_UTF_8));
|
2013-08-06 12:02:20 +04:00
|
|
|
WideCharToMultiByte(CP_UTF8, 0, wstr, clen, RSTRING_PTR(src), len, NULL, NULL);
|
|
|
|
}
|
|
|
|
switch (encindex) {
|
|
|
|
case ENCINDEX_ASCII:
|
|
|
|
case ENCINDEX_US_ASCII:
|
|
|
|
/* assume UTF-8 */
|
|
|
|
case ENCINDEX_UTF_8:
|
|
|
|
/* do nothing */
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
return rb_str_conv_enc_opts(src, NULL, enc, ECONV_UNDEF_REPLACE, Qnil);
|
2009-03-11 07:16:56 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-03-21 02:17:42 +03:00
|
|
|
char *
|
|
|
|
rb_w32_conv_from_wstr(const WCHAR *wstr, long *lenp, rb_encoding *enc)
|
2009-03-11 07:16:56 +03:00
|
|
|
{
|
2009-03-21 02:17:42 +03:00
|
|
|
VALUE str = rb_w32_conv_from_wchar(wstr, enc);
|
|
|
|
long len;
|
|
|
|
char *ptr;
|
2009-03-11 07:16:56 +03:00
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (NIL_P(str)) return wstr_to_filecp(wstr, lenp);
|
2009-03-21 02:17:42 +03:00
|
|
|
*lenp = len = RSTRING_LEN(str);
|
|
|
|
memcpy(ptr = malloc(len + 1), RSTRING_PTR(str), len);
|
|
|
|
ptr[len] = '\0';
|
|
|
|
return ptr;
|
|
|
|
}
|
2009-02-06 11:23:00 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-03-21 02:17:42 +03:00
|
|
|
static BOOL
|
|
|
|
ruby_direct_conv(const WCHAR *file, struct direct *entry, rb_encoding *enc)
|
|
|
|
{
|
|
|
|
if (!(entry->d_name = rb_w32_conv_from_wstr(file, &entry->d_namlen, enc)))
|
2009-02-06 11:23:00 +03:00
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2009-02-06 11:23:00 +03:00
|
|
|
static struct direct *
|
|
|
|
readdir_internal(DIR *dirp, BOOL (*conv)(const WCHAR *, struct direct *, rb_encoding *), rb_encoding *enc)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2009-02-02 04:59:05 +03:00
|
|
|
static int dummy = 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
if (dirp->curr) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// first set up the structure to return
|
|
|
|
//
|
2009-08-12 09:16:56 +04:00
|
|
|
if (dirp->dirstr.d_name)
|
|
|
|
free(dirp->dirstr.d_name);
|
2009-02-06 11:23:00 +03:00
|
|
|
conv(dirp->curr, &dirp->dirstr, enc);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// Fake inode
|
|
|
|
//
|
|
|
|
dirp->dirstr.d_ino = dummy++;
|
|
|
|
|
2004-01-05 13:01:54 +03:00
|
|
|
//
|
|
|
|
// Attributes
|
|
|
|
//
|
2007-05-29 05:53:14 +04:00
|
|
|
dirp->dirstr.d_isdir = GetBit(dirp->bits, BitOfIsDir(dirp->loc));
|
|
|
|
dirp->dirstr.d_isrep = GetBit(dirp->bits, BitOfIsRep(dirp->loc));
|
2004-01-05 13:01:54 +03:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Now set up for the next call to readdir
|
|
|
|
//
|
|
|
|
|
2006-01-01 08:49:01 +03:00
|
|
|
move_to_next_entry(dirp);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
return &(dirp->dirstr);
|
|
|
|
|
2011-05-02 23:05:03 +04:00
|
|
|
}
|
|
|
|
else
|
1999-01-20 07:45:32 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-02-06 11:23:00 +03:00
|
|
|
struct direct *
|
2012-12-21 17:06:17 +04:00
|
|
|
rb_w32_readdir(DIR *dirp, rb_encoding *enc)
|
2009-02-06 11:23:00 +03:00
|
|
|
{
|
2012-12-21 17:06:17 +04:00
|
|
|
if (!enc || enc == rb_ascii8bit_encoding())
|
2009-02-06 12:18:46 +03:00
|
|
|
return readdir_internal(dirp, win32_direct_conv, NULL);
|
|
|
|
else
|
|
|
|
return readdir_internal(dirp, ruby_direct_conv, enc);
|
2009-02-06 11:23:00 +03:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Telldir returns the current string pointer position
|
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2009-03-11 07:16:56 +03:00
|
|
|
long
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_telldir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2006-01-01 08:49:01 +03:00
|
|
|
return dirp->loc;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Seekdir moves the string pointer to a previously saved position
|
|
|
|
// (Saved by telldir).
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-01-20 07:45:32 +03:00
|
|
|
void
|
2009-03-11 07:16:56 +03:00
|
|
|
rb_w32_seekdir(DIR *dirp, long loc)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2008-08-01 09:54:45 +04:00
|
|
|
if (dirp->loc > loc) rb_w32_rewinddir(dirp);
|
2006-01-01 08:49:01 +03:00
|
|
|
|
|
|
|
while (dirp->curr && dirp->loc < loc) {
|
|
|
|
move_to_next_entry(dirp);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Rewinddir resets the string pointer to the start
|
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_rewinddir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2006-01-01 08:49:01 +03:00
|
|
|
dirp->curr = dirp->start;
|
|
|
|
dirp->loc = 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// This just free's the memory allocated by opendir
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_closedir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2007-03-23 05:30:53 +03:00
|
|
|
if (dirp) {
|
|
|
|
if (dirp->dirstr.d_name)
|
|
|
|
free(dirp->dirstr.d_name);
|
|
|
|
if (dirp->start)
|
|
|
|
free(dirp->start);
|
|
|
|
if (dirp->bits)
|
|
|
|
free(dirp->bits);
|
|
|
|
free(dirp);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2002-06-14 16:21:50 +04:00
|
|
|
#if (defined _MT || defined __MSVCRT__) && !defined __BORLANDC__
|
2000-09-18 13:54:47 +04:00
|
|
|
#define MSVCRT_THREADS
|
|
|
|
#endif
|
2001-02-17 18:17:10 +03:00
|
|
|
#ifdef MSVCRT_THREADS
|
|
|
|
# define MTHREAD_ONLY(x) x
|
|
|
|
# define STHREAD_ONLY(x)
|
2002-06-11 05:27:48 +04:00
|
|
|
#elif defined(__BORLANDC__)
|
|
|
|
# define MTHREAD_ONLY(x)
|
|
|
|
# define STHREAD_ONLY(x)
|
2001-02-17 18:17:10 +03:00
|
|
|
#else
|
|
|
|
# define MTHREAD_ONLY(x)
|
|
|
|
# define STHREAD_ONLY(x) x
|
|
|
|
#endif
|
2000-09-18 13:54:47 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-08-13 09:45:20 +04:00
|
|
|
typedef struct {
|
2007-06-27 15:47:53 +04:00
|
|
|
intptr_t osfhnd; /* underlying OS file HANDLE */
|
|
|
|
char osfile; /* attributes of file (e.g., open in text mode?) */
|
|
|
|
char pipech; /* one char buffer for handles opened on pipes */
|
2000-09-18 13:54:47 +04:00
|
|
|
#ifdef MSVCRT_THREADS
|
1999-08-13 09:45:20 +04:00
|
|
|
int lockinitflag;
|
|
|
|
CRITICAL_SECTION lock;
|
2000-09-01 07:31:05 +04:00
|
|
|
#endif
|
2012-04-16 11:08:27 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION >= 80
|
2005-03-04 20:42:55 +03:00
|
|
|
char textmode;
|
|
|
|
char pipech2[2];
|
|
|
|
#endif
|
1999-08-13 09:45:20 +04:00
|
|
|
} ioinfo;
|
|
|
|
|
2003-05-29 13:11:18 +04:00
|
|
|
#if !defined _CRTIMP || defined __MINGW32__
|
|
|
|
#undef _CRTIMP
|
2000-05-13 20:13:31 +04:00
|
|
|
#define _CRTIMP __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
|
2008-10-04 17:48:20 +04:00
|
|
|
#if !defined(__BORLANDC__)
|
2000-02-18 09:59:36 +03:00
|
|
|
EXTERN_C _CRTIMP ioinfo * __pioinfo[];
|
2011-11-22 13:08:34 +04:00
|
|
|
static inline ioinfo* _pioinfo(int);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2007-02-23 09:07:55 +03:00
|
|
|
#define IOINFO_L2E 5
|
|
|
|
#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
|
|
|
|
#define _osfhnd(i) (_pioinfo(i)->osfhnd)
|
|
|
|
#define _osfile(i) (_pioinfo(i)->osfile)
|
|
|
|
#define _pipech(i) (_pioinfo(i)->pipech)
|
|
|
|
|
2012-04-16 11:08:27 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION >= 80
|
2007-02-15 14:50:28 +03:00
|
|
|
static size_t pioinfo_extra = 0; /* workaround for VC++8 SP1 */
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2007-02-15 14:50:28 +03:00
|
|
|
static void
|
|
|
|
set_pioinfo_extra(void)
|
|
|
|
{
|
2007-02-23 09:07:55 +03:00
|
|
|
int fd;
|
2007-02-15 14:50:28 +03:00
|
|
|
|
2008-08-28 19:21:04 +04:00
|
|
|
fd = _open("NUL", O_RDONLY);
|
2007-02-23 09:07:55 +03:00
|
|
|
for (pioinfo_extra = 0; pioinfo_extra <= 64; pioinfo_extra += sizeof(void *)) {
|
|
|
|
if (_osfhnd(fd) == _get_osfhandle(fd)) {
|
|
|
|
break;
|
|
|
|
}
|
2007-02-15 14:50:28 +03:00
|
|
|
}
|
2008-08-28 19:21:04 +04:00
|
|
|
_close(fd);
|
2007-02-23 09:07:55 +03:00
|
|
|
|
|
|
|
if (pioinfo_extra > 64) {
|
|
|
|
/* not found, maybe something wrong... */
|
|
|
|
pioinfo_extra = 0;
|
2007-02-15 14:50:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define pioinfo_extra 0
|
|
|
|
#endif
|
|
|
|
|
2011-11-22 12:49:47 +04:00
|
|
|
static inline ioinfo*
|
|
|
|
_pioinfo(int fd)
|
|
|
|
{
|
|
|
|
const size_t sizeof_ioinfo = sizeof(ioinfo) + pioinfo_extra;
|
|
|
|
return (ioinfo*)((char*)__pioinfo[fd >> IOINFO_L2E] +
|
|
|
|
(fd & (IOINFO_ARRAY_ELTS - 1)) * sizeof_ioinfo);
|
|
|
|
}
|
|
|
|
|
2002-06-14 16:21:50 +04:00
|
|
|
#define _set_osfhnd(fh, osfh) (void)(_osfhnd(fh) = osfh)
|
|
|
|
#define _set_osflags(fh, flags) (_osfile(fh) = (flags))
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#define FOPEN 0x01 /* file handle open */
|
2008-08-28 16:46:58 +04:00
|
|
|
#define FEOFLAG 0x02 /* end of file has been encountered */
|
|
|
|
#define FPIPE 0x08 /* file handle refers to a pipe */
|
2000-02-18 09:59:36 +03:00
|
|
|
#define FNOINHERIT 0x10 /* file handle opened O_NOINHERIT */
|
1999-08-13 09:45:20 +04:00
|
|
|
#define FAPPEND 0x20 /* file handle opened O_APPEND */
|
|
|
|
#define FDEV 0x40 /* file handle refers to device */
|
|
|
|
#define FTEXT 0x80 /* file handle is in text mode */
|
|
|
|
|
2011-07-15 22:22:42 +04:00
|
|
|
static int is_socket(SOCKET);
|
|
|
|
static int is_console(SOCKET);
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-07-15 09:33:45 +04:00
|
|
|
int
|
|
|
|
rb_w32_io_cancelable_p(int fd)
|
|
|
|
{
|
|
|
|
return cancel_io != NULL && (is_socket(TO_SOCKET(fd)) || !is_console(TO_SOCKET(fd)));
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-08-13 09:45:20 +04:00
|
|
|
static int
|
2007-06-27 15:47:53 +04:00
|
|
|
rb_w32_open_osfhandle(intptr_t osfhandle, int flags)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
|
|
|
int fh;
|
|
|
|
char fileflags; /* _osfile flags */
|
2002-09-29 13:31:58 +04:00
|
|
|
HANDLE hF;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
/* copy relevant flags from second parameter */
|
|
|
|
fileflags = FDEV;
|
|
|
|
|
|
|
|
if (flags & O_APPEND)
|
|
|
|
fileflags |= FAPPEND;
|
|
|
|
|
|
|
|
if (flags & O_TEXT)
|
|
|
|
fileflags |= FTEXT;
|
|
|
|
|
2000-02-18 09:59:36 +03:00
|
|
|
if (flags & O_NOINHERIT)
|
|
|
|
fileflags |= FNOINHERIT;
|
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
/* attempt to allocate a C Runtime file handle */
|
|
|
|
hF = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
|
2010-10-12 18:58:23 +04:00
|
|
|
fh = _open_osfhandle((intptr_t)hF, 0);
|
2002-09-29 13:31:58 +04:00
|
|
|
CloseHandle(hF);
|
|
|
|
if (fh == -1) {
|
|
|
|
errno = EMFILE; /* too many open files */
|
|
|
|
_doserrno = 0L; /* not an OS error */
|
|
|
|
}
|
|
|
|
else {
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fh)->lock)));
|
|
|
|
/* the file is open. now, set the info in _osfhnd array */
|
|
|
|
_set_osfhnd(fh, osfhandle);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
fileflags |= FOPEN; /* mark as open */
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
_set_osflags(fh, fileflags); /* set osfile entry */
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fh)->lock));
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
return fh; /* return handle */
|
|
|
|
}
|
2005-02-10 06:06:43 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-02-10 06:06:43 +03:00
|
|
|
static void
|
2005-07-16 10:59:05 +04:00
|
|
|
init_stdhandle(void)
|
2005-02-10 06:06:43 +03:00
|
|
|
{
|
2006-12-06 17:58:46 +03:00
|
|
|
int nullfd = -1;
|
|
|
|
int keep = 0;
|
|
|
|
#define open_null(fd) \
|
|
|
|
(((nullfd < 0) ? \
|
2011-12-04 05:10:06 +04:00
|
|
|
(nullfd = open("NUL", O_RDWR)) : 0), \
|
2006-12-06 17:58:46 +03:00
|
|
|
((nullfd == (fd)) ? (keep = 1) : dup2(nullfd, fd)), \
|
|
|
|
(fd))
|
|
|
|
|
2005-02-10 06:06:43 +03:00
|
|
|
if (fileno(stdin) < 0) {
|
2006-12-06 17:58:46 +03:00
|
|
|
stdin->_file = open_null(0);
|
2005-02-10 06:06:43 +03:00
|
|
|
}
|
2011-12-14 14:38:12 +04:00
|
|
|
else {
|
|
|
|
setmode(fileno(stdin), O_BINARY);
|
|
|
|
}
|
2005-02-10 06:06:43 +03:00
|
|
|
if (fileno(stdout) < 0) {
|
2006-12-06 17:58:46 +03:00
|
|
|
stdout->_file = open_null(1);
|
2005-02-10 06:06:43 +03:00
|
|
|
}
|
|
|
|
if (fileno(stderr) < 0) {
|
2006-12-06 17:58:46 +03:00
|
|
|
stderr->_file = open_null(2);
|
2005-02-10 06:06:43 +03:00
|
|
|
}
|
2006-12-06 17:58:46 +03:00
|
|
|
if (nullfd >= 0 && !keep) close(nullfd);
|
2007-05-15 10:01:33 +04:00
|
|
|
setvbuf(stderr, NULL, _IONBF, 0);
|
2005-02-10 06:06:43 +03:00
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define _set_osfhnd(fh, osfh) (void)((fh), (osfh))
|
|
|
|
#define _set_osflags(fh, flags) (void)((fh), (flags))
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-02-10 06:06:43 +03:00
|
|
|
static void
|
2005-07-16 10:59:05 +04:00
|
|
|
init_stdhandle(void)
|
2005-02-10 06:06:43 +03:00
|
|
|
{
|
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
#endif
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-01-06 14:05:31 +03:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
static int
|
2007-07-21 12:32:34 +04:00
|
|
|
rb_w32_open_osfhandle(intptr_t osfhandle, int flags)
|
2005-01-06 14:05:31 +03:00
|
|
|
{
|
|
|
|
int fd = _open_osfhandle(osfhandle, flags);
|
|
|
|
if (fd == -1) {
|
|
|
|
errno = EMFILE; /* too many open files */
|
|
|
|
_doserrno = 0L; /* not an OS error */
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-11-16 10:24:21 +03:00
|
|
|
#undef getsockopt
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2000-06-28 12:31:35 +04:00
|
|
|
static int
|
2004-12-06 14:19:27 +03:00
|
|
|
is_socket(SOCKET sock)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2011-10-20 17:55:31 +04:00
|
|
|
if (socklist_lookup(sock, NULL))
|
2008-07-18 09:59:46 +04:00
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
2000-06-28 12:31:35 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-12-07 19:36:29 +03:00
|
|
|
int
|
|
|
|
rb_w32_is_socket(int fd)
|
|
|
|
{
|
|
|
|
return is_socket(TO_SOCKET(fd));
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
2011-05-02 23:05:03 +04:00
|
|
|
// Since the errors returned by the socket error function
|
1999-01-20 07:45:32 +03:00
|
|
|
// WSAGetLastError() are not known by the library routine strerror
|
|
|
|
// we have to roll our own.
|
|
|
|
//
|
|
|
|
|
|
|
|
#undef strerror
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2000-10-31 11:37:47 +03:00
|
|
|
char *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_strerror(int e)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
static char buffer[512];
|
|
|
|
DWORD source = 0;
|
2000-10-31 11:37:47 +03:00
|
|
|
char *p;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2005-07-14 13:33:52 +04:00
|
|
|
#if defined __BORLANDC__ && defined ENOTEMPTY // _sys_errlist is broken
|
|
|
|
switch (e) {
|
|
|
|
case ENAMETOOLONG:
|
|
|
|
return "Filename too long";
|
|
|
|
case ENOTEMPTY:
|
|
|
|
return "Directory not empty";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
if (e < 0 || e > sys_nerr) {
|
|
|
|
if (e < 0)
|
|
|
|
e = GetLastError();
|
2010-10-12 10:54:52 +04:00
|
|
|
#if WSAEWOULDBLOCK != EWOULDBLOCK
|
|
|
|
else if (e >= EADDRINUSE && e <= EWOULDBLOCK) {
|
|
|
|
static int s = -1;
|
|
|
|
int i;
|
|
|
|
if (s < 0)
|
|
|
|
for (s = 0; s < (int)(sizeof(errmap)/sizeof(*errmap)); s++)
|
|
|
|
if (errmap[s].winerr == WSAEWOULDBLOCK)
|
|
|
|
break;
|
|
|
|
for (i = s; i < (int)(sizeof(errmap)/sizeof(*errmap)); i++)
|
|
|
|
if (errmap[i].err == e) {
|
|
|
|
e = errmap[i].winerr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2001-08-24 09:45:55 +04:00
|
|
|
if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM |
|
2010-10-12 11:05:56 +04:00
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS, &source, e,
|
|
|
|
MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US),
|
|
|
|
buffer, sizeof(buffer), NULL) == 0 &&
|
|
|
|
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM |
|
2001-08-24 09:45:55 +04:00
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS, &source, e, 0,
|
2007-03-30 06:50:58 +04:00
|
|
|
buffer, sizeof(buffer), NULL) == 0)
|
2007-03-23 05:30:53 +03:00
|
|
|
strlcpy(buffer, "Unknown Error", sizeof(buffer));
|
2005-07-14 13:33:52 +04:00
|
|
|
}
|
2007-03-23 05:30:53 +03:00
|
|
|
else
|
|
|
|
strlcpy(buffer, strerror(e), sizeof(buffer));
|
2005-07-14 13:33:52 +04:00
|
|
|
|
2005-11-28 07:24:26 +03:00
|
|
|
p = buffer;
|
|
|
|
while ((p = strpbrk(p, "\r\n")) != NULL) {
|
|
|
|
memmove(p, p + 1, strlen(p));
|
2005-07-14 13:33:52 +04:00
|
|
|
}
|
|
|
|
return buffer;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2001-11-14 21:41:46 +03:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// various stubs
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
// Ownership
|
|
|
|
//
|
|
|
|
// Just pretend that everyone is a superuser. NT will let us know if
|
2001-11-14 21:41:46 +03:00
|
|
|
// we don't really have permission to do something.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#define ROOT_UID 0
|
|
|
|
#define ROOT_GID 0
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-05-15 22:36:56 +04:00
|
|
|
rb_uid_t
|
1999-01-20 07:45:32 +03:00
|
|
|
getuid(void)
|
|
|
|
{
|
|
|
|
return ROOT_UID;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-05-15 22:36:56 +04:00
|
|
|
rb_uid_t
|
1999-01-20 07:45:32 +03:00
|
|
|
geteuid(void)
|
|
|
|
{
|
|
|
|
return ROOT_UID;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-05-15 22:36:56 +04:00
|
|
|
rb_gid_t
|
1999-01-20 07:45:32 +03:00
|
|
|
getgid(void)
|
|
|
|
{
|
|
|
|
return ROOT_GID;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-05-15 22:36:56 +04:00
|
|
|
rb_gid_t
|
1999-01-20 07:45:32 +03:00
|
|
|
getegid(void)
|
|
|
|
{
|
|
|
|
return ROOT_GID;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
2005-05-15 22:36:56 +04:00
|
|
|
setuid(rb_uid_t uid)
|
2011-05-02 23:05:03 +04:00
|
|
|
{
|
1999-01-20 07:45:32 +03:00
|
|
|
return (uid == ROOT_UID ? 0 : -1);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
2005-05-15 22:36:56 +04:00
|
|
|
setgid(rb_gid_t gid)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
return (gid == ROOT_GID ? 0 : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// File system stuff
|
|
|
|
//
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
2004-01-19 15:28:14 +03:00
|
|
|
ioctl(int i, int u, ...)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2005-10-14 17:09:11 +04:00
|
|
|
errno = EINVAL;
|
1999-01-20 07:45:32 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_fdset(int fd, fd_set *set)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2012-05-08 16:47:25 +04:00
|
|
|
FD_SET(fd, set);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
2000-06-28 12:31:35 +04:00
|
|
|
#undef FD_CLR
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2000-06-28 12:31:35 +04:00
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_fdclr(int fd, fd_set *set)
|
2000-06-28 12:31:35 +04:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
SOCKET s = TO_SOCKET(fd);
|
|
|
|
|
|
|
|
for (i = 0; i < set->fd_count; i++) {
|
|
|
|
if (set->fd_array[i] == s) {
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
memmove(&set->fd_array[i], &set->fd_array[i+1],
|
|
|
|
sizeof(set->fd_array[0]) * (--set->fd_count - i));
|
2000-06-28 12:31:35 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
#undef FD_ISSET
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-08-13 09:45:20 +04:00
|
|
|
int
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_fdisset(int fd, fd_set *set)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2004-12-15 08:32:53 +03:00
|
|
|
int ret;
|
|
|
|
SOCKET s = TO_SOCKET(fd);
|
|
|
|
if (s == (SOCKET)INVALID_HANDLE_VALUE)
|
|
|
|
return 0;
|
|
|
|
RUBY_CRITICAL(ret = __WSAFDIsSet(s, set));
|
|
|
|
return ret;
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
|
2011-08-30 19:04:11 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
void
|
|
|
|
rb_w32_fd_copy(rb_fdset_t *dst, const fd_set *src, int max)
|
|
|
|
{
|
2011-09-03 01:23:22 +04:00
|
|
|
max = min(src->fd_count, (UINT)max);
|
|
|
|
if ((UINT)dst->capa < (UINT)max) {
|
2011-08-30 19:04:11 +04:00
|
|
|
dst->capa = (src->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
|
|
|
|
dst->fdset = xrealloc(dst->fdset, sizeof(unsigned int) + sizeof(SOCKET) * dst->capa);
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(dst->fdset->fd_array, src->fd_array,
|
|
|
|
max * sizeof(src->fd_array[0]));
|
|
|
|
dst->fdset->fd_count = src->fd_count;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-04-30 18:11:34 +04:00
|
|
|
void
|
2011-05-15 18:51:09 +04:00
|
|
|
rb_w32_fd_dup(rb_fdset_t *dst, const rb_fdset_t *src)
|
2011-04-30 18:11:34 +04:00
|
|
|
{
|
2011-05-02 23:27:56 +04:00
|
|
|
if ((UINT)dst->capa < src->fdset->fd_count) {
|
2011-04-30 18:11:34 +04:00
|
|
|
dst->capa = (src->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
|
|
|
|
dst->fdset = xrealloc(dst->fdset, sizeof(unsigned int) + sizeof(SOCKET) * dst->capa);
|
|
|
|
}
|
2011-05-02 23:05:03 +04:00
|
|
|
|
2011-04-30 18:11:34 +04:00
|
|
|
memcpy(dst->fdset->fd_array, src->fdset->fd_array,
|
|
|
|
src->fdset->fd_count * sizeof(src->fdset->fd_array[0]));
|
2011-08-30 19:04:11 +04:00
|
|
|
dst->fdset->fd_count = src->fdset->fd_count;
|
2011-04-30 18:11:34 +04:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Networking trampolines
|
2011-05-02 23:05:03 +04:00
|
|
|
// These are used to avoid socket startup/shutdown overhead in case
|
2001-11-14 21:41:46 +03:00
|
|
|
// the socket routines aren't used.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
#undef select
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-17 16:20:07 +04:00
|
|
|
static int
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
extract_fd(rb_fdset_t *dst, fd_set *src, int (*func)(SOCKET))
|
2000-06-28 12:31:35 +04:00
|
|
|
{
|
2009-03-10 22:29:51 +03:00
|
|
|
unsigned int s = 0;
|
2011-05-13 10:24:36 +04:00
|
|
|
unsigned int m = 0;
|
|
|
|
if (!src) return 0;
|
2000-06-28 12:31:35 +04:00
|
|
|
|
2005-09-17 06:42:59 +04:00
|
|
|
while (s < src->fd_count) {
|
|
|
|
SOCKET fd = src->fd_array[s];
|
2000-06-28 12:31:35 +04:00
|
|
|
|
2011-05-13 10:24:36 +04:00
|
|
|
if (!func || (*func)(fd)) {
|
|
|
|
if (dst) { /* move it to dst */
|
|
|
|
unsigned int d;
|
2000-06-28 12:31:35 +04:00
|
|
|
|
2011-05-13 10:24:36 +04:00
|
|
|
for (d = 0; d < dst->fdset->fd_count; d++) {
|
|
|
|
if (dst->fdset->fd_array[d] == fd)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (d == dst->fdset->fd_count) {
|
|
|
|
if ((int)dst->fdset->fd_count >= dst->capa) {
|
|
|
|
dst->capa = (dst->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;
|
|
|
|
dst->fdset = xrealloc(dst->fdset, sizeof(unsigned int) + sizeof(SOCKET) * dst->capa);
|
|
|
|
}
|
|
|
|
dst->fdset->fd_array[dst->fdset->fd_count++] = fd;
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
}
|
2011-05-13 10:24:36 +04:00
|
|
|
memmove(
|
|
|
|
&src->fd_array[s],
|
|
|
|
&src->fd_array[s+1],
|
|
|
|
sizeof(src->fd_array[0]) * (--src->fd_count - s));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m++;
|
|
|
|
s++;
|
2000-06-28 12:31:35 +04:00
|
|
|
}
|
|
|
|
}
|
2005-09-17 06:42:59 +04:00
|
|
|
else s++;
|
2000-06-28 12:31:35 +04:00
|
|
|
}
|
2005-09-17 16:20:07 +04:00
|
|
|
|
2011-05-13 10:24:36 +04:00
|
|
|
return dst ? dst->fdset->fd_count : m;
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
static int
|
|
|
|
copy_fd(fd_set *dst, fd_set *src)
|
|
|
|
{
|
2009-03-10 22:29:51 +03:00
|
|
|
unsigned int s;
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
if (!src || !dst) return 0;
|
|
|
|
|
|
|
|
for (s = 0; s < src->fd_count; ++s) {
|
|
|
|
SOCKET fd = src->fd_array[s];
|
2009-03-10 22:29:51 +03:00
|
|
|
unsigned int d;
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
for (d = 0; d < dst->fd_count; ++d) {
|
|
|
|
if (dst->fd_array[d] == fd)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (d == dst->fd_count && d < FD_SETSIZE) {
|
|
|
|
dst->fd_array[dst->fd_count++] = fd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-17 16:20:07 +04:00
|
|
|
return dst->fd_count;
|
2000-06-28 12:31:35 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-14 18:30:37 +04:00
|
|
|
static int
|
2005-09-17 06:42:59 +04:00
|
|
|
is_not_socket(SOCKET sock)
|
2005-09-14 18:30:37 +04:00
|
|
|
{
|
2005-09-17 06:42:59 +04:00
|
|
|
return !is_socket(sock);
|
2005-09-14 18:30:37 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-14 18:30:37 +04:00
|
|
|
static int
|
2013-05-19 07:10:21 +04:00
|
|
|
is_pipe(SOCKET sock) /* DONT call this for SOCKET! it claims it is PIPE. */
|
2005-09-14 18:30:37 +04:00
|
|
|
{
|
2005-09-17 06:42:59 +04:00
|
|
|
int ret;
|
2005-09-14 18:30:37 +04:00
|
|
|
|
2008-06-18 13:10:04 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
ret = (GetFileType((HANDLE)sock) == FILE_TYPE_PIPE);
|
|
|
|
});
|
2005-09-14 18:30:37 +04:00
|
|
|
|
2005-09-17 06:42:59 +04:00
|
|
|
return ret;
|
2005-09-14 18:30:37 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-15 06:03:43 +04:00
|
|
|
static int
|
2005-09-17 06:42:59 +04:00
|
|
|
is_readable_pipe(SOCKET sock) /* call this for pipe only */
|
2005-09-15 06:03:43 +04:00
|
|
|
{
|
2005-09-17 06:42:59 +04:00
|
|
|
int ret;
|
|
|
|
DWORD n = 0;
|
2005-09-15 06:03:43 +04:00
|
|
|
|
2005-09-17 06:42:59 +04:00
|
|
|
RUBY_CRITICAL(
|
|
|
|
if (PeekNamedPipe((HANDLE)sock, NULL, 0, NULL, &n, NULL)) {
|
|
|
|
ret = (n > 0);
|
2005-09-15 06:03:43 +04:00
|
|
|
}
|
2005-09-17 06:42:59 +04:00
|
|
|
else {
|
|
|
|
ret = (GetLastError() == ERROR_BROKEN_PIPE); /* pipe was closed */
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return ret;
|
2005-09-15 06:03:43 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-17 08:53:26 +04:00
|
|
|
static int
|
|
|
|
is_console(SOCKET sock) /* DONT call this for SOCKET! */
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
DWORD n = 0;
|
|
|
|
INPUT_RECORD ir;
|
|
|
|
|
|
|
|
RUBY_CRITICAL(
|
|
|
|
ret = (PeekConsoleInput((HANDLE)sock, &ir, 1, &n))
|
|
|
|
);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-09-17 08:53:26 +04:00
|
|
|
static int
|
|
|
|
is_readable_console(SOCKET sock) /* call this for console only */
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
DWORD n = 0;
|
|
|
|
INPUT_RECORD ir;
|
|
|
|
|
|
|
|
RUBY_CRITICAL(
|
|
|
|
if (PeekConsoleInput((HANDLE)sock, &ir, 1, &n) && n > 0) {
|
|
|
|
if (ir.EventType == KEY_EVENT && ir.Event.KeyEvent.bKeyDown &&
|
|
|
|
ir.Event.KeyEvent.uChar.AsciiChar) {
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ReadConsoleInput((HANDLE)sock, &ir, 1, &n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-05-13 10:24:36 +04:00
|
|
|
static int
|
|
|
|
is_invalid_handle(SOCKET sock)
|
|
|
|
{
|
|
|
|
return (HANDLE)sock == INVALID_HANDLE_VALUE;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
static int
|
2005-09-17 06:42:59 +04:00
|
|
|
do_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
|
2013-09-03 06:02:05 +04:00
|
|
|
const struct timeval *timeout)
|
2005-09-15 06:03:43 +04:00
|
|
|
{
|
2005-11-05 07:43:46 +03:00
|
|
|
int r = 0;
|
2005-09-17 06:42:59 +04:00
|
|
|
|
2005-10-01 18:57:06 +04:00
|
|
|
if (nfds == 0) {
|
|
|
|
if (timeout)
|
|
|
|
rb_w32_sleep(timeout->tv_sec * 1000 + timeout->tv_usec / 1000);
|
|
|
|
else
|
|
|
|
rb_w32_sleep(INFINITE);
|
2005-09-17 06:42:59 +04:00
|
|
|
}
|
|
|
|
else {
|
2011-10-20 17:55:31 +04:00
|
|
|
if (!NtSocketsInitialized)
|
|
|
|
StartSockets();
|
|
|
|
|
2005-10-01 18:57:06 +04:00
|
|
|
RUBY_CRITICAL(
|
2007-04-25 10:28:20 +04:00
|
|
|
EnterCriticalSection(&select_mutex);
|
2005-10-01 18:57:06 +04:00
|
|
|
r = select(nfds, rd, wr, ex, timeout);
|
2007-04-25 10:28:20 +04:00
|
|
|
LeaveCriticalSection(&select_mutex);
|
2005-10-01 18:57:06 +04:00
|
|
|
if (r == SOCKET_ERROR) {
|
|
|
|
errno = map_errno(WSAGetLastError());
|
|
|
|
r = -1;
|
|
|
|
}
|
|
|
|
);
|
2005-09-15 06:03:43 +04:00
|
|
|
}
|
|
|
|
|
2005-09-17 06:42:59 +04:00
|
|
|
return r;
|
2005-09-15 06:03:43 +04:00
|
|
|
}
|
|
|
|
|
2011-04-29 08:18:29 +04:00
|
|
|
/*
|
|
|
|
* rest -= wait
|
|
|
|
* return 0 if rest is smaller than wait.
|
|
|
|
*/
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-04-29 08:18:29 +04:00
|
|
|
int
|
|
|
|
rb_w32_time_subtract(struct timeval *rest, const struct timeval *wait)
|
2005-09-17 09:22:33 +04:00
|
|
|
{
|
2008-09-23 14:39:21 +04:00
|
|
|
if (rest->tv_sec < wait->tv_sec) {
|
|
|
|
return 0;
|
|
|
|
}
|
2005-09-17 09:22:33 +04:00
|
|
|
while (rest->tv_usec < wait->tv_usec) {
|
|
|
|
if (rest->tv_sec <= wait->tv_sec) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rest->tv_sec -= 1;
|
|
|
|
rest->tv_usec += 1000 * 1000;
|
|
|
|
}
|
|
|
|
rest->tv_sec -= wait->tv_sec;
|
|
|
|
rest->tv_usec -= wait->tv_usec;
|
2010-05-20 20:13:35 +04:00
|
|
|
return rest->tv_sec != 0 || rest->tv_usec != 0;
|
2005-09-17 09:22:33 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2007-04-25 10:28:20 +04:00
|
|
|
static inline int
|
|
|
|
compare(const struct timeval *t1, const struct timeval *t2)
|
|
|
|
{
|
|
|
|
if (t1->tv_sec < t2->tv_sec)
|
|
|
|
return -1;
|
|
|
|
if (t1->tv_sec > t2->tv_sec)
|
|
|
|
return 1;
|
|
|
|
if (t1->tv_usec < t2->tv_usec)
|
|
|
|
return -1;
|
|
|
|
if (t1->tv_usec > t2->tv_usec)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef Sleep
|
2011-06-15 22:04:13 +04:00
|
|
|
|
|
|
|
int rb_w32_check_interrupt(void *); /* @internal */
|
|
|
|
|
|
|
|
/* @internal */
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-06-15 22:04:13 +04:00
|
|
|
int
|
|
|
|
rb_w32_select_with_thread(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
|
|
|
|
struct timeval *timeout, void *th)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2005-11-05 07:43:46 +03:00
|
|
|
int r;
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fdset_t pipe_rd;
|
|
|
|
rb_fdset_t cons_rd;
|
|
|
|
rb_fdset_t else_rd;
|
|
|
|
rb_fdset_t else_wr;
|
|
|
|
rb_fdset_t except;
|
2005-09-17 16:20:07 +04:00
|
|
|
int nonsock = 0;
|
2009-03-05 07:21:47 +03:00
|
|
|
struct timeval limit = {0, 0};
|
2000-06-28 12:31:35 +04:00
|
|
|
|
2005-09-17 06:42:59 +04:00
|
|
|
if (nfds < 0 || (timeout && (timeout->tv_sec < 0 || timeout->tv_usec < 0))) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-07-30 12:48:31 +04:00
|
|
|
|
|
|
|
if (timeout) {
|
|
|
|
if (timeout->tv_sec < 0 ||
|
|
|
|
timeout->tv_usec < 0 ||
|
|
|
|
timeout->tv_usec >= 1000000) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
gettimeofday(&limit, NULL);
|
|
|
|
limit.tv_sec += timeout->tv_sec;
|
|
|
|
limit.tv_usec += timeout->tv_usec;
|
|
|
|
if (limit.tv_usec >= 1000000) {
|
|
|
|
limit.tv_usec -= 1000000;
|
|
|
|
limit.tv_sec++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-18 01:44:24 +04:00
|
|
|
// assume else_{rd,wr} (other than socket, pipe reader, console reader)
|
|
|
|
// are always readable/writable. but this implementation still has
|
|
|
|
// problem. if pipe's buffer is full, writing to pipe will block
|
|
|
|
// until some data is read from pipe. but ruby is single threaded system,
|
|
|
|
// so whole system will be blocked forever.
|
|
|
|
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fd_init(&else_rd);
|
2005-09-17 16:20:07 +04:00
|
|
|
nonsock += extract_fd(&else_rd, rd, is_not_socket);
|
|
|
|
|
2011-05-13 10:24:36 +04:00
|
|
|
rb_fd_init(&else_wr);
|
|
|
|
nonsock += extract_fd(&else_wr, wr, is_not_socket);
|
|
|
|
|
|
|
|
// check invalid handles
|
|
|
|
if (extract_fd(NULL, else_rd.fdset, is_invalid_handle) > 0 ||
|
|
|
|
extract_fd(NULL, else_wr.fdset, is_invalid_handle) > 0) {
|
|
|
|
rb_fd_term(&else_wr);
|
|
|
|
rb_fd_term(&else_rd);
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fd_init(&pipe_rd);
|
|
|
|
extract_fd(&pipe_rd, else_rd.fdset, is_pipe); // should not call is_pipe for socket
|
2005-09-17 16:20:07 +04:00
|
|
|
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fd_init(&cons_rd);
|
|
|
|
extract_fd(&cons_rd, else_rd.fdset, is_console); // ditto
|
2005-09-17 16:20:07 +04:00
|
|
|
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fd_init(&except);
|
2008-07-11 20:55:14 +04:00
|
|
|
extract_fd(&except, ex, is_not_socket); // drop only
|
|
|
|
|
2000-12-22 12:00:23 +03:00
|
|
|
r = 0;
|
2009-03-10 22:29:51 +03:00
|
|
|
if (rd && (int)rd->fd_count > r) r = (int)rd->fd_count;
|
|
|
|
if (wr && (int)wr->fd_count > r) r = (int)wr->fd_count;
|
|
|
|
if (ex && (int)ex->fd_count > r) r = (int)ex->fd_count;
|
2000-12-22 12:00:23 +03:00
|
|
|
if (nfds > r) nfds = r;
|
2000-11-14 10:10:31 +03:00
|
|
|
|
2007-04-25 10:28:20 +04:00
|
|
|
{
|
2005-10-01 18:57:06 +04:00
|
|
|
struct timeval rest;
|
2013-09-03 06:02:05 +04:00
|
|
|
const struct timeval wait = {0, 10 * 1000}; // 10ms
|
|
|
|
const struct timeval zero = {0, 0}; // 0ms
|
2008-07-30 12:48:31 +04:00
|
|
|
for (;;) {
|
2011-06-15 22:04:13 +04:00
|
|
|
if (th && rb_w32_check_interrupt(th) != WAIT_TIMEOUT) {
|
|
|
|
r = -1;
|
|
|
|
break;
|
|
|
|
}
|
2007-04-25 10:28:20 +04:00
|
|
|
if (nonsock) {
|
|
|
|
// modifying {else,pipe,cons}_rd is safe because
|
|
|
|
// if they are modified, function returns immediately.
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
extract_fd(&else_rd, pipe_rd.fdset, is_readable_pipe);
|
|
|
|
extract_fd(&else_rd, cons_rd.fdset, is_readable_console);
|
2007-04-25 10:28:20 +04:00
|
|
|
}
|
2005-10-01 18:57:06 +04:00
|
|
|
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
if (else_rd.fdset->fd_count || else_wr.fdset->fd_count) {
|
2005-10-01 18:57:06 +04:00
|
|
|
r = do_select(nfds, rd, wr, ex, &zero); // polling
|
|
|
|
if (r < 0) break; // XXX: should I ignore error and return signaled handles?
|
2011-08-30 19:51:13 +04:00
|
|
|
r += copy_fd(rd, else_rd.fdset);
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
r += copy_fd(wr, else_wr.fdset);
|
|
|
|
if (ex)
|
|
|
|
r += ex->fd_count;
|
2005-10-01 18:57:06 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
2013-09-03 06:02:05 +04:00
|
|
|
const struct timeval *dowait = &wait;
|
2007-04-25 10:28:20 +04:00
|
|
|
|
2005-10-01 18:57:06 +04:00
|
|
|
fd_set orig_rd;
|
|
|
|
fd_set orig_wr;
|
|
|
|
fd_set orig_ex;
|
2012-05-08 16:47:25 +04:00
|
|
|
|
|
|
|
FD_ZERO(&orig_rd);
|
|
|
|
FD_ZERO(&orig_wr);
|
|
|
|
FD_ZERO(&orig_ex);
|
|
|
|
|
|
|
|
if (rd) copy_fd(&orig_rd, rd);
|
|
|
|
if (wr) copy_fd(&orig_wr, wr);
|
|
|
|
if (ex) copy_fd(&orig_ex, ex);
|
2007-04-25 10:28:20 +04:00
|
|
|
r = do_select(nfds, rd, wr, ex, &zero); // polling
|
2005-10-01 18:57:06 +04:00
|
|
|
if (r != 0) break; // signaled or error
|
2012-05-08 16:47:25 +04:00
|
|
|
if (rd) copy_fd(rd, &orig_rd);
|
|
|
|
if (wr) copy_fd(wr, &orig_wr);
|
|
|
|
if (ex) copy_fd(ex, &orig_ex);
|
2007-04-25 10:28:20 +04:00
|
|
|
|
2008-07-30 12:48:31 +04:00
|
|
|
if (timeout) {
|
|
|
|
struct timeval now;
|
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
rest = limit;
|
2011-04-29 08:18:29 +04:00
|
|
|
if (!rb_w32_time_subtract(&rest, &now)) break;
|
2008-07-30 12:48:31 +04:00
|
|
|
if (compare(&rest, &wait) < 0) dowait = &rest;
|
|
|
|
}
|
2007-04-25 10:28:20 +04:00
|
|
|
Sleep(dowait->tv_sec * 1000 + dowait->tv_usec / 1000);
|
2005-10-01 18:57:06 +04:00
|
|
|
}
|
2008-07-30 12:48:31 +04:00
|
|
|
}
|
2005-10-01 18:57:06 +04:00
|
|
|
}
|
|
|
|
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fd_term(&except);
|
|
|
|
rb_fd_term(&cons_rd);
|
|
|
|
rb_fd_term(&pipe_rd);
|
2011-05-13 10:24:36 +04:00
|
|
|
rb_fd_term(&else_wr);
|
* include/ruby/intern.h, thread.c, win32/Makefile.sub (rb_fdset_t,
rb_fd_init, rb_fd_term, rb_fd_zero, rb_fd_set, rb_fd_clr, rb_fd_isset,
rb_fd_select, rb_fd_ptr, rb_fd_max, HAVE_RB_FD_INIT): new type,
functions, and macros for Windows.
* win32/win32.c (extract_fd, rb_w32_select): use rb_fdset_t to expand
fd_array if needed. [ruby-core:19946]
* win32/win32.c (copy_fd): new funcion for rb_w32_select().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-01-13 10:52:22 +03:00
|
|
|
rb_fd_term(&else_rd);
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-06-15 22:04:13 +04:00
|
|
|
int WSAAPI
|
|
|
|
rb_w32_select(int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
|
|
|
|
struct timeval *timeout)
|
|
|
|
{
|
|
|
|
return rb_w32_select_with_thread(nfds, rd, wr, ex, timeout, 0);
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-11-08 05:03:40 +03:00
|
|
|
static FARPROC
|
2010-11-08 08:41:49 +03:00
|
|
|
get_wsa_extension_function(SOCKET s, GUID *guid)
|
2010-11-08 05:03:40 +03:00
|
|
|
{
|
|
|
|
DWORD dmy;
|
|
|
|
FARPROC ptr = NULL;
|
|
|
|
|
|
|
|
WSAIoctl(s, SIO_GET_EXTENSION_FUNCTION_POINTER, guid, sizeof(*guid),
|
|
|
|
&ptr, sizeof(ptr), &dmy, NULL, NULL);
|
|
|
|
if (!ptr)
|
|
|
|
errno = ENOSYS;
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
#undef accept
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_accept(int s, struct sockaddr *addr, int *addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
SOCKET r;
|
2008-11-11 11:54:07 +03:00
|
|
|
int fd;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
2008-11-11 11:54:07 +03:00
|
|
|
HANDLE h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
|
|
|
|
fd = rb_w32_open_osfhandle((intptr_t)h, O_RDWR|O_BINARY|O_NOINHERIT);
|
|
|
|
if (fd != -1) {
|
|
|
|
r = accept(TO_SOCKET(s), addr, addrlen);
|
|
|
|
if (r != INVALID_SOCKET) {
|
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fd)->lock)));
|
|
|
|
_set_osfhnd(fd, r);
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
CloseHandle(h);
|
2011-10-20 17:55:31 +04:00
|
|
|
socklist_insert(r, 0);
|
2008-11-11 11:54:07 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = map_errno(WSAGetLastError());
|
|
|
|
close(fd);
|
|
|
|
fd = -1;
|
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
}
|
2008-11-11 11:54:07 +03:00
|
|
|
else
|
|
|
|
CloseHandle(h);
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
2008-11-11 11:54:07 +03:00
|
|
|
return fd;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef bind
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2005-07-16 10:59:05 +04:00
|
|
|
rb_w32_bind(int s, const struct sockaddr *addr, int addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = bind(TO_SOCKET(s), addr, addrlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef connect
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2005-07-16 10:59:05 +04:00
|
|
|
rb_w32_connect(int s, const struct sockaddr *addr, int addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = connect(TO_SOCKET(s), addr, addrlen);
|
2004-09-07 07:52:15 +04:00
|
|
|
if (r == SOCKET_ERROR) {
|
2009-08-03 11:30:19 +04:00
|
|
|
int err = WSAGetLastError();
|
|
|
|
if (err != WSAEWOULDBLOCK)
|
|
|
|
errno = map_errno(err);
|
|
|
|
else
|
2004-09-07 07:52:15 +04:00
|
|
|
errno = EINPROGRESS;
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#undef getpeername
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_getpeername(int s, struct sockaddr *addr, int *addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = getpeername(TO_SOCKET(s), addr, addrlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getsockname
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2012-07-24 10:05:29 +04:00
|
|
|
rb_w32_getsockname(int fd, struct sockaddr *addr, int *addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2012-07-24 10:05:29 +04:00
|
|
|
int sock;
|
1999-01-20 07:45:32 +03:00
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
2012-07-24 10:05:29 +04:00
|
|
|
sock = TO_SOCKET(fd);
|
|
|
|
r = getsockname(sock, addr, addrlen);
|
|
|
|
if (r == SOCKET_ERROR) {
|
|
|
|
DWORD wsaerror = WSAGetLastError();
|
|
|
|
if (wsaerror == WSAEINVAL) {
|
|
|
|
int flags;
|
|
|
|
if (socklist_lookup(sock, &flags)) {
|
|
|
|
int af = GET_FAMILY(flags);
|
|
|
|
if (af) {
|
|
|
|
memset(addr, 0, *addrlen);
|
|
|
|
addr->sa_family = af;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
errno = map_errno(wsaerror);
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2012-06-06 08:18:53 +04:00
|
|
|
#undef getsockopt
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_getsockopt(int s, int level, int optname, char *optval, int *optlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = getsockopt(TO_SOCKET(s), level, optname, optval, optlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef ioctlsocket
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_ioctlsocket(int s, long cmd, u_long *argp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = ioctlsocket(TO_SOCKET(s), cmd, argp);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef listen
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_listen(int s, int backlog)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = listen(TO_SOCKET(s), backlog);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2008-07-18 09:59:46 +04:00
|
|
|
#undef recv
|
1999-01-20 07:45:32 +03:00
|
|
|
#undef recvfrom
|
2008-07-18 09:59:46 +04:00
|
|
|
#undef send
|
|
|
|
#undef sendto
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-11-08 05:48:07 +03:00
|
|
|
static int
|
2012-05-23 05:21:33 +04:00
|
|
|
finish_overlapped_socket(BOOL input, SOCKET s, WSAOVERLAPPED *wol, int result, DWORD *len, DWORD size)
|
2010-11-08 05:48:07 +03:00
|
|
|
{
|
|
|
|
DWORD flg;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (result != SOCKET_ERROR)
|
|
|
|
*len = size;
|
|
|
|
else if ((err = WSAGetLastError()) == WSA_IO_PENDING) {
|
|
|
|
switch (rb_w32_wait_events_blocking(&wol->hEvent, 1, INFINITE)) {
|
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
RUBY_CRITICAL(
|
|
|
|
result = WSAGetOverlappedResult(s, wol, &size, TRUE, &flg)
|
|
|
|
);
|
|
|
|
if (result) {
|
|
|
|
*len = size;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* thru */
|
|
|
|
default:
|
2012-05-23 05:21:33 +04:00
|
|
|
if ((err = WSAGetLastError()) == WSAECONNABORTED && !input)
|
|
|
|
errno = EPIPE;
|
|
|
|
else
|
|
|
|
errno = map_errno(WSAGetLastError());
|
2010-11-08 05:48:07 +03:00
|
|
|
/* thru */
|
|
|
|
case WAIT_OBJECT_0 + 1:
|
|
|
|
/* interrupted */
|
|
|
|
*len = -1;
|
|
|
|
cancel_io((HANDLE)s);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2012-05-23 05:21:33 +04:00
|
|
|
if (err == WSAECONNABORTED && !input)
|
|
|
|
errno = EPIPE;
|
|
|
|
else
|
|
|
|
errno = map_errno(err);
|
2010-11-08 05:48:07 +03:00
|
|
|
*len = -1;
|
|
|
|
}
|
|
|
|
CloseHandle(wol->hEvent);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2008-07-18 09:59:46 +04:00
|
|
|
static int
|
|
|
|
overlapped_socket_io(BOOL input, int fd, char *buf, int len, int flags,
|
|
|
|
struct sockaddr *addr, int *addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2008-07-18 09:59:46 +04:00
|
|
|
int ret;
|
2011-11-03 17:50:55 +04:00
|
|
|
int mode = 0;
|
2008-07-28 11:49:56 +04:00
|
|
|
DWORD flg;
|
2008-07-18 09:59:46 +04:00
|
|
|
WSAOVERLAPPED wol;
|
|
|
|
WSABUF wbuf;
|
|
|
|
SOCKET s;
|
|
|
|
|
|
|
|
if (!NtSocketsInitialized)
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
2008-07-18 09:59:46 +04:00
|
|
|
|
|
|
|
s = TO_SOCKET(fd);
|
2011-10-20 17:55:31 +04:00
|
|
|
socklist_lookup(s, &mode);
|
2012-07-24 10:05:29 +04:00
|
|
|
if (!cancel_io || (GET_FLAGS(mode) & O_NONBLOCK)) {
|
2008-07-18 09:59:46 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
if (input) {
|
|
|
|
if (addr && addrlen)
|
|
|
|
r = recvfrom(s, buf, len, flags, addr, addrlen);
|
|
|
|
else
|
|
|
|
r = recv(s, buf, len, flags);
|
2012-05-23 05:21:33 +04:00
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = map_errno(WSAGetLastError());
|
2008-07-18 09:59:46 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (addr && addrlen)
|
|
|
|
r = sendto(s, buf, len, flags, addr, *addrlen);
|
|
|
|
else
|
|
|
|
r = send(s, buf, len, flags);
|
2012-05-23 05:21:33 +04:00
|
|
|
if (r == SOCKET_ERROR) {
|
|
|
|
DWORD err = WSAGetLastError();
|
|
|
|
if (err == WSAECONNABORTED)
|
|
|
|
errno = EPIPE;
|
|
|
|
else
|
|
|
|
errno = map_errno(err);
|
|
|
|
}
|
2008-07-18 09:59:46 +04:00
|
|
|
}
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2008-07-18 09:59:46 +04:00
|
|
|
else {
|
2008-07-24 11:05:49 +04:00
|
|
|
DWORD size;
|
2010-11-09 07:30:15 +03:00
|
|
|
DWORD rlen;
|
2008-07-18 09:59:46 +04:00
|
|
|
wbuf.len = len;
|
|
|
|
wbuf.buf = buf;
|
|
|
|
memset(&wol, 0, sizeof(wol));
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
wol.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
|
|
|
|
if (input) {
|
|
|
|
flg = flags;
|
|
|
|
if (addr && addrlen)
|
2008-07-24 11:05:49 +04:00
|
|
|
ret = WSARecvFrom(s, &wbuf, 1, &size, &flg, addr, addrlen,
|
|
|
|
&wol, NULL);
|
2008-07-18 09:59:46 +04:00
|
|
|
else
|
2008-07-24 11:05:49 +04:00
|
|
|
ret = WSARecv(s, &wbuf, 1, &size, &flg, &wol, NULL);
|
2008-07-18 09:59:46 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (addr && addrlen)
|
2008-07-24 11:05:49 +04:00
|
|
|
ret = WSASendTo(s, &wbuf, 1, &size, flags, addr, *addrlen,
|
|
|
|
&wol, NULL);
|
2008-07-18 09:59:46 +04:00
|
|
|
else
|
2008-07-24 11:05:49 +04:00
|
|
|
ret = WSASend(s, &wbuf, 1, &size, flags, &wol, NULL);
|
2008-07-18 09:59:46 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-05-23 05:21:33 +04:00
|
|
|
finish_overlapped_socket(input, s, &wol, ret, &rlen, size);
|
2010-11-09 07:30:15 +03:00
|
|
|
r = (int)rlen;
|
2008-07-18 09:59:46 +04:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-07-18 09:59:46 +04:00
|
|
|
int WSAAPI
|
|
|
|
rb_w32_recv(int fd, char *buf, int len, int flags)
|
|
|
|
{
|
|
|
|
return overlapped_socket_io(TRUE, fd, buf, len, flags, NULL, NULL);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2008-07-18 09:59:46 +04:00
|
|
|
rb_w32_recvfrom(int fd, char *buf, int len, int flags,
|
|
|
|
struct sockaddr *from, int *fromlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2008-07-18 09:59:46 +04:00
|
|
|
return overlapped_socket_io(TRUE, fd, buf, len, flags, from, fromlen);
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-07-18 09:59:46 +04:00
|
|
|
int WSAAPI
|
|
|
|
rb_w32_send(int fd, const char *buf, int len, int flags)
|
|
|
|
{
|
|
|
|
return overlapped_socket_io(FALSE, fd, (char *)buf, len, flags, NULL, NULL);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2011-05-02 23:05:03 +04:00
|
|
|
rb_w32_sendto(int fd, const char *buf, int len, int flags,
|
2005-07-16 10:59:05 +04:00
|
|
|
const struct sockaddr *to, int tolen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2008-07-18 09:59:46 +04:00
|
|
|
return overlapped_socket_io(FALSE, fd, (char *)buf, len, flags,
|
|
|
|
(struct sockaddr *)to, &tolen);
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2009-07-22 05:01:27 +04:00
|
|
|
#if !defined(MSG_TRUNC) && !defined(__MINGW32__)
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-07-21 08:38:20 +04:00
|
|
|
typedef struct {
|
|
|
|
SOCKADDR *name;
|
|
|
|
int namelen;
|
|
|
|
WSABUF *lpBuffers;
|
|
|
|
DWORD dwBufferCount;
|
|
|
|
WSABUF Control;
|
|
|
|
DWORD dwFlags;
|
|
|
|
} WSAMSG;
|
2009-07-22 05:01:27 +04:00
|
|
|
#endif
|
|
|
|
#ifndef WSAID_WSARECVMSG
|
2009-07-21 08:38:20 +04:00
|
|
|
#define WSAID_WSARECVMSG {0xf689d7c8,0x6f1f,0x436b,{0x8a,0x53,0xe5,0x4f,0xe3,0x51,0xc3,0x22}}
|
|
|
|
#endif
|
|
|
|
#ifndef WSAID_WSASENDMSG
|
|
|
|
#define WSAID_WSASENDMSG {0xa441e712,0x754f,0x43ca,{0x84,0xa7,0x0d,0xee,0x44,0xcf,0x60,0x6d}}
|
|
|
|
#endif
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-07-21 08:38:20 +04:00
|
|
|
#define msghdr_to_wsamsg(msg, wsamsg) \
|
|
|
|
do { \
|
|
|
|
int i; \
|
|
|
|
(wsamsg)->name = (msg)->msg_name; \
|
|
|
|
(wsamsg)->namelen = (msg)->msg_namelen; \
|
|
|
|
(wsamsg)->lpBuffers = ALLOCA_N(WSABUF, (msg)->msg_iovlen); \
|
|
|
|
(wsamsg)->dwBufferCount = (msg)->msg_iovlen; \
|
|
|
|
for (i = 0; i < (msg)->msg_iovlen; ++i) { \
|
|
|
|
(wsamsg)->lpBuffers[i].buf = (msg)->msg_iov[i].iov_base; \
|
|
|
|
(wsamsg)->lpBuffers[i].len = (msg)->msg_iov[i].iov_len; \
|
|
|
|
} \
|
|
|
|
(wsamsg)->Control.buf = (msg)->msg_control; \
|
|
|
|
(wsamsg)->Control.len = (msg)->msg_controllen; \
|
|
|
|
(wsamsg)->dwFlags = (msg)->msg_flags; \
|
|
|
|
} while (0)
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-07-21 08:38:20 +04:00
|
|
|
int
|
|
|
|
recvmsg(int fd, struct msghdr *msg, int flags)
|
|
|
|
{
|
|
|
|
typedef int (WSAAPI *WSARecvMsg_t)(SOCKET, WSAMSG *, DWORD *, WSAOVERLAPPED *, LPWSAOVERLAPPED_COMPLETION_ROUTINE);
|
|
|
|
static WSARecvMsg_t pWSARecvMsg = NULL;
|
|
|
|
WSAMSG wsamsg;
|
|
|
|
SOCKET s;
|
2011-11-03 17:50:55 +04:00
|
|
|
int mode = 0;
|
2009-07-21 08:38:20 +04:00
|
|
|
DWORD len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!NtSocketsInitialized)
|
|
|
|
StartSockets();
|
|
|
|
|
|
|
|
s = TO_SOCKET(fd);
|
|
|
|
|
|
|
|
if (!pWSARecvMsg) {
|
|
|
|
static GUID guid = WSAID_WSARECVMSG;
|
2010-11-08 08:41:49 +03:00
|
|
|
pWSARecvMsg = (WSARecvMsg_t)get_wsa_extension_function(s, &guid);
|
2010-11-08 05:03:40 +03:00
|
|
|
if (!pWSARecvMsg)
|
2009-10-30 07:15:54 +03:00
|
|
|
return -1;
|
2009-07-21 08:38:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
msghdr_to_wsamsg(msg, &wsamsg);
|
|
|
|
wsamsg.dwFlags |= flags;
|
|
|
|
|
2011-10-20 17:55:31 +04:00
|
|
|
socklist_lookup(s, &mode);
|
2012-07-24 10:05:29 +04:00
|
|
|
if (!cancel_io || (GET_FLAGS(mode) & O_NONBLOCK)) {
|
2009-07-21 08:38:20 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
if ((ret = pWSARecvMsg(s, &wsamsg, &len, NULL, NULL)) == SOCKET_ERROR) {
|
|
|
|
errno = map_errno(WSAGetLastError());
|
|
|
|
len = -1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DWORD size;
|
|
|
|
WSAOVERLAPPED wol;
|
|
|
|
memset(&wol, 0, sizeof(wol));
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
wol.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
|
2010-11-08 05:48:07 +03:00
|
|
|
ret = pWSARecvMsg(s, &wsamsg, &size, &wol, NULL);
|
2009-07-21 08:38:20 +04:00
|
|
|
});
|
|
|
|
|
2012-05-23 05:21:33 +04:00
|
|
|
ret = finish_overlapped_socket(TRUE, s, &wol, ret, &len, size);
|
2009-07-21 08:38:20 +04:00
|
|
|
}
|
|
|
|
if (ret == SOCKET_ERROR)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* WSAMSG to msghdr */
|
|
|
|
msg->msg_name = wsamsg.name;
|
|
|
|
msg->msg_namelen = wsamsg.namelen;
|
|
|
|
msg->msg_flags = wsamsg.dwFlags;
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-07-21 08:38:20 +04:00
|
|
|
int
|
|
|
|
sendmsg(int fd, const struct msghdr *msg, int flags)
|
|
|
|
{
|
|
|
|
typedef int (WSAAPI *WSASendMsg_t)(SOCKET, const WSAMSG *, DWORD, DWORD *, WSAOVERLAPPED *, LPWSAOVERLAPPED_COMPLETION_ROUTINE);
|
|
|
|
static WSASendMsg_t pWSASendMsg = NULL;
|
|
|
|
WSAMSG wsamsg;
|
|
|
|
SOCKET s;
|
2011-11-03 17:50:55 +04:00
|
|
|
int mode = 0;
|
2009-07-21 08:38:20 +04:00
|
|
|
DWORD len;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!NtSocketsInitialized)
|
|
|
|
StartSockets();
|
|
|
|
|
|
|
|
s = TO_SOCKET(fd);
|
|
|
|
|
|
|
|
if (!pWSASendMsg) {
|
|
|
|
static GUID guid = WSAID_WSASENDMSG;
|
2010-11-08 08:41:49 +03:00
|
|
|
pWSASendMsg = (WSASendMsg_t)get_wsa_extension_function(s, &guid);
|
2010-11-08 05:03:40 +03:00
|
|
|
if (!pWSASendMsg)
|
2009-10-30 07:15:54 +03:00
|
|
|
return -1;
|
2009-07-21 08:38:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
msghdr_to_wsamsg(msg, &wsamsg);
|
|
|
|
|
2011-10-20 17:55:31 +04:00
|
|
|
socklist_lookup(s, &mode);
|
2012-07-24 10:05:29 +04:00
|
|
|
if (!cancel_io || (GET_FLAGS(mode) & O_NONBLOCK)) {
|
2009-07-21 08:38:20 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
if ((ret = pWSASendMsg(s, &wsamsg, flags, &len, NULL, NULL)) == SOCKET_ERROR) {
|
|
|
|
errno = map_errno(WSAGetLastError());
|
|
|
|
len = -1;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DWORD size;
|
|
|
|
WSAOVERLAPPED wol;
|
|
|
|
memset(&wol, 0, sizeof(wol));
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
wol.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
|
2010-11-08 05:48:07 +03:00
|
|
|
ret = pWSASendMsg(s, &wsamsg, flags, &size, &wol, NULL);
|
2009-07-21 08:38:20 +04:00
|
|
|
});
|
|
|
|
|
2012-05-23 05:21:33 +04:00
|
|
|
finish_overlapped_socket(FALSE, s, &wol, ret, &len, size);
|
2009-07-21 08:38:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
#undef setsockopt
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2005-07-16 10:59:05 +04:00
|
|
|
rb_w32_setsockopt(int s, int level, int optname, const char *optval, int optlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = setsockopt(TO_SOCKET(s), level, optname, optval, optlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
2011-05-02 23:05:03 +04:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
#undef shutdown
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_shutdown(int s, int how)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = shutdown(TO_SOCKET(s), how);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-07-06 06:20:58 +04:00
|
|
|
static SOCKET
|
|
|
|
open_ifs_socket(int af, int type, int protocol)
|
|
|
|
{
|
|
|
|
unsigned long proto_buffers_len = 0;
|
|
|
|
int error_code;
|
|
|
|
SOCKET out = INVALID_SOCKET;
|
|
|
|
|
|
|
|
if (WSAEnumProtocols(NULL, NULL, &proto_buffers_len) == SOCKET_ERROR) {
|
|
|
|
error_code = WSAGetLastError();
|
|
|
|
if (error_code == WSAENOBUFS) {
|
|
|
|
WSAPROTOCOL_INFO *proto_buffers;
|
|
|
|
int protocols_available = 0;
|
|
|
|
|
|
|
|
proto_buffers = (WSAPROTOCOL_INFO *)malloc(proto_buffers_len);
|
2006-07-18 18:13:07 +04:00
|
|
|
if (!proto_buffers) {
|
|
|
|
WSASetLastError(WSA_NOT_ENOUGH_MEMORY);
|
|
|
|
return INVALID_SOCKET;
|
|
|
|
}
|
2005-07-06 06:20:58 +04:00
|
|
|
|
|
|
|
protocols_available =
|
|
|
|
WSAEnumProtocols(NULL, proto_buffers, &proto_buffers_len);
|
|
|
|
if (protocols_available != SOCKET_ERROR) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < protocols_available; i++) {
|
|
|
|
if ((af != AF_UNSPEC && af != proto_buffers[i].iAddressFamily) ||
|
|
|
|
(type != proto_buffers[i].iSocketType) ||
|
|
|
|
(protocol != 0 && protocol != proto_buffers[i].iProtocol))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((proto_buffers[i].dwServiceFlags1 & XP1_IFS_HANDLES) == 0)
|
|
|
|
continue;
|
|
|
|
|
2008-07-18 09:59:46 +04:00
|
|
|
out = WSASocket(af, type, protocol, &(proto_buffers[i]), 0,
|
|
|
|
WSA_FLAG_OVERLAPPED);
|
2005-07-06 06:20:58 +04:00
|
|
|
break;
|
|
|
|
}
|
2008-11-10 03:57:49 +03:00
|
|
|
if (out == INVALID_SOCKET)
|
|
|
|
out = WSASocket(af, type, protocol, NULL, 0, 0);
|
2005-07-06 06:20:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
free(proto_buffers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
#undef socket
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_socket(int af, int type, int protocol)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
SOCKET s;
|
2002-09-29 13:31:58 +04:00
|
|
|
int fd;
|
|
|
|
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
2005-07-06 06:20:58 +04:00
|
|
|
s = open_ifs_socket(af, type, protocol);
|
2002-09-29 13:31:58 +04:00
|
|
|
if (s == INVALID_SOCKET) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
2002-09-29 13:31:58 +04:00
|
|
|
fd = -1;
|
|
|
|
}
|
|
|
|
else {
|
2008-07-11 11:18:29 +04:00
|
|
|
fd = rb_w32_open_osfhandle(s, O_RDWR|O_BINARY|O_NOINHERIT);
|
2008-07-24 11:33:00 +04:00
|
|
|
if (fd != -1)
|
2012-07-24 10:05:29 +04:00
|
|
|
socklist_insert(s, MAKE_SOCKDATA(af, 0));
|
2008-07-24 11:33:00 +04:00
|
|
|
else
|
|
|
|
closesocket(s);
|
2002-09-29 13:31:58 +04:00
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
2002-09-29 13:31:58 +04:00
|
|
|
return fd;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef gethostbyaddr
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
struct hostent * WSAAPI
|
|
|
|
rb_w32_gethostbyaddr(const char *addr, int len, int type)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
struct hostent *r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = gethostbyaddr(addr, len, type);
|
|
|
|
if (r == NULL)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef gethostbyname
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
struct hostent * WSAAPI
|
|
|
|
rb_w32_gethostbyname(const char *name)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
struct hostent *r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = gethostbyname(name);
|
|
|
|
if (r == NULL)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef gethostname
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
int WSAAPI
|
|
|
|
rb_w32_gethostname(char *name, int len)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = gethostname(name, len);
|
|
|
|
if (r == SOCKET_ERROR)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getprotobyname
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
struct protoent * WSAAPI
|
|
|
|
rb_w32_getprotobyname(const char *name)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
struct protoent *r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = getprotobyname(name);
|
|
|
|
if (r == NULL)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getprotobynumber
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
struct protoent * WSAAPI
|
|
|
|
rb_w32_getprotobynumber(int num)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
struct protoent *r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = getprotobynumber(num);
|
|
|
|
if (r == NULL)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getservbyname
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
struct servent * WSAAPI
|
|
|
|
rb_w32_getservbyname(const char *name, const char *proto)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
struct servent *r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = getservbyname(name, proto);
|
|
|
|
if (r == NULL)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getservbyport
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-11-05 07:43:46 +03:00
|
|
|
struct servent * WSAAPI
|
|
|
|
rb_w32_getservbyport(int port, const char *proto)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
struct servent *r;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
r = getservbyport(port, proto);
|
|
|
|
if (r == NULL)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
* win32/win32.c (is_socket, rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport):
need to protect WSAGetLastError() by RUBY_CRITICAL. [ruby-talk:51778]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-09-29 01:39:57 +04:00
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-12-07 18:47:59 +03:00
|
|
|
static int
|
|
|
|
socketpair_internal(int af, int type, int protocol, SOCKET *sv)
|
|
|
|
{
|
|
|
|
SOCKET svr = INVALID_SOCKET, r = INVALID_SOCKET, w = INVALID_SOCKET;
|
|
|
|
struct sockaddr_in sock_in4;
|
|
|
|
#ifdef INET6
|
|
|
|
struct sockaddr_in6 sock_in6;
|
|
|
|
#endif
|
|
|
|
struct sockaddr *addr;
|
|
|
|
int ret = -1;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (!NtSocketsInitialized) {
|
|
|
|
StartSockets();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (af) {
|
|
|
|
case AF_INET:
|
|
|
|
#if defined PF_INET && PF_INET != AF_INET
|
|
|
|
case PF_INET:
|
|
|
|
#endif
|
|
|
|
sock_in4.sin_family = AF_INET;
|
|
|
|
sock_in4.sin_port = 0;
|
|
|
|
sock_in4.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
|
|
|
|
addr = (struct sockaddr *)&sock_in4;
|
|
|
|
len = sizeof(sock_in4);
|
|
|
|
break;
|
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
memset(&sock_in6, 0, sizeof(sock_in6));
|
|
|
|
sock_in6.sin6_family = AF_INET6;
|
|
|
|
sock_in6.sin6_addr = IN6ADDR_LOOPBACK_INIT;
|
|
|
|
addr = (struct sockaddr *)&sock_in6;
|
|
|
|
len = sizeof(sock_in6);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
errno = EAFNOSUPPORT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (type != SOCK_STREAM) {
|
|
|
|
errno = EPROTOTYPE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-10-12 18:58:23 +04:00
|
|
|
sv[0] = (SOCKET)INVALID_HANDLE_VALUE;
|
|
|
|
sv[1] = (SOCKET)INVALID_HANDLE_VALUE;
|
2004-12-07 18:47:59 +03:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
do {
|
2005-08-18 06:07:28 +04:00
|
|
|
svr = open_ifs_socket(af, type, protocol);
|
2004-12-07 18:47:59 +03:00
|
|
|
if (svr == INVALID_SOCKET)
|
|
|
|
break;
|
|
|
|
if (bind(svr, addr, len) < 0)
|
|
|
|
break;
|
|
|
|
if (getsockname(svr, addr, &len) < 0)
|
|
|
|
break;
|
|
|
|
if (type == SOCK_STREAM)
|
|
|
|
listen(svr, 5);
|
|
|
|
|
2005-08-18 06:07:28 +04:00
|
|
|
w = open_ifs_socket(af, type, protocol);
|
2004-12-07 18:47:59 +03:00
|
|
|
if (w == INVALID_SOCKET)
|
|
|
|
break;
|
|
|
|
if (connect(w, addr, len) < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
r = accept(svr, addr, &len);
|
|
|
|
if (r == INVALID_SOCKET)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
} while (0);
|
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
errno = map_errno(WSAGetLastError());
|
|
|
|
if (r != INVALID_SOCKET)
|
|
|
|
closesocket(r);
|
|
|
|
if (w != INVALID_SOCKET)
|
|
|
|
closesocket(w);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sv[0] = r;
|
|
|
|
sv[1] = w;
|
|
|
|
}
|
|
|
|
if (svr != INVALID_SOCKET)
|
|
|
|
closesocket(svr);
|
|
|
|
});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-12-07 18:47:59 +03:00
|
|
|
int
|
2013-05-13 15:29:32 +04:00
|
|
|
socketpair(int af, int type, int protocol, int *sv)
|
2004-12-07 18:47:59 +03:00
|
|
|
{
|
|
|
|
SOCKET pair[2];
|
|
|
|
|
|
|
|
if (socketpair_internal(af, type, protocol, pair) < 0)
|
|
|
|
return -1;
|
2008-07-11 11:18:29 +04:00
|
|
|
sv[0] = rb_w32_open_osfhandle(pair[0], O_RDWR|O_BINARY|O_NOINHERIT);
|
2008-07-24 11:33:00 +04:00
|
|
|
if (sv[0] == -1) {
|
|
|
|
closesocket(pair[0]);
|
|
|
|
closesocket(pair[1]);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-07-11 11:18:29 +04:00
|
|
|
sv[1] = rb_w32_open_osfhandle(pair[1], O_RDWR|O_BINARY|O_NOINHERIT);
|
2008-07-24 11:33:00 +04:00
|
|
|
if (sv[1] == -1) {
|
|
|
|
rb_w32_close(sv[0]);
|
|
|
|
closesocket(pair[1]);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-07-24 10:05:29 +04:00
|
|
|
socklist_insert(pair[0], MAKE_SOCKDATA(af, 0));
|
|
|
|
socklist_insert(pair[1], MAKE_SOCKDATA(af, 0));
|
2004-12-07 18:47:59 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-05-14 12:24:58 +04:00
|
|
|
#if !defined(_MSC_VER) || _MSC_VER >= 1400
|
2013-05-13 15:29:32 +04:00
|
|
|
/* License: Ruby's */
|
2013-05-13 16:21:53 +04:00
|
|
|
static void
|
|
|
|
str2guid(const char *str, GUID *guid)
|
|
|
|
{
|
|
|
|
#define hex2byte(str) \
|
|
|
|
((isdigit(*(str)) ? *(str) - '0' : toupper(*(str)) - 'A' + 10) << 4 | (isdigit(*((str) + 1)) ? *((str) + 1) - '0' : toupper(*((str) + 1)) - 'A' + 10))
|
|
|
|
char *end;
|
|
|
|
int i;
|
|
|
|
if (*str == '{') str++;
|
|
|
|
guid->Data1 = (long)strtoul(str, &end, 16);
|
|
|
|
str += 9;
|
|
|
|
guid->Data2 = (unsigned short)strtoul(str, &end, 16);
|
|
|
|
str += 5;
|
|
|
|
guid->Data3 = (unsigned short)strtoul(str, &end, 16);
|
|
|
|
str += 5;
|
|
|
|
guid->Data4[0] = hex2byte(str);
|
|
|
|
str += 2;
|
|
|
|
guid->Data4[1] = hex2byte(str);
|
|
|
|
str += 3;
|
|
|
|
for (i = 0; i < 6; i++) {
|
|
|
|
guid->Data4[i + 2] = hex2byte(str);
|
|
|
|
str += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
2013-06-08 20:49:49 +04:00
|
|
|
#ifndef HAVE_TYPE_NET_LUID
|
2013-05-13 16:21:53 +04:00
|
|
|
typedef struct {
|
|
|
|
uint64_t Value;
|
|
|
|
struct {
|
|
|
|
uint64_t Reserved :24;
|
|
|
|
uint64_t NetLuidIndex :24;
|
|
|
|
uint64_t IfType :16;
|
|
|
|
} Info;
|
|
|
|
} NET_LUID;
|
|
|
|
#endif
|
|
|
|
typedef DWORD (WINAPI *cigl_t)(const GUID *, NET_LUID *);
|
|
|
|
typedef DWORD (WINAPI *cilnA_t)(const NET_LUID *, char *, size_t);
|
|
|
|
static cigl_t pConvertInterfaceGuidToLuid = NULL;
|
|
|
|
static cilnA_t pConvertInterfaceLuidToNameA = NULL;
|
|
|
|
|
2013-05-13 15:29:32 +04:00
|
|
|
int
|
|
|
|
getifaddrs(struct ifaddrs **ifap)
|
|
|
|
{
|
|
|
|
ULONG size = 0;
|
|
|
|
ULONG ret;
|
|
|
|
IP_ADAPTER_ADDRESSES *root, *addr;
|
|
|
|
struct ifaddrs *prev;
|
|
|
|
|
|
|
|
ret = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, NULL, &size);
|
|
|
|
if (ret != ERROR_BUFFER_OVERFLOW) {
|
|
|
|
errno = map_errno(ret);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
root = ruby_xmalloc(size);
|
|
|
|
ret = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, root, &size);
|
|
|
|
if (ret != ERROR_SUCCESS) {
|
|
|
|
errno = map_errno(ret);
|
|
|
|
ruby_xfree(root);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-05-13 16:21:53 +04:00
|
|
|
if (!pConvertInterfaceGuidToLuid)
|
|
|
|
pConvertInterfaceGuidToLuid =
|
|
|
|
(cigl_t)get_proc_address("iphlpapi.dll",
|
|
|
|
"ConvertInterfaceGuidToLuid", NULL);
|
|
|
|
if (!pConvertInterfaceLuidToNameA)
|
|
|
|
pConvertInterfaceLuidToNameA =
|
|
|
|
(cilnA_t)get_proc_address("iphlpapi.dll",
|
|
|
|
"ConvertInterfaceLuidToNameA", NULL);
|
|
|
|
|
2013-05-13 15:29:32 +04:00
|
|
|
for (prev = NULL, addr = root; addr; addr = addr->Next) {
|
|
|
|
struct ifaddrs *ifa = ruby_xcalloc(1, sizeof(*ifa));
|
2013-05-13 16:21:53 +04:00
|
|
|
char name[IFNAMSIZ];
|
|
|
|
GUID guid;
|
|
|
|
NET_LUID luid;
|
|
|
|
|
2013-05-13 15:29:32 +04:00
|
|
|
if (prev)
|
|
|
|
prev->ifa_next = ifa;
|
|
|
|
else
|
|
|
|
*ifap = ifa;
|
|
|
|
|
2013-05-13 16:21:53 +04:00
|
|
|
str2guid(addr->AdapterName, &guid);
|
|
|
|
if (pConvertInterfaceGuidToLuid && pConvertInterfaceLuidToNameA &&
|
|
|
|
pConvertInterfaceGuidToLuid(&guid, &luid) == NO_ERROR &&
|
|
|
|
pConvertInterfaceLuidToNameA(&luid, name, sizeof(name)) == NO_ERROR) {
|
|
|
|
ifa->ifa_name = ruby_xmalloc(lstrlen(name) + 1);
|
|
|
|
lstrcpy(ifa->ifa_name, name);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ifa->ifa_name = ruby_xmalloc(lstrlen(addr->AdapterName) + 1);
|
|
|
|
lstrcpy(ifa->ifa_name, addr->AdapterName);
|
|
|
|
}
|
2013-05-13 15:29:32 +04:00
|
|
|
|
|
|
|
if (addr->IfType & IF_TYPE_SOFTWARE_LOOPBACK)
|
|
|
|
ifa->ifa_flags |= IFF_LOOPBACK;
|
|
|
|
if (addr->OperStatus == IfOperStatusUp) {
|
|
|
|
ifa->ifa_flags |= IFF_UP;
|
|
|
|
|
|
|
|
if (addr->FirstUnicastAddress) {
|
|
|
|
IP_ADAPTER_UNICAST_ADDRESS *cur;
|
|
|
|
int added = 0;
|
|
|
|
for (cur = addr->FirstUnicastAddress; cur; cur = cur->Next) {
|
|
|
|
if (cur->Flags & IP_ADAPTER_ADDRESS_TRANSIENT ||
|
|
|
|
cur->DadState == IpDadStateDeprecated) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (added) {
|
|
|
|
prev = ifa;
|
|
|
|
ifa = ruby_xcalloc(1, sizeof(*ifa));
|
|
|
|
prev->ifa_next = ifa;
|
|
|
|
ifa->ifa_name =
|
2013-05-13 16:21:53 +04:00
|
|
|
ruby_xmalloc(lstrlen(prev->ifa_name) + 1);
|
|
|
|
lstrcpy(ifa->ifa_name, prev->ifa_name);
|
2013-05-13 15:29:32 +04:00
|
|
|
ifa->ifa_flags = prev->ifa_flags;
|
|
|
|
}
|
|
|
|
ifa->ifa_addr = ruby_xmalloc(cur->Address.iSockaddrLength);
|
|
|
|
memcpy(ifa->ifa_addr, cur->Address.lpSockaddr,
|
|
|
|
cur->Address.iSockaddrLength);
|
|
|
|
added = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
prev = ifa;
|
|
|
|
}
|
|
|
|
|
|
|
|
ruby_xfree(root);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
void
|
|
|
|
freeifaddrs(struct ifaddrs *ifp)
|
|
|
|
{
|
|
|
|
while (ifp) {
|
|
|
|
struct ifaddrs *next = ifp->ifa_next;
|
|
|
|
if (ifp->ifa_addr) ruby_xfree(ifp->ifa_addr);
|
|
|
|
if (ifp->ifa_name) ruby_xfree(ifp->ifa_name);
|
|
|
|
ruby_xfree(ifp);
|
|
|
|
ifp = next;
|
|
|
|
}
|
|
|
|
}
|
2013-05-14 12:24:58 +04:00
|
|
|
#endif
|
2013-05-13 15:29:32 +04:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Networking stubs
|
|
|
|
//
|
|
|
|
|
2004-06-09 07:47:08 +04:00
|
|
|
void endhostent(void) {}
|
|
|
|
void endnetent(void) {}
|
|
|
|
void endprotoent(void) {}
|
|
|
|
void endservent(void) {}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
struct netent *getnetent (void) {return (struct netent *) NULL;}
|
|
|
|
|
2005-07-16 10:59:05 +04:00
|
|
|
struct netent *getnetbyaddr(long net, int type) {return (struct netent *)NULL;}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2005-07-16 10:59:05 +04:00
|
|
|
struct netent *getnetbyname(const char *name) {return (struct netent *)NULL;}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
struct protoent *getprotoent (void) {return (struct protoent *) NULL;}
|
|
|
|
|
|
|
|
struct servent *getservent (void) {return (struct servent *) NULL;}
|
|
|
|
|
|
|
|
void sethostent (int stayopen) {}
|
|
|
|
|
|
|
|
void setnetent (int stayopen) {}
|
|
|
|
|
|
|
|
void setprotoent (int stayopen) {}
|
|
|
|
|
|
|
|
void setservent (int stayopen) {}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-10-31 08:16:11 +04:00
|
|
|
static int
|
|
|
|
setfl(SOCKET sock, int arg)
|
2004-09-07 07:52:15 +04:00
|
|
|
{
|
|
|
|
int ret;
|
2012-07-24 10:05:29 +04:00
|
|
|
int af = 0;
|
2008-07-18 09:59:46 +04:00
|
|
|
int flag = 0;
|
2004-09-07 07:52:15 +04:00
|
|
|
u_long ioctlArg;
|
|
|
|
|
2011-10-20 17:55:31 +04:00
|
|
|
socklist_lookup(sock, &flag);
|
2012-07-24 10:05:29 +04:00
|
|
|
af = GET_FAMILY(flag);
|
|
|
|
flag = GET_FLAGS(flag);
|
2004-09-07 07:52:15 +04:00
|
|
|
if (arg & O_NONBLOCK) {
|
2008-07-18 09:59:46 +04:00
|
|
|
flag |= O_NONBLOCK;
|
2004-09-07 07:52:15 +04:00
|
|
|
ioctlArg = 1;
|
|
|
|
}
|
|
|
|
else {
|
2008-07-18 09:59:46 +04:00
|
|
|
flag &= ~O_NONBLOCK;
|
2004-09-07 07:52:15 +04:00
|
|
|
ioctlArg = 0;
|
|
|
|
}
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
ret = ioctlsocket(sock, FIONBIO, &ioctlArg);
|
2008-07-18 09:59:46 +04:00
|
|
|
if (ret == 0)
|
2012-07-24 10:05:29 +04:00
|
|
|
socklist_insert(sock, MAKE_SOCKDATA(af, flag));
|
2008-07-18 09:59:46 +04:00
|
|
|
else
|
2004-09-07 07:52:15 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
|
|
|
});
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-10-31 08:16:11 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
static int
|
|
|
|
dupfd(HANDLE hDup, char flags, int minfd)
|
|
|
|
{
|
|
|
|
int save_errno;
|
|
|
|
int ret;
|
|
|
|
int fds[32];
|
|
|
|
int filled = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
ret = _open_osfhandle((intptr_t)hDup, flags | FOPEN);
|
|
|
|
if (ret == -1) {
|
|
|
|
goto close_fds_and_return;
|
|
|
|
}
|
|
|
|
if (ret >= minfd) {
|
|
|
|
goto close_fds_and_return;
|
|
|
|
}
|
|
|
|
fds[filled++] = ret;
|
2011-11-03 17:50:55 +04:00
|
|
|
} while (filled < (int)numberof(fds));
|
2011-10-31 08:16:11 +04:00
|
|
|
|
|
|
|
ret = dupfd(hDup, flags, minfd);
|
|
|
|
|
|
|
|
close_fds_and_return:
|
|
|
|
save_errno = errno;
|
|
|
|
while (filled > 0) {
|
2011-11-22 06:34:00 +04:00
|
|
|
int fd = fds[--filled];
|
|
|
|
_osfhnd(fd) = (intptr_t)INVALID_HANDLE_VALUE;
|
|
|
|
close(fd);
|
2011-10-31 08:16:11 +04:00
|
|
|
}
|
|
|
|
errno = save_errno;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
int
|
|
|
|
fcntl(int fd, int cmd, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
int arg;
|
|
|
|
|
|
|
|
if (cmd == F_SETFL) {
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
|
|
|
if (!is_socket(sock)) {
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(va, cmd);
|
|
|
|
arg = va_arg(va, int);
|
|
|
|
va_end(va);
|
|
|
|
return setfl(sock, arg);
|
|
|
|
}
|
|
|
|
else if (cmd == F_DUPFD) {
|
|
|
|
int ret;
|
|
|
|
HANDLE hDup;
|
|
|
|
if (!(DuplicateHandle(GetCurrentProcess(), (HANDLE)_get_osfhandle(fd),
|
2011-11-18 08:06:01 +04:00
|
|
|
GetCurrentProcess(), &hDup, 0L,
|
|
|
|
!(_osfile(fd) & FNOINHERIT),
|
2011-10-31 08:16:11 +04:00
|
|
|
DUPLICATE_SAME_ACCESS))) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
va_start(va, cmd);
|
|
|
|
arg = va_arg(va, int);
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
if ((ret = dupfd(hDup, _osfile(fd), arg)) == -1)
|
|
|
|
CloseHandle(hDup);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
#ifndef WNOHANG
|
|
|
|
#define WNOHANG -1
|
|
|
|
#endif
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-05-14 18:57:53 +04:00
|
|
|
static rb_pid_t
|
2001-11-13 19:14:42 +03:00
|
|
|
poll_child_status(struct ChildRecord *child, int *stat_loc)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
|
|
|
DWORD exitcode;
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
DWORD err;
|
2001-11-13 06:59:20 +03:00
|
|
|
|
|
|
|
if (!GetExitCodeProcess(child->hProcess, &exitcode)) {
|
2013-05-19 07:10:21 +04:00
|
|
|
/* If an error occurred, return immediately. */
|
2011-03-22 18:05:39 +03:00
|
|
|
error_exit:
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
err = GetLastError();
|
2013-06-19 22:08:30 +04:00
|
|
|
switch (err) {
|
|
|
|
case ERROR_INVALID_PARAMETER:
|
2001-11-13 06:59:20 +03:00
|
|
|
errno = ECHILD;
|
2013-06-19 22:08:30 +04:00
|
|
|
break;
|
|
|
|
case ERROR_INVALID_HANDLE:
|
|
|
|
errno = EINVAL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errno = map_errno(err);
|
|
|
|
break;
|
2008-06-18 13:10:04 +04:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
CloseChildHandle(child);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (exitcode != STILL_ACTIVE) {
|
2011-03-22 18:05:39 +03:00
|
|
|
rb_pid_t pid;
|
|
|
|
/* If already died, wait process's real termination. */
|
|
|
|
if (rb_w32_wait_events_blocking(&child->hProcess, 1, INFINITE) != WAIT_OBJECT_0) {
|
|
|
|
goto error_exit;
|
|
|
|
}
|
|
|
|
pid = child->pid;
|
2001-11-13 06:59:20 +03:00
|
|
|
CloseChildHandle(child);
|
2013-05-02 06:34:11 +04:00
|
|
|
if (stat_loc) {
|
|
|
|
*stat_loc = exitcode << 8;
|
|
|
|
if (exitcode & 0xC0000000) {
|
2013-05-02 07:35:37 +04:00
|
|
|
static const struct {
|
2013-05-02 06:34:11 +04:00
|
|
|
DWORD status;
|
|
|
|
int sig;
|
|
|
|
} table[] = {
|
|
|
|
{STATUS_ACCESS_VIOLATION, SIGSEGV},
|
|
|
|
{STATUS_ILLEGAL_INSTRUCTION, SIGILL},
|
|
|
|
{STATUS_PRIVILEGED_INSTRUCTION, SIGILL},
|
|
|
|
{STATUS_FLOAT_DENORMAL_OPERAND, SIGFPE},
|
|
|
|
{STATUS_FLOAT_DIVIDE_BY_ZERO, SIGFPE},
|
|
|
|
{STATUS_FLOAT_INEXACT_RESULT, SIGFPE},
|
|
|
|
{STATUS_FLOAT_INVALID_OPERATION, SIGFPE},
|
|
|
|
{STATUS_FLOAT_OVERFLOW, SIGFPE},
|
|
|
|
{STATUS_FLOAT_STACK_CHECK, SIGFPE},
|
|
|
|
{STATUS_FLOAT_UNDERFLOW, SIGFPE},
|
2013-05-03 08:22:24 +04:00
|
|
|
#ifdef STATUS_FLOAT_MULTIPLE_FAULTS
|
2013-05-02 06:34:11 +04:00
|
|
|
{STATUS_FLOAT_MULTIPLE_FAULTS, SIGFPE},
|
2013-05-03 08:22:24 +04:00
|
|
|
#endif
|
|
|
|
#ifdef STATUS_FLOAT_MULTIPLE_TRAPS
|
2013-05-02 06:34:11 +04:00
|
|
|
{STATUS_FLOAT_MULTIPLE_TRAPS, SIGFPE},
|
2013-05-03 08:22:24 +04:00
|
|
|
#endif
|
2013-05-02 07:34:15 +04:00
|
|
|
{STATUS_CONTROL_C_EXIT, SIGINT},
|
2013-05-02 06:34:11 +04:00
|
|
|
};
|
|
|
|
int i;
|
2013-05-03 08:22:20 +04:00
|
|
|
for (i = 0; i < (int)numberof(table); i++) {
|
2013-05-02 06:34:11 +04:00
|
|
|
if (table[i].status == exitcode) {
|
|
|
|
*stat_loc |= table[i].sig;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// if unknown status, assume SEGV
|
2013-05-03 08:22:20 +04:00
|
|
|
if (i >= (int)numberof(table))
|
2013-05-02 06:34:11 +04:00
|
|
|
*stat_loc |= SIGSEGV;
|
|
|
|
}
|
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
2005-05-14 18:57:53 +04:00
|
|
|
rb_pid_t
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:13:09 +03:00
|
|
|
waitpid(rb_pid_t pid, int *stat_loc, int options)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
DWORD timeout;
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* Artistic or GPL part start */
|
1999-01-20 07:45:32 +03:00
|
|
|
if (options == WNOHANG) {
|
|
|
|
timeout = 0;
|
2011-05-02 23:05:03 +04:00
|
|
|
}
|
|
|
|
else {
|
1999-01-20 07:45:32 +03:00
|
|
|
timeout = INFINITE;
|
|
|
|
}
|
2011-08-05 15:31:52 +04:00
|
|
|
/* Artistic or GPL part end */
|
2001-11-13 06:59:20 +03:00
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
int count = 0;
|
2009-03-10 22:29:51 +03:00
|
|
|
int ret;
|
2007-02-23 12:33:53 +03:00
|
|
|
HANDLE events[MAXCHILDNUM];
|
2012-04-24 12:05:25 +04:00
|
|
|
struct ChildRecord* cause;
|
2001-11-13 06:59:20 +03:00
|
|
|
|
|
|
|
FOREACH_CHILD(child) {
|
|
|
|
if (!child->pid || child->pid < 0) continue;
|
2001-11-13 19:14:42 +03:00
|
|
|
if ((pid = poll_child_status(child, stat_loc))) return pid;
|
2001-11-13 06:59:20 +03:00
|
|
|
events[count++] = child->hProcess;
|
|
|
|
} END_FOREACH_CHILD;
|
|
|
|
if (!count) {
|
|
|
|
errno = ECHILD;
|
|
|
|
return -1;
|
2001-02-17 18:17:10 +03:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2007-02-24 12:43:40 +03:00
|
|
|
ret = rb_w32_wait_events_blocking(events, count, timeout);
|
2001-11-13 06:59:20 +03:00
|
|
|
if (ret == WAIT_TIMEOUT) return 0;
|
|
|
|
if ((ret -= WAIT_OBJECT_0) == count) {
|
|
|
|
return -1;
|
2001-02-17 18:17:10 +03:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
if (ret > count) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2001-11-13 06:59:20 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-24 12:05:25 +04:00
|
|
|
cause = FindChildSlotByHandle(events[ret]);
|
|
|
|
if (!cause) {
|
|
|
|
errno = ECHILD;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return poll_child_status(cause, stat_loc);
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct ChildRecord* child = FindChildSlot(pid);
|
2013-06-19 22:08:28 +04:00
|
|
|
int retried = 0;
|
2001-11-13 06:59:20 +03:00
|
|
|
if (!child) {
|
|
|
|
errno = ECHILD;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-11-13 19:14:42 +03:00
|
|
|
while (!(pid = poll_child_status(child, stat_loc))) {
|
2001-11-13 06:59:20 +03:00
|
|
|
/* wait... */
|
2007-02-24 12:43:40 +03:00
|
|
|
if (rb_w32_wait_events_blocking(&child->hProcess, 1, timeout) != WAIT_OBJECT_0) {
|
2001-11-13 06:59:20 +03:00
|
|
|
/* still active */
|
2013-06-19 21:44:47 +04:00
|
|
|
if (options & WNOHANG) {
|
|
|
|
pid = 0;
|
|
|
|
break;
|
|
|
|
}
|
2013-06-19 22:08:28 +04:00
|
|
|
++retried;
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
}
|
2013-06-19 22:08:28 +04:00
|
|
|
if (pid == -1 && retried) pid = 0;
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
return pid;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#include <sys/timeb.h>
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-09-03 20:14:17 +04:00
|
|
|
static int
|
|
|
|
filetime_to_timeval(const FILETIME* ft, struct timeval *tv)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
2008-09-02 05:17:28 +04:00
|
|
|
ULARGE_INTEGER tmp;
|
|
|
|
unsigned LONG_LONG lt;
|
|
|
|
|
2008-09-03 20:14:17 +04:00
|
|
|
tmp.LowPart = ft->dwLowDateTime;
|
|
|
|
tmp.HighPart = ft->dwHighDateTime;
|
2008-09-02 05:17:28 +04:00
|
|
|
lt = tmp.QuadPart;
|
|
|
|
|
|
|
|
/* lt is now 100-nanosec intervals since 1601/01/01 00:00:00 UTC,
|
|
|
|
convert it into UNIX time (since 1970/01/01 00:00:00 UTC).
|
|
|
|
the first leap second is at 1972/06/30, so we doesn't need to think
|
|
|
|
about it. */
|
2008-09-03 20:14:17 +04:00
|
|
|
lt /= 10; /* to usec */
|
|
|
|
lt -= (LONG_LONG)((1970-1601)*365.2425) * 24 * 60 * 60 * 1000 * 1000;
|
|
|
|
|
2009-03-10 22:29:51 +03:00
|
|
|
tv->tv_sec = (long)(lt / (1000 * 1000));
|
|
|
|
tv->tv_usec = (long)(lt % (1000 * 1000));
|
2008-09-03 20:14:17 +04:00
|
|
|
|
|
|
|
return tv->tv_sec > 0 ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2013-07-08 18:12:26 +04:00
|
|
|
int __cdecl
|
2008-09-03 20:14:17 +04:00
|
|
|
gettimeofday(struct timeval *tv, struct timezone *tz)
|
|
|
|
{
|
|
|
|
FILETIME ft;
|
2008-09-02 05:17:28 +04:00
|
|
|
|
2008-09-03 20:14:17 +04:00
|
|
|
GetSystemTimeAsFileTime(&ft);
|
|
|
|
filetime_to_timeval(&ft, tv);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2001-03-05 11:29:01 +03:00
|
|
|
return 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2013-08-15 09:32:02 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
int
|
|
|
|
clock_gettime(clockid_t clock_id, struct timespec *sp)
|
|
|
|
{
|
|
|
|
switch (clock_id) {
|
|
|
|
case CLOCK_REALTIME:
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
sp->tv_sec = tv.tv_sec;
|
|
|
|
sp->tv_nsec = tv.tv_usec * 1000;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
case CLOCK_MONOTONIC:
|
|
|
|
{
|
|
|
|
LARGE_INTEGER freq;
|
|
|
|
LARGE_INTEGER count;
|
|
|
|
if (!QueryPerformanceFrequency(&freq)) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!QueryPerformanceCounter(&count)) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
sp->tv_sec = count.QuadPart / freq.QuadPart;
|
|
|
|
if (freq.QuadPart < 1000000000)
|
2013-08-15 13:41:40 +04:00
|
|
|
sp->tv_nsec = (count.QuadPart % freq.QuadPart) * 1000000000 / freq.QuadPart;
|
2013-08-15 09:32:02 +04:00
|
|
|
else
|
|
|
|
sp->tv_nsec = (long)((count.QuadPart % freq.QuadPart) * (1000000000.0 / freq.QuadPart));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-01-20 07:45:32 +03:00
|
|
|
char *
|
2005-07-16 10:59:05 +04:00
|
|
|
rb_w32_getcwd(char *buffer, int size)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2006-06-01 11:18:12 +04:00
|
|
|
char *p = buffer;
|
|
|
|
int len;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2006-06-01 11:18:12 +04:00
|
|
|
len = GetCurrentDirectory(0, NULL);
|
|
|
|
if (!len) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return NULL;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2006-06-01 11:18:12 +04:00
|
|
|
|
|
|
|
if (p) {
|
|
|
|
if (size < len) {
|
|
|
|
errno = ERANGE;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
p = malloc(len);
|
|
|
|
size = len;
|
|
|
|
if (!p) {
|
|
|
|
errno = ENOMEM;
|
2009-08-12 09:16:56 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2006-06-01 11:18:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!GetCurrentDirectory(size, p)) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
if (!buffer)
|
|
|
|
free(p);
|
2006-12-31 18:02:22 +03:00
|
|
|
return NULL;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2013-06-30 05:59:16 +04:00
|
|
|
translate_char(p, '\\', '/', filecp());
|
2006-06-01 11:18:12 +04:00
|
|
|
|
|
|
|
return p;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
1999-08-13 09:45:20 +04:00
|
|
|
chown(const char *path, int owner, int group)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2004-06-09 07:47:08 +04:00
|
|
|
return 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_uchown(const char *path, int owner, int group)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
|
|
|
kill(int pid, int sig)
|
|
|
|
{
|
2001-11-13 06:59:20 +03:00
|
|
|
int ret = 0;
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
DWORD err;
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2011-04-25 16:11:44 +04:00
|
|
|
if (pid < 0 || pid == 0 && sig != SIGINT) {
|
2002-08-28 12:56:25 +04:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-05-15 04:33:57 +04:00
|
|
|
if ((unsigned int)pid == GetCurrentProcessId() &&
|
2003-05-20 08:32:52 +04:00
|
|
|
(sig != 0 && sig != SIGKILL)) {
|
|
|
|
if ((ret = raise(sig)) != 0) {
|
|
|
|
/* MSVCRT doesn't set errno... */
|
|
|
|
errno = EINVAL;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-08-28 12:56:25 +04:00
|
|
|
switch (sig) {
|
2003-05-15 04:33:57 +04:00
|
|
|
case 0:
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
HANDLE hProc =
|
|
|
|
OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, (DWORD)pid);
|
|
|
|
if (hProc == NULL || hProc == INVALID_HANDLE_VALUE) {
|
|
|
|
if (GetLastError() == ERROR_INVALID_PARAMETER) {
|
|
|
|
errno = ESRCH;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = EPERM;
|
|
|
|
}
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
CloseHandle(hProc);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
|
2002-08-28 12:56:25 +04:00
|
|
|
case SIGINT:
|
2001-11-13 06:59:20 +03:00
|
|
|
RUBY_CRITICAL({
|
2012-01-28 04:51:40 +04:00
|
|
|
DWORD ctrlEvent = CTRL_C_EVENT;
|
|
|
|
if (pid != 0) {
|
|
|
|
/* CTRL+C signal cannot be generated for process groups.
|
|
|
|
* Instead, we use CTRL+BREAK signal. */
|
|
|
|
ctrlEvent = CTRL_BREAK_EVENT;
|
|
|
|
}
|
|
|
|
if (!GenerateConsoleCtrlEvent(ctrlEvent, (DWORD)pid)) {
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
if ((err = GetLastError()) == 0)
|
2002-08-28 12:56:25 +04:00
|
|
|
errno = EPERM;
|
* win32/win32.c (map_errno): map OS error to errno. [new]
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime): use
map_errno() instead of using GetLastError() directly.
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): map winsock error to errno.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-02-28 18:01:56 +03:00
|
|
|
else
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2001-11-13 06:59:20 +03:00
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
});
|
2002-08-28 12:56:25 +04:00
|
|
|
break;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-08-28 12:56:25 +04:00
|
|
|
case SIGKILL:
|
2001-11-13 06:59:20 +03:00
|
|
|
RUBY_CRITICAL({
|
2011-07-06 19:43:38 +04:00
|
|
|
HANDLE hProc;
|
|
|
|
struct ChildRecord* child = FindChildSlot(pid);
|
|
|
|
if (child) {
|
|
|
|
hProc = child->hProcess;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
hProc = OpenProcess(PROCESS_TERMINATE | PROCESS_QUERY_INFORMATION, FALSE, (DWORD)pid);
|
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
if (hProc == NULL || hProc == INVALID_HANDLE_VALUE) {
|
|
|
|
if (GetLastError() == ERROR_INVALID_PARAMETER) {
|
|
|
|
errno = ESRCH;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = EPERM;
|
|
|
|
}
|
|
|
|
ret = -1;
|
|
|
|
}
|
2003-07-30 10:10:09 +04:00
|
|
|
else {
|
2011-07-06 19:43:38 +04:00
|
|
|
DWORD status;
|
|
|
|
if (!GetExitCodeProcess(hProc, &status)) {
|
|
|
|
errno = map_errno(GetLastError());
|
2003-07-30 10:10:09 +04:00
|
|
|
ret = -1;
|
|
|
|
}
|
2011-07-06 19:43:38 +04:00
|
|
|
else if (status == STILL_ACTIVE) {
|
|
|
|
if (!TerminateProcess(hProc, 0)) {
|
|
|
|
errno = EPERM;
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = ESRCH;
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
if (!child) {
|
|
|
|
CloseHandle(hProc);
|
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
});
|
2002-08-28 12:56:25 +04:00
|
|
|
break;
|
|
|
|
|
2003-05-15 04:33:57 +04:00
|
|
|
default:
|
2001-05-12 10:47:24 +04:00
|
|
|
errno = EINVAL;
|
2001-11-13 06:59:20 +03:00
|
|
|
ret = -1;
|
2002-08-28 12:56:25 +04:00
|
|
|
break;
|
2001-05-12 10:47:24 +04:00
|
|
|
}
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
return ret;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wlink(const WCHAR *from, const WCHAR *to)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2010-11-23 15:59:50 +03:00
|
|
|
typedef BOOL (WINAPI link_func)(LPCWSTR, LPCWSTR, LPSECURITY_ATTRIBUTES);
|
|
|
|
static link_func *pCreateHardLinkW = NULL;
|
2003-02-17 08:17:46 +03:00
|
|
|
static int myerrno = 0;
|
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!pCreateHardLinkW && !myerrno) {
|
2010-11-23 15:59:50 +03:00
|
|
|
pCreateHardLinkW = (link_func *)get_proc_address("kernel32", "CreateHardLinkW", NULL);
|
2010-11-08 05:03:40 +03:00
|
|
|
if (!pCreateHardLinkW)
|
|
|
|
myerrno = ENOSYS;
|
2003-02-17 08:17:46 +03:00
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!pCreateHardLinkW) {
|
2003-02-17 08:17:46 +03:00
|
|
|
errno = myerrno;
|
1999-01-20 07:45:32 +03:00
|
|
|
return -1;
|
2003-02-17 08:17:46 +03:00
|
|
|
}
|
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!pCreateHardLinkW(to, from, NULL)) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2003-02-17 08:17:46 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_ulink(const char *from, const char *to)
|
|
|
|
{
|
|
|
|
WCHAR *wfrom;
|
|
|
|
WCHAR *wto;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wfrom = utf8_to_wstr(from, NULL)))
|
|
|
|
return -1;
|
|
|
|
if (!(wto = utf8_to_wstr(to, NULL))) {
|
|
|
|
free(wfrom);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = wlink(wfrom, wto);
|
|
|
|
free(wto);
|
|
|
|
free(wfrom);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
link(const char *from, const char *to)
|
|
|
|
{
|
|
|
|
WCHAR *wfrom;
|
|
|
|
WCHAR *wto;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wfrom = filecp_to_wstr(from, NULL)))
|
|
|
|
return -1;
|
|
|
|
if (!(wto = filecp_to_wstr(to, NULL))) {
|
|
|
|
free(wfrom);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = wlink(wfrom, wto);
|
|
|
|
free(wto);
|
|
|
|
free(wfrom);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
2004-02-19 12:08:23 +03:00
|
|
|
wait(int *status)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2004-02-19 12:08:23 +03:00
|
|
|
return waitpid(-1, status, 0);
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2012-03-15 07:57:02 +04:00
|
|
|
/* License: Ruby's */
|
2013-06-30 05:58:59 +04:00
|
|
|
static char *
|
|
|
|
w32_getenv(const char *name, UINT cp)
|
2012-03-15 07:57:02 +04:00
|
|
|
{
|
|
|
|
WCHAR *wenvarea, *wenv;
|
|
|
|
int len = strlen(name);
|
|
|
|
char *env;
|
|
|
|
int wlen;
|
|
|
|
|
|
|
|
if (len == 0) return NULL;
|
|
|
|
|
|
|
|
if (uenvarea) {
|
|
|
|
free(uenvarea);
|
|
|
|
uenvarea = NULL;
|
|
|
|
}
|
|
|
|
if (envarea) {
|
|
|
|
FreeEnvironmentStrings(envarea);
|
|
|
|
envarea = NULL;
|
|
|
|
}
|
|
|
|
wenvarea = GetEnvironmentStringsW();
|
|
|
|
if (!wenvarea) {
|
|
|
|
map_errno(GetLastError());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
for (wenv = wenvarea, wlen = 1; *wenv; wenv += lstrlenW(wenv) + 1)
|
|
|
|
wlen += lstrlenW(wenv) + 1;
|
2013-06-30 05:58:59 +04:00
|
|
|
uenvarea = wstr_to_mbstr(cp, wenvarea, wlen, NULL);
|
2012-03-15 07:57:02 +04:00
|
|
|
FreeEnvironmentStringsW(wenvarea);
|
|
|
|
if (!uenvarea)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (env = uenvarea; *env; env += strlen(env) + 1)
|
|
|
|
if (strncasecmp(env, name, len) == 0 && *(env + len) == '=')
|
|
|
|
return env + len + 1;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
1999-08-13 09:45:20 +04:00
|
|
|
char *
|
2013-06-30 05:58:59 +04:00
|
|
|
rb_w32_ugetenv(const char *name)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2013-06-30 05:58:59 +04:00
|
|
|
return w32_getenv(name, CP_UTF8);
|
|
|
|
}
|
2006-07-31 11:58:34 +04:00
|
|
|
|
2013-06-30 05:58:59 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
char *
|
|
|
|
rb_w32_getenv(const char *name)
|
|
|
|
{
|
|
|
|
return w32_getenv(name, CP_ACP);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
2000-08-09 08:26:06 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Artistic or GPL */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wrename(const WCHAR *oldpath, const WCHAR *newpath)
|
2000-08-09 08:26:06 +04:00
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
int oldatts;
|
|
|
|
int newatts;
|
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
oldatts = GetFileAttributesW(oldpath);
|
|
|
|
newatts = GetFileAttributesW(newpath);
|
2000-08-09 08:26:06 +04:00
|
|
|
|
|
|
|
if (oldatts == -1) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2000-08-09 08:26:06 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
if (newatts != -1 && newatts & FILE_ATTRIBUTE_READONLY)
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(newpath, newatts & ~ FILE_ATTRIBUTE_READONLY);
|
2001-02-17 18:17:10 +03:00
|
|
|
|
2013-03-29 22:52:51 +04:00
|
|
|
if (!MoveFileExW(oldpath, newpath, MOVEFILE_REPLACE_EXISTING | MOVEFILE_COPY_ALLOWED))
|
2001-02-17 18:17:10 +03:00
|
|
|
res = -1;
|
|
|
|
|
|
|
|
if (res)
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2001-02-17 18:17:10 +03:00
|
|
|
else
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(newpath, oldatts);
|
2001-02-17 18:17:10 +03:00
|
|
|
});
|
2000-08-09 08:26:06 +04:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2000-08-15 10:22:49 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int rb_w32_urename(const char *from, const char *to)
|
|
|
|
{
|
|
|
|
WCHAR *wfrom;
|
|
|
|
WCHAR *wto;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(wfrom = utf8_to_wstr(from, NULL)))
|
|
|
|
return -1;
|
|
|
|
if (!(wto = utf8_to_wstr(to, NULL))) {
|
|
|
|
free(wfrom);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = wrename(wfrom, wto);
|
|
|
|
free(wto);
|
|
|
|
free(wfrom);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int rb_w32_rename(const char *from, const char *to)
|
|
|
|
{
|
|
|
|
WCHAR *wfrom;
|
|
|
|
WCHAR *wto;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (!(wfrom = filecp_to_wstr(from, NULL)))
|
|
|
|
return -1;
|
|
|
|
if (!(wto = filecp_to_wstr(to, NULL))) {
|
|
|
|
free(wfrom);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = wrename(wfrom, wto);
|
|
|
|
free(wto);
|
|
|
|
free(wfrom);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-03-21 17:12:09 +03:00
|
|
|
static int
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
isUNCRoot(const WCHAR *path)
|
2001-03-21 17:12:09 +03:00
|
|
|
{
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (path[0] == L'\\' && path[1] == L'\\') {
|
2012-04-09 18:10:32 +04:00
|
|
|
const WCHAR *p = path + 2;
|
|
|
|
if (p[0] == L'?' && p[1] == L'\\') {
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
for (; *p; p++) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (*p == L'\\')
|
2001-03-21 18:18:05 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (p[0] && p[1]) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
for (p++; *p; p++) {
|
|
|
|
if (*p == L'\\')
|
2001-03-21 18:18:05 +03:00
|
|
|
break;
|
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!p[0] || !p[1] || (p[1] == L'.' && !p[2]))
|
2001-03-21 17:12:09 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-10 22:29:51 +03:00
|
|
|
#define COPY_STAT(src, dest, size_cast) do { \
|
2006-08-12 10:56:09 +04:00
|
|
|
(dest).st_dev = (src).st_dev; \
|
|
|
|
(dest).st_ino = (src).st_ino; \
|
|
|
|
(dest).st_mode = (src).st_mode; \
|
|
|
|
(dest).st_nlink = (src).st_nlink; \
|
|
|
|
(dest).st_uid = (src).st_uid; \
|
|
|
|
(dest).st_gid = (src).st_gid; \
|
|
|
|
(dest).st_rdev = (src).st_rdev; \
|
2009-03-10 22:29:51 +03:00
|
|
|
(dest).st_size = size_cast(src).st_size; \
|
2006-08-12 10:56:09 +04:00
|
|
|
(dest).st_atime = (src).st_atime; \
|
|
|
|
(dest).st_mtime = (src).st_mtime; \
|
|
|
|
(dest).st_ctime = (src).st_ctime; \
|
|
|
|
} while (0)
|
|
|
|
|
2012-03-22 14:55:11 +04:00
|
|
|
static time_t filetime_to_unixtime(const FILETIME *ft);
|
|
|
|
|
2004-02-09 11:48:55 +03:00
|
|
|
#undef fstat
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-02-09 11:48:55 +03:00
|
|
|
int
|
|
|
|
rb_w32_fstat(int fd, struct stat *st)
|
|
|
|
{
|
|
|
|
BY_HANDLE_FILE_INFORMATION info;
|
|
|
|
int ret = fstat(fd, st);
|
|
|
|
|
|
|
|
if (ret) return ret;
|
2012-03-22 14:55:11 +04:00
|
|
|
#ifdef __BORLANDC__
|
2004-02-09 11:48:55 +03:00
|
|
|
st->st_mode &= ~(S_IWGRP | S_IWOTH);
|
2012-03-22 14:55:11 +04:00
|
|
|
#endif
|
|
|
|
if (GetFileInformationByHandle((HANDLE)_get_osfhandle(fd), &info)) {
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
if (!(info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
|
|
|
|
st->st_mode |= S_IWUSR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
st->st_atime = filetime_to_unixtime(&info.ftLastAccessTime);
|
|
|
|
st->st_mtime = filetime_to_unixtime(&info.ftLastWriteTime);
|
|
|
|
st->st_ctime = filetime_to_unixtime(&info.ftCreationTime);
|
2004-02-09 11:48:55 +03:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2006-08-12 10:56:09 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-08-12 10:56:09 +04:00
|
|
|
int
|
|
|
|
rb_w32_fstati64(int fd, struct stati64 *st)
|
|
|
|
{
|
|
|
|
BY_HANDLE_FILE_INFORMATION info;
|
|
|
|
struct stat tmp;
|
|
|
|
int ret = fstat(fd, &tmp);
|
|
|
|
|
|
|
|
if (ret) return ret;
|
2012-03-22 14:55:11 +04:00
|
|
|
#ifdef __BORLANDC__
|
2006-08-12 10:56:09 +04:00
|
|
|
tmp.st_mode &= ~(S_IWGRP | S_IWOTH);
|
2012-03-22 14:55:11 +04:00
|
|
|
#endif
|
2009-03-10 22:29:51 +03:00
|
|
|
COPY_STAT(tmp, *st, +);
|
2006-08-12 10:56:09 +04:00
|
|
|
if (GetFileInformationByHandle((HANDLE)_get_osfhandle(fd), &info)) {
|
2012-03-22 14:55:11 +04:00
|
|
|
#ifdef __BORLANDC__
|
2006-08-12 10:56:09 +04:00
|
|
|
if (!(info.dwFileAttributes & FILE_ATTRIBUTE_READONLY)) {
|
|
|
|
st->st_mode |= S_IWUSR;
|
|
|
|
}
|
2012-03-22 14:55:11 +04:00
|
|
|
#endif
|
2006-08-12 10:56:09 +04:00
|
|
|
st->st_size = ((__int64)info.nFileSizeHigh << 32) | info.nFileSizeLow;
|
2012-03-22 14:55:11 +04:00
|
|
|
st->st_atime = filetime_to_unixtime(&info.ftLastAccessTime);
|
|
|
|
st->st_mtime = filetime_to_unixtime(&info.ftLastWriteTime);
|
|
|
|
st->st_ctime = filetime_to_unixtime(&info.ftCreationTime);
|
2006-08-12 10:56:09 +04:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2004-02-09 11:48:55 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-11-22 07:32:39 +03:00
|
|
|
static time_t
|
|
|
|
filetime_to_unixtime(const FILETIME *ft)
|
|
|
|
{
|
2008-09-03 20:14:17 +04:00
|
|
|
struct timeval tv;
|
2005-11-22 07:32:39 +03:00
|
|
|
|
2008-09-03 20:14:17 +04:00
|
|
|
if (filetime_to_timeval(ft, &tv) == (time_t)-1)
|
2005-11-22 07:32:39 +03:00
|
|
|
return 0;
|
2008-09-03 20:14:17 +04:00
|
|
|
else
|
|
|
|
return tv.tv_sec;
|
2005-11-22 07:32:39 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-11-22 07:32:39 +03:00
|
|
|
static unsigned
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
fileattr_to_unixmode(DWORD attr, const WCHAR *path)
|
2005-11-22 07:32:39 +03:00
|
|
|
{
|
|
|
|
unsigned mode = 0;
|
|
|
|
|
|
|
|
if (attr & FILE_ATTRIBUTE_READONLY) {
|
|
|
|
mode |= S_IREAD;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mode |= S_IREAD | S_IWRITE | S_IWUSR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attr & FILE_ATTRIBUTE_DIRECTORY) {
|
|
|
|
mode |= S_IFDIR | S_IEXEC;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mode |= S_IFREG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path && (mode & S_IFREG)) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
const WCHAR *end = path + lstrlenW(path);
|
2005-11-22 07:32:39 +03:00
|
|
|
while (path < end) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
end = CharPrevW(path, end);
|
|
|
|
if (*end == L'.') {
|
|
|
|
if ((_wcsicmp(end, L".bat") == 0) ||
|
|
|
|
(_wcsicmp(end, L".cmd") == 0) ||
|
|
|
|
(_wcsicmp(end, L".com") == 0) ||
|
|
|
|
(_wcsicmp(end, L".exe") == 0)) {
|
2005-11-22 07:32:39 +03:00
|
|
|
mode |= S_IEXEC;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mode |= (mode & 0700) >> 3;
|
|
|
|
mode |= (mode & 0700) >> 6;
|
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-01-12 10:45:31 +03:00
|
|
|
static int
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
check_valid_dir(const WCHAR *path)
|
2009-01-12 10:45:31 +03:00
|
|
|
{
|
2009-02-02 04:59:05 +03:00
|
|
|
WIN32_FIND_DATAW fd;
|
2012-01-04 06:33:37 +04:00
|
|
|
HANDLE fh;
|
|
|
|
WCHAR full[MAX_PATH];
|
|
|
|
WCHAR *dmy;
|
2012-08-14 11:05:12 +04:00
|
|
|
WCHAR *p, *q;
|
2012-01-04 06:33:37 +04:00
|
|
|
|
2012-08-09 15:34:48 +04:00
|
|
|
/* GetFileAttributes() determines "..." as directory. */
|
|
|
|
/* We recheck it by FindFirstFile(). */
|
2012-08-14 11:05:12 +04:00
|
|
|
if (!(p = wcsstr(path, L"...")))
|
2012-08-09 15:34:48 +04:00
|
|
|
return 0;
|
2012-08-14 11:05:12 +04:00
|
|
|
q = p + wcsspn(p, L".");
|
|
|
|
if ((p == path || wcschr(L":/\\", *(p - 1))) &&
|
|
|
|
(!*q || wcschr(L":/\\", *q))) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
2012-08-09 15:34:48 +04:00
|
|
|
|
2012-01-04 06:33:37 +04:00
|
|
|
/* if the specified path is the root of a drive and the drive is empty, */
|
|
|
|
/* FindFirstFile() returns INVALID_HANDLE_VALUE. */
|
|
|
|
if (!GetFullPathNameW(path, sizeof(full) / sizeof(WCHAR), full, &dmy)) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
2012-01-05 10:29:31 +04:00
|
|
|
if (full[1] == L':' && !full[3] && GetDriveTypeW(full) != DRIVE_NO_ROOT_DIR)
|
2012-01-04 06:33:37 +04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fh = open_dir_handle(path, &fd);
|
2009-01-12 10:45:31 +03:00
|
|
|
if (fh == INVALID_HANDLE_VALUE)
|
|
|
|
return -1;
|
|
|
|
FindClose(fh);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-11-22 07:32:39 +03:00
|
|
|
static int
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
winnt_stat(const WCHAR *path, struct stati64 *st)
|
2005-11-22 07:32:39 +03:00
|
|
|
{
|
|
|
|
HANDLE h;
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
WIN32_FIND_DATAW wfd;
|
2012-08-09 15:34:48 +04:00
|
|
|
WIN32_FILE_ATTRIBUTE_DATA wfa;
|
2012-04-09 18:10:32 +04:00
|
|
|
const WCHAR *p = path;
|
2005-11-22 07:32:39 +03:00
|
|
|
|
2006-08-12 10:56:09 +04:00
|
|
|
memset(st, 0, sizeof(*st));
|
2005-11-22 07:32:39 +03:00
|
|
|
st->st_nlink = 1;
|
|
|
|
|
2012-04-09 18:10:32 +04:00
|
|
|
if (wcsncmp(p, L"\\\\?\\", 4) == 0) p += 4;
|
|
|
|
if (wcspbrk(p, L"?*")) {
|
2005-11-22 07:32:39 +03:00
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
2012-08-09 15:34:48 +04:00
|
|
|
if (GetFileAttributesExW(path, GetFileExInfoStandard, (void*)&wfa)) {
|
|
|
|
if (wfa.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
|
|
|
|
if (check_valid_dir(path)) return -1;
|
|
|
|
st->st_size = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
st->st_size = ((__int64)wfa.nFileSizeHigh << 32) | wfa.nFileSizeLow;
|
|
|
|
}
|
|
|
|
st->st_mode = fileattr_to_unixmode(wfa.dwFileAttributes, path);
|
|
|
|
st->st_atime = filetime_to_unixtime(&wfa.ftLastAccessTime);
|
|
|
|
st->st_mtime = filetime_to_unixtime(&wfa.ftLastWriteTime);
|
|
|
|
st->st_ctime = filetime_to_unixtime(&wfa.ftCreationTime);
|
2005-11-22 07:32:39 +03:00
|
|
|
}
|
|
|
|
else {
|
2012-08-09 15:34:48 +04:00
|
|
|
/* GetFileAttributesEx failed; check why. */
|
|
|
|
int e = GetLastError();
|
|
|
|
|
|
|
|
if ((e == ERROR_FILE_NOT_FOUND) || (e == ERROR_INVALID_NAME)
|
|
|
|
|| (e == ERROR_PATH_NOT_FOUND || (e == ERROR_BAD_NETPATH))) {
|
|
|
|
errno = map_errno(e);
|
2005-11-22 07:32:39 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2012-08-09 15:34:48 +04:00
|
|
|
|
|
|
|
/* Fall back to FindFirstFile for ERROR_SHARING_VIOLATION */
|
|
|
|
h = FindFirstFileW(path, &wfd);
|
|
|
|
if (h != INVALID_HANDLE_VALUE) {
|
|
|
|
FindClose(h);
|
|
|
|
st->st_mode = fileattr_to_unixmode(wfd.dwFileAttributes, path);
|
|
|
|
st->st_atime = filetime_to_unixtime(&wfd.ftLastAccessTime);
|
|
|
|
st->st_mtime = filetime_to_unixtime(&wfd.ftLastWriteTime);
|
|
|
|
st->st_ctime = filetime_to_unixtime(&wfd.ftCreationTime);
|
|
|
|
st->st_size = ((__int64)wfd.nFileSizeHigh << 32) | wfd.nFileSizeLow;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
2009-01-12 10:45:31 +03:00
|
|
|
}
|
2005-11-22 07:32:39 +03:00
|
|
|
}
|
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
st->st_dev = st->st_rdev = (iswalpha(path[0]) && path[1] == L':') ?
|
|
|
|
towupper(path[0]) - L'A' : _getdrive() - 1;
|
2005-11-22 07:32:39 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-01-12 10:45:31 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2001-02-09 18:02:14 +03:00
|
|
|
int
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_stat(const char *path, struct stat *st)
|
2006-08-12 10:56:09 +04:00
|
|
|
{
|
|
|
|
struct stati64 tmp;
|
|
|
|
|
|
|
|
if (rb_w32_stati64(path, &tmp)) return -1;
|
2009-03-10 22:29:51 +03:00
|
|
|
COPY_STAT(tmp, *st, (_off_t));
|
2006-08-12 10:56:09 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wstati64(const WCHAR *path, struct stati64 *st)
|
2001-02-09 18:02:14 +03:00
|
|
|
{
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
const WCHAR *p;
|
|
|
|
WCHAR *buf1, *s, *end;
|
2007-03-23 05:30:53 +03:00
|
|
|
int len, size;
|
2002-09-08 14:06:40 +04:00
|
|
|
int ret;
|
2011-01-27 12:21:40 +03:00
|
|
|
VALUE v;
|
2001-02-09 18:02:14 +03:00
|
|
|
|
2003-04-11 14:02:37 +04:00
|
|
|
if (!path || !st) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
size = lstrlenW(path) + 2;
|
2011-01-27 12:21:40 +03:00
|
|
|
buf1 = ALLOCV_N(WCHAR, v, size);
|
2001-03-20 17:50:43 +03:00
|
|
|
for (p = path, s = buf1; *p; p++, s++) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (*p == L'/')
|
|
|
|
*s = L'\\';
|
2001-03-20 17:50:43 +03:00
|
|
|
else
|
|
|
|
*s = *p;
|
|
|
|
}
|
|
|
|
*s = '\0';
|
2002-12-01 16:47:06 +03:00
|
|
|
len = s - buf1;
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!len || L'\"' == *(--s)) {
|
2002-12-01 16:47:06 +03:00
|
|
|
errno = ENOENT;
|
2002-09-15 17:02:09 +04:00
|
|
|
return -1;
|
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
end = buf1 + len - 1;
|
2002-09-15 17:02:09 +04:00
|
|
|
|
2001-03-21 17:12:09 +03:00
|
|
|
if (isUNCRoot(buf1)) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (*end == L'.')
|
|
|
|
*end = L'\0';
|
|
|
|
else if (*end != L'\\')
|
|
|
|
lstrcatW(buf1, L"\\");
|
2006-08-12 10:56:09 +04:00
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
else if (*end == L'\\' || (buf1 + 1 == end && *end == L':'))
|
|
|
|
lstrcatW(buf1, L".");
|
2003-11-27 11:00:23 +03:00
|
|
|
|
2012-07-09 12:25:06 +04:00
|
|
|
ret = winnt_stat(buf1, st);
|
2003-11-27 11:00:23 +03:00
|
|
|
if (ret == 0) {
|
|
|
|
st->st_mode &= ~(S_IWGRP | S_IWOTH);
|
2002-09-08 14:06:40 +04:00
|
|
|
}
|
2011-01-27 12:21:40 +03:00
|
|
|
if (v)
|
|
|
|
ALLOCV_END(v);
|
|
|
|
|
2003-11-27 11:00:23 +03:00
|
|
|
return ret;
|
2001-02-09 18:02:14 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_ustati64(const char *path, struct stati64 *st)
|
|
|
|
{
|
2013-06-30 05:58:55 +04:00
|
|
|
return w32_stati64(path, st, CP_UTF8);
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_stati64(const char *path, struct stati64 *st)
|
2013-06-30 05:58:55 +04:00
|
|
|
{
|
|
|
|
return w32_stati64(path, st, filecp());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static int
|
|
|
|
w32_stati64(const char *path, struct stati64 *st, UINT cp)
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
2013-06-30 05:58:55 +04:00
|
|
|
if (!(wpath = mbstr_to_wstr(cp, path, -1, NULL)))
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
return -1;
|
|
|
|
ret = wstati64(wpath, st);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-09-25 11:04:25 +04:00
|
|
|
int
|
|
|
|
rb_w32_access(const char *path, int mode)
|
|
|
|
{
|
|
|
|
struct stati64 stat;
|
|
|
|
if (rb_w32_stati64(path, &stat) != 0)
|
|
|
|
return -1;
|
|
|
|
mode <<= 6;
|
|
|
|
if ((stat.st_mode & mode) != mode) {
|
|
|
|
errno = EACCES;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_uaccess(const char *path, int mode)
|
|
|
|
{
|
|
|
|
struct stati64 stat;
|
|
|
|
if (rb_w32_ustati64(path, &stat) != 0)
|
|
|
|
return -1;
|
|
|
|
mode <<= 6;
|
|
|
|
if ((stat.st_mode & mode) != mode) {
|
|
|
|
errno = EACCES;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-08-12 10:56:09 +04:00
|
|
|
static int
|
|
|
|
rb_chsize(HANDLE h, off_t size)
|
|
|
|
{
|
2012-01-16 06:22:47 +04:00
|
|
|
long upos, lpos, usize, lsize;
|
2006-08-12 10:56:09 +04:00
|
|
|
int ret = -1;
|
|
|
|
DWORD e;
|
|
|
|
|
2012-01-16 06:22:47 +04:00
|
|
|
if ((lpos = SetFilePointer(h, 0, (upos = 0, &upos), SEEK_CUR)) == -1L &&
|
|
|
|
(e = GetLastError())) {
|
2006-08-12 10:56:09 +04:00
|
|
|
errno = map_errno(e);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
usize = (long)(size >> 32);
|
|
|
|
lsize = (long)size;
|
2010-03-05 11:51:12 +03:00
|
|
|
if (SetFilePointer(h, lsize, &usize, SEEK_SET) == (DWORD)-1L &&
|
2006-08-12 10:56:09 +04:00
|
|
|
(e = GetLastError())) {
|
|
|
|
errno = map_errno(e);
|
|
|
|
}
|
|
|
|
else if (!SetEndOfFile(h)) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
SetFilePointer(h, lpos, &upos, SEEK_SET);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-08-12 10:56:09 +04:00
|
|
|
int
|
2011-04-11 20:38:10 +04:00
|
|
|
rb_w32_truncate(const char *path, off_t length)
|
2006-08-12 10:56:09 +04:00
|
|
|
{
|
|
|
|
HANDLE h;
|
|
|
|
int ret;
|
|
|
|
h = CreateFile(path, GENERIC_WRITE, 0, 0, OPEN_EXISTING, 0, 0);
|
|
|
|
if (h == INVALID_HANDLE_VALUE) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ret = rb_chsize(h, length);
|
|
|
|
CloseHandle(h);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-08-12 10:56:09 +04:00
|
|
|
int
|
2011-04-11 20:38:10 +04:00
|
|
|
rb_w32_ftruncate(int fd, off_t length)
|
2006-08-12 10:56:09 +04:00
|
|
|
{
|
2010-10-12 18:58:23 +04:00
|
|
|
HANDLE h;
|
2006-08-12 10:56:09 +04:00
|
|
|
|
2010-10-12 18:58:23 +04:00
|
|
|
h = (HANDLE)_get_osfhandle(fd);
|
|
|
|
if (h == (HANDLE)-1) return -1;
|
|
|
|
return rb_chsize(h, length);
|
2006-08-12 10:56:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-08-12 10:56:09 +04:00
|
|
|
off_t
|
|
|
|
_filelengthi64(int fd)
|
|
|
|
{
|
|
|
|
DWORD u, l;
|
|
|
|
int e;
|
|
|
|
|
|
|
|
l = GetFileSize((HANDLE)_get_osfhandle(fd), &u);
|
|
|
|
if (l == (DWORD)-1L && (e = GetLastError())) {
|
|
|
|
errno = map_errno(e);
|
|
|
|
return (off_t)-1;
|
|
|
|
}
|
|
|
|
return ((off_t)u << 32) | l;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2006-08-12 10:56:09 +04:00
|
|
|
off_t
|
|
|
|
_lseeki64(int fd, off_t offset, int whence)
|
|
|
|
{
|
|
|
|
long u, l;
|
|
|
|
int e;
|
|
|
|
HANDLE h = (HANDLE)_get_osfhandle(fd);
|
|
|
|
|
|
|
|
if (!h) {
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
u = (long)(offset >> 32);
|
|
|
|
if ((l = SetFilePointer(h, (long)offset, &u, whence)) == -1L &&
|
|
|
|
(e = GetLastError())) {
|
|
|
|
errno = map_errno(e);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return ((off_t)u << 32) | l;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2000-08-15 10:22:49 +04:00
|
|
|
static long
|
|
|
|
filetime_to_clock(FILETIME *ft)
|
|
|
|
{
|
|
|
|
__int64 qw = ft->dwHighDateTime;
|
|
|
|
qw <<= 32;
|
|
|
|
qw |= ft->dwLowDateTime;
|
|
|
|
qw /= 10000; /* File time ticks at 0.1uS, clock at 1mS */
|
|
|
|
return (long) qw;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2000-08-15 10:22:49 +04:00
|
|
|
int
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_times(struct tms *tmbuf)
|
2000-08-15 10:22:49 +04:00
|
|
|
{
|
|
|
|
FILETIME create, exit, kernel, user;
|
|
|
|
|
|
|
|
if (GetProcessTimes(GetCurrentProcess(),&create, &exit, &kernel, &user)) {
|
|
|
|
tmbuf->tms_utime = filetime_to_clock(&user);
|
|
|
|
tmbuf->tms_stime = filetime_to_clock(&kernel);
|
2000-08-15 11:11:13 +04:00
|
|
|
tmbuf->tms_cutime = 0;
|
|
|
|
tmbuf->tms_cstime = 0;
|
2000-08-15 10:22:49 +04:00
|
|
|
}
|
|
|
|
else {
|
2000-08-15 11:11:13 +04:00
|
|
|
tmbuf->tms_utime = clock();
|
|
|
|
tmbuf->tms_stime = 0;
|
|
|
|
tmbuf->tms_cutime = 0;
|
|
|
|
tmbuf->tms_cstime = 0;
|
2000-08-15 10:22:49 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2000-09-27 13:11:13 +04:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
#define yield_once() Sleep(0)
|
|
|
|
#define yield_until(condition) do yield_once(); while (!(condition))
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-06-09 07:47:08 +04:00
|
|
|
static void
|
|
|
|
catch_interrupt(void)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
|
|
|
yield_once();
|
2007-02-23 12:33:53 +03:00
|
|
|
RUBY_CRITICAL(rb_w32_wait_events(NULL, 0, 0));
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
2008-10-04 17:48:20 +04:00
|
|
|
#if defined __BORLANDC__
|
2005-02-10 06:07:24 +03:00
|
|
|
#undef read
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-02-10 06:07:24 +03:00
|
|
|
int
|
|
|
|
read(int fd, void *buf, size_t size)
|
|
|
|
{
|
|
|
|
int ret = _read(fd, buf, size);
|
|
|
|
if ((ret < 0) && (errno == EPIPE)) {
|
|
|
|
errno = 0;
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
catch_interrupt();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-11-28 05:23:49 +04:00
|
|
|
|
|
|
|
#define FILE_COUNT _cnt
|
|
|
|
#define FILE_READPTR _ptr
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#undef fgetc
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-06-09 07:47:08 +04:00
|
|
|
int
|
|
|
|
rb_w32_getc(FILE* stream)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
2008-09-03 19:06:55 +04:00
|
|
|
int c;
|
2002-10-12 18:47:07 +04:00
|
|
|
if (enough_to_get(stream->FILE_COUNT)) {
|
2002-06-11 05:27:48 +04:00
|
|
|
c = (unsigned char)*stream->FILE_READPTR++;
|
2001-02-17 18:17:10 +03:00
|
|
|
}
|
2011-05-02 23:05:03 +04:00
|
|
|
else {
|
2001-02-17 18:17:10 +03:00
|
|
|
c = _filbuf(stream);
|
2008-10-04 17:48:20 +04:00
|
|
|
#if defined __BORLANDC__
|
2003-07-30 10:10:09 +04:00
|
|
|
if ((c == EOF) && (errno == EPIPE)) {
|
|
|
|
clearerr(stream);
|
2002-08-20 17:03:22 +04:00
|
|
|
}
|
|
|
|
#endif
|
2001-02-17 18:17:10 +03:00
|
|
|
catch_interrupt();
|
|
|
|
}
|
|
|
|
return c;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#undef fputc
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-06-09 07:47:08 +04:00
|
|
|
int
|
|
|
|
rb_w32_putc(int c, FILE* stream)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
2002-10-12 18:47:07 +04:00
|
|
|
if (enough_to_put(stream->FILE_COUNT)) {
|
2002-06-11 05:27:48 +04:00
|
|
|
c = (unsigned char)(*stream->FILE_READPTR++ = (char)c);
|
2001-02-17 18:17:10 +03:00
|
|
|
}
|
2011-05-02 23:05:03 +04:00
|
|
|
else {
|
2001-02-17 18:17:10 +03:00
|
|
|
c = _flsbuf(c, stream);
|
|
|
|
catch_interrupt();
|
|
|
|
}
|
|
|
|
return c;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2000-11-14 10:10:31 +03:00
|
|
|
struct asynchronous_arg_t {
|
|
|
|
/* output field */
|
|
|
|
void* stackaddr;
|
2003-02-28 16:54:14 +03:00
|
|
|
int errnum;
|
2000-11-14 10:10:31 +03:00
|
|
|
|
|
|
|
/* input field */
|
2007-06-27 15:47:53 +04:00
|
|
|
uintptr_t (*func)(uintptr_t self, int argc, uintptr_t* argv);
|
|
|
|
uintptr_t self;
|
2000-11-14 10:10:31 +03:00
|
|
|
int argc;
|
2007-06-27 15:47:53 +04:00
|
|
|
uintptr_t* argv;
|
2000-11-14 10:10:31 +03:00
|
|
|
};
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2000-11-14 10:10:31 +03:00
|
|
|
static DWORD WINAPI
|
|
|
|
call_asynchronous(PVOID argp)
|
|
|
|
{
|
2003-02-28 16:54:14 +03:00
|
|
|
DWORD ret;
|
2000-11-14 10:10:31 +03:00
|
|
|
struct asynchronous_arg_t *arg = argp;
|
|
|
|
arg->stackaddr = &argp;
|
2003-02-28 16:54:14 +03:00
|
|
|
ret = (DWORD)arg->func(arg->self, arg->argc, arg->argv);
|
|
|
|
arg->errnum = errno;
|
|
|
|
return ret;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2007-06-27 15:47:53 +04:00
|
|
|
uintptr_t
|
|
|
|
rb_w32_asynchronize(asynchronous_func_t func, uintptr_t self,
|
|
|
|
int argc, uintptr_t* argv, uintptr_t intrval)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
|
|
|
DWORD val;
|
|
|
|
BOOL interrupted = FALSE;
|
|
|
|
HANDLE thr;
|
|
|
|
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
struct asynchronous_arg_t arg;
|
|
|
|
|
|
|
|
arg.stackaddr = NULL;
|
2003-02-28 16:54:14 +03:00
|
|
|
arg.errnum = 0;
|
2000-11-14 10:10:31 +03:00
|
|
|
arg.func = func;
|
|
|
|
arg.self = self;
|
|
|
|
arg.argc = argc;
|
|
|
|
arg.argv = argv;
|
|
|
|
|
|
|
|
thr = CreateThread(NULL, 0, call_asynchronous, &arg, 0, &val);
|
|
|
|
|
|
|
|
if (thr) {
|
|
|
|
yield_until(arg.stackaddr);
|
|
|
|
|
2007-02-24 12:45:41 +03:00
|
|
|
if (rb_w32_wait_events_blocking(&thr, 1, INFINITE) != WAIT_OBJECT_0) {
|
2000-11-14 10:10:31 +03:00
|
|
|
interrupted = TRUE;
|
|
|
|
|
|
|
|
if (TerminateThread(thr, intrval)) {
|
|
|
|
yield_once();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GetExitCodeThread(thr, &val);
|
|
|
|
CloseHandle(thr);
|
|
|
|
|
|
|
|
if (interrupted) {
|
|
|
|
/* must release stack of killed thread, why doesn't Windows? */
|
|
|
|
MEMORY_BASIC_INFORMATION m;
|
|
|
|
|
|
|
|
memset(&m, 0, sizeof(m));
|
|
|
|
if (!VirtualQuery(arg.stackaddr, &m, sizeof(m))) {
|
|
|
|
Debug(fprintf(stderr, "couldn't get stack base:%p:%d\n",
|
|
|
|
arg.stackaddr, GetLastError()));
|
|
|
|
}
|
|
|
|
else if (!VirtualFree(m.AllocationBase, 0, MEM_RELEASE)) {
|
|
|
|
Debug(fprintf(stderr, "couldn't release stack:%p:%d\n",
|
|
|
|
m.AllocationBase, GetLastError()));
|
|
|
|
}
|
2003-02-28 16:54:14 +03:00
|
|
|
errno = EINTR;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
errno = arg.errnum;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!thr) {
|
2008-06-01 23:55:25 +04:00
|
|
|
rb_fatal("failed to launch waiter thread:%ld", GetLastError());
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return val;
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-06-09 07:47:08 +04:00
|
|
|
char **
|
|
|
|
rb_w32_get_environ(void)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
2012-03-15 07:57:02 +04:00
|
|
|
WCHAR *envtop, *env;
|
2001-11-13 06:59:20 +03:00
|
|
|
char **myenvtop, **myenv;
|
|
|
|
int num;
|
|
|
|
|
2001-11-14 21:41:46 +03:00
|
|
|
/*
|
|
|
|
* We avoid values started with `='. If you want to deal those values,
|
|
|
|
* change this function, and some functions in hash.c which recognize
|
2002-05-29 14:22:19 +04:00
|
|
|
* `=' as delimiter or rb_w32_getenv() and ruby_setenv().
|
2001-11-14 21:41:46 +03:00
|
|
|
* CygWin deals these values by changing first `=' to '!'. But we don't
|
|
|
|
* use such trick and follow cmd.exe's way that just doesn't show these
|
|
|
|
* values.
|
2012-03-15 07:57:02 +04:00
|
|
|
*
|
|
|
|
* This function returns UTF-8 strings.
|
2001-11-14 21:41:46 +03:00
|
|
|
*/
|
2012-03-15 07:57:02 +04:00
|
|
|
envtop = GetEnvironmentStringsW();
|
|
|
|
for (env = envtop, num = 0; *env; env += lstrlenW(env) + 1)
|
2001-11-13 06:59:20 +03:00
|
|
|
if (*env != '=') num++;
|
|
|
|
|
2006-10-30 17:23:46 +03:00
|
|
|
myenvtop = (char **)malloc(sizeof(char *) * (num + 1));
|
2012-03-15 07:57:02 +04:00
|
|
|
for (env = envtop, myenv = myenvtop; *env; env += lstrlenW(env) + 1) {
|
2001-11-13 06:59:20 +03:00
|
|
|
if (*env != '=') {
|
2012-03-15 07:57:02 +04:00
|
|
|
if (!(*myenv = wstr_to_utf8(env, NULL))) {
|
2006-10-30 17:23:46 +03:00
|
|
|
break;
|
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
myenv++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*myenv = NULL;
|
2012-03-15 07:57:02 +04:00
|
|
|
FreeEnvironmentStringsW(envtop);
|
2001-11-13 06:59:20 +03:00
|
|
|
|
|
|
|
return myenvtop;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-06-09 07:47:08 +04:00
|
|
|
void
|
|
|
|
rb_w32_free_environ(char **env)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
|
|
|
char **t = env;
|
|
|
|
|
|
|
|
while (*t) free(*t++);
|
|
|
|
free(env);
|
|
|
|
}
|
2002-09-11 12:50:13 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-05-14 18:57:53 +04:00
|
|
|
rb_pid_t
|
2004-06-09 07:47:08 +04:00
|
|
|
rb_w32_getpid(void)
|
2002-09-11 12:50:13 +04:00
|
|
|
{
|
2012-07-09 12:25:06 +04:00
|
|
|
return GetCurrentProcessId();
|
2002-09-11 12:50:13 +04:00
|
|
|
}
|
2002-10-11 01:07:16 +04:00
|
|
|
|
2008-06-24 06:14:00 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-06-24 06:14:00 +04:00
|
|
|
rb_pid_t
|
|
|
|
rb_w32_getppid(void)
|
|
|
|
{
|
2010-11-23 15:59:50 +03:00
|
|
|
typedef long (WINAPI query_func)(HANDLE, int, void *, ULONG, ULONG *);
|
|
|
|
static query_func *pNtQueryInformationProcess = NULL;
|
2008-06-24 06:14:00 +04:00
|
|
|
rb_pid_t ppid = 0;
|
|
|
|
|
2012-07-09 12:25:06 +04:00
|
|
|
if (rb_w32_osver() >= 5) {
|
2010-11-08 05:03:40 +03:00
|
|
|
if (!pNtQueryInformationProcess)
|
2010-11-23 15:59:50 +03:00
|
|
|
pNtQueryInformationProcess = (query_func *)get_proc_address("ntdll.dll", "NtQueryInformationProcess", NULL);
|
2008-09-08 13:17:22 +04:00
|
|
|
if (pNtQueryInformationProcess) {
|
|
|
|
struct {
|
|
|
|
long ExitStatus;
|
|
|
|
void* PebBaseAddress;
|
2010-10-27 13:15:02 +04:00
|
|
|
uintptr_t AffinityMask;
|
|
|
|
uintptr_t BasePriority;
|
|
|
|
uintptr_t UniqueProcessId;
|
|
|
|
uintptr_t ParentProcessId;
|
2008-09-08 13:17:22 +04:00
|
|
|
} pbi;
|
|
|
|
ULONG len;
|
|
|
|
long ret = pNtQueryInformationProcess(GetCurrentProcess(), 0, &pbi, sizeof(pbi), &len);
|
|
|
|
if (!ret) {
|
|
|
|
ppid = pbi.ParentProcessId;
|
2008-06-24 06:14:00 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ppid;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_uopen(const char *file, int oflag, ...)
|
|
|
|
{
|
|
|
|
WCHAR *wfile;
|
|
|
|
int ret;
|
|
|
|
int pmode;
|
|
|
|
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, oflag);
|
|
|
|
pmode = va_arg(arg, int);
|
|
|
|
va_end(arg);
|
|
|
|
|
|
|
|
if (!(wfile = utf8_to_wstr(file, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = rb_w32_wopen(wfile, oflag, pmode);
|
|
|
|
free(wfile);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-03-26 06:41:04 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
static int
|
2012-03-27 12:27:19 +04:00
|
|
|
check_if_wdir(const WCHAR *wfile)
|
2012-03-26 06:41:04 +04:00
|
|
|
{
|
2012-03-27 12:27:19 +04:00
|
|
|
DWORD attr = GetFileAttributesW(wfile);
|
2012-03-26 08:51:27 +04:00
|
|
|
if (attr == (DWORD)-1L ||
|
|
|
|
!(attr & FILE_ATTRIBUTE_DIRECTORY) ||
|
|
|
|
check_valid_dir(wfile)) {
|
2012-03-26 06:41:04 +04:00
|
|
|
return FALSE;
|
2012-03-26 08:51:27 +04:00
|
|
|
}
|
2012-03-26 06:41:04 +04:00
|
|
|
errno = EISDIR;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static int
|
2012-03-27 12:27:19 +04:00
|
|
|
check_if_dir(const char *file)
|
2012-03-26 06:41:04 +04:00
|
|
|
{
|
2012-03-27 12:27:19 +04:00
|
|
|
WCHAR *wfile;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wfile = filecp_to_wstr(file, NULL)))
|
2012-03-26 06:41:04 +04:00
|
|
|
return FALSE;
|
2012-03-27 12:27:19 +04:00
|
|
|
ret = check_if_wdir(wfile);
|
|
|
|
free(wfile);
|
|
|
|
return ret;
|
2012-03-26 06:41:04 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-08-28 16:46:58 +04:00
|
|
|
int
|
|
|
|
rb_w32_open(const char *file, int oflag, ...)
|
2009-02-25 11:36:45 +03:00
|
|
|
{
|
|
|
|
WCHAR *wfile;
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int ret;
|
2009-02-25 11:36:45 +03:00
|
|
|
int pmode;
|
|
|
|
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, oflag);
|
|
|
|
pmode = va_arg(arg, int);
|
|
|
|
va_end(arg);
|
|
|
|
|
2012-03-26 06:41:04 +04:00
|
|
|
if ((oflag & O_TEXT) || !(oflag & O_BINARY)) {
|
|
|
|
ret = _open(file, oflag, pmode);
|
|
|
|
if (ret == -1 && errno == EACCES) check_if_dir(file);
|
|
|
|
return ret;
|
|
|
|
}
|
2009-02-25 11:36:45 +03:00
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (!(wfile = filecp_to_wstr(file, NULL)))
|
2009-02-25 11:36:45 +03:00
|
|
|
return -1;
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
ret = rb_w32_wopen(wfile, oflag, pmode);
|
|
|
|
free(wfile);
|
|
|
|
return ret;
|
2009-02-25 11:36:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_w32_wopen(const WCHAR *file, int oflag, ...)
|
2008-08-28 16:46:58 +04:00
|
|
|
{
|
|
|
|
char flags = 0;
|
|
|
|
int fd;
|
|
|
|
DWORD access;
|
|
|
|
DWORD create;
|
|
|
|
DWORD attr = FILE_ATTRIBUTE_NORMAL;
|
|
|
|
SECURITY_ATTRIBUTES sec;
|
|
|
|
HANDLE h;
|
|
|
|
|
2009-07-23 09:36:57 +04:00
|
|
|
if ((oflag & O_TEXT) || !(oflag & O_BINARY)) {
|
2008-08-30 15:06:52 +04:00
|
|
|
va_list arg;
|
|
|
|
int pmode;
|
|
|
|
va_start(arg, oflag);
|
|
|
|
pmode = va_arg(arg, int);
|
|
|
|
va_end(arg);
|
2012-03-26 06:41:04 +04:00
|
|
|
fd = _wopen(file, oflag, pmode);
|
|
|
|
if (fd == -1 && errno == EACCES) check_if_wdir(file);
|
|
|
|
return fd;
|
2008-08-30 15:06:52 +04:00
|
|
|
}
|
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
sec.nLength = sizeof(sec);
|
|
|
|
sec.lpSecurityDescriptor = NULL;
|
|
|
|
if (oflag & O_NOINHERIT) {
|
|
|
|
sec.bInheritHandle = FALSE;
|
|
|
|
flags |= FNOINHERIT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sec.bInheritHandle = TRUE;
|
|
|
|
}
|
|
|
|
oflag &= ~O_NOINHERIT;
|
|
|
|
|
|
|
|
/* always open with binary mode */
|
|
|
|
oflag &= ~(O_BINARY | O_TEXT);
|
|
|
|
|
|
|
|
switch (oflag & (O_RDWR | O_RDONLY | O_WRONLY)) {
|
|
|
|
case O_RDWR:
|
|
|
|
access = GENERIC_READ | GENERIC_WRITE;
|
|
|
|
break;
|
|
|
|
case O_RDONLY:
|
|
|
|
access = GENERIC_READ;
|
|
|
|
break;
|
|
|
|
case O_WRONLY:
|
|
|
|
access = GENERIC_WRITE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
oflag &= ~(O_RDWR | O_RDONLY | O_WRONLY);
|
|
|
|
|
|
|
|
switch (oflag & (O_CREAT | O_EXCL | O_TRUNC)) {
|
|
|
|
case O_CREAT:
|
|
|
|
create = OPEN_ALWAYS;
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
case O_EXCL:
|
|
|
|
create = OPEN_EXISTING;
|
|
|
|
break;
|
|
|
|
case O_CREAT | O_EXCL:
|
|
|
|
case O_CREAT | O_EXCL | O_TRUNC:
|
|
|
|
create = CREATE_NEW;
|
|
|
|
break;
|
|
|
|
case O_TRUNC:
|
|
|
|
case O_TRUNC | O_EXCL:
|
|
|
|
create = TRUNCATE_EXISTING;
|
|
|
|
break;
|
|
|
|
case O_CREAT | O_TRUNC:
|
|
|
|
create = CREATE_ALWAYS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (oflag & O_CREAT) {
|
|
|
|
va_list arg;
|
|
|
|
int pmode;
|
|
|
|
va_start(arg, oflag);
|
|
|
|
pmode = va_arg(arg, int);
|
|
|
|
va_end(arg);
|
|
|
|
/* TODO: we need to check umask here, but it's not exported... */
|
|
|
|
if (!(pmode & S_IWRITE))
|
|
|
|
attr = FILE_ATTRIBUTE_READONLY;
|
|
|
|
}
|
|
|
|
oflag &= ~(O_CREAT | O_EXCL | O_TRUNC);
|
|
|
|
|
|
|
|
if (oflag & O_TEMPORARY) {
|
|
|
|
attr |= FILE_FLAG_DELETE_ON_CLOSE;
|
|
|
|
access |= DELETE;
|
|
|
|
}
|
|
|
|
oflag &= ~O_TEMPORARY;
|
|
|
|
|
|
|
|
if (oflag & _O_SHORT_LIVED)
|
|
|
|
attr |= FILE_ATTRIBUTE_TEMPORARY;
|
|
|
|
oflag &= ~_O_SHORT_LIVED;
|
|
|
|
|
|
|
|
switch (oflag & (O_SEQUENTIAL | O_RANDOM)) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case O_SEQUENTIAL:
|
|
|
|
attr |= FILE_FLAG_SEQUENTIAL_SCAN;
|
|
|
|
break;
|
|
|
|
case O_RANDOM:
|
|
|
|
attr |= FILE_FLAG_RANDOM_ACCESS;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
oflag &= ~(O_SEQUENTIAL | O_RANDOM);
|
|
|
|
|
|
|
|
if (oflag & ~O_APPEND) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate a C Runtime file handle */
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
|
2010-10-12 18:58:23 +04:00
|
|
|
fd = _open_osfhandle((intptr_t)h, 0);
|
2008-08-28 16:46:58 +04:00
|
|
|
CloseHandle(h);
|
|
|
|
});
|
|
|
|
if (fd == -1) {
|
|
|
|
errno = EMFILE;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fd)->lock)));
|
2010-10-12 18:58:23 +04:00
|
|
|
_set_osfhnd(fd, (intptr_t)INVALID_HANDLE_VALUE);
|
2008-08-28 16:46:58 +04:00
|
|
|
_set_osflags(fd, 0);
|
|
|
|
|
2009-02-25 11:36:45 +03:00
|
|
|
h = CreateFileW(file, access, FILE_SHARE_READ | FILE_SHARE_WRITE, &sec,
|
|
|
|
create, attr, NULL);
|
2008-08-28 16:46:58 +04:00
|
|
|
if (h == INVALID_HANDLE_VALUE) {
|
2012-03-26 06:41:04 +04:00
|
|
|
DWORD e = GetLastError();
|
|
|
|
if (e != ERROR_ACCESS_DENIED || !check_if_wdir(file))
|
|
|
|
errno = map_errno(e);
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
fd = -1;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (GetFileType(h)) {
|
|
|
|
case FILE_TYPE_CHAR:
|
|
|
|
flags |= FDEV;
|
|
|
|
break;
|
|
|
|
case FILE_TYPE_PIPE:
|
|
|
|
flags |= FPIPE;
|
|
|
|
break;
|
|
|
|
case FILE_TYPE_UNKNOWN:
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
CloseHandle(h);
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
fd = -1;
|
|
|
|
goto quit;
|
|
|
|
}
|
2008-10-29 05:01:19 +03:00
|
|
|
if (!(flags & (FDEV | FPIPE)) && (oflag & O_APPEND))
|
2008-08-28 16:46:58 +04:00
|
|
|
flags |= FAPPEND;
|
|
|
|
|
2010-10-12 18:58:23 +04:00
|
|
|
_set_osfhnd(fd, (intptr_t)h);
|
2008-08-28 16:46:58 +04:00
|
|
|
_osfile(fd) = flags | FOPEN;
|
|
|
|
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
quit:
|
|
|
|
;
|
|
|
|
});
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2002-10-11 01:07:16 +04:00
|
|
|
int
|
|
|
|
rb_w32_fclose(FILE *fp)
|
|
|
|
{
|
|
|
|
int fd = fileno(fp);
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
2007-04-10 12:02:38 +04:00
|
|
|
int save_errno = errno;
|
2002-10-11 01:07:16 +04:00
|
|
|
|
|
|
|
if (fflush(fp)) return -1;
|
|
|
|
if (!is_socket(sock)) {
|
2003-02-28 16:54:14 +03:00
|
|
|
UnlockFile((HANDLE)sock, 0, 0, LK_LEN, LK_LEN);
|
2002-10-11 01:07:16 +04:00
|
|
|
return fclose(fp);
|
|
|
|
}
|
|
|
|
_set_osfhnd(fd, (SOCKET)INVALID_HANDLE_VALUE);
|
|
|
|
fclose(fp);
|
2007-04-10 12:02:38 +04:00
|
|
|
errno = save_errno;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (closesocket(sock) == SOCKET_ERROR) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
2002-10-11 01:07:16 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2008-08-28 16:46:58 +04:00
|
|
|
int
|
|
|
|
rb_w32_pipe(int fds[2])
|
|
|
|
{
|
|
|
|
static DWORD serial = 0;
|
2013-07-28 05:54:30 +04:00
|
|
|
static const char prefix[] = "\\\\.\\pipe\\ruby";
|
2013-07-29 01:54:34 +04:00
|
|
|
enum {
|
|
|
|
width_of_prefix = (int)sizeof(prefix) - 1,
|
|
|
|
width_of_pid = (int)sizeof(rb_pid_t) * 2,
|
|
|
|
width_of_serial = (int)sizeof(serial) * 2,
|
|
|
|
width_of_ids = width_of_pid + 1 + width_of_serial + 1
|
|
|
|
};
|
2013-07-28 05:54:30 +04:00
|
|
|
char name[sizeof(prefix) + width_of_ids];
|
2008-08-28 16:46:58 +04:00
|
|
|
SECURITY_ATTRIBUTES sec;
|
|
|
|
HANDLE hRead, hWrite, h;
|
|
|
|
int fdRead, fdWrite;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* if doesn't have CancelIo, use default pipe function */
|
|
|
|
if (!cancel_io)
|
|
|
|
return _pipe(fds, 65536L, _O_NOINHERIT);
|
|
|
|
|
2013-07-28 05:54:30 +04:00
|
|
|
memcpy(name, prefix, width_of_prefix);
|
|
|
|
snprintf(name + width_of_prefix, width_of_ids, "%.*"PRI_PIDT_PREFIX"x-%.*lx",
|
|
|
|
width_of_pid, rb_w32_getpid(), width_of_serial, serial++);
|
2008-08-28 16:46:58 +04:00
|
|
|
|
|
|
|
sec.nLength = sizeof(sec);
|
|
|
|
sec.lpSecurityDescriptor = NULL;
|
|
|
|
sec.bInheritHandle = FALSE;
|
|
|
|
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
hRead = CreateNamedPipe(name, PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
|
|
|
|
0, 2, 65536, 65536, 0, &sec);
|
|
|
|
});
|
|
|
|
if (hRead == INVALID_HANDLE_VALUE) {
|
|
|
|
DWORD err = GetLastError();
|
|
|
|
if (err == ERROR_PIPE_BUSY)
|
|
|
|
errno = EMFILE;
|
|
|
|
else
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
hWrite = CreateFile(name, GENERIC_READ | GENERIC_WRITE, 0, &sec,
|
|
|
|
OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
|
|
|
|
});
|
|
|
|
if (hWrite == INVALID_HANDLE_VALUE) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
CloseHandle(hRead);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
RUBY_CRITICAL(do {
|
|
|
|
ret = 0;
|
|
|
|
h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
|
2010-10-12 18:58:23 +04:00
|
|
|
fdRead = _open_osfhandle((intptr_t)h, 0);
|
2008-08-28 16:46:58 +04:00
|
|
|
CloseHandle(h);
|
|
|
|
if (fdRead == -1) {
|
|
|
|
errno = EMFILE;
|
|
|
|
CloseHandle(hWrite);
|
|
|
|
CloseHandle(hRead);
|
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fdRead)->lock)));
|
2010-10-12 18:58:23 +04:00
|
|
|
_set_osfhnd(fdRead, (intptr_t)hRead);
|
2008-08-28 16:46:58 +04:00
|
|
|
_set_osflags(fdRead, FOPEN | FPIPE | FNOINHERIT);
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&(_pioinfo(fdRead)->lock)));
|
|
|
|
} while (0));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
RUBY_CRITICAL(do {
|
|
|
|
h = CreateFile("NUL", 0, 0, NULL, OPEN_ALWAYS, 0, NULL);
|
2010-10-12 18:58:23 +04:00
|
|
|
fdWrite = _open_osfhandle((intptr_t)h, 0);
|
2008-08-28 16:46:58 +04:00
|
|
|
CloseHandle(h);
|
|
|
|
if (fdWrite == -1) {
|
|
|
|
errno = EMFILE;
|
|
|
|
CloseHandle(hWrite);
|
|
|
|
ret = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fdWrite)->lock)));
|
2010-10-12 18:58:23 +04:00
|
|
|
_set_osfhnd(fdWrite, (intptr_t)hWrite);
|
2008-08-28 16:46:58 +04:00
|
|
|
_set_osflags(fdWrite, FOPEN | FPIPE | FNOINHERIT);
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&(_pioinfo(fdWrite)->lock)));
|
|
|
|
} while (0));
|
|
|
|
if (ret) {
|
|
|
|
rb_w32_close(fdRead);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
fds[0] = fdRead;
|
|
|
|
fds[1] = fdWrite;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-04 10:39:40 +04:00
|
|
|
/* License: Ruby's */
|
|
|
|
static struct constat *
|
|
|
|
constat_handle(HANDLE h)
|
|
|
|
{
|
|
|
|
st_data_t data;
|
|
|
|
struct constat *p;
|
|
|
|
if (!conlist) {
|
|
|
|
conlist = st_init_numtable();
|
|
|
|
}
|
|
|
|
if (st_lookup(conlist, (st_data_t)h, &data)) {
|
|
|
|
p = (struct constat *)data;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO csbi;
|
|
|
|
p = ALLOC(struct constat);
|
|
|
|
p->vt100.state = constat_init;
|
|
|
|
p->vt100.attr = FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED;
|
|
|
|
p->vt100.saved.X = p->vt100.saved.Y = 0;
|
|
|
|
if (GetConsoleScreenBufferInfo(h, &csbi)) {
|
|
|
|
p->vt100.attr = csbi.wAttributes;
|
|
|
|
}
|
|
|
|
st_insert(conlist, (st_data_t)h, (st_data_t)p);
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static void
|
|
|
|
constat_reset(HANDLE h)
|
|
|
|
{
|
|
|
|
st_data_t data;
|
|
|
|
struct constat *p;
|
|
|
|
if (!conlist) return;
|
|
|
|
if (!st_lookup(conlist, (st_data_t)h, &data)) return;
|
|
|
|
p = (struct constat *)data;
|
|
|
|
p->vt100.state = constat_init;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
2013-02-28 08:30:50 +04:00
|
|
|
static WORD
|
|
|
|
constat_attr(int count, const int *seq, WORD attr, WORD default_attr)
|
2012-06-04 10:39:40 +04:00
|
|
|
{
|
|
|
|
#define FOREGROUND_MASK (FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED)
|
|
|
|
#define BACKGROUND_MASK (BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED)
|
2013-02-28 08:30:50 +04:00
|
|
|
WORD bold = attr & (FOREGROUND_INTENSITY | BACKGROUND_INTENSITY);
|
2012-06-04 10:39:40 +04:00
|
|
|
int rev = 0;
|
|
|
|
|
|
|
|
if (!count) return attr;
|
|
|
|
while (count-- > 0) {
|
|
|
|
switch (*seq++) {
|
|
|
|
case 0:
|
|
|
|
attr = default_attr;
|
|
|
|
rev = 0;
|
|
|
|
bold = 0;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
bold |= rev ? BACKGROUND_INTENSITY : FOREGROUND_INTENSITY;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
#ifndef COMMON_LVB_UNDERSCORE
|
|
|
|
#define COMMON_LVB_UNDERSCORE 0x8000
|
|
|
|
#endif
|
|
|
|
attr |= COMMON_LVB_UNDERSCORE;
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
rev = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 30:
|
|
|
|
attr &= ~(FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED);
|
|
|
|
break;
|
|
|
|
case 17:
|
|
|
|
case 31:
|
|
|
|
attr = attr & ~(FOREGROUND_BLUE | FOREGROUND_GREEN) | FOREGROUND_RED;
|
|
|
|
break;
|
|
|
|
case 18:
|
|
|
|
case 32:
|
|
|
|
attr = attr & ~(FOREGROUND_BLUE | FOREGROUND_RED) | FOREGROUND_GREEN;
|
|
|
|
break;
|
|
|
|
case 19:
|
|
|
|
case 33:
|
|
|
|
attr = attr & ~FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED;
|
|
|
|
break;
|
|
|
|
case 20:
|
|
|
|
case 34:
|
|
|
|
attr = attr & ~(FOREGROUND_GREEN | FOREGROUND_RED) | FOREGROUND_BLUE;
|
|
|
|
break;
|
|
|
|
case 21:
|
|
|
|
case 35:
|
|
|
|
attr = attr & ~FOREGROUND_GREEN | FOREGROUND_BLUE | FOREGROUND_RED;
|
|
|
|
break;
|
|
|
|
case 22:
|
|
|
|
case 36:
|
|
|
|
attr = attr & ~FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_GREEN;
|
|
|
|
break;
|
|
|
|
case 23:
|
|
|
|
case 37:
|
|
|
|
attr |= FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 40:
|
|
|
|
attr &= ~(BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED);
|
2013-04-02 18:58:06 +04:00
|
|
|
break;
|
2012-06-04 10:39:40 +04:00
|
|
|
case 41:
|
|
|
|
attr = attr & ~(BACKGROUND_BLUE | BACKGROUND_GREEN) | BACKGROUND_RED;
|
|
|
|
break;
|
|
|
|
case 42:
|
|
|
|
attr = attr & ~(BACKGROUND_BLUE | BACKGROUND_RED) | BACKGROUND_GREEN;
|
|
|
|
break;
|
|
|
|
case 43:
|
|
|
|
attr = attr & ~BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED;
|
|
|
|
break;
|
|
|
|
case 44:
|
|
|
|
attr = attr & ~(BACKGROUND_GREEN | BACKGROUND_RED) | BACKGROUND_BLUE;
|
|
|
|
break;
|
|
|
|
case 45:
|
|
|
|
attr = attr & ~BACKGROUND_GREEN | BACKGROUND_BLUE | BACKGROUND_RED;
|
|
|
|
break;
|
|
|
|
case 46:
|
|
|
|
attr = attr & ~BACKGROUND_RED | BACKGROUND_BLUE | BACKGROUND_GREEN;
|
|
|
|
break;
|
|
|
|
case 47:
|
|
|
|
attr |= BACKGROUND_BLUE | BACKGROUND_GREEN | BACKGROUND_RED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rev) {
|
|
|
|
attr = attr & ~(FOREGROUND_MASK | BACKGROUND_MASK) |
|
|
|
|
((attr & FOREGROUND_MASK) << 4) |
|
|
|
|
((attr & BACKGROUND_MASK) >> 4);
|
|
|
|
}
|
|
|
|
return attr | bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static void
|
|
|
|
constat_apply(HANDLE handle, struct constat *s, WCHAR w)
|
|
|
|
{
|
|
|
|
CONSOLE_SCREEN_BUFFER_INFO csbi;
|
|
|
|
const int *seq = s->vt100.seq;
|
|
|
|
int count = s->vt100.state;
|
|
|
|
int arg1 = 1;
|
|
|
|
COORD pos;
|
|
|
|
DWORD written;
|
|
|
|
|
|
|
|
if (!GetConsoleScreenBufferInfo(handle, &csbi)) return;
|
|
|
|
if (count > 0 && seq[0] > 0) arg1 = seq[0];
|
|
|
|
switch (w) {
|
|
|
|
case L'm':
|
|
|
|
SetConsoleTextAttribute(handle, constat_attr(count, seq, csbi.wAttributes, s->vt100.attr));
|
|
|
|
break;
|
|
|
|
case L'F':
|
|
|
|
csbi.dwCursorPosition.X = 0;
|
|
|
|
case L'A':
|
|
|
|
csbi.dwCursorPosition.Y -= arg1;
|
|
|
|
if (csbi.dwCursorPosition.Y < 0)
|
|
|
|
csbi.dwCursorPosition.Y = 0;
|
|
|
|
SetConsoleCursorPosition(handle, csbi.dwCursorPosition);
|
|
|
|
break;
|
|
|
|
case L'E':
|
|
|
|
csbi.dwCursorPosition.X = 0;
|
|
|
|
case L'B':
|
|
|
|
case L'e':
|
|
|
|
csbi.dwCursorPosition.Y += arg1;
|
|
|
|
if (csbi.dwCursorPosition.Y >= csbi.dwSize.Y)
|
|
|
|
csbi.dwCursorPosition.Y = csbi.dwSize.Y;
|
|
|
|
SetConsoleCursorPosition(handle, csbi.dwCursorPosition);
|
|
|
|
break;
|
|
|
|
case L'C':
|
|
|
|
csbi.dwCursorPosition.X += arg1;
|
|
|
|
if (csbi.dwCursorPosition.X >= csbi.dwSize.X)
|
|
|
|
csbi.dwCursorPosition.X = csbi.dwSize.X;
|
|
|
|
SetConsoleCursorPosition(handle, csbi.dwCursorPosition);
|
|
|
|
break;
|
|
|
|
case L'D':
|
|
|
|
csbi.dwCursorPosition.X -= arg1;
|
|
|
|
if (csbi.dwCursorPosition.X < 0)
|
|
|
|
csbi.dwCursorPosition.X = 0;
|
|
|
|
SetConsoleCursorPosition(handle, csbi.dwCursorPosition);
|
|
|
|
break;
|
|
|
|
case L'G':
|
|
|
|
case L'`':
|
|
|
|
csbi.dwCursorPosition.X = (arg1 > csbi.dwSize.X ? csbi.dwSize.X : arg1) - 1;
|
|
|
|
SetConsoleCursorPosition(handle, csbi.dwCursorPosition);
|
|
|
|
break;
|
|
|
|
case L'd':
|
|
|
|
csbi.dwCursorPosition.Y = (arg1 > csbi.dwSize.Y ? csbi.dwSize.Y : arg1) - 1;
|
|
|
|
SetConsoleCursorPosition(handle, csbi.dwCursorPosition);
|
|
|
|
break;
|
|
|
|
case L'H':
|
|
|
|
case L'f':
|
|
|
|
pos.Y = (arg1 > csbi.dwSize.Y ? csbi.dwSize.Y : arg1) - 1;
|
|
|
|
if (count < 2 || (arg1 = seq[1]) <= 0) arg1 = 1;
|
|
|
|
pos.X = (arg1 > csbi.dwSize.X ? csbi.dwSize.X : arg1) - 1;
|
|
|
|
SetConsoleCursorPosition(handle, pos);
|
|
|
|
break;
|
|
|
|
case L'J':
|
|
|
|
switch (arg1) {
|
|
|
|
case 0: /* erase after cursor */
|
|
|
|
FillConsoleOutputCharacterW(handle, L' ',
|
|
|
|
csbi.dwSize.X * (csbi.dwSize.Y - csbi.dwCursorPosition.Y) - csbi.dwCursorPosition.X,
|
|
|
|
csbi.dwCursorPosition, &written);
|
|
|
|
break;
|
|
|
|
case 1: /* erase before cursor */
|
|
|
|
pos.X = 0;
|
|
|
|
pos.Y = csbi.dwCursorPosition.Y;
|
|
|
|
FillConsoleOutputCharacterW(handle, L' ',
|
|
|
|
csbi.dwSize.X * csbi.dwCursorPosition.Y + csbi.dwCursorPosition.X,
|
|
|
|
pos, &written);
|
|
|
|
break;
|
|
|
|
case 2: /* erase entire line */
|
|
|
|
pos.X = 0;
|
|
|
|
pos.Y = 0;
|
|
|
|
FillConsoleOutputCharacterW(handle, L' ', csbi.dwSize.X * csbi.dwSize.Y, pos, &written);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case L'K':
|
|
|
|
switch (arg1) {
|
|
|
|
case 0: /* erase after cursor */
|
|
|
|
FillConsoleOutputCharacterW(handle, L' ', csbi.dwSize.X - csbi.dwCursorPosition.X, csbi.dwCursorPosition, &written);
|
|
|
|
break;
|
|
|
|
case 1: /* erase before cursor */
|
|
|
|
pos.X = 0;
|
|
|
|
pos.Y = csbi.dwCursorPosition.Y;
|
|
|
|
FillConsoleOutputCharacterW(handle, L' ', csbi.dwCursorPosition.X, pos, &written);
|
|
|
|
break;
|
|
|
|
case 2: /* erase entire line */
|
|
|
|
pos.X = 0;
|
|
|
|
pos.Y = csbi.dwCursorPosition.Y;
|
|
|
|
FillConsoleOutputCharacterW(handle, L' ', csbi.dwSize.X, pos, &written);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case L's':
|
|
|
|
s->vt100.saved = csbi.dwCursorPosition;
|
|
|
|
break;
|
|
|
|
case L'u':
|
|
|
|
SetConsoleCursorPosition(handle, s->vt100.saved);
|
|
|
|
break;
|
|
|
|
case L'h':
|
|
|
|
if (count >= 2 && seq[0] == -1 && seq[1] == 25) {
|
|
|
|
CONSOLE_CURSOR_INFO cci;
|
|
|
|
GetConsoleCursorInfo(handle, &cci);
|
|
|
|
cci.bVisible = TRUE;
|
|
|
|
SetConsoleCursorInfo(handle, &cci);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case L'l':
|
|
|
|
if (count >= 2 && seq[0] == -1 && seq[1] == 25) {
|
|
|
|
CONSOLE_CURSOR_INFO cci;
|
|
|
|
GetConsoleCursorInfo(handle, &cci);
|
|
|
|
cci.bVisible = FALSE;
|
|
|
|
SetConsoleCursorInfo(handle, &cci);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
static long
|
|
|
|
constat_parse(HANDLE h, struct constat *s, const WCHAR **ptrp, long *lenp)
|
|
|
|
{
|
|
|
|
const WCHAR *ptr = *ptrp;
|
|
|
|
long rest, len = *lenp;
|
|
|
|
while (len-- > 0) {
|
|
|
|
WCHAR wc = *ptr++;
|
|
|
|
if (wc == 0x1b) {
|
|
|
|
rest = *lenp - len - 1;
|
2013-04-03 12:11:24 +04:00
|
|
|
if (s->vt100.state == constat_esc) {
|
|
|
|
rest++; /* reuse this ESC */
|
|
|
|
}
|
|
|
|
s->vt100.state = constat_init;
|
|
|
|
if (len > 0 && *ptr != L'[') continue;
|
2012-06-04 10:39:40 +04:00
|
|
|
s->vt100.state = constat_esc;
|
|
|
|
}
|
2013-04-03 12:11:24 +04:00
|
|
|
else if (s->vt100.state == constat_esc) {
|
|
|
|
if (wc != L'[') {
|
|
|
|
/* TODO: supply dropped ESC at beginning */
|
|
|
|
s->vt100.state = constat_init;
|
|
|
|
continue;
|
|
|
|
}
|
2012-06-04 10:39:40 +04:00
|
|
|
rest = *lenp - len - 1;
|
|
|
|
if (rest > 0) --rest;
|
|
|
|
s->vt100.state = constat_seq;
|
|
|
|
s->vt100.seq[0] = 0;
|
|
|
|
}
|
|
|
|
else if (s->vt100.state >= constat_seq) {
|
|
|
|
if (wc >= L'0' && wc <= L'9') {
|
|
|
|
if (s->vt100.state < (int)numberof(s->vt100.seq)) {
|
|
|
|
int *seq = &s->vt100.seq[s->vt100.state];
|
|
|
|
*seq = (*seq * 10) + (wc - L'0');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (s->vt100.state == constat_seq && s->vt100.seq[0] == 0 && wc == L'?') {
|
|
|
|
s->vt100.seq[s->vt100.state++] = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
do {
|
|
|
|
if (++s->vt100.state < (int)numberof(s->vt100.seq)) {
|
|
|
|
s->vt100.seq[s->vt100.state] = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s->vt100.state = (int)numberof(s->vt100.seq);
|
|
|
|
}
|
|
|
|
} while (0);
|
|
|
|
if (wc != L';') {
|
|
|
|
constat_apply(h, s, wc);
|
|
|
|
s->vt100.state = constat_init;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rest = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*ptrp = ptr;
|
|
|
|
*lenp = len;
|
|
|
|
return rest;
|
|
|
|
}
|
|
|
|
len = *lenp;
|
|
|
|
*ptrp = ptr;
|
|
|
|
*lenp = 0;
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2002-10-11 01:07:16 +04:00
|
|
|
int
|
|
|
|
rb_w32_close(int fd)
|
|
|
|
{
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
2007-04-10 12:02:38 +04:00
|
|
|
int save_errno = errno;
|
2002-10-11 01:07:16 +04:00
|
|
|
|
|
|
|
if (!is_socket(sock)) {
|
2003-02-28 16:54:14 +03:00
|
|
|
UnlockFile((HANDLE)sock, 0, 0, LK_LEN, LK_LEN);
|
2012-06-06 08:18:53 +04:00
|
|
|
constat_delete((HANDLE)sock);
|
2002-10-11 01:07:16 +04:00
|
|
|
return _close(fd);
|
|
|
|
}
|
2004-12-14 11:10:32 +03:00
|
|
|
_set_osfhnd(fd, (SOCKET)INVALID_HANDLE_VALUE);
|
2011-10-20 17:55:31 +04:00
|
|
|
socklist_delete(&sock, NULL);
|
2005-01-06 14:05:31 +03:00
|
|
|
_close(fd);
|
2007-04-10 12:02:38 +04:00
|
|
|
errno = save_errno;
|
2002-10-11 01:07:16 +04:00
|
|
|
if (closesocket(sock) == SOCKET_ERROR) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(WSAGetLastError());
|
2002-10-11 01:07:16 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2003-02-17 08:17:46 +03:00
|
|
|
|
2013-05-22 10:17:33 +04:00
|
|
|
static int
|
|
|
|
setup_overlapped(OVERLAPPED *ol, int fd)
|
|
|
|
{
|
|
|
|
memset(ol, 0, sizeof(*ol));
|
|
|
|
if (!(_osfile(fd) & (FDEV | FPIPE))) {
|
|
|
|
LONG high = 0;
|
|
|
|
DWORD method = _osfile(fd) & FAPPEND ? FILE_END : FILE_CURRENT;
|
|
|
|
DWORD low = SetFilePointer((HANDLE)_osfhnd(fd), 0, &high, method);
|
|
|
|
#ifndef INVALID_SET_FILE_POINTER
|
|
|
|
#define INVALID_SET_FILE_POINTER ((DWORD)-1)
|
|
|
|
#endif
|
|
|
|
if (low == INVALID_SET_FILE_POINTER) {
|
2013-05-22 10:19:03 +04:00
|
|
|
DWORD err = GetLastError();
|
|
|
|
if (err != NO_ERROR) {
|
|
|
|
errno = map_errno(err);
|
|
|
|
return -1;
|
|
|
|
}
|
2013-05-22 10:17:33 +04:00
|
|
|
}
|
|
|
|
ol->Offset = low;
|
|
|
|
ol->OffsetHigh = high;
|
|
|
|
}
|
|
|
|
ol->hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
|
|
|
|
if (!ol->hEvent) {
|
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
finish_overlapped(OVERLAPPED *ol, int fd, DWORD size)
|
|
|
|
{
|
|
|
|
CloseHandle(ol->hEvent);
|
|
|
|
|
|
|
|
if (!(_osfile(fd) & (FDEV | FPIPE))) {
|
|
|
|
LONG high = ol->OffsetHigh;
|
|
|
|
DWORD low = ol->Offset + size;
|
|
|
|
if (low < ol->Offset)
|
|
|
|
++high;
|
|
|
|
SetFilePointer((HANDLE)_osfhnd(fd), low, &high, FILE_BEGIN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-08 09:01:51 +04:00
|
|
|
#undef read
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-07-09 10:59:23 +04:00
|
|
|
ssize_t
|
2006-06-08 09:01:51 +04:00
|
|
|
rb_w32_read(int fd, void *buf, size_t size)
|
|
|
|
{
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
2008-08-28 16:46:58 +04:00
|
|
|
DWORD read;
|
|
|
|
DWORD wait;
|
|
|
|
DWORD err;
|
2010-03-24 08:34:05 +03:00
|
|
|
size_t len;
|
|
|
|
size_t ret;
|
2008-08-28 16:46:58 +04:00
|
|
|
OVERLAPPED ol, *pol = NULL;
|
2010-11-30 06:26:43 +03:00
|
|
|
BOOL isconsole;
|
2011-04-14 16:20:59 +04:00
|
|
|
BOOL islineinput = FALSE;
|
2010-05-27 17:36:26 +04:00
|
|
|
int start = 0;
|
2006-06-08 09:01:51 +04:00
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
if (is_socket(sock))
|
2006-06-08 09:01:51 +04:00
|
|
|
return rb_w32_recv(fd, buf, size, 0);
|
2008-08-28 16:46:58 +04:00
|
|
|
|
2008-12-05 12:08:24 +03:00
|
|
|
// validate fd by using _get_osfhandle() because we cannot access _nhandle
|
|
|
|
if (_get_osfhandle(fd) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
2008-08-28 16:46:58 +04:00
|
|
|
|
2008-08-30 15:06:52 +04:00
|
|
|
if (_osfile(fd) & FTEXT) {
|
|
|
|
return _read(fd, buf, size);
|
|
|
|
}
|
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fd)->lock)));
|
|
|
|
|
|
|
|
if (!size || _osfile(fd) & FEOFLAG) {
|
2010-12-02 07:42:29 +03:00
|
|
|
_set_osflags(fd, _osfile(fd) & ~FEOFLAG);
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-24 08:34:05 +03:00
|
|
|
ret = 0;
|
2012-11-20 07:07:23 +04:00
|
|
|
isconsole = is_console(_osfhnd(fd)) && (osver.dwMajorVersion < 6 || (osver.dwMajorVersion == 6 && osver.dwMinorVersion < 2));
|
2011-04-14 16:20:59 +04:00
|
|
|
if (isconsole) {
|
2010-12-06 18:29:45 +03:00
|
|
|
DWORD mode;
|
|
|
|
GetConsoleMode((HANDLE)_osfhnd(fd),&mode);
|
|
|
|
islineinput = (mode & ENABLE_LINE_INPUT) != 0;
|
|
|
|
}
|
2010-03-24 08:34:05 +03:00
|
|
|
retry:
|
2010-05-27 17:36:26 +04:00
|
|
|
/* get rid of console reading bug */
|
2010-11-30 06:26:43 +03:00
|
|
|
if (isconsole) {
|
2012-06-04 10:39:40 +04:00
|
|
|
constat_reset((HANDLE)_osfhnd(fd));
|
2010-05-27 17:36:26 +04:00
|
|
|
if (start)
|
2010-12-02 07:49:28 +03:00
|
|
|
len = 1;
|
2010-05-27 17:36:26 +04:00
|
|
|
else {
|
|
|
|
len = 0;
|
|
|
|
start = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
len = size;
|
2010-03-24 08:34:05 +03:00
|
|
|
size -= len;
|
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
/* if have cancel_io, use Overlapped I/O */
|
|
|
|
if (cancel_io) {
|
2013-05-22 10:17:33 +04:00
|
|
|
if (setup_overlapped(&ol, fd)) {
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pol = &ol;
|
|
|
|
}
|
|
|
|
|
2010-03-24 08:34:05 +03:00
|
|
|
if (!ReadFile((HANDLE)_osfhnd(fd), buf, len, &read, pol)) {
|
2008-08-28 16:46:58 +04:00
|
|
|
err = GetLastError();
|
|
|
|
if (err != ERROR_IO_PENDING) {
|
2010-03-25 08:50:08 +03:00
|
|
|
if (pol) CloseHandle(ol.hEvent);
|
2008-08-28 16:46:58 +04:00
|
|
|
if (err == ERROR_ACCESS_DENIED)
|
|
|
|
errno = EBADF;
|
2008-08-30 14:51:40 +04:00
|
|
|
else if (err == ERROR_BROKEN_PIPE || err == ERROR_HANDLE_EOF) {
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
errno = map_errno(err);
|
|
|
|
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pol) {
|
|
|
|
wait = rb_w32_wait_events_blocking(&ol.hEvent, 1, INFINITE);
|
|
|
|
if (wait != WAIT_OBJECT_0) {
|
2008-08-28 23:49:20 +04:00
|
|
|
if (wait == WAIT_OBJECT_0 + 1)
|
|
|
|
errno = EINTR;
|
|
|
|
else
|
2008-08-28 16:46:58 +04:00
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
CloseHandle(ol.hEvent);
|
|
|
|
cancel_io((HANDLE)_osfhnd(fd));
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!GetOverlappedResult((HANDLE)_osfhnd(fd), &ol, &read, TRUE) &&
|
|
|
|
(err = GetLastError()) != ERROR_HANDLE_EOF) {
|
2008-12-04 19:39:03 +03:00
|
|
|
int ret = 0;
|
|
|
|
if (err != ERROR_BROKEN_PIPE) {
|
|
|
|
errno = map_errno(err);
|
|
|
|
ret = -1;
|
|
|
|
}
|
2008-08-28 16:46:58 +04:00
|
|
|
CloseHandle(ol.hEvent);
|
|
|
|
cancel_io((HANDLE)_osfhnd(fd));
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
2008-12-04 19:39:03 +03:00
|
|
|
return ret;
|
2008-08-28 16:46:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-28 04:51:43 +04:00
|
|
|
else {
|
|
|
|
err = GetLastError();
|
|
|
|
errno = map_errno(err);
|
|
|
|
}
|
2008-08-28 16:46:58 +04:00
|
|
|
|
|
|
|
if (pol) {
|
2013-05-22 10:17:33 +04:00
|
|
|
finish_overlapped(&ol, fd, read);
|
2008-08-28 16:46:58 +04:00
|
|
|
}
|
|
|
|
|
2010-03-24 08:34:05 +03:00
|
|
|
ret += read;
|
2010-12-02 07:42:29 +03:00
|
|
|
if (read >= len) {
|
2010-12-02 09:32:01 +03:00
|
|
|
buf = (char *)buf + read;
|
2012-01-28 04:51:43 +04:00
|
|
|
if (err != ERROR_OPERATION_ABORTED &&
|
|
|
|
!(isconsole && len == 1 && (!islineinput || *((char *)buf - 1) == '\n')) && size > 0)
|
2010-03-24 08:34:05 +03:00
|
|
|
goto retry;
|
|
|
|
}
|
2010-12-02 07:42:29 +03:00
|
|
|
if (read == 0)
|
|
|
|
_set_osflags(fd, _osfile(fd) | FEOFLAG);
|
|
|
|
|
2010-03-24 08:34:05 +03:00
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
|
2010-03-24 08:34:05 +03:00
|
|
|
return ret;
|
2006-06-08 09:01:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef write
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2011-07-09 10:59:23 +04:00
|
|
|
ssize_t
|
2006-06-08 09:01:51 +04:00
|
|
|
rb_w32_write(int fd, const void *buf, size_t size)
|
|
|
|
{
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
2008-08-28 16:46:58 +04:00
|
|
|
DWORD written;
|
|
|
|
DWORD wait;
|
|
|
|
DWORD err;
|
2009-01-30 12:08:19 +03:00
|
|
|
size_t len;
|
|
|
|
size_t ret;
|
2008-08-28 16:46:58 +04:00
|
|
|
OVERLAPPED ol, *pol = NULL;
|
2006-06-08 09:01:51 +04:00
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
if (is_socket(sock))
|
|
|
|
return rb_w32_send(fd, buf, size, 0);
|
|
|
|
|
2008-12-05 12:08:24 +03:00
|
|
|
// validate fd by using _get_osfhandle() because we cannot access _nhandle
|
|
|
|
if (_get_osfhandle(fd) == -1) {
|
|
|
|
return -1;
|
|
|
|
}
|
2008-08-28 16:46:58 +04:00
|
|
|
|
2011-12-04 05:10:06 +04:00
|
|
|
if ((_osfile(fd) & FTEXT) &&
|
|
|
|
(!(_osfile(fd) & FPIPE) || fd == fileno(stdout) || fd == fileno(stderr))) {
|
2008-08-30 15:06:52 +04:00
|
|
|
return _write(fd, buf, size);
|
|
|
|
}
|
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(EnterCriticalSection(&(_pioinfo(fd)->lock)));
|
|
|
|
|
|
|
|
if (!size || _osfile(fd) & FEOFLAG) {
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-30 12:08:19 +03:00
|
|
|
ret = 0;
|
|
|
|
retry:
|
|
|
|
/* get rid of console writing bug */
|
|
|
|
len = (_osfile(fd) & FDEV) ? min(32 * 1024, size) : size;
|
|
|
|
size -= len;
|
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
/* if have cancel_io, use Overlapped I/O */
|
|
|
|
if (cancel_io) {
|
2013-05-22 10:17:33 +04:00
|
|
|
if (setup_overlapped(&ol, fd)) {
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pol = &ol;
|
2008-06-18 13:32:03 +04:00
|
|
|
}
|
2008-08-28 16:46:58 +04:00
|
|
|
|
2009-01-30 12:08:19 +03:00
|
|
|
if (!WriteFile((HANDLE)_osfhnd(fd), buf, len, &written, pol)) {
|
2008-08-28 16:46:58 +04:00
|
|
|
err = GetLastError();
|
|
|
|
if (err != ERROR_IO_PENDING) {
|
2010-03-25 08:50:08 +03:00
|
|
|
if (pol) CloseHandle(ol.hEvent);
|
2008-08-28 16:46:58 +04:00
|
|
|
if (err == ERROR_ACCESS_DENIED)
|
|
|
|
errno = EBADF;
|
|
|
|
else
|
|
|
|
errno = map_errno(err);
|
|
|
|
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pol) {
|
|
|
|
wait = rb_w32_wait_events_blocking(&ol.hEvent, 1, INFINITE);
|
|
|
|
if (wait != WAIT_OBJECT_0) {
|
2008-08-28 23:49:20 +04:00
|
|
|
if (wait == WAIT_OBJECT_0 + 1)
|
|
|
|
errno = EINTR;
|
|
|
|
else
|
2008-08-28 16:46:58 +04:00
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
CloseHandle(ol.hEvent);
|
|
|
|
cancel_io((HANDLE)_osfhnd(fd));
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!GetOverlappedResult((HANDLE)_osfhnd(fd), &ol, &written,
|
|
|
|
TRUE)) {
|
|
|
|
errno = map_errno(err);
|
|
|
|
CloseHandle(ol.hEvent);
|
|
|
|
cancel_io((HANDLE)_osfhnd(fd));
|
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pol) {
|
2013-05-22 10:17:33 +04:00
|
|
|
finish_overlapped(&ol, fd, written);
|
2008-08-28 16:46:58 +04:00
|
|
|
}
|
|
|
|
|
2009-01-30 12:08:19 +03:00
|
|
|
ret += written;
|
|
|
|
if (written == len) {
|
2009-02-03 02:01:43 +03:00
|
|
|
buf = (const char *)buf + len;
|
2009-01-30 12:08:19 +03:00
|
|
|
if (size > 0)
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2008-08-28 16:46:58 +04:00
|
|
|
MTHREAD_ONLY(LeaveCriticalSection(&_pioinfo(fd)->lock));
|
|
|
|
|
2009-01-30 12:08:19 +03:00
|
|
|
return ret;
|
2006-06-08 09:01:51 +04:00
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-11-27 22:49:58 +03:00
|
|
|
long
|
2010-11-29 16:52:26 +03:00
|
|
|
rb_w32_write_console(uintptr_t strarg, int fd)
|
2010-11-27 22:49:58 +03:00
|
|
|
{
|
|
|
|
static int disable;
|
|
|
|
HANDLE handle;
|
|
|
|
DWORD dwMode, reslen;
|
2010-11-29 16:52:26 +03:00
|
|
|
VALUE str = strarg;
|
2013-08-05 12:38:39 +04:00
|
|
|
int encindex;
|
|
|
|
WCHAR *wbuffer = 0;
|
2012-06-04 10:39:40 +04:00
|
|
|
const WCHAR *ptr, *next;
|
|
|
|
struct constat *s;
|
|
|
|
long len;
|
2010-11-27 22:49:58 +03:00
|
|
|
|
|
|
|
if (disable) return -1L;
|
|
|
|
handle = (HANDLE)_osfhnd(fd);
|
2013-08-05 12:38:39 +04:00
|
|
|
if (!GetConsoleMode(handle, &dwMode))
|
2010-11-29 08:11:49 +03:00
|
|
|
return -1L;
|
2010-11-27 22:49:58 +03:00
|
|
|
|
2012-06-04 10:39:40 +04:00
|
|
|
s = constat_handle(handle);
|
2013-08-05 12:38:39 +04:00
|
|
|
encindex = ENCODING_GET(str);
|
|
|
|
switch (encindex) {
|
|
|
|
default:
|
|
|
|
if (!rb_econv_has_convpath_p(rb_enc_name(rb_enc_from_index(encindex)), "UTF-8"))
|
|
|
|
return -1L;
|
|
|
|
str = rb_str_conv_enc_opts(str, NULL, rb_enc_from_index(ENCINDEX_UTF_8),
|
|
|
|
ECONV_INVALID_REPLACE|ECONV_UNDEF_REPLACE, Qnil);
|
|
|
|
/* fall through */
|
|
|
|
case ENCINDEX_US_ASCII:
|
|
|
|
case ENCINDEX_ASCII:
|
|
|
|
/* assume UTF-8 */
|
|
|
|
case ENCINDEX_UTF_8:
|
|
|
|
ptr = wbuffer = mbstr_to_wstr(CP_UTF8, RSTRING_PTR(str), RSTRING_LEN(str), &len);
|
|
|
|
break;
|
|
|
|
case ENCINDEX_UTF_16LE:
|
|
|
|
ptr = (const WCHAR *)RSTRING_PTR(str);
|
|
|
|
len = RSTRING_LEN(str) / sizeof(WCHAR);
|
|
|
|
break;
|
|
|
|
}
|
2012-06-04 10:39:40 +04:00
|
|
|
while (len > 0) {
|
|
|
|
long curlen = constat_parse(handle, s, (next = ptr, &next), &len);
|
|
|
|
if (curlen > 0) {
|
|
|
|
if (!WriteConsoleW(handle, ptr, curlen, &reslen, NULL)) {
|
|
|
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
disable = TRUE;
|
2013-08-05 12:38:39 +04:00
|
|
|
reslen = (DWORD)-1L;
|
|
|
|
break;
|
2012-06-04 10:39:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ptr = next;
|
2010-11-27 22:49:58 +03:00
|
|
|
}
|
2012-06-04 10:39:40 +04:00
|
|
|
RB_GC_GUARD(str);
|
2013-08-05 12:38:39 +04:00
|
|
|
if (wbuffer) free(wbuffer);
|
2010-11-27 22:49:58 +03:00
|
|
|
return (long)reslen;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2003-02-17 08:17:46 +03:00
|
|
|
static int
|
|
|
|
unixtime_to_filetime(time_t time, FILETIME *ft)
|
|
|
|
{
|
2012-03-22 14:55:11 +04:00
|
|
|
ULARGE_INTEGER tmp;
|
2003-02-17 08:17:46 +03:00
|
|
|
|
2012-03-22 14:55:11 +04:00
|
|
|
tmp.QuadPart = ((LONG_LONG)time + (LONG_LONG)((1970-1601)*365.2425) * 24 * 60 * 60) * 10 * 1000 * 1000;
|
|
|
|
ft->dwLowDateTime = tmp.LowPart;
|
|
|
|
ft->dwHighDateTime = tmp.HighPart;
|
2003-02-17 08:17:46 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wutime(const WCHAR *path, const struct utimbuf *times)
|
2003-02-17 08:17:46 +03:00
|
|
|
{
|
2003-08-03 21:48:51 +04:00
|
|
|
HANDLE hFile;
|
2003-02-17 08:17:46 +03:00
|
|
|
FILETIME atime, mtime;
|
2006-08-12 10:56:09 +04:00
|
|
|
struct stati64 stat;
|
2003-02-17 08:17:46 +03:00
|
|
|
int ret = 0;
|
|
|
|
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (wstati64(path, &stat)) {
|
2003-02-17 08:17:46 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-10-18 18:03:43 +04:00
|
|
|
if (times) {
|
2007-03-04 19:36:36 +03:00
|
|
|
if (unixtime_to_filetime(times->actime, &atime)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (unixtime_to_filetime(times->modtime, &mtime)) {
|
|
|
|
return -1;
|
|
|
|
}
|
2003-02-17 08:17:46 +03:00
|
|
|
}
|
2006-10-18 18:03:43 +04:00
|
|
|
else {
|
|
|
|
GetSystemTimeAsFileTime(&atime);
|
|
|
|
mtime = atime;
|
2003-02-17 08:17:46 +03:00
|
|
|
}
|
|
|
|
|
2003-08-03 21:48:51 +04:00
|
|
|
RUBY_CRITICAL({
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
const DWORD attr = GetFileAttributesW(path);
|
2006-02-14 07:49:01 +03:00
|
|
|
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY))
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(path, attr & ~FILE_ATTRIBUTE_READONLY);
|
|
|
|
hFile = CreateFileW(path, GENERIC_WRITE, 0, 0, OPEN_EXISTING,
|
2012-07-09 12:25:06 +04:00
|
|
|
FILE_FLAG_BACKUP_SEMANTICS, 0);
|
2003-08-03 21:48:51 +04:00
|
|
|
if (hFile == INVALID_HANDLE_VALUE) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2003-08-03 21:48:51 +04:00
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2003-08-03 21:48:51 +04:00
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
CloseHandle(hFile);
|
|
|
|
}
|
2006-02-14 07:49:01 +03:00
|
|
|
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY))
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(path, attr);
|
2003-08-03 21:48:51 +04:00
|
|
|
});
|
2003-02-17 08:17:46 +03:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2003-07-30 10:10:09 +04:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-12-07 07:45:46 +03:00
|
|
|
int
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
rb_w32_uutime(const char *path, const struct utimbuf *times)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = utf8_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wutime(wpath, times);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_utime(const char *path, const struct utimbuf *times)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = filecp_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wutime(wpath, times);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_uchdir(const char *path)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = utf8_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = _wchdir(wpath);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wmkdir(const WCHAR *wpath, int mode)
|
2004-12-07 07:45:46 +03:00
|
|
|
{
|
|
|
|
int ret = -1;
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
|
2004-12-07 07:45:46 +03:00
|
|
|
RUBY_CRITICAL(do {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (CreateDirectoryW(wpath, NULL) == FALSE) {
|
2005-07-13 14:40:06 +04:00
|
|
|
errno = map_errno(GetLastError());
|
2004-12-07 07:45:46 +03:00
|
|
|
break;
|
2005-07-13 14:40:06 +04:00
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (_wchmod(wpath, mode) == -1) {
|
|
|
|
RemoveDirectoryW(wpath);
|
2004-12-07 07:45:46 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
} while (0));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-12-07 07:45:46 +03:00
|
|
|
int
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
rb_w32_umkdir(const char *path, int mode)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = utf8_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wmkdir(wpath, mode);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_mkdir(const char *path, int mode)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = filecp_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wmkdir(wpath, mode);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wrmdir(const WCHAR *wpath)
|
2004-12-07 07:45:46 +03:00
|
|
|
{
|
2005-07-13 14:40:06 +04:00
|
|
|
int ret = 0;
|
2004-12-07 07:45:46 +03:00
|
|
|
RUBY_CRITICAL({
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
const DWORD attr = GetFileAttributesW(wpath);
|
2004-12-07 07:45:46 +03:00
|
|
|
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY)) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(wpath, attr & ~FILE_ATTRIBUTE_READONLY);
|
2004-12-07 07:45:46 +03:00
|
|
|
}
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
if (RemoveDirectoryW(wpath) == FALSE) {
|
2005-07-13 14:40:06 +04:00
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
ret = -1;
|
|
|
|
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY)) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(wpath, attr);
|
2005-07-13 14:40:06 +04:00
|
|
|
}
|
2004-12-07 07:45:46 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-06-20 12:17:53 +04:00
|
|
|
int
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
rb_w32_rmdir(const char *path)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = filecp_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wrmdir(wpath);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_urmdir(const char *path)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = utf8_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wrmdir(wpath);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
static int
|
|
|
|
wunlink(const WCHAR *path)
|
2005-06-20 12:17:53 +04:00
|
|
|
{
|
2005-07-13 14:40:06 +04:00
|
|
|
int ret = 0;
|
2005-06-20 12:17:53 +04:00
|
|
|
RUBY_CRITICAL({
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
const DWORD attr = GetFileAttributesW(path);
|
2005-06-20 12:17:53 +04:00
|
|
|
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY)) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(path, attr & ~FILE_ATTRIBUTE_READONLY);
|
2005-06-20 12:17:53 +04:00
|
|
|
}
|
2011-07-08 09:41:52 +04:00
|
|
|
if (!DeleteFileW(path)) {
|
2005-07-13 14:40:06 +04:00
|
|
|
errno = map_errno(GetLastError());
|
|
|
|
ret = -1;
|
|
|
|
if (attr != (DWORD)-1 && (attr & FILE_ATTRIBUTE_READONLY)) {
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
SetFileAttributesW(path, attr);
|
2005-07-13 14:40:06 +04:00
|
|
|
}
|
2005-06-20 12:17:53 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_uunlink(const char *path)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = utf8_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wunlink(wpath);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_unlink(const char *path)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!(wpath = filecp_to_wstr(path, NULL)))
|
|
|
|
return -1;
|
|
|
|
ret = wunlink(wpath);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
int
|
|
|
|
rb_w32_uchmod(const char *path, int mode)
|
|
|
|
{
|
|
|
|
WCHAR *wpath;
|
|
|
|
int ret;
|
|
|
|
|
2011-11-28 04:33:18 +04:00
|
|
|
if (!(wpath = utf8_to_wstr(path, NULL)))
|
* merge some patches from win32-uncode-test branch.
see #1685.
* file.c, include/ruby/intern.h (rb_str_encode_ospath): new function
to convert encoding for pathname.
* win32.c, include/ruby/win32.h (rb_w32_ulink, rb_w32_urename,
rb_w32_ustati64, rb_w32_uopen, rb_w32_uutime, rb_w32_uchdir,
rb_w32_umkdir, rb_w32_urmdir, rb_w32_uunlink): new functions to
accept UTF-8 path.
* win32/win32.c (rb_w32_opendir, link, rb_w32_stati64, rb_w32_utime,
rb_w32_unlink): use WCHAR path internally.
* file.c (rb_stat, eaccess, access_internal, rb_file_s_ftype,
chmod_internal, rb_file_chmod, rb_file_chown, utime_internal,
rb_file_s_link, unlink_internal, rb_file_s_rename): use UTF-8 version
functions on Win32.
* file.c (apply2files, rb_stat, rb_file_s_lstat, rb_file_symlink_p,
rb_file_readable_p, rb_file_writable_p, rb_file_executable_p,
check3rdbyte, rb_file_identical_p, rb_file_chmod, rb_file_chown,
rb_file_s_link, rb_file_s_symlink, rb_file_s_rename): call
rb_str_encode_ospath() before passing the path to system.
* io.c (rb_sysopen): ditto.
* dir.c (dir_chdir, dir_s_mkdir, dir_s_rmdir): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27570 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 21:56:23 +04:00
|
|
|
return -1;
|
|
|
|
ret = _wchmod(wpath, mode);
|
|
|
|
free(wpath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-10-04 17:48:20 +04:00
|
|
|
#if !defined(__BORLANDC__)
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2005-07-14 13:58:13 +04:00
|
|
|
int
|
|
|
|
rb_w32_isatty(int fd)
|
|
|
|
{
|
2010-11-29 08:33:15 +03:00
|
|
|
DWORD mode;
|
|
|
|
|
2008-12-05 12:08:24 +03:00
|
|
|
// validate fd by using _get_osfhandle() because we cannot access _nhandle
|
|
|
|
if (_get_osfhandle(fd) == -1) {
|
|
|
|
return 0;
|
|
|
|
}
|
2010-11-29 08:33:15 +03:00
|
|
|
if (!GetConsoleMode((HANDLE)_osfhnd(fd), &mode)) {
|
2005-07-14 13:58:13 +04:00
|
|
|
errno = ENOTTY;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-07-25 06:25:25 +04:00
|
|
|
//
|
|
|
|
// Fix bcc32's stdio bug
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-07-25 06:25:25 +04:00
|
|
|
static int
|
2005-07-16 10:59:05 +04:00
|
|
|
too_many_files(void)
|
2004-07-25 06:25:25 +04:00
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
for (f = _streams; f < _streams + _nfile; f++) {
|
|
|
|
if (f->fd < 0) return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef fopen
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-07-25 06:25:25 +04:00
|
|
|
FILE *
|
|
|
|
rb_w32_fopen(const char *path, const char *mode)
|
|
|
|
{
|
|
|
|
FILE *f = (errno = 0, fopen(path, mode));
|
|
|
|
if (f == NULL && errno == 0) {
|
|
|
|
if (too_many_files())
|
|
|
|
errno = EMFILE;
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-07-25 06:25:25 +04:00
|
|
|
FILE *
|
2005-02-10 07:55:34 +03:00
|
|
|
rb_w32_fdopen(int handle, const char *type)
|
2004-07-25 06:25:25 +04:00
|
|
|
{
|
2005-02-10 15:18:16 +03:00
|
|
|
FILE *f = (errno = 0, _fdopen(handle, (char *)type));
|
2004-07-25 06:25:25 +04:00
|
|
|
if (f == NULL && errno == 0) {
|
|
|
|
if (handle < 0)
|
|
|
|
errno = EBADF;
|
|
|
|
else if (too_many_files())
|
|
|
|
errno = EMFILE;
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2004-07-25 06:25:25 +04:00
|
|
|
FILE *
|
|
|
|
rb_w32_fsopen(const char *path, const char *mode, int shflags)
|
|
|
|
{
|
|
|
|
FILE *f = (errno = 0, _fsopen(path, mode, shflags));
|
|
|
|
if (f == NULL && errno == 0) {
|
|
|
|
if (too_many_files())
|
|
|
|
errno = EMFILE;
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
#endif
|
2009-10-30 07:15:54 +03:00
|
|
|
|
2012-04-16 11:08:27 +04:00
|
|
|
#if defined(_MSC_VER) && RUBY_MSVCRT_VERSION <= 60
|
2009-10-30 07:15:54 +03:00
|
|
|
extern long _ftol(double);
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2009-10-30 07:15:54 +03:00
|
|
|
long
|
|
|
|
_ftol2(double d)
|
|
|
|
{
|
|
|
|
return _ftol(d);
|
|
|
|
}
|
2011-08-05 15:31:52 +04:00
|
|
|
|
|
|
|
/* License: Ruby's */
|
2009-10-30 07:15:54 +03:00
|
|
|
long
|
|
|
|
_ftol2_sse(double d)
|
|
|
|
{
|
|
|
|
return _ftol(d);
|
|
|
|
}
|
|
|
|
#endif
|
2010-03-03 00:19:33 +03:00
|
|
|
|
2010-03-05 05:59:33 +03:00
|
|
|
#ifndef signbit
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2010-03-03 00:19:33 +03:00
|
|
|
int
|
|
|
|
signbit(double x)
|
|
|
|
{
|
|
|
|
int *ip = (int *)(&x + 1) - 1;
|
|
|
|
return *ip < 0;
|
|
|
|
}
|
2010-03-05 05:59:33 +03:00
|
|
|
#endif
|
2011-01-31 20:31:18 +03:00
|
|
|
|
2011-08-05 15:31:52 +04:00
|
|
|
/* License: Ruby's */
|
2012-07-29 18:56:52 +04:00
|
|
|
const char * WSAAPI
|
2011-11-29 04:51:40 +04:00
|
|
|
rb_w32_inet_ntop(int af, const void *addr, char *numaddr, size_t numaddr_len)
|
2011-01-31 20:31:18 +03:00
|
|
|
{
|
|
|
|
typedef char *(WSAAPI inet_ntop_t)(int, void *, char *, size_t);
|
|
|
|
inet_ntop_t *pInetNtop;
|
|
|
|
pInetNtop = (inet_ntop_t *)get_proc_address("ws2_32", "inet_ntop", NULL);
|
2011-11-29 04:51:40 +04:00
|
|
|
if (pInetNtop) {
|
|
|
|
return pInetNtop(af, (void *)addr, numaddr, numaddr_len);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct in_addr in;
|
|
|
|
memcpy(&in.s_addr, addr, sizeof(in.s_addr));
|
|
|
|
snprintf(numaddr, numaddr_len, "%s", inet_ntoa(in));
|
2011-01-31 20:31:18 +03:00
|
|
|
}
|
|
|
|
return numaddr;
|
|
|
|
}
|
2011-12-14 14:38:12 +04:00
|
|
|
|
2012-06-06 08:18:53 +04:00
|
|
|
/* License: Ruby's */
|
2011-12-14 14:38:12 +04:00
|
|
|
char
|
2013-02-15 13:31:16 +04:00
|
|
|
rb_w32_fd_is_text(int fd)
|
|
|
|
{
|
2011-12-14 14:38:12 +04:00
|
|
|
return _osfile(fd) & FTEXT;
|
|
|
|
}
|
2012-04-16 11:22:43 +04:00
|
|
|
|
2012-07-28 11:36:51 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION < 80 && !defined(__MINGW64__)
|
2012-06-06 08:18:53 +04:00
|
|
|
/* License: Ruby's */
|
2012-04-16 11:22:43 +04:00
|
|
|
static int
|
|
|
|
unixtime_to_systemtime(const time_t t, SYSTEMTIME *st)
|
|
|
|
{
|
|
|
|
FILETIME ft;
|
|
|
|
if (unixtime_to_filetime(t, &ft)) return -1;
|
|
|
|
if (!FileTimeToSystemTime(&ft, st)) return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-06-06 08:18:53 +04:00
|
|
|
/* License: Ruby's */
|
2012-04-16 11:22:43 +04:00
|
|
|
static void
|
|
|
|
systemtime_to_tm(const SYSTEMTIME *st, struct tm *t)
|
|
|
|
{
|
|
|
|
int y = st->wYear, m = st->wMonth, d = st->wDay;
|
|
|
|
t->tm_sec = st->wSecond;
|
|
|
|
t->tm_min = st->wMinute;
|
|
|
|
t->tm_hour = st->wHour;
|
|
|
|
t->tm_mday = st->wDay;
|
|
|
|
t->tm_mon = st->wMonth - 1;
|
|
|
|
t->tm_year = y - 1900;
|
|
|
|
t->tm_wday = st->wDayOfWeek;
|
|
|
|
switch (m) {
|
|
|
|
case 1:
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
d += 31;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
d += 31 + 28 + (!(y % 4) && ((y % 100) || !(y % 400)));
|
|
|
|
d += ((m - 3) * 153 + 2) / 5;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
t->tm_yday = d - 1;
|
|
|
|
}
|
|
|
|
|
2012-06-06 08:18:53 +04:00
|
|
|
/* License: Ruby's */
|
2012-04-16 11:22:43 +04:00
|
|
|
static int
|
|
|
|
systemtime_to_localtime(TIME_ZONE_INFORMATION *tz, SYSTEMTIME *gst, SYSTEMTIME *lst)
|
|
|
|
{
|
|
|
|
TIME_ZONE_INFORMATION stdtz;
|
|
|
|
SYSTEMTIME sst;
|
|
|
|
|
|
|
|
if (!SystemTimeToTzSpecificLocalTime(tz, gst, lst)) return -1;
|
|
|
|
if (!tz) {
|
|
|
|
GetTimeZoneInformation(&stdtz);
|
|
|
|
tz = &stdtz;
|
|
|
|
}
|
|
|
|
if (tz->StandardBias == tz->DaylightBias) return 0;
|
|
|
|
if (!tz->StandardDate.wMonth) return 0;
|
|
|
|
if (!tz->DaylightDate.wMonth) return 0;
|
|
|
|
if (tz != &stdtz) stdtz = *tz;
|
|
|
|
|
|
|
|
stdtz.StandardDate.wMonth = stdtz.DaylightDate.wMonth = 0;
|
|
|
|
if (!SystemTimeToTzSpecificLocalTime(&stdtz, gst, &sst)) return 0;
|
|
|
|
if (lst->wMinute == sst.wMinute && lst->wHour == sst.wHour)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-28 11:36:51 +04:00
|
|
|
#ifdef __MINGW64__
|
2012-07-29 01:41:37 +04:00
|
|
|
# ifndef MINGW_HAS_SECURE_API
|
|
|
|
_CRTIMP errno_t __cdecl _gmtime64_s(struct tm* tm, const __time64_t *time);
|
|
|
|
_CRTIMP errno_t __cdecl _localtime64_s(struct tm* tm, const __time64_t *time);
|
|
|
|
# endif
|
2012-07-28 11:36:51 +04:00
|
|
|
# define gmtime_s _gmtime64_s
|
|
|
|
# define localtime_s _localtime64_s
|
|
|
|
#endif
|
|
|
|
|
2012-06-06 08:18:53 +04:00
|
|
|
/* License: Ruby's */
|
2012-04-16 11:22:43 +04:00
|
|
|
struct tm *
|
|
|
|
gmtime_r(const time_t *tp, struct tm *rp)
|
|
|
|
{
|
|
|
|
int e = EINVAL;
|
|
|
|
if (!tp || !rp) {
|
|
|
|
error:
|
|
|
|
errno = e;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-07-28 11:36:51 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION >= 80 || defined(__MINGW64__)
|
2012-04-16 11:22:43 +04:00
|
|
|
e = gmtime_s(rp, tp);
|
|
|
|
if (e != 0) goto error;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
SYSTEMTIME st;
|
|
|
|
if (unixtime_to_systemtime(*tp, &st)) goto error;
|
|
|
|
rp->tm_isdst = 0;
|
|
|
|
systemtime_to_tm(&st, rp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return rp;
|
|
|
|
}
|
|
|
|
|
2012-06-06 08:18:53 +04:00
|
|
|
/* License: Ruby's */
|
2012-04-16 11:22:43 +04:00
|
|
|
struct tm *
|
|
|
|
localtime_r(const time_t *tp, struct tm *rp)
|
|
|
|
{
|
|
|
|
int e = EINVAL;
|
|
|
|
if (!tp || !rp) {
|
|
|
|
error:
|
|
|
|
errno = e;
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-07-28 11:36:51 +04:00
|
|
|
#if RUBY_MSVCRT_VERSION >= 80 || defined(__MINGW64__)
|
2012-04-16 11:22:43 +04:00
|
|
|
e = localtime_s(rp, tp);
|
|
|
|
if (e) goto error;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
SYSTEMTIME gst, lst;
|
|
|
|
if (unixtime_to_systemtime(*tp, &gst)) goto error;
|
|
|
|
rp->tm_isdst = systemtime_to_localtime(NULL, &gst, &lst);
|
|
|
|
systemtime_to_tm(&lst, rp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return rp;
|
|
|
|
}
|
2012-06-06 08:29:38 +04:00
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
int
|
|
|
|
rb_w32_wrap_io_handle(HANDLE h, int flags)
|
|
|
|
{
|
|
|
|
BOOL tmp;
|
|
|
|
int len = sizeof(tmp);
|
|
|
|
int r = getsockopt((SOCKET)h, SOL_SOCKET, SO_DEBUG, (char *)&tmp, &len);
|
|
|
|
if (r != SOCKET_ERROR || WSAGetLastError() != WSAENOTSOCK) {
|
|
|
|
int f = 0;
|
|
|
|
if (flags & O_NONBLOCK) {
|
|
|
|
flags &= ~O_NONBLOCK;
|
|
|
|
f = O_NONBLOCK;
|
|
|
|
}
|
|
|
|
socklist_insert((SOCKET)h, f);
|
|
|
|
}
|
|
|
|
else if (flags & O_NONBLOCK) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return rb_w32_open_osfhandle((intptr_t)h, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* License: Ruby's */
|
|
|
|
int
|
|
|
|
rb_w32_unwrap_io_handle(int fd)
|
|
|
|
{
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
|
|
|
_set_osfhnd(fd, (SOCKET)INVALID_HANDLE_VALUE);
|
|
|
|
if (!is_socket(sock)) {
|
|
|
|
UnlockFile((HANDLE)sock, 0, 0, LK_LEN, LK_LEN);
|
|
|
|
constat_delete((HANDLE)sock);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
socklist_delete(&sock, NULL);
|
|
|
|
}
|
|
|
|
return _close(fd);
|
|
|
|
}
|
2013-07-08 18:13:13 +04:00
|
|
|
|
|
|
|
#if !defined(__MINGW64__) && defined(__MINGW64_VERSION_MAJOR)
|
|
|
|
/*
|
|
|
|
* Set floating point precision for pow() of mingw-w64 x86.
|
|
|
|
* With default precision the result is not proper on WinXP.
|
|
|
|
*/
|
|
|
|
double
|
|
|
|
rb_w32_pow(double x, double y)
|
|
|
|
{
|
2013-07-11 16:30:24 +04:00
|
|
|
#undef pow
|
2013-07-08 18:13:13 +04:00
|
|
|
double r;
|
|
|
|
unsigned int default_control = _controlfp(0, 0);
|
|
|
|
_controlfp(_PC_64, _MCW_PC);
|
|
|
|
r = pow(x, y);
|
|
|
|
/* Restore setting */
|
|
|
|
_controlfp(default_control, _MCW_PC);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
#endif
|