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
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
Copyright (C) 1993-2000 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
|
|
|
|
#ifndef NT
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#else
|
|
|
|
struct timeval {
|
|
|
|
long tv_sec; /* seconds */
|
|
|
|
long tv_usec; /* and microseconds */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif /* NT */
|
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
|
|
|
|
#ifdef HAVE_VFORK_H
|
|
|
|
#include <vfork.h>
|
|
|
|
#endif
|
|
|
|
#include "st.h"
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef __EMX__
|
|
|
|
#undef HAVE_GETPGRP
|
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
|
|
|
get_pid()
|
|
|
|
{
|
|
|
|
return INT2FIX(getpid());
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
get_ppid()
|
|
|
|
{
|
|
|
|
#ifdef NT
|
|
|
|
return INT2FIX(0);
|
|
|
|
#else
|
|
|
|
return INT2FIX(getppid());
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_last_status = Qnil;
|
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
|
|
|
|
|
|
|
|
static int
|
|
|
|
rb_waitpid(pid, flags, st)
|
|
|
|
int pid;
|
|
|
|
int flags;
|
|
|
|
int *st;
|
|
|
|
{
|
|
|
|
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:
|
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
|
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)) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(*st);
|
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 (;;) {
|
|
|
|
result = wait(st);
|
|
|
|
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
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(*st);
|
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
|
|
|
|
wait_each(key, value, data)
|
|
|
|
int key, value;
|
|
|
|
struct wait_data *data;
|
|
|
|
{
|
|
|
|
if (data->status != -1) return ST_STOP;
|
|
|
|
|
|
|
|
data->pid = key;
|
|
|
|
data->status = value;
|
|
|
|
return ST_DELETE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static VALUE
|
2000-02-17 10:11:22 +03:00
|
|
|
proc_wait()
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int pid, state;
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifdef NO_WAITPID
|
1998-01-16 15:13:05 +03:00
|
|
|
struct wait_data data;
|
|
|
|
|
|
|
|
data.status = -1;
|
|
|
|
st_foreach(pid_tbl, wait_each, &data);
|
|
|
|
if (data.status != -1) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = data.status;
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(data.pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((pid = wait(&state)) < 0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
if (errno == EINTR) {
|
|
|
|
rb_thread_schedule();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(state);
|
|
|
|
#else
|
|
|
|
if ((pid = rb_waitpid(-1, 0, &state)) < 0)
|
|
|
|
rb_sys_fail(0);
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2000-02-17 10:11:22 +03:00
|
|
|
proc_waitpid(obj, vpid, vflags)
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE obj, vpid, vflags;
|
|
|
|
{
|
|
|
|
int pid, flags, status;
|
|
|
|
|
|
|
|
if (NIL_P(vflags)) flags = 0;
|
2000-02-17 10:11:22 +03:00
|
|
|
else flags = NUM2UINT(vflags);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-02-17 10:11:22 +03:00
|
|
|
if ((pid = rb_waitpid(NUM2INT(vpid), flags, &status)) < 0)
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_sys_fail(0);
|
2000-02-17 10:11:22 +03:00
|
|
|
if (pid == 0) return Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
return INT2FIX(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *strtok();
|
|
|
|
|
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;
|
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
if (rb_safe_level() > 0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_env_path_tainted()) {
|
|
|
|
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
|
|
|
{
|
|
|
|
if (prog) {
|
|
|
|
security(prog);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
security(argv[0]);
|
|
|
|
prog = dln_find_exe(argv[0], 0);
|
|
|
|
if (!prog) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
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 */;
|
|
|
|
new_argv = ALLOCA_N(char *, n + 2);
|
|
|
|
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();
|
|
|
|
execv(prog, argv);
|
|
|
|
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++) {
|
|
|
|
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;
|
|
|
|
|
|
|
|
security(str);
|
|
|
|
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)
|
|
|
|
int state;
|
|
|
|
before_exec();
|
|
|
|
state = system(str);
|
|
|
|
after_exec();
|
|
|
|
if (state != -1)
|
|
|
|
exit(state);
|
|
|
|
#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);
|
|
|
|
int state = -1;
|
|
|
|
before_exec();
|
|
|
|
if (shell)
|
|
|
|
execl(shell, "sh", "-c", str, (char *) NULL);
|
|
|
|
else
|
|
|
|
state = system(str);
|
|
|
|
after_exec();
|
|
|
|
if (state != -1)
|
|
|
|
exit(state);
|
|
|
|
#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;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__human68k__)
|
|
|
|
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;
|
|
|
|
int state;
|
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
if (prog) {
|
|
|
|
security(prog);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
security(argv[0]);
|
|
|
|
prog = dln_find_exe(argv[0], 0);
|
|
|
|
if (!prog)
|
|
|
|
return -1;
|
|
|
|
}
|
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 */;
|
|
|
|
new_argv = ALLOCA_N(char *, n + 2);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
before_exec();
|
|
|
|
state = spawnv(P_WAIT, prog, argv);
|
|
|
|
after_exec();
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
args = ALLOCA_N(char *, argc + 1);
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
Check_SafeStr(argv[i]);
|
|
|
|
args[i] = RSTRING(argv[i])->ptr;
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
Check_SafeStr(prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
args[i] = (char *) 0;
|
|
|
|
if (args[0])
|
1998-01-16 15:19:22 +03:00
|
|
|
return proc_spawn_v(args, RSTRING(prog)->ptr);
|
1998-01-16 15:13:05 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
int state;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
Check_SafeStr(sv);
|
|
|
|
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();
|
1999-08-13 09:45:20 +04:00
|
|
|
state = shell?spawnl(P_WAIT,shell,"sh","-c",str,(char*)NULL):system(str);
|
1998-01-16 15:13:05 +03:00
|
|
|
after_exec();
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a = argv = ALLOCA_N(char *, (s - str) / 2 + 2);
|
|
|
|
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
|
|
|
}
|
|
|
|
#endif /* __human68k__ */
|
|
|
|
|
|
|
|
static 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;
|
1999-01-20 07:59:39 +03:00
|
|
|
int i;
|
1998-01-16 15:19:22 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (argc == 0) {
|
|
|
|
rb_raise(rb_eArgError, "wrong # of arguments");
|
|
|
|
}
|
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];
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
if (prog) {
|
|
|
|
Check_SafeStr(prog);
|
|
|
|
}
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
Check_SafeStr(argv[i]);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
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;
|
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
#if !defined(__human68k__) && !defined(NT) && !defined(__MACOS__) && !defined(__EMX__)
|
1998-01-16 15:13:05 +03:00
|
|
|
int pid;
|
|
|
|
|
|
|
|
rb_secure(2);
|
|
|
|
switch (pid = fork()) {
|
|
|
|
case 0:
|
|
|
|
#ifdef linux
|
|
|
|
after_exec();
|
|
|
|
#endif
|
2000-05-24 08:34:26 +04:00
|
|
|
if (rb_block_given_p()) {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_yield(Qnil);
|
|
|
|
_exit(0);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
{
|
|
|
|
RETSIGTYPE (*hfunc)(), (*qfunc)(), (*ifunc)();
|
|
|
|
int status;
|
1999-01-20 07:59:39 +03:00
|
|
|
int i;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#ifdef SIGHUP
|
|
|
|
hfunc = signal(SIGHUP, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
#ifdef SIGQUIT
|
|
|
|
qfunc = signal(SIGQUIT, SIG_IGN);
|
|
|
|
#endif
|
|
|
|
ifunc = signal(SIGINT, SIG_IGN);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
do {
|
|
|
|
i = rb_waitpid(pid, 0, &status);
|
|
|
|
} while (i == -1 && errno == EINTR);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
#ifdef SIGHUP
|
|
|
|
signal(SIGHUP, hfunc);
|
|
|
|
#endif
|
|
|
|
#ifdef SIGQUIT
|
|
|
|
signal(SIGQUIT, qfunc);
|
|
|
|
#endif
|
|
|
|
signal(SIGINT, ifunc);
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
#if defined(NT) || defined(__EMX__)
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE cmd;
|
|
|
|
int state;
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
if (argc == 0) {
|
|
|
|
rb_last_status = INT2FIX(0);
|
|
|
|
rb_raise(rb_eArgError, "wrong # of arguments");
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
Check_SafeStr(cmd);
|
|
|
|
state = do_spawn(RSTRING(cmd)->ptr);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(state);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (state == 0) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef DJGPP
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE cmd;
|
|
|
|
int state;
|
|
|
|
|
1999-11-25 12:03:08 +03:00
|
|
|
if (argc == 0) {
|
|
|
|
rb_last_status = INT2FIX(0);
|
|
|
|
rb_raise(rb_eArgError, "wrong # of arguments");
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
Check_SafeStr(cmd);
|
|
|
|
state = system(RSTRING(cmd)->ptr);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(state);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (state == 0) return Qtrue;
|
|
|
|
return Qfalse;
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
#if defined(__human68k__)
|
1998-01-16 15:19:22 +03:00
|
|
|
VALUE prog = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
int i;
|
|
|
|
int state;
|
|
|
|
|
|
|
|
fflush(stdin);
|
|
|
|
fflush(stdout);
|
|
|
|
fflush(stderr);
|
|
|
|
if (argc == 0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(0);
|
1999-10-29 13:25:48 +04:00
|
|
|
rb_raise(rb_eArgError, "wrong # 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) {
|
1999-01-20 07:59:39 +03:00
|
|
|
state = proc_spawn(argv[0]);
|
1998-01-16 15:19:22 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
state = proc_spawn_n(argc, argv, prog);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = state == -1 ? INT2FIX(127) : INT2FIX(state);
|
1999-08-13 09:45:20 +04:00
|
|
|
return state == 0 ? Qtrue : 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) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_last_status = INT2FIX(0);
|
1999-10-29 13:25:48 +04:00
|
|
|
rb_raise(rb_eArgError, "wrong # 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) {
|
|
|
|
Check_SafeStr(prog);
|
|
|
|
}
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
Check_SafeStr(argv[i]);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
retry:
|
|
|
|
switch (pid = vfork()) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
if (rb_last_status == INT2FIX(0)) return Qtrue;
|
|
|
|
return Qfalse;
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif /* __human68k__ */
|
|
|
|
#endif /* DJGPP */
|
|
|
|
#endif /* NT */
|
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 {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong # of arguments");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
end = time(0) - beg;
|
|
|
|
|
|
|
|
return INT2FIX(end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getpgrp(argc, argv)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef HAVE_GETPGRP
|
1998-01-16 15:13:05 +03:00
|
|
|
int pgrp;
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifndef GETPGRP_VOID
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE vpid;
|
|
|
|
int pid;
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "01", &vpid);
|
1999-01-20 07:59:39 +03:00
|
|
|
pid = NIL_P(vpid)?0:NUM2INT(vpid);
|
1999-08-13 09:45:20 +04:00
|
|
|
pgrp = getpgrp(pid);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
rb_scan_args(argc, argv, "0");
|
|
|
|
pgrp = getpgrp();
|
|
|
|
#endif
|
|
|
|
if (pgrp < 0) rb_sys_fail(0);
|
|
|
|
return INT2FIX(pgrp);
|
1999-08-13 09:45:20 +04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setpgrp(argc, argv)
|
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifdef HAVE_SETPGRP
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifndef SETPGRP_VOID
|
1998-01-16 15:13:05 +03:00
|
|
|
VALUE pid, pgrp;
|
|
|
|
int ipid, ipgrp;
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "02", &pid, &pgrp);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
ipid = NIL_P(pid)?0:NUM2INT(pid);
|
|
|
|
ipgrp = NIL_P(pgrp)?0:NUM2INT(pgrp);
|
1999-08-13 09:45:20 +04:00
|
|
|
if (setpgrp(ipid, ipgrp) < 0) rb_sys_fail(0);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
rb_scan_args(argc, argv, "0");
|
|
|
|
if (setpgrp() < 0) rb_sys_fail(0);
|
|
|
|
#endif
|
2000-03-13 10:18:45 +03:00
|
|
|
return INT2FIX(0);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getpgid(obj, pid)
|
|
|
|
VALUE obj, pid;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_GETPGID
|
|
|
|
int i;
|
|
|
|
|
|
|
|
i = getpgid(NUM2INT(pid));
|
|
|
|
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)
|
|
|
|
pid_t sid;
|
|
|
|
|
|
|
|
#if defined(SETPGRP_VOID)
|
|
|
|
sid = setpgrp();
|
|
|
|
#else
|
|
|
|
sid = setpgrp(0, getpid());
|
|
|
|
#endif
|
|
|
|
if (sid == -1) return -1;
|
|
|
|
|
|
|
|
if ((fd = open("/dev/tty", O_RDWR)) >= 0) {
|
|
|
|
ioctl(fd, TIOCNOTTY, NULL);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
return sid;
|
|
|
|
}
|
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);
|
|
|
|
|
|
|
|
prio = getpriority(iwhich, iwho);
|
|
|
|
if (prio < 0) rb_sys_fail(0);
|
|
|
|
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;
|
|
|
|
{
|
|
|
|
int uid;
|
|
|
|
|
|
|
|
uid = NUM2INT(id);
|
|
|
|
#ifdef HAVE_SETREUID
|
|
|
|
setreuid(uid, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
|
|
|
#ifdef HAVE_SETRUID
|
|
|
|
setruid(uid);
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
if (geteuid() == uid)
|
|
|
|
setuid(uid);
|
|
|
|
else
|
|
|
|
rb_notimplement();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#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;
|
|
|
|
{
|
|
|
|
int gid;
|
|
|
|
|
|
|
|
gid = NUM2INT(id);
|
|
|
|
#ifdef HAS_SETRGID
|
|
|
|
setrgid((GIDTYPE)gid);
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SETREGID
|
|
|
|
setregid(gid, -1);
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
if (getegid() == gid)
|
|
|
|
setgid(gid);
|
|
|
|
else
|
|
|
|
rb_notimplement();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
return INT2FIX(gid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_geteuid(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
int euid = geteuid();
|
|
|
|
return INT2FIX(euid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_seteuid(obj, euid)
|
|
|
|
VALUE obj, euid;
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SETEUID
|
|
|
|
if (seteuid(NUM2INT(euid)) < 0) rb_sys_fail(0);
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SETREUID
|
|
|
|
if (setreuid(-1, NUM2INT(euid)) < 0) rb_sys_fail(0);
|
|
|
|
#else
|
|
|
|
euid = NUM2INT(euid);
|
|
|
|
if (euid == getuid())
|
|
|
|
setuid(euid);
|
|
|
|
else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
return euid;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getegid(obj)
|
|
|
|
VALUE obj;
|
|
|
|
{
|
|
|
|
int egid = getegid();
|
|
|
|
return INT2FIX(egid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_setegid(obj, egid)
|
|
|
|
VALUE obj, egid;
|
|
|
|
{
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_SETEGID
|
|
|
|
if (setegid(NUM2INT(egid)) < 0) rb_sys_fail(0);
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SETREGID
|
|
|
|
if (setregid(-1, NUM2INT(egid)) < 0) rb_sys_fail(0);
|
|
|
|
#else
|
|
|
|
egid = NUM2INT(egid);
|
|
|
|
if (egid == getgid())
|
|
|
|
setgid(egid);
|
|
|
|
else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
return egid;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
#if !defined(NT) && !defined(DJGPP)
|
|
|
|
#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);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "kill", rb_f_kill, -1);
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifndef NT
|
2000-02-17 10:11:22 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "wait", proc_wait, 0);
|
|
|
|
rb_define_module_function(rb_mProcess, "waitpid", proc_waitpid, 2);
|
1998-01-16 15:13:05 +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);
|
|
|
|
#endif /* ifndef NT */
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "getpgrp", proc_getpgrp, -1);
|
|
|
|
rb_define_module_function(rb_mProcess, "setpgrp", proc_setpgrp, -1);
|
|
|
|
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);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|