2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
process.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Tue Aug 10 14:30:50 JST 1993
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 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
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
2008-04-24 18:46:39 +04:00
|
|
|
#include "ruby/io.h"
|
|
|
|
#include "ruby/util.h"
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
#include "vm_core.h"
|
2007-02-05 15:21:01 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
2003-10-13 17:05:24 +04:00
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2004-02-16 09:45:32 +03:00
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.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
|
|
|
|
2003-11-27 18:34:53 +03:00
|
|
|
#ifndef EXIT_SUCCESS
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
#endif
|
2003-10-13 17:05:24 +04:00
|
|
|
#ifndef EXIT_FAILURE
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#endif
|
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +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
|
2004-11-14 13:06:16 +03:00
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
1998-01-16 15:13:05 +03:00
|
|
|
# include <sys/resource.h>
|
|
|
|
#endif
|
2008-05-08 01:43:54 +04:00
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
# define MAXPATHLEN 1024
|
|
|
|
#endif
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/st.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#ifdef __EMX__
|
|
|
|
#undef HAVE_GETPGRP
|
|
|
|
#endif
|
|
|
|
|
2008-04-24 19:16:38 +04:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
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)
|
2008-04-26 12:31:13 +04:00
|
|
|
static VALUE rb_cProcessTms;
|
2001-02-16 10:53:21 +03:00
|
|
|
#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
|
|
|
|
|
2003-08-03 06:55:52 +04:00
|
|
|
#if defined(__APPLE__) && ( defined(__MACH__) || defined(__DARWIN__) ) && !defined(__MacOS_X__)
|
2003-07-23 06:39:46 +04:00
|
|
|
#define __MacOS_X__ 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__)
|
|
|
|
#define HAVE_44BSD_SETUID 1
|
|
|
|
#define HAVE_44BSD_SETGID 1
|
|
|
|
#endif
|
|
|
|
|
2004-10-31 17:37:08 +03:00
|
|
|
#ifdef __NetBSD__
|
|
|
|
#undef HAVE_SETRUID
|
|
|
|
#undef HAVE_SETRGID
|
|
|
|
#endif
|
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
#ifdef BROKEN_SETREUID
|
|
|
|
#define setreuid ruby_setreuid
|
|
|
|
#endif
|
|
|
|
#ifdef BROKEN_SETREGID
|
|
|
|
#define setregid ruby_setregid
|
|
|
|
#endif
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
#if defined(HAVE_44BSD_SETUID) || defined(__MacOS_X__)
|
|
|
|
#if !defined(USE_SETREUID) && !defined(BROKEN_SETREUID)
|
|
|
|
#define OBSOLETE_SETREUID 1
|
|
|
|
#endif
|
|
|
|
#if !defined(USE_SETREGID) && !defined(BROKEN_SETREGID)
|
|
|
|
#define OBSOLETE_SETREGID 1
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2004-03-29 15:17:21 +04:00
|
|
|
#define preserving_errno(stmts) \
|
|
|
|
do {int saved_errno = errno; stmts; errno = saved_errno;} while (0)
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2010-09-03 01:40:55 +04:00
|
|
|
ssize_t rb_io_bufwrite(VALUE io, const void *buf, size_t size);
|
|
|
|
ssize_t rb_io_bufread(VALUE io, void *buf, size_t size);
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.pid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the process id of this process. Not available on all
|
|
|
|
* platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.pid #=> 27415
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
get_pid(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(getpid());
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.ppid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2008-09-08 13:17:22 +04:00
|
|
|
* Returns the process id of the parent of this process. Returns
|
|
|
|
* untrustworthy value on Win32/64. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* puts "I am #{Process.pid}"
|
|
|
|
* Process.fork { puts "Dad is #{Process.ppid}" }
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* <em>produces:</em>
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* I am 27417
|
|
|
|
* Dad is 27417
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
get_ppid(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-09-20 12:28:03 +04:00
|
|
|
rb_secure(2);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(getppid());
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
*
|
|
|
|
* Document-class: Process::Status
|
|
|
|
*
|
|
|
|
* <code>Process::Status</code> encapsulates the information on the
|
|
|
|
* status of a running or terminated system process. The built-in
|
|
|
|
* variable <code>$?</code> is either +nil+ or a
|
|
|
|
* <code>Process::Status</code> object.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { exit 99 } #=> 26557
|
|
|
|
* Process.wait #=> 26557
|
|
|
|
* $?.class #=> Process::Status
|
|
|
|
* $?.to_i #=> 25344
|
|
|
|
* $? >> 8 #=> 99
|
|
|
|
* $?.stopped? #=> false
|
|
|
|
* $?.exited? #=> true
|
|
|
|
* $?.exitstatus #=> 99
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Posix systems record information on processes using a 16-bit
|
|
|
|
* integer. The lower bits record the process status (stopped,
|
|
|
|
* exited, signaled) and the upper bits possibly contain additional
|
|
|
|
* information (for example the program's return code in the case of
|
|
|
|
* exited processes). Pre Ruby 1.8, these bits were exposed directly
|
|
|
|
* to the Ruby program. Ruby now encapsulates these in a
|
|
|
|
* <code>Process::Status</code> object. To maximize compatibility,
|
|
|
|
* however, these objects retain a bit-oriented interface. In the
|
|
|
|
* descriptions that follow, when we talk about the integer value of
|
|
|
|
* _stat_, we're referring to this 16 bit value.
|
|
|
|
*/
|
|
|
|
|
2008-04-26 12:31:13 +04:00
|
|
|
static VALUE rb_cProcessStatus;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-02-08 09:48:34 +03:00
|
|
|
VALUE
|
|
|
|
rb_last_status_get(void)
|
|
|
|
{
|
2008-07-10 07:10:00 +04:00
|
|
|
return GET_THREAD()->last_status;
|
2007-02-08 09:48:34 +03:00
|
|
|
}
|
|
|
|
|
2007-02-05 19:22:38 +03:00
|
|
|
void
|
|
|
|
rb_last_status_set(int status, rb_pid_t pid)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-07-10 07:10:00 +04:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
|
|
|
th->last_status = rb_obj_alloc(rb_cProcessStatus);
|
|
|
|
rb_iv_set(th->last_status, "status", INT2FIX(status));
|
|
|
|
rb_iv_set(th->last_status, "pid", PIDT2NUM(pid));
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
2007-02-08 09:48:34 +03:00
|
|
|
static void
|
|
|
|
rb_last_status_clear(void)
|
2007-02-05 15:21:01 +03:00
|
|
|
{
|
2008-07-10 07:10:00 +04:00
|
|
|
GET_THREAD()->last_status = Qnil;
|
2007-02-05 15:21:01 +03:00
|
|
|
}
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.to_i -> fixnum
|
|
|
|
* stat.to_int -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the bits in _stat_ as a <code>Fixnum</code>. Poking
|
|
|
|
* around in these bits is platform dependent.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { exit 0xab } #=> 26566
|
|
|
|
* Process.wait #=> 26566
|
|
|
|
* sprintf('%04x', $?.to_i) #=> "ab00"
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_to_i(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
|
|
|
return rb_iv_get(st, "status");
|
|
|
|
}
|
|
|
|
|
2008-06-20 18:00:35 +04:00
|
|
|
#define PST2INT(st) NUM2INT(pst_to_i(st))
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.pid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the process ID that this status object represents.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { exit } #=> 26569
|
|
|
|
* Process.wait #=> 26569
|
|
|
|
* $?.pid #=> 26569
|
|
|
|
*/
|
|
|
|
|
2002-12-10 09:23:44 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_pid(VALUE st)
|
2002-12-10 09:23:44 +03:00
|
|
|
{
|
2008-08-21 14:18:38 +04:00
|
|
|
return rb_attr_get(st, rb_intern("pid"));
|
2002-12-10 09:23:44 +03:00
|
|
|
}
|
|
|
|
|
2007-10-15 05:31:11 +04:00
|
|
|
static void
|
|
|
|
pst_message(VALUE str, rb_pid_t pid, int status)
|
2003-09-29 06:44:49 +04:00
|
|
|
{
|
* compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),
iseq.c (ruby_iseq_disasm_insn, ruby_iseq_disasm),
process.c (pst_message), re.c (match_inspect): use rb_str_catf.
* dir.c (dir_inspect), iseq.c (iseq_inspect, insn_operand_intern): use
rb_sprintf.
* error.c (rb_name_error, rb_raise, rb_loaderror, rb_fatal): use
rb_vsprintf.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-22 12:53:34 +04:00
|
|
|
rb_str_catf(str, "pid %ld", (long)pid);
|
2003-09-29 06:44:49 +04:00
|
|
|
if (WIFSTOPPED(status)) {
|
2003-09-30 04:21:14 +04:00
|
|
|
int stopsig = WSTOPSIG(status);
|
2003-10-01 19:14:23 +04:00
|
|
|
const char *signame = ruby_signal_name(stopsig);
|
2003-09-30 04:21:14 +04:00
|
|
|
if (signame) {
|
* compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),
iseq.c (ruby_iseq_disasm_insn, ruby_iseq_disasm),
process.c (pst_message), re.c (match_inspect): use rb_str_catf.
* dir.c (dir_inspect), iseq.c (iseq_inspect, insn_operand_intern): use
rb_sprintf.
* error.c (rb_name_error, rb_raise, rb_loaderror, rb_fatal): use
rb_vsprintf.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-22 12:53:34 +04:00
|
|
|
rb_str_catf(str, " stopped SIG%s (signal %d)", signame, stopsig);
|
2003-09-30 04:21:14 +04:00
|
|
|
}
|
|
|
|
else {
|
* compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),
iseq.c (ruby_iseq_disasm_insn, ruby_iseq_disasm),
process.c (pst_message), re.c (match_inspect): use rb_str_catf.
* dir.c (dir_inspect), iseq.c (iseq_inspect, insn_operand_intern): use
rb_sprintf.
* error.c (rb_name_error, rb_raise, rb_loaderror, rb_fatal): use
rb_vsprintf.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-22 12:53:34 +04:00
|
|
|
rb_str_catf(str, " stopped signal %d", stopsig);
|
2003-09-30 04:21:14 +04:00
|
|
|
}
|
2003-09-29 06:44:49 +04:00
|
|
|
}
|
|
|
|
if (WIFSIGNALED(status)) {
|
|
|
|
int termsig = WTERMSIG(status);
|
2003-10-01 19:14:23 +04:00
|
|
|
const char *signame = ruby_signal_name(termsig);
|
2003-09-29 06:44:49 +04:00
|
|
|
if (signame) {
|
* compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),
iseq.c (ruby_iseq_disasm_insn, ruby_iseq_disasm),
process.c (pst_message), re.c (match_inspect): use rb_str_catf.
* dir.c (dir_inspect), iseq.c (iseq_inspect, insn_operand_intern): use
rb_sprintf.
* error.c (rb_name_error, rb_raise, rb_loaderror, rb_fatal): use
rb_vsprintf.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-22 12:53:34 +04:00
|
|
|
rb_str_catf(str, " SIG%s (signal %d)", signame, termsig);
|
2003-09-29 06:44:49 +04:00
|
|
|
}
|
|
|
|
else {
|
* compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),
iseq.c (ruby_iseq_disasm_insn, ruby_iseq_disasm),
process.c (pst_message), re.c (match_inspect): use rb_str_catf.
* dir.c (dir_inspect), iseq.c (iseq_inspect, insn_operand_intern): use
rb_sprintf.
* error.c (rb_name_error, rb_raise, rb_loaderror, rb_fatal): use
rb_vsprintf.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-22 12:53:34 +04:00
|
|
|
rb_str_catf(str, " signal %d", termsig);
|
2003-09-29 06:44:49 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (WIFEXITED(status)) {
|
* compile.c (insn_data_to_s_detail), file.c (rb_stat_inspect),
iseq.c (ruby_iseq_disasm_insn, ruby_iseq_disasm),
process.c (pst_message), re.c (match_inspect): use rb_str_catf.
* dir.c (dir_inspect), iseq.c (iseq_inspect, insn_operand_intern): use
rb_sprintf.
* error.c (rb_name_error, rb_raise, rb_loaderror, rb_fatal): use
rb_vsprintf.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-07-22 12:53:34 +04:00
|
|
|
rb_str_catf(str, " exit %d", WEXITSTATUS(status));
|
2003-09-29 06:44:49 +04:00
|
|
|
}
|
|
|
|
#ifdef WCOREDUMP
|
|
|
|
if (WCOREDUMP(status)) {
|
2007-10-15 05:31:11 +04:00
|
|
|
rb_str_cat2(str, " (core dumped)");
|
2003-09-29 06:44:49 +04:00
|
|
|
}
|
|
|
|
#endif
|
2007-10-15 05:31:11 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.to_s -> string
|
2007-10-15 05:31:11 +04:00
|
|
|
*
|
|
|
|
* Show pid and exit status as a string.
|
2010-09-12 04:15:27 +04:00
|
|
|
*
|
|
|
|
* system("false")
|
|
|
|
* p $?.to_s #=> "pid 12766 exit 1"
|
|
|
|
*
|
2007-10-15 05:31:11 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
pst_to_s(VALUE st)
|
|
|
|
{
|
|
|
|
rb_pid_t pid;
|
|
|
|
int status;
|
|
|
|
VALUE str;
|
|
|
|
|
2009-04-25 13:26:22 +04:00
|
|
|
pid = NUM2PIDT(pst_pid(st));
|
2008-06-20 18:00:35 +04:00
|
|
|
status = PST2INT(st);
|
2007-10-15 05:31:11 +04:00
|
|
|
|
|
|
|
str = rb_str_buf_new(0);
|
|
|
|
pst_message(str, pid, status);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.inspect -> string
|
2007-10-15 05:31:11 +04:00
|
|
|
*
|
|
|
|
* Override the inspection method.
|
2010-09-12 04:15:27 +04:00
|
|
|
*
|
|
|
|
* system("false")
|
|
|
|
* p $?.inspect #=> "#<Process::Status: pid 12861 exit 1>"
|
|
|
|
*
|
2007-10-15 05:31:11 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
pst_inspect(VALUE st)
|
|
|
|
{
|
|
|
|
rb_pid_t pid;
|
|
|
|
int status;
|
2008-08-21 14:18:38 +04:00
|
|
|
VALUE vpid, str;
|
2007-10-15 05:31:11 +04:00
|
|
|
|
2008-08-21 14:18:38 +04:00
|
|
|
vpid = pst_pid(st);
|
|
|
|
if (NIL_P(vpid)) {
|
|
|
|
return rb_sprintf("#<%s: uninitialized>", rb_class2name(CLASS_OF(st)));
|
|
|
|
}
|
2009-04-25 13:26:22 +04:00
|
|
|
pid = NUM2PIDT(vpid);
|
2008-06-20 18:00:35 +04:00
|
|
|
status = PST2INT(st);
|
2007-10-15 05:31:11 +04:00
|
|
|
|
|
|
|
str = rb_sprintf("#<%s: ", rb_class2name(CLASS_OF(st)));
|
|
|
|
pst_message(str, pid, status);
|
2003-09-29 06:44:49 +04:00
|
|
|
rb_str_cat2(str, ">");
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat == other -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if the integer value of _stat_
|
|
|
|
* equals <em>other</em>.
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_equal(VALUE st1, VALUE st2)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
|
|
|
if (st1 == st2) return Qtrue;
|
|
|
|
return rb_equal(pst_to_i(st1), st2);
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat & num -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Logical AND of the bits in _stat_ with <em>num</em>.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { exit 0x37 }
|
|
|
|
* Process.wait
|
|
|
|
* sprintf('%04x', $?.to_i) #=> "3700"
|
|
|
|
* sprintf('%04x', $? & 0x1e00) #=> "1600"
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_bitand(VALUE st1, VALUE st2)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st1) & NUM2INT(st2);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
|
|
|
return INT2NUM(status);
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat >> num -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Shift the bits in _stat_ right <em>num</em> places.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { exit 99 } #=> 26563
|
|
|
|
* Process.wait #=> 26563
|
|
|
|
* $?.to_i #=> 25344
|
|
|
|
* $? >> 8 #=> 99
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_rshift(VALUE st1, VALUE st2)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st1) >> NUM2INT(st2);
|
2001-02-16 10:53:21 +03:00
|
|
|
|
|
|
|
return INT2NUM(status);
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.stopped? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if this process is stopped. This is only
|
|
|
|
* returned if the corresponding <code>wait</code> call had the
|
|
|
|
* <code>WUNTRACED</code> flag set.
|
|
|
|
*/
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wifstopped(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
|
|
|
if (WIFSTOPPED(status))
|
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.stopsig -> fixnum or nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the number of the signal that caused _stat_ to stop
|
|
|
|
* (or +nil+ if self is not stopped).
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wstopsig(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.signaled? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if _stat_ terminated because of
|
|
|
|
* an uncaught signal.
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wifsignaled(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
if (WIFSIGNALED(status))
|
2001-02-15 09:01:00 +03:00
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.termsig -> fixnum or nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the number of the signal that caused _stat_ to
|
|
|
|
* terminate (or +nil+ if self was not terminated by an
|
|
|
|
* uncaught signal).
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wtermsig(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.exited? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if _stat_ exited normally (for
|
|
|
|
* example using an <code>exit()</code> call or finishing the
|
|
|
|
* program).
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wifexited(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
|
|
|
if (WIFEXITED(status))
|
|
|
|
return Qtrue;
|
|
|
|
else
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.exitstatus -> fixnum or nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the least significant eight bits of the return code of
|
|
|
|
* _stat_. Only available if <code>exited?</code> is
|
|
|
|
* +true+.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { } #=> 26572
|
|
|
|
* Process.wait #=> 26572
|
|
|
|
* $?.exited? #=> true
|
|
|
|
* $?.exitstatus #=> 0
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { exit 99 } #=> 26573
|
|
|
|
* Process.wait #=> 26573
|
|
|
|
* $?.exited? #=> true
|
|
|
|
* $?.exitstatus #=> 99
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wexitstatus(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.success? -> true, false or nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-04-15 14:53:12 +04:00
|
|
|
* Returns +true+ if _stat_ is successful, +false+ if not.
|
|
|
|
* Returns +nil+ if <code>exited?</code> is not +true+.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_success_p(VALUE st)
|
2004-04-15 14:53:12 +04:00
|
|
|
{
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2004-04-15 14:53:12 +04:00
|
|
|
|
|
|
|
if (!WIFEXITED(status))
|
|
|
|
return Qnil;
|
|
|
|
return WEXITSTATUS(status) == EXIT_SUCCESS ? Qtrue : Qfalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* stat.coredump? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if _stat_ generated a coredump
|
|
|
|
* when it terminated. Not available on all platforms.
|
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
pst_wcoredump(VALUE st)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
|
|
|
#ifdef WCOREDUMP
|
2008-06-20 18:00:35 +04:00
|
|
|
int status = PST2INT(st);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
|
|
|
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;
|
2009-03-01 10:15:33 +03:00
|
|
|
|
|
|
|
struct wait_data {
|
|
|
|
rb_pid_t pid;
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
wait_each(rb_pid_t pid, int status, struct wait_data *data)
|
|
|
|
{
|
|
|
|
if (data->status != -1) return ST_STOP;
|
|
|
|
|
|
|
|
data->pid = pid;
|
|
|
|
data->status = status;
|
|
|
|
return ST_DELETE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
waitall_each(rb_pid_t pid, int status, VALUE ary)
|
|
|
|
{
|
|
|
|
rb_last_status_set(status, pid);
|
|
|
|
rb_ary_push(ary, rb_assoc_new(PIDT2NUM(pid), rb_last_status_get()));
|
|
|
|
return ST_DELETE;
|
|
|
|
}
|
2007-02-24 12:43:40 +03:00
|
|
|
#else
|
|
|
|
struct waitpid_arg {
|
|
|
|
rb_pid_t pid;
|
|
|
|
int *st;
|
|
|
|
int flags;
|
|
|
|
};
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
2007-02-24 12:43:40 +03:00
|
|
|
static VALUE
|
2007-11-20 13:47:53 +03:00
|
|
|
rb_waitpid_blocking(void *data)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t result;
|
1999-01-20 07:59:39 +03:00
|
|
|
#ifndef NO_WAITPID
|
2007-02-24 12:43:40 +03:00
|
|
|
struct waitpid_arg *arg = data;
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-02-24 12:43:40 +03:00
|
|
|
#if defined NO_WAITPID
|
|
|
|
result = wait(data);
|
|
|
|
#elif defined HAVE_WAITPID
|
|
|
|
result = waitpid(arg->pid, arg->st, arg->flags);
|
1999-01-20 07:59:39 +03:00
|
|
|
#else /* HAVE_WAIT4 */
|
2007-02-24 12:43:40 +03:00
|
|
|
result = wait4(arg->pid, arg->st, arg->flags, NULL);
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
* include/ruby/signal.h: removed.
* common.mk, class.c, eval.c, eval_intern.h, file.c, gc.c, hash.c,
io.c, process.c, signal.c: vm_core.h: ditto.
Some unused external global variables are also removed.
(rb_prohibit_interrupt, rb_trap_immediate, rb_trap_pending,
rb_thread_critical)
* ext/openssl/ossl_ssl.c, ext/openssl/ossl_x509store.c,
ext/readline/readline.c, ext/socket/depend,
ext/socket/socket.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-03 12:00:05 +04:00
|
|
|
|
2007-02-24 12:43:40 +03:00
|
|
|
return (VALUE)result;
|
|
|
|
}
|
|
|
|
|
|
|
|
rb_pid_t
|
|
|
|
rb_waitpid(rb_pid_t pid, int *st, int flags)
|
|
|
|
{
|
|
|
|
rb_pid_t result;
|
|
|
|
#ifndef NO_WAITPID
|
|
|
|
struct waitpid_arg arg;
|
|
|
|
|
2009-03-01 10:15:33 +03:00
|
|
|
retry:
|
2007-02-24 12:43:40 +03:00
|
|
|
arg.pid = pid;
|
|
|
|
arg.st = st;
|
|
|
|
arg.flags = flags;
|
2007-08-27 20:48:14 +04:00
|
|
|
result = (rb_pid_t)rb_thread_blocking_region(rb_waitpid_blocking, &arg,
|
2008-08-31 11:44:24 +04:00
|
|
|
RUBY_UBF_PROCESS, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (result < 0) {
|
|
|
|
if (errno == EINTR) {
|
2008-12-29 17:41:22 +03:00
|
|
|
RUBY_VM_CHECK_INTS();
|
|
|
|
goto retry;
|
|
|
|
}
|
2009-03-01 10:15:33 +03:00
|
|
|
return (rb_pid_t)-1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
#else /* NO_WAITPID */
|
2009-03-01 10:15:33 +03:00
|
|
|
if (pid_tbl) {
|
|
|
|
st_data_t status, piddata = (st_data_t)pid;
|
|
|
|
if (pid == (rb_pid_t)-1) {
|
|
|
|
struct wait_data data;
|
|
|
|
data.pid = (rb_pid_t)-1;
|
|
|
|
data.status = -1;
|
|
|
|
st_foreach(pid_tbl, wait_each, (st_data_t)&data);
|
|
|
|
if (data.status != -1) {
|
|
|
|
rb_last_status_set(data.status, data.pid);
|
|
|
|
return data.pid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (st_delete(pid_tbl, &piddata, &status)) {
|
|
|
|
rb_last_status_set(*st = (int)status, pid);
|
|
|
|
return pid;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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 (;;) {
|
2007-02-24 12:43:40 +03:00
|
|
|
result = (rb_pid_t)rb_thread_blocking_region(rb_waitpid_blocking,
|
2009-02-24 04:49:39 +03:00
|
|
|
st, RUBY_UBF_PROCESS, 0);
|
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;
|
|
|
|
}
|
2009-03-01 10:15:33 +03:00
|
|
|
return (rb_pid_t)-1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-03-01 10:15:33 +03:00
|
|
|
if (result == pid || pid == (rb_pid_t)-1) {
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!pid_tbl)
|
2009-03-01 10:15:33 +03:00
|
|
|
pid_tbl = st_init_numtable();
|
2004-12-08 14:14:53 +03:00
|
|
|
st_insert(pid_tbl, pid, (st_data_t)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) {
|
2007-02-05 19:22:38 +03:00
|
|
|
rb_last_status_set(*st, result);
|
2002-12-10 09:23:44 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/* [MG]:FIXME: I wasn't sure how this should be done, since ::wait()
|
|
|
|
has historically been documented as if it didn't take any arguments
|
|
|
|
despite the fact that it's just an alias for ::waitpid(). The way I
|
|
|
|
have it below is more truthful, but a little confusing.
|
|
|
|
|
|
|
|
I also took the liberty of putting in the pid values, as they're
|
|
|
|
pretty useful, and it looked as if the original 'ri' output was
|
|
|
|
supposed to contain them after "[...]depending on the value of
|
|
|
|
aPid:".
|
|
|
|
|
|
|
|
The 'ansi' and 'bs' formats of the ri output don't display the
|
|
|
|
definition list for some reason, but the plain text one does.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.wait() -> fixnum
|
|
|
|
* Process.wait(pid=-1, flags=0) -> fixnum
|
|
|
|
* Process.waitpid(pid=-1, flags=0) -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Waits for a child process to exit, returns its process id, and
|
|
|
|
* sets <code>$?</code> to a <code>Process::Status</code> object
|
|
|
|
* containing information on that process. Which child it waits on
|
|
|
|
* depends on the value of _pid_:
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* > 0:: Waits for the child whose process ID equals _pid_.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* 0:: Waits for any child whose process group ID equals that of the
|
|
|
|
* calling process.
|
|
|
|
*
|
|
|
|
* -1:: Waits for any child process (the default if no _pid_ is
|
|
|
|
* given).
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* < -1:: Waits for any child whose process group ID equals the absolute
|
|
|
|
* value of _pid_.
|
|
|
|
*
|
|
|
|
* The _flags_ argument may be a logical or of the flag values
|
|
|
|
* <code>Process::WNOHANG</code> (do not block if no child available)
|
|
|
|
* or <code>Process::WUNTRACED</code> (return stopped children that
|
|
|
|
* haven't been reported). Not all flags are available on all
|
|
|
|
* platforms, but a flag value of zero will work on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Calling this method raises a <code>SystemError</code> if there are
|
|
|
|
* no child processes. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* include Process
|
|
|
|
* fork { exit 99 } #=> 27429
|
|
|
|
* wait #=> 27429
|
|
|
|
* $?.exitstatus #=> 99
|
|
|
|
*
|
|
|
|
* pid = fork { sleep 3 } #=> 27440
|
2008-03-09 04:04:46 +03:00
|
|
|
* Time.now #=> 2008-03-08 19:56:16 +0900
|
2004-01-02 09:01:12 +03:00
|
|
|
* waitpid(pid, Process::WNOHANG) #=> nil
|
2008-03-09 04:04:46 +03:00
|
|
|
* Time.now #=> 2008-03-08 19:56:16 +0900
|
2004-01-02 09:01:12 +03:00
|
|
|
* waitpid(pid, 0) #=> 27440
|
2008-03-09 04:04:46 +03:00
|
|
|
* Time.now #=> 2008-03-08 19:56:19 +0900
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_wait(int argc, VALUE *argv)
|
2000-06-19 12:38:11 +04:00
|
|
|
{
|
|
|
|
VALUE vpid, vflags;
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pid;
|
|
|
|
int flags, status;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
2000-06-19 12:38:11 +04:00
|
|
|
flags = 0;
|
2001-08-06 07:05:23 +04:00
|
|
|
if (argc == 0) {
|
|
|
|
pid = -1;
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
2001-08-06 07:05:23 +04:00
|
|
|
else {
|
2008-03-05 08:22:17 +03:00
|
|
|
rb_scan_args(argc, argv, "02", &vpid, &vflags);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
pid = NUM2PIDT(vpid);
|
2001-08-06 07:05:23 +04:00
|
|
|
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) {
|
2007-02-08 09:48:34 +03:00
|
|
|
rb_last_status_clear();
|
|
|
|
return Qnil;
|
2000-11-27 12:23:38 +03:00
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(pid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.wait2(pid=-1, flags=0) -> [pid, status]
|
|
|
|
* Process.waitpid2(pid=-1, flags=0) -> [pid, status]
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Waits for a child process to exit (see Process::waitpid for exact
|
|
|
|
* semantics) and returns an array containing the process id and the
|
|
|
|
* exit status (a <code>Process::Status</code> object) of that
|
|
|
|
* child. Raises a <code>SystemError</code> if there are no child
|
|
|
|
* processes.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.fork { exit 99 } #=> 27437
|
|
|
|
* pid, status = Process.wait2
|
|
|
|
* pid #=> 27437
|
|
|
|
* status.exitstatus #=> 99
|
|
|
|
*/
|
|
|
|
|
2000-06-19 12:38:11 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_wait2(int argc, VALUE *argv)
|
2000-06-19 12:38:11 +04:00
|
|
|
{
|
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;
|
2007-02-08 09:48:34 +03:00
|
|
|
return rb_assoc_new(pid, rb_last_status_get());
|
2000-06-19 12:38:11 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.waitall -> [ [pid1,status1], ...]
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Waits for all children, returning an array of
|
|
|
|
* _pid_/_status_ pairs (where _status_ is a
|
|
|
|
* <code>Process::Status</code> object).
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* fork { sleep 0.2; exit 2 } #=> 27432
|
|
|
|
* fork { sleep 0.1; exit 1 } #=> 27433
|
|
|
|
* fork { exit 0 } #=> 27434
|
|
|
|
* p Process.waitall
|
|
|
|
*
|
|
|
|
* <em>produces</em>:
|
|
|
|
*
|
2010-12-29 04:33:28 +03:00
|
|
|
* [[30982, #<Process::Status: pid 30982 exit 0>],
|
|
|
|
* [30979, #<Process::Status: pid 30979 exit 1>],
|
|
|
|
* [30976, #<Process::Status: pid 30976 exit 2>]]
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2001-02-15 09:01:00 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_waitall(void)
|
2001-02-15 09:01:00 +03:00
|
|
|
{
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE result;
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pid;
|
|
|
|
int status;
|
2001-02-15 09:01:00 +03:00
|
|
|
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
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
|
|
|
}
|
2007-08-18 11:44:51 +04:00
|
|
|
#else
|
|
|
|
rb_last_status_clear();
|
|
|
|
#endif
|
2001-02-15 09:01:00 +03:00
|
|
|
|
|
|
|
for (pid = -1;;) {
|
2007-08-18 11:44:51 +04:00
|
|
|
#ifdef NO_WAITPID
|
2001-02-15 09:01:00 +03:00
|
|
|
pid = wait(&status);
|
2007-08-18 11:44:51 +04:00
|
|
|
#else
|
|
|
|
pid = rb_waitpid(-1, &status, 0);
|
|
|
|
#endif
|
2001-02-15 09:01:00 +03:00
|
|
|
if (pid == -1) {
|
|
|
|
if (errno == ECHILD)
|
|
|
|
break;
|
2007-08-18 11:44:51 +04:00
|
|
|
#ifdef NO_WAITPID
|
2004-12-23 17:43:30 +03:00
|
|
|
if (errno == EINTR) {
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_thread_schedule();
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-18 11:44:51 +04:00
|
|
|
#endif
|
2001-02-15 09:01:00 +03:00
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2007-08-18 11:44:51 +04:00
|
|
|
#ifdef NO_WAITPID
|
2007-02-05 19:22:38 +03:00
|
|
|
rb_last_status_set(status, pid);
|
2007-08-18 11:44:51 +04:00
|
|
|
#endif
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_ary_push(result, rb_assoc_new(PIDT2NUM(pid), rb_last_status_get()));
|
2001-05-02 08:22:21 +04:00
|
|
|
}
|
|
|
|
return result;
|
2001-02-15 09:01:00 +03:00
|
|
|
}
|
|
|
|
|
2008-06-20 07:40:02 +04:00
|
|
|
static inline ID
|
|
|
|
id_pid(void)
|
|
|
|
{
|
|
|
|
ID pid;
|
|
|
|
CONST_ID(pid, "pid");
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
detach_process_pid(VALUE thread)
|
|
|
|
{
|
|
|
|
return rb_thread_local_aref(thread, id_pid());
|
|
|
|
}
|
|
|
|
|
2003-03-07 08:59:42 +03:00
|
|
|
static VALUE
|
2007-08-18 10:59:54 +04:00
|
|
|
detach_process_watcher(void *arg)
|
2003-03-07 08:59:42 +03:00
|
|
|
{
|
2007-09-26 22:17:43 +04:00
|
|
|
rb_pid_t cpid, pid = (rb_pid_t)(VALUE)arg;
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
int status;
|
2003-03-07 08:59:42 +03:00
|
|
|
|
2007-08-18 10:59:54 +04:00
|
|
|
while ((cpid = rb_waitpid(pid, &status, 0)) == 0) {
|
|
|
|
/* wait while alive */
|
2003-03-07 08:59:42 +03:00
|
|
|
}
|
2007-08-18 10:59:54 +04:00
|
|
|
return rb_last_status_get();
|
2003-03-07 08:59:42 +03:00
|
|
|
}
|
|
|
|
|
2003-03-20 09:27:22 +03:00
|
|
|
VALUE
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_detach_process(rb_pid_t pid)
|
2003-03-07 08:59:42 +03:00
|
|
|
{
|
2008-06-20 07:40:02 +04:00
|
|
|
VALUE watcher = rb_thread_create(detach_process_watcher, (void*)(VALUE)pid);
|
|
|
|
rb_thread_local_aset(watcher, id_pid(), PIDT2NUM(pid));
|
|
|
|
rb_define_singleton_method(watcher, "pid", detach_process_pid, 0);
|
|
|
|
return watcher;
|
2003-03-07 08:59:42 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.detach(pid) -> thread
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Some operating systems retain the status of terminated child
|
|
|
|
* processes until the parent collects that status (normally using
|
|
|
|
* some variant of <code>wait()</code>. If the parent never collects
|
|
|
|
* this status, the child stays around as a <em>zombie</em> process.
|
|
|
|
* <code>Process::detach</code> prevents this by setting up a
|
|
|
|
* separate Ruby thread whose sole job is to reap the status of the
|
|
|
|
* process _pid_ when it terminates. Use <code>detach</code>
|
|
|
|
* only when you do not intent to explicitly wait for the child to
|
2007-08-18 10:59:54 +04:00
|
|
|
* terminate.
|
2004-02-09 10:30:17 +03:00
|
|
|
*
|
|
|
|
* The waiting thread returns the exit status of the detached process
|
|
|
|
* when it terminates, so you can use <code>Thread#join</code> to
|
|
|
|
* know the result. If specified _pid_ is not a valid child process
|
|
|
|
* ID, the thread returns +nil+ immediately.
|
|
|
|
*
|
2009-02-24 14:00:24 +03:00
|
|
|
* The waiting thread has <code>pid</code> method which returns the pid.
|
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* In this first example, we don't reap the first child process, so
|
|
|
|
* it appears as a zombie in the process status display.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* p1 = fork { sleep 0.1 }
|
|
|
|
* p2 = fork { sleep 0.2 }
|
|
|
|
* Process.waitpid(p2)
|
|
|
|
* sleep 2
|
|
|
|
* system("ps -ho pid,state -p #{p1}")
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* <em>produces:</em>
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* 27389 Z
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* In the next example, <code>Process::detach</code> is used to reap
|
|
|
|
* the child automatically.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* p1 = fork { sleep 0.1 }
|
|
|
|
* p2 = fork { sleep 0.2 }
|
|
|
|
* Process.detach(p1)
|
|
|
|
* Process.waitpid(p2)
|
|
|
|
* sleep 2
|
|
|
|
* system("ps -ho pid,state -p #{p1}")
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* <em>(produces no output)</em>
|
|
|
|
*/
|
|
|
|
|
2003-03-07 08:59:42 +03:00
|
|
|
static VALUE
|
2005-08-31 05:40:56 +04:00
|
|
|
proc_detach(VALUE obj, VALUE pid)
|
2003-03-07 08:59:42 +03:00
|
|
|
{
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return rb_detach_process(NUM2PIDT(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
|
|
|
|
* this commit is a result of refactoring. only renaming functions,
moving definitions place, add/remove prototypes, deleting
unused variables and removing yarv.h.
This commit doesn't change any behavior of ruby/vm.
* yarv.h, common.mk: remove yarv.h (contents are moved to yarvcore.h).
* error.c, eval_intern.h: include yarvcore.h instead yarv.h
* rename some functions:
* debug.[ch]: debug_*() -> ruby_debug_*()
* iseq.c: iseq_*() -> rb_iseq_*(), ruby_iseq_disasm()
* iseq.c: node_name() -> ruby_node_name()
* vm.c: yarv_check_redefinition_opt_method() ->
rb_vm_check_redefinition_opt_method()
* some refactoring with checking -Wall.
* array.c: remove rb_ary_ptr() (unused) and remove unused
local variables.
* object.c: add a prototype of rb_mod_module_exec().
* eval_intern.h (ruby_cref): set it inline.
* eval_load.c (rb_load), yarvcore.c: yarv_load() -> rb_load_internal().
* parse.y: add a prototype of rb_parse_in_eval() (in eval.c).
* process.c: add a prototype of rb_thread_stop_timer_thread() (in thread.c).
* thread.c: remove raw_gets() function (unused) and fix some format
mismatch (format mismatchs have remained yet. this is todo).
* thread.c (rb_thread_wait_fd_rw): fix typo on label name.
* thread_pthread.ci: comment out codes with USE_THREAD_CACHE.
* vm.c (rb_svar, rb_backref_get, rb_backref_get,
rb_lastline_get, rb_lastline_set) : moved from yarvcore.c.
* vm.c (yarv_init_redefined_flag): add a prototype and rename
yarv_opt_method_table to vm_opt_method_table.
* vm.c (rb_thread_eval): moved from yarvcore.c.
* yarvcore.c: remove unused global variables and fix to use nsdr().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-07 04:25:05 +03:00
|
|
|
void rb_thread_stop_timer_thread(void);
|
* vm.c: some refactoring.
* rename th_* to vm_*.
* remove unused variables functions.
* add prototypes.
* blockinlining.c, compile.c, cont.c, eval.c, eval_intern.h,
eval_jump.h, eval_load.c, inits.c, insns.def, iseq.c, parse.y,
proc.c, process.c, signal.c, thread.c, vm.c, vm_dump.c,
vm_evalbody.ci, yarvcore.c, yarvcore.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-24 19:42:41 +04:00
|
|
|
void rb_thread_start_timer_thread(void);
|
|
|
|
void rb_thread_reset_timer_thread(void);
|
* this commit is a result of refactoring. only renaming functions,
moving definitions place, add/remove prototypes, deleting
unused variables and removing yarv.h.
This commit doesn't change any behavior of ruby/vm.
* yarv.h, common.mk: remove yarv.h (contents are moved to yarvcore.h).
* error.c, eval_intern.h: include yarvcore.h instead yarv.h
* rename some functions:
* debug.[ch]: debug_*() -> ruby_debug_*()
* iseq.c: iseq_*() -> rb_iseq_*(), ruby_iseq_disasm()
* iseq.c: node_name() -> ruby_node_name()
* vm.c: yarv_check_redefinition_opt_method() ->
rb_vm_check_redefinition_opt_method()
* some refactoring with checking -Wall.
* array.c: remove rb_ary_ptr() (unused) and remove unused
local variables.
* object.c: add a prototype of rb_mod_module_exec().
* eval_intern.h (ruby_cref): set it inline.
* eval_load.c (rb_load), yarvcore.c: yarv_load() -> rb_load_internal().
* parse.y: add a prototype of rb_parse_in_eval() (in eval.c).
* process.c: add a prototype of rb_thread_stop_timer_thread() (in thread.c).
* thread.c: remove raw_gets() function (unused) and fix some format
mismatch (format mismatchs have remained yet. this is todo).
* thread.c (rb_thread_wait_fd_rw): fix typo on label name.
* thread_pthread.ci: comment out codes with USE_THREAD_CACHE.
* vm.c (rb_svar, rb_backref_get, rb_backref_get,
rb_lastline_get, rb_lastline_set) : moved from yarvcore.c.
* vm.c (yarv_init_redefined_flag): add a prototype and rename
yarv_opt_method_table to vm_opt_method_table.
* vm.c (rb_thread_eval): moved from yarvcore.c.
* yarvcore.c: remove unused global variables and fix to use nsdr().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-07 04:25:05 +03:00
|
|
|
|
2008-12-13 19:40:01 +03:00
|
|
|
static int forked_child = 0;
|
|
|
|
|
2010-12-26 15:59:19 +03:00
|
|
|
/*
|
|
|
|
* On old MacOS X, exec() may return ENOTSUPP if the process have multiple threads.
|
|
|
|
* Therefore we have to kill internal threads at once. [ruby-core: 10583]
|
|
|
|
*/
|
2007-01-07 12:47:52 +03:00
|
|
|
#define before_exec() \
|
2010-07-27 11:13:43 +04:00
|
|
|
(rb_enable_interrupt(), (void)(forked_child ? 0 : (rb_thread_stop_timer_thread(), 1)))
|
2007-01-07 12:47:52 +03:00
|
|
|
#define after_exec() \
|
2008-12-27 13:40:57 +03:00
|
|
|
(rb_thread_reset_timer_thread(), rb_thread_start_timer_thread(), forked_child = 0, rb_disable_interrupt())
|
2008-11-24 18:08:24 +03:00
|
|
|
#define before_fork() before_exec()
|
2008-12-26 23:39:07 +03:00
|
|
|
#define after_fork() (GET_THREAD()->thrown_errinfo = 0, after_exec())
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-05-08 01:43:54 +04:00
|
|
|
#include "dln.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
security(const char *str)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-04 19:21:38 +03:00
|
|
|
#ifdef HAVE_FORK
|
2010-12-24 02:46:39 +03:00
|
|
|
#define try_with_sh(prog, argv) ((saved_errno == ENOEXEC) ? exec_with_sh((prog), (argv)) : (void)0)
|
2010-11-04 19:21:38 +03:00
|
|
|
static void
|
|
|
|
exec_with_sh(const char *prog, char **argv)
|
|
|
|
{
|
|
|
|
*argv = (char *)prog;
|
|
|
|
*--argv = (char *)"sh";
|
|
|
|
execv("/bin/sh", argv);
|
|
|
|
}
|
2011-01-27 02:41:47 +03:00
|
|
|
#define ARGV_COUNT(n) ((n)+1)
|
2010-11-04 19:21:38 +03:00
|
|
|
#else
|
|
|
|
#define try_with_sh(prog, argv) (void)0
|
2011-01-27 02:41:47 +03:00
|
|
|
#define ARGV_COUNT(n) (n)
|
2010-11-04 19:21:38 +03:00
|
|
|
#endif
|
2011-01-27 02:41:47 +03:00
|
|
|
#define ARGV_SIZE(n) (sizeof(char*) * ARGV_COUNT(n))
|
|
|
|
#define ALLOC_ARGV(n, v) ALLOCV_N(char*, (v), ARGV_COUNT(n))
|
|
|
|
#define ALLOC_ARGV_WITH_STR(n, v, s, l) \
|
2011-01-27 06:46:44 +03:00
|
|
|
(char **)(((s) = ALLOCV_N(char, (v), ARGV_SIZE(n) + (l)) + ARGV_SIZE(n)) - ARGV_SIZE(n))
|
2010-11-04 19:21:38 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_exec_v(char **argv, const char *prog)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2008-05-08 01:43:54 +04:00
|
|
|
char fbuf[MAXPATHLEN];
|
2011-01-27 02:41:47 +03:00
|
|
|
#if defined(__EMX__) || defined(OS2)
|
|
|
|
char **new_argv = NULL;
|
|
|
|
#endif
|
2008-05-08 01:43:54 +04:00
|
|
|
|
2003-01-06 07:30:27 +03:00
|
|
|
if (!prog)
|
|
|
|
prog = argv[0];
|
2008-05-08 01:43:54 +04:00
|
|
|
prog = dln_find_exe_r(prog, 0, fbuf, sizeof(fbuf));
|
2004-02-16 09:45:32 +03:00
|
|
|
if (!prog) {
|
|
|
|
errno = ENOENT;
|
2003-01-06 07:30:27 +03:00
|
|
|
return -1;
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
2003-01-06 07:30:27 +03:00
|
|
|
|
2008-10-04 17:33:22 +04:00
|
|
|
#if defined(__EMX__) || defined(OS2)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
#define COMMAND "cmd.exe"
|
1998-01-16 15:13:05 +03:00
|
|
|
char *extension;
|
|
|
|
|
2008-01-01 15:24:04 +03:00
|
|
|
if ((extension = strrchr(prog, '.')) != NULL && STRCASECMP(extension, ".bat") == 0) {
|
1998-01-16 15:13:05 +03:00
|
|
|
char *p;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
for (n = 0; argv[n]; n++)
|
|
|
|
/* no-op */;
|
2011-01-27 02:41:47 +03:00
|
|
|
new_argv = ALLOC_N(char*, n + 2);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (; n > 0; n--)
|
|
|
|
new_argv[n + 1] = argv[n];
|
2011-01-27 02:41:47 +03:00
|
|
|
new_argv[1] = strcpy(ALLOC_N(char, strlen(argv[0]) + 1), argv[0]);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (p = new_argv[1]; *p != '\0'; p++)
|
|
|
|
if (*p == '/')
|
|
|
|
*p = '\\';
|
|
|
|
new_argv[0] = COMMAND;
|
|
|
|
argv = new_argv;
|
2008-05-08 01:43:54 +04:00
|
|
|
prog = dln_find_exe_r(argv[0], 0, fbuf, sizeof(fbuf));
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!prog) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-10-04 17:33:22 +04:00
|
|
|
#endif /* __EMX__ */
|
1998-01-16 15:13:05 +03:00
|
|
|
before_exec();
|
|
|
|
execv(prog, argv);
|
2010-11-04 19:21:38 +03:00
|
|
|
preserving_errno(try_with_sh(prog, argv); after_exec());
|
2011-01-27 02:41:47 +03:00
|
|
|
#if defined(__EMX__) || defined(OS2)
|
|
|
|
if (new_argv) {
|
|
|
|
xfree(new_argv[0]);
|
|
|
|
xfree(new_argv);
|
|
|
|
}
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_proc_exec_n(int argc, VALUE *argv, const char *prog)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
char **args;
|
|
|
|
int i;
|
2011-01-27 02:41:47 +03:00
|
|
|
int ret = -1;
|
|
|
|
VALUE v;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-01-27 02:41:47 +03:00
|
|
|
args = ALLOC_ARGV(argc+1, v);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (i=0; i<argc; i++) {
|
2006-08-31 14:47:44 +04:00
|
|
|
args[i] = RSTRING_PTR(argv[i]);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
args[i] = 0;
|
|
|
|
if (args[0]) {
|
2011-01-27 02:41:47 +03:00
|
|
|
ret = proc_exec_v(args, prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2011-01-27 02:41:47 +03:00
|
|
|
ALLOCV_END(v);
|
1998-01-16 15:13:05 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_proc_exec(const char *str)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-25 09:45:28 +04:00
|
|
|
#ifndef _WIN32
|
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;
|
2011-01-27 02:41:47 +03:00
|
|
|
VALUE v;
|
|
|
|
int ret = -1;
|
2008-04-25 09:45:28 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
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();
|
2004-02-16 09:45:32 +03:00
|
|
|
rb_w32_spawn(P_OVERLAY, (char *)str, 0);
|
2003-01-06 07:30:27 +03:00
|
|
|
after_exec();
|
2011-01-27 02:41:47 +03:00
|
|
|
return -1;
|
2003-01-06 07:30:27 +03:00
|
|
|
#else
|
1998-01-16 15:13:05 +03:00
|
|
|
for (s=str; *s; s++) {
|
2004-08-27 05:14:30 +04:00
|
|
|
if (ISSPACE(*s)) {
|
|
|
|
const char *p, *nl = NULL;
|
|
|
|
for (p = s; ISSPACE(*p); p++) {
|
|
|
|
if (*p == '\n') nl = p;
|
|
|
|
}
|
|
|
|
if (!*p) break;
|
2004-09-01 14:28:45 +04:00
|
|
|
if (nl) s = nl;
|
2004-08-27 05:14:30 +04:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
if (*s != ' ' && !ISALPHA(*s) && strchr("*?{}[]<>()~&|\\$;'`\"\n",*s)) {
|
2008-10-04 17:33:22 +04:00
|
|
|
#if defined(__CYGWIN32__) || defined(__EMX__)
|
2008-05-08 01:43:54 +04:00
|
|
|
char fbuf[MAXPATHLEN];
|
|
|
|
char *shell = dln_find_exe_r("sh", 0, fbuf, sizeof(fbuf));
|
2005-06-28 17:08:32 +04: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);
|
2004-03-29 15:17:21 +04:00
|
|
|
preserving_errno(after_exec());
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2011-01-27 02:41:47 +03:00
|
|
|
a = argv = ALLOC_ARGV_WITH_STR((s-str)/2+2, v, ss, s-str+1);
|
2004-08-27 05:14:30 +04:00
|
|
|
memcpy(ss, str, s-str);
|
|
|
|
ss[s-str] = '\0';
|
2007-08-18 11:44:51 +04:00
|
|
|
if ((*a++ = strtok(ss, " \t")) != 0) {
|
|
|
|
while ((t = strtok(NULL, " \t")) != 0) {
|
1998-01-16 15:13:05 +03:00
|
|
|
*a++ = t;
|
|
|
|
}
|
|
|
|
*a = NULL;
|
|
|
|
}
|
|
|
|
if (argv[0]) {
|
2011-01-27 02:41:47 +03:00
|
|
|
ret = proc_exec_v(argv, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2011-01-27 02:41:47 +03:00
|
|
|
else {
|
|
|
|
errno = ENOENT;
|
|
|
|
}
|
|
|
|
ALLOCV_END(v);
|
|
|
|
return ret;
|
2003-01-06 07:30:27 +03:00
|
|
|
#endif /* _WIN32 */
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
#if defined(_WIN32)
|
|
|
|
#define HAVE_SPAWNV 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(HAVE_FORK) && defined(HAVE_SPAWNV)
|
2005-05-16 17:42:59 +04:00
|
|
|
#if defined(_WIN32)
|
2010-12-24 02:46:39 +03:00
|
|
|
#define proc_spawn_v(argv, prog) rb_w32_aspawn(P_NOWAIT, (prog), (argv))
|
2005-05-16 17:42:59 +04:00
|
|
|
#else
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
static rb_pid_t
|
2006-08-13 13:44:16 +04:00
|
|
|
proc_spawn_v(char **argv, char *prog)
|
1998-01-16 15:19:22 +03:00
|
|
|
{
|
2008-05-08 01:43:54 +04:00
|
|
|
char fbuf[MAXPATHLEN];
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t status;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-12-31 15:31:12 +03:00
|
|
|
if (!prog)
|
|
|
|
prog = argv[0];
|
|
|
|
security(prog);
|
2008-05-08 01:43:54 +04:00
|
|
|
prog = dln_find_exe_r(prog, 0, fbuf, sizeof(fbuf));
|
2002-12-31 15:31:12 +03:00
|
|
|
if (!prog)
|
|
|
|
return -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
before_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
status = spawnv(P_WAIT, prog, argv);
|
2010-11-04 19:21:38 +03:00
|
|
|
preserving_errno({
|
|
|
|
rb_last_status_set(status == -1 ? 127 : status, 0);
|
2010-11-05 06:18:03 +03:00
|
|
|
*argv = (char *)prog;
|
|
|
|
*--argv = (char *)"sh";
|
|
|
|
status = spawnv("/bin/sh", argv);
|
2010-11-04 19:21:38 +03:00
|
|
|
after_exec();
|
|
|
|
});
|
2001-02-15 09:01:00 +03:00
|
|
|
return status;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-05-16 17:42:59 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
static rb_pid_t
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_spawn_n(int argc, VALUE *argv, VALUE prog)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
char **args;
|
|
|
|
int i;
|
2011-01-27 02:41:47 +03:00
|
|
|
VALUE v;
|
|
|
|
rb_pid_t pid = -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2011-01-27 02:41:47 +03:00
|
|
|
args = ALLOC_ARGV(argc + 1, v);
|
1998-01-16 15:13:05 +03:00
|
|
|
for (i = 0; i < argc; i++) {
|
2006-08-31 15:24:44 +04:00
|
|
|
args[i] = RSTRING_PTR(argv[i]);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2000-10-10 11:03:36 +04:00
|
|
|
args[i] = (char*) 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (args[0])
|
2011-01-27 02:41:47 +03:00
|
|
|
pid = proc_spawn_v(args, prog ? RSTRING_PTR(prog) : 0);
|
|
|
|
ALLOCV_END(v);
|
|
|
|
return pid;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
#if defined(_WIN32)
|
2010-12-24 02:46:39 +03:00
|
|
|
#define proc_spawn(str) rb_w32_spawn(P_NOWAIT, (str), 0)
|
2004-02-16 09:45:32 +03:00
|
|
|
#else
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
static rb_pid_t
|
2006-08-13 13:44:16 +04:00
|
|
|
proc_spawn(char *str)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
2008-05-08 01:43:54 +04:00
|
|
|
char fbuf[MAXPATHLEN];
|
1999-01-20 07:59:39 +03:00
|
|
|
char *s, *t;
|
1998-01-16 15:13:05 +03:00
|
|
|
char **argv, **a;
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t status;
|
2011-01-27 02:41:47 +03:00
|
|
|
VALUE v;
|
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)) {
|
2008-05-08 01:43:54 +04:00
|
|
|
char *shell = dln_find_exe_r("sh", 0, fbuf, sizeof(fbuf));
|
1998-01-16 15:13:05 +03:00
|
|
|
before_exec();
|
2001-02-15 09:01:00 +03:00
|
|
|
status = shell?spawnl(P_WAIT,shell,"sh","-c",str,(char*)NULL):system(str);
|
2007-02-05 19:22:38 +03:00
|
|
|
rb_last_status_set(status == -1 ? 127 : status, 0);
|
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
|
|
|
}
|
|
|
|
}
|
2011-01-27 02:41:47 +03:00
|
|
|
a = argv = ALLOC_ARGV_WITH_STR((s - str) / 2 + 2, v, s, s - str + 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
strcpy(s, str);
|
|
|
|
if (*a++ = strtok(s, " \t")) {
|
|
|
|
while (t = strtok(NULL, " \t"))
|
|
|
|
*a++ = t;
|
|
|
|
*a = NULL;
|
|
|
|
}
|
2011-01-27 02:41:47 +03:00
|
|
|
status = argv[0] ? proc_spawn_v(argv, 0) : -1;
|
|
|
|
ALLOCV_END(v);
|
|
|
|
return status;
|
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
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
static VALUE
|
|
|
|
hide_obj(VALUE obj)
|
|
|
|
{
|
|
|
|
RBASIC(obj)->klass = 0;
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
EXEC_OPTION_PGROUP,
|
|
|
|
EXEC_OPTION_RLIMIT,
|
|
|
|
EXEC_OPTION_UNSETENV_OTHERS,
|
|
|
|
EXEC_OPTION_ENV,
|
|
|
|
EXEC_OPTION_CHDIR,
|
|
|
|
EXEC_OPTION_UMASK,
|
|
|
|
EXEC_OPTION_DUP2,
|
|
|
|
EXEC_OPTION_CLOSE,
|
|
|
|
EXEC_OPTION_OPEN,
|
2008-12-03 18:02:10 +03:00
|
|
|
EXEC_OPTION_DUP2_CHILD,
|
2008-07-01 12:27:58 +04:00
|
|
|
EXEC_OPTION_CLOSE_OTHERS
|
2008-04-24 18:46:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static VALUE
|
2011-03-07 11:44:45 +03:00
|
|
|
check_exec_redirect_fd(VALUE v, int iskey)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
VALUE tmp;
|
|
|
|
int fd;
|
|
|
|
if (FIXNUM_P(v)) {
|
|
|
|
fd = FIX2INT(v);
|
|
|
|
}
|
2008-12-03 18:02:10 +03:00
|
|
|
else if (SYMBOL_P(v)) {
|
|
|
|
ID id = SYM2ID(v);
|
|
|
|
if (id == rb_intern("in"))
|
|
|
|
fd = 0;
|
|
|
|
else if (id == rb_intern("out"))
|
|
|
|
fd = 1;
|
|
|
|
else if (id == rb_intern("err"))
|
|
|
|
fd = 2;
|
|
|
|
else
|
|
|
|
goto wrong;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
else if (!NIL_P(tmp = rb_check_convert_type(v, T_FILE, "IO", "to_io"))) {
|
|
|
|
rb_io_t *fptr;
|
|
|
|
GetOpenFile(tmp, fptr);
|
2008-04-30 09:40:19 +04:00
|
|
|
if (fptr->tied_io_for_writing)
|
|
|
|
rb_raise(rb_eArgError, "duplex IO redirection");
|
2008-04-24 18:46:39 +04:00
|
|
|
fd = fptr->fd;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "wrong exec redirect");
|
|
|
|
}
|
|
|
|
if (fd < 0) {
|
2008-12-03 18:02:10 +03:00
|
|
|
wrong:
|
2008-04-24 18:46:39 +04:00
|
|
|
rb_raise(rb_eArgError, "negative file descriptor");
|
|
|
|
}
|
2011-03-07 11:44:45 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
else if (fd >= 3 && iskey) {
|
|
|
|
rb_raise(rb_eArgError, "wrong file descriptor (%d)", fd);
|
|
|
|
}
|
|
|
|
#endif
|
2008-04-24 18:46:39 +04:00
|
|
|
return INT2FIX(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_exec_redirect(VALUE key, VALUE val, VALUE options)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
VALUE ary, param;
|
|
|
|
VALUE path, flags, perm;
|
|
|
|
ID id;
|
|
|
|
|
|
|
|
switch (TYPE(val)) {
|
|
|
|
case T_SYMBOL:
|
|
|
|
id = SYM2ID(val);
|
|
|
|
if (id == rb_intern("close")) {
|
|
|
|
index = EXEC_OPTION_CLOSE;
|
|
|
|
param = Qnil;
|
|
|
|
}
|
2008-12-03 15:33:37 +03:00
|
|
|
else if (id == rb_intern("in")) {
|
|
|
|
index = EXEC_OPTION_DUP2;
|
|
|
|
param = INT2FIX(0);
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("out")) {
|
|
|
|
index = EXEC_OPTION_DUP2;
|
|
|
|
param = INT2FIX(1);
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("err")) {
|
|
|
|
index = EXEC_OPTION_DUP2;
|
|
|
|
param = INT2FIX(2);
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "wrong exec redirect symbol: %s",
|
|
|
|
rb_id2name(id));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_FILE:
|
2011-03-07 11:44:45 +03:00
|
|
|
val = check_exec_redirect_fd(val, 0);
|
2008-04-24 18:46:39 +04:00
|
|
|
/* fall through */
|
|
|
|
case T_FIXNUM:
|
|
|
|
index = EXEC_OPTION_DUP2;
|
|
|
|
param = val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_ARRAY:
|
|
|
|
path = rb_ary_entry(val, 0);
|
2008-12-03 18:02:10 +03:00
|
|
|
if (RARRAY_LEN(val) == 2 && SYMBOL_P(path) &&
|
|
|
|
SYM2ID(path) == rb_intern("child")) {
|
|
|
|
index = EXEC_OPTION_DUP2_CHILD;
|
2011-03-07 11:44:45 +03:00
|
|
|
param = check_exec_redirect_fd(rb_ary_entry(val, 1), 0);
|
2008-12-03 18:02:10 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
index = EXEC_OPTION_OPEN;
|
|
|
|
FilePathValue(path);
|
|
|
|
flags = rb_ary_entry(val, 1);
|
|
|
|
if (NIL_P(flags))
|
|
|
|
flags = INT2NUM(O_RDONLY);
|
|
|
|
else if (TYPE(flags) == T_STRING)
|
|
|
|
flags = INT2NUM(rb_io_modestr_oflags(StringValueCStr(flags)));
|
|
|
|
else
|
|
|
|
flags = rb_to_int(flags);
|
|
|
|
perm = rb_ary_entry(val, 2);
|
|
|
|
perm = NIL_P(perm) ? INT2FIX(0644) : rb_to_int(perm);
|
|
|
|
param = hide_obj(rb_ary_new3(3, hide_obj(rb_str_dup(path)),
|
|
|
|
flags, perm));
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case T_STRING:
|
|
|
|
index = EXEC_OPTION_OPEN;
|
|
|
|
path = val;
|
|
|
|
FilePathValue(path);
|
2008-09-30 19:21:30 +04:00
|
|
|
if (TYPE(key) == T_FILE)
|
2011-03-07 11:44:45 +03:00
|
|
|
key = check_exec_redirect_fd(key, 1);
|
2008-09-30 19:21:30 +04:00
|
|
|
if (FIXNUM_P(key) && (FIX2INT(key) == 1 || FIX2INT(key) == 2))
|
2008-04-24 18:46:39 +04:00
|
|
|
flags = INT2NUM(O_WRONLY|O_CREAT|O_TRUNC);
|
|
|
|
else
|
|
|
|
flags = INT2NUM(O_RDONLY);
|
|
|
|
perm = INT2FIX(0644);
|
|
|
|
param = hide_obj(rb_ary_new3(3, hide_obj(rb_str_dup(path)),
|
|
|
|
flags, perm));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
rb_raise(rb_eArgError, "wrong exec redirect action");
|
|
|
|
}
|
|
|
|
|
|
|
|
ary = rb_ary_entry(options, index);
|
|
|
|
if (NIL_P(ary)) {
|
|
|
|
ary = hide_obj(rb_ary_new());
|
|
|
|
rb_ary_store(options, index, ary);
|
|
|
|
}
|
|
|
|
if (TYPE(key) != T_ARRAY) {
|
2011-03-07 11:44:45 +03:00
|
|
|
VALUE fd = check_exec_redirect_fd(key, !NIL_P(param));
|
2008-04-24 18:46:39 +04:00
|
|
|
rb_ary_push(ary, hide_obj(rb_assoc_new(fd, param)));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int i, n=0;
|
|
|
|
for (i = 0 ; i < RARRAY_LEN(key); i++) {
|
|
|
|
VALUE v = RARRAY_PTR(key)[i];
|
2011-03-07 11:44:45 +03:00
|
|
|
VALUE fd = check_exec_redirect_fd(v, !NIL_P(param));
|
2008-04-24 18:46:39 +04:00
|
|
|
rb_ary_push(ary, hide_obj(rb_assoc_new(fd, param)));
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
#if defined(HAVE_SETRLIMIT) && defined(NUM2RLIM)
|
2008-04-24 18:46:39 +04:00
|
|
|
static int rlimit_type_by_lname(const char *name);
|
|
|
|
#endif
|
|
|
|
|
2008-04-28 04:11:46 +04:00
|
|
|
int
|
|
|
|
rb_exec_arg_addopt(struct rb_exec_arg *e, VALUE key, VALUE val)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
2008-04-28 04:11:46 +04:00
|
|
|
VALUE options = e->options;
|
2008-04-24 18:46:39 +04:00
|
|
|
ID id;
|
|
|
|
#ifdef RLIM2NUM
|
|
|
|
int rtype;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rb_secure(2);
|
|
|
|
|
|
|
|
switch (TYPE(key)) {
|
|
|
|
case T_SYMBOL:
|
|
|
|
id = SYM2ID(key);
|
|
|
|
#ifdef HAVE_SETPGID
|
|
|
|
if (id == rb_intern("pgroup")) {
|
|
|
|
if (!NIL_P(rb_ary_entry(options, EXEC_OPTION_PGROUP))) {
|
|
|
|
rb_raise(rb_eArgError, "pgroup option specified twice");
|
|
|
|
}
|
|
|
|
if (!RTEST(val))
|
|
|
|
val = Qfalse;
|
|
|
|
else if (val == Qtrue)
|
|
|
|
val = INT2FIX(0);
|
|
|
|
else {
|
|
|
|
pid_t pgroup = NUM2PIDT(val);
|
|
|
|
if (pgroup < 0) {
|
|
|
|
rb_raise(rb_eArgError, "negative process group ID : %ld", (long)pgroup);
|
|
|
|
}
|
|
|
|
val = PIDT2NUM(pgroup);
|
|
|
|
}
|
|
|
|
rb_ary_store(options, EXEC_OPTION_PGROUP, val);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2011-03-07 11:44:45 +03:00
|
|
|
#if defined(HAVE_SETRLIMIT) && defined(NUM2RLIM)
|
2008-04-24 18:46:39 +04:00
|
|
|
if (strncmp("rlimit_", rb_id2name(id), 7) == 0 &&
|
|
|
|
(rtype = rlimit_type_by_lname(rb_id2name(id)+7)) != -1) {
|
|
|
|
VALUE ary = rb_ary_entry(options, EXEC_OPTION_RLIMIT);
|
|
|
|
VALUE tmp, softlim, hardlim;
|
|
|
|
if (NIL_P(ary)) {
|
|
|
|
ary = hide_obj(rb_ary_new());
|
|
|
|
rb_ary_store(options, EXEC_OPTION_RLIMIT, ary);
|
|
|
|
}
|
|
|
|
tmp = rb_check_array_type(val);
|
|
|
|
if (!NIL_P(tmp)) {
|
|
|
|
if (RARRAY_LEN(tmp) == 1)
|
|
|
|
softlim = hardlim = rb_to_int(rb_ary_entry(tmp, 0));
|
|
|
|
else if (RARRAY_LEN(tmp) == 2) {
|
|
|
|
softlim = rb_to_int(rb_ary_entry(tmp, 0));
|
|
|
|
hardlim = rb_to_int(rb_ary_entry(tmp, 1));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "wrong exec rlimit option");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
softlim = hardlim = rb_to_int(val);
|
|
|
|
}
|
|
|
|
tmp = hide_obj(rb_ary_new3(3, INT2NUM(rtype), softlim, hardlim));
|
|
|
|
rb_ary_push(ary, tmp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if (id == rb_intern("unsetenv_others")) {
|
|
|
|
if (!NIL_P(rb_ary_entry(options, EXEC_OPTION_UNSETENV_OTHERS))) {
|
|
|
|
rb_raise(rb_eArgError, "unsetenv_others option specified twice");
|
|
|
|
}
|
|
|
|
val = RTEST(val) ? Qtrue : Qfalse;
|
|
|
|
rb_ary_store(options, EXEC_OPTION_UNSETENV_OTHERS, val);
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("chdir")) {
|
|
|
|
if (!NIL_P(rb_ary_entry(options, EXEC_OPTION_CHDIR))) {
|
|
|
|
rb_raise(rb_eArgError, "chdir option specified twice");
|
|
|
|
}
|
|
|
|
FilePathValue(val);
|
|
|
|
rb_ary_store(options, EXEC_OPTION_CHDIR,
|
|
|
|
hide_obj(rb_str_dup(val)));
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("umask")) {
|
2011-01-28 05:00:08 +03:00
|
|
|
mode_t cmask = NUM2MODET(val);
|
2008-04-24 18:46:39 +04:00
|
|
|
if (!NIL_P(rb_ary_entry(options, EXEC_OPTION_UMASK))) {
|
|
|
|
rb_raise(rb_eArgError, "umask option specified twice");
|
|
|
|
}
|
|
|
|
rb_ary_store(options, EXEC_OPTION_UMASK, LONG2NUM(cmask));
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("close_others")) {
|
|
|
|
if (!NIL_P(rb_ary_entry(options, EXEC_OPTION_CLOSE_OTHERS))) {
|
|
|
|
rb_raise(rb_eArgError, "close_others option specified twice");
|
|
|
|
}
|
|
|
|
val = RTEST(val) ? Qtrue : Qfalse;
|
|
|
|
rb_ary_store(options, EXEC_OPTION_CLOSE_OTHERS, val);
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("in")) {
|
|
|
|
key = INT2FIX(0);
|
|
|
|
goto redirect;
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("out")) {
|
|
|
|
key = INT2FIX(1);
|
|
|
|
goto redirect;
|
|
|
|
}
|
|
|
|
else if (id == rb_intern("err")) {
|
|
|
|
key = INT2FIX(2);
|
|
|
|
goto redirect;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_raise(rb_eArgError, "wrong exec option symbol: %s",
|
|
|
|
rb_id2name(id));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_FILE:
|
|
|
|
case T_ARRAY:
|
|
|
|
redirect:
|
|
|
|
check_exec_redirect(key, val, options);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
rb_raise(rb_eArgError, "wrong exec option");
|
|
|
|
}
|
|
|
|
|
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2008-04-28 04:11:46 +04:00
|
|
|
static int
|
|
|
|
check_exec_options_i(st_data_t st_key, st_data_t st_val, st_data_t arg)
|
|
|
|
{
|
|
|
|
VALUE key = (VALUE)st_key;
|
|
|
|
VALUE val = (VALUE)st_val;
|
|
|
|
struct rb_exec_arg *e = (struct rb_exec_arg *)arg;
|
|
|
|
return rb_exec_arg_addopt(e, key, val);
|
|
|
|
}
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
static VALUE
|
|
|
|
check_exec_fds(VALUE options)
|
|
|
|
{
|
|
|
|
VALUE h = rb_hash_new();
|
|
|
|
VALUE ary;
|
|
|
|
int index, i;
|
|
|
|
int maxhint = -1;
|
|
|
|
|
2008-12-03 18:02:10 +03:00
|
|
|
for (index = EXEC_OPTION_DUP2; index <= EXEC_OPTION_DUP2_CHILD; index++) {
|
2008-04-24 18:46:39 +04:00
|
|
|
ary = rb_ary_entry(options, index);
|
|
|
|
if (NIL_P(ary))
|
|
|
|
continue;
|
|
|
|
for (i = 0; i < RARRAY_LEN(ary); i++) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
|
|
|
int fd = FIX2INT(RARRAY_PTR(elt)[0]);
|
|
|
|
if (RTEST(rb_hash_lookup(h, INT2FIX(fd)))) {
|
|
|
|
rb_raise(rb_eArgError, "fd %d specified twice", fd);
|
|
|
|
}
|
2008-12-04 13:17:34 +03:00
|
|
|
if (index == EXEC_OPTION_OPEN || index == EXEC_OPTION_DUP2)
|
|
|
|
rb_hash_aset(h, INT2FIX(fd), Qtrue);
|
|
|
|
else if (index == EXEC_OPTION_DUP2_CHILD)
|
|
|
|
rb_hash_aset(h, INT2FIX(fd), RARRAY_PTR(elt)[1]);
|
|
|
|
else /* index == EXEC_OPTION_CLOSE */
|
|
|
|
rb_hash_aset(h, INT2FIX(fd), INT2FIX(-1));
|
2008-04-24 18:46:39 +04:00
|
|
|
if (maxhint < fd)
|
|
|
|
maxhint = fd;
|
2008-12-03 18:02:10 +03:00
|
|
|
if (index == EXEC_OPTION_DUP2 || index == EXEC_OPTION_DUP2_CHILD) {
|
2008-04-24 18:46:39 +04:00
|
|
|
fd = FIX2INT(RARRAY_PTR(elt)[1]);
|
|
|
|
if (maxhint < fd)
|
|
|
|
maxhint = fd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-03 18:02:10 +03:00
|
|
|
|
|
|
|
ary = rb_ary_entry(options, EXEC_OPTION_DUP2_CHILD);
|
|
|
|
if (!NIL_P(ary)) {
|
|
|
|
for (i = 0; i < RARRAY_LEN(ary); i++) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
2008-12-04 13:17:34 +03:00
|
|
|
int newfd = FIX2INT(RARRAY_PTR(elt)[0]);
|
2008-12-03 18:02:10 +03:00
|
|
|
int oldfd = FIX2INT(RARRAY_PTR(elt)[1]);
|
2008-12-04 13:17:34 +03:00
|
|
|
int lastfd = oldfd;
|
|
|
|
VALUE val = rb_hash_lookup(h, INT2FIX(lastfd));
|
|
|
|
long depth = 0;
|
|
|
|
while (FIXNUM_P(val) && 0 <= FIX2INT(val)) {
|
|
|
|
lastfd = FIX2INT(val);
|
|
|
|
val = rb_hash_lookup(h, val);
|
|
|
|
if (RARRAY_LEN(ary) < depth)
|
|
|
|
rb_raise(rb_eArgError, "cyclic child fd redirection from %d", oldfd);
|
|
|
|
depth++;
|
|
|
|
}
|
|
|
|
if (val != Qtrue)
|
2008-12-03 18:02:10 +03:00
|
|
|
rb_raise(rb_eArgError, "child fd %d is not redirected", oldfd);
|
2008-12-04 13:17:34 +03:00
|
|
|
if (oldfd != lastfd) {
|
|
|
|
VALUE val2;
|
|
|
|
rb_ary_store(elt, 1, INT2FIX(lastfd));
|
|
|
|
rb_hash_aset(h, INT2FIX(newfd), INT2FIX(lastfd));
|
|
|
|
val = INT2FIX(oldfd);
|
|
|
|
while (FIXNUM_P(val2 = rb_hash_lookup(h, val))) {
|
|
|
|
rb_hash_aset(h, val, INT2FIX(lastfd));
|
|
|
|
val = val2;
|
|
|
|
}
|
2008-12-03 18:02:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-30 09:40:19 +04:00
|
|
|
if (rb_ary_entry(options, EXEC_OPTION_CLOSE_OTHERS) != Qfalse) {
|
2008-04-24 18:46:39 +04:00
|
|
|
rb_ary_store(options, EXEC_OPTION_CLOSE_OTHERS, INT2FIX(maxhint));
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
2008-04-28 04:11:46 +04:00
|
|
|
static void
|
|
|
|
rb_check_exec_options(VALUE opthash, struct rb_exec_arg *e)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
2008-04-28 04:11:46 +04:00
|
|
|
if (RHASH_EMPTY_P(opthash))
|
|
|
|
return;
|
|
|
|
st_foreach(RHASH_TBL(opthash), check_exec_options_i, (st_data_t)e);
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
check_exec_env_i(st_data_t st_key, st_data_t st_val, st_data_t arg)
|
|
|
|
{
|
|
|
|
VALUE key = (VALUE)st_key;
|
|
|
|
VALUE val = (VALUE)st_val;
|
|
|
|
VALUE env = (VALUE)arg;
|
|
|
|
char *k;
|
|
|
|
|
|
|
|
k = StringValueCStr(key);
|
|
|
|
if (strchr(k, '='))
|
|
|
|
rb_raise(rb_eArgError, "environment name contains a equal : %s", k);
|
|
|
|
|
|
|
|
if (!NIL_P(val))
|
|
|
|
StringValueCStr(val);
|
|
|
|
|
|
|
|
rb_ary_push(env, hide_obj(rb_assoc_new(key, val)));
|
|
|
|
|
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2008-04-24 19:34:15 +04:00
|
|
|
rb_check_exec_env(VALUE hash)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
VALUE env;
|
|
|
|
|
|
|
|
env = hide_obj(rb_ary_new());
|
|
|
|
st_foreach(RHASH_TBL(hash), check_exec_env_i, (st_data_t)env);
|
|
|
|
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_check_argv(int argc, VALUE *argv)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
|
|
|
VALUE tmp, prog;
|
|
|
|
int i;
|
2007-09-20 12:28:03 +04:00
|
|
|
const char *name = 0;
|
2004-02-16 09:45:32 +03:00
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments");
|
|
|
|
}
|
|
|
|
|
|
|
|
prog = 0;
|
|
|
|
tmp = rb_check_array_type(argv[0]);
|
|
|
|
if (!NIL_P(tmp)) {
|
2006-09-02 18:42:08 +04:00
|
|
|
if (RARRAY_LEN(tmp) != 2) {
|
2004-02-16 09:45:32 +03:00
|
|
|
rb_raise(rb_eArgError, "wrong first argument");
|
|
|
|
}
|
2006-09-02 18:42:08 +04:00
|
|
|
prog = RARRAY_PTR(tmp)[0];
|
|
|
|
argv[0] = RARRAY_PTR(tmp)[1];
|
2004-10-01 19:56:05 +04:00
|
|
|
SafeStringValue(prog);
|
2006-09-04 11:40:46 +04:00
|
|
|
StringValueCStr(prog);
|
2007-09-20 12:28:03 +04:00
|
|
|
prog = rb_str_new4(prog);
|
|
|
|
name = RSTRING_PTR(prog);
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
SafeStringValue(argv[i]);
|
2007-09-20 12:28:03 +04:00
|
|
|
argv[i] = rb_str_new4(argv[i]);
|
2006-09-04 11:40:46 +04:00
|
|
|
StringValueCStr(argv[i]);
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
2007-09-20 12:28:03 +04:00
|
|
|
security(name ? name : RSTRING_PTR(argv[0]));
|
2004-02-16 09:45:32 +03:00
|
|
|
return prog;
|
|
|
|
}
|
|
|
|
|
2008-04-28 04:11:46 +04:00
|
|
|
static VALUE
|
|
|
|
rb_exec_getargs(int *argc_p, VALUE **argv_p, int accept_shell, VALUE *env_ret, VALUE *opthash_ret, struct rb_exec_arg *e)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
VALUE hash, prog;
|
|
|
|
|
|
|
|
if (0 < *argc_p) {
|
|
|
|
hash = rb_check_convert_type((*argv_p)[*argc_p-1], T_HASH, "Hash", "to_hash");
|
|
|
|
if (!NIL_P(hash)) {
|
2008-04-28 04:11:46 +04:00
|
|
|
*opthash_ret = hash;
|
2008-04-24 18:46:39 +04:00
|
|
|
(*argc_p)--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 < *argc_p) {
|
|
|
|
hash = rb_check_convert_type((*argv_p)[0], T_HASH, "Hash", "to_hash");
|
|
|
|
if (!NIL_P(hash)) {
|
|
|
|
*env_ret = hash;
|
|
|
|
(*argc_p)--;
|
|
|
|
(*argv_p)++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
prog = rb_check_argv(*argc_p, *argv_p);
|
|
|
|
if (!prog) {
|
|
|
|
prog = (*argv_p)[0];
|
|
|
|
if (accept_shell && *argc_p == 1) {
|
|
|
|
*argc_p = 0;
|
|
|
|
*argv_p = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return prog;
|
|
|
|
}
|
|
|
|
|
2008-04-28 04:11:46 +04:00
|
|
|
static void
|
|
|
|
rb_exec_fillarg(VALUE prog, int argc, VALUE *argv, VALUE env, VALUE opthash, struct rb_exec_arg *e)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
2008-04-28 04:11:46 +04:00
|
|
|
VALUE options;
|
2008-04-24 18:46:39 +04:00
|
|
|
MEMZERO(e, struct rb_exec_arg, 1);
|
2008-04-28 04:11:46 +04:00
|
|
|
options = hide_obj(rb_ary_new());
|
|
|
|
e->options = options;
|
2008-04-24 18:46:39 +04:00
|
|
|
|
|
|
|
if (!NIL_P(opthash)) {
|
2008-04-28 04:11:46 +04:00
|
|
|
rb_check_exec_options(opthash, e);
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
if (!NIL_P(env)) {
|
|
|
|
env = rb_check_exec_env(env);
|
|
|
|
rb_ary_store(options, EXEC_OPTION_ENV, env);
|
|
|
|
}
|
|
|
|
|
|
|
|
e->argc = argc;
|
|
|
|
e->argv = argv;
|
|
|
|
e->prog = prog ? RSTRING_PTR(prog) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
2008-04-28 04:11:46 +04:00
|
|
|
rb_exec_arg_init(int argc, VALUE *argv, int accept_shell, struct rb_exec_arg *e)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
2008-04-28 04:11:46 +04:00
|
|
|
VALUE prog;
|
|
|
|
VALUE env = Qnil, opthash = Qnil;
|
|
|
|
prog = rb_exec_getargs(&argc, &argv, accept_shell, &env, &opthash, e);
|
|
|
|
rb_exec_fillarg(prog, argc, argv, env, opthash, e);
|
2008-04-24 18:46:39 +04:00
|
|
|
return prog;
|
|
|
|
}
|
|
|
|
|
2008-04-28 04:11:46 +04:00
|
|
|
void
|
2008-04-30 09:40:19 +04:00
|
|
|
rb_exec_arg_fixup(struct rb_exec_arg *e)
|
2008-04-28 04:11:46 +04:00
|
|
|
{
|
|
|
|
e->redirect_fds = check_exec_fds(e->options);
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2008-12-05 18:09:59 +03:00
|
|
|
* exec([env,] command... [,options])
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Replaces the current process by running the given external _command_.
|
2008-12-05 18:09:59 +03:00
|
|
|
* _command..._ is one of following forms.
|
|
|
|
*
|
2009-11-10 02:23:23 +03:00
|
|
|
* commandline : command line string which is passed to the standard shell
|
2008-12-05 18:09:59 +03:00
|
|
|
* cmdname, arg1, ... : command name and one or more arguments (no shell)
|
2009-02-22 19:25:06 +03:00
|
|
|
* [cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell)
|
2008-12-05 18:09:59 +03:00
|
|
|
*
|
|
|
|
* If single string is given as the command,
|
2008-12-06 04:05:57 +03:00
|
|
|
* it is taken as a command line that is subject to shell expansion before being executed.
|
2008-12-05 18:09:59 +03:00
|
|
|
*
|
2009-11-10 02:23:23 +03:00
|
|
|
* The standard shell means always <code>"/bin/sh"</code> on Unix-like systems,
|
2009-11-10 03:01:28 +03:00
|
|
|
* <code>ENV["RUBYSHELL"]</code> or <code>ENV["COMSPEC"]</code> on Windows NT series, and
|
2009-11-10 02:23:23 +03:00
|
|
|
* similar.
|
|
|
|
*
|
2008-12-05 18:09:59 +03:00
|
|
|
* If two or more +string+ given,
|
|
|
|
* the first is taken as a command name and
|
|
|
|
* the rest are passed as parameters to command with no shell expansion.
|
|
|
|
*
|
|
|
|
* If a two-element array at the beginning of the command,
|
|
|
|
* the first element is the command to be executed,
|
|
|
|
* and the second argument is used as the <code>argv[0]</code> value,
|
|
|
|
* which may show up in process listings.
|
|
|
|
*
|
2009-02-06 15:54:52 +03:00
|
|
|
* In order to execute the command, one of the <code>exec(2)</code>
|
|
|
|
* system calls is used, so the running command may inherit some of the environment
|
2008-10-04 17:33:22 +04:00
|
|
|
* of the original program (including open file descriptors).
|
2008-12-05 18:09:59 +03:00
|
|
|
* This behavior is modified by env and options.
|
2008-04-24 18:46:39 +04:00
|
|
|
* See <code>spawn</code> for details.
|
|
|
|
*
|
2008-12-05 18:09:59 +03:00
|
|
|
* Raises SystemCallError if the command couldn't execute (typically
|
2004-06-29 05:17:39 +04:00
|
|
|
* <code>Errno::ENOENT</code> when it was not found).
|
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* exec "echo *" # echoes list of files in current directory
|
|
|
|
* # never get here
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* exec "echo", "*" # echoes an asterisk
|
|
|
|
* # never get here
|
|
|
|
*/
|
|
|
|
|
2001-11-19 08:03:03 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_exec(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2008-04-28 04:11:46 +04:00
|
|
|
struct rb_exec_arg earg;
|
2008-12-23 16:15:54 +03:00
|
|
|
#define CHILD_ERRMSG_BUFLEN 80
|
|
|
|
char errmsg[CHILD_ERRMSG_BUFLEN] = { '\0' };
|
1998-01-16 15:19:22 +03:00
|
|
|
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
rb_exec_arg_init(argc, argv, TRUE, &earg);
|
2008-04-28 04:11:46 +04:00
|
|
|
if (NIL_P(rb_ary_entry(earg.options, EXEC_OPTION_CLOSE_OTHERS)))
|
|
|
|
rb_exec_arg_addopt(&earg, ID2SYM(rb_intern("close_others")), Qfalse);
|
2008-04-30 09:40:19 +04:00
|
|
|
rb_exec_arg_fixup(&earg);
|
2008-04-24 18:46:39 +04:00
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_exec_err(&earg, errmsg, sizeof(errmsg));
|
2008-12-23 16:15:54 +03:00
|
|
|
if (errmsg[0])
|
|
|
|
rb_sys_fail(errmsg);
|
2008-04-28 04:11:46 +04:00
|
|
|
rb_sys_fail(earg.prog);
|
2004-02-16 09:45:32 +03:00
|
|
|
return Qnil; /* dummy */
|
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2008-12-23 16:15:54 +03:00
|
|
|
#define ERRMSG(str) do { if (errmsg && 0 < errmsg_buflen) strlcpy(errmsg, (str), errmsg_buflen); } while (0)
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
/*#define DEBUG_REDIRECT*/
|
|
|
|
#if defined(DEBUG_REDIRECT)
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
static void
|
|
|
|
ttyprintf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
FILE *tty;
|
|
|
|
int save = errno;
|
2008-12-04 18:35:08 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
tty = fopen("con", "w");
|
|
|
|
#else
|
2008-04-24 18:46:39 +04:00
|
|
|
tty = fopen("/dev/tty", "w");
|
2008-12-04 18:35:08 +03:00
|
|
|
#endif
|
2008-04-24 18:46:39 +04:00
|
|
|
if (!tty)
|
|
|
|
return;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vfprintf(tty, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
fclose(tty);
|
|
|
|
errno = save;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
redirect_dup(int oldfd)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = dup(oldfd);
|
|
|
|
ttyprintf("dup(%d) => %d\n", oldfd, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
redirect_dup2(int oldfd, int newfd)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = dup2(oldfd, newfd);
|
|
|
|
ttyprintf("dup2(%d, %d)\n", oldfd, newfd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
redirect_close(int fd)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = close(fd);
|
|
|
|
ttyprintf("close(%d)\n", fd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
redirect_open(const char *pathname, int flags, mode_t perm)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
ret = open(pathname, flags, perm);
|
|
|
|
ttyprintf("open(\"%s\", 0x%x, 0%o) => %d\n", pathname, flags, perm, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define redirect_dup(oldfd) dup(oldfd)
|
2010-12-24 02:46:39 +03:00
|
|
|
#define redirect_dup2(oldfd, newfd) dup2((oldfd), (newfd))
|
2008-04-24 18:46:39 +04:00
|
|
|
#define redirect_close(fd) close(fd)
|
2010-12-24 02:46:39 +03:00
|
|
|
#define redirect_open(pathname, flags, perm) open((pathname), (flags), (perm))
|
2008-04-24 18:46:39 +04:00
|
|
|
#endif
|
|
|
|
|
2008-05-12 18:15:32 +04:00
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
save_redirect_fd(int fd, VALUE save, char *errmsg, size_t errmsg_buflen)
|
2008-05-12 18:15:32 +04:00
|
|
|
{
|
|
|
|
if (!NIL_P(save)) {
|
|
|
|
VALUE newary;
|
|
|
|
int save_fd = redirect_dup(fd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (save_fd == -1) {
|
2009-12-31 08:22:11 +03:00
|
|
|
if (errno == EBADF)
|
|
|
|
return 0;
|
2008-12-23 16:15:54 +03:00
|
|
|
ERRMSG("dup");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-05-12 18:15:32 +04:00
|
|
|
newary = rb_ary_entry(save, EXEC_OPTION_DUP2);
|
|
|
|
if (NIL_P(newary)) {
|
|
|
|
newary = hide_obj(rb_ary_new());
|
|
|
|
rb_ary_store(save, EXEC_OPTION_DUP2, newary);
|
|
|
|
}
|
|
|
|
rb_ary_push(newary,
|
|
|
|
hide_obj(rb_assoc_new(INT2FIX(fd), INT2FIX(save_fd))));
|
|
|
|
|
|
|
|
newary = rb_ary_entry(save, EXEC_OPTION_CLOSE);
|
|
|
|
if (NIL_P(newary)) {
|
|
|
|
newary = hide_obj(rb_ary_new());
|
|
|
|
rb_ary_store(save, EXEC_OPTION_CLOSE, newary);
|
|
|
|
}
|
|
|
|
rb_ary_push(newary, hide_obj(rb_assoc_new(INT2FIX(save_fd), Qnil)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
save_env_i(VALUE i, VALUE ary, int argc, VALUE *argv)
|
|
|
|
{
|
|
|
|
rb_ary_push(ary, hide_obj(rb_ary_dup(argv[0])));
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
save_env(VALUE save)
|
|
|
|
{
|
|
|
|
if (!NIL_P(save) && NIL_P(rb_ary_entry(save, EXEC_OPTION_ENV))) {
|
|
|
|
VALUE env = rb_const_get(rb_cObject, rb_intern("ENV"));
|
|
|
|
if (RTEST(env)) {
|
|
|
|
VALUE ary = hide_obj(rb_ary_new());
|
|
|
|
rb_block_call(env, rb_intern("each"), 0, 0, save_env_i,
|
|
|
|
(VALUE)ary);
|
|
|
|
rb_ary_store(save, EXEC_OPTION_ENV, ary);
|
|
|
|
}
|
|
|
|
rb_ary_store(save, EXEC_OPTION_UNSETENV_OTHERS, Qtrue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
static int
|
|
|
|
intcmp(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
return *(int*)a - *(int*)b;
|
|
|
|
}
|
|
|
|
|
2008-12-04 18:35:08 +03:00
|
|
|
static int
|
|
|
|
intrcmp(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
return *(int*)b - *(int*)a;
|
|
|
|
}
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
run_exec_dup2(VALUE ary, VALUE save, char *errmsg, size_t errmsg_buflen)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
2009-04-25 13:26:22 +04:00
|
|
|
long n, i;
|
2008-04-24 18:46:39 +04:00
|
|
|
int ret;
|
|
|
|
int extra_fd = -1;
|
|
|
|
struct fd_pair {
|
|
|
|
int oldfd;
|
|
|
|
int newfd;
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
long older_index;
|
2009-09-22 01:08:23 +04:00
|
|
|
long num_newer;
|
2008-04-24 18:46:39 +04:00
|
|
|
} *pairs = 0;
|
|
|
|
|
|
|
|
n = RARRAY_LEN(ary);
|
2008-12-23 16:15:54 +03:00
|
|
|
pairs = (struct fd_pair *)malloc(sizeof(struct fd_pair) * n);
|
|
|
|
if (pairs == NULL) {
|
|
|
|
ERRMSG("malloc");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
|
|
|
|
/* initialize oldfd and newfd: O(n) */
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
|
|
|
pairs[i].oldfd = FIX2INT(RARRAY_PTR(elt)[1]);
|
|
|
|
pairs[i].newfd = FIX2INT(RARRAY_PTR(elt)[0]); /* unique */
|
|
|
|
pairs[i].older_index = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sort the table by oldfd: O(n log n) */
|
2008-12-05 12:58:23 +03:00
|
|
|
if (!RTEST(save))
|
2008-12-04 18:35:08 +03:00
|
|
|
qsort(pairs, n, sizeof(struct fd_pair), intcmp);
|
|
|
|
else
|
|
|
|
qsort(pairs, n, sizeof(struct fd_pair), intrcmp);
|
2008-04-24 18:46:39 +04:00
|
|
|
|
|
|
|
/* initialize older_index and num_newer: O(n log n) */
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
int newfd = pairs[i].newfd;
|
|
|
|
struct fd_pair key, *found;
|
|
|
|
key.oldfd = newfd;
|
|
|
|
found = bsearch(&key, pairs, n, sizeof(struct fd_pair), intcmp);
|
|
|
|
pairs[i].num_newer = 0;
|
|
|
|
if (found) {
|
|
|
|
while (pairs < found && (found-1)->oldfd == newfd)
|
|
|
|
found--;
|
|
|
|
while (found < pairs+n && found->oldfd == newfd) {
|
|
|
|
pairs[i].num_newer++;
|
|
|
|
found->older_index = i;
|
|
|
|
found++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* non-cyclic redirection: O(n) */
|
|
|
|
for (i = 0; i < n; i++) {
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
long j = i;
|
2008-04-24 18:46:39 +04:00
|
|
|
while (j != -1 && pairs[j].oldfd != -1 && pairs[j].num_newer == 0) {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (save_redirect_fd(pairs[j].newfd, save, errmsg, errmsg_buflen) < 0)
|
2008-10-09 18:31:32 +04:00
|
|
|
goto fail;
|
2008-04-24 18:46:39 +04:00
|
|
|
ret = redirect_dup2(pairs[j].oldfd, pairs[j].newfd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("dup2");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
pairs[j].oldfd = -1;
|
|
|
|
j = pairs[j].older_index;
|
|
|
|
if (j != -1)
|
|
|
|
pairs[j].num_newer--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cyclic redirection: O(n) */
|
|
|
|
for (i = 0; i < n; i++) {
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
long j;
|
2008-04-24 18:46:39 +04:00
|
|
|
if (pairs[i].oldfd == -1)
|
|
|
|
continue;
|
|
|
|
if (pairs[i].oldfd == pairs[i].newfd) { /* self cycle */
|
2008-04-25 05:55:22 +04:00
|
|
|
#ifdef F_GETFD
|
2008-04-24 18:46:39 +04:00
|
|
|
int fd = pairs[i].oldfd;
|
|
|
|
ret = fcntl(fd, F_GETFD);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("fcntl(F_GETFD)");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
if (ret & FD_CLOEXEC) {
|
|
|
|
ret &= ~FD_CLOEXEC;
|
|
|
|
ret = fcntl(fd, F_SETFD, ret);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("fcntl(F_SETFD)");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
2008-04-25 05:55:22 +04:00
|
|
|
#endif
|
2008-04-24 18:46:39 +04:00
|
|
|
pairs[i].oldfd = -1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (extra_fd == -1) {
|
|
|
|
extra_fd = redirect_dup(pairs[i].oldfd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (extra_fd == -1) {
|
|
|
|
ERRMSG("dup");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ret = redirect_dup2(pairs[i].oldfd, extra_fd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("dup2");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
pairs[i].oldfd = extra_fd;
|
|
|
|
j = pairs[i].older_index;
|
|
|
|
pairs[i].older_index = -1;
|
|
|
|
while (j != -1) {
|
|
|
|
ret = redirect_dup2(pairs[j].oldfd, pairs[j].newfd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("dup2");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
pairs[j].oldfd = -1;
|
|
|
|
j = pairs[j].older_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (extra_fd != -1) {
|
|
|
|
ret = redirect_close(extra_fd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("close");
|
2008-04-24 18:46:39 +04:00
|
|
|
goto fail;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
|
2008-08-04 09:08:57 +04:00
|
|
|
xfree(pairs);
|
2008-04-24 18:46:39 +04:00
|
|
|
return 0;
|
|
|
|
|
2008-08-04 09:08:57 +04:00
|
|
|
fail:
|
|
|
|
xfree(pairs);
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
run_exec_close(VALUE ary, char *errmsg, size_t errmsg_buflen)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
for (i = 0; i < RARRAY_LEN(ary); i++) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
|
|
|
int fd = FIX2INT(RARRAY_PTR(elt)[0]);
|
|
|
|
ret = redirect_close(fd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("close");
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
run_exec_open(VALUE ary, VALUE save, char *errmsg, size_t errmsg_buflen)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
int i, ret;
|
|
|
|
|
|
|
|
for (i = 0; i < RARRAY_LEN(ary);) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
|
|
|
int fd = FIX2INT(RARRAY_PTR(elt)[0]);
|
|
|
|
VALUE param = RARRAY_PTR(elt)[1];
|
|
|
|
char *path = RSTRING_PTR(RARRAY_PTR(param)[0]);
|
|
|
|
int flags = NUM2INT(RARRAY_PTR(param)[1]);
|
|
|
|
int perm = NUM2INT(RARRAY_PTR(param)[2]);
|
|
|
|
int need_close = 1;
|
|
|
|
int fd2 = redirect_open(path, flags, perm);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (fd2 == -1) {
|
|
|
|
ERRMSG("open");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
while (i < RARRAY_LEN(ary) &&
|
|
|
|
(elt = RARRAY_PTR(ary)[i], RARRAY_PTR(elt)[1] == param)) {
|
|
|
|
fd = FIX2INT(RARRAY_PTR(elt)[0]);
|
|
|
|
if (fd == fd2) {
|
|
|
|
need_close = 0;
|
|
|
|
}
|
|
|
|
else {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (save_redirect_fd(fd, save, errmsg, errmsg_buflen) < 0)
|
2008-05-12 18:15:32 +04:00
|
|
|
return -1;
|
2008-04-24 18:46:39 +04:00
|
|
|
ret = redirect_dup2(fd2, fd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("dup2");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (need_close) {
|
|
|
|
ret = redirect_close(fd2);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("close");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-03 18:02:10 +03:00
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
run_exec_dup2_child(VALUE ary, VALUE save, char *errmsg, size_t errmsg_buflen)
|
2008-12-03 18:02:10 +03:00
|
|
|
{
|
|
|
|
int i, ret;
|
|
|
|
for (i = 0; i < RARRAY_LEN(ary); i++) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
|
|
|
int newfd = FIX2INT(RARRAY_PTR(elt)[0]);
|
|
|
|
int oldfd = FIX2INT(RARRAY_PTR(elt)[1]);
|
|
|
|
|
2008-12-23 16:15:54 +03:00
|
|
|
if (save_redirect_fd(newfd, save, errmsg, errmsg_buflen) < 0)
|
2008-12-03 18:02:10 +03:00
|
|
|
return -1;
|
|
|
|
ret = redirect_dup2(oldfd, newfd);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (ret == -1) {
|
|
|
|
ERRMSG("dup2");
|
|
|
|
return -1;
|
|
|
|
}
|
2008-12-03 18:02:10 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
#ifdef HAVE_SETPGID
|
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
run_exec_pgroup(VALUE obj, VALUE save, char *errmsg, size_t errmsg_buflen)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If FD_CLOEXEC is available, rb_fork waits the child's execve.
|
|
|
|
* So setpgid is done in the child when rb_fork is returned in the parent.
|
|
|
|
* No race condition, even without setpgid from the parent.
|
|
|
|
* (Is there an environment which has setpgid but FD_CLOEXEC?)
|
2008-05-12 18:15:32 +04:00
|
|
|
*/
|
2008-12-23 16:15:54 +03:00
|
|
|
int ret;
|
2008-06-03 08:36:28 +04:00
|
|
|
pid_t pgroup;
|
2008-05-12 18:15:32 +04:00
|
|
|
if (!NIL_P(save)) {
|
|
|
|
/* maybe meaningless with no fork environment... */
|
|
|
|
rb_ary_store(save, EXEC_OPTION_PGROUP, PIDT2NUM(getpgrp()));
|
|
|
|
}
|
2008-06-03 08:36:28 +04:00
|
|
|
pgroup = NUM2PIDT(obj);
|
2008-04-24 18:46:39 +04:00
|
|
|
if (pgroup == 0) {
|
|
|
|
pgroup = getpid();
|
|
|
|
}
|
2008-12-23 16:15:54 +03:00
|
|
|
ret = setpgid(getpid(), pgroup);
|
|
|
|
if (ret == -1) ERRMSG("setpgid");
|
|
|
|
return ret;
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
#if defined(HAVE_SETRLIMIT) && defined(RLIM2NUM)
|
2008-04-24 18:46:39 +04:00
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
run_exec_rlimit(VALUE ary, VALUE save, char *errmsg, size_t errmsg_buflen)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < RARRAY_LEN(ary); i++) {
|
|
|
|
VALUE elt = RARRAY_PTR(ary)[i];
|
|
|
|
int rtype = NUM2INT(RARRAY_PTR(elt)[0]);
|
|
|
|
struct rlimit rlim;
|
2008-05-12 18:15:32 +04:00
|
|
|
if (!NIL_P(save)) {
|
2008-07-01 12:31:55 +04:00
|
|
|
VALUE tmp, newary;
|
2008-12-23 16:15:54 +03:00
|
|
|
if (getrlimit(rtype, &rlim) == -1) {
|
|
|
|
ERRMSG("getrlimit");
|
2008-05-12 18:15:32 +04:00
|
|
|
return -1;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-07-01 12:31:55 +04:00
|
|
|
tmp = hide_obj(rb_ary_new3(3, RARRAY_PTR(elt)[0],
|
|
|
|
RLIM2NUM(rlim.rlim_cur),
|
|
|
|
RLIM2NUM(rlim.rlim_max)));
|
|
|
|
newary = rb_ary_entry(save, EXEC_OPTION_RLIMIT);
|
2008-05-12 18:15:32 +04:00
|
|
|
if (NIL_P(newary)) {
|
|
|
|
newary = hide_obj(rb_ary_new());
|
|
|
|
rb_ary_store(save, EXEC_OPTION_RLIMIT, newary);
|
|
|
|
}
|
|
|
|
rb_ary_push(newary, tmp);
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
rlim.rlim_cur = NUM2RLIM(RARRAY_PTR(elt)[1]);
|
|
|
|
rlim.rlim_max = NUM2RLIM(RARRAY_PTR(elt)[2]);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (setrlimit(rtype, &rlim) == -1) {
|
|
|
|
ERRMSG("setrlimit");
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-05-12 18:15:32 +04:00
|
|
|
int
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_run_exec_options_err(const struct rb_exec_arg *e, struct rb_exec_arg *s, char *errmsg, size_t errmsg_buflen)
|
2008-04-24 18:46:39 +04:00
|
|
|
{
|
|
|
|
VALUE options = e->options;
|
2008-05-12 18:15:32 +04:00
|
|
|
VALUE soptions = Qnil;
|
2008-04-24 18:46:39 +04:00
|
|
|
VALUE obj;
|
|
|
|
|
|
|
|
if (!RTEST(options))
|
|
|
|
return 0;
|
|
|
|
|
2008-05-12 18:15:32 +04:00
|
|
|
if (s) {
|
|
|
|
s->argc = 0;
|
|
|
|
s->argv = NULL;
|
|
|
|
s->prog = NULL;
|
|
|
|
s->options = soptions = hide_obj(rb_ary_new());
|
|
|
|
s->redirect_fds = Qnil;
|
|
|
|
}
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
#ifdef HAVE_SETPGID
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_PGROUP);
|
|
|
|
if (RTEST(obj)) {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (run_exec_pgroup(obj, soptions, errmsg, errmsg_buflen) == -1)
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
#if defined(HAVE_SETRLIMIT) && defined(RLIM2NUM)
|
2008-04-24 18:46:39 +04:00
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_RLIMIT);
|
|
|
|
if (!NIL_P(obj)) {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (run_exec_rlimit(obj, soptions, errmsg, errmsg_buflen) == -1)
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_UNSETENV_OTHERS);
|
|
|
|
if (RTEST(obj)) {
|
2008-05-12 18:15:32 +04:00
|
|
|
save_env(soptions);
|
2008-04-24 18:46:39 +04:00
|
|
|
rb_env_clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_ENV);
|
|
|
|
if (!NIL_P(obj)) {
|
|
|
|
int i;
|
2008-05-12 18:15:32 +04:00
|
|
|
save_env(soptions);
|
2008-04-24 18:46:39 +04:00
|
|
|
for (i = 0; i < RARRAY_LEN(obj); i++) {
|
|
|
|
VALUE pair = RARRAY_PTR(obj)[i];
|
|
|
|
VALUE key = RARRAY_PTR(pair)[0];
|
|
|
|
VALUE val = RARRAY_PTR(pair)[1];
|
|
|
|
if (NIL_P(val))
|
|
|
|
ruby_setenv(StringValueCStr(key), 0);
|
|
|
|
else
|
|
|
|
ruby_setenv(StringValueCStr(key), StringValueCStr(val));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_CHDIR);
|
|
|
|
if (!NIL_P(obj)) {
|
2008-05-12 18:15:32 +04:00
|
|
|
if (!NIL_P(soptions)) {
|
|
|
|
char *cwd = my_getcwd();
|
|
|
|
rb_ary_store(soptions, EXEC_OPTION_CHDIR,
|
|
|
|
hide_obj(rb_str_new2(cwd)));
|
2008-10-09 18:24:15 +04:00
|
|
|
xfree(cwd);
|
2008-05-12 18:15:32 +04:00
|
|
|
}
|
2008-12-23 16:15:54 +03:00
|
|
|
if (chdir(RSTRING_PTR(obj)) == -1) {
|
|
|
|
ERRMSG("chdir");
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_UMASK);
|
|
|
|
if (!NIL_P(obj)) {
|
2011-01-28 05:00:08 +03:00
|
|
|
mode_t mask = NUM2MODET(obj);
|
2008-05-12 18:15:32 +04:00
|
|
|
mode_t oldmask = umask(mask); /* never fail */
|
|
|
|
if (!NIL_P(soptions))
|
2011-02-08 10:01:23 +03:00
|
|
|
rb_ary_store(soptions, EXEC_OPTION_UMASK, MODET2NUM(oldmask));
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_DUP2);
|
|
|
|
if (!NIL_P(obj)) {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (run_exec_dup2(obj, soptions, errmsg, errmsg_buflen) == -1)
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_CLOSE);
|
|
|
|
if (!NIL_P(obj)) {
|
2008-05-12 18:15:32 +04:00
|
|
|
if (!NIL_P(soptions))
|
|
|
|
rb_warn("cannot close fd before spawn");
|
|
|
|
else {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (run_exec_close(obj, errmsg, errmsg_buflen) == -1)
|
2008-05-12 18:15:32 +04:00
|
|
|
return -1;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
|
2008-04-25 05:55:22 +04:00
|
|
|
#ifdef HAVE_FORK
|
2008-04-24 18:46:39 +04:00
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_CLOSE_OTHERS);
|
2008-04-28 04:11:46 +04:00
|
|
|
if (obj != Qfalse) {
|
2009-04-25 13:26:22 +04:00
|
|
|
rb_close_before_exec(3, FIX2INT(obj), e->redirect_fds);
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
2008-04-25 05:55:22 +04:00
|
|
|
#endif
|
2008-04-24 18:46:39 +04:00
|
|
|
|
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_OPEN);
|
|
|
|
if (!NIL_P(obj)) {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (run_exec_open(obj, soptions, errmsg, errmsg_buflen) == -1)
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-12-03 18:02:10 +03:00
|
|
|
obj = rb_ary_entry(options, EXEC_OPTION_DUP2_CHILD);
|
|
|
|
if (!NIL_P(obj)) {
|
2008-12-23 16:15:54 +03:00
|
|
|
if (run_exec_dup2_child(obj, soptions, errmsg, errmsg_buflen) == -1)
|
2008-12-03 18:02:10 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
int
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_run_exec_options(const struct rb_exec_arg *e, struct rb_exec_arg *s)
|
|
|
|
{
|
|
|
|
return rb_run_exec_options_err(e, s, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rb_exec_err(const struct rb_exec_arg *e, char *errmsg, size_t errmsg_buflen)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
|
|
|
int argc = e->argc;
|
|
|
|
VALUE *argv = e->argv;
|
|
|
|
const char *prog = e->prog;
|
2001-03-28 12:43:25 +04:00
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
if (rb_run_exec_options_err(e, NULL, errmsg, errmsg_buflen) < 0) {
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
if (argc == 0) {
|
|
|
|
rb_proc_exec(prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
2004-02-16 09:45:32 +03:00
|
|
|
rb_proc_exec_n(argc, argv, prog);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-03-29 15:17:21 +04:00
|
|
|
return -1;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
int
|
|
|
|
rb_exec(const struct rb_exec_arg *e)
|
|
|
|
{
|
2009-03-21 02:19:52 +03:00
|
|
|
#if !defined FD_CLOEXEC && !defined HAVE_SPAWNV
|
|
|
|
char errmsg[80] = { '\0' };
|
|
|
|
int ret = rb_exec_err(e, errmsg, sizeof(errmsg));
|
|
|
|
preserving_errno(
|
|
|
|
if (errmsg[0]) {
|
|
|
|
fprintf(stderr, "%s\n", errmsg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "%s:%d: command not found: %s\n",
|
|
|
|
rb_sourcefile(), rb_sourceline(), e->prog);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
return ret;
|
|
|
|
#else
|
2009-02-05 14:33:19 +03:00
|
|
|
return rb_exec_err(e, NULL, 0);
|
2009-03-21 02:19:52 +03:00
|
|
|
#endif
|
2009-02-05 14:33:19 +03:00
|
|
|
}
|
|
|
|
|
2008-04-25 09:45:28 +04:00
|
|
|
#ifdef HAVE_FORK
|
2007-09-20 12:28:03 +04:00
|
|
|
static int
|
2008-12-23 16:15:54 +03:00
|
|
|
rb_exec_atfork(void* arg, char *errmsg, size_t errmsg_buflen)
|
2007-09-20 12:28:03 +04:00
|
|
|
{
|
2008-05-11 08:15:29 +04:00
|
|
|
rb_thread_atfork_before_exec();
|
2009-02-05 14:33:19 +03:00
|
|
|
return rb_exec_err(arg, errmsg, errmsg_buflen);
|
2007-09-20 12:28:03 +04:00
|
|
|
}
|
2008-04-25 09:45:28 +04:00
|
|
|
#endif
|
2007-09-20 12:28:03 +04:00
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
#ifdef HAVE_FORK
|
2004-03-29 15:17:21 +04:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
#if SIZEOF_INT == SIZEOF_LONG
|
2005-09-14 12:30:16 +04:00
|
|
|
#define proc_syswait (VALUE (*)(VALUE))rb_syswait
|
2004-03-29 15:17:21 +04:00
|
|
|
#else
|
|
|
|
static VALUE
|
2006-08-13 13:44:16 +04:00
|
|
|
proc_syswait(VALUE pid)
|
2004-03-29 15:17:21 +04:00
|
|
|
{
|
|
|
|
rb_syswait((int)pid);
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2008-04-24 18:46:39 +04:00
|
|
|
static int
|
|
|
|
move_fds_to_avoid_crash(int *fdp, int n, VALUE fds)
|
|
|
|
{
|
|
|
|
long min = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
int ret;
|
|
|
|
while (RTEST(rb_hash_lookup(fds, INT2FIX(fdp[i])))) {
|
|
|
|
if (min <= fdp[i])
|
|
|
|
min = fdp[i]+1;
|
|
|
|
while (RTEST(rb_hash_lookup(fds, INT2FIX(min))))
|
|
|
|
min++;
|
|
|
|
ret = fcntl(fdp[i], F_DUPFD, min);
|
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
close(fdp[i]);
|
|
|
|
fdp[i] = ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pipe_nocrash(int filedes[2], VALUE fds)
|
|
|
|
{
|
|
|
|
int ret;
|
2008-07-05 18:12:53 +04:00
|
|
|
ret = rb_pipe(filedes);
|
2008-04-24 18:46:39 +04:00
|
|
|
if (ret == -1)
|
|
|
|
return -1;
|
|
|
|
if (RTEST(fds)) {
|
|
|
|
int save = errno;
|
|
|
|
if (move_fds_to_avoid_crash(filedes, 2, fds) == -1) {
|
|
|
|
close(filedes[0]);
|
|
|
|
close(filedes[1]);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
errno = save;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-09-03 01:40:55 +04:00
|
|
|
struct chfunc_protect_t {
|
|
|
|
int (*chfunc)(void*, char *, size_t);
|
|
|
|
void *arg;
|
|
|
|
char *errmsg;
|
|
|
|
size_t buflen;
|
|
|
|
};
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
chfunc_protect(VALUE arg)
|
|
|
|
{
|
|
|
|
struct chfunc_protect_t *p = (struct chfunc_protect_t *)arg;
|
|
|
|
|
|
|
|
return (VALUE)(*p->chfunc)(p->arg, p->errmsg, p->buflen);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
2004-03-29 15:17:21 +04:00
|
|
|
/*
|
|
|
|
* Forks child process, and returns the process ID in the parent
|
|
|
|
* process.
|
|
|
|
*
|
|
|
|
* If +status+ is given, protects from any exceptions and sets the
|
|
|
|
* jump status to it.
|
|
|
|
*
|
|
|
|
* In the child process, just returns 0 if +chfunc+ is +NULL+.
|
|
|
|
* Otherwise +chfunc+ will be called with +charg+, and then the child
|
|
|
|
* process exits with +EXIT_SUCCESS+ when it returned zero.
|
|
|
|
*
|
|
|
|
* In the case of the function is called and returns non-zero value,
|
2007-12-31 15:55:50 +03:00
|
|
|
* the child process exits with non-+EXIT_SUCCESS+ value (normally
|
2004-03-29 15:17:21 +04:00
|
|
|
* 127). And, on the platforms where +FD_CLOEXEC+ is available,
|
|
|
|
* +errno+ is propagated to the parent process, and this function
|
|
|
|
* returns -1 in the parent process. On the other platforms, just
|
|
|
|
* returns pid.
|
|
|
|
*
|
2008-04-24 18:46:39 +04:00
|
|
|
* If fds is not Qnil, internal pipe for the errno propagation is
|
|
|
|
* arranged to avoid conflicts of the hash keys in +fds+.
|
|
|
|
*
|
2004-03-29 15:17:21 +04:00
|
|
|
* +chfunc+ must not raise any exceptions.
|
|
|
|
*/
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_fork_err(int *status, int (*chfunc)(void*, char *, size_t), void *charg, VALUE fds,
|
2008-12-23 16:15:54 +03:00
|
|
|
char *errmsg, size_t errmsg_buflen)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pid;
|
|
|
|
int err, state = 0;
|
2004-03-29 15:17:21 +04:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
int ep[2];
|
2010-09-03 01:40:55 +04:00
|
|
|
VALUE io = Qnil;
|
2004-03-29 15:17:21 +04:00
|
|
|
#endif
|
2004-02-16 09:45:32 +03:00
|
|
|
|
2007-03-20 03:12:51 +03:00
|
|
|
#define prefork() ( \
|
|
|
|
rb_io_flush(rb_stdout), \
|
|
|
|
rb_io_flush(rb_stderr) \
|
|
|
|
)
|
|
|
|
prefork();
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
if (chfunc) {
|
2008-04-24 18:46:39 +04:00
|
|
|
if (pipe_nocrash(ep, fds)) return -1;
|
2004-03-29 15:17:21 +04:00
|
|
|
if (fcntl(ep[1], F_SETFD, FD_CLOEXEC)) {
|
|
|
|
preserving_errno((close(ep[0]), close(ep[1])));
|
2004-02-16 09:45:32 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2008-11-24 18:08:24 +03:00
|
|
|
for (; before_fork(), (pid = fork()) < 0; prefork()) {
|
|
|
|
after_fork();
|
2004-02-16 09:45:32 +03:00
|
|
|
switch (errno) {
|
|
|
|
case EAGAIN:
|
|
|
|
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
|
|
|
|
case EWOULDBLOCK:
|
|
|
|
#endif
|
|
|
|
if (!status && !chfunc) {
|
|
|
|
rb_thread_sleep(1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_protect((VALUE (*)())rb_thread_sleep, 1, &state);
|
|
|
|
if (status) *status = state;
|
|
|
|
if (!state) continue;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
if (chfunc) {
|
2004-03-29 15:17:21 +04:00
|
|
|
preserving_errno((close(ep[0]), close(ep[1])));
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (state && !status) rb_jump_tag(state);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pid) {
|
2008-12-13 19:40:01 +03:00
|
|
|
forked_child = 1;
|
2004-02-16 09:45:32 +03:00
|
|
|
if (chfunc) {
|
2010-09-03 01:40:55 +04:00
|
|
|
struct chfunc_protect_t arg;
|
|
|
|
arg.chfunc = chfunc;
|
|
|
|
arg.arg = charg;
|
|
|
|
arg.errmsg = errmsg;
|
|
|
|
arg.buflen = errmsg_buflen;
|
2004-03-29 15:17:21 +04:00
|
|
|
#ifdef FD_CLOEXEC
|
|
|
|
close(ep[0]);
|
|
|
|
#endif
|
2010-09-03 01:40:55 +04:00
|
|
|
if (!(int)rb_protect(chfunc_protect, (VALUE)&arg, &state)) _exit(EXIT_SUCCESS);
|
2004-03-29 15:17:21 +04:00
|
|
|
#ifdef FD_CLOEXEC
|
2010-09-03 01:40:55 +04:00
|
|
|
if (write(ep[1], &state, sizeof(state)) == sizeof(state) && state) {
|
2010-11-06 01:03:54 +03:00
|
|
|
VALUE errinfo = rb_errinfo();
|
2010-09-03 01:40:55 +04:00
|
|
|
io = rb_io_fdopen(ep[1], O_WRONLY|O_BINARY, NULL);
|
2010-11-06 01:03:54 +03:00
|
|
|
rb_marshal_dump(errinfo, io);
|
2010-09-03 01:40:55 +04:00
|
|
|
rb_io_flush(io);
|
|
|
|
}
|
2004-03-29 15:17:21 +04:00
|
|
|
err = errno;
|
2010-07-13 16:28:37 +04:00
|
|
|
if (write(ep[1], &err, sizeof(err)) < 0) err = errno;
|
2008-12-23 16:59:10 +03:00
|
|
|
if (errmsg && 0 < errmsg_buflen) {
|
|
|
|
errmsg[errmsg_buflen-1] = '\0';
|
2010-07-13 16:28:37 +04:00
|
|
|
errmsg_buflen = strlen(errmsg);
|
|
|
|
if (errmsg_buflen > 0 &&write(ep[1], errmsg, errmsg_buflen) < 0)
|
2010-09-03 01:40:55 +04:00
|
|
|
err = errno;
|
2008-12-23 16:59:10 +03:00
|
|
|
}
|
2010-09-03 01:40:55 +04:00
|
|
|
if (!NIL_P(io)) rb_io_close(io);
|
2004-03-29 15:17:21 +04:00
|
|
|
#endif
|
|
|
|
#if EXIT_SUCCESS == 127
|
|
|
|
_exit(EXIT_FAILURE);
|
|
|
|
#else
|
2004-02-16 09:45:32 +03:00
|
|
|
_exit(127);
|
2004-03-29 15:17:21 +04:00
|
|
|
#endif
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
}
|
2008-11-24 18:08:24 +03:00
|
|
|
after_fork();
|
2004-03-29 15:17:21 +04:00
|
|
|
#ifdef FD_CLOEXEC
|
2008-11-24 18:08:24 +03:00
|
|
|
if (pid && chfunc) {
|
2009-04-25 13:26:22 +04:00
|
|
|
ssize_t size;
|
2010-09-03 01:40:55 +04:00
|
|
|
VALUE exc = Qnil;
|
2004-02-16 09:45:32 +03:00
|
|
|
close(ep[1]);
|
2010-09-03 01:40:55 +04:00
|
|
|
if ((read(ep[0], &state, sizeof(state))) == sizeof(state) && state) {
|
|
|
|
io = rb_io_fdopen(ep[0], O_RDONLY|O_BINARY, NULL);
|
|
|
|
exc = rb_marshal_load(io);
|
|
|
|
rb_set_errinfo(exc);
|
|
|
|
}
|
|
|
|
#define READ_FROM_CHILD(ptr, len) \
|
2010-12-24 02:46:39 +03:00
|
|
|
(NIL_P(io) ? read(ep[0], (ptr), (len)) : rb_io_bufread(io, (ptr), (len)))
|
2010-09-03 01:40:55 +04:00
|
|
|
if ((size = READ_FROM_CHILD(&err, sizeof(err))) < 0) {
|
2004-02-16 09:45:32 +03:00
|
|
|
err = errno;
|
|
|
|
}
|
2009-04-25 13:26:22 +04:00
|
|
|
if (size == sizeof(err) &&
|
2008-12-23 16:15:54 +03:00
|
|
|
errmsg && 0 < errmsg_buflen) {
|
2010-09-03 01:40:55 +04:00
|
|
|
ssize_t ret = READ_FROM_CHILD(errmsg, errmsg_buflen-1);
|
2008-12-23 16:15:54 +03:00
|
|
|
if (0 <= ret) {
|
|
|
|
errmsg[ret] = '\0';
|
|
|
|
}
|
|
|
|
}
|
2010-09-03 01:40:55 +04:00
|
|
|
if (NIL_P(io))
|
|
|
|
close(ep[0]);
|
|
|
|
else
|
|
|
|
rb_io_close(io);
|
|
|
|
if (state || size) {
|
2004-03-29 15:17:21 +04:00
|
|
|
if (status) {
|
2010-09-03 01:40:55 +04:00
|
|
|
*status = state;
|
2004-03-29 15:17:21 +04:00
|
|
|
rb_protect(proc_syswait, (VALUE)pid, status);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
rb_syswait(pid);
|
2010-09-03 01:40:55 +04:00
|
|
|
if (state) rb_exc_raise(exc);
|
2004-03-29 15:17:21 +04:00
|
|
|
}
|
2004-02-16 09:45:32 +03:00
|
|
|
errno = err;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2004-03-29 15:17:21 +04:00
|
|
|
#endif
|
2004-02-16 09:45:32 +03:00
|
|
|
return pid;
|
|
|
|
}
|
2009-02-05 14:33:19 +03:00
|
|
|
|
|
|
|
struct chfunc_wrapper_t {
|
|
|
|
int (*chfunc)(void*);
|
|
|
|
void *arg;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
chfunc_wrapper(void *arg_, char *errmsg, size_t errmsg_buflen)
|
|
|
|
{
|
|
|
|
struct chfunc_wrapper_t *arg = arg_;
|
|
|
|
return arg->chfunc(arg->arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
rb_pid_t
|
|
|
|
rb_fork(int *status, int (*chfunc)(void*), void *charg, VALUE fds)
|
|
|
|
{
|
|
|
|
if (chfunc) {
|
2009-02-12 17:26:02 +03:00
|
|
|
struct chfunc_wrapper_t warg;
|
|
|
|
warg.chfunc = chfunc;
|
|
|
|
warg.arg = charg;
|
2009-02-05 14:33:19 +03:00
|
|
|
return rb_fork_err(status, chfunc_wrapper, &warg, fds, NULL, 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return rb_fork_err(status, NULL, NULL, fds, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
#endif
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined(HAVE_FORK) && !defined(CANNOT_FORK_WITH_PTHREAD)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Kernel.fork [{ block }] -> fixnum or nil
|
|
|
|
* Process.fork [{ block }] -> fixnum or nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-09-21 19:13:53 +04:00
|
|
|
* Creates a subprocess. If a block is specified, that block is run
|
|
|
|
* in the subprocess, and the subprocess terminates with a status of
|
|
|
|
* zero. Otherwise, the +fork+ call returns twice, once in
|
|
|
|
* the parent, returning the process ID of the child, and once in
|
|
|
|
* the child, returning _nil_. The child process can exit using
|
|
|
|
* <code>Kernel.exit!</code> to avoid running any
|
2005-08-31 05:40:56 +04:00
|
|
|
* <code>at_exit</code> functions. The parent process should
|
|
|
|
* use <code>Process.wait</code> to collect the termination statuses
|
2004-09-21 19:13:53 +04:00
|
|
|
* of its children or use <code>Process.detach</code> to register
|
|
|
|
* disinterest in their status; otherwise, the operating system
|
|
|
|
* may accumulate zombie processes.
|
2005-11-20 06:30:47 +03:00
|
|
|
*
|
|
|
|
* The thread calling fork is the only thread in the created child process.
|
|
|
|
* fork doesn't copy other threads.
|
2010-01-24 16:20:04 +03:00
|
|
|
*
|
|
|
|
* If fork is not usable, Process.respond_to?(:fork) returns false.
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_fork(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pid;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
rb_secure(2);
|
2004-02-16 09:45:32 +03:00
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
switch (pid = rb_fork(0, 0, 0, Qnil)) {
|
1998-01-16 15:13:05 +03:00
|
|
|
case 0:
|
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:
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(pid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-04-16 18:17:14 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
2009-04-16 18:17:14 +04:00
|
|
|
#define rb_f_fork rb_f_notimplement
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-04-02 01:59:41 +04:00
|
|
|
* Process.exit!(status=false)
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Exits the process immediately. No exit handlers are
|
2010-04-02 01:59:41 +04:00
|
|
|
* run. <em>status</em> is returned to the underlying system as the
|
2004-01-02 09:01:12 +03:00
|
|
|
* exit status.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2010-04-02 01:59:41 +04:00
|
|
|
* Process.exit!(true)
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_exit_bang(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);
|
2008-03-05 08:22:17 +03:00
|
|
|
if (argc > 0 && rb_scan_args(argc, argv, "01", &status) == 1) {
|
2003-11-27 18:34:53 +03:00
|
|
|
switch (status) {
|
2003-11-27 18:47:33 +03:00
|
|
|
case Qtrue:
|
2003-11-27 18:34:53 +03:00
|
|
|
istatus = EXIT_SUCCESS;
|
|
|
|
break;
|
2003-11-27 18:47:33 +03:00
|
|
|
case Qfalse:
|
2003-11-27 18:34:53 +03:00
|
|
|
istatus = EXIT_FAILURE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
istatus = NUM2INT(status);
|
|
|
|
break;
|
|
|
|
}
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
|
|
|
else {
|
2003-10-13 17:05:24 +04:00
|
|
|
istatus = EXIT_FAILURE;
|
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
|
|
|
}
|
|
|
|
|
2007-08-18 11:44:51 +04:00
|
|
|
void
|
|
|
|
rb_exit(int status)
|
|
|
|
{
|
|
|
|
if (GET_THREAD()->tag) {
|
|
|
|
VALUE args[2];
|
|
|
|
|
|
|
|
args[0] = INT2NUM(status);
|
|
|
|
args[1] = rb_str_new2("exit");
|
|
|
|
rb_exc_raise(rb_class_new_instance(2, args, rb_eSystemExit));
|
|
|
|
}
|
|
|
|
ruby_finalize();
|
|
|
|
exit(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-04-02 01:59:41 +04:00
|
|
|
* exit(status=true)
|
|
|
|
* Kernel::exit(status=true)
|
|
|
|
* Process::exit(status=true)
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* Initiates the termination of the Ruby script by raising the
|
|
|
|
* <code>SystemExit</code> exception. This exception may be caught. The
|
|
|
|
* optional parameter is used to return a status code to the invoking
|
|
|
|
* environment.
|
2010-04-02 01:59:41 +04:00
|
|
|
* +true+ and +FALSE+ of _status_ means success and failure
|
|
|
|
* respectively. The interpretation of other integer values are
|
|
|
|
* system dependent.
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* begin
|
|
|
|
* exit
|
|
|
|
* puts "never get here"
|
|
|
|
* rescue SystemExit
|
|
|
|
* puts "rescued a SystemExit exception"
|
|
|
|
* end
|
|
|
|
* puts "after begin block"
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* <em>produces:</em>
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* rescued a SystemExit exception
|
|
|
|
* after begin block
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* Just prior to termination, Ruby executes any <code>at_exit</code> functions
|
|
|
|
* (see Kernel::at_exit) and runs any object finalizers (see
|
|
|
|
* ObjectSpace::define_finalizer).
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* at_exit { puts "at_exit function" }
|
|
|
|
* ObjectSpace.define_finalizer("string", proc { puts "in finalizer" })
|
|
|
|
* exit
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* <em>produces:</em>
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* at_exit function
|
|
|
|
* in finalizer
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_f_exit(int argc, VALUE *argv)
|
|
|
|
{
|
|
|
|
VALUE status;
|
|
|
|
int istatus;
|
|
|
|
|
|
|
|
rb_secure(4);
|
2008-03-05 08:22:17 +03:00
|
|
|
if (argc > 0 && rb_scan_args(argc, argv, "01", &status) == 1) {
|
2007-08-18 11:44:51 +04:00
|
|
|
switch (status) {
|
|
|
|
case Qtrue:
|
|
|
|
istatus = EXIT_SUCCESS;
|
|
|
|
break;
|
|
|
|
case Qfalse:
|
|
|
|
istatus = EXIT_FAILURE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
istatus = NUM2INT(status);
|
|
|
|
#if EXIT_SUCCESS != 0
|
|
|
|
if (istatus == 0)
|
|
|
|
istatus = EXIT_SUCCESS;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
istatus = EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
rb_exit(istatus);
|
|
|
|
return Qnil; /* not reached */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* abort
|
2010-04-02 01:59:41 +04:00
|
|
|
* Kernel::abort([msg])
|
|
|
|
* Process::abort([msg])
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2007-08-18 11:44:51 +04:00
|
|
|
* Terminate execution immediately, effectively by calling
|
2010-04-02 01:59:41 +04:00
|
|
|
* <code>Kernel.exit(false)</code>. If _msg_ is given, it is written
|
2007-08-18 11:44:51 +04:00
|
|
|
* to STDERR prior to terminating.
|
|
|
|
*/
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_f_abort(int argc, VALUE *argv)
|
|
|
|
{
|
|
|
|
extern void ruby_error_print(void);
|
|
|
|
|
|
|
|
rb_secure(4);
|
|
|
|
if (argc == 0) {
|
|
|
|
if (!NIL_P(GET_THREAD()->errinfo)) {
|
|
|
|
ruby_error_print();
|
|
|
|
}
|
|
|
|
rb_exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE args[2];
|
|
|
|
|
|
|
|
rb_scan_args(argc, argv, "1", &args[1]);
|
|
|
|
StringValue(argv[0]);
|
|
|
|
rb_io_puts(argc, argv, rb_stderr);
|
|
|
|
args[0] = INT2NUM(EXIT_FAILURE);
|
|
|
|
rb_exc_raise(rb_class_new_instance(2, args, rb_eSystemExit));
|
|
|
|
}
|
|
|
|
return Qnil; /* not reached */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-02 16:25:09 +03:00
|
|
|
#if defined(POSIX_SIGNAL)
|
2010-12-24 02:46:39 +03:00
|
|
|
# define signal(a,b) posix_signal((a),(b))
|
2004-07-17 10:28:10 +04:00
|
|
|
#endif
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_syswait(rb_pid_t pid)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-02-25 12:16:25 +03:00
|
|
|
static int overriding;
|
2005-06-28 17:08:32 +04:00
|
|
|
#ifdef SIGHUP
|
2008-04-22 17:49:43 +04:00
|
|
|
RETSIGTYPE (*hfunc)(int) = 0;
|
2005-06-28 17:08:32 +04:00
|
|
|
#endif
|
|
|
|
#ifdef SIGQUIT
|
2008-04-22 17:49:43 +04:00
|
|
|
RETSIGTYPE (*qfunc)(int) = 0;
|
2005-06-28 17:08:32 +04:00
|
|
|
#endif
|
2008-04-22 17:49:43 +04:00
|
|
|
RETSIGTYPE (*ifunc)(int) = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
int status;
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
int i, hooked = FALSE;
|
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);
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
overriding = TRUE;
|
|
|
|
hooked = TRUE;
|
2002-02-25 12:16:25 +03:00
|
|
|
}
|
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);
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
overriding = FALSE;
|
2002-02-25 12:16:25 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2010-05-24 03:16:09 +04:00
|
|
|
static VALUE
|
|
|
|
rb_exec_arg_prepare(struct rb_exec_arg *earg, int argc, VALUE *argv, int default_close_others)
|
|
|
|
{
|
|
|
|
VALUE prog = rb_exec_arg_init(argc, argv, TRUE, earg);
|
|
|
|
if (NIL_P(rb_ary_entry(earg->options, EXEC_OPTION_CLOSE_OTHERS))) {
|
|
|
|
VALUE v = default_close_others ? Qtrue : Qfalse;
|
|
|
|
rb_exec_arg_addopt(earg, ID2SYM(rb_intern("close_others")), v);
|
|
|
|
}
|
|
|
|
rb_exec_arg_fixup(earg);
|
|
|
|
return prog;
|
|
|
|
}
|
|
|
|
|
2008-04-25 19:50:24 +04:00
|
|
|
static rb_pid_t
|
2010-05-24 03:16:09 +04:00
|
|
|
rb_spawn_process(struct rb_exec_arg *earg, VALUE prog, char *errmsg, size_t errmsg_buflen)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
2009-03-14 08:46:43 +03:00
|
|
|
rb_pid_t pid;
|
2009-03-16 09:22:37 +03:00
|
|
|
#if defined HAVE_FORK || !defined HAVE_SPAWNV
|
2009-03-14 09:59:55 +03:00
|
|
|
int status;
|
2009-03-16 09:22:37 +03:00
|
|
|
#endif
|
2008-05-12 18:15:32 +04:00
|
|
|
#if !defined HAVE_FORK
|
|
|
|
struct rb_exec_arg sarg;
|
2010-05-24 03:16:09 +04:00
|
|
|
int argc;
|
|
|
|
VALUE *argv;
|
2008-05-12 18:15:32 +04:00
|
|
|
#endif
|
2008-04-28 04:11:46 +04:00
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
#if defined HAVE_FORK
|
2010-05-24 03:16:09 +04:00
|
|
|
pid = rb_fork_err(&status, rb_exec_atfork, earg, earg->redirect_fds, errmsg, errmsg_buflen);
|
2008-05-12 13:17:58 +04:00
|
|
|
#else
|
2010-05-24 03:16:09 +04:00
|
|
|
if (rb_run_exec_options_err(earg, &sarg, errmsg, errmsg_buflen) < 0) {
|
2008-05-12 13:17:58 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-05-24 03:16:09 +04:00
|
|
|
argc = earg->argc;
|
|
|
|
argv = earg->argv;
|
2008-05-12 13:17:58 +04:00
|
|
|
if (prog && argc) argv[0] = prog;
|
|
|
|
# if defined HAVE_SPAWNV
|
2004-02-16 09:45:32 +03:00
|
|
|
if (!argc) {
|
2009-03-14 08:46:43 +03:00
|
|
|
pid = proc_spawn(RSTRING_PTR(prog));
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
else {
|
2009-03-14 08:46:43 +03:00
|
|
|
pid = proc_spawn_n(argc, argv, prog);
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
2008-05-19 08:26:43 +04:00
|
|
|
# if defined(_WIN32)
|
2009-03-14 08:46:43 +03:00
|
|
|
if (pid == -1)
|
2008-05-19 08:26:43 +04:00
|
|
|
rb_last_status_set(0x7f << 8, 0);
|
|
|
|
# endif
|
2008-05-12 13:17:58 +04:00
|
|
|
# else
|
2004-12-08 14:14:53 +03:00
|
|
|
if (argc) prog = rb_ary_join(rb_ary_new4(argc, argv), rb_str_new2(" "));
|
2009-03-14 09:59:55 +03:00
|
|
|
status = system(StringValuePtr(prog));
|
|
|
|
rb_last_status_set((status & 0xff) << 8, 0);
|
2004-02-16 09:45:32 +03:00
|
|
|
# endif
|
2008-05-12 18:15:32 +04:00
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_run_exec_options_err(&sarg, NULL, errmsg, errmsg_buflen);
|
2004-02-16 09:45:32 +03:00
|
|
|
#endif
|
2009-03-14 08:46:43 +03:00
|
|
|
return pid;
|
2004-02-16 09:45:32 +03:00
|
|
|
}
|
|
|
|
|
2010-05-24 03:16:09 +04:00
|
|
|
static rb_pid_t
|
|
|
|
rb_spawn_internal(int argc, VALUE *argv, int default_close_others,
|
|
|
|
char *errmsg, size_t errmsg_buflen)
|
|
|
|
{
|
|
|
|
struct rb_exec_arg earg;
|
|
|
|
VALUE prog = rb_exec_arg_prepare(&earg, argc, argv, default_close_others);
|
|
|
|
return rb_spawn_process(&earg, prog, errmsg, errmsg_buflen);
|
|
|
|
}
|
|
|
|
|
2008-04-25 19:50:24 +04:00
|
|
|
rb_pid_t
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_spawn_err(int argc, VALUE *argv, char *errmsg, size_t errmsg_buflen)
|
2008-04-25 19:50:24 +04:00
|
|
|
{
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
return rb_spawn_internal(argc, argv, TRUE, errmsg, errmsg_buflen);
|
2008-04-25 19:50:24 +04:00
|
|
|
}
|
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
rb_pid_t
|
|
|
|
rb_spawn(int argc, VALUE *argv)
|
|
|
|
{
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
return rb_spawn_internal(argc, argv, TRUE, NULL, 0);
|
2009-02-05 14:33:19 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* system([env,] command... [,options]) -> true, false or nil
|
2008-12-05 18:09:59 +03:00
|
|
|
*
|
|
|
|
* Executes _command..._ in a subshell.
|
|
|
|
* _command..._ is one of following forms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2009-11-10 02:23:23 +03:00
|
|
|
* commandline : command line string which is passed to the standard shell
|
2008-12-05 18:09:59 +03:00
|
|
|
* cmdname, arg1, ... : command name and one or more arguments (no shell)
|
2009-02-22 19:25:06 +03:00
|
|
|
* [cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell)
|
2008-12-05 18:09:59 +03:00
|
|
|
*
|
|
|
|
* system returns +true+ if the command gives zero exit status,
|
|
|
|
* +false+ for non zero exit status.
|
|
|
|
* Returns +nil+ if command execution fails.
|
|
|
|
* An error status is available in <code>$?</code>.
|
|
|
|
* The arguments are processed in the same way as
|
|
|
|
* for <code>Kernel.spawn</code>.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2008-04-24 18:46:39 +04:00
|
|
|
* The hash arguments, env and options, are same as
|
|
|
|
* <code>exec</code> and <code>spawn</code>.
|
2008-12-05 18:09:59 +03:00
|
|
|
* See <code>Kernel.spawn</code> for details.
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* system("echo *")
|
|
|
|
* system("echo", "*")
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* <em>produces:</em>
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* config.h main.rb
|
|
|
|
* *
|
2009-11-10 02:23:23 +03:00
|
|
|
*
|
|
|
|
* See <code>Kernel.exec</code> for the standard shell.
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_system(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2009-03-14 08:46:43 +03:00
|
|
|
rb_pid_t pid;
|
2003-11-27 18:34:53 +03:00
|
|
|
int status;
|
2007-12-23 18:39:09 +03:00
|
|
|
|
|
|
|
#if defined(SIGCLD) && !defined(SIGCHLD)
|
|
|
|
# define SIGCHLD SIGCLD
|
|
|
|
#endif
|
|
|
|
|
2006-07-18 18:55:28 +04:00
|
|
|
#ifdef SIGCHLD
|
2006-07-18 18:36:15 +04:00
|
|
|
RETSIGTYPE (*chfunc)(int);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-07-18 18:36:15 +04:00
|
|
|
chfunc = signal(SIGCHLD, SIG_DFL);
|
2006-07-18 18:55:28 +04:00
|
|
|
#endif
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
pid = rb_spawn_internal(argc, argv, FALSE, NULL, 0);
|
2004-02-16 09:45:32 +03:00
|
|
|
#if defined(HAVE_FORK) || defined(HAVE_SPAWNV)
|
2009-03-14 08:46:43 +03:00
|
|
|
if (pid > 0) {
|
|
|
|
rb_syswait(pid);
|
2006-07-18 18:36:15 +04:00
|
|
|
}
|
2006-07-25 08:58:15 +04:00
|
|
|
#endif
|
2006-07-18 18:55:28 +04:00
|
|
|
#ifdef SIGCHLD
|
2006-07-18 18:36:15 +04:00
|
|
|
signal(SIGCHLD, chfunc);
|
2006-07-18 18:55:28 +04:00
|
|
|
#endif
|
2009-03-14 08:46:43 +03:00
|
|
|
if (pid < 0) {
|
2007-11-20 21:21:39 +03:00
|
|
|
return Qnil;
|
2006-07-18 18:36:15 +04:00
|
|
|
}
|
2008-06-20 18:00:35 +04:00
|
|
|
status = PST2INT(rb_last_status_get());
|
2004-02-16 09:45:32 +03:00
|
|
|
if (status == EXIT_SUCCESS) return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
2002-03-22 10:26:42 +03:00
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* spawn([env,] command... [,options]) -> pid
|
|
|
|
* Process.spawn([env,] command... [,options]) -> pid
|
2008-12-04 14:45:54 +03:00
|
|
|
*
|
|
|
|
* spawn executes specified command and return its pid.
|
2009-08-11 17:27:46 +04:00
|
|
|
*
|
|
|
|
* This method doesn't wait for end of the command.
|
|
|
|
* The parent process should
|
|
|
|
* use <code>Process.wait</code> to collect
|
|
|
|
* the termination status of its child or
|
|
|
|
* use <code>Process.detach</code> to register
|
|
|
|
* disinterest in their status;
|
|
|
|
* otherwise, the operating system may accumulate zombie processes.
|
2008-12-04 14:45:54 +03:00
|
|
|
*
|
|
|
|
* spawn has bunch of options to specify process attributes:
|
|
|
|
*
|
|
|
|
* env: hash
|
|
|
|
* name => val : set the environment variable
|
|
|
|
* name => nil : unset the environment variable
|
|
|
|
* command...:
|
2009-11-10 02:23:23 +03:00
|
|
|
* commandline : command line string which is passed to the standard shell
|
2008-12-04 18:03:12 +03:00
|
|
|
* cmdname, arg1, ... : command name and one or more arguments (no shell)
|
2009-02-22 17:38:05 +03:00
|
|
|
* [cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell)
|
2008-12-04 14:45:54 +03:00
|
|
|
* options: hash
|
|
|
|
* clearing environment variables:
|
|
|
|
* :unsetenv_others => true : clear environment variables except specified by env
|
|
|
|
* :unsetenv_others => false : don't clear (default)
|
|
|
|
* process group:
|
2009-02-22 17:38:05 +03:00
|
|
|
* :pgroup => true or 0 : make a new process group
|
2009-02-06 15:54:52 +03:00
|
|
|
* :pgroup => pgid : join to specified process group
|
2009-04-18 13:06:34 +04:00
|
|
|
* :pgroup => nil : don't change the process group (default)
|
2008-12-04 18:21:32 +03:00
|
|
|
* resource limit: resourcename is core, cpu, data, etc. See Process.setrlimit.
|
|
|
|
* :rlimit_resourcename => limit
|
|
|
|
* :rlimit_resourcename => [cur_limit, max_limit]
|
2008-12-04 14:45:54 +03:00
|
|
|
* current directory:
|
|
|
|
* :chdir => str
|
|
|
|
* umask:
|
|
|
|
* :umask => int
|
|
|
|
* redirection:
|
|
|
|
* key:
|
|
|
|
* FD : single file descriptor in child process
|
|
|
|
* [FD, FD, ...] : multiple file descriptor in child process
|
|
|
|
* value:
|
|
|
|
* FD : redirect to the file descriptor in parent process
|
|
|
|
* string : redirect to file with open(string, "r" or "w")
|
|
|
|
* [string] : redirect to file with open(string, File::RDONLY)
|
|
|
|
* [string, open_mode] : redirect to file with open(string, open_mode, 0644)
|
|
|
|
* [string, open_mode, perm] : redirect to file with open(string, open_mode, perm)
|
|
|
|
* [:child, FD] : redirect to the redirected file descriptor
|
|
|
|
* :close : close the file descriptor in child process
|
|
|
|
* FD is one of follows
|
2009-03-31 22:49:25 +04:00
|
|
|
* :in : the file descriptor 0 which is the standard input
|
|
|
|
* :out : the file descriptor 1 which is the standard output
|
|
|
|
* :err : the file descriptor 2 which is the standard error
|
2008-12-04 14:45:54 +03:00
|
|
|
* integer : the file descriptor of specified the integer
|
|
|
|
* io : the file descriptor specified as io.fileno
|
|
|
|
* file descriptor inheritance: close non-redirected non-standard fds (3, 4, 5, ...) or not
|
|
|
|
* :close_others => false : inherit fds (default for system and exec)
|
|
|
|
* :close_others => true : don't inherit (default for spawn and IO.popen)
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* If a hash is given as +env+, the environment is
|
|
|
|
* updated by +env+ before <code>exec(2)</code> in the child process.
|
2008-07-05 16:25:33 +04:00
|
|
|
* If a pair in +env+ has nil as the value, the variable is deleted.
|
|
|
|
*
|
|
|
|
* # set FOO as BAR and unset BAZ.
|
|
|
|
* pid = spawn({"FOO"=>"BAR", "BAZ"=>nil}, command)
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* If a hash is given as +options+,
|
|
|
|
* it specifies
|
|
|
|
* process group,
|
2009-02-06 15:54:52 +03:00
|
|
|
* resource limit,
|
2008-04-24 18:46:39 +04:00
|
|
|
* current directory,
|
|
|
|
* umask and
|
|
|
|
* redirects for the child process.
|
|
|
|
* Also, it can be specified to clear environment variables.
|
|
|
|
*
|
|
|
|
* The <code>:unsetenv_others</code> key in +options+ specifies
|
|
|
|
* to clear environment variables, other than specified by +env+.
|
|
|
|
*
|
|
|
|
* pid = spawn(command, :unsetenv_others=>true) # no environment variable
|
|
|
|
* pid = spawn({"FOO"=>"BAR"}, command, :unsetenv_others=>true) # FOO only
|
|
|
|
*
|
|
|
|
* The <code>:pgroup</code> key in +options+ specifies a process group.
|
|
|
|
* The corresponding value should be true, zero or positive integer.
|
2009-02-22 17:38:05 +03:00
|
|
|
* true and zero means the process should be a process leader of a new
|
|
|
|
* process group.
|
2008-04-24 18:46:39 +04:00
|
|
|
* Other values specifies a process group to be belongs.
|
|
|
|
*
|
|
|
|
* pid = spawn(command, :pgroup=>true) # process leader
|
|
|
|
* pid = spawn(command, :pgroup=>10) # belongs to the process group 10
|
|
|
|
*
|
|
|
|
* The <code>:rlimit_</code><em>foo</em> key specifies a resource limit.
|
2009-02-22 17:38:05 +03:00
|
|
|
* <em>foo</em> should be one of resource types such as <code>core</code>.
|
2008-04-24 18:46:39 +04:00
|
|
|
* The corresponding value should be an integer or an array which have one or
|
|
|
|
* two integers: same as cur_limit and max_limit arguments for
|
|
|
|
* Process.setrlimit.
|
|
|
|
*
|
|
|
|
* cur, max = Process.getrlimit(:CORE)
|
|
|
|
* pid = spawn(command, :rlimit_core=>[0,max]) # disable core temporary.
|
|
|
|
* pid = spawn(command, :rlimit_core=>max) # enable core dump
|
2009-03-31 22:49:25 +04:00
|
|
|
* pid = spawn(command, :rlimit_core=>0) # never dump core.
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* The <code>:chdir</code> key in +options+ specifies the current directory.
|
|
|
|
*
|
|
|
|
* pid = spawn(command, :chdir=>"/var/tmp")
|
|
|
|
*
|
|
|
|
* The <code>:umask</code> key in +options+ specifies the umask.
|
|
|
|
*
|
|
|
|
* pid = spawn(command, :umask=>077)
|
|
|
|
*
|
2009-02-22 17:38:05 +03:00
|
|
|
* The :in, :out, :err, a fixnum, an IO and an array key specifies a redirection.
|
2008-04-24 18:46:39 +04:00
|
|
|
* The redirection maps a file descriptor in the child process.
|
|
|
|
*
|
2008-12-03 18:02:10 +03:00
|
|
|
* For example, stderr can be merged into stdout as follows:
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-12-03 18:02:10 +03:00
|
|
|
* pid = spawn(command, :err=>:out)
|
2008-04-24 18:46:39 +04:00
|
|
|
* pid = spawn(command, 2=>1)
|
2008-12-03 18:02:10 +03:00
|
|
|
* pid = spawn(command, STDERR=>:out)
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, STDERR=>STDOUT)
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* The hash keys specifies a file descriptor
|
|
|
|
* in the child process started by <code>spawn</code>.
|
2008-12-05 13:00:36 +03:00
|
|
|
* :err, 2 and STDERR specifies the standard error stream (stderr).
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* The hash values specifies a file descriptor
|
|
|
|
* in the parent process which invokes <code>spawn</code>.
|
2008-12-05 13:00:36 +03:00
|
|
|
* :out, 1 and STDOUT specifies the standard output stream (stdout).
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-12-03 18:02:10 +03:00
|
|
|
* In the above example,
|
|
|
|
* the standard output in the child process is not specified.
|
2008-04-24 18:46:39 +04:00
|
|
|
* So it is inherited from the parent process.
|
|
|
|
*
|
2009-02-22 17:38:05 +03:00
|
|
|
* The standard input stream (stdin) can be specified by :in, 0 and STDIN.
|
2009-02-06 15:54:52 +03:00
|
|
|
*
|
2008-04-24 18:46:39 +04:00
|
|
|
* A filename can be specified as a hash value.
|
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, :in=>"/dev/null") # read mode
|
|
|
|
* pid = spawn(command, :out=>"/dev/null") # write mode
|
|
|
|
* pid = spawn(command, :err=>"log") # write mode
|
2008-04-24 18:46:39 +04:00
|
|
|
* pid = spawn(command, 3=>"/dev/null") # read mode
|
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* For stdout and stderr,
|
2008-04-24 18:46:39 +04:00
|
|
|
* it is opened in write mode.
|
|
|
|
* Otherwise read mode is used.
|
|
|
|
*
|
|
|
|
* For specifying flags and permission of file creation explicitly,
|
|
|
|
* an array is used instead.
|
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, :in=>["file"]) # read mode is assumed
|
|
|
|
* pid = spawn(command, :in=>["file", "r"])
|
|
|
|
* pid = spawn(command, :out=>["log", "w"]) # 0644 assumed
|
|
|
|
* pid = spawn(command, :out=>["log", "w", 0600])
|
|
|
|
* pid = spawn(command, :out=>["log", File::WRONLY|File::EXCL|File::CREAT, 0600])
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* The array specifies a filename, flags and permission.
|
|
|
|
* The flags can be a string or an integer.
|
2009-02-22 17:38:05 +03:00
|
|
|
* If the flags is omitted or nil, File::RDONLY is assumed.
|
2008-04-24 18:46:39 +04:00
|
|
|
* The permission should be an integer.
|
2009-02-22 17:38:05 +03:00
|
|
|
* If the permission is omitted or nil, 0644 is assumed.
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* If an array of IOs and integers are specified as a hash key,
|
2009-02-22 17:38:05 +03:00
|
|
|
* all the elements are redirected.
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* # stdout and stderr is redirected to log file.
|
2008-12-03 18:02:10 +03:00
|
|
|
* # The file "log" is opened just once.
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, [:out, :err]=>["log", "w"])
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-12-03 18:02:10 +03:00
|
|
|
* Another way to merge multiple file descriptors is [:child, fd].
|
2009-02-22 17:38:05 +03:00
|
|
|
* \[:child, fd] means the file descriptor in the child process.
|
2008-12-03 18:02:10 +03:00
|
|
|
* This is different from fd.
|
2008-12-05 13:00:36 +03:00
|
|
|
* For example, :err=>:out means redirecting child stderr to parent stdout.
|
|
|
|
* But :err=>[:child, :out] means redirecting child stderr to child stdout.
|
|
|
|
* They differs if stdout is redirected in the child process as follows.
|
2008-12-03 18:02:10 +03:00
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* # stdout and stderr is redirected to log file.
|
2008-12-03 18:02:10 +03:00
|
|
|
* # The file "log" is opened just once.
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, :out=>["log", "w"], :err=>[:child, :out])
|
2008-12-03 18:02:10 +03:00
|
|
|
*
|
2009-02-22 17:38:05 +03:00
|
|
|
* \[:child, :out] can be used to merge stderr into stdout in IO.popen.
|
2008-12-05 13:00:36 +03:00
|
|
|
* In this case, IO.popen redirects stdout to a pipe in the child process
|
|
|
|
* and [:child, :out] refers the redirected stdout.
|
2008-12-03 18:02:10 +03:00
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* io = IO.popen(["sh", "-c", "echo out; echo err >&2", :err=>[:child, :out]])
|
2008-12-03 18:02:10 +03:00
|
|
|
* p io.read #=> "out\nerr\n"
|
|
|
|
*
|
2008-04-25 21:01:57 +04:00
|
|
|
* spawn closes all non-standard unspecified descriptors by default.
|
|
|
|
* The "standard" descriptors are 0, 1 and 2.
|
|
|
|
* This behavior is specified by :close_others option.
|
2008-04-30 09:40:19 +04:00
|
|
|
* :close_others doesn't affect the standard descriptors which are
|
|
|
|
* closed only if :close is specified explicitly.
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-04-25 21:01:57 +04:00
|
|
|
* pid = spawn(command, :close_others=>true) # close 3,4,5,... (default)
|
|
|
|
* pid = spawn(command, :close_others=>false) # don't close 3,4,5,...
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-04-25 21:01:57 +04:00
|
|
|
* :close_others is true by default for spawn and IO.popen.
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
2008-04-25 21:01:57 +04:00
|
|
|
* So IO.pipe and spawn can be used as IO.popen.
|
|
|
|
*
|
|
|
|
* # similar to r = IO.popen(command)
|
2008-04-24 18:46:39 +04:00
|
|
|
* r, w = IO.pipe
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, :out=>w) # r, w is closed in the child process.
|
2008-04-24 18:46:39 +04:00
|
|
|
* w.close
|
|
|
|
*
|
2009-02-22 17:38:05 +03:00
|
|
|
* :close is specified as a hash value to close a fd individually.
|
2008-04-25 21:01:57 +04:00
|
|
|
*
|
|
|
|
* f = open(foo)
|
|
|
|
* system(command, f=>:close) # don't inherit f.
|
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* If a file descriptor need to be inherited,
|
|
|
|
* io=>io can be used.
|
|
|
|
*
|
|
|
|
* # valgrind has --log-fd option for log destination.
|
|
|
|
* # log_w=>log_w indicates log_w.fileno inherits to child process.
|
|
|
|
* log_r, log_w = IO.pipe
|
|
|
|
* pid = spawn("valgrind", "--log-fd=#{log_w.fileno}", "echo", "a", log_w=>log_w)
|
|
|
|
* log_w.close
|
|
|
|
* p log_r.read
|
|
|
|
*
|
2008-04-24 18:46:39 +04:00
|
|
|
* It is also possible to exchange file descriptors.
|
|
|
|
*
|
2008-12-05 13:00:36 +03:00
|
|
|
* pid = spawn(command, :out=>:err, :err=>:out)
|
2008-04-24 18:46:39 +04:00
|
|
|
*
|
|
|
|
* The hash keys specify file descriptors in the child process.
|
|
|
|
* The hash values specifies file descriptors in the parent process.
|
2008-12-05 13:00:36 +03:00
|
|
|
* So the above specifies exchanging stdout and stderr.
|
2008-04-24 18:46:39 +04:00
|
|
|
* Internally, +spawn+ uses an extra file descriptor to resolve such cyclic
|
|
|
|
* file descriptor mapping.
|
|
|
|
*
|
2009-11-10 02:23:23 +03:00
|
|
|
* See <code>Kernel.exec</code> for the standard shell.
|
2004-02-16 09:45:32 +03:00
|
|
|
*/
|
2002-03-22 10:26:42 +03:00
|
|
|
|
2004-02-16 09:45:32 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_spawn(int argc, VALUE *argv)
|
2004-02-16 09:45:32 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pid;
|
2008-12-23 16:15:54 +03:00
|
|
|
char errmsg[CHILD_ERRMSG_BUFLEN] = { '\0' };
|
2010-05-24 03:16:09 +04:00
|
|
|
struct rb_exec_arg earg;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2010-05-24 03:16:09 +04:00
|
|
|
pid = rb_spawn_process(&earg, rb_exec_arg_prepare(&earg, argc, argv, TRUE), errmsg, sizeof(errmsg));
|
2008-12-23 16:15:54 +03:00
|
|
|
if (pid == -1) {
|
2010-05-24 03:16:09 +04:00
|
|
|
const char *prog = errmsg;
|
|
|
|
if (!prog[0] && !(prog = earg.prog) && earg.argc) {
|
|
|
|
prog = RSTRING_PTR(earg.argv[0]);
|
|
|
|
}
|
|
|
|
rb_sys_fail(prog);
|
2008-12-23 16:15:54 +03:00
|
|
|
}
|
2004-02-16 09:45:32 +03:00
|
|
|
#if defined(HAVE_FORK) || defined(HAVE_SPAWNV)
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(pid);
|
2004-02-16 09:45:32 +03:00
|
|
|
#else
|
|
|
|
return Qnil;
|
2002-08-28 12:05:23 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* sleep([duration]) -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
* Suspends the current thread for _duration_ seconds (which may be any number,
|
|
|
|
* including a +Float+ with fractional seconds). Returns the actual number of
|
|
|
|
* seconds slept (rounded), which may be less than that asked for if another
|
2009-04-01 08:20:05 +04:00
|
|
|
* thread calls <code>Thread#run</code>. Called without an argument, sleep()
|
|
|
|
* will sleep forever.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2008-03-09 04:04:46 +03:00
|
|
|
* Time.new #=> 2008-03-08 19:56:19 +0900
|
2004-01-02 09:01:12 +03:00
|
|
|
* sleep 1.2 #=> 1
|
2008-03-09 04:04:46 +03:00
|
|
|
* Time.new #=> 2008-03-08 19:56:20 +0900
|
2004-01-02 09:01:12 +03:00
|
|
|
* sleep 1.9 #=> 2
|
2008-03-09 04:04:46 +03:00
|
|
|
* Time.new #=> 2008-03-08 19:56:22 +0900
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_f_sleep(int argc, VALUE *argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2009-03-11 23:16:08 +03:00
|
|
|
time_t beg, end;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
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 {
|
* eval.c (make_exception, rb_obj_extend): Fix error messages in case of wrong
number of arguments
* file.c (rb_f_test, rb_file_s_umask): ditto
* numeric.c (int_chr, num_step): ditto
* process.c (rb_f_sleep): ditto
* re.c (rb_reg_initialize_m): ditto
* signal.c (rb_f_kill, sig_trap): ditto
* string.c (rb_str_aref_m, rb_str_aset_m, rb_str_count, rb_str_delete_bang,
rb_str_slice_bang, rb_str_sub_bang, str_gsub): ditto
* proc.c (curry): rdoc fix
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-04-30 06:40:57 +04:00
|
|
|
rb_raise(rb_eArgError, "wrong number of arguments (%d for 0..1)", argc);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
end = time(0) - beg;
|
|
|
|
|
|
|
|
return INT2FIX(end);
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if (defined(HAVE_GETPGRP) && defined(GETPGRP_VOID)) || defined(HAVE_GETPGID)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.getpgrp -> integer
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the process group ID for this process. Not available on
|
|
|
|
* all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.getpgid(0) #=> 25527
|
|
|
|
* Process.getpgrp #=> 25527
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getpgrp(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pgrp;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
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);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(pgrp);
|
2009-04-16 20:58:06 +04:00
|
|
|
#else /* defined(HAVE_GETPGID) */
|
2001-08-06 07:05:23 +04:00
|
|
|
pgrp = getpgid(0);
|
|
|
|
if (pgrp < 0) rb_sys_fail(0);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(pgrp);
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define proc_getpgrp rb_f_notimplement
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined(HAVE_SETPGID) || (defined(HAVE_SETPGRP) && defined(SETPGRP_VOID))
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.setpgrp -> 0
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Equivalent to <code>setpgid(0,0)</code>. Not available on all
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setpgrp(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
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 */
|
2007-12-31 15:55:50 +03:00
|
|
|
/* even though setpgrp(0,0) would be preferred. The posix call avoids */
|
2002-07-11 12:22:18 +04:00
|
|
|
/* this confusion. */
|
|
|
|
#ifdef HAVE_SETPGID
|
2004-11-18 06:45:23 +03:00
|
|
|
if (setpgid(0,0) < 0) rb_sys_fail(0);
|
2009-04-18 18:10:06 +04:00
|
|
|
#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
|
|
|
#endif
|
2002-03-11 11:02:04 +03:00
|
|
|
return INT2FIX(0);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define proc_setpgrp rb_f_notimplement
|
|
|
|
#endif
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_GETPGID)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.getpgid(pid) -> integer
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the process group ID for the given process id. Not
|
|
|
|
* available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.getpgid(Process.ppid()) #=> 25527
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getpgid(VALUE obj, VALUE pid)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t i;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
i = getpgid(NUM2PIDT(pid));
|
2002-03-11 11:02:04 +03:00
|
|
|
if (i < 0) rb_sys_fail(0);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(i);
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_getpgid rb_f_notimplement
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#ifdef HAVE_SETPGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.setpgid(pid, integer) -> 0
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the process group ID of _pid_ (0 indicates this
|
|
|
|
* process) to <em>integer</em>. Not available on all platforms.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setpgid(VALUE obj, VALUE pid, VALUE pgrp)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t ipid, ipgrp;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_secure(2);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
ipid = NUM2PIDT(pid);
|
|
|
|
ipgrp = NUM2PIDT(pgrp);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
if (setpgid(ipid, ipgrp) < 0) rb_sys_fail(0);
|
2000-03-13 10:18:45 +03:00
|
|
|
return INT2FIX(0);
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_setpgid rb_f_notimplement
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined(HAVE_SETSID) || (defined(HAVE_SETPGRP) && defined(TIOCNOTTY))
|
2010-04-02 03:25:10 +04:00
|
|
|
#if !defined(HAVE_SETSID)
|
|
|
|
static rb_pid_t ruby_setsid(void);
|
|
|
|
#define setsid() ruby_setsid()
|
|
|
|
#endif
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.setsid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Establishes this process as a new session and process group
|
|
|
|
* leader, with no controlling tty. Returns the session id. Not
|
|
|
|
* available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.setsid #=> 27422
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setsid(void)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t 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);
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return PIDT2NUM(pid);
|
2010-04-02 03:25:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETSID)
|
|
|
|
#define HAVE_SETSID 1
|
|
|
|
static rb_pid_t
|
|
|
|
ruby_setsid(void)
|
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_pid_t pid;
|
|
|
|
int ret;
|
2000-06-13 13:42:40 +04:00
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
pid = getpid();
|
2000-06-13 13:42:40 +04:00
|
|
|
#if defined(SETPGRP_VOID)
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03: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
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
ret = setpgrp(0, pid);
|
2000-06-13 13:42:40 +04:00
|
|
|
#endif
|
2010-04-02 03:25:10 +04:00
|
|
|
if (ret == -1) return -1;
|
2000-06-13 13:42:40 +04:00
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if ((fd = open("/dev/tty", O_RDWR)) >= 0) {
|
|
|
|
ioctl(fd, TIOCNOTTY, NULL);
|
|
|
|
close(fd);
|
|
|
|
}
|
2010-04-02 03:25:10 +04:00
|
|
|
return pid;
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
2010-04-02 03:25:10 +04:00
|
|
|
#endif
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define proc_setsid rb_f_notimplement
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#ifdef HAVE_GETPRIORITY
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.getpriority(kind, integer) -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Gets the scheduling priority for specified process, process group,
|
|
|
|
* or user. <em>kind</em> indicates the kind of entity to find: one
|
|
|
|
* of <code>Process::PRIO_PGRP</code>,
|
|
|
|
* <code>Process::PRIO_USER</code>, or
|
|
|
|
* <code>Process::PRIO_PROCESS</code>. _integer_ is an id
|
|
|
|
* indicating the particular process, process group, or user (an id
|
|
|
|
* of 0 means _current_). Lower priorities are more favorable
|
|
|
|
* for scheduling. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.getpriority(Process::PRIO_USER, 0) #=> 19
|
|
|
|
* Process.getpriority(Process::PRIO_PROCESS, 0) #=> 19
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getpriority(VALUE obj, VALUE which, VALUE who)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int prio, iwhich, iwho;
|
|
|
|
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
1998-01-16 15:13:05 +03:00
|
|
|
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);
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_getpriority rb_f_notimplement
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#ifdef HAVE_GETPRIORITY
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.setpriority(kind, integer, priority) -> 0
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* See <code>Process#getpriority</code>.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.setpriority(Process::PRIO_USER, 0, 19) #=> 0
|
|
|
|
* Process.setpriority(Process::PRIO_PROCESS, 0, 19) #=> 0
|
|
|
|
* Process.getpriority(Process::PRIO_USER, 0) #=> 19
|
|
|
|
* Process.getpriority(Process::PRIO_PROCESS, 0) #=> 19
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setpriority(VALUE obj, VALUE which, VALUE who, VALUE prio)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
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);
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_setpriority rb_f_notimplement
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
#if defined(HAVE_SETRLIMIT) && defined(NUM2RLIM)
|
2008-02-22 19:12:32 +03:00
|
|
|
static int
|
2008-04-24 18:46:39 +04:00
|
|
|
rlimit_resource_name2int(const char *name, int casetype)
|
2008-02-22 19:12:32 +03:00
|
|
|
{
|
2010-09-11 23:28:07 +04:00
|
|
|
int resource;
|
|
|
|
const char *p;
|
|
|
|
#define RESCHECK(r) \
|
|
|
|
do { \
|
|
|
|
if (STRCASECMP(name, #r) == 0) { \
|
|
|
|
resource = RLIMIT_##r; \
|
|
|
|
goto found; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
switch (TOUPPER(*name)) {
|
2008-02-22 19:12:32 +03:00
|
|
|
case 'A':
|
|
|
|
#ifdef RLIMIT_AS
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(AS);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'C':
|
|
|
|
#ifdef RLIMIT_CORE
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(CORE);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_CPU
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(CPU);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'D':
|
|
|
|
#ifdef RLIMIT_DATA
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(DATA);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'F':
|
|
|
|
#ifdef RLIMIT_FSIZE
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(FSIZE);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'M':
|
|
|
|
#ifdef RLIMIT_MEMLOCK
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(MEMLOCK);
|
2010-09-12 03:38:44 +04:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_MSGQUEUE
|
|
|
|
RESCHECK(MSGQUEUE);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'N':
|
|
|
|
#ifdef RLIMIT_NOFILE
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(NOFILE);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_NPROC
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(NPROC);
|
2010-09-12 03:38:44 +04:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_NICE
|
|
|
|
RESCHECK(NICE);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
#ifdef RLIMIT_RSS
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(RSS);
|
2010-09-12 03:38:44 +04:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_RTPRIO
|
|
|
|
RESCHECK(RTPRIO);
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_RTTIME
|
|
|
|
RESCHECK(RTTIME);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'S':
|
|
|
|
#ifdef RLIMIT_STACK
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(STACK);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_SBSIZE
|
2010-09-11 23:28:07 +04:00
|
|
|
RESCHECK(SBSIZE);
|
2010-09-12 03:38:44 +04:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_SIGPENDING
|
|
|
|
RESCHECK(SIGPENDING);
|
2008-02-22 19:12:32 +03:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
2008-04-24 18:46:39 +04:00
|
|
|
return -1;
|
2010-09-11 23:28:07 +04:00
|
|
|
|
|
|
|
found:
|
|
|
|
switch (casetype) {
|
|
|
|
case 0:
|
|
|
|
for (p = name; *p; p++)
|
|
|
|
if (!ISUPPER(*p))
|
|
|
|
return -1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
for (p = name; *p; p++)
|
|
|
|
if (!ISLOWER(*p))
|
|
|
|
return -1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
rb_bug("unexpected casetype");
|
|
|
|
}
|
|
|
|
return resource;
|
|
|
|
#undef RESCHECK
|
2008-04-24 18:46:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rlimit_type_by_hname(const char *name)
|
|
|
|
{
|
|
|
|
return rlimit_resource_name2int(name, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rlimit_type_by_lname(const char *name)
|
|
|
|
{
|
|
|
|
return rlimit_resource_name2int(name, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
rlimit_resource_type(VALUE rtype)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
VALUE v;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
switch (TYPE(rtype)) {
|
|
|
|
case T_SYMBOL:
|
|
|
|
name = rb_id2name(SYM2ID(rtype));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
v = rb_check_string_type(rtype);
|
|
|
|
if (!NIL_P(v)) {
|
|
|
|
rtype = v;
|
|
|
|
case T_STRING:
|
|
|
|
name = StringValueCStr(rtype);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_BIGNUM:
|
|
|
|
return NUM2INT(rtype);
|
|
|
|
}
|
|
|
|
|
|
|
|
r = rlimit_type_by_hname(name);
|
|
|
|
if (r != -1)
|
|
|
|
return r;
|
|
|
|
|
2008-02-22 19:12:32 +03:00
|
|
|
rb_raise(rb_eArgError, "invalid resource name: %s", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static rlim_t
|
|
|
|
rlimit_resource_value(VALUE rval)
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
VALUE v;
|
|
|
|
|
|
|
|
switch (TYPE(rval)) {
|
|
|
|
case T_SYMBOL:
|
|
|
|
name = rb_id2name(SYM2ID(rval));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
v = rb_check_string_type(rval);
|
|
|
|
if (!NIL_P(v)) {
|
|
|
|
rval = v;
|
|
|
|
case T_STRING:
|
|
|
|
name = StringValueCStr(rval);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall through */
|
|
|
|
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_BIGNUM:
|
2008-03-22 20:53:07 +03:00
|
|
|
return NUM2RLIM(rval);
|
2008-02-22 19:12:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef RLIM_INFINITY
|
|
|
|
if (strcmp(name, "INFINITY") == 0) return RLIM_INFINITY;
|
|
|
|
#endif
|
|
|
|
#ifdef RLIM_SAVED_MAX
|
|
|
|
if (strcmp(name, "SAVED_MAX") == 0) return RLIM_SAVED_MAX;
|
|
|
|
#endif
|
|
|
|
#ifdef RLIM_SAVED_CUR
|
|
|
|
if (strcmp(name, "SAVED_CUR") == 0) return RLIM_SAVED_CUR;
|
|
|
|
#endif
|
|
|
|
rb_raise(rb_eArgError, "invalid resource value: %s", name);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined(HAVE_GETRLIMIT) && defined(RLIM2NUM)
|
2004-11-14 13:06:16 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.getrlimit(resource) -> [cur_limit, max_limit]
|
2004-11-14 13:06:16 +03:00
|
|
|
*
|
|
|
|
* Gets the resource limit of the process.
|
|
|
|
* _cur_limit_ means current (soft) limit and
|
|
|
|
* _max_limit_ means maximum (hard) limit.
|
|
|
|
*
|
2008-02-22 19:12:32 +03:00
|
|
|
* _resource_ indicates the kind of resource to limit.
|
|
|
|
* It is specified as a symbol such as <code>:CORE</code>,
|
|
|
|
* a string such as <code>"CORE"</code> or
|
|
|
|
* a constant such as <code>Process::RLIMIT_CORE</code>.
|
2004-11-14 13:06:16 +03:00
|
|
|
* See Process.setrlimit for details.
|
|
|
|
*
|
|
|
|
* _cur_limit_ and _max_limit_ may be <code>Process::RLIM_INFINITY</code>,
|
|
|
|
* <code>Process::RLIM_SAVED_MAX</code> or
|
|
|
|
* <code>Process::RLIM_SAVED_CUR</code>.
|
|
|
|
* See Process.setrlimit and the system getrlimit(2) manual for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
proc_getrlimit(VALUE obj, VALUE resource)
|
|
|
|
{
|
|
|
|
struct rlimit rlim;
|
|
|
|
|
2004-11-17 13:12:19 +03:00
|
|
|
rb_secure(2);
|
|
|
|
|
2008-02-22 19:12:32 +03:00
|
|
|
if (getrlimit(rlimit_resource_type(resource), &rlim) < 0) {
|
2004-12-23 17:43:30 +03:00
|
|
|
rb_sys_fail("getrlimit");
|
2004-11-14 13:06:16 +03:00
|
|
|
}
|
|
|
|
return rb_assoc_new(RLIM2NUM(rlim.rlim_cur), RLIM2NUM(rlim.rlim_max));
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2004-11-14 13:06:16 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_getrlimit rb_f_notimplement
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined(HAVE_SETRLIMIT) && defined(NUM2RLIM)
|
2004-11-14 13:06:16 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.setrlimit(resource, cur_limit, max_limit) -> nil
|
|
|
|
* Process.setrlimit(resource, cur_limit) -> nil
|
2004-11-14 13:06:16 +03:00
|
|
|
*
|
|
|
|
* Sets the resource limit of the process.
|
|
|
|
* _cur_limit_ means current (soft) limit and
|
|
|
|
* _max_limit_ means maximum (hard) limit.
|
|
|
|
*
|
2005-09-24 20:36:11 +04:00
|
|
|
* If _max_limit_ is not given, _cur_limit_ is used.
|
2004-11-14 13:06:16 +03:00
|
|
|
*
|
2005-09-24 20:36:11 +04:00
|
|
|
* _resource_ indicates the kind of resource to limit.
|
2008-02-22 19:12:32 +03:00
|
|
|
* It should be a symbol such as <code>:CORE</code>,
|
|
|
|
* a string such as <code>"CORE"</code> or
|
|
|
|
* a constant such as <code>Process::RLIMIT_CORE</code>.
|
|
|
|
* The available resources are OS dependent.
|
2005-09-24 20:36:11 +04:00
|
|
|
* Ruby may support following resources.
|
|
|
|
*
|
2010-09-12 03:38:44 +04:00
|
|
|
* [AS] total available memory (bytes) (SUSv3, NetBSD, FreeBSD, OpenBSD but 4.4BSD-Lite)
|
2008-02-22 19:12:32 +03:00
|
|
|
* [CORE] core size (bytes) (SUSv3)
|
|
|
|
* [CPU] CPU time (seconds) (SUSv3)
|
|
|
|
* [DATA] data segment (bytes) (SUSv3)
|
|
|
|
* [FSIZE] file size (bytes) (SUSv3)
|
|
|
|
* [MEMLOCK] total size for mlock(2) (bytes) (4.4BSD, GNU/Linux)
|
2010-09-12 03:38:44 +04:00
|
|
|
* [MSGQUEUE] allocation for POSIX message queues (bytes) (GNU/Linux)
|
|
|
|
* [NICE] ceiling on process's nice(2) value (number) (GNU/Linux)
|
|
|
|
* [NOFILE] file descriptors (number) (SUSv3)
|
2008-02-22 19:12:32 +03:00
|
|
|
* [NPROC] number of processes for the user (number) (4.4BSD, GNU/Linux)
|
|
|
|
* [RSS] resident memory size (bytes) (4.2BSD, GNU/Linux)
|
2010-09-12 03:38:44 +04:00
|
|
|
* [RTPRIO] ceiling on the process's real-time priority (number) (GNU/Linux)
|
|
|
|
* [RTTIME] CPU time for real-time process (us) (GNU/Linux)
|
2008-02-22 19:12:32 +03:00
|
|
|
* [SBSIZE] all socket buffers (bytes) (NetBSD, FreeBSD)
|
2010-09-12 03:38:44 +04:00
|
|
|
* [SIGPENDING] number of queued signals allowed (signals) (GNU/Linux)
|
|
|
|
* [STACK] stack size (bytes) (SUSv3)
|
2008-02-22 19:12:32 +03:00
|
|
|
*
|
|
|
|
* _cur_limit_ and _max_limit_ may be
|
|
|
|
* <code>:INFINITY</code>, <code>"INFINITY"</code> or
|
|
|
|
* <code>Process::RLIM_INFINITY</code>,
|
2004-11-14 13:06:16 +03:00
|
|
|
* which means that the resource is not limited.
|
2008-02-22 19:12:32 +03:00
|
|
|
* They may be <code>Process::RLIM_SAVED_MAX</code>,
|
|
|
|
* <code>Process::RLIM_SAVED_CUR</code> and
|
|
|
|
* corresponding symbols and strings too.
|
2004-11-14 13:06:16 +03:00
|
|
|
* See system setrlimit(2) manual for details.
|
|
|
|
*
|
2010-09-12 03:38:44 +04:00
|
|
|
* The following example raises the soft limit of core size to
|
2008-02-22 19:12:32 +03:00
|
|
|
* the hard limit to try to make core dump possible.
|
|
|
|
*
|
|
|
|
* Process.setrlimit(:CORE, Process.getrlimit(:CORE)[1])
|
|
|
|
*
|
2004-11-14 13:06:16 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
2005-09-24 20:36:11 +04:00
|
|
|
proc_setrlimit(int argc, VALUE *argv, VALUE obj)
|
2004-11-14 13:06:16 +03:00
|
|
|
{
|
2005-09-24 20:36:11 +04:00
|
|
|
VALUE resource, rlim_cur, rlim_max;
|
2004-11-14 13:06:16 +03:00
|
|
|
struct rlimit rlim;
|
|
|
|
|
2004-11-17 13:12:19 +03:00
|
|
|
rb_secure(2);
|
|
|
|
|
2005-09-24 20:36:11 +04:00
|
|
|
rb_scan_args(argc, argv, "21", &resource, &rlim_cur, &rlim_max);
|
|
|
|
if (rlim_max == Qnil)
|
|
|
|
rlim_max = rlim_cur;
|
|
|
|
|
2008-02-22 19:12:32 +03:00
|
|
|
rlim.rlim_cur = rlimit_resource_value(rlim_cur);
|
|
|
|
rlim.rlim_max = rlimit_resource_value(rlim_max);
|
2004-11-14 13:06:16 +03:00
|
|
|
|
2008-02-22 19:12:32 +03:00
|
|
|
if (setrlimit(rlimit_resource_type(resource), &rlim) < 0) {
|
2004-12-23 17:43:30 +03:00
|
|
|
rb_sys_fail("setrlimit");
|
2004-11-14 13:06:16 +03:00
|
|
|
}
|
|
|
|
return Qnil;
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2004-11-14 13:06:16 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_setrlimit rb_f_notimplement
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
|
|
|
|
2003-08-29 12:34:14 +04:00
|
|
|
static int under_uid_switch = 0;
|
2003-11-04 12:13:57 +03:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
check_uid_switch(void)
|
2003-11-04 12:13:57 +03:00
|
|
|
{
|
|
|
|
rb_secure(2);
|
|
|
|
if (under_uid_switch) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
rb_raise(rb_eRuntimeError, "can't handle UID while evaluating block given to Process::UID.switch method");
|
2003-11-04 12:13:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-29 12:34:14 +04:00
|
|
|
static int under_gid_switch = 0;
|
2003-11-04 12:13:57 +03:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
check_gid_switch(void)
|
2003-11-04 12:13:57 +03:00
|
|
|
{
|
|
|
|
rb_secure(2);
|
|
|
|
if (under_gid_switch) {
|
* array.c: replace rb_protect_inspect() and rb_inspecting_p() by
rb_exec_recursive() in eval.c.
* eval.c (rb_exec_recursive): new function.
* array.c (rb_ary_join): use rb_exec_recursive().
* array.c (rb_ary_inspect, rb_ary_hash): ditto.
* file.c (rb_file_join): ditto.
* hash.c (rb_hash_inspect, rb_hash_to_s, rb_hash_hash): ditto.
* io.c (rb_io_puts): ditto.
* object.c (rb_obj_inspect): ditto
* struct.c (rb_struct_inspect): ditto.
* lib/set.rb (SortedSet::setup): a hack to shut up warning.
[ruby-talk:132866]
* lib/time.rb (Time::strptime): add new function. inspired by
[ruby-talk:132815].
* lib/parsedate.rb (ParseDate::strptime): ditto.
* regparse.c: move st_*_strend() functions from st.c. fixed some
potential memory leaks.
* exception error messages updated. [ruby-core:04497]
* ext/socket/socket.c (Init_socket): add bunch of Socket
constants. Patch from Sam Roberts <sroberts@uniserve.com>.
[ruby-core:04409]
* array.c (rb_ary_s_create): no need for negative argc check.
[ruby-core:04463]
* array.c (rb_ary_unshift_m): ditto.
* lib/xmlrpc/parser.rb (XMLRPC::FaultException): make it subclass
of StandardError class, not Exception class. [ruby-core:04429]
* parse.y (fcall_gen): lvar(arg) will be evaluated as
lvar.call(arg) when lvar is a defined local variable. [new]
* object.c (rb_class_initialize): call inherited method before
calling initializing block.
* eval.c (rb_thread_start_1): initialize newly pushed frame.
* lib/open3.rb (Open3::popen3): $? should not be EXIT_FAILURE.
fixed: [ruby-core:04444]
* eval.c (is_defined): NODE_IASGN is an assignment.
* ext/readline/readline.c (Readline.readline): use rl_outstream
and rl_instream. [ruby-dev:25699]
* ext/etc/etc.c (Init_etc): sGroup needs HAVE_ST_GR_PASSWD check
[ruby-dev:25675]
* misc/ruby-mode.el: [ruby-core:04415]
* lib/rdoc/generators/html_generator.rb: [ruby-core:04412]
* lib/rdoc/generators/ri_generator.rb: ditto.
* struct.c (make_struct): fixed: [ruby-core:04402]
* ext/curses/curses.c (window_color_set): [ruby-core:04393]
* ext/socket/socket.c (Init_socket): SO_REUSEPORT added.
[ruby-talk:130092]
* object.c: [ruby-doc:818]
* parse.y (open_args): fix too verbose warnings for the space
before argument parentheses. [ruby-dev:25492]
* parse.y (parser_yylex): ditto.
* parse.y (parser_yylex): the first expression in the parentheses
should not be a command. [ruby-dev:25492]
* lib/irb/context.rb (IRB::Context::initialize): [ruby-core:04330]
* object.c (Init_Object): remove Object#type. [ruby-core:04335]
* st.c (st_foreach): report success/failure by return value.
[ruby-Bugs-1396]
* parse.y: forgot to initialize parser struct. [ruby-dev:25492]
* parse.y (parser_yylex): no tLABEL on EXPR_BEG.
[ruby-talk:127711]
* document updates - [ruby-core:04296], [ruby-core:04301],
[ruby-core:04302], [ruby-core:04307]
* dir.c (rb_push_glob): should work for NUL delimited patterns.
* dir.c (rb_glob2): should aware of offset in the pattern.
* string.c (rb_str_new4): should propagate taintedness.
* env.h: rename member names in struct FRAME; last_func -> callee,
orig_func -> this_func, last_class -> this_class.
* struct.c (rb_struct_set): use original method name, not callee
name, to retrieve member slot. [ruby-core:04268]
* time.c (time_strftime): protect from format modification from GC
finalizers.
* object.c (Init_Object): remove rb_obj_id_obsolete()
* eval.c (rb_mod_define_method): incomplete subclass check.
[ruby-dev:25464]
* gc.c (rb_data_object_alloc): klass may be NULL.
[ruby-list:40498]
* bignum.c (rb_big_rand): should return positive random number.
[ruby-dev:25401]
* bignum.c (rb_big_rand): do not use rb_big_modulo to generate
random bignums. [ruby-dev:25396]
* variable.c (rb_autoload): [ruby-dev:25373]
* eval.c (svalue_to_avalue): [ruby-dev:25366]
* string.c (rb_str_justify): [ruby-dev:25367]
* io.c (rb_f_select): [ruby-dev:25312]
* ext/socket/socket.c (sock_s_getservbyport): [ruby-talk:124072]
* struct.c (make_struct): [ruby-dev:25249]
* dir.c (dir_open_dir): new function. [ruby-dev:25242]
* io.c (rb_f_open): add type check for return value from to_open.
* lib/pstore.rb (PStore#transaction): Use the empty content when a
file is not found. [ruby-dev:24561]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-03-04 09:47:45 +03:00
|
|
|
rb_raise(rb_eRuntimeError, "can't handle GID while evaluating block given to Process::UID.switch method");
|
2003-11-04 12:13:57 +03:00
|
|
|
}
|
|
|
|
}
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* Document-class: Process::Sys
|
|
|
|
*
|
|
|
|
* The <code>Process::Sys</code> module contains UID and GID
|
|
|
|
* functions which provide direct bindings to the system calls of the
|
|
|
|
* same names instead of the more-portable versions of the same
|
|
|
|
* functionality found in the <code>Process</code>,
|
|
|
|
* <code>Process::UID</code>, and <code>Process::GID</code> modules.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETUID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setuid(integer) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the user ID of the current process to _integer_. Not
|
|
|
|
* available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setuid(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setuid(NUM2UIDT(id)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setuid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETRUID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setruid(integer) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the real user ID of the calling process to _integer_.
|
|
|
|
* Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setruid(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setruid(NUM2UIDT(id)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setruid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETEUID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.seteuid(integer) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the effective user ID of the calling process to
|
|
|
|
* _integer_. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_seteuid(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (seteuid(NUM2UIDT(id)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_seteuid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETREUID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setreuid(rid, eid) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the (integer) real and/or effective user IDs of the current
|
|
|
|
* process to _rid_ and _eid_, respectively. A value of
|
|
|
|
* <code>-1</code> for either means to leave that ID unchanged. Not
|
|
|
|
* available on all platforms.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setreuid(VALUE obj, VALUE rid, VALUE eid)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setreuid(NUM2UIDT(rid),NUM2UIDT(eid)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setreuid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETRESUID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setresuid(rid, eid, sid) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the (integer) real, effective, and saved user IDs of the
|
2004-06-29 05:17:39 +04:00
|
|
|
* current process to _rid_, _eid_, and _sid_ respectively. A
|
2004-01-02 09:01:12 +03:00
|
|
|
* value of <code>-1</code> for any value means to
|
|
|
|
* leave that ID unchanged. Not available on all platforms.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setresuid(VALUE obj, VALUE rid, VALUE eid, VALUE sid)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setresuid(NUM2UIDT(rid),NUM2UIDT(eid),NUM2UIDT(sid)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setresuid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.uid -> fixnum
|
|
|
|
* Process::UID.rid -> fixnum
|
|
|
|
* Process::Sys.getuid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the (real) user ID of this process.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.uid #=> 501
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getuid(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid = getuid();
|
|
|
|
return UIDT2NUM(uid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-18 20:04:34 +04:00
|
|
|
#if defined(HAVE_SETRESUID) || defined(HAVE_SETREUID) || defined(HAVE_SETRUID) || defined(HAVE_SETUID)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.uid= integer -> numeric
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the (integer) user ID for this process. Not available on all
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setuid(VALUE obj, VALUE id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
|
|
|
|
uid = NUM2UIDT(id);
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESUID)
|
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);
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETUID
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
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
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return id;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
2009-04-18 20:04:34 +04:00
|
|
|
#else
|
|
|
|
#define proc_setuid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/********************************************************************
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Document-class: Process::UID
|
|
|
|
*
|
|
|
|
* The <code>Process::UID</code> module contains a collection of
|
|
|
|
* module functions which can be used to portably get, set, and
|
|
|
|
* switch the current process's real, effective, and saved user IDs.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
static rb_uid_t SAVED_USER_ID = -1;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2006-08-16 06:46:10 +04:00
|
|
|
#ifdef BROKEN_SETREUID
|
|
|
|
int
|
|
|
|
setreuid(rb_uid_t ruid, rb_uid_t euid)
|
|
|
|
{
|
|
|
|
if (ruid != -1 && ruid != getuid()) {
|
|
|
|
if (euid == -1) euid = geteuid();
|
|
|
|
if (setuid(ruid) < 0) return -1;
|
|
|
|
}
|
|
|
|
if (euid != -1 && euid != geteuid()) {
|
|
|
|
if (seteuid(euid) < 0) return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::UID.change_privilege(integer) -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Change the current process's real and effective user ID to that
|
|
|
|
* specified by _integer_. Returns the new user ID. Not
|
|
|
|
* available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* [Process.uid, Process.euid] #=> [0, 0]
|
|
|
|
* Process::UID.change_privilege(31) #=> 31
|
|
|
|
* [Process.uid, Process.euid] #=> [31, 31]
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_change_privilege(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
uid = NUM2UIDT(id);
|
2003-07-23 06:39:46 +04:00
|
|
|
|
|
|
|
if (geteuid() == 0) { /* root-user */
|
|
|
|
#if defined(HAVE_SETRESUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setresuid(uid, uid, uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETREUID) && !defined(OBSOLETE_SETREUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getuid() == uid) {
|
|
|
|
if (SAVED_USER_ID == uid) {
|
|
|
|
if (setreuid(-1, uid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
if (uid == 0) { /* (r,e,s) == (root, root, x) */
|
|
|
|
if (setreuid(-1, SAVED_USER_ID) < 0) rb_sys_fail(0);
|
|
|
|
if (setreuid(SAVED_USER_ID, 0) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = 0; /* (r,e,s) == (x, root, root) */
|
|
|
|
if (setreuid(uid, uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
} else {
|
|
|
|
if (setreuid(0, -1) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = 0;
|
|
|
|
if (setreuid(uid, uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
}
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
|
|
|
if (setreuid(uid, uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
}
|
|
|
|
#elif defined(HAVE_SETRUID) && defined(HAVE_SETEUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getuid() == uid) {
|
|
|
|
if (SAVED_USER_ID == uid) {
|
|
|
|
if (seteuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
if (uid == 0) {
|
|
|
|
if (setruid(SAVED_USER_ID) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = 0;
|
|
|
|
if (setruid(0) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
if (setruid(0) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = 0;
|
|
|
|
if (seteuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
if (setruid(uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
}
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
|
|
|
if (seteuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
if (setruid(uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
}
|
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
rb_notimplement();
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
} else { /* unprivileged user */
|
|
|
|
#if defined(HAVE_SETRESUID)
|
2010-05-17 17:21:17 +04:00
|
|
|
if (setresuid((getuid() == uid)? (rb_uid_t)-1: uid,
|
|
|
|
(geteuid() == uid)? (rb_uid_t)-1: uid,
|
|
|
|
(SAVED_USER_ID == uid)? (rb_uid_t)-1: uid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
SAVED_USER_ID = uid;
|
2003-07-23 20:07:35 +04:00
|
|
|
#elif defined(HAVE_SETREUID) && !defined(OBSOLETE_SETREUID)
|
|
|
|
if (SAVED_USER_ID == uid) {
|
2010-11-06 01:33:14 +03:00
|
|
|
if (setreuid((getuid() == uid)? (rb_uid_t)-1: uid,
|
|
|
|
(geteuid() == uid)? (rb_uid_t)-1: uid) < 0)
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 20:07:35 +04:00
|
|
|
} else if (getuid() != uid) {
|
2010-11-06 01:33:14 +03:00
|
|
|
if (setreuid(uid, (geteuid() == uid)? (rb_uid_t)-1: uid) < 0)
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 20:07:35 +04:00
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
} else if (/* getuid() == uid && */ geteuid() != uid) {
|
|
|
|
if (setreuid(geteuid(), uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
if (setreuid(uid, -1) < 0) rb_sys_fail(0);
|
|
|
|
} else { /* getuid() == uid && geteuid() == uid */
|
|
|
|
if (setreuid(-1, SAVED_USER_ID) < 0) rb_sys_fail(0);
|
|
|
|
if (setreuid(SAVED_USER_ID, uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
if (setreuid(uid, -1) < 0) rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETRUID) && defined(HAVE_SETEUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (SAVED_USER_ID == uid) {
|
|
|
|
if (geteuid() != uid && seteuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
if (getuid() != uid && setruid(uid) < 0) rb_sys_fail(0);
|
|
|
|
} else if (/* SAVED_USER_ID != uid && */ geteuid() == uid) {
|
|
|
|
if (getuid() != uid) {
|
|
|
|
if (setruid(uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
} else {
|
|
|
|
if (setruid(SAVED_USER_ID) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
if (setruid(uid) < 0) rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
} else if (/* geteuid() != uid && */ getuid() == uid) {
|
|
|
|
if (seteuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
if (setruid(SAVED_USER_ID) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
if (setruid(uid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
2003-07-23 20:07:35 +04:00
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
#elif defined HAVE_44BSD_SETUID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getuid() == uid) {
|
|
|
|
/* (r,e,s)==(uid,?,?) ==> (uid,uid,uid) */
|
|
|
|
if (setuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
} else {
|
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETEUID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getuid() == uid && SAVED_USER_ID == uid) {
|
|
|
|
if (seteuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETUID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getuid() == uid && SAVED_USER_ID == uid) {
|
|
|
|
if (setuid(uid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
rb_notimplement();
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return id;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setgid(integer) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the group ID of the current process to _integer_. Not
|
|
|
|
* available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setgid(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setgid(NUM2GIDT(id)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setgid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETRGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setrgid(integer) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the real group ID of the calling process to _integer_.
|
|
|
|
* Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setrgid(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setrgid(NUM2GIDT(id)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setrgid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETEGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setegid(integer) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the effective group ID of the calling process to
|
|
|
|
* _integer_. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setegid(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setegid(NUM2GIDT(id)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setegid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETREGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setregid(rid, eid) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the (integer) real and/or effective group IDs of the current
|
|
|
|
* process to <em>rid</em> and <em>eid</em>, respectively. A value of
|
|
|
|
* <code>-1</code> for either means to leave that ID unchanged. Not
|
|
|
|
* available on all platforms.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setregid(VALUE obj, VALUE rid, VALUE eid)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setregid(NUM2GIDT(rid),NUM2GIDT(eid)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setregid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_SETRESGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.setresgid(rid, eid, sid) -> nil
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the (integer) real, effective, and saved user IDs of the
|
|
|
|
* current process to <em>rid</em>, <em>eid</em>, and <em>sid</em>
|
|
|
|
* respectively. A value of <code>-1</code> for any value means to
|
|
|
|
* leave that ID unchanged. Not available on all platforms.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_setresgid(VALUE obj, VALUE rid, VALUE eid, VALUE sid)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setresgid(NUM2GIDT(rid),NUM2GIDT(eid),NUM2GIDT(sid)) != 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
return Qnil;
|
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define p_sys_setresgid rb_f_notimplement
|
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#if defined HAVE_ISSETUGID
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::Sys.issetugid -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if the process was created as a result
|
|
|
|
* of an execve(2) system call which had either of the setuid or
|
|
|
|
* setgid bits set (and extra privileges were given as a result) or
|
|
|
|
* if it has changed any of its real, effective or saved user or
|
|
|
|
* group IDs since it began execution.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_sys_issetugid(VALUE obj)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_secure(2);
|
2003-07-23 06:39:46 +04:00
|
|
|
if (issetugid()) {
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qfalse;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define p_sys_issetugid rb_f_notimplement
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.gid -> fixnum
|
|
|
|
* Process::GID.rid -> fixnum
|
|
|
|
* Process::Sys.getgid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the (real) group ID for this process.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.gid #=> 500
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getgid(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid = getgid();
|
|
|
|
return GIDT2NUM(gid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-18 20:04:34 +04:00
|
|
|
#if defined(HAVE_SETRESGID) || defined(HAVE_SETREGID) || defined(HAVE_SETRGID) || defined(HAVE_SETGID)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.gid= fixnum -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the group ID for this process.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setgid(VALUE obj, VALUE id)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
|
|
|
|
gid = NUM2GIDT(id);
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESGID)
|
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);
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETRGID
|
2006-08-16 06:46:10 +04:00
|
|
|
if (setrgid(gid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETGID
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
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
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return GIDT2NUM(gid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2009-04-18 20:04:34 +04:00
|
|
|
#else
|
|
|
|
#define proc_setgid rb_f_notimplement
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
/*
|
|
|
|
* Maximum supplementary groups are platform dependent.
|
|
|
|
* FWIW, 65536 is enough big for our supported OSs.
|
|
|
|
*
|
|
|
|
* OS Name max groups
|
|
|
|
* -----------------------------------------------
|
|
|
|
* Linux Kernel >= 2.6.3 65536
|
|
|
|
* Linux Kernel < 2.6.3 32
|
|
|
|
* IBM AIX 5.2 64
|
|
|
|
* IBM AIX 5.3 ... 6.1 128
|
|
|
|
* IBM AIX 7.1 128 (can be configured to be up to 2048)
|
|
|
|
* OpenBSD, NetBSD 16
|
|
|
|
* FreeBSD < 8.0 16
|
|
|
|
* FreeBSD >=8.0 1023
|
|
|
|
* Darwin (Mac OS X) 16
|
|
|
|
* Sun Solaris 7,8,9,10 16
|
|
|
|
* Sun Solaris 11 / OpenSolaris 1024
|
|
|
|
* HP-UX 20
|
|
|
|
* Windows 1015
|
|
|
|
*/
|
|
|
|
#define RB_MAX_GROUPS (65536)
|
2011-03-07 14:58:12 +03:00
|
|
|
static int _maxgroups = -1;
|
2011-03-07 19:44:36 +03:00
|
|
|
static int get_sc_ngroups_max(void)
|
|
|
|
{
|
|
|
|
#ifdef _SC_NGROUPS_MAX
|
|
|
|
return (int)sysconf(_SC_NGROUPS_MAX);
|
|
|
|
#else
|
|
|
|
return 32;
|
|
|
|
#endif
|
|
|
|
}
|
2011-03-07 14:58:12 +03:00
|
|
|
static int maxgroups(void)
|
|
|
|
{
|
|
|
|
if (_maxgroups < 0) {
|
2011-03-07 19:44:36 +03:00
|
|
|
_maxgroups = get_sc_ngroups_max();
|
2011-03-07 14:58:12 +03:00
|
|
|
if (_maxgroups < 0)
|
|
|
|
_maxgroups = RB_MAX_GROUPS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _maxgroups;
|
|
|
|
}
|
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#ifdef HAVE_GETGROUPS
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.groups -> array
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Get an <code>Array</code> of the gids of groups in the
|
|
|
|
* supplemental group access list for this process.
|
|
|
|
*
|
|
|
|
* Process.groups #=> [27, 6, 10, 11]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
static VALUE
|
|
|
|
proc_getgroups(VALUE obj)
|
|
|
|
{
|
|
|
|
VALUE ary;
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
int i, ngroups;
|
2005-05-14 18:57:53 +04:00
|
|
|
rb_gid_t *groups;
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
ngroups = getgroups(0, NULL);
|
|
|
|
if (ngroups == -1)
|
|
|
|
rb_sys_fail(0);
|
|
|
|
|
|
|
|
groups = ALLOCA_N(rb_gid_t, ngroups);
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
ngroups = getgroups(ngroups, groups);
|
* compile.c, cont.c, gc.c, insns.def, iseq.c, iseq.h, process.c,
thread.c, vm.c, vm_core.h, vm_dump.c, vm_eval.c,
vm_insnhelper.c, vm_method.c, template/insns_info.inc.tmpl,
tool/instruction.rb: fixed types.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-09-22 00:58:26 +04:00
|
|
|
if (ngroups == -1)
|
2004-12-23 17:43:30 +03:00
|
|
|
rb_sys_fail(0);
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
ary = rb_ary_new();
|
|
|
|
for (i = 0; i < ngroups; i++)
|
2007-06-26 11:39:04 +04:00
|
|
|
rb_ary_push(ary, GIDT2NUM(groups[i]));
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
return ary;
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2003-06-09 08:27:17 +04:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_getgroups rb_f_notimplement
|
2003-06-09 08:27:17 +04:00
|
|
|
#endif
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#ifdef HAVE_SETGROUPS
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.groups= array -> array
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the supplemental group access list to the given
|
|
|
|
* <code>Array</code> of group IDs.
|
|
|
|
*
|
|
|
|
* Process.groups #=> [0, 1, 2, 3, 4, 6, 10, 11, 20, 26, 27]
|
|
|
|
* Process.groups = [27, 6, 10, 11] #=> [27, 6, 10, 11]
|
|
|
|
* Process.groups #=> [27, 6, 10, 11]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
static VALUE
|
|
|
|
proc_setgroups(VALUE obj, VALUE ary)
|
|
|
|
{
|
2011-03-07 15:54:27 +03:00
|
|
|
int ngroups, i;
|
2005-05-14 18:57:53 +04:00
|
|
|
rb_gid_t *groups;
|
2011-03-07 15:35:45 +03:00
|
|
|
long getgr_buf_len = sysconf(_SC_GETGR_R_SIZE_MAX);
|
|
|
|
char* getgr_buf;
|
|
|
|
|
|
|
|
if (getgr_buf_len < 0)
|
|
|
|
getgr_buf_len = 4096;
|
|
|
|
getgr_buf = ALLOCA_N(char, getgr_buf_len);
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
Check_Type(ary, T_ARRAY);
|
|
|
|
|
2011-03-07 15:54:27 +03:00
|
|
|
if (RARRAY_LEN(ary) > maxgroups())
|
|
|
|
rb_raise(rb_eArgError, "too many groups, %d max", maxgroups());
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 19:13:57 +03:00
|
|
|
ngroups = (int)RARRAY_LEN(ary);
|
2005-05-14 18:57:53 +04:00
|
|
|
groups = ALLOCA_N(rb_gid_t, ngroups);
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 15:54:27 +03:00
|
|
|
for (i = 0; i < ngroups; i++) {
|
2006-09-02 18:42:08 +04:00
|
|
|
VALUE g = RARRAY_PTR(ary)[i];
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
if (FIXNUM_P(g)) {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
groups[i] = NUM2GIDT(g);
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE tmp = rb_check_string_type(g);
|
2011-03-07 15:35:45 +03:00
|
|
|
struct group grp;
|
|
|
|
struct group *p;
|
|
|
|
int ret;
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
if (NIL_P(tmp)) {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
groups[i] = NUM2GIDT(g);
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
else {
|
2011-03-07 15:35:45 +03:00
|
|
|
StringValue(tmp);
|
|
|
|
|
|
|
|
ret = getgrnam_r(RSTRING_PTR(tmp), &grp, getgr_buf, getgr_buf_len, &p);
|
|
|
|
if (ret)
|
|
|
|
rb_sys_fail("getgrnam_r");
|
|
|
|
if (p == NULL) {
|
2004-06-29 05:17:39 +04:00
|
|
|
rb_raise(rb_eArgError,
|
2006-08-31 14:47:44 +04:00
|
|
|
"can't find group for %s", RSTRING_PTR(tmp));
|
2011-02-07 19:01:57 +03:00
|
|
|
}
|
2011-03-07 15:35:45 +03:00
|
|
|
groups[i] = grp.gr_gid;
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-07 15:54:27 +03:00
|
|
|
if (setgroups(ngroups, groups) == -1) /* ngroups <= maxgroups */
|
2004-12-23 17:43:30 +03:00
|
|
|
rb_sys_fail(0);
|
2003-06-07 19:34:31 +04:00
|
|
|
|
|
|
|
return proc_getgroups(obj);
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2003-06-09 08:27:17 +04:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_setgroups rb_f_notimplement
|
2003-06-09 08:27:17 +04:00
|
|
|
#endif
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-04-16 20:58:06 +04:00
|
|
|
#ifdef HAVE_INITGROUPS
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.initgroups(username, gid) -> array
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Initializes the supplemental group access list by reading the
|
|
|
|
* system group database and using all groups of which the given user
|
|
|
|
* is a member. The group with the specified <em>gid</em> is also
|
|
|
|
* added to the list. Returns the resulting <code>Array</code> of the
|
|
|
|
* gids of all the groups in the supplementary group access list. Not
|
|
|
|
* available on all platforms.
|
|
|
|
*
|
|
|
|
* Process.groups #=> [0, 1, 2, 3, 4, 6, 10, 11, 20, 26, 27]
|
|
|
|
* Process.initgroups( "mgranger", 30 ) #=> [30, 6, 10, 11]
|
|
|
|
* Process.groups #=> [30, 6, 10, 11]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_initgroups(VALUE obj, VALUE uname, VALUE base_grp)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (initgroups(StringValuePtr(uname), NUM2GIDT(base_grp)) != 0) {
|
2003-07-23 06:39:46 +04:00
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
|
|
|
return proc_getgroups(obj);
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define proc_initgroups rb_f_notimplement
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.maxgroups -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the maximum number of gids allowed in the supplemental
|
|
|
|
* group access list.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.maxgroups #=> 32
|
|
|
|
*/
|
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getmaxgroups(VALUE obj)
|
2003-06-07 19:34:31 +04:00
|
|
|
{
|
2011-03-07 14:58:12 +03:00
|
|
|
return INT2FIX(maxgroups());
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.maxgroups= fixnum -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the maximum number of gids allowed in the supplemental group
|
|
|
|
* access list.
|
|
|
|
*/
|
|
|
|
|
2003-06-07 19:34:31 +04:00
|
|
|
static VALUE
|
2005-08-31 05:40:56 +04:00
|
|
|
proc_setmaxgroups(VALUE obj, VALUE val)
|
2003-06-07 19:34:31 +04:00
|
|
|
{
|
2011-03-07 11:44:45 +03:00
|
|
|
int ngroups = FIX2INT(val);
|
2011-03-07 19:44:36 +03:00
|
|
|
int ngroups_max = get_sc_ngroups_max();
|
2011-03-06 17:28:02 +03:00
|
|
|
|
2011-03-07 11:44:45 +03:00
|
|
|
if (ngroups <= 0)
|
|
|
|
rb_raise(rb_eArgError, "maxgroups %d shold be positive", ngroups);
|
|
|
|
|
|
|
|
if (ngroups > RB_MAX_GROUPS)
|
|
|
|
ngroups = RB_MAX_GROUPS;
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 14:58:12 +03:00
|
|
|
if (ngroups_max > 0 && ngroups > ngroups_max)
|
|
|
|
ngroups = ngroups_max;
|
|
|
|
|
|
|
|
_maxgroups = ngroups;
|
2003-06-07 19:34:31 +04:00
|
|
|
|
2011-03-07 14:58:12 +03:00
|
|
|
return INT2FIX(_maxgroups);
|
2003-06-07 19:34:31 +04:00
|
|
|
}
|
|
|
|
|
2010-04-02 03:25:10 +04:00
|
|
|
#if defined(HAVE_DAEMON) || (defined(HAVE_FORK) && defined(HAVE_SETSID))
|
2010-07-13 16:31:17 +04:00
|
|
|
#ifndef HAVE_DAEMON
|
|
|
|
static int rb_daemon(int nochdir, int noclose);
|
2010-12-24 02:46:39 +03:00
|
|
|
#define daemon(nochdir, noclose) rb_daemon((nochdir), (noclose))
|
2010-07-13 16:31:17 +04:00
|
|
|
#endif
|
|
|
|
|
2004-08-17 13:02:40 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.daemon() -> 0
|
|
|
|
* Process.daemon(nochdir=nil,noclose=nil) -> 0
|
2004-08-17 13:02:40 +04:00
|
|
|
*
|
|
|
|
* Detach the process from controlling terminal and run in
|
|
|
|
* the background as system daemon. Unless the argument
|
|
|
|
* nochdir is true (i.e. non false), it changes the current
|
|
|
|
* working directory to the root ("/"). Unless the argument
|
|
|
|
* noclose is true, daemon() will redirect standard input,
|
|
|
|
* standard output and standard error to /dev/null.
|
2010-03-30 09:00:15 +04:00
|
|
|
* Return zero on success, or raise one of Errno::*.
|
2004-08-17 13:02:40 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_daemon(int argc, VALUE *argv)
|
2004-08-17 13:02:40 +04:00
|
|
|
{
|
|
|
|
VALUE nochdir, noclose;
|
|
|
|
int n;
|
|
|
|
|
2005-10-05 20:15:16 +04:00
|
|
|
rb_secure(2);
|
2004-08-17 13:02:40 +04:00
|
|
|
rb_scan_args(argc, argv, "02", &nochdir, &noclose);
|
|
|
|
|
2009-03-01 10:01:03 +03:00
|
|
|
prefork();
|
|
|
|
before_fork();
|
2004-08-17 13:02:40 +04:00
|
|
|
n = daemon(RTEST(nochdir), RTEST(noclose));
|
2009-03-01 10:01:03 +03:00
|
|
|
after_fork();
|
2004-08-17 13:02:40 +04:00
|
|
|
if (n < 0) rb_sys_fail("daemon");
|
|
|
|
return INT2FIX(n);
|
2010-07-13 16:31:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef HAVE_DAEMON
|
|
|
|
static int
|
|
|
|
rb_daemon(int nochdir, int noclose)
|
|
|
|
{
|
|
|
|
int n, err = 0;
|
|
|
|
|
2009-02-05 14:33:19 +03:00
|
|
|
switch (rb_fork(0, 0, 0, Qnil)) {
|
2004-12-23 17:43:30 +03:00
|
|
|
case -1:
|
2010-03-30 09:00:15 +04:00
|
|
|
rb_sys_fail("daemon");
|
2004-12-23 17:43:30 +03:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
2010-04-02 03:24:11 +04:00
|
|
|
_exit(EXIT_SUCCESS);
|
2004-08-17 13:02:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
proc_setsid();
|
|
|
|
|
2009-04-25 13:21:49 +04:00
|
|
|
/* must not be process-leader */
|
|
|
|
switch (rb_fork(0, 0, 0, Qnil)) {
|
|
|
|
case -1:
|
2010-07-13 16:31:17 +04:00
|
|
|
return -1;
|
2009-04-25 13:21:49 +04:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
default:
|
2010-04-02 03:24:11 +04:00
|
|
|
_exit(EXIT_SUCCESS);
|
2009-04-25 13:21:49 +04:00
|
|
|
}
|
|
|
|
|
2010-07-13 16:31:17 +04:00
|
|
|
if (!nochdir)
|
|
|
|
err = chdir("/");
|
2004-08-17 13:02:40 +04:00
|
|
|
|
2010-07-13 16:31:17 +04:00
|
|
|
if (!noclose && (n = open("/dev/null", O_RDWR, 0)) != -1) {
|
2004-12-23 17:43:30 +03:00
|
|
|
(void)dup2(n, 0);
|
|
|
|
(void)dup2(n, 1);
|
|
|
|
(void)dup2(n, 2);
|
|
|
|
if (n > 2)
|
|
|
|
(void)close (n);
|
2004-08-17 13:02:40 +04:00
|
|
|
}
|
2010-07-13 16:31:17 +04:00
|
|
|
return err;
|
2004-08-17 13:02:40 +04:00
|
|
|
}
|
2010-07-13 16:31:17 +04:00
|
|
|
#endif
|
2009-04-16 20:58:06 +04:00
|
|
|
#else
|
|
|
|
#define proc_daemon rb_f_notimplement
|
|
|
|
#endif
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/********************************************************************
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Document-class: Process::GID
|
|
|
|
*
|
|
|
|
* The <code>Process::GID</code> module contains a collection of
|
|
|
|
* module functions which can be used to portably get, set, and
|
|
|
|
* switch the current process's real, effective, and saved group IDs.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-03-14 21:30:00 +03:00
|
|
|
static rb_gid_t SAVED_GROUP_ID = -1;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2006-08-16 06:46:10 +04:00
|
|
|
#ifdef BROKEN_SETREGID
|
|
|
|
int
|
|
|
|
setregid(rb_gid_t rgid, rb_gid_t egid)
|
|
|
|
{
|
|
|
|
if (rgid != -1 && rgid != getgid()) {
|
|
|
|
if (egid == -1) egid = getegid();
|
|
|
|
if (setgid(rgid) < 0) return -1;
|
|
|
|
}
|
|
|
|
if (egid != -1 && egid != getegid()) {
|
|
|
|
if (setegid(egid) < 0) return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::GID.change_privilege(integer) -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Change the current process's real and effective group ID to that
|
|
|
|
* specified by _integer_. Returns the new group ID. Not
|
|
|
|
* available on all platforms.
|
|
|
|
*
|
|
|
|
* [Process.gid, Process.egid] #=> [0, 0]
|
|
|
|
* Process::GID.change_privilege(33) #=> 33
|
|
|
|
* [Process.gid, Process.egid] #=> [33, 33]
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_change_privilege(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
gid = NUM2GIDT(id);
|
2003-07-23 06:39:46 +04:00
|
|
|
|
|
|
|
if (geteuid() == 0) { /* root-user */
|
|
|
|
#if defined(HAVE_SETRESGID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setresgid(gid, gid, gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETGID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETREGID) && !defined(OBSOLETE_SETREGID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getgid() == gid) {
|
|
|
|
if (SAVED_GROUP_ID == gid) {
|
|
|
|
if (setregid(-1, gid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
if (gid == 0) { /* (r,e,s) == (root, y, x) */
|
|
|
|
if (setregid(-1, SAVED_GROUP_ID) < 0) rb_sys_fail(0);
|
|
|
|
if (setregid(SAVED_GROUP_ID, 0) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = 0; /* (r,e,s) == (x, root, root) */
|
|
|
|
if (setregid(gid, gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
} else { /* (r,e,s) == (z, y, x) */
|
|
|
|
if (setregid(0, 0) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = 0;
|
|
|
|
if (setregid(gid, gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
}
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
|
|
|
if (setregid(gid, gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
}
|
|
|
|
#elif defined(HAVE_SETRGID) && defined (HAVE_SETEGID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getgid() == gid) {
|
|
|
|
if (SAVED_GROUP_ID == gid) {
|
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
if (gid == 0) {
|
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
if (setrgid(SAVED_GROUP_ID) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = 0;
|
|
|
|
if (setrgid(0) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
if (setrgid(0) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = 0;
|
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
if (setrgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
}
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
if (setrgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
}
|
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
rb_notimplement();
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
} else { /* unprivileged user */
|
|
|
|
#if defined(HAVE_SETRESGID)
|
2010-05-17 17:21:17 +04:00
|
|
|
if (setresgid((getgid() == gid)? (rb_gid_t)-1: gid,
|
|
|
|
(getegid() == gid)? (rb_gid_t)-1: gid,
|
|
|
|
(SAVED_GROUP_ID == gid)? (rb_gid_t)-1: gid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
SAVED_GROUP_ID = gid;
|
2003-07-23 20:07:35 +04:00
|
|
|
#elif defined(HAVE_SETREGID) && !defined(OBSOLETE_SETREGID)
|
|
|
|
if (SAVED_GROUP_ID == gid) {
|
2010-11-06 01:33:14 +03:00
|
|
|
if (setregid((getgid() == gid)? (rb_uid_t)-1: gid,
|
|
|
|
(getegid() == gid)? (rb_uid_t)-1: gid) < 0)
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 20:07:35 +04:00
|
|
|
} else if (getgid() != gid) {
|
2010-11-06 01:33:14 +03:00
|
|
|
if (setregid(gid, (getegid() == gid)? (rb_uid_t)-1: gid) < 0)
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 20:07:35 +04:00
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
} else if (/* getgid() == gid && */ getegid() != gid) {
|
|
|
|
if (setregid(getegid(), gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
if (setregid(gid, -1) < 0) rb_sys_fail(0);
|
|
|
|
} else { /* getgid() == gid && getegid() == gid */
|
|
|
|
if (setregid(-1, SAVED_GROUP_ID) < 0) rb_sys_fail(0);
|
|
|
|
if (setregid(SAVED_GROUP_ID, gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
if (setregid(gid, -1) < 0) rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETRGID) && defined(HAVE_SETEGID)
|
2003-07-23 20:07:35 +04:00
|
|
|
if (SAVED_GROUP_ID == gid) {
|
|
|
|
if (getegid() != gid && setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
if (getgid() != gid && setrgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
} else if (/* SAVED_GROUP_ID != gid && */ getegid() == gid) {
|
|
|
|
if (getgid() != gid) {
|
|
|
|
if (setrgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
} else {
|
|
|
|
if (setrgid(SAVED_GROUP_ID) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
if (setrgid(gid) < 0) rb_sys_fail(0);
|
2006-12-31 18:02:22 +03:00
|
|
|
}
|
2003-07-23 20:07:35 +04:00
|
|
|
} else if (/* getegid() != gid && */ getgid() == gid) {
|
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
if (setrgid(SAVED_GROUP_ID) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
if (setrgid(gid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
2003-07-23 20:07:35 +04:00
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
#elif defined HAVE_44BSD_SETGID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getgid() == gid) {
|
|
|
|
/* (r,e,s)==(gid,?,?) ==> (gid,gid,gid) */
|
|
|
|
if (setgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
} else {
|
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETEGID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getgid() == gid && SAVED_GROUP_ID == gid) {
|
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETGID
|
2003-07-23 20:07:35 +04:00
|
|
|
if (getgid() == gid && SAVED_GROUP_ID == gid) {
|
|
|
|
if (setgid(gid) < 0) rb_sys_fail(0);
|
|
|
|
} else {
|
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
rb_notimplement();
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return id;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.euid -> fixnum
|
|
|
|
* Process::UID.eid -> fixnum
|
|
|
|
* Process::Sys.geteuid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the effective user ID for this process.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.euid #=> 501
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_geteuid(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t euid = geteuid();
|
2007-08-15 08:42:19 +04:00
|
|
|
return UIDT2NUM(euid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2009-04-25 13:26:58 +04:00
|
|
|
#if defined(HAVE_SETRESUID) || defined(HAVE_SETREUID) || defined(HAVE_SETEUID) || defined(HAVE_SETUID) || defined(_POSIX_SAVED_IDS)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Process.euid= integer
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the effective user ID for this process. Not available on all
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_seteuid(VALUE obj, VALUE euid)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid;
|
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
|
|
|
|
uid = NUM2UIDT(euid);
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESUID)
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setresuid(-1, uid, -1) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETREUID
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setreuid(-1, uid) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETEUID
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (seteuid(uid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETUID
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (uid == getuid()) {
|
|
|
|
if (setuid(uid) < 0) rb_sys_fail(0);
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_notimplement();
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
return euid;
|
|
|
|
}
|
2009-04-25 13:26:58 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-04-18 20:41:16 +04:00
|
|
|
#if defined(HAVE_SETRESUID) || defined(HAVE_SETREUID) || defined(HAVE_SETEUID) || defined(HAVE_SETUID)
|
|
|
|
#define proc_seteuid_m proc_seteuid
|
|
|
|
#else
|
|
|
|
#define proc_seteuid_m rb_f_notimplement
|
|
|
|
#endif
|
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
static rb_uid_t
|
|
|
|
rb_seteuid_core(rb_uid_t euid)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
uid = getuid();
|
|
|
|
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESUID)
|
2003-07-23 06:39:46 +04:00
|
|
|
if (uid != euid) {
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setresuid(-1,euid,euid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = euid;
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setresuid(-1,euid,-1) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
#elif defined(HAVE_SETREUID) && !defined(OBSOLETE_SETREUID)
|
|
|
|
if (setreuid(-1, euid) < 0) rb_sys_fail(0);
|
|
|
|
if (uid != euid) {
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setreuid(euid,uid) < 0) rb_sys_fail(0);
|
|
|
|
if (setreuid(uid,euid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = euid;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
#elif defined HAVE_SETEUID
|
|
|
|
if (seteuid(euid) < 0) rb_sys_fail(0);
|
|
|
|
#elif defined HAVE_SETUID
|
|
|
|
if (geteuid() == 0) rb_sys_fail(0);
|
|
|
|
if (setuid(euid) < 0) rb_sys_fail(0);
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return euid;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::UID.grant_privilege(integer) -> fixnum
|
|
|
|
* Process::UID.eid= integer -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the effective user ID, and if possible, the saved user ID of
|
|
|
|
* the process to the given _integer_. Returns the new
|
|
|
|
* effective user ID. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* [Process.uid, Process.euid] #=> [0, 0]
|
|
|
|
* Process::UID.grant_privilege(31) #=> 31
|
|
|
|
* [Process.uid, Process.euid] #=> [0, 31]
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_grant_privilege(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_seteuid_core(NUM2UIDT(id));
|
|
|
|
return id;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.egid -> fixnum
|
|
|
|
* Process::GID.eid -> fixnum
|
|
|
|
* Process::Sys.geteid -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns the effective group ID for this process. Not available on
|
|
|
|
* all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Process.egid #=> 500
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_getegid(VALUE obj)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t egid = getegid();
|
2002-08-21 19:47:54 +04:00
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return GIDT2NUM(egid);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2009-04-25 14:28:25 +04:00
|
|
|
#if defined(HAVE_SETRESGID) || defined(HAVE_SETREGID) || defined(HAVE_SETEGID) || defined(HAVE_SETGID) || defined(_POSIX_SAVED_IDS)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.egid = fixnum -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Sets the effective group ID for this process. Not available on all
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
proc_setegid(VALUE obj, VALUE egid)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid;
|
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
gid = NUM2GIDT(egid);
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESGID)
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setresgid(-1, gid, -1) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETREGID
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setregid(-1, gid) < 0) rb_sys_fail(0);
|
2001-01-10 10:30:18 +03:00
|
|
|
#elif defined HAVE_SETEGID
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (setegid(gid) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined HAVE_SETGID
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
if (gid == getgid()) {
|
|
|
|
if (setgid(gid) < 0) rb_sys_fail(0);
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
|
|
|
else {
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_notimplement();
|
2001-09-08 18:17:53 +04:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
|
|
|
rb_notimplement();
|
1998-01-16 15:13:05 +03:00
|
|
|
#endif
|
|
|
|
return egid;
|
|
|
|
}
|
2009-04-25 14:28:25 +04:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-04-18 20:41:16 +04:00
|
|
|
#if defined(HAVE_SETRESGID) || defined(HAVE_SETREGID) || defined(HAVE_SETEGID) || defined(HAVE_SETGID)
|
|
|
|
#define proc_setegid_m proc_setegid
|
|
|
|
#else
|
|
|
|
#define proc_setegid_m rb_f_notimplement
|
|
|
|
#endif
|
|
|
|
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
static rb_gid_t
|
|
|
|
rb_setegid_core(rb_gid_t egid)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
gid = getgid();
|
|
|
|
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESGID)
|
2003-07-23 06:39:46 +04:00
|
|
|
if (gid != egid) {
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setresgid(-1,egid,egid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = egid;
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setresgid(-1,egid,-1) < 0) rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
#elif defined(HAVE_SETREGID) && !defined(OBSOLETE_SETREGID)
|
|
|
|
if (setregid(-1, egid) < 0) rb_sys_fail(0);
|
|
|
|
if (gid != egid) {
|
2003-07-23 20:07:35 +04:00
|
|
|
if (setregid(egid,gid) < 0) rb_sys_fail(0);
|
|
|
|
if (setregid(gid,egid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = egid;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
#elif defined HAVE_SETEGID
|
|
|
|
if (setegid(egid) < 0) rb_sys_fail(0);
|
|
|
|
#elif defined HAVE_SETGID
|
|
|
|
if (geteuid() == 0 /* root user */) rb_sys_fail(0);
|
|
|
|
if (setgid(egid) < 0) rb_sys_fail(0);
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return egid;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::GID.grant_privilege(integer) -> fixnum
|
|
|
|
* Process::GID.eid = integer -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Set the effective group ID, and if possible, the saved group ID of
|
|
|
|
* the process to the given _integer_. Returns the new
|
|
|
|
* effective group ID. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* [Process.gid, Process.egid] #=> [0, 0]
|
|
|
|
* Process::GID.grant_privilege(31) #=> 33
|
|
|
|
* [Process.gid, Process.egid] #=> [0, 33]
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_grant_privilege(VALUE obj, VALUE id)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_setegid_core(NUM2GIDT(id));
|
|
|
|
return id;
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::UID.re_exchangeable? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if the real and effective user IDs of a
|
|
|
|
* process may be exchanged on the current platform.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_exchangeable(void)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETREUID) && !defined(OBSOLETE_SETREUID)
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qfalse;
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::UID.re_exchange -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Exchange real and effective user IDs and return the new effective
|
|
|
|
* user ID. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* [Process.uid, Process.euid] #=> [0, 31]
|
|
|
|
* Process::UID.re_exchange #=> 0
|
|
|
|
* [Process.uid, Process.euid] #=> [31, 0]
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_exchange(VALUE obj)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid, euid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
uid = getuid();
|
|
|
|
euid = geteuid();
|
|
|
|
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESUID)
|
2003-07-23 06:39:46 +04:00
|
|
|
if (setresuid(euid, uid, uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
#elif defined(HAVE_SETREUID) && !defined(OBSOLETE_SETREUID)
|
|
|
|
if (setreuid(euid,uid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_USER_ID = uid;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return UIDT2NUM(uid);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::GID.re_exchangeable? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if the real and effective group IDs of a
|
|
|
|
* process may be exchanged on the current platform.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_exchangeable(void)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESGID)
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
#elif defined(HAVE_SETREGID) && !defined(OBSOLETE_SETREGID)
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qfalse;
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::GID.re_exchange -> fixnum
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Exchange real and effective group IDs and return the new effective
|
|
|
|
* group ID. Not available on all platforms.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* [Process.gid, Process.egid] #=> [0, 33]
|
|
|
|
* Process::GID.re_exchange #=> 0
|
|
|
|
* [Process.gid, Process.egid] #=> [33, 0]
|
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_exchange(VALUE obj)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid, egid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
gid = getgid();
|
|
|
|
egid = getegid();
|
|
|
|
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_SETRESGID)
|
2003-07-23 06:39:46 +04:00
|
|
|
if (setresgid(egid, gid, gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
#elif defined(HAVE_SETREGID) && !defined(OBSOLETE_SETREGID)
|
|
|
|
if (setregid(egid,gid) < 0) rb_sys_fail(0);
|
|
|
|
SAVED_GROUP_ID = gid;
|
|
|
|
#else
|
|
|
|
rb_notimplement();
|
|
|
|
#endif
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return GIDT2NUM(gid);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
/* [MG] :FIXME: Is this correct? I'm not sure how to phrase this. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::UID.sid_available? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if the current platform has saved user
|
|
|
|
* ID functionality.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_have_saved_id(void)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-08-01 22:51:10 +04:00
|
|
|
#if defined(HAVE_SETRESUID) || defined(HAVE_SETEUID) || defined(_POSIX_SAVED_IDS)
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qfalse;
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-08-29 12:34:14 +04:00
|
|
|
|
|
|
|
#if defined(HAVE_SETRESUID) || defined(HAVE_SETEUID) || defined(_POSIX_SAVED_IDS)
|
|
|
|
static VALUE
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
p_uid_sw_ensure(rb_uid_t id)
|
2003-08-29 12:34:14 +04:00
|
|
|
{
|
|
|
|
under_uid_switch = 0;
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
id = rb_seteuid_core(id);
|
|
|
|
return UIDT2NUM(id);
|
2003-08-29 12:34:14 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::UID.switch -> fixnum
|
|
|
|
* Process::UID.switch {|| block} -> object
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Switch the effective and real user IDs of the current process. If
|
|
|
|
* a <em>block</em> is given, the user IDs will be switched back
|
|
|
|
* after the block is executed. Returns the new effective user ID if
|
|
|
|
* called without a block, and the return value of the block if one
|
|
|
|
* is given.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
p_uid_switch(VALUE obj)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid, euid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
uid = getuid();
|
|
|
|
euid = geteuid();
|
|
|
|
|
|
|
|
if (uid != euid) {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
proc_seteuid(obj, UIDT2NUM(uid));
|
2003-07-23 20:07:35 +04:00
|
|
|
if (rb_block_given_p()) {
|
2003-08-29 12:34:14 +04:00
|
|
|
under_uid_switch = 1;
|
|
|
|
return rb_ensure(rb_yield, Qnil, p_uid_sw_ensure, SAVED_USER_ID);
|
2003-07-23 20:07:35 +04:00
|
|
|
} else {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return UIDT2NUM(euid);
|
2003-07-23 20:07:35 +04:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
} else if (euid != SAVED_USER_ID) {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
proc_seteuid(obj, UIDT2NUM(SAVED_USER_ID));
|
2003-07-23 20:07:35 +04:00
|
|
|
if (rb_block_given_p()) {
|
2003-08-29 12:34:14 +04:00
|
|
|
under_uid_switch = 1;
|
|
|
|
return rb_ensure(rb_yield, Qnil, p_uid_sw_ensure, euid);
|
2003-07-23 20:07:35 +04:00
|
|
|
} else {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return UIDT2NUM(uid);
|
2003-07-23 20:07:35 +04:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
2003-07-23 20:07:35 +04:00
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-08-29 12:34:14 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_sw_ensure(VALUE obj)
|
2003-08-29 12:34:14 +04:00
|
|
|
{
|
|
|
|
under_uid_switch = 0;
|
|
|
|
return p_uid_exchange(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_uid_switch(VALUE obj)
|
2003-08-29 12:34:14 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_uid_t uid, euid;
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_uid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
|
|
|
uid = getuid();
|
|
|
|
euid = geteuid();
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
if (uid == euid) {
|
2003-07-23 20:07:35 +04:00
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
2003-08-29 12:34:14 +04:00
|
|
|
p_uid_exchange(obj);
|
2003-07-23 06:39:46 +04:00
|
|
|
if (rb_block_given_p()) {
|
2003-08-29 12:34:14 +04:00
|
|
|
under_uid_switch = 1;
|
|
|
|
return rb_ensure(rb_yield, Qnil, p_uid_sw_ensure, obj);
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return UIDT2NUM(euid);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/* [MG] :FIXME: Is this correct? I'm not sure how to phrase this. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::GID.sid_available? -> true or false
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns +true+ if the current platform has saved group
|
|
|
|
* ID functionality.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_have_saved_id(void)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2003-08-01 22:51:10 +04:00
|
|
|
#if defined(HAVE_SETRESGID) || defined(HAVE_SETEGID) || defined(_POSIX_SAVED_IDS)
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qtrue;
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-07-23 20:07:35 +04:00
|
|
|
return Qfalse;
|
2003-07-23 06:39:46 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-08-29 12:34:14 +04:00
|
|
|
#if defined(HAVE_SETRESGID) || defined(HAVE_SETEGID) || defined(_POSIX_SAVED_IDS)
|
|
|
|
static VALUE
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
p_gid_sw_ensure(rb_gid_t id)
|
2003-08-29 12:34:14 +04:00
|
|
|
{
|
|
|
|
under_gid_switch = 0;
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
id = rb_setegid_core(id);
|
|
|
|
return GIDT2NUM(id);
|
2003-08-29 12:34:14 +04:00
|
|
|
}
|
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process::GID.switch -> fixnum
|
|
|
|
* Process::GID.switch {|| block} -> object
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Switch the effective and real group IDs of the current process. If
|
|
|
|
* a <em>block</em> is given, the group IDs will be switched back
|
|
|
|
* after the block is executed. Returns the new effective group ID if
|
|
|
|
* called without a block, and the return value of the block if one
|
|
|
|
* is given.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
*/
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
static VALUE
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
p_gid_switch(VALUE obj)
|
2003-07-23 06:39:46 +04:00
|
|
|
{
|
2009-03-14 21:30:00 +03:00
|
|
|
rb_gid_t gid, egid;
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
gid = getgid();
|
|
|
|
egid = getegid();
|
|
|
|
|
|
|
|
if (gid != egid) {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
proc_setegid(obj, GIDT2NUM(gid));
|
2003-07-23 20:07:35 +04:00
|
|
|
if (rb_block_given_p()) {
|
2003-08-29 12:34:14 +04:00
|
|
|
under_gid_switch = 1;
|
|
|
|
return rb_ensure(rb_yield, Qnil, p_gid_sw_ensure, SAVED_GROUP_ID);
|
2003-07-23 20:07:35 +04:00
|
|
|
} else {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return GIDT2NUM(egid);
|
2003-07-23 20:07:35 +04:00
|
|
|
}
|
2009-03-14 21:30:00 +03:00
|
|
|
}
|
|
|
|
else if (egid != SAVED_GROUP_ID) {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
proc_setegid(obj, GIDT2NUM(SAVED_GROUP_ID));
|
2003-07-23 20:07:35 +04:00
|
|
|
if (rb_block_given_p()) {
|
2003-08-29 12:34:14 +04:00
|
|
|
under_gid_switch = 1;
|
|
|
|
return rb_ensure(rb_yield, Qnil, p_gid_sw_ensure, egid);
|
2003-07-23 20:07:35 +04:00
|
|
|
} else {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return GIDT2NUM(gid);
|
2003-07-23 20:07:35 +04:00
|
|
|
}
|
2009-03-14 21:30:00 +03:00
|
|
|
}
|
|
|
|
else {
|
2003-07-23 20:07:35 +04:00
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
}
|
2003-07-23 06:39:46 +04:00
|
|
|
#else
|
2003-08-31 17:29:54 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_sw_ensure(VALUE obj)
|
2003-08-29 12:34:14 +04:00
|
|
|
{
|
|
|
|
under_gid_switch = 0;
|
2003-08-31 17:57:38 +04:00
|
|
|
return p_gid_exchange(obj);
|
2003-08-29 12:34:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
p_gid_switch(VALUE obj)
|
2003-08-29 12:34:14 +04:00
|
|
|
{
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
rb_gid_t gid, egid;
|
2003-08-29 12:34:14 +04:00
|
|
|
|
2003-11-04 12:13:57 +03:00
|
|
|
check_gid_switch();
|
2003-08-29 12:34:14 +04:00
|
|
|
|
|
|
|
gid = getgid();
|
|
|
|
egid = getegid();
|
|
|
|
|
2003-07-23 06:39:46 +04:00
|
|
|
if (gid == egid) {
|
2003-07-23 20:07:35 +04:00
|
|
|
errno = EPERM;
|
|
|
|
rb_sys_fail(0);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
2003-08-29 12:34:14 +04:00
|
|
|
p_gid_exchange(obj);
|
2003-07-23 06:39:46 +04:00
|
|
|
if (rb_block_given_p()) {
|
2003-08-29 12:34:14 +04:00
|
|
|
under_gid_switch = 1;
|
|
|
|
return rb_ensure(rb_yield, Qnil, p_gid_sw_ensure, obj);
|
2003-07-23 06:39:46 +04:00
|
|
|
} else {
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
return GIDT2NUM(egid);
|
2003-07-23 06:39:46 +04:00
|
|
|
}
|
|
|
|
}
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
2009-06-22 16:23:06 +04:00
|
|
|
#if defined(HAVE_TIMES)
|
2004-01-02 09:01:12 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2010-05-18 01:07:33 +04:00
|
|
|
* Process.times -> aStructTms
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* Returns a <code>Tms</code> structure (see <code>Struct::Tms</code>
|
|
|
|
* on page 388) that contains user and system CPU times for this
|
|
|
|
* process.
|
2004-06-29 05:17:39 +04:00
|
|
|
*
|
2004-01-02 09:01:12 +03:00
|
|
|
* t = Process.times
|
|
|
|
* [ t.utime, t.stime ] #=> [0.0, 0.02]
|
|
|
|
*/
|
|
|
|
|
2001-02-16 10:53:21 +03:00
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_proc_times(VALUE obj)
|
2001-02-16 10:53:21 +03:00
|
|
|
{
|
2006-07-25 08:58:15 +04:00
|
|
|
const double hertz =
|
2006-07-06 18:30:20 +04:00
|
|
|
#ifdef HAVE__SC_CLK_TCK
|
|
|
|
(double)sysconf(_SC_CLK_TCK);
|
|
|
|
#else
|
2001-02-16 10:53:21 +03:00
|
|
|
#ifndef HZ
|
|
|
|
# ifdef CLK_TCK
|
|
|
|
# define HZ CLK_TCK
|
|
|
|
# else
|
|
|
|
# define HZ 60
|
|
|
|
# endif
|
|
|
|
#endif /* HZ */
|
2006-07-06 18:30:20 +04:00
|
|
|
HZ;
|
|
|
|
#endif
|
2001-02-16 10:53:21 +03:00
|
|
|
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);
|
2008-04-26 12:31:13 +04:00
|
|
|
return rb_struct_new(rb_cProcessTms,
|
2008-09-05 22:24:21 +04:00
|
|
|
utime = DBL2NUM(buf.tms_utime / hertz),
|
|
|
|
stime = DBL2NUM(buf.tms_stime / hertz),
|
|
|
|
cutime = DBL2NUM(buf.tms_cutime / hertz),
|
|
|
|
sctime = DBL2NUM(buf.tms_cstime / hertz));
|
2009-04-16 20:58:06 +04:00
|
|
|
}
|
2001-02-16 10:53:21 +03:00
|
|
|
#else
|
2009-04-16 20:58:06 +04:00
|
|
|
#define rb_proc_times rb_f_notimplement
|
2001-02-16 10:53:21 +03:00
|
|
|
#endif
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mProcess;
|
2003-07-23 06:39:46 +04:00
|
|
|
VALUE rb_mProcUID;
|
|
|
|
VALUE rb_mProcGID;
|
|
|
|
VALUE rb_mProcID_Syscall;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-01-02 09:01:12 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The <code>Process</code> module is a collection of methods used to
|
|
|
|
* manipulate processes.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_process(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-02-05 19:22:38 +03:00
|
|
|
rb_define_virtual_variable("$?", rb_last_status_get, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_define_virtual_variable("$$", get_pid, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
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);
|
2004-02-16 09:45:32 +03:00
|
|
|
rb_define_global_function("spawn", rb_f_spawn, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_global_function("sleep", rb_f_sleep, -1);
|
2007-08-18 11:44:51 +04:00
|
|
|
rb_define_global_function("exit", rb_f_exit, -1);
|
|
|
|
rb_define_global_function("abort", rb_f_abort, -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
|
|
|
|
|
|
|
#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
|
|
|
|
|
2005-12-27 08:10:38 +03:00
|
|
|
rb_define_singleton_method(rb_mProcess, "exec", rb_f_exec, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_singleton_method(rb_mProcess, "fork", rb_f_fork, 0);
|
2004-02-16 09:45:32 +03:00
|
|
|
rb_define_singleton_method(rb_mProcess, "spawn", rb_f_spawn, -1);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_define_singleton_method(rb_mProcess, "exit!", rb_f_exit_bang, -1);
|
2007-08-18 11:44:51 +04: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
|
|
|
|
2004-01-08 05:21:28 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "kill", rb_f_kill, -1); /* in signal.c */
|
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
|
|
|
|
2008-04-26 12:31:13 +04:00
|
|
|
rb_cProcessStatus = rb_define_class_under(rb_mProcess, "Status", rb_cObject);
|
|
|
|
rb_undef_method(CLASS_OF(rb_cProcessStatus), "new");
|
2001-02-15 09:01:00 +03:00
|
|
|
|
2008-04-26 12:31:13 +04:00
|
|
|
rb_define_method(rb_cProcessStatus, "==", pst_equal, 1);
|
|
|
|
rb_define_method(rb_cProcessStatus, "&", pst_bitand, 1);
|
|
|
|
rb_define_method(rb_cProcessStatus, ">>", pst_rshift, 1);
|
|
|
|
rb_define_method(rb_cProcessStatus, "to_i", pst_to_i, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "to_s", pst_to_s, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "inspect", pst_inspect, 0);
|
2001-02-15 09:01:00 +03:00
|
|
|
|
2008-04-26 12:31:13 +04:00
|
|
|
rb_define_method(rb_cProcessStatus, "pid", pst_pid, 0);
|
2002-12-10 09:23:44 +03:00
|
|
|
|
2008-04-26 12:31:13 +04:00
|
|
|
rb_define_method(rb_cProcessStatus, "stopped?", pst_wifstopped, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "stopsig", pst_wstopsig, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "signaled?", pst_wifsignaled, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "termsig", pst_wtermsig, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "exited?", pst_wifexited, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "exitstatus", pst_wexitstatus, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "success?", pst_success_p, 0);
|
|
|
|
rb_define_method(rb_cProcessStatus, "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
|
|
|
|
|
2004-11-14 13:06:16 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "getrlimit", proc_getrlimit, 1);
|
2005-09-24 20:36:11 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "setrlimit", proc_setrlimit, -1);
|
2011-03-07 11:44:45 +03:00
|
|
|
#if defined(RLIM2NUM) && defined(RLIM_INFINITY)
|
2008-02-25 07:58:47 +03:00
|
|
|
{
|
2008-06-29 21:13:37 +04:00
|
|
|
VALUE inf = RLIM2NUM(RLIM_INFINITY);
|
2004-11-14 13:06:16 +03:00
|
|
|
#ifdef RLIM_SAVED_MAX
|
2009-03-23 15:53:52 +03:00
|
|
|
{
|
|
|
|
VALUE v = RLIM_INFINITY == RLIM_SAVED_MAX ? inf : RLIM2NUM(RLIM_SAVED_MAX);
|
|
|
|
rb_define_const(rb_mProcess, "RLIM_SAVED_MAX", v);
|
|
|
|
}
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
2008-06-29 21:13:37 +04:00
|
|
|
rb_define_const(rb_mProcess, "RLIM_INFINITY", inf);
|
2004-11-14 13:06:16 +03:00
|
|
|
#ifdef RLIM_SAVED_CUR
|
2009-03-23 15:53:52 +03:00
|
|
|
{
|
|
|
|
VALUE v = RLIM_INFINITY == RLIM_SAVED_CUR ? inf : RLIM2NUM(RLIM_SAVED_CUR);
|
|
|
|
rb_define_const(rb_mProcess, "RLIM_SAVED_CUR", v);
|
|
|
|
}
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
2008-02-25 07:58:47 +03:00
|
|
|
}
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_AS
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_AS", INT2FIX(RLIMIT_AS));
|
|
|
|
#endif
|
2004-11-14 13:06:16 +03:00
|
|
|
#ifdef RLIMIT_CORE
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_CORE", INT2FIX(RLIMIT_CORE));
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_CPU
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_CPU", INT2FIX(RLIMIT_CPU));
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_DATA
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_DATA", INT2FIX(RLIMIT_DATA));
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_FSIZE
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_FSIZE", INT2FIX(RLIMIT_FSIZE));
|
|
|
|
#endif
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_MEMLOCK
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_MEMLOCK", INT2FIX(RLIMIT_MEMLOCK));
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_MSGQUEUE
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_MSGQUEUE", INT2FIX(RLIMIT_MSGQUEUE));
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_NICE
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_NICE", INT2FIX(RLIMIT_NICE));
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_NOFILE
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_NOFILE", INT2FIX(RLIMIT_NOFILE));
|
2004-11-14 13:06:16 +03:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_NPROC
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_NPROC", INT2FIX(RLIMIT_NPROC));
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_RSS
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_RSS", INT2FIX(RLIMIT_RSS));
|
|
|
|
#endif
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_RTPRIO
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_RTPRIO", INT2FIX(RLIMIT_RTPRIO));
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_RTTIME
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_RTTIME", INT2FIX(RLIMIT_RTTIME));
|
|
|
|
#endif
|
2004-11-14 13:06:16 +03:00
|
|
|
#ifdef RLIMIT_SBSIZE
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_SBSIZE", INT2FIX(RLIMIT_SBSIZE));
|
|
|
|
#endif
|
2010-09-12 03:38:44 +04:00
|
|
|
#ifdef RLIMIT_SIGPENDING
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_SIGPENDING", INT2FIX(RLIMIT_SIGPENDING));
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_STACK
|
|
|
|
rb_define_const(rb_mProcess, "RLIMIT_STACK", INT2FIX(RLIMIT_STACK));
|
|
|
|
#endif
|
2004-11-14 13:06:16 +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);
|
2009-04-18 20:41:16 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "euid=", proc_seteuid_m, 1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_module_function(rb_mProcess, "egid", proc_getegid, 0);
|
2009-04-18 20:41:16 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "egid=", proc_setegid_m, 1);
|
2003-07-23 06:39:46 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "initgroups", proc_initgroups, 2);
|
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
|
|
|
|
2004-08-17 13:02:40 +04:00
|
|
|
rb_define_module_function(rb_mProcess, "daemon", proc_daemon, -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)
|
2008-04-26 12:31:13 +04:00
|
|
|
rb_cProcessTms = rb_struct_define("Tms", "utime", "stime", "cutime", "cstime", NULL);
|
2001-02-16 10:53:21 +03:00
|
|
|
#endif
|
2003-07-23 06:39:46 +04:00
|
|
|
|
|
|
|
SAVED_USER_ID = geteuid();
|
|
|
|
SAVED_GROUP_ID = getegid();
|
|
|
|
|
|
|
|
rb_mProcUID = rb_define_module_under(rb_mProcess, "UID");
|
|
|
|
rb_mProcGID = rb_define_module_under(rb_mProcess, "GID");
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcUID, "rid", proc_getuid, 0);
|
|
|
|
rb_define_module_function(rb_mProcGID, "rid", proc_getgid, 0);
|
|
|
|
rb_define_module_function(rb_mProcUID, "eid", proc_geteuid, 0);
|
|
|
|
rb_define_module_function(rb_mProcGID, "eid", proc_getegid, 0);
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_define_module_function(rb_mProcUID, "change_privilege", p_uid_change_privilege, 1);
|
|
|
|
rb_define_module_function(rb_mProcGID, "change_privilege", p_gid_change_privilege, 1);
|
|
|
|
rb_define_module_function(rb_mProcUID, "grant_privilege", p_uid_grant_privilege, 1);
|
|
|
|
rb_define_module_function(rb_mProcGID, "grant_privilege", p_gid_grant_privilege, 1);
|
2007-06-12 06:32:28 +04:00
|
|
|
rb_define_alias(rb_singleton_class(rb_mProcUID), "eid=", "grant_privilege");
|
|
|
|
rb_define_alias(rb_singleton_class(rb_mProcGID), "eid=", "grant_privilege");
|
2003-07-23 06:39:46 +04:00
|
|
|
rb_define_module_function(rb_mProcUID, "re_exchange", p_uid_exchange, 0);
|
|
|
|
rb_define_module_function(rb_mProcGID, "re_exchange", p_gid_exchange, 0);
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_define_module_function(rb_mProcUID, "re_exchangeable?", p_uid_exchangeable, 0);
|
|
|
|
rb_define_module_function(rb_mProcGID, "re_exchangeable?", p_gid_exchangeable, 0);
|
|
|
|
rb_define_module_function(rb_mProcUID, "sid_available?", p_uid_have_saved_id, 0);
|
|
|
|
rb_define_module_function(rb_mProcGID, "sid_available?", p_gid_have_saved_id, 0);
|
2003-07-23 06:39:46 +04:00
|
|
|
rb_define_module_function(rb_mProcUID, "switch", p_uid_switch, 0);
|
2003-07-24 22:33:50 +04:00
|
|
|
rb_define_module_function(rb_mProcGID, "switch", p_gid_switch, 0);
|
2003-07-23 06:39:46 +04:00
|
|
|
|
|
|
|
rb_mProcID_Syscall = rb_define_module_under(rb_mProcess, "Sys");
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "getuid", proc_getuid, 0);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "geteuid", proc_geteuid, 0);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "getgid", proc_getgid, 0);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "getegid", proc_getegid, 0);
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setuid", p_sys_setuid, 1);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setgid", p_sys_setgid, 1);
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setruid", p_sys_setruid, 1);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setrgid", p_sys_setrgid, 1);
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "seteuid", p_sys_seteuid, 1);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setegid", p_sys_setegid, 1);
|
|
|
|
|
2004-11-18 06:45:23 +03:00
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setreuid", p_sys_setreuid, 2);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setregid", p_sys_setregid, 2);
|
|
|
|
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setresuid", p_sys_setresuid, 3);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "setresgid", p_sys_setresgid, 3);
|
|
|
|
rb_define_module_function(rb_mProcID_Syscall, "issetugid", p_sys_issetugid, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|