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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ruby.h"
|
2000-07-06 11:21:26 +04:00
|
|
|
#include "rubysig.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>
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <wincon.h>
|
2002-04-19 11:33:18 +04:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <mswsock.h>
|
|
|
|
#endif
|
1999-08-13 09:45:20 +04:00
|
|
|
#include "win32.h"
|
2001-03-21 02:10:05 +03:00
|
|
|
#include "win32/dir.h"
|
1999-01-20 07:45:32 +03:00
|
|
|
#ifndef index
|
|
|
|
#define index(x, y) strchr((x), (y))
|
|
|
|
#endif
|
2001-02-09 18:02:14 +03:00
|
|
|
#define isdirsep(x) ((x) == '/' || (x) == '\\')
|
2002-10-11 01:07:16 +04:00
|
|
|
|
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
|
|
|
|
|
|
|
#ifndef bool
|
|
|
|
#define bool int
|
|
|
|
#endif
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#ifdef _M_IX86
|
|
|
|
# define WIN95 1
|
|
|
|
#else
|
|
|
|
# undef WIN95
|
|
|
|
#endif
|
2000-11-14 10:10:31 +03:00
|
|
|
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
# define _filbuf _fgetc
|
|
|
|
# define _flsbuf fputc
|
|
|
|
#endif
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#if HAVE_WSAWAITFORMULTIPLEEVENTS
|
|
|
|
# define USE_INTERRUPT_WINSOCK
|
|
|
|
#endif
|
2000-11-14 10:10:31 +03:00
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#if USE_INTERRUPT_WINSOCK
|
2000-11-14 10:10:31 +03:00
|
|
|
# define WaitForMultipleEvents WSAWaitForMultipleEvents
|
|
|
|
# define CreateSignal() (HANDLE)WSACreateEvent()
|
|
|
|
# define SetSignal(ev) WSASetEvent(ev)
|
|
|
|
# define ResetSignal(ev) WSAResetEvent(ev)
|
|
|
|
#else /* USE_INTERRUPT_WINSOCK */
|
|
|
|
# define WaitForMultipleEvents WaitForMultipleObjectsEx
|
|
|
|
# define CreateSignal() CreateEvent(NULL, FALSE, FALSE, NULL);
|
|
|
|
# define SetSignal(ev) SetEvent(ev)
|
|
|
|
# define ResetSignal(ev) (void)0
|
|
|
|
#endif /* USE_INTERRUPT_WINSOCK */
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
bool NtSyncProcess = TRUE;
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
static struct ChildRecord *CreateChild(char *, SECURITY_ATTRIBUTES *, HANDLE, HANDLE, HANDLE);
|
1999-01-20 07:45:32 +03:00
|
|
|
static bool NtHasRedirection (char *);
|
|
|
|
static int valid_filename(char *s);
|
|
|
|
static void StartSockets ();
|
|
|
|
static char *str_grow(struct RString *str, size_t new_size);
|
2000-11-14 10:10:31 +03:00
|
|
|
static DWORD wait_events(HANDLE event, DWORD timeout);
|
2002-07-30 10:34:27 +04:00
|
|
|
#ifndef __BORLANDC__
|
|
|
|
static int rb_w32_open_osfhandle(long osfhandle, int flags);
|
2002-09-29 13:31:58 +04:00
|
|
|
#else
|
|
|
|
#define rb_w32_open_osfhandle(osfhandle, flags) _open_osfhandle(osfhandle, flags)
|
2002-07-30 10:34:27 +04:00
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
char *NTLoginName;
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#ifdef WIN95
|
1999-01-20 07:45:32 +03:00
|
|
|
DWORD Win32System = (DWORD)-1;
|
|
|
|
|
|
|
|
static DWORD
|
|
|
|
IdOS(void)
|
|
|
|
{
|
|
|
|
static OSVERSIONINFO osver;
|
|
|
|
|
|
|
|
if (osver.dwPlatformId != Win32System) {
|
|
|
|
memset(&osver, 0, sizeof(OSVERSIONINFO));
|
|
|
|
osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
|
|
|
|
GetVersionEx(&osver);
|
|
|
|
Win32System = osver.dwPlatformId;
|
|
|
|
}
|
|
|
|
return (Win32System);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
IsWin95(void) {
|
|
|
|
return (IdOS() == VER_PLATFORM_WIN32_WINDOWS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
IsWinNT(void) {
|
|
|
|
return (IdOS() == VER_PLATFORM_WIN32_NT);
|
|
|
|
}
|
2001-02-17 18:17:10 +03:00
|
|
|
#else
|
|
|
|
# define IsWinNT() TRUE
|
|
|
|
# define IsWin95() FALSE
|
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2000-09-27 13:11:13 +04:00
|
|
|
/* main thread constants */
|
2000-11-14 10:10:31 +03:00
|
|
|
static struct {
|
|
|
|
HANDLE handle;
|
|
|
|
DWORD id;
|
|
|
|
} main_thread;
|
|
|
|
|
|
|
|
/* interrupt stuff */
|
|
|
|
static HANDLE interrupted_event;
|
2000-09-27 13:11:13 +04:00
|
|
|
|
|
|
|
HANDLE GetCurrentThreadHandle(void)
|
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
static HANDLE current_process_handle = NULL;
|
2000-09-27 13:11:13 +04:00
|
|
|
HANDLE h;
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
if (!current_process_handle)
|
|
|
|
current_process_handle = GetCurrentProcess();
|
|
|
|
if (!DuplicateHandle(current_process_handle, GetCurrentThread(),
|
|
|
|
current_process_handle, &h,
|
2000-09-27 13:11:13 +04:00
|
|
|
0, FALSE, DUPLICATE_SAME_ACCESS))
|
|
|
|
return NULL;
|
|
|
|
return h;
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
/* simulate flock by locking a range on the file */
|
|
|
|
|
|
|
|
|
|
|
|
#define LK_ERR(f,i) ((f) ? (i = 0) : (errno = GetLastError()))
|
|
|
|
#define LK_LEN 0xffff0000
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
static VALUE
|
|
|
|
flock_winnt(VALUE self, int argc, VALUE* 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 */
|
|
|
|
LK_ERR(LockFileEx(fh, 0, 0, LK_LEN, 0, &o), i);
|
|
|
|
break;
|
|
|
|
case LOCK_EX: /* exclusive lock */
|
|
|
|
LK_ERR(LockFileEx(fh, LOCKFILE_EXCLUSIVE_LOCK, 0, LK_LEN, 0, &o), i);
|
|
|
|
break;
|
|
|
|
case LOCK_SH|LOCK_NB: /* non-blocking shared lock */
|
|
|
|
LK_ERR(LockFileEx(fh, LOCKFILE_FAIL_IMMEDIATELY, 0, LK_LEN, 0, &o), i);
|
|
|
|
break;
|
|
|
|
case LOCK_EX|LOCK_NB: /* non-blocking exclusive lock */
|
|
|
|
LK_ERR(LockFileEx(fh,
|
|
|
|
LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
|
|
|
|
0, LK_LEN, 0, &o), i);
|
|
|
|
if (errno == EDOM)
|
|
|
|
errno = EWOULDBLOCK;
|
|
|
|
break;
|
|
|
|
case LOCK_UN: /* unlock lock */
|
|
|
|
if (UnlockFileEx(fh, 0, LK_LEN, 0, &o)) {
|
|
|
|
i = 0;
|
|
|
|
if (errno == EDOM)
|
1999-01-20 07:45:32 +03:00
|
|
|
errno = EWOULDBLOCK;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* GetLastError() must returns `ERROR_NOT_LOCKED' */
|
|
|
|
errno = EWOULDBLOCK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: /* unknown */
|
|
|
|
errno = EINVAL;
|
|
|
|
break;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#ifdef WIN95
|
2000-11-14 10:10:31 +03:00
|
|
|
static VALUE
|
|
|
|
flock_win95(VALUE self, int argc, VALUE* argv)
|
|
|
|
{
|
|
|
|
int i = -1;
|
|
|
|
const HANDLE fh = (HANDLE)self;
|
|
|
|
const int oper = argc;
|
|
|
|
|
|
|
|
switch(oper) {
|
|
|
|
case LOCK_EX:
|
|
|
|
while(i == -1) {
|
1999-01-20 07:45:32 +03:00
|
|
|
LK_ERR(LockFile(fh, 0, 0, LK_LEN, 0), i);
|
2000-11-14 10:10:31 +03:00
|
|
|
if (errno != EDOM && i == -1) break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LOCK_EX | LOCK_NB:
|
|
|
|
LK_ERR(LockFile(fh, 0, 0, LK_LEN, 0), i);
|
|
|
|
if (errno == EDOM)
|
|
|
|
errno = EWOULDBLOCK;
|
|
|
|
break;
|
|
|
|
case LOCK_UN:
|
|
|
|
LK_ERR(UnlockFile(fh, 0, 0, LK_LEN, 0), i);
|
|
|
|
if (errno == EDOM)
|
|
|
|
errno = EWOULDBLOCK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
break;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
2001-02-17 18:17:10 +03:00
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
#undef LK_ERR
|
|
|
|
#undef LK_LEN
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
int
|
|
|
|
flock(int fd, int oper)
|
|
|
|
{
|
2001-02-17 18:17:10 +03:00
|
|
|
#ifdef WIN95
|
2000-11-14 10:10:31 +03:00
|
|
|
static asynchronous_func_t locker = NULL;
|
|
|
|
|
|
|
|
if (!locker) {
|
|
|
|
if (IsWinNT())
|
|
|
|
locker = flock_winnt;
|
|
|
|
else
|
|
|
|
locker = flock_win95;
|
|
|
|
}
|
2001-02-17 18:17:10 +03:00
|
|
|
#else
|
|
|
|
const asynchronous_func_t locker = flock_winnt;
|
|
|
|
#endif
|
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
|
|
|
|
|
|
|
//#undef const
|
|
|
|
//FILE *fdopen(int, const char *);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Initialization stuff
|
|
|
|
//
|
|
|
|
void
|
2000-09-27 13:11:13 +04:00
|
|
|
NtInitialize(int *argc, char ***argv)
|
|
|
|
{
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
WORD version;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// subvert cmd.exe's feeble attempt at command line parsing
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
*argc = NtMakeCmdVector((char *)GetCommandLine(), argv, TRUE);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now set up the correct time stuff
|
|
|
|
//
|
|
|
|
|
|
|
|
tzset();
|
|
|
|
|
|
|
|
// Initialize Winsock
|
|
|
|
StartSockets();
|
|
|
|
}
|
|
|
|
|
|
|
|
char *getlogin()
|
|
|
|
{
|
|
|
|
char buffer[200];
|
2000-05-29 06:10:22 +04:00
|
|
|
DWORD len = 200;
|
1999-01-20 07:45:32 +03:00
|
|
|
extern char *NTLoginName;
|
|
|
|
|
|
|
|
if (NTLoginName == NULL) {
|
|
|
|
if (GetUserName(buffer, &len)) {
|
|
|
|
NTLoginName = ALLOC_N(char, len+1);
|
|
|
|
strncpy(NTLoginName, buffer, len);
|
|
|
|
NTLoginName[len] = '\0';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NTLoginName = "<Unknown>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NTLoginName;
|
|
|
|
}
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
#define MAXCHILDNUM 256 /* max num of child processes */
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
struct ChildRecord {
|
|
|
|
HANDLE hProcess; /* process handle */
|
|
|
|
pid_t pid; /* process id */
|
|
|
|
} ChildRecord[MAXCHILDNUM];
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
|
|
|
static struct ChildRecord *
|
|
|
|
FindFirstChildSlot(void)
|
|
|
|
{
|
|
|
|
FOREACH_CHILD(child) {
|
|
|
|
if (child->pid) return child;
|
|
|
|
} END_FOREACH_CHILD;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ChildRecord *
|
|
|
|
FindChildSlot(pid_t pid)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
int SafeFree(char **vec, int vecc)
|
|
|
|
{
|
|
|
|
// vec
|
|
|
|
// |
|
|
|
|
// V ^---------------------V
|
|
|
|
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
|
|
|
|
// | | | .... | NULL | | ..... |\0 | | ..... |\0 |...
|
|
|
|
// +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
|
|
|
|
// |- elements+1 -| ^ 1st element ^ 2nd element
|
|
|
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = (char *)vec;
|
|
|
|
free(p);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char *szInternalCmds[] = {
|
|
|
|
"append",
|
|
|
|
"break",
|
|
|
|
"call",
|
|
|
|
"cd",
|
|
|
|
"chdir",
|
|
|
|
"cls",
|
|
|
|
"copy",
|
|
|
|
"date",
|
|
|
|
"del",
|
|
|
|
"dir",
|
|
|
|
"echo",
|
|
|
|
"erase",
|
|
|
|
"label",
|
|
|
|
"md",
|
|
|
|
"mkdir",
|
|
|
|
"path",
|
|
|
|
"pause",
|
|
|
|
"rd",
|
|
|
|
"rem",
|
|
|
|
"ren",
|
|
|
|
"rename",
|
|
|
|
"rmdir",
|
|
|
|
"set",
|
|
|
|
"start",
|
|
|
|
"time",
|
|
|
|
"type",
|
|
|
|
"ver",
|
|
|
|
"vol",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
isInternalCmd(char *cmd)
|
|
|
|
{
|
2001-09-25 05:47:47 +04:00
|
|
|
int i, fRet=0;
|
|
|
|
char **vec;
|
|
|
|
int vecc = NtMakeCmdVector(cmd, &vec, FALSE);
|
|
|
|
|
|
|
|
if (vecc == 0)
|
|
|
|
return 0;
|
|
|
|
for( i = 0; szInternalCmds[i] ; i++){
|
|
|
|
if(!strcasecmp(szInternalCmds[i], vec[0])){
|
|
|
|
fRet = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SafeFree(vec, vecc);
|
|
|
|
|
|
|
|
return fRet;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2002-06-28 22:26:01 +04:00
|
|
|
pid_t
|
|
|
|
pipe_exec(char *cmd, int mode, FILE **fpr, FILE **fpw)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2001-11-13 06:59:20 +03:00
|
|
|
struct ChildRecord* child;
|
2002-06-28 22:26:01 +04:00
|
|
|
HANDLE hReadIn, hReadOut;
|
|
|
|
HANDLE hWriteIn, hWriteOut;
|
|
|
|
HANDLE hSavedStdIn, hSavedStdOut;
|
|
|
|
HANDLE hDupInFile, hDupOutFile;
|
2001-11-26 10:59:01 +03:00
|
|
|
HANDLE hCurProc;
|
2001-11-13 06:59:20 +03:00
|
|
|
SECURITY_ATTRIBUTES sa;
|
2002-06-28 22:26:01 +04:00
|
|
|
BOOL fRet;
|
|
|
|
BOOL reading, writing;
|
|
|
|
int fdin, fdout;
|
|
|
|
int pipemode;
|
|
|
|
char modes[3];
|
|
|
|
int ret;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-06-28 22:26:01 +04:00
|
|
|
/* Figure out what we're doing... */
|
|
|
|
writing = (mode & (O_WRONLY | O_RDWR)) ? TRUE : FALSE;
|
|
|
|
reading = ((mode & O_RDWR) || !writing) ? TRUE : FALSE;
|
|
|
|
pipemode = (mode & O_BINARY) ? O_BINARY : O_TEXT;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
sa.nLength = sizeof (SECURITY_ATTRIBUTES);
|
|
|
|
sa.lpSecurityDescriptor = NULL;
|
|
|
|
sa.bInheritHandle = TRUE;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-06-28 22:26:01 +04:00
|
|
|
/* create pipe, save parent's STDIN/STDOUT and redirect them for child */
|
|
|
|
RUBY_CRITICAL(do {
|
|
|
|
ret = -1;
|
|
|
|
hCurProc = GetCurrentProcess();
|
|
|
|
if (reading) {
|
|
|
|
fRet = CreatePipe(&hReadIn, &hReadOut, &sa, 2048L);
|
|
|
|
if (!fRet) {
|
|
|
|
errno = GetLastError();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
hSavedStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
|
|
if (!SetStdHandle(STD_OUTPUT_HANDLE, hReadOut) ||
|
|
|
|
!DuplicateHandle(hCurProc, hReadIn, hCurProc, &hDupInFile, 0,
|
|
|
|
FALSE, DUPLICATE_SAME_ACCESS)) {
|
|
|
|
errno = GetLastError();
|
|
|
|
CloseHandle(hReadIn);
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
CloseHandle(hCurProc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
CloseHandle(hReadIn);
|
2001-11-26 10:59:01 +03:00
|
|
|
}
|
2002-06-28 22:26:01 +04:00
|
|
|
if (writing) {
|
|
|
|
fRet = CreatePipe(&hWriteIn, &hWriteOut, &sa, 2048L);
|
|
|
|
if (!fRet) {
|
|
|
|
errno = GetLastError();
|
|
|
|
if (reading) {
|
|
|
|
CloseHandle(hDupInFile);
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
hSavedStdIn = GetStdHandle(STD_INPUT_HANDLE);
|
|
|
|
if (!SetStdHandle(STD_INPUT_HANDLE, hWriteIn) ||
|
|
|
|
!DuplicateHandle(hCurProc, hWriteOut, hCurProc, &hDupOutFile, 0,
|
|
|
|
FALSE, DUPLICATE_SAME_ACCESS)) {
|
|
|
|
errno = GetLastError();
|
|
|
|
CloseHandle(hWriteIn);
|
|
|
|
CloseHandle(hWriteOut);
|
|
|
|
CloseHandle(hCurProc);
|
|
|
|
if (reading) {
|
|
|
|
CloseHandle(hDupInFile);
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
CloseHandle(hWriteOut);
|
2001-11-26 10:59:01 +03:00
|
|
|
}
|
2002-06-28 22:26:01 +04:00
|
|
|
CloseHandle(hCurProc);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
/* create child process */
|
|
|
|
child = CreateChild(cmd, &sa, NULL, NULL, NULL);
|
|
|
|
if (!child) {
|
2002-06-28 22:26:01 +04:00
|
|
|
if (reading) {
|
|
|
|
SetStdHandle(STD_OUTPUT_HANDLE, hSavedStdOut);
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
CloseHandle(hDupInFile);
|
|
|
|
}
|
|
|
|
if (writing) {
|
|
|
|
SetStdHandle(STD_INPUT_HANDLE, hSavedStdIn);
|
|
|
|
CloseHandle(hWriteIn);
|
|
|
|
CloseHandle(hDupOutFile);
|
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
break;
|
|
|
|
}
|
2002-06-28 22:26:01 +04:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
/* restore STDIN/STDOUT */
|
2002-06-28 22:26:01 +04:00
|
|
|
if (reading) {
|
|
|
|
if (!SetStdHandle(STD_OUTPUT_HANDLE, hSavedStdOut)) {
|
|
|
|
errno = GetLastError();
|
|
|
|
CloseChildHandle(child);
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
CloseHandle(hDupInFile);
|
|
|
|
if (writing) {
|
|
|
|
CloseHandle(hWriteIn);
|
|
|
|
CloseHandle(hDupOutFile);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (writing) {
|
|
|
|
if (!SetStdHandle(STD_INPUT_HANDLE, hSavedStdIn)) {
|
|
|
|
errno = GetLastError();
|
|
|
|
CloseChildHandle(child);
|
|
|
|
CloseHandle(hWriteIn);
|
|
|
|
CloseHandle(hDupOutFile);
|
|
|
|
if (reading) {
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
CloseHandle(hDupInFile);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
if (reading) {
|
|
|
|
fdin = rb_w32_open_osfhandle((long)hDupInFile,
|
|
|
|
(_O_RDONLY | pipemode));
|
|
|
|
CloseHandle(hReadOut);
|
|
|
|
if (fdin == -1) {
|
|
|
|
CloseHandle(hDupInFile);
|
|
|
|
if (writing) {
|
|
|
|
CloseHandle(hWriteIn);
|
|
|
|
CloseHandle(hDupOutFile);
|
|
|
|
}
|
|
|
|
CloseChildHandle(child);
|
|
|
|
break;
|
2002-06-28 22:26:01 +04:00
|
|
|
}
|
2001-11-26 10:59:01 +03:00
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
if (writing) {
|
|
|
|
fdout = rb_w32_open_osfhandle((long)hDupOutFile,
|
|
|
|
(_O_WRONLY | pipemode));
|
|
|
|
CloseHandle(hWriteIn);
|
|
|
|
if (fdout == -1) {
|
|
|
|
CloseHandle(hDupOutFile);
|
|
|
|
if (reading) {
|
|
|
|
_close(fdin);
|
|
|
|
}
|
|
|
|
CloseChildHandle(child);
|
|
|
|
break;
|
2002-06-28 22:26:01 +04:00
|
|
|
}
|
2001-11-26 10:59:01 +03:00
|
|
|
}
|
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
if (reading) {
|
|
|
|
sprintf(modes, "r%s", pipemode == O_BINARY ? "b" : "");
|
|
|
|
if ((*fpr = (FILE *)fdopen(fdin, modes)) == NULL) {
|
|
|
|
_close(fdin);
|
|
|
|
if (writing) {
|
|
|
|
_close(fdout);
|
|
|
|
}
|
|
|
|
CloseChildHandle(child);
|
|
|
|
break;
|
2002-06-28 22:26:01 +04:00
|
|
|
}
|
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
if (writing) {
|
|
|
|
sprintf(modes, "w%s", pipemode == O_BINARY ? "b" : "");
|
|
|
|
if ((*fpw = (FILE *)fdopen(fdout, modes)) == NULL) {
|
|
|
|
_close(fdout);
|
|
|
|
if (reading) {
|
|
|
|
fclose(*fpr);
|
|
|
|
}
|
|
|
|
CloseChildHandle(child);
|
|
|
|
break;
|
2002-06-28 22:26:01 +04:00
|
|
|
}
|
|
|
|
}
|
2002-09-29 13:31:58 +04:00
|
|
|
ret = child->pid;
|
|
|
|
} while (0));
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
return ret;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
extern VALUE rb_last_status;
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
int
|
|
|
|
do_spawn(cmd)
|
|
|
|
char *cmd;
|
|
|
|
{
|
2001-11-13 06:59:20 +03:00
|
|
|
struct ChildRecord *child = CreateChild(cmd, NULL, NULL, NULL, NULL);
|
|
|
|
if (!child) {
|
2001-11-13 10:50:20 +03:00
|
|
|
return -1;
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
rb_syswait(child->pid);
|
|
|
|
return NUM2INT(rb_last_status);
|
|
|
|
}
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
static struct ChildRecord *
|
|
|
|
CreateChild(char *cmd, SECURITY_ATTRIBUTES *psa, HANDLE hInput, HANDLE hOutput, HANDLE hError)
|
|
|
|
{
|
|
|
|
BOOL fRet;
|
|
|
|
DWORD dwCreationFlags;
|
|
|
|
STARTUPINFO aStartupInfo;
|
|
|
|
PROCESS_INFORMATION aProcessInformation;
|
|
|
|
SECURITY_ATTRIBUTES sa;
|
|
|
|
char *shell;
|
|
|
|
struct ChildRecord *child;
|
|
|
|
|
|
|
|
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;
|
|
|
|
sa.bInheritHandle = TRUE;
|
|
|
|
psa = &sa;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&aStartupInfo, 0, sizeof (STARTUPINFO));
|
|
|
|
memset(&aProcessInformation, 0, sizeof (PROCESS_INFORMATION));
|
|
|
|
aStartupInfo.cb = sizeof (STARTUPINFO);
|
2001-11-26 10:59:01 +03:00
|
|
|
if (hInput || hOutput || hError) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
dwCreationFlags = (NORMAL_PRIORITY_CLASS);
|
|
|
|
|
|
|
|
if ((shell = getenv("RUBYSHELL")) && NtHasRedirection(cmd)) {
|
|
|
|
char *tmp = ALLOCA_N(char, strlen(shell) + strlen(cmd) + sizeof (" -c "));
|
|
|
|
sprintf(tmp, "%s -c %s", shell, cmd);
|
|
|
|
cmd = tmp;
|
|
|
|
}
|
|
|
|
else if ((shell = getenv("COMSPEC")) &&
|
|
|
|
(NtHasRedirection(cmd) || isInternalCmd(cmd))) {
|
|
|
|
char *tmp = ALLOCA_N(char, strlen(shell) + strlen(cmd) + sizeof (" /c "));
|
|
|
|
sprintf(tmp, "%s /c %s", shell, cmd);
|
|
|
|
cmd = tmp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
shell = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
fRet = CreateProcess(shell, cmd, psa, psa,
|
|
|
|
psa->bInheritHandle, dwCreationFlags, NULL, NULL,
|
|
|
|
&aStartupInfo, &aProcessInformation);
|
|
|
|
errno = GetLastError();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!fRet) {
|
|
|
|
child->pid = 0; /* release the slot */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseHandle(aProcessInformation.hThread);
|
|
|
|
|
|
|
|
child->hProcess = aProcessInformation.hProcess;
|
|
|
|
child->pid = (pid_t)aProcessInformation.dwProcessId;
|
|
|
|
|
|
|
|
if (!IsWinNT()) {
|
|
|
|
/* On Win9x, make pid positive similarly to cygwin and perl */
|
|
|
|
child->pid = -child->pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
return child;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _NtCmdLineElement {
|
|
|
|
struct _NtCmdLineElement *next, *prev;
|
|
|
|
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
|
|
|
|
|
|
|
|
NtCmdLineElement *NtCmdHead = NULL, *NtCmdTail = NULL;
|
|
|
|
|
|
|
|
void
|
|
|
|
NtFreeCmdLine(void)
|
|
|
|
{
|
|
|
|
NtCmdLineElement *ptr;
|
|
|
|
|
|
|
|
while(NtCmdHead) {
|
|
|
|
ptr = NtCmdHead;
|
|
|
|
NtCmdHead = NtCmdHead->next;
|
|
|
|
free(ptr);
|
|
|
|
}
|
|
|
|
NtCmdHead = NtCmdTail = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This function expands wild card characters that were spotted
|
|
|
|
// during the parse phase. The idea here is to call FindFirstFile and
|
|
|
|
// FindNextFile with the wildcard pattern specified, and splice in the
|
2001-11-14 21:41:46 +03:00
|
|
|
// resulting list of new names. If the wildcard pattern doesn't match
|
1999-01-20 07:45:32 +03:00
|
|
|
// any existing files, just leave it in the list.
|
|
|
|
//
|
2000-05-29 06:10:22 +04:00
|
|
|
typedef struct {
|
|
|
|
NtCmdLineElement *head;
|
|
|
|
NtCmdLineElement *tail;
|
|
|
|
} ListInfo;
|
|
|
|
|
|
|
|
static void
|
2002-04-28 13:15:02 +04:00
|
|
|
insert(const char *path, VALUE vinfo)
|
2000-05-29 06:10:22 +04:00
|
|
|
{
|
|
|
|
NtCmdLineElement *tmpcurr;
|
2002-04-28 13:15:02 +04:00
|
|
|
ListInfo *listinfo = (ListInfo *)vinfo;
|
2000-05-29 06:10:22 +04:00
|
|
|
|
|
|
|
tmpcurr = ALLOC(NtCmdLineElement);
|
|
|
|
MEMZERO(tmpcurr, NtCmdLineElement, 1);
|
|
|
|
tmpcurr->len = strlen(path);
|
|
|
|
tmpcurr->str = ALLOC_N(char, tmpcurr->len + 1);
|
|
|
|
tmpcurr->flags |= NTMALLOC;
|
|
|
|
strcpy(tmpcurr->str, path);
|
|
|
|
if (listinfo->tail) {
|
|
|
|
listinfo->tail->next = tmpcurr;
|
|
|
|
tmpcurr->prev = listinfo->tail;
|
|
|
|
listinfo->tail = tmpcurr;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
listinfo->tail = listinfo->head = tmpcurr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-05 20:01:49 +04:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
#else
|
|
|
|
# define MAXPATHLEN 512
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
2000-05-29 06:10:22 +04:00
|
|
|
NtCmdGlob (NtCmdLineElement *patt)
|
|
|
|
{
|
|
|
|
ListInfo listinfo;
|
2000-07-05 20:01:49 +04:00
|
|
|
char buffer[MAXPATHLEN], *buf = buffer;
|
2000-09-25 17:39:58 +04:00
|
|
|
char *p;
|
2000-05-29 06:10:22 +04:00
|
|
|
|
|
|
|
listinfo.head = listinfo.tail = 0;
|
|
|
|
|
2000-07-05 20:01:49 +04:00
|
|
|
if (patt->len >= MAXPATHLEN)
|
|
|
|
buf = ruby_xmalloc(patt->len + 1);
|
|
|
|
|
2000-09-25 17:39:58 +04:00
|
|
|
strncpy (buf, patt->str, patt->len);
|
|
|
|
buf[patt->len] = '\0';
|
|
|
|
for (p = buf; *p; p = CharNext(p))
|
|
|
|
if (*p == '\\')
|
|
|
|
*p = '/';
|
2002-04-28 13:15:02 +04:00
|
|
|
rb_globi(buf, insert, (VALUE)&listinfo);
|
2000-07-05 20:01:49 +04:00
|
|
|
if (buf != buffer)
|
|
|
|
free(buf);
|
2000-05-29 06:10:22 +04:00
|
|
|
|
|
|
|
if (listinfo.head && listinfo.tail) {
|
|
|
|
listinfo.head->prev = patt->prev;
|
|
|
|
listinfo.tail->next = patt->next;
|
|
|
|
if (listinfo.head->prev)
|
|
|
|
listinfo.head->prev->next = listinfo.head;
|
|
|
|
if (listinfo.tail->next)
|
|
|
|
listinfo.tail->next->prev = listinfo.tail;
|
|
|
|
}
|
|
|
|
if (patt->flags & NTMALLOC)
|
|
|
|
free(patt->str);
|
|
|
|
// free(patt); //TODO: memory leak occures here. we have to fix it.
|
|
|
|
}
|
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
|
|
|
|
//
|
|
|
|
|
|
|
|
static bool
|
|
|
|
NtHasRedirection (char *cmd)
|
|
|
|
{
|
|
|
|
int inquote = 0;
|
|
|
|
char quote = '\0';
|
|
|
|
char *ptr ;
|
2001-11-14 21:41:46 +03:00
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Scan the string, looking for redirection (< or >) or pipe
|
|
|
|
// characters (|) that are not in a quoted string
|
|
|
|
//
|
|
|
|
|
|
|
|
for (ptr = cmd; *ptr; ptr++) {
|
|
|
|
|
|
|
|
switch (*ptr) {
|
|
|
|
|
|
|
|
case '\'':
|
|
|
|
case '\"':
|
|
|
|
if (inquote) {
|
|
|
|
if (quote == *ptr) {
|
|
|
|
inquote = 0;
|
|
|
|
quote = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
quote = *ptr;
|
|
|
|
inquote++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '>':
|
|
|
|
case '<':
|
2001-11-13 06:59:20 +03:00
|
|
|
case '|':
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
if (!inquote)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
NtMakeCmdVector (char *cmdline, char ***vec, int InputCmd)
|
|
|
|
{
|
|
|
|
int cmdlen = strlen(cmdline);
|
|
|
|
int done, instring, globbing, quoted, len;
|
|
|
|
int newline, need_free = 0, i;
|
|
|
|
int elements, strsz;
|
|
|
|
int slashes = 0;
|
|
|
|
char *ptr, *base, *buffer;
|
|
|
|
char **vptr;
|
|
|
|
char quote;
|
|
|
|
NtCmdLineElement *curr;
|
|
|
|
|
|
|
|
//
|
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
|
|
|
//
|
|
|
|
|
|
|
|
if (cmdlen == 0) {
|
|
|
|
*vec = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-05-29 06:10:22 +04:00
|
|
|
cmdline = strdup(cmdline);
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// strip trailing white space
|
|
|
|
//
|
|
|
|
|
|
|
|
ptr = cmdline+(cmdlen - 1);
|
2001-02-08 12:19:27 +03:00
|
|
|
while(ptr >= cmdline && ISSPACE(*ptr))
|
1999-01-20 07:45:32 +03:00
|
|
|
--ptr;
|
|
|
|
*++ptr = '\0';
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// the processes argv), we'll do globing and then build the argument
|
1999-01-20 07:45:32 +03:00
|
|
|
// vector.
|
|
|
|
// The outer loop does one interation for each element seen.
|
|
|
|
// The inner loop does one interation for each character in the element.
|
|
|
|
//
|
|
|
|
|
|
|
|
for (done = 0, ptr = cmdline; *ptr;) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// zap any leading whitespace
|
|
|
|
//
|
|
|
|
|
2001-02-08 12:19:27 +03:00
|
|
|
while(ISSPACE(*ptr))
|
1999-01-20 07:45:32 +03:00
|
|
|
ptr++;
|
|
|
|
base = ptr;
|
|
|
|
|
|
|
|
for (done = newline = globbing = instring = quoted = 0;
|
|
|
|
*ptr && !done; ptr++) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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 '\\':
|
|
|
|
if (ptr[1] == '"') ptr++;
|
|
|
|
break;
|
1999-01-20 07:45:32 +03:00
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
#if 0
|
|
|
|
case '/': // have to do this for NT/DOS option strings
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// check to see if we're parsing an option switch
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
if (*ptr == '/' && base == ptr)
|
|
|
|
continue;
|
|
|
|
#endif
|
|
|
|
//
|
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
|
|
|
|
//
|
|
|
|
|
|
|
|
if (!instring)
|
|
|
|
done++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '*':
|
|
|
|
case '?':
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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
|
|
|
//
|
|
|
|
|
|
|
|
if (!(instring && quote == '\''))
|
|
|
|
globbing++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\n':
|
|
|
|
|
|
|
|
//
|
|
|
|
// If this string contains a newline, mark it as such so
|
|
|
|
// we can replace it with the two character sequence "\n"
|
2001-11-14 21:41:46 +03:00
|
|
|
// (cmd.exe doesn't like raw newlines in strings...sigh).
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
newline++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\'':
|
|
|
|
case '\"':
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// if we're already in a string, see if this is the
|
|
|
|
// terminating close-quote. If it is, we're finished with
|
1999-01-20 07:45:32 +03:00
|
|
|
// the string, but not neccessarily 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
|
|
|
//
|
|
|
|
|
|
|
|
if (instring) {
|
|
|
|
if (quote == *ptr) {
|
|
|
|
instring = 0;
|
|
|
|
quote = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
instring++;
|
|
|
|
quote = *ptr;
|
|
|
|
quoted++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// need to back up ptr by one due to last increment of for loop
|
|
|
|
// (if we got out by seeing white space)
|
|
|
|
//
|
|
|
|
|
|
|
|
if (*ptr)
|
|
|
|
ptr--;
|
|
|
|
|
|
|
|
//
|
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.
|
|
|
|
//
|
|
|
|
|
|
|
|
curr = ALLOC(NtCmdLineElement);
|
|
|
|
memset (curr, 0, sizeof(*curr));
|
|
|
|
|
|
|
|
len = ptr - base;
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03: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.
|
|
|
|
//
|
|
|
|
|
2000-05-29 06:10:22 +04:00
|
|
|
if (InputCmd && (base[0] == '\"' && base[len-1] == '\"')) {
|
|
|
|
char *p;
|
|
|
|
base++;
|
|
|
|
len -= 2;
|
|
|
|
base[len] = 0;
|
|
|
|
for (p = base; p < base + len; p++) {
|
|
|
|
if ((p[0] == '\\' || p[0] == '\"') && p[1] == '"') {
|
|
|
|
strcpy(p, p + 1);
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (InputCmd && (base[0] == '\'' && base[len-1] == '\'')) {
|
1999-01-20 07:45:32 +03:00
|
|
|
base++;
|
|
|
|
len -= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
curr->str = base;
|
|
|
|
curr->len = len;
|
|
|
|
curr->flags |= (globbing ? NTGLOB : 0);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now put it in the list of elements
|
|
|
|
//
|
|
|
|
if (NtCmdTail) {
|
|
|
|
NtCmdTail->next = curr;
|
|
|
|
curr->prev = NtCmdTail;
|
|
|
|
NtCmdTail = curr;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NtCmdHead = NtCmdTail = curr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (InputCmd) {
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// When we get here we've finished parsing the command line. Now
|
1999-01-20 07:45:32 +03:00
|
|
|
// we need to run the list, expanding any globbing patterns.
|
|
|
|
//
|
|
|
|
|
|
|
|
for(curr = NtCmdHead; curr; curr = curr->next) {
|
|
|
|
if (curr->flags & NTGLOB) {
|
|
|
|
NtCmdGlob(curr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Almost done!
|
|
|
|
// Count up the elements, then allocate space for a vector of pointers
|
|
|
|
// (argv) and a string table for the elements.
|
|
|
|
//
|
|
|
|
|
|
|
|
for (elements = 0, strsz = 0, curr = NtCmdHead; curr; curr = curr->next) {
|
|
|
|
elements++;
|
|
|
|
strsz += (curr->len + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
len = (elements+1)*sizeof(char *) + strsz;
|
|
|
|
buffer = ALLOC_N(char, len);
|
|
|
|
|
|
|
|
memset (buffer, 0, len);
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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 *);
|
|
|
|
|
|
|
|
for (curr = NtCmdHead; curr; curr = curr->next) {
|
|
|
|
strncpy (ptr, curr->str, curr->len);
|
|
|
|
ptr[curr->len] = '\0';
|
|
|
|
*vptr++ = ptr;
|
|
|
|
ptr += curr->len + 1;
|
|
|
|
}
|
|
|
|
NtFreeCmdLine();
|
|
|
|
*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
|
|
|
|
//
|
|
|
|
|
|
|
|
#define PATHLEN 1024
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// return the pointer to the current file name.
|
|
|
|
//
|
|
|
|
|
|
|
|
DIR *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_opendir(const char *filename)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
2002-09-15 17:02:09 +04:00
|
|
|
DIR *p;
|
|
|
|
long len;
|
|
|
|
long idx;
|
|
|
|
char scannamespc[PATHLEN];
|
|
|
|
char *scanname = scannamespc;
|
|
|
|
struct stat sbuf;
|
|
|
|
struct _finddata_t fd;
|
|
|
|
long fh;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// check to see if we've got a directory
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
if ((rb_w32_stat (filename, &sbuf) < 0 ||
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifdef __BORLANDC__
|
2002-09-15 17:02:09 +04:00
|
|
|
(unsigned short)(sbuf.st_mode)
|
2002-06-11 05:27:48 +04:00
|
|
|
#else
|
2002-09-15 17:02:09 +04:00
|
|
|
sbuf.st_mode
|
2002-06-11 05:27:48 +04:00
|
|
|
#endif
|
2002-09-15 17:02:09 +04:00
|
|
|
& _S_IFDIR == 0) &&
|
2001-02-08 12:19:27 +03:00
|
|
|
(!ISALPHA(filename[0]) || filename[1] != ':' || filename[2] != '\0' ||
|
2000-01-05 07:41:21 +03:00
|
|
|
((1 << (filename[0] & 0x5f) - 'A') & GetLogicalDrives()) == 0)) {
|
1999-01-20 07:45:32 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get us a DIR structure
|
|
|
|
//
|
|
|
|
|
|
|
|
p = xcalloc(sizeof(DIR), 1);
|
|
|
|
if (p == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create the search pattern
|
|
|
|
//
|
|
|
|
|
|
|
|
strcpy(scanname, filename);
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
if (index("/\\:", *CharPrev(scanname, scanname + strlen(scanname))) == NULL)
|
1999-01-20 07:45:32 +03:00
|
|
|
strcat(scanname, "/*");
|
|
|
|
else
|
|
|
|
strcat(scanname, "*");
|
|
|
|
|
|
|
|
//
|
|
|
|
// do the FindFirstFile call
|
|
|
|
//
|
|
|
|
|
2002-09-15 17:02:09 +04:00
|
|
|
fh = _findfirst(scanname, &fd);
|
|
|
|
if (fh == -1) {
|
1999-01-20 07:45:32 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// now allocate the first part of the string table for the
|
|
|
|
// filenames that we find.
|
|
|
|
//
|
|
|
|
|
2002-09-15 17:02:09 +04:00
|
|
|
idx = strlen(fd.name)+1;
|
1999-01-20 07:45:32 +03:00
|
|
|
p->start = ALLOC_N(char, idx);
|
2002-09-15 17:02:09 +04:00
|
|
|
strcpy(p->start, fd.name);
|
1999-01-20 07:45:32 +03:00
|
|
|
p->nfiles++;
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2002-09-15 17:02:09 +04:00
|
|
|
while (_findnext(fh, &fd) == 0) {
|
|
|
|
len = strlen(fd.name);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// bump the string table size by enough for the
|
|
|
|
// new name and it's null terminator
|
|
|
|
//
|
|
|
|
|
|
|
|
#define Renew(x, y, z) (x = (z *)realloc(x, y))
|
|
|
|
|
|
|
|
Renew (p->start, idx+len+1, char);
|
|
|
|
if (p->start == NULL) {
|
|
|
|
rb_fatal ("opendir: malloc failed!\n");
|
|
|
|
}
|
2002-09-15 17:02:09 +04:00
|
|
|
strcpy(&p->start[idx], fd.name);
|
1999-01-20 07:45:32 +03:00
|
|
|
p->nfiles++;
|
|
|
|
idx += len+1;
|
|
|
|
}
|
2002-09-15 17:02:09 +04:00
|
|
|
_findclose(fh);
|
1999-01-20 07:45:32 +03:00
|
|
|
p->size = idx;
|
|
|
|
p->curr = p->start;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Readdir just returns the current string pointer and bumps the
|
|
|
|
// string pointer to the next entry.
|
|
|
|
//
|
|
|
|
|
|
|
|
struct direct *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_readdir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
int len;
|
|
|
|
static int dummy = 0;
|
|
|
|
|
|
|
|
if (dirp->curr) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// first set up the structure to return
|
|
|
|
//
|
|
|
|
|
|
|
|
len = strlen(dirp->curr);
|
|
|
|
strcpy(dirp->dirstr.d_name, dirp->curr);
|
|
|
|
dirp->dirstr.d_namlen = len;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Fake inode
|
|
|
|
//
|
|
|
|
dirp->dirstr.d_ino = dummy++;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Now set up for the next call to readdir
|
|
|
|
//
|
|
|
|
|
|
|
|
dirp->curr += len + 1;
|
|
|
|
if (dirp->curr >= (dirp->start + dirp->size)) {
|
|
|
|
dirp->curr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &(dirp->dirstr);
|
|
|
|
|
|
|
|
} else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Telldir returns the current string pointer position
|
|
|
|
//
|
|
|
|
|
|
|
|
long
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_telldir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
return (long) dirp->curr; /* ouch! pointer to long cast */
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Seekdir moves the string pointer to a previously saved position
|
|
|
|
// (Saved by telldir).
|
|
|
|
|
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_seekdir(DIR *dirp, long loc)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
dirp->curr = (char *) loc; /* ouch! long to pointer cast */
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Rewinddir resets the string pointer to the start
|
|
|
|
//
|
|
|
|
|
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_rewinddir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
dirp->curr = dirp->start;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
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
|
|
|
//
|
|
|
|
|
|
|
|
void
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_closedir(DIR *dirp)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
free(dirp->start);
|
|
|
|
free(dirp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
valid_filename(char *s)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// if the file exists, then it's a valid filename!
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
if (_access(s, 0) == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// It doesn't exist, so see if we can open it.
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
if ((fd = _open(s, _O_CREAT, 0666)) >= 0) {
|
|
|
|
close(fd);
|
2001-11-14 21:41:46 +03:00
|
|
|
_unlink (s); // don't leave it laying around
|
1999-01-20 07:45:32 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// This is a clone of fdopen so that we can handle the
|
|
|
|
// brain damaged version of sockets that NT gets to use.
|
|
|
|
//
|
|
|
|
// The problem is that sockets are not real file handles and
|
2001-11-14 21:41:46 +03:00
|
|
|
// cannot be fdopen'ed. This causes problems in the do_socket
|
1999-01-20 07:45:32 +03:00
|
|
|
// routine in doio.c, since it tries to create two file pointers
|
2001-11-14 21:41:46 +03:00
|
|
|
// for the socket just created. We'll fake out an fdopen and see
|
1999-01-20 07:45:32 +03:00
|
|
|
// if we can prevent perl from trying to do stdio on sockets.
|
|
|
|
//
|
|
|
|
|
2000-05-13 20:13:31 +04:00
|
|
|
//EXTERN_C int __cdecl _alloc_osfhnd(void);
|
|
|
|
//EXTERN_C int __cdecl _set_osfhnd(int fh, long value);
|
1999-08-13 09:45:20 +04:00
|
|
|
EXTERN_C void __cdecl _lock_fhandle(int);
|
|
|
|
EXTERN_C void __cdecl _unlock_fhandle(int);
|
|
|
|
EXTERN_C void __cdecl _unlock(int);
|
|
|
|
|
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
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
typedef struct {
|
|
|
|
long 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
|
1999-08-13 09:45:20 +04:00
|
|
|
} ioinfo;
|
|
|
|
|
2000-05-13 20:13:31 +04:00
|
|
|
#if !defined _CRTIMP
|
|
|
|
#define _CRTIMP __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifndef __BORLANDC__
|
2000-02-18 09:59:36 +03:00
|
|
|
EXTERN_C _CRTIMP ioinfo * __pioinfo[];
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
#define IOINFO_L2E 5
|
|
|
|
#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
|
|
|
|
#define _pioinfo(i) (__pioinfo[i >> IOINFO_L2E] + (i & (IOINFO_ARRAY_ELTS - 1)))
|
2000-05-13 20:13:31 +04:00
|
|
|
#define _osfhnd(i) (_pioinfo(i)->osfhnd)
|
|
|
|
#define _osfile(i) (_pioinfo(i)->osfile)
|
|
|
|
#define _pipech(i) (_pioinfo(i)->pipech)
|
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 */
|
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 */
|
|
|
|
|
|
|
|
static int
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_open_osfhandle(long 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);
|
|
|
|
fh = _open_osfhandle((long)hF, 0);
|
|
|
|
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 */
|
|
|
|
}
|
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))
|
|
|
|
|
|
|
|
#endif
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2000-11-16 10:24:21 +03:00
|
|
|
#undef getsockopt
|
|
|
|
|
2000-06-28 12:31:35 +04:00
|
|
|
static int
|
|
|
|
is_socket(SOCKET fd)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
char sockbuf[80];
|
|
|
|
int optlen;
|
|
|
|
int retval;
|
* 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
|
|
|
int result = TRUE;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2000-06-28 12:31:35 +04:00
|
|
|
optlen = sizeof(sockbuf);
|
* 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({
|
|
|
|
retval = getsockopt(fd, SOL_SOCKET, SO_TYPE, sockbuf, &optlen);
|
|
|
|
if (retval == SOCKET_ERROR) {
|
|
|
|
int iRet;
|
|
|
|
iRet = WSAGetLastError();
|
|
|
|
if (iRet == WSAENOTSOCK || iRet == WSANOTINITIALISED)
|
|
|
|
result = FALSE;
|
|
|
|
}
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// If we get here, then fd is actually a socket.
|
|
|
|
//
|
1999-08-13 09:45:20 +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
|
|
|
return result;
|
2000-06-28 12:31:35 +04:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Since the errors returned by the socket error function
|
|
|
|
// WSAGetLastError() are not known by the library routine strerror
|
|
|
|
// we have to roll our own.
|
|
|
|
//
|
|
|
|
|
|
|
|
#undef strerror
|
|
|
|
|
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];
|
2000-05-13 20:13:31 +04:00
|
|
|
#if !defined __MINGW32__
|
1999-01-20 07:45:32 +03:00
|
|
|
extern int sys_nerr;
|
2000-05-13 20:13:31 +04:00
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
DWORD source = 0;
|
2000-10-31 11:37:47 +03:00
|
|
|
char *p;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
if (e < 0 || e > sys_nerr) {
|
|
|
|
if (e < 0)
|
|
|
|
e = GetLastError();
|
2001-08-24 09:45:55 +04:00
|
|
|
if (FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM |
|
|
|
|
FORMAT_MESSAGE_IGNORE_INSERTS, &source, e, 0,
|
1999-01-20 07:45:32 +03:00
|
|
|
buffer, 512, NULL) == 0) {
|
2000-10-31 11:37:47 +03:00
|
|
|
strcpy(buffer, "Unknown Error");
|
|
|
|
}
|
|
|
|
for (p = buffer + strlen(buffer) - 1; buffer <= p; p--) {
|
|
|
|
if (*p != '\r' && *p != '\n') break;
|
|
|
|
*p = 0;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
return strerror(e);
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
UIDTYPE
|
|
|
|
getuid(void)
|
|
|
|
{
|
|
|
|
return ROOT_UID;
|
|
|
|
}
|
|
|
|
|
|
|
|
UIDTYPE
|
|
|
|
geteuid(void)
|
|
|
|
{
|
|
|
|
return ROOT_UID;
|
|
|
|
}
|
|
|
|
|
|
|
|
GIDTYPE
|
|
|
|
getgid(void)
|
|
|
|
{
|
|
|
|
return ROOT_GID;
|
|
|
|
}
|
|
|
|
|
|
|
|
GIDTYPE
|
|
|
|
getegid(void)
|
|
|
|
{
|
|
|
|
return ROOT_GID;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
setuid(int uid)
|
|
|
|
{
|
|
|
|
return (uid == ROOT_UID ? 0 : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
setgid(int gid)
|
|
|
|
{
|
|
|
|
return (gid == ROOT_GID ? 0 : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// File system stuff
|
|
|
|
//
|
|
|
|
|
|
|
|
int
|
|
|
|
/* ioctl(int i, unsigned int u, char *data) */
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
ioctl(int i, int u, ...)
|
|
|
|
#else
|
|
|
|
ioctl(int i, unsigned int u, long data)
|
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#undef FD_SET
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
SOCKET s = TO_SOCKET(fd);
|
|
|
|
|
|
|
|
for (i = 0; i < set->fd_count; i++) {
|
|
|
|
if (set->fd_array[i] == s) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == set->fd_count) {
|
|
|
|
if (set->fd_count < FD_SETSIZE) {
|
|
|
|
set->fd_array[i] = s;
|
|
|
|
set->fd_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-28 12:31:35 +04:00
|
|
|
#undef FD_CLR
|
|
|
|
|
|
|
|
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) {
|
|
|
|
while (i < set->fd_count - 1) {
|
|
|
|
set->fd_array[i] = set->fd_array[i + 1];
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
set->fd_count--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
#undef FD_ISSET
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
return __WSAFDIsSet(TO_SOCKET(fd), set);
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
//
|
|
|
|
// Networking trampolines
|
|
|
|
// 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
|
|
|
|
|
|
|
|
static int NtSocketsInitialized = 0;
|
|
|
|
|
2000-06-28 12:31:35 +04:00
|
|
|
static int
|
|
|
|
extract_file_fd(fd_set *set, fd_set *fileset)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
fileset->fd_count = 0;
|
|
|
|
if (!set)
|
|
|
|
return 0;
|
|
|
|
for (idx = 0; idx < set->fd_count; idx++) {
|
|
|
|
SOCKET fd = set->fd_array[idx];
|
|
|
|
|
|
|
|
if (!is_socket(fd)) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < fileset->fd_count; i++) {
|
|
|
|
if (fileset->fd_array[i] == fd) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == fileset->fd_count) {
|
|
|
|
if (fileset->fd_count < FD_SETSIZE) {
|
|
|
|
fileset->fd_array[i] = fd;
|
|
|
|
fileset->fd_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fileset->fd_count;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
long
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_select (int nfds, fd_set *rd, fd_set *wr, fd_set *ex,
|
1999-01-20 07:45:32 +03:00
|
|
|
struct timeval *timeout)
|
|
|
|
{
|
|
|
|
long r;
|
2000-06-28 12:31:35 +04:00
|
|
|
fd_set file_rd;
|
|
|
|
fd_set file_wr;
|
2000-11-14 10:10:31 +03:00
|
|
|
#ifdef USE_INTERRUPT_WINSOCK
|
|
|
|
fd_set trap;
|
|
|
|
#endif /* USE_INTERRUPT_WINSOCK */
|
2000-06-28 12:31:35 +04:00
|
|
|
int file_nfds;
|
|
|
|
|
2002-10-11 01:07:16 +04:00
|
|
|
if (!NtSocketsInitialized) {
|
1999-01-20 07:45:32 +03:00
|
|
|
StartSockets();
|
|
|
|
}
|
2000-12-22 12:00:23 +03:00
|
|
|
r = 0;
|
|
|
|
if (rd && rd->fd_count > r) r = rd->fd_count;
|
|
|
|
if (wr && wr->fd_count > r) r = wr->fd_count;
|
|
|
|
if (ex && ex->fd_count > r) r = ex->fd_count;
|
|
|
|
if (nfds > r) nfds = r;
|
2000-01-05 07:41:21 +03:00
|
|
|
if (nfds == 0 && timeout) {
|
|
|
|
Sleep(timeout->tv_sec * 1000 + timeout->tv_usec / 1000);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-06-28 12:31:35 +04:00
|
|
|
file_nfds = extract_file_fd(rd, &file_rd);
|
|
|
|
file_nfds += extract_file_fd(wr, &file_wr);
|
|
|
|
if (file_nfds)
|
|
|
|
{
|
|
|
|
// assume normal files are always readable/writable
|
|
|
|
// fake read/write fd_set and return value
|
|
|
|
if (rd) *rd = file_rd;
|
|
|
|
if (wr) *wr = file_wr;
|
|
|
|
return file_nfds;
|
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
|
|
|
|
#if USE_INTERRUPT_WINSOCK
|
|
|
|
if (ex)
|
|
|
|
trap = *ex;
|
|
|
|
else
|
|
|
|
trap.fd_count = 0;
|
|
|
|
if (trap.fd_count < FD_SETSIZE)
|
|
|
|
trap.fd_array[trap.fd_count++] = (SOCKET)interrupted_event;
|
|
|
|
// else unable to catch interrupt.
|
|
|
|
ex = &trap;
|
|
|
|
#endif /* USE_INTERRUPT_WINSOCK */
|
|
|
|
|
* 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 = select(nfds, rd, wr, ex, timeout);
|
|
|
|
if (r == SOCKET_ERROR) {
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
switch (errno) {
|
|
|
|
case WSAEINTR:
|
|
|
|
errno = EINTR;
|
|
|
|
break;
|
|
|
|
}
|
1999-09-18 08:48:51 +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
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-09-27 13:11:13 +04:00
|
|
|
StartSockets ()
|
|
|
|
{
|
1999-01-20 07:45:32 +03:00
|
|
|
WORD version;
|
|
|
|
WSADATA retdata;
|
|
|
|
int ret;
|
2002-10-11 01:07:16 +04:00
|
|
|
int iSockOpt;
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
//
|
2001-11-14 21:41:46 +03:00
|
|
|
// initalize the winsock interface and insure that it's
|
1999-01-20 07:45:32 +03:00
|
|
|
// cleaned up at exit.
|
|
|
|
//
|
|
|
|
version = MAKEWORD(1, 1);
|
|
|
|
if (ret = WSAStartup(version, &retdata))
|
2000-11-14 10:10:31 +03:00
|
|
|
rb_fatal ("Unable to locate winsock library!\n");
|
1999-01-20 07:45:32 +03:00
|
|
|
if (LOBYTE(retdata.wVersion) != 1)
|
2000-11-14 10:10:31 +03:00
|
|
|
rb_fatal("could not find version 1 of winsock dll\n");
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
if (HIBYTE(retdata.wVersion) != 1)
|
2000-11-14 10:10:31 +03:00
|
|
|
rb_fatal("could not find version 1 of winsock dll\n");
|
1999-01-20 07:45:32 +03:00
|
|
|
|
|
|
|
atexit((void (*)(void)) WSACleanup);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifndef SO_SYNCHRONOUS_NONALERT
|
|
|
|
#define SO_SYNCHRONOUS_NONALERT 0x20
|
|
|
|
#endif
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
iSockOpt = SO_SYNCHRONOUS_NONALERT;
|
1999-08-13 09:45:20 +04:00
|
|
|
/*
|
|
|
|
* Enable the use of sockets as filehandles
|
|
|
|
*/
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifndef SO_OPENTYPE
|
|
|
|
#define SO_OPENTYPE 0x7008
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE,
|
2000-11-14 10:10:31 +03:00
|
|
|
(char *)&iSockOpt, sizeof(iSockOpt));
|
2000-09-27 13:11:13 +04:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
main_thread.handle = GetCurrentThreadHandle();
|
|
|
|
main_thread.id = GetCurrentThreadId();
|
|
|
|
|
|
|
|
interrupted_event = CreateSignal();
|
|
|
|
if (!interrupted_event)
|
|
|
|
rb_fatal("Unable to create interrupt event!\n");
|
2002-10-11 01:07:16 +04:00
|
|
|
NtSocketsInitialized = 1;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef accept
|
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
int
|
|
|
|
rb_w32_accept(int s, struct sockaddr *addr, int *addrlen)
|
1999-01-20 07:45:32 +03:00
|
|
|
{
|
|
|
|
SOCKET 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 = accept(TO_SOCKET(s), addr, addrlen);
|
2002-09-29 13:31:58 +04:00
|
|
|
if (r == INVALID_SOCKET) {
|
* 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
|
|
|
errno = WSAGetLastError();
|
2002-09-29 13:31:58 +04:00
|
|
|
s = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s = rb_w32_open_osfhandle(r, O_RDWR|O_BINARY);
|
|
|
|
}
|
* 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 s;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef bind
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_bind(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 = bind(TO_SOCKET(s), addr, addrlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef connect
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_connect(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 = connect(TO_SOCKET(s), addr, addrlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#undef getpeername
|
|
|
|
|
|
|
|
int
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getsockname
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_getsockname(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 = getsockname(TO_SOCKET(s), addr, addrlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef ioctlsocket
|
|
|
|
|
|
|
|
int
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef listen
|
|
|
|
|
|
|
|
int
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef recv
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_recv(int s, char *buf, int len, int flags)
|
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 = recv(TO_SOCKET(s), buf, len, flags);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef recvfrom
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_recvfrom(int s, char *buf, int len, int flags,
|
1999-01-20 07:45:32 +03:00
|
|
|
struct sockaddr *from, int *fromlen)
|
|
|
|
{
|
|
|
|
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 = recvfrom(TO_SOCKET(s), buf, len, flags, from, fromlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef send
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_send(int s, char *buf, int len, int flags)
|
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 = send(TO_SOCKET(s), buf, len, flags);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef sendto
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_sendto(int s, char *buf, int len, int flags,
|
|
|
|
struct sockaddr *to, int tolen)
|
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 = sendto(TO_SOCKET(s), buf, len, flags, to, tolen);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef setsockopt
|
|
|
|
|
|
|
|
int
|
2002-09-29 13:31:58 +04:00
|
|
|
rb_w32_setsockopt(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 = setsockopt(TO_SOCKET(s), level, optname, optval, optlen);
|
|
|
|
if (r == SOCKET_ERROR)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef shutdown
|
|
|
|
|
|
|
|
int
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef socket
|
|
|
|
|
2002-09-29 13:31:58 +04:00
|
|
|
int
|
|
|
|
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({
|
|
|
|
s = socket(af, type, protocol);
|
2002-09-29 13:31:58 +04:00
|
|
|
if (s == INVALID_SOCKET) {
|
* 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
|
|
|
errno = WSAGetLastError();
|
2002-09-29 13:31:58 +04:00
|
|
|
fd = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fd = rb_w32_open_osfhandle(s, O_RDWR|O_BINARY);
|
|
|
|
}
|
* 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
|
|
|
|
|
|
|
|
struct hostent *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_gethostbyaddr (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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef gethostbyname
|
|
|
|
|
|
|
|
struct hostent *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_gethostbyname (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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef gethostname
|
|
|
|
|
|
|
|
int
|
2002-05-29 14:22:19 +04:00
|
|
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getprotobyname
|
|
|
|
|
|
|
|
struct protoent *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_getprotobyname (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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getprotobynumber
|
|
|
|
|
|
|
|
struct protoent *
|
2002-05-29 14:22:19 +04:00
|
|
|
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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getservbyname
|
|
|
|
|
|
|
|
struct servent *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_getservbyname (char *name, 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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef getservbyport
|
|
|
|
|
|
|
|
struct servent *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_getservbyport (int port, 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)
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
});
|
1999-01-20 07:45:32 +03:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Networking stubs
|
|
|
|
//
|
|
|
|
|
|
|
|
void endhostent() {}
|
|
|
|
void endnetent() {}
|
|
|
|
void endprotoent() {}
|
|
|
|
void endservent() {}
|
|
|
|
|
|
|
|
struct netent *getnetent (void) {return (struct netent *) NULL;}
|
|
|
|
|
|
|
|
struct netent *getnetbyaddr(char *name) {return (struct netent *)NULL;}
|
|
|
|
|
|
|
|
struct netent *getnetbyname(long net, int type) {return (struct netent *)NULL;}
|
|
|
|
|
|
|
|
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) {}
|
|
|
|
|
|
|
|
#ifndef WNOHANG
|
|
|
|
#define WNOHANG -1
|
|
|
|
#endif
|
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
static 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;
|
|
|
|
|
|
|
|
if (!GetExitCodeProcess(child->hProcess, &exitcode)) {
|
|
|
|
/* If an error occured, return immediatly. */
|
|
|
|
errno = GetLastError();
|
|
|
|
if (errno == ERROR_INVALID_PARAMETER) {
|
|
|
|
errno = ECHILD;
|
|
|
|
}
|
|
|
|
CloseChildHandle(child);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (exitcode != STILL_ACTIVE) {
|
|
|
|
/* If already died, return immediatly. */
|
|
|
|
pid_t pid = child->pid;
|
|
|
|
CloseChildHandle(child);
|
|
|
|
if (stat_loc) *stat_loc = exitcode << 8;
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:45:32 +03:00
|
|
|
pid_t
|
|
|
|
waitpid (pid_t pid, int *stat_loc, int options)
|
|
|
|
{
|
|
|
|
DWORD timeout;
|
|
|
|
|
|
|
|
if (options == WNOHANG) {
|
|
|
|
timeout = 0;
|
|
|
|
} else {
|
|
|
|
timeout = INFINITE;
|
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
|
|
|
|
if (pid == -1) {
|
|
|
|
int count = 0;
|
|
|
|
DWORD ret;
|
|
|
|
HANDLE events[MAXCHILDNUM + 1];
|
|
|
|
|
|
|
|
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
|
|
|
events[count] = interrupted_event;
|
|
|
|
|
2001-11-13 19:14:42 +03:00
|
|
|
ret = WaitForMultipleEvents(count + 1, events, FALSE, timeout, TRUE);
|
2001-11-13 06:59:20 +03:00
|
|
|
if (ret == WAIT_TIMEOUT) return 0;
|
|
|
|
if ((ret -= WAIT_OBJECT_0) == count) {
|
|
|
|
ResetSignal(interrupted_event);
|
|
|
|
errno = EINTR;
|
|
|
|
return -1;
|
2001-02-17 18:17:10 +03:00
|
|
|
}
|
2001-11-13 06:59:20 +03:00
|
|
|
if (ret > count) {
|
|
|
|
errno = GetLastError();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-11-13 19:14:42 +03:00
|
|
|
return poll_child_status(ChildRecord + ret, stat_loc);
|
2001-11-13 06:59:20 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct ChildRecord* child = FindChildSlot(pid);
|
|
|
|
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... */
|
|
|
|
if (wait_events(child->hProcess, timeout) != WAIT_OBJECT_0) {
|
|
|
|
/* still active */
|
|
|
|
pid = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
return pid;
|
1999-01-20 07:45:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#include <sys/timeb.h>
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
int _cdecl
|
1999-01-20 07:45:32 +03:00
|
|
|
gettimeofday(struct timeval *tv, struct timezone *tz)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
2001-03-05 11:29:01 +03:00
|
|
|
SYSTEMTIME st;
|
|
|
|
time_t t;
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
GetLocalTime(&st);
|
|
|
|
tm.tm_sec = st.wSecond;
|
|
|
|
tm.tm_min = st.wMinute;
|
|
|
|
tm.tm_hour = st.wHour;
|
|
|
|
tm.tm_mday = st.wDay;
|
|
|
|
tm.tm_mon = st.wMonth - 1;
|
|
|
|
tm.tm_year = st.wYear - 1900;
|
|
|
|
tm.tm_isdst = -1;
|
|
|
|
t = mktime(&tm);
|
|
|
|
tv->tv_sec = t;
|
|
|
|
tv->tv_usec = st.wMilliseconds * 1000;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_getcwd(buffer, size)
|
1999-01-20 07:45:32 +03:00
|
|
|
char *buffer;
|
|
|
|
int size;
|
|
|
|
{
|
|
|
|
int length;
|
|
|
|
char *bp;
|
|
|
|
|
2002-06-11 05:27:48 +04:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#undef getcwd
|
|
|
|
if (getcwd(buffer, size) == NULL) {
|
|
|
|
#else
|
1999-01-20 07:45:32 +03:00
|
|
|
if (_getcwd(buffer, size) == NULL) {
|
2002-06-11 05:27:48 +04:00
|
|
|
#endif
|
1999-01-20 07:45:32 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
length = strlen(buffer);
|
|
|
|
if (length >= size) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-02-18 09:59:36 +03:00
|
|
|
for (bp = buffer; *bp != '\0'; bp = CharNext(bp)) {
|
1999-01-20 07:45:32 +03:00
|
|
|
if (*bp == '\\') {
|
|
|
|
*bp = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
str_grow(struct RString *str, size_t new_size)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = realloc(str->ptr, new_size);
|
|
|
|
if (p == NULL)
|
|
|
|
rb_fatal("cannot grow string\n");
|
|
|
|
|
|
|
|
str->len = new_size;
|
|
|
|
str->ptr = p;
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
kill(int pid, int sig)
|
|
|
|
{
|
2001-11-13 06:59:20 +03:00
|
|
|
int ret = 0;
|
|
|
|
|
2002-08-28 12:56:25 +04:00
|
|
|
if (pid <= 0) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsWin95()) pid = -pid;
|
2001-11-13 06:59:20 +03:00
|
|
|
if ((unsigned int)pid == GetCurrentProcessId() && sig != SIGKILL)
|
2001-05-12 10:47:24 +04:00
|
|
|
return raise(sig);
|
1999-01-20 07:45:32 +03:00
|
|
|
|
2002-08-28 12:56:25 +04:00
|
|
|
switch (sig) {
|
|
|
|
case SIGINT:
|
2001-11-13 06:59:20 +03:00
|
|
|
RUBY_CRITICAL({
|
|
|
|
if (!GenerateConsoleCtrlEvent(CTRL_C_EVENT, (DWORD)pid)) {
|
2002-08-28 12:56:25 +04:00
|
|
|
if ((errno = GetLastError()) == 0) {
|
|
|
|
errno = EPERM;
|
|
|
|
}
|
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({
|
2002-08-28 12:56:25 +04:00
|
|
|
HANDLE hProc = OpenProcess(PROCESS_TERMINATE, 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;
|
|
|
|
}
|
|
|
|
else if (!TerminateProcess(hProc, 0)) {
|
|
|
|
errno = EPERM;
|
|
|
|
ret = -1;
|
|
|
|
}
|
2001-05-12 10:47:24 +04:00
|
|
|
CloseHandle(hProc);
|
2001-11-13 06:59:20 +03:00
|
|
|
});
|
2002-08-28 12:56:25 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
define:
|
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
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
link(char *from, char *to)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
wait()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
char *
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_getenv(const char *name)
|
1999-08-13 09:45:20 +04:00
|
|
|
{
|
2001-11-13 06:59:20 +03:00
|
|
|
static char *curitem = NULL;
|
|
|
|
static DWORD curlen = 0;
|
1999-08-13 09:45:20 +04:00
|
|
|
DWORD needlen;
|
2000-07-24 13:58:10 +04:00
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
if (curitem == NULL || curlen == 0) {
|
|
|
|
curlen = 512;
|
|
|
|
curitem = ALLOC_N(char, curlen);
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2001-11-13 06:59:20 +03:00
|
|
|
needlen = GetEnvironmentVariable(name, curitem, curlen);
|
1999-08-13 09:45:20 +04:00
|
|
|
if (needlen != 0) {
|
|
|
|
while (needlen > curlen) {
|
|
|
|
REALLOC_N(curitem, char, needlen);
|
|
|
|
curlen = needlen;
|
|
|
|
needlen = GetEnvironmentVariable(name, curitem, curlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return curitem;
|
|
|
|
}
|
2000-08-09 08:26:06 +04:00
|
|
|
|
|
|
|
int
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_rename(const char *oldpath, const char *newpath)
|
2000-08-09 08:26:06 +04:00
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
int oldatts;
|
|
|
|
int newatts;
|
|
|
|
|
|
|
|
oldatts = GetFileAttributes(oldpath);
|
|
|
|
newatts = GetFileAttributes(newpath);
|
|
|
|
|
|
|
|
if (oldatts == -1) {
|
2001-02-24 16:19:13 +03:00
|
|
|
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)
|
|
|
|
SetFileAttributesA(newpath, newatts & ~ FILE_ATTRIBUTE_READONLY);
|
|
|
|
|
|
|
|
if (!MoveFile(oldpath, newpath))
|
|
|
|
res = -1;
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
switch (GetLastError()) {
|
|
|
|
case ERROR_ALREADY_EXISTS:
|
|
|
|
case ERROR_FILE_EXISTS:
|
|
|
|
if (IsWinNT()) {
|
|
|
|
if (MoveFileEx(oldpath, newpath, MOVEFILE_REPLACE_EXISTING))
|
2000-11-14 10:10:31 +03:00
|
|
|
res = 0;
|
2001-02-17 18:17:10 +03:00
|
|
|
} else {
|
|
|
|
for (;;) {
|
|
|
|
if (!DeleteFile(newpath) && GetLastError() != ERROR_FILE_NOT_FOUND)
|
|
|
|
break;
|
|
|
|
else if (MoveFile(oldpath, newpath)) {
|
|
|
|
res = 0;
|
|
|
|
break;
|
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
}
|
2000-08-09 08:26:06 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
if (res)
|
|
|
|
errno = GetLastError();
|
|
|
|
else
|
|
|
|
SetFileAttributes(newpath, oldatts);
|
|
|
|
});
|
2000-08-09 08:26:06 +04:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2000-08-15 10:22:49 +04:00
|
|
|
|
2001-03-21 17:12:09 +03:00
|
|
|
static int
|
|
|
|
isUNCRoot(const char *path)
|
|
|
|
{
|
|
|
|
if (path[0] == '\\' && path[1] == '\\') {
|
|
|
|
const char *p;
|
2001-03-21 18:18:05 +03:00
|
|
|
for (p = path + 3; *p; p = CharNext(p)) {
|
|
|
|
if (*p == '\\')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (p[0] && p[1]) {
|
|
|
|
for (p++; *p; p = CharNext(p)) {
|
|
|
|
if (*p == '\\')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!p[0] || !p[1])
|
2001-03-21 17:12:09 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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)
|
2001-02-09 18:02:14 +03:00
|
|
|
{
|
2001-03-20 17:50:43 +03:00
|
|
|
const char *p;
|
2002-06-27 18:57:10 +04:00
|
|
|
char *buf1 = ALLOCA_N(char, strlen(path) + 2);
|
2001-03-20 17:50:43 +03:00
|
|
|
char *buf2 = ALLOCA_N(char, MAXPATHLEN);
|
|
|
|
char *s;
|
|
|
|
int len;
|
2002-09-08 14:06:40 +04:00
|
|
|
int ret;
|
2001-02-09 18:02:14 +03:00
|
|
|
|
2001-03-20 17:50:43 +03:00
|
|
|
for (p = path, s = buf1; *p; p++, s++) {
|
|
|
|
if (*p == '/')
|
|
|
|
*s = '\\';
|
|
|
|
else
|
|
|
|
*s = *p;
|
|
|
|
}
|
|
|
|
*s = '\0';
|
|
|
|
len = strlen(buf1);
|
|
|
|
p = CharPrev(buf1, buf1 + len);
|
2002-09-15 17:02:09 +04:00
|
|
|
if( '\"' == *(--s) )
|
|
|
|
{
|
|
|
|
errno = EBADF;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-03-21 17:12:09 +03:00
|
|
|
if (isUNCRoot(buf1)) {
|
|
|
|
if (*p != '\\')
|
|
|
|
strcat(buf1, "\\");
|
|
|
|
} else if (*p == '\\' || *p == ':')
|
2001-03-20 17:50:43 +03:00
|
|
|
strcat(buf1, ".");
|
2002-09-08 14:06:40 +04:00
|
|
|
if (_fullpath(buf2, buf1, MAXPATHLEN)) {
|
|
|
|
ret = stat(buf2, st);
|
|
|
|
if (ret == 0) {
|
|
|
|
st->st_mode &= ~(S_IWGRP | S_IWOTH);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2001-03-20 17:50:43 +03:00
|
|
|
else
|
|
|
|
return -1;
|
2001-02-09 18:02:14 +03:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
#undef Sleep
|
|
|
|
#define yield_once() Sleep(0)
|
|
|
|
#define yield_until(condition) do yield_once(); while (!(condition))
|
|
|
|
|
|
|
|
static DWORD wait_events(HANDLE event, DWORD timeout)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
HANDLE events[2];
|
|
|
|
int count = 0;
|
|
|
|
DWORD ret;
|
2000-09-27 13:11:13 +04:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
if (event) {
|
|
|
|
events[count++] = event;
|
|
|
|
}
|
|
|
|
events[count++] = interrupted_event;
|
|
|
|
|
|
|
|
ret = WaitForMultipleEvents(count, events, FALSE, timeout, TRUE);
|
|
|
|
|
|
|
|
if (ret == WAIT_OBJECT_0 + count - 1) {
|
|
|
|
ResetSignal(interrupted_event);
|
|
|
|
errno = EINTR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
static CRITICAL_SECTION* system_state(void)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
static int initialized = 0;
|
|
|
|
static CRITICAL_SECTION syssect;
|
|
|
|
|
|
|
|
if (!initialized) {
|
|
|
|
InitializeCriticalSection(&syssect);
|
|
|
|
initialized = 1;
|
|
|
|
}
|
|
|
|
return &syssect;
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
static LONG flag_interrupt = -1;
|
|
|
|
static volatile DWORD tlsi_interrupt = TLS_OUT_OF_INDEXES;
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
void rb_w32_enter_critical(void)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
if (IsWinNT()) {
|
|
|
|
EnterCriticalSection(system_state());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tlsi_interrupt == TLS_OUT_OF_INDEXES) {
|
|
|
|
tlsi_interrupt = TlsAlloc();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
DWORD ti = (DWORD)TlsGetValue(tlsi_interrupt);
|
|
|
|
while (InterlockedIncrement(&flag_interrupt) > 0 && !ti) {
|
|
|
|
InterlockedDecrement(&flag_interrupt);
|
|
|
|
Sleep(1);
|
|
|
|
}
|
|
|
|
TlsSetValue(tlsi_interrupt, (PVOID)++ti);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
void rb_w32_leave_critical(void)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
|
|
|
if (IsWinNT()) {
|
|
|
|
LeaveCriticalSection(system_state());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
InterlockedDecrement(&flag_interrupt);
|
|
|
|
TlsSetValue(tlsi_interrupt, (PVOID)((DWORD)TlsGetValue(tlsi_interrupt) - 1));
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
struct handler_arg_t {
|
|
|
|
void (*handler)(int);
|
|
|
|
int arg;
|
|
|
|
int status;
|
2001-02-17 18:17:10 +03:00
|
|
|
int finished;
|
2000-11-14 10:10:31 +03:00
|
|
|
HANDLE handshake;
|
|
|
|
};
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
static void rb_w32_call_handler(struct handler_arg_t* h)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
int status;
|
2001-05-06 19:06:00 +04:00
|
|
|
RUBY_CRITICAL(rb_protect((VALUE (*)(VALUE))h->handler, (VALUE)h->arg, &h->status);
|
2000-11-14 10:10:31 +03:00
|
|
|
status = h->status;
|
|
|
|
SetEvent(h->handshake));
|
|
|
|
if (status) {
|
|
|
|
rb_jump_tag(status);
|
|
|
|
}
|
2001-02-17 18:17:10 +03:00
|
|
|
h->finished = 1;
|
|
|
|
Sleep(INFINITE); /* safe on Win95? */
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
static struct handler_arg_t* setup_handler(struct handler_arg_t *harg,
|
|
|
|
int arg,
|
|
|
|
void (*handler)(int),
|
|
|
|
HANDLE handshake)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
harg->handler = handler;
|
|
|
|
harg->arg = arg;
|
|
|
|
harg->status = 0;
|
2001-02-17 18:17:10 +03:00
|
|
|
harg->finished = 0;
|
2000-11-14 10:10:31 +03:00
|
|
|
harg->handshake = handshake;
|
|
|
|
return harg;
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
static void setup_call(CONTEXT* ctx, struct handler_arg_t *harg)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
#ifdef _M_IX86
|
|
|
|
DWORD *esp = (DWORD *)ctx->Esp;
|
|
|
|
*--esp = (DWORD)harg;
|
|
|
|
*--esp = ctx->Eip;
|
|
|
|
ctx->Esp = (DWORD)esp;
|
2002-05-29 14:22:19 +04:00
|
|
|
ctx->Eip = (DWORD)rb_w32_call_handler;
|
2000-11-14 10:10:31 +03:00
|
|
|
#else
|
|
|
|
#error unsupported processor
|
|
|
|
#endif
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
int rb_w32_main_context(int arg, void (*handler)(int))
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2000-11-14 10:10:31 +03:00
|
|
|
static HANDLE interrupt_done = NULL;
|
|
|
|
struct handler_arg_t harg;
|
|
|
|
CONTEXT ctx_orig;
|
|
|
|
HANDLE current_thread = GetCurrentThread();
|
|
|
|
int old_priority = GetThreadPriority(current_thread);
|
2000-09-27 13:11:13 +04:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
if (GetCurrentThreadId() == main_thread.id) return FALSE;
|
2000-09-27 13:11:13 +04:00
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
SetSignal(interrupted_event);
|
|
|
|
|
|
|
|
RUBY_CRITICAL({ /* the main thread must be in user state */
|
2000-09-27 13:11:13 +04:00
|
|
|
CONTEXT ctx;
|
|
|
|
|
2000-11-14 10:10:31 +03:00
|
|
|
SuspendThread(main_thread.handle);
|
|
|
|
SetThreadPriority(current_thread, GetThreadPriority(main_thread.handle));
|
|
|
|
|
2000-09-27 13:11:13 +04:00
|
|
|
ZeroMemory(&ctx, sizeof(CONTEXT));
|
|
|
|
ctx.ContextFlags = CONTEXT_FULL | CONTEXT_FLOATING_POINT;
|
2000-11-14 10:10:31 +03:00
|
|
|
GetThreadContext(main_thread.handle, &ctx);
|
|
|
|
ctx_orig = ctx;
|
|
|
|
|
|
|
|
/* handler context setup */
|
|
|
|
if (!interrupt_done) {
|
|
|
|
interrupt_done = CreateEvent(NULL, FALSE, FALSE, NULL);
|
|
|
|
/* anonymous one-shot event */
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
else {
|
|
|
|
ResetEvent(interrupt_done);
|
|
|
|
}
|
|
|
|
setup_call(&ctx, setup_handler(&harg, arg, handler, interrupt_done));
|
2000-09-27 13:11:13 +04:00
|
|
|
|
|
|
|
ctx.ContextFlags = CONTEXT_CONTROL;
|
2000-11-14 10:10:31 +03:00
|
|
|
SetThreadContext(main_thread.handle, &ctx);
|
|
|
|
ResumeThread(main_thread.handle);
|
|
|
|
});
|
|
|
|
|
|
|
|
/* give a chance to the main thread */
|
|
|
|
yield_once();
|
|
|
|
WaitForSingleObject(interrupt_done, INFINITE); /* handshaking */
|
|
|
|
|
|
|
|
if (!harg.status) {
|
|
|
|
/* no exceptions raised, restore old context. */
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
/* ensure the main thread is in user state. */
|
2001-02-17 18:17:10 +03:00
|
|
|
yield_until(harg.finished);
|
2000-11-14 10:10:31 +03:00
|
|
|
|
|
|
|
SuspendThread(main_thread.handle);
|
|
|
|
ctx_orig.ContextFlags = CONTEXT_FULL | CONTEXT_FLOATING_POINT;
|
|
|
|
SetThreadContext(main_thread.handle, &ctx_orig);
|
|
|
|
ResumeThread(main_thread.handle);
|
|
|
|
});
|
2000-09-27 13:11:13 +04:00
|
|
|
}
|
2000-11-14 10:10:31 +03:00
|
|
|
/* otherwise leave the main thread raised */
|
|
|
|
|
|
|
|
SetThreadPriority(current_thread, old_priority);
|
2000-09-27 13:11:13 +04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
int rb_w32_sleep(unsigned long msec)
|
2000-09-27 13:11:13 +04:00
|
|
|
{
|
2001-02-17 18:17:10 +03:00
|
|
|
DWORD ret;
|
|
|
|
RUBY_CRITICAL(ret = wait_events(NULL, msec));
|
|
|
|
yield_once();
|
|
|
|
CHECK_INTS;
|
|
|
|
return ret != WAIT_TIMEOUT;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void catch_interrupt(void)
|
|
|
|
{
|
|
|
|
yield_once();
|
2001-02-17 18:17:10 +03:00
|
|
|
RUBY_CRITICAL(wait_events(NULL, 0));
|
2000-11-14 10:10:31 +03:00
|
|
|
CHECK_INTS;
|
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#undef fgetc
|
2002-05-29 14:22:19 +04:00
|
|
|
int rb_w32_getc(FILE* stream)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
2001-02-17 18:17:10 +03:00
|
|
|
int c, trap_immediate = rb_trap_immediate;
|
2002-06-11 05:27:48 +04:00
|
|
|
if (--stream->FILE_COUNT >= 0) {
|
|
|
|
c = (unsigned char)*stream->FILE_READPTR++;
|
2001-02-17 18:17:10 +03:00
|
|
|
rb_trap_immediate = trap_immediate;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = _filbuf(stream);
|
2002-08-20 17:03:22 +04:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
if( ( c == EOF )&&( errno == EPIPE ) )
|
|
|
|
{
|
|
|
|
clearerr(stream);
|
|
|
|
}
|
|
|
|
#endif
|
2001-02-17 18:17:10 +03:00
|
|
|
rb_trap_immediate = trap_immediate;
|
|
|
|
catch_interrupt();
|
|
|
|
}
|
|
|
|
return c;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
2001-02-17 18:17:10 +03:00
|
|
|
#undef fputc
|
2002-05-29 14:22:19 +04:00
|
|
|
int rb_w32_putc(int c, FILE* stream)
|
2000-11-14 10:10:31 +03:00
|
|
|
{
|
2001-02-17 18:17:10 +03:00
|
|
|
int trap_immediate = rb_trap_immediate;
|
2002-06-11 05:27:48 +04:00
|
|
|
if (--stream->FILE_COUNT >= 0) {
|
|
|
|
c = (unsigned char)(*stream->FILE_READPTR++ = (char)c);
|
2001-02-17 18:17:10 +03:00
|
|
|
rb_trap_immediate = trap_immediate;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = _flsbuf(c, stream);
|
|
|
|
rb_trap_immediate = trap_immediate;
|
|
|
|
catch_interrupt();
|
|
|
|
}
|
|
|
|
return c;
|
2000-11-14 10:10:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
struct asynchronous_arg_t {
|
|
|
|
/* output field */
|
|
|
|
void* stackaddr;
|
|
|
|
|
|
|
|
/* input field */
|
|
|
|
VALUE (*func)(VALUE self, int argc, VALUE* argv);
|
|
|
|
VALUE self;
|
|
|
|
int argc;
|
|
|
|
VALUE* argv;
|
|
|
|
};
|
|
|
|
|
|
|
|
static DWORD WINAPI
|
|
|
|
call_asynchronous(PVOID argp)
|
|
|
|
{
|
|
|
|
struct asynchronous_arg_t *arg = argp;
|
|
|
|
arg->stackaddr = &argp;
|
|
|
|
return (DWORD)arg->func(arg->self, arg->argc, arg->argv);
|
|
|
|
}
|
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
VALUE rb_w32_asynchronize(asynchronous_func_t func,
|
2000-11-14 10:10:31 +03:00
|
|
|
VALUE self, int argc, VALUE* argv, VALUE intrval)
|
|
|
|
{
|
|
|
|
DWORD val;
|
|
|
|
BOOL interrupted = FALSE;
|
|
|
|
HANDLE thr;
|
|
|
|
|
|
|
|
RUBY_CRITICAL({
|
|
|
|
struct asynchronous_arg_t arg;
|
|
|
|
|
|
|
|
arg.stackaddr = NULL;
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (wait_events(thr, INFINITE) != WAIT_OBJECT_0) {
|
|
|
|
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()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!thr) {
|
|
|
|
rb_fatal("failed to launch waiter thread:%d", GetLastError());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (interrupted) {
|
|
|
|
errno = EINTR;
|
|
|
|
CHECK_INTS;
|
|
|
|
}
|
2000-09-27 13:11:13 +04:00
|
|
|
|
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
|
|
|
|
2002-05-29 14:22:19 +04:00
|
|
|
char **rb_w32_get_environ(void)
|
2001-11-13 06:59:20 +03:00
|
|
|
{
|
|
|
|
char *envtop, *env;
|
|
|
|
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.
|
|
|
|
* (U.N. 2001-11-15)
|
|
|
|
*/
|
2001-11-13 06:59:20 +03:00
|
|
|
envtop = GetEnvironmentStrings();
|
|
|
|
for (env = envtop, num = 0; *env; env += strlen(env) + 1)
|
|
|
|
if (*env != '=') num++;
|
|
|
|
|
|
|
|
myenvtop = ALLOC_N(char*, num + 1);
|
|
|
|
for (env = envtop, myenv = myenvtop; *env; env += strlen(env) + 1) {
|
|
|
|
if (*env != '=') {
|
|
|
|
*myenv = ALLOC_N(char, strlen(env) + 1);
|
|
|
|
strcpy(*myenv, env);
|
|
|
|
myenv++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*myenv = NULL;
|
|
|
|
FreeEnvironmentStrings(envtop);
|
|
|
|
|
|
|
|
return myenvtop;
|
|
|
|
}
|
|
|
|
|
2002-05-29 14:22:19 +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
|
|
|
|
|
|
|
pid_t rb_w32_getpid(void)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
pid = _getpid();
|
|
|
|
if (IsWin95()) pid = -pid;
|
|
|
|
|
|
|
|
return pid;
|
|
|
|
}
|
2002-10-11 01:07:16 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
rb_w32_fclose(FILE *fp)
|
|
|
|
{
|
|
|
|
int fd = fileno(fp);
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
|
|
|
|
|
|
|
if (fflush(fp)) return -1;
|
|
|
|
if (!is_socket(sock)) {
|
|
|
|
return fclose(fp);
|
|
|
|
}
|
|
|
|
_set_osfhnd(fd, (SOCKET)INVALID_HANDLE_VALUE);
|
|
|
|
fclose(fp);
|
|
|
|
if (closesocket(sock) == SOCKET_ERROR) {
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_w32_close(int fd)
|
|
|
|
{
|
|
|
|
SOCKET sock = TO_SOCKET(fd);
|
|
|
|
|
|
|
|
if (!is_socket(sock)) {
|
|
|
|
return _close(fd);
|
|
|
|
}
|
|
|
|
if (closesocket(sock) == SOCKET_ERROR) {
|
|
|
|
errno = WSAGetLastError();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|