2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
process.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Tue Aug 10 14:30:50 JST 1993
|
|
|
|
|
2003-01-16 10:34:03 +03:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
2000-05-01 13:42:38 +04:00
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 08:53:16 +04:00
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#include "ruby.h"
|
1999-01-20 07:59:39 +03:00
|
|
|
#include "rubysig.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2002-12-31 15:31:12 +03:00
|
|
|
#ifdef __DJGPP__
|
|
|
|
#include <process.h>
|
|
|
|
#endif
|
2002-02-06 10:30:13 +03:00
|
|
|
|
|
|
|
#include <time.h>
|
1999-01-20 07:59:39 +03:00
|
|
|
#include <ctype.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
struct timeval rb_time_interval _((VALUE));
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_WAIT_H
|
|
|
|
# include <sys/wait.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GETPRIORITY
|
|
|
|
# include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
#include "st.h"
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef __EMX__
|
|
|
|
#undef HAVE_GETPGRP
|
|
|
|
#endif
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
#ifdef HAVE_SYS_TIMES_H
|
|
|
|
#include <sys/times.h>
|
|
|
|
#endif
|
|
|
|
|
2003-06-09 14:02:36 +04:00
|
|
|
#ifdef HAVE_GRP_H
|
2003-06-07 19:34:31 +04:00
|
|
|
#include <grp.h>
|
2003-06-09 08:27:17 +04:00
|
|
|
#endif
|
2003-06-07 19:34:31 +04:00
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-15 06:18:08 +03:00
|
|
|
#if defined(HAVE_TIMES) || defined(_WIN32)
|
2001-02-16 10:53:21 +03:00
|
|
|
static VALUE S_Tms;
|
|
|
|
#endif
|
|
|
|
|
2001-02-20 17:52:31 +03:00
|
|
|
#ifndef WIFEXITED
|
|
|
|
#define WIFEXITED(w) (((w) & 0xff) == 0)
|
|
|
|
#endif
|
|
|
|
#ifndef WIFSIGNALED
|
|
|
|
#define WIFSIGNALED(w) (((w) & 0x7f) > 0 && (((w) & 0x7f) < 0x7f))
|
|
|
|
#endif
|
|
|
|
#ifndef WIFSTOPPED
|
|
|
|
#define WIFSTOPPED(w) (((w) & 0xff) == 0x7f)
|
|
|
|
#endif
|
|
|
|
#ifndef WEXITSTATUS
|
|
|
|
#define WEXITSTATUS(w) (((w) >> 8) & 0xff)
|
|
|
|
#endif
|
|
|
|
#ifndef WTERMSIG
|
|
|
|
#define WTERMSIG(w) ((w) & 0x7f)
|
|
|
|
#endif
|
|
|
|
#ifndef WSTOPSIG
|
|
|
|
#define WSTOPSIG WEXITSTATUS
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
|
|
|
get_pid()
|
|
|
|
{
|
|
|
|
return INT2FIX(getpid());
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
get_ppid()
|
|
|
|
{
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-15 06:18:08 +03:00
|
|
|
#ifdef _WIN32
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(0);
|
|
|
|
#else
|
|
|
|
return INT2FIX(getppid());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE rb_cProcStatus;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_last_status = Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-07-31 12:04:13 +04:00
|
|
|
static void
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set(status, pid)
|
|
|
|
int status, pid;
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
|
|
|
rb_last_status = rb_obj_alloc(rb_cProcStatus);
|
|
|
|
rb_iv_set(rb_last_status, "status", INT2FIX(status));
|
2002-12-10 09:23:44 +03:00
|
|
|
rb_iv_set(rb_last_status, "pid", INT2FIX(pid));
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
pst_to_i(st)
|
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
return rb_iv_get(st, "status");
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
pst_to_s(st)
|
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
return rb_fix2str(pst_to_i(st), 10);
|
|
|
|
}
|
|
|
|
|
2002-12-10 09:23:44 +03:00
|
|
|
static VALUE
|
|
|
|
pst_pid(st)
|
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
return rb_iv_get(st, "pid");
|
|
|
|
}
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
|
|
|
pst_equal(st1, st2)
|
|
|
|
VALUE st1, st2;
|
|
|
|
{
|
|
|
|
if (st1 == st2) return Qtrue;
|
|
|
|
return rb_equal(pst_to_i(st1), st2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
pst_bitand(st1, st2)
|
|
|
|
VALUE st1, st2;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st1) & NUM2INT(st2);
|
|
|
|
|
|
|
|
return INT2NUM(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_rshift(st1, st2)
|
|
|
|
VALUE st1, st2;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st1) >> NUM2INT(st2);
|
|
|
|
|
|
|
|
return INT2NUM(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
pst_wifstopped(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
|
|
|
if (WIFSTOPPED(status))
|
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_wstopsig(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
2001-11-21 18:42:12 +03:00
|
|
|
if (WIFSTOPPED(status))
|
|
|
|
return INT2NUM(WSTOPSIG(status));
|
|
|
|
return Qnil;
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_wifsignaled(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
if (WIFSIGNALED(status))
|
2001-02-15 09:01:00 +03:00
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_wtermsig(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
2001-11-21 18:42:12 +03:00
|
|
|
if (WIFSIGNALED(status))
|
|
|
|
return INT2NUM(WTERMSIG(status));
|
|
|
|
return Qnil;
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_wifexited(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
|
|
|
if (WIFEXITED(status))
|
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_wexitstatus(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
2001-11-21 18:42:12 +03:00
|
|
|
if (WIFEXITED(status))
|
|
|
|
return INT2NUM(WEXITSTATUS(status));
|
|
|
|
return Qnil;
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-02-16 10:53:21 +03:00
|
|
|
pst_wcoredump(st)
|
2001-02-15 09:01:00 +03:00
|
|
|
VALUE st;
|
|
|
|
{
|
|
|
|
#ifdef WCOREDUMP
|
|
|
|
int status = NUM2INT(st);
|
|
|
|
|
|
|
|
if (WCOREDUMP(status))
|
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
#else
|
|
|
|
return Qfalse;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#if !defined(HAVE_WAITPID) && !defined(HAVE_WAIT4)
|
1999-01-20 07:59:39 +03:00
|
|
|
#define NO_WAITPID
|
1998-01-16 15:13:05 +03:00
|
|
|
static st_table *pid_tbl;
|
|
|
|
#endif
|
|
|
|
|
2001-08-06 07:05:23 +04:00
|
|
|
int
|
|
|
|
rb_waitpid(pid, st, flags)
|
1998-01-16 15:13:05 +03:00
|
|
|
int pid;
|
|
|
|
int *st;
|
2001-08-06 07:05:23 +04:00
|
|
|
int flags;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int result;
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifndef NO_WAITPID
|
1998-01-16 15:13:05 +03:00
|
|
|
int oflags = flags;
|
1999-01-20 07:59:39 +03:00
|
|
|
if (!rb_thread_alone()) { /* there're other threads to run */
|
1998-01-16 15:13:05 +03:00
|
|
|
flags |= WNOHANG;
|
|
|
|
}
|
|
|
|
|
|
|
|
retry:
|
2000-10-17 22:14:05 +04:00
|
|
|
TRAP_BEG;
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifdef HAVE_WAITPID
|
1998-01-16 15:13:05 +03:00
|
|
|
result = waitpid(pid, st, flags);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else /* HAVE_WAIT4 */
|
1998-01-16 15:13:05 +03:00
|
|
|
result = wait4(pid, st, flags, NULL);
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
2000-10-17 22:14:05 +04:00
|
|
|
TRAP_END;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (result < 0) {
|
|
|
|
if (errno == EINTR) {
|
2000-05-17 08:38:19 +04:00
|
|
|
rb_thread_polling();
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (result == 0) {
|
|
|
|
if (oflags & WNOHANG) return 0;
|
2000-05-17 08:38:19 +04:00
|
|
|
rb_thread_polling();
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_thread_alone()) flags = oflags;
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
#else /* NO_WAITPID */
|
1998-01-16 15:13:05 +03:00
|
|
|
if (pid_tbl && st_lookup(pid_tbl, pid, st)) {
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set(*st, pid);
|
1998-01-16 15:13:05 +03:00
|
|
|
st_delete(pid_tbl, &pid, NULL);
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags) {
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_raise(rb_eArgError, "can't do waitpid with flags");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
2000-10-17 22:14:05 +04:00
|
|
|
TRAP_BEG;
|
1998-01-16 15:13:05 +03:00
|
|
|
result = wait(st);
|
2000-10-17 22:14:05 +04:00
|
|
|
TRAP_END;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (result < 0) {
|
|
|
|
if (errno == EINTR) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_thread_schedule();
|
1998-01-16 15:13:05 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (result == pid) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!pid_tbl)
|
|
|
|
pid_tbl = st_init_numtable();
|
|
|
|
st_insert(pid_tbl, pid, st);
|
1999-08-13 09:45:20 +04:00
|
|
|
if (!rb_thread_alone()) rb_thread_schedule();
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
2002-12-10 09:23:44 +03:00
|
|
|
if (result > 0) {
|
|
|
|
last_status_set(*st, result);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifdef NO_WAITPID
|
1998-01-16 15:13:05 +03:00
|
|
|
struct wait_data {
|
|
|
|
int pid;
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
2002-12-10 09:23:44 +03:00
|
|
|
wait_each(pid, status, data)
|
|
|
|
int pid, status;
|
1998-01-16 15:13:05 +03:00
|
|
|
struct wait_data *data;
|
|
|
|
{
|
|
|
|
if (data->status != -1) return ST_STOP;
|
|
|
|
|
2002-12-10 09:23:44 +03:00
|
|
|
data->pid = pid;
|
|
|
|
data->status = status;
|
1998-01-16 15:13:05 +03:00
|
|
|
return ST_DELETE;
|
|
|
|
}
|
2001-02-15 09:01:00 +03:00
|
|
|
|
|
|
|
static int
|
2002-12-10 09:23:44 +03:00
|
|
|
waitall_each(pid, status, ary)
|
|
|
|
int pid, status;
|
|
|
|
VALUE ary;
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set(status, pid);
|
|
|
|
rb_ary_push(ary, rb_assoc_new(INT2NUM(pid), rb_last_status));
|
2001-02-15 09:01:00 +03:00
|
|
|
return ST_DELETE;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static VALUE
|
2001-08-06 07:05:23 +04:00
|
|
|
proc_wait(argc, argv)
|
2000-06-19 12:38:11 +04:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
|
|
|
VALUE vpid, vflags;
|
1998-01-16 15:13:05 +03:00
|
|
|
int pid, flags, status;
|
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
flags = 0;
|
2001-08-06 07:05:23 +04:00
|
|
|
rb_scan_args(argc, argv, "02", &vpid, &vflags);
|
|
|
|
if (argc == 0) {
|
|
|
|
pid = -1;
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
2001-08-06 07:05:23 +04:00
|
|
|
else {
|
|
|
|
pid = NUM2INT(vpid);
|
|
|
|
if (argc == 2 && !NIL_P(vflags)) {
|
|
|
|
flags = NUM2UINT(vflags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((pid = rb_waitpid(pid, &status, flags)) < 0)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(0);
|
2000-11-27 12:23:38 +03:00
|
|
|
if (pid == 0) {
|
2002-12-10 09:23:44 +03:00
|
|
|
return rb_last_status = Qnil;
|
2000-11-27 12:23:38 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(pid);
|
|
|
|
}
|
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
static VALUE
|
2001-08-06 07:05:23 +04:00
|
|
|
proc_wait2(argc, argv)
|
2000-06-19 12:38:11 +04:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
2001-08-06 07:05:23 +04:00
|
|
|
VALUE pid = proc_wait(argc, argv);
|
2000-11-27 12:23:38 +03:00
|
|
|
if (NIL_P(pid)) return Qnil;
|
2000-06-19 12:38:11 +04:00
|
|
|
return rb_assoc_new(pid, rb_last_status);
|
|
|
|
}
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
|
|
|
proc_waitall()
|
|
|
|
{
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE result;
|
2001-02-15 09:01:00 +03:00
|
|
|
int pid, status;
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
result = rb_ary_new();
|
|
|
|
#ifdef NO_WAITPID
|
|
|
|
if (pid_tbl) {
|
|
|
|
st_foreach(pid_tbl, waitall_each, result);
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (pid = -1;;) {
|
|
|
|
pid = wait(&status);
|
|
|
|
if (pid == -1) {
|
|
|
|
if (errno == ECHILD)
|
|
|
|
break;
|
|
|
|
if (errno == EINTR) {
|
|
|
|
rb_thread_schedule();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set(status, pid);
|
2001-05-02 08:22:21 +04:00
|
|
|
rb_ary_push(result, rb_assoc_new(INT2NUM(pid), rb_last_status));
|
|
|
|
}
|
2001-02-15 09:01:00 +03:00
|
|
|
#else
|
2001-05-02 08:22:21 +04:00
|
|
|
rb_last_status = Qnil;
|
2001-02-15 09:01:00 +03:00
|
|
|
for (pid = -1;;) {
|
2001-08-06 07:05:23 +04:00
|
|
|
pid = rb_waitpid(-1, &status, 0);
|
2001-02-15 09:01:00 +03:00
|
|
|
if (pid == -1) {
|
|
|
|
if (errno == ECHILD)
|
|
|
|
break;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2001-05-02 08:22:21 +04:00
|
|
|
rb_ary_push(result, rb_assoc_new(INT2NUM(pid), rb_last_status));
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
#endif
|
2001-05-02 08:22:21 +04:00
|
|
|
return result;
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
2003-03-07 08:59:42 +03:00
|
|
|
static VALUE
|
|
|
|
detach_process_watcer(pid_p)
|
|
|
|
int *pid_p;
|
|
|
|
{
|
|
|
|
int cpid, status;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
cpid = rb_waitpid(*pid_p, &status, WNOHANG);
|
|
|
|
if (cpid == -1) return Qnil;
|
|
|
|
rb_thread_sleep(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-20 09:27:22 +03:00
|
|
|
VALUE
|
2003-03-07 08:59:42 +03:00
|
|
|
rb_detach_process(pid)
|
|
|
|
int pid;
|
|
|
|
{
|
2003-03-20 09:27:22 +03:00
|
|
|
return rb_thread_create(detach_process_watcer, (void*)&pid);
|
2003-03-07 08:59:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_detach(obj, pid)
|
|
|
|
VALUE pid;
|
|
|
|
{
|
2003-03-20 09:27:22 +03:00
|
|
|
return rb_detach_process(NUM2INT(pid));
|
2003-03-07 08:59:42 +03:00
|
|
|
}
|
|
|
|
|
2000-12-26 11:08:50 +03:00
|
|
|
#ifndef HAVE_STRING_H
|
1998-01-16 15:13:05 +03:00
|
|
|
char *strtok();
|
2000-12-26 11:08:50 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef HAVE_SETITIMER
|
1999-01-20 07:59:39 +03:00
|
|
|
#define before_exec() rb_thread_stop_timer()
|
|
|
|
#define after_exec() rb_thread_start_timer()
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
#define before_exec()
|
|
|
|
#define after_exec()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern char *dln_find_exe();
|
|
|
|
|
|
|
|
static void
|
|
|
|
security(str)
|
|
|
|
char *str;
|
|
|
|
{
|
2001-11-08 09:43:14 +03:00
|
|
|
if (rb_env_path_tainted()) {
|
|
|
|
if (rb_safe_level() > 0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eSecurityError, "Insecure PATH - %s", str);
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1998-01-16 15:19:22 +03:00
|
|
|
proc_exec_v(argv, prog)
|
1998-01-16 15:13:05 +03:00
|
|
|
char **argv;
|
|
|
|
char *prog;
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2003-01-06 07:30:27 +03:00
|
|
|
if (!prog)
|
|
|
|
prog = argv[0];
|
|
|
|
security(prog);
|
|
|
|
prog = dln_find_exe(prog, 0);
|
|
|
|
if (!prog)
|
|
|
|
return -1;
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#if (defined(MSDOS) && !defined(DJGPP)) || defined(__human68k__) || defined(__EMX__) || defined(OS2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#if defined(__human68k__)
|
|
|
|
#define COMMAND "command.x"
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif
|
|
|
|
#if defined(__EMX__) || defined(OS2) /* OS/2 emx */
|
|
|
|
#define COMMAND "cmd.exe"
|
|
|
|
#endif
|
|
|
|
#if (defined(MSDOS) && !defined(DJGPP))
|
1998-01-16 15:13:05 +03:00
|
|
|
#define COMMAND "command.com"
|
|
|
|
#endif
|
|
|
|
char *extension;
|
|
|
|
|
|
|
|
if ((extension = strrchr(prog, '.')) != NULL && strcasecmp(extension, ".bat") == 0) {
|
|
|
|
char **new_argv;
|
|
|
|
char *p;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; argv[n]; n++)
|
|
|
|
/* no-op */;
|
2000-10-10 11:03:36 +04:00
|
|
|
new_argv = ALLOCA_N(char*, n + 2);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (; n > 0; n--)
|
|
|
|
new_argv[n + 1] = argv[n];
|
|
|
|
new_argv[1] = strcpy(ALLOCA_N(char, strlen(argv[0]) + 1), argv[0]);
|
|
|
|
for (p = new_argv[1]; *p != '\0'; p++)
|
|
|
|
if (*p == '/')
|
|
|
|
*p = '\\';
|
|
|
|
new_argv[0] = COMMAND;
|
|
|
|
argv = new_argv;
|
|
|
|
prog = dln_find_exe(argv[0], 0);
|
|
|
|
if (!prog) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif /* MSDOS or __human68k__ or __EMX__ */
|
1998-01-16 15:13:05 +03:00
|
|
|
before_exec();
|
2003-01-06 07:30:27 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
do_aspawn(P_OVERLAY, prog, argv);
|
|
|
|
#else
|
1998-01-16 15:13:05 +03:00
|
|
|
execv(prog, argv);
|
2003-01-06 07:30:27 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
after_exec();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1998-01-16 15:19:22 +03:00
|
|
|
proc_exec_n(argc, argv, progv)
|
1998-01-16 15:13:05 +03:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
1998-01-16 15:19:22 +03:00
|
|
|
VALUE progv;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
char *prog = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
char **args;
|
|
|
|
int i;
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
if (progv) {
|
|
|
|
prog = RSTRING(progv)->ptr;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
args = ALLOCA_N(char*, argc+1);
|
|
|
|
for (i=0; i<argc; i++) {
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(argv[i]);
|
1998-01-16 15:13:05 +03:00
|
|
|
args[i] = RSTRING(argv[i])->ptr;
|
|
|
|
}
|
|
|
|
args[i] = 0;
|
|
|
|
if (args[0]) {
|
1998-01-16 15:19:22 +03:00
|
|
|
return proc_exec_v(args, prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_proc_exec(str)
|
1999-08-13 09:45:20 +04:00
|
|
|
const char *str;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
const char *s = str;
|
|
|
|
char *ss, *t;
|
1998-01-16 15:13:05 +03:00
|
|
|
char **argv, **a;
|
|
|
|
|
2001-02-19 10:03:06 +03:00
|
|
|
while (*str && ISSPACE(*str))
|
|
|
|
str++;
|
|
|
|
|
2003-01-06 07:30:27 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
before_exec();
|
|
|
|
do_spawn(P_OVERLAY, (char *)str);
|
|
|
|
after_exec();
|
|
|
|
#else
|
1998-01-16 15:13:05 +03:00
|
|
|
for (s=str; *s; s++) {
|
1999-01-20 07:59:39 +03:00
|
|
|
if (*s != ' ' && !ISALPHA(*s) && strchr("*?{}[]<>()~&|\\$;'`\"\n",*s)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
#if defined(MSDOS)
|
2001-02-15 09:01:00 +03:00
|
|
|
int status;
|
1998-01-16 15:13:05 +03:00
|
|
|
before_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
status = system(str);
|
1998-01-16 15:13:05 +03:00
|
|
|
after_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
if (status != -1)
|
|
|
|
exit(status);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-08-13 09:45:20 +04:00
|
|
|
#if defined(__human68k__) || defined(__CYGWIN32__) || defined(__EMX__)
|
1998-01-16 15:13:05 +03:00
|
|
|
char *shell = dln_find_exe("sh", 0);
|
2001-02-15 09:01:00 +03:00
|
|
|
int status = -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
before_exec();
|
|
|
|
if (shell)
|
|
|
|
execl(shell, "sh", "-c", str, (char *) NULL);
|
|
|
|
else
|
2001-02-15 09:01:00 +03:00
|
|
|
status = system(str);
|
1998-01-16 15:13:05 +03:00
|
|
|
after_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
if (status != -1)
|
|
|
|
exit(status);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
before_exec();
|
|
|
|
execl("/bin/sh", "sh", "-c", str, (char *)NULL);
|
|
|
|
after_exec();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a = argv = ALLOCA_N(char*, (s-str)/2+2);
|
1999-08-13 09:45:20 +04:00
|
|
|
ss = ALLOCA_N(char, s-str+1);
|
|
|
|
strcpy(ss, str);
|
|
|
|
if (*a++ = strtok(ss, " \t")) {
|
1998-01-16 15:13:05 +03:00
|
|
|
while (t = strtok(NULL, " \t")) {
|
|
|
|
*a++ = t;
|
|
|
|
}
|
|
|
|
*a = NULL;
|
|
|
|
}
|
|
|
|
if (argv[0]) {
|
1998-01-16 15:19:22 +03:00
|
|
|
return proc_exec_v(argv, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
errno = ENOENT;
|
2003-01-06 07:30:27 +03:00
|
|
|
#endif /* _WIN32 */
|
1998-01-16 15:13:05 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-01-04 09:26:10 +03:00
|
|
|
#if defined(__human68k__) || defined(__DJGPP__) || defined(_WIN32)
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
1998-01-16 15:19:22 +03:00
|
|
|
proc_spawn_v(argv, prog)
|
1998-01-16 15:13:05 +03:00
|
|
|
char **argv;
|
|
|
|
char *prog;
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
1998-01-16 15:13:05 +03:00
|
|
|
char *extension;
|
2001-02-15 09:01:00 +03:00
|
|
|
int status;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-12-31 15:31:12 +03:00
|
|
|
if (!prog)
|
|
|
|
prog = argv[0];
|
|
|
|
security(prog);
|
|
|
|
prog = dln_find_exe(prog, 0);
|
|
|
|
if (!prog)
|
|
|
|
return -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-12-31 15:31:12 +03:00
|
|
|
#if defined(__human68k__)
|
1998-01-16 15:13:05 +03:00
|
|
|
if ((extension = strrchr(prog, '.')) != NULL && strcasecmp(extension, ".bat") == 0) {
|
|
|
|
char **new_argv;
|
|
|
|
char *p;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; argv[n]; n++)
|
|
|
|
/* no-op */;
|
2000-10-10 11:03:36 +04:00
|
|
|
new_argv = ALLOCA_N(char*, n + 2);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (; n > 0; n--)
|
|
|
|
new_argv[n + 1] = argv[n];
|
|
|
|
new_argv[1] = strcpy(ALLOCA_N(char, strlen(argv[0]) + 1), argv[0]);
|
|
|
|
for (p = new_argv[1]; *p != '\0'; p++)
|
|
|
|
if (*p == '/')
|
|
|
|
*p = '\\';
|
|
|
|
new_argv[0] = COMMAND;
|
|
|
|
argv = new_argv;
|
|
|
|
prog = dln_find_exe(argv[0], 0);
|
|
|
|
if (!prog) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2002-12-31 15:31:12 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
before_exec();
|
2002-12-31 15:31:12 +03:00
|
|
|
#if defined(_WIN32)
|
2003-01-06 07:30:27 +03:00
|
|
|
status = do_aspawn(P_WAIT, prog, argv);
|
2002-12-31 15:31:12 +03:00
|
|
|
#else
|
2001-02-15 09:01:00 +03:00
|
|
|
status = spawnv(P_WAIT, prog, argv);
|
2002-12-31 15:31:12 +03:00
|
|
|
#endif
|
2001-07-31 12:04:13 +04:00
|
|
|
after_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
return status;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1998-01-16 15:19:22 +03:00
|
|
|
proc_spawn_n(argc, argv, prog)
|
1998-01-16 15:13:05 +03:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
1998-01-16 15:19:22 +03:00
|
|
|
VALUE prog;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
char **args;
|
|
|
|
int i;
|
|
|
|
|
2000-10-10 11:03:36 +04:00
|
|
|
args = ALLOCA_N(char*, argc + 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (i = 0; i < argc; i++) {
|
2002-12-31 15:31:12 +03:00
|
|
|
SafeStringValue(argv[i]);
|
1998-01-16 15:13:05 +03:00
|
|
|
args[i] = RSTRING(argv[i])->ptr;
|
|
|
|
}
|
2002-12-31 15:31:12 +03:00
|
|
|
if (prog)
|
|
|
|
SafeStringValue(prog);
|
2000-10-10 11:03:36 +04:00
|
|
|
args[i] = (char*) 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (args[0])
|
2002-12-31 15:31:12 +03:00
|
|
|
return proc_spawn_v(args, prog ? RSTRING(prog)->ptr : 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-12-31 15:31:12 +03:00
|
|
|
#if !defined(_WIN32)
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
1999-01-20 07:59:39 +03:00
|
|
|
proc_spawn(sv)
|
|
|
|
VALUE sv;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
char *str;
|
|
|
|
char *s, *t;
|
1998-01-16 15:13:05 +03:00
|
|
|
char **argv, **a;
|
2001-02-15 09:01:00 +03:00
|
|
|
int status;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(sv);
|
1999-01-20 07:59:39 +03:00
|
|
|
str = s = RSTRING(sv)->ptr;
|
1998-01-16 15:13:05 +03:00
|
|
|
for (s = str; *s; s++) {
|
1999-01-20 07:59:39 +03:00
|
|
|
if (*s != ' ' && !ISALPHA(*s) && strchr("*?{}[]<>()~&|\\$;'`\"\n",*s)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
char *shell = dln_find_exe("sh", 0);
|
|
|
|
before_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
status = shell?spawnl(P_WAIT,shell,"sh","-c",str,(char*)NULL):system(str);
|
1998-01-16 15:13:05 +03:00
|
|
|
after_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
return status;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2000-10-10 11:03:36 +04:00
|
|
|
a = argv = ALLOCA_N(char*, (s - str) / 2 + 2);
|
1998-01-16 15:13:05 +03:00
|
|
|
s = ALLOCA_N(char, s - str + 1);
|
|
|
|
strcpy(s, str);
|
|
|
|
if (*a++ = strtok(s, " \t")) {
|
|
|
|
while (t = strtok(NULL, " \t"))
|
|
|
|
*a++ = t;
|
|
|
|
*a = NULL;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
return argv[0] ? proc_spawn_v(argv, 0) : -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-12-31 15:31:12 +03:00
|
|
|
#endif
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-11-19 08:03:03 +03:00
|
|
|
VALUE
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_f_exec(argc, argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
VALUE prog = 0;
|
2003-01-07 10:36:40 +03:00
|
|
|
VALUE tmp;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (argc == 0) {
|
2001-11-19 08:03:03 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2003-01-07 10:36:40 +03:00
|
|
|
tmp = rb_check_array_type(argv[0]);
|
|
|
|
if (!NIL_P(tmp)) {
|
|
|
|
if (RARRAY(tmp)->len != 2) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong first argument");
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2003-01-07 10:36:40 +03:00
|
|
|
prog = RARRAY(tmp)->ptr[0];
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(prog);
|
2003-01-07 10:36:40 +03:00
|
|
|
argv[0] = RARRAY(tmp)->ptr[1];
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
if (argc == 1 && prog == 0) {
|
2001-03-28 12:43:25 +04:00
|
|
|
VALUE cmd = argv[0];
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(cmd);
|
2001-03-28 12:43:25 +04:00
|
|
|
rb_proc_exec(RSTRING(cmd)->ptr);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:19:22 +03:00
|
|
|
proc_exec_n(argc, argv, prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
rb_sys_fail(RSTRING(argv[0])->ptr);
|
1999-12-06 12:04:03 +03:00
|
|
|
return Qnil; /* dummy */
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_f_fork(obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE obj;
|
|
|
|
{
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-15 06:18:08 +03:00
|
|
|
#if !defined(__human68k__) && !defined(_WIN32) && !defined(__MACOS__) && !defined(__EMX__) && !defined(__VMS)
|
1998-01-16 15:13:05 +03:00
|
|
|
int pid;
|
|
|
|
|
|
|
|
rb_secure(2);
|
|
|
|
switch (pid = fork()) {
|
|
|
|
case 0:
|
|
|
|
#ifdef linux
|
|
|
|
after_exec();
|
|
|
|
#endif
|
2000-11-27 12:23:38 +03:00
|
|
|
rb_thread_atfork();
|
2000-05-24 08:34:26 +04:00
|
|
|
if (rb_block_given_p()) {
|
2000-11-27 12:23:38 +03:00
|
|
|
int status;
|
|
|
|
|
2002-05-14 10:22:31 +04:00
|
|
|
rb_protect(rb_yield, Qundef, &status);
|
2000-11-27 12:23:38 +03:00
|
|
|
ruby_stop(status);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
return Qnil;
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
rb_sys_fail("fork(2)");
|
|
|
|
return Qnil;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return INT2FIX(pid);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_f_exit_bang(argc, argv, obj)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
VALUE obj;
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE status;
|
|
|
|
int istatus;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_secure(4);
|
1999-08-13 09:45:20 +04:00
|
|
|
if (rb_scan_args(argc, argv, "01", &status) == 1) {
|
|
|
|
istatus = NUM2INT(status);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
istatus = -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
_exit(istatus);
|
2000-03-07 11:37:59 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
return Qnil; /* not reached */
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_syswait(pid)
|
|
|
|
int pid;
|
|
|
|
{
|
2002-02-25 12:16:25 +03:00
|
|
|
static int overriding;
|
2000-08-07 09:05:04 +04:00
|
|
|
RETSIGTYPE (*hfunc)_((int)), (*qfunc)_((int)), (*ifunc)_((int));
|
1998-01-16 15:13:05 +03:00
|
|
|
int status;
|
2002-02-25 12:16:25 +03:00
|
|
|
int i, hooked = Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-25 12:16:25 +03:00
|
|
|
if (!overriding) {
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef SIGHUP
|
2002-02-25 12:16:25 +03:00
|
|
|
hfunc = signal(SIGHUP, SIG_IGN);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGQUIT
|
2002-02-25 12:16:25 +03:00
|
|
|
qfunc = signal(SIGQUIT, SIG_IGN);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
2002-02-25 12:16:25 +03:00
|
|
|
ifunc = signal(SIGINT, SIG_IGN);
|
|
|
|
overriding = Qtrue;
|
|
|
|
hooked = Qtrue;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
do {
|
2001-08-06 07:05:23 +04:00
|
|
|
i = rb_waitpid(pid, &status, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
} while (i == -1 && errno == EINTR);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-02-25 12:16:25 +03:00
|
|
|
if (hooked) {
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef SIGHUP
|
2002-02-25 12:16:25 +03:00
|
|
|
signal(SIGHUP, hfunc);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
#ifdef SIGQUIT
|
2002-02-25 12:16:25 +03:00
|
|
|
signal(SIGQUIT, qfunc);
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
2002-02-25 12:16:25 +03:00
|
|
|
signal(SIGINT, ifunc);
|
2002-02-26 09:48:59 +03:00
|
|
|
overriding = Qfalse;
|
2002-02-25 12:16:25 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_f_system(argc, argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
2003-01-04 09:26:10 +03:00
|
|
|
#if defined(__EMX__)
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE cmd;
|
2001-02-15 09:01:00 +03:00
|
|
|
int status;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
if (argc == 0) {
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_last_status = Qnil;
|
2001-11-19 08:03:03 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
1999-11-25 12:03:08 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
if (TYPE(argv[0]) == T_ARRAY) {
|
|
|
|
if (RARRAY(argv[0])->len != 2) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong first argument");
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
argv[0] = RARRAY(argv[0])->ptr[0];
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
cmd = rb_ary_join(rb_ary_new4(argc, argv), rb_str_new2(" "));
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(cmd);
|
2001-02-15 09:01:00 +03:00
|
|
|
status = do_spawn(RSTRING(cmd)->ptr);
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set(status, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
if (status == 0) return Qtrue;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
2003-01-04 09:26:10 +03:00
|
|
|
#elif defined(__human68k__) || defined(__DJGPP__) || defined(_WIN32)
|
2002-12-31 15:31:12 +03:00
|
|
|
volatile VALUE prog = 0;
|
2001-02-15 09:01:00 +03:00
|
|
|
int status;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
if (argc == 0) {
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_last_status = Qnil;
|
2001-11-19 08:03:03 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
if (TYPE(argv[0]) == T_ARRAY) {
|
|
|
|
if (RARRAY(argv[0])->len != 2) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong first argument");
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
prog = RARRAY(argv[0])->ptr[0];
|
|
|
|
argv[0] = RARRAY(argv[0])->ptr[1];
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
if (argc == 1 && prog == 0) {
|
2002-12-31 15:31:12 +03:00
|
|
|
#if defined(_WIN32)
|
2003-01-06 07:30:27 +03:00
|
|
|
status = do_spawn(P_WAIT, RSTRING(argv[0])->ptr);
|
2002-12-31 15:31:12 +03:00
|
|
|
#else
|
2001-02-15 09:01:00 +03:00
|
|
|
status = proc_spawn(argv[0]);
|
2002-12-31 15:31:12 +03:00
|
|
|
#endif
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-02-15 09:01:00 +03:00
|
|
|
status = proc_spawn_n(argc, argv, prog);
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
2002-12-31 15:31:12 +03:00
|
|
|
#if defined(_WIN32)
|
|
|
|
last_status_set(status, 0);
|
|
|
|
#else
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set(status == -1 ? 127 : status, 0);
|
2002-12-31 15:31:12 +03:00
|
|
|
#endif
|
2001-02-15 09:01:00 +03:00
|
|
|
return status == 0 ? Qtrue : Qfalse;
|
2002-08-28 12:05:23 +04:00
|
|
|
#elif defined(__VMS)
|
2002-03-22 10:26:42 +03:00
|
|
|
VALUE cmd;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
rb_last_status = Qnil;
|
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TYPE(argv[0]) == T_ARRAY) {
|
|
|
|
if (RARRAY(argv[0])->len != 2) {
|
|
|
|
rb_raise(rb_eArgError, "wrong first argument");
|
|
|
|
}
|
|
|
|
argv[0] = RARRAY(argv[0])->ptr[0];
|
|
|
|
}
|
|
|
|
cmd = rb_ary_join(rb_ary_new4(argc, argv), rb_str_new2(" "));
|
|
|
|
|
|
|
|
SafeStringValue(cmd);
|
|
|
|
status = system(RSTRING(cmd)->ptr);
|
2002-12-10 09:23:44 +03:00
|
|
|
last_status_set((status & 0xff) << 8, 0);
|
2002-03-22 10:26:42 +03:00
|
|
|
|
|
|
|
if (status == 0) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-11-25 12:03:08 +03:00
|
|
|
volatile VALUE prog = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
int pid;
|
1999-01-20 07:59:39 +03:00
|
|
|
int i;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
if (argc == 0) {
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_last_status = Qnil;
|
2001-11-19 08:03:03 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
if (TYPE(argv[0]) == T_ARRAY) {
|
|
|
|
if (RARRAY(argv[0])->len != 2) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong first argument");
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
prog = RARRAY(argv[0])->ptr[0];
|
|
|
|
argv[0] = RARRAY(argv[0])->ptr[1];
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (prog) {
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(prog);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
for (i = 0; i < argc; i++) {
|
2001-05-02 08:22:21 +04:00
|
|
|
SafeStringValue(argv[i]);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
retry:
|
2002-01-04 17:15:33 +03:00
|
|
|
switch (pid = fork()) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case 0:
|
1998-01-16 15:19:22 +03:00
|
|
|
if (argc == 1 && prog == 0) {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_proc_exec(RSTRING(argv[0])->ptr);
|
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:19:22 +03:00
|
|
|
proc_exec_n(argc, argv, prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
_exit(127);
|
|
|
|
break; /* not reached */
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
if (errno == EAGAIN) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_thread_sleep(1);
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
rb_sys_fail(0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
rb_syswait(pid);
|
|
|
|
}
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
if (NUM2INT(rb_last_status) == 0)
|
|
|
|
return Qtrue;
|
1999-01-20 07:59:39 +03:00
|
|
|
return Qfalse;
|
2002-08-28 12:05:23 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_f_sleep(argc, argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
|
|
|
int beg, end;
|
|
|
|
|
|
|
|
beg = time(0);
|
|
|
|
if (argc == 0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_thread_sleep_forever();
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else if (argc == 1) {
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_thread_wait_for(rb_time_interval(argv[0]));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
2001-11-19 08:03:03 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
end = time(0) - beg;
|
|
|
|
|
|
|
|
return INT2FIX(end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-08-06 07:05:23 +04:00
|
|
|
proc_getpgrp()
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int pgrp;
|
|
|
|
|
2001-08-06 07:05:23 +04:00
|
|
|
#if defined(HAVE_GETPGRP) && defined(GETPGRP_VOID)
|
1998-01-16 15:13:05 +03:00
|
|
|
pgrp = getpgrp();
|
|
|
|
if (pgrp < 0) rb_sys_fail(0);
|
|
|
|
return INT2FIX(pgrp);
|
1999-08-13 09:45:20 +04:00
|
|
|
#else
|
2001-08-06 07:05:23 +04:00
|
|
|
# ifdef HAVE_GETPGID
|
|
|
|
pgrp = getpgid(0);
|
|
|
|
if (pgrp < 0) rb_sys_fail(0);
|
|
|
|
return INT2FIX(pgrp);
|
|
|
|
# else
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_notimplement();
|
2001-08-06 07:05:23 +04:00
|
|
|
# endif
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2001-08-06 07:05:23 +04:00
|
|
|
proc_setpgrp()
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-07-11 12:22:18 +04:00
|
|
|
/* check for posix setpgid() first; this matches the posix */
|
|
|
|
/* getpgrp() above. It appears that configure will set SETPGRP_VOID */
|
|
|
|
/* even though setpgrp(0,0) would be prefered. The posix call avoids */
|
|
|
|
/* this confusion. */
|
|
|
|
#ifdef HAVE_SETPGID
|
|
|
|
if (setpgid(0,0) < 0) rb_sys_fail(0);
|
|
|
|
#elif defined(HAVE_SETPGRP) && defined(SETPGRP_VOID)
|
1998-01-16 15:13:05 +03:00
|
|
|
if (setpgrp() < 0) rb_sys_fail(0);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
2002-03-11 11:02:04 +03:00
|
|
|
return INT2FIX(0);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getpgid(obj, pid)
|
|
|
|
VALUE obj, pid;
|
|
|
|
{
|
2000-08-07 09:05:04 +04:00
|
|
|
#if defined(HAVE_GETPGID) && !defined(__CHECKER__)
|
2002-08-21 19:47:54 +04:00
|
|
|
int i = getpgid(NUM2INT(pid));
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-03-11 11:02:04 +03:00
|
|
|
if (i < 0) rb_sys_fail(0);
|
1999-01-20 07:59:39 +03:00
|
|
|
return INT2NUM(i);
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setpgid(obj, pid, pgrp)
|
|
|
|
VALUE obj, pid, pgrp;
|
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifdef HAVE_SETPGID
|
1998-01-16 15:13:05 +03:00
|
|
|
int ipid, ipgrp;
|
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
ipid = NUM2INT(pid);
|
|
|
|
ipgrp = NUM2INT(pgrp);
|
|
|
|
|
|
|
|
if (setpgid(ipid, ipgrp) < 0) rb_sys_fail(0);
|
2000-03-13 10:18:45 +03:00
|
|
|
return INT2FIX(0);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setsid()
|
|
|
|
{
|
2000-06-13 13:42:40 +04:00
|
|
|
#if defined(HAVE_SETSID)
|
1999-12-14 09:50:43 +03:00
|
|
|
int pid;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
|
|
|
pid = setsid();
|
1999-01-20 07:59:39 +03:00
|
|
|
if (pid < 0) rb_sys_fail(0);
|
|
|
|
return INT2FIX(pid);
|
2000-06-13 13:42:40 +04:00
|
|
|
#elif defined(HAVE_SETPGRP) && defined(TIOCNOTTY)
|
2000-06-19 12:38:11 +04:00
|
|
|
pid_t pid;
|
|
|
|
int ret;
|
2000-06-13 13:42:40 +04:00
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
rb_secure(2);
|
|
|
|
pid = getpid();
|
2000-06-13 13:42:40 +04:00
|
|
|
#if defined(SETPGRP_VOID)
|
2000-06-19 12:38:11 +04:00
|
|
|
ret = setpgrp();
|
|
|
|
/* If `pid_t setpgrp(void)' is equivalent to setsid(),
|
|
|
|
`ret' will be the same value as `pid', and following open() will fail.
|
|
|
|
In Linux, `int setpgrp(void)' is equivalent to setpgid(0, 0). */
|
2000-06-13 13:42:40 +04:00
|
|
|
#else
|
2000-06-19 12:38:11 +04:00
|
|
|
ret = setpgrp(0, pid);
|
2000-06-13 13:42:40 +04:00
|
|
|
#endif
|
2000-06-19 12:38:11 +04:00
|
|
|
if (ret == -1) rb_sys_fail(0);
|
2000-06-13 13:42:40 +04:00
|
|
|
|
|
|
|
if ((fd = open("/dev/tty", O_RDWR)) >= 0) {
|
|
|
|
ioctl(fd, TIOCNOTTY, NULL);
|
|
|
|
close(fd);
|
|
|
|
}
|
2000-06-19 12:38:11 +04:00
|
|
|
return INT2FIX(pid);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getpriority(obj, which, who)
|
|
|
|
VALUE obj, which, who;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_GETPRIORITY
|
|
|
|
int prio, iwhich, iwho;
|
|
|
|
|
|
|
|
iwhich = NUM2INT(which);
|
|
|
|
iwho = NUM2INT(who);
|
|
|
|
|
2000-07-21 12:45:34 +04:00
|
|
|
errno = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
prio = getpriority(iwhich, iwho);
|
2000-07-21 12:45:34 +04:00
|
|
|
if (errno) rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(prio);
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setpriority(obj, which, who, prio)
|
|
|
|
VALUE obj, which, who, prio;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_GETPRIORITY
|
|
|
|
int iwhich, iwho, iprio;
|
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
iwhich = NUM2INT(which);
|
|
|
|
iwho = NUM2INT(who);
|
|
|
|
iprio = NUM2INT(prio);
|
|
|
|
|
|
|
|
if (setpriority(iwhich, iwho, iprio) < 0)
|
|
|
|
rb_sys_fail(0);
|
|
|
|
return INT2FIX(0);
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getuid(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
int uid = getuid();
|
|
|
|
return INT2FIX(uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setuid(obj, id)
|
|
|
|
VALUE obj, id;
|
|
|
|
{
|
2002-08-21 19:47:54 +04:00
|
|
|
int uid = NUM2INT(id);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-01-29 08:10:42 +03:00
|
|
|
#if defined(HAVE_SETRESUID) && !defined(__CHECKER__)
|
2001-09-08 18:17:53 +04:00
|
|
|
if (setresuid(uid, -1, -1) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETREUID
|
2001-09-08 18:17:53 +04:00
|
|
|
if (setreuid(uid, -1) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETRUID
|
2001-09-08 18:17:53 +04:00
|
|
|
if (setruid(uid) < 0) rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
{
|
2001-09-08 18:17:53 +04:00
|
|
|
if (geteuid() == uid) {
|
|
|
|
if (setuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_notimplement();
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return INT2FIX(uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getgid(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
int gid = getgid();
|
|
|
|
return INT2FIX(gid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setgid(obj, id)
|
|
|
|
VALUE obj, id;
|
|
|
|
{
|
2002-08-21 19:47:54 +04:00
|
|
|
int gid = NUM2INT(id);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-01-29 08:10:42 +03:00
|
|
|
#if defined(HAVE_SETRESGID) && !defined(__CHECKER__)
|
2001-09-08 18:17:53 +04:00
|
|
|
if (setresgid(gid, -1, -1) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETREGID
|
2001-09-08 18:17:53 +04:00
|
|
|
if (setregid(gid, -1) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAS_SETRGID
|
2001-09-08 18:17:53 +04:00
|
|
|
if (setrgid((GIDTYPE)gid) < 0) rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
{
|
2001-09-08 18:17:53 +04:00
|
|
|
if (getegid() == gid) {
|
|
|
|
if (setgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_notimplement();
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return INT2FIX(gid);
|
|
|
|
}
|
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
static size_t maxgroups = 32;
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getgroups(VALUE obj)
|
|
|
|
{
|
2003-06-09 08:27:17 +04:00
|
|
|
#ifdef HAVE_GETGROUPS
|
2003-06-07 19:34:31 +04:00
|
|
|
VALUE ary;
|
2003-07-15 11:35:14 +04:00
|
|
|
size_t ngroups;
|
2003-06-07 19:34:31 +04:00
|
|
|
gid_t *groups;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
groups = ALLOCA_N(gid_t, maxgroups);
|
|
|
|
|
2003-07-15 11:35:14 +04:00
|
|
|
ngroups = getgroups(maxgroups, groups);
|
2003-06-07 19:34:31 +04:00
|
|
|
if (ngroups == -1)
|
|
|
|
rb_sys_fail(0);
|
|
|
|
|
|
|
|
ary = rb_ary_new();
|
|
|
|
for (i = 0; i < ngroups; i++)
|
|
|
|
rb_ary_push(ary, INT2NUM(groups[i]));
|
|
|
|
|
|
|
|
return ary;
|
2003-06-09 08:27:17 +04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
return Qnil;
|
|
|
|
#endif
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setgroups(VALUE obj, VALUE ary)
|
|
|
|
{
|
2003-06-09 14:02:36 +04:00
|
|
|
#ifdef HAVE_SETGROUPS
|
2003-06-07 19:34:31 +04:00
|
|
|
size_t ngroups;
|
|
|
|
gid_t *groups;
|
|
|
|
int i;
|
|
|
|
struct group *gr;
|
|
|
|
|
|
|
|
Check_Type(ary, T_ARRAY);
|
|
|
|
|
|
|
|
ngroups = RARRAY(ary)->len;
|
|
|
|
if (ngroups > maxgroups)
|
|
|
|
rb_raise(rb_eArgError, "too many groups, %d max", maxgroups);
|
|
|
|
|
|
|
|
groups = ALLOCA_N(gid_t, ngroups);
|
|
|
|
|
|
|
|
for (i = 0; i < ngroups; i++) {
|
|
|
|
VALUE g = RARRAY(ary)->ptr[i];
|
|
|
|
|
|
|
|
if (FIXNUM_P(g)) {
|
|
|
|
groups[i] = FIX2INT(g);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE tmp = rb_check_string_type(g);
|
|
|
|
|
|
|
|
if (NIL_P(tmp)) {
|
|
|
|
groups[i] = NUM2INT(g);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gr = getgrnam(RSTRING(g)->ptr);
|
2003-06-10 09:22:17 +04:00
|
|
|
if (gr == NULL)
|
|
|
|
rb_raise(rb_eArgError, "can't find group for %s", RSTRING(g)->ptr);
|
|
|
|
groups[i] = gr->gr_gid;
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i = setgroups(ngroups, groups);
|
|
|
|
if (i == -1)
|
|
|
|
rb_sys_fail(0);
|
|
|
|
|
|
|
|
return proc_getgroups(obj);
|
2003-06-09 08:27:17 +04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
return Qnil;
|
|
|
|
#endif
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getmaxgroups(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
return INT2FIX(maxgroups);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setmaxgroups(obj, val)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
2003-07-15 11:35:14 +04:00
|
|
|
size_t ngroups = FIX2INT(val);
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
if (ngroups > 4096)
|
|
|
|
ngroups = 4096;
|
|
|
|
|
|
|
|
maxgroups = ngroups;
|
|
|
|
|
|
|
|
return INT2FIX(maxgroups);
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
|
|
|
proc_geteuid(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
int euid = geteuid();
|
|
|
|
return INT2FIX(euid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_seteuid(obj, euid)
|
|
|
|
VALUE obj, euid;
|
|
|
|
{
|
2001-01-29 08:10:42 +03:00
|
|
|
#if defined(HAVE_SETRESUID) && !defined(__CHECKER__)
|
2001-01-10 10:30:18 +03:00
|
|
|
if (setresuid(-1, NUM2INT(euid), -1) < 0) rb_sys_fail(0);
|
|
|
|
#elif defined HAVE_SETREUID
|
1998-01-16 15:13:05 +03:00
|
|
|
if (setreuid(-1, NUM2INT(euid)) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETEUID
|
|
|
|
if (seteuid(NUM2INT(euid)) < 0) rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
euid = NUM2INT(euid);
|
2001-09-08 18:17:53 +04:00
|
|
|
if (euid == getuid()) {
|
|
|
|
if (setuid(euid) < 0) rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_notimplement();
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
return euid;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getegid(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
int egid = getegid();
|
2002-08-21 19:47:54 +04:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(egid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setegid(obj, egid)
|
|
|
|
VALUE obj, egid;
|
|
|
|
{
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
2001-01-29 08:10:42 +03:00
|
|
|
#if defined(HAVE_SETRESGID) && !defined(__CHECKER__)
|
2001-01-10 10:30:18 +03:00
|
|
|
if (setresgid(-1, NUM2INT(egid), -1) < 0) rb_sys_fail(0);
|
|
|
|
#elif defined HAVE_SETREGID
|
1998-01-16 15:13:05 +03:00
|
|
|
if (setregid(-1, NUM2INT(egid)) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETEGID
|
|
|
|
if (setegid(NUM2INT(egid)) < 0) rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
egid = NUM2INT(egid);
|
2001-09-08 18:17:53 +04:00
|
|
|
if (egid == getgid()) {
|
|
|
|
if (setgid(egid) < 0) rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_notimplement();
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
return egid;
|
|
|
|
}
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
VALUE
|
|
|
|
rb_proc_times(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
#if defined(HAVE_TIMES) && !defined(__CHECKER__)
|
|
|
|
#ifndef HZ
|
|
|
|
# ifdef CLK_TCK
|
|
|
|
# define HZ CLK_TCK
|
|
|
|
# else
|
|
|
|
# define HZ 60
|
|
|
|
# endif
|
|
|
|
#endif /* HZ */
|
|
|
|
struct tms buf;
|
2003-01-03 16:26:48 +03:00
|
|
|
volatile VALUE utime, stime, cutime, sctime;
|
2001-02-16 10:53:21 +03:00
|
|
|
|
2001-05-21 08:22:54 +04:00
|
|
|
times(&buf);
|
2001-02-16 10:53:21 +03:00
|
|
|
return rb_struct_new(S_Tms,
|
2003-01-03 16:26:48 +03:00
|
|
|
utime = rb_float_new((double)buf.tms_utime / HZ),
|
|
|
|
stime = rb_float_new((double)buf.tms_stime / HZ),
|
|
|
|
cutime = rb_float_new((double)buf.tms_cutime / HZ),
|
|
|
|
sctime = rb_float_new((double)buf.tms_cstime / HZ));
|
2001-02-16 10:53:21 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mProcess;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
Init_process()
|
|
|
|
{
|
|
|
|
rb_define_virtual_variable("$$", get_pid, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_readonly_variable("$?", &rb_last_status);
|
|
|
|
rb_define_global_function("exec", rb_f_exec, -1);
|
|
|
|
rb_define_global_function("fork", rb_f_fork, 0);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_define_global_function("exit!", rb_f_exit_bang, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_global_function("system", rb_f_system, -1);
|
|
|
|
rb_define_global_function("sleep", rb_f_sleep, -1);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_mProcess = rb_define_module("Process");
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-15 06:18:08 +03:00
|
|
|
#if !defined(_WIN32) && !defined(DJGPP)
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef WNOHANG
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_const(rb_mProcess, "WNOHANG", INT2FIX(WNOHANG));
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_const(rb_mProcess, "WNOHANG", INT2FIX(0));
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
#ifdef WUNTRACED
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_const(rb_mProcess, "WUNTRACED", INT2FIX(WUNTRACED));
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_const(rb_mProcess, "WUNTRACED", INT2FIX(0));
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_singleton_method(rb_mProcess, "fork", rb_f_fork, 0);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_define_singleton_method(rb_mProcess, "exit!", rb_f_exit_bang, -1);
|
2002-12-10 09:23:44 +03:00
|
|
|
rb_define_singleton_method(rb_mProcess, "exit", rb_f_exit, -1);
|
|
|
|
rb_define_singleton_method(rb_mProcess, "abort", rb_f_abort, -1);
|
2001-10-09 13:42:47 +04:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "kill", rb_f_kill, -1);
|
2001-08-06 07:05:23 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "wait", proc_wait, -1);
|
|
|
|
rb_define_module_function(rb_mProcess, "wait2", proc_wait2, -1);
|
|
|
|
rb_define_module_function(rb_mProcess, "waitpid", proc_wait, -1);
|
|
|
|
rb_define_module_function(rb_mProcess, "waitpid2", proc_wait2, -1);
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "waitall", proc_waitall, 0);
|
2003-03-07 08:59:42 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "detach", proc_detach, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_cProcStatus = rb_define_class_under(rb_mProcess, "Status", rb_cObject);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cProcStatus), "new");
|
|
|
|
|
|
|
|
rb_define_method(rb_cProcStatus, "==", pst_equal, 1);
|
|
|
|
rb_define_method(rb_cProcStatus, "&", pst_bitand, 1);
|
2001-02-16 10:53:21 +03:00
|
|
|
rb_define_method(rb_cProcStatus, ">>", pst_rshift, 1);
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_define_method(rb_cProcStatus, "to_i", pst_to_i, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "to_int", pst_to_i, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "to_s", pst_to_s, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "inspect", pst_to_s, 0);
|
|
|
|
|
2002-12-10 09:23:44 +03:00
|
|
|
rb_define_method(rb_cProcStatus, "pid", pst_pid, 0);
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
rb_define_method(rb_cProcStatus, "stopped?", pst_wifstopped, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "stopsig", pst_wstopsig, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "signaled?", pst_wifsignaled, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "termsig", pst_wtermsig, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "exited?", pst_wifexited, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "exitstatus", pst_wexitstatus, 0);
|
|
|
|
rb_define_method(rb_cProcStatus, "coredump?", pst_wcoredump, 0);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "pid", get_pid, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "ppid", get_ppid, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-08-06 07:05:23 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "getpgrp", proc_getpgrp, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "setpgrp", proc_setpgrp, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "getpgid", proc_getpgid, 1);
|
|
|
|
rb_define_module_function(rb_mProcess, "setpgid", proc_setpgid, 2);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "setsid", proc_setsid, 0);
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcess, "getpriority", proc_getpriority, 2);
|
|
|
|
rb_define_module_function(rb_mProcess, "setpriority", proc_setpriority, 3);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifdef HAVE_GETPRIORITY
|
|
|
|
rb_define_const(rb_mProcess, "PRIO_PROCESS", INT2FIX(PRIO_PROCESS));
|
|
|
|
rb_define_const(rb_mProcess, "PRIO_PGRP", INT2FIX(PRIO_PGRP));
|
|
|
|
rb_define_const(rb_mProcess, "PRIO_USER", INT2FIX(PRIO_USER));
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "uid", proc_getuid, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "uid=", proc_setuid, 1);
|
|
|
|
rb_define_module_function(rb_mProcess, "gid", proc_getgid, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "gid=", proc_setgid, 1);
|
|
|
|
rb_define_module_function(rb_mProcess, "euid", proc_geteuid, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "euid=", proc_seteuid, 1);
|
|
|
|
rb_define_module_function(rb_mProcess, "egid", proc_getegid, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "egid=", proc_setegid, 1);
|
2003-06-07 19:34:31 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "groups", proc_getgroups, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "groups=", proc_setgroups, 1);
|
|
|
|
rb_define_module_function(rb_mProcess, "maxgroups", proc_getmaxgroups, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "maxgroups=", proc_setmaxgroups, 1);
|
2001-02-16 10:53:21 +03:00
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcess, "times", rb_proc_times, 0);
|
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-15 06:18:08 +03:00
|
|
|
#if defined(HAVE_TIMES) || defined(_WIN32)
|
2001-02-16 10:53:21 +03:00
|
|
|
S_Tms = rb_struct_define("Tms", "utime", "stime", "cutime", "cstime", 0);
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|