1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_core.h (struct rb_vm_struct): moved src_encoding_index.

* ruby.c (struct cmdline_options): moved setids and req_list, and the
  latter is now an array, to prevent memory leak.

* ruby.c (cmdline_options_init): added.

* ruby.c (add_modules, require_libraries, init_ids, forbid_setid): use
  struct cmdline_options.

* vm.c (vm_init2): initialize src_encoding_index.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-06-09 04:20:07 +00:00
parent efe5422e6a
commit 9fb521515d
4 changed files with 65 additions and 51 deletions

View file

@ -1,3 +1,17 @@
Mon Jun 9 13:20:04 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_core.h (struct rb_vm_struct): moved src_encoding_index.
* ruby.c (struct cmdline_options): moved setids and req_list, and the
latter is now an array, to prevent memory leak.
* ruby.c (cmdline_options_init): added.
* ruby.c (add_modules, require_libraries, init_ids, forbid_setid): use
struct cmdline_options.
* vm.c (vm_init2): initialize src_encoding_index.
Mon Jun 9 09:54:13 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> Mon Jun 9 09:54:13 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* include/ruby/intern.h (Init_stack): make to call ruby_init_stack. * include/ruby/intern.h (Init_stack): make to call ruby_init_stack.

99
ruby.c
View file

@ -88,6 +88,7 @@ struct cmdline_options {
unsigned int disable; unsigned int disable;
int verbose; int verbose;
int yydebug; int yydebug;
unsigned int setids;
unsigned int dump; unsigned int dump;
const char *script; const char *script;
VALUE script_name; VALUE script_name;
@ -98,8 +99,22 @@ struct cmdline_options {
int index; int index;
} enc; } enc;
} src, ext; } src, ext;
VALUE req_list;
}; };
static void init_ids(struct cmdline_options *);
#define src_encoding_index GET_VM()->src_encoding_index
static struct cmdline_options *
cmdline_options_init(struct cmdline_options *opt)
{
MEMZERO(opt, *opt, 1);
init_ids(opt);
opt->src.enc.index = src_encoding_index;
return opt;
}
struct cmdline_arguments { struct cmdline_arguments {
int argc; int argc;
char **argv; char **argv;
@ -107,7 +122,8 @@ struct cmdline_arguments {
}; };
static NODE *load_file(VALUE, const char *, int, struct cmdline_options *); static NODE *load_file(VALUE, const char *, int, struct cmdline_options *);
static void forbid_setid(const char *); static void forbid_setid(const char *, struct cmdline_options *);
#define forbid_setid(s) forbid_setid(s, opt)
static struct { static struct {
int argc; int argc;
@ -419,48 +435,34 @@ ruby_init_loadpath(void)
} }
} }
struct req_list {
char *name;
struct req_list *next;
};
static struct {
struct req_list *last, head;
} req_list = {&req_list.head,};
static void static void
add_modules(const char *mod) add_modules(struct cmdline_options *opt, const char *mod)
{ {
struct req_list *list; VALUE list = opt->req_list;
list = ALLOC(struct req_list); if (!list) {
list->name = ALLOC_N(char, strlen(mod) + 1); opt->req_list = list = rb_ary_new();
strcpy(list->name, mod); RBASIC(list)->klass = 0;
list->next = 0; }
req_list.last->next = list; rb_ary_push(list, rb_obj_freeze(rb_str_new2(mod)));
req_list.last = list;
} }
extern void Init_ext(void); extern void Init_ext(void);
extern VALUE rb_vm_top_self(void); extern VALUE rb_vm_top_self(void);
static void static void
require_libraries(void) require_libraries(struct cmdline_options *opt)
{ {
struct req_list *list = req_list.head.next; VALUE list = opt->req_list;
struct req_list *tmp;
ID require = rb_intern("require"); ID require = rb_intern("require");
Init_ext(); /* should be called here for some reason :-( */ Init_ext(); /* should be called here for some reason :-( */
req_list.last = 0; while (RARRAY_LEN(list)) {
while (list) { VALUE feature = rb_ary_shift(list);
VALUE feature = rb_str_new2(list->name);
tmp = list->next;
xfree(list->name);
xfree(list);
list = tmp;
rb_funcall2(rb_vm_top_self(), require, 1, &feature); rb_funcall2(rb_vm_top_self(), require, 1, &feature);
} }
req_list.head.next = 0; opt->req_list = 0;
} }
static void static void
@ -727,10 +729,10 @@ proc_options(int argc, char **argv, struct cmdline_options *opt)
case 'r': case 'r':
forbid_setid("-r"); forbid_setid("-r");
if (*++s) { if (*++s) {
add_modules(s); add_modules(opt, s);
} }
else if (argv[1]) { else if (argv[1]) {
add_modules(argv[1]); add_modules(opt, argv[1]);
argc--, argv++; argc--, argv++;
} }
break; break;
@ -956,7 +958,6 @@ opt_enc_index(VALUE enc_name)
VALUE rb_progname; VALUE rb_progname;
VALUE rb_argv0; VALUE rb_argv0;
static int src_encoding_index = -1; /* TODO: VM private */
static VALUE static VALUE
process_options(VALUE arg) process_options(VALUE arg)
@ -1108,7 +1109,7 @@ process_options(VALUE arg)
eenc = lenc; eenc = lenc;
} }
rb_enc_associate(opt->e_script, eenc); rb_enc_associate(opt->e_script, eenc);
require_libraries(); require_libraries(opt);
tree = rb_parser_compile_string(parser, opt->script, opt->e_script, 1); tree = rb_parser_compile_string(parser, opt->script, opt->e_script, 1);
} }
else { else {
@ -1278,7 +1279,7 @@ load_file(VALUE parser, const char *fname, int script, struct cmdline_options *o
else if (!NIL_P(c)) { else if (!NIL_P(c)) {
rb_io_ungetc(f, c); rb_io_ungetc(f, c);
} }
require_libraries(); /* Why here? unnatural */ require_libraries(opt); /* Why here? unnatural */
} }
if (opt->src.enc.index >= 0) { if (opt->src.enc.index >= 0) {
enc = rb_enc_from_index(opt->src.enc.index); enc = rb_enc_from_index(opt->src.enc.index);
@ -1306,9 +1307,7 @@ rb_load_file(const char *fname)
{ {
struct cmdline_options opt; struct cmdline_options opt;
MEMZERO(&opt, opt, 1); return load_file(rb_parser_new(), fname, 0, cmdline_options_init(&opt));
opt.src.enc.index = src_encoding_index;
return load_file(rb_parser_new(), fname, 0, &opt);
} }
#if !defined(PSTAT_SETCMD) && !defined(HAVE_SETPROCTITLE) #if !defined(PSTAT_SETCMD) && !defined(HAVE_SETPROCTITLE)
@ -1411,30 +1410,32 @@ ruby_script(const char *name)
} }
} }
static int uid, euid, gid, egid;
static void static void
init_ids(void) init_ids(struct cmdline_options *opt)
{ {
uid = (int)getuid(); rb_uid_t uid = getuid();
euid = (int)geteuid(); rb_uid_t euid = geteuid();
gid = (int)getgid(); rb_gid_t gid = getgid();
egid = (int)getegid(); rb_gid_t egid = getegid();
#ifdef VMS #ifdef VMS
uid |= gid << 16; uid |= gid << 16;
euid |= egid << 16; euid |= egid << 16;
#endif #endif
if (uid && (euid != uid || egid != gid)) { if (uid != euid) opt->setids |= 1;
if (egid != gid) opt->setids |= 2;
if (uid && opt->setids) {
rb_set_safe_level(1); rb_set_safe_level(1);
} }
} }
#undef forbid_setid
static void static void
forbid_setid(const char *s) forbid_setid(const char *s, struct cmdline_options *opt)
{ {
if (euid != uid) if (opt->setids & 1)
rb_raise(rb_eSecurityError, "no %s allowed while running setuid", s); rb_raise(rb_eSecurityError, "no %s allowed while running setuid", s);
if (egid != gid) if (opt->setids & 2)
rb_raise(rb_eSecurityError, "no %s allowed while running setgid", s); rb_raise(rb_eSecurityError, "no %s allowed while running setgid", s);
if (rb_safe_level() > 0) if (rb_safe_level() > 0)
rb_raise(rb_eSecurityError, "no %s allowed in tainted mode", s); rb_raise(rb_eSecurityError, "no %s allowed in tainted mode", s);
@ -1461,8 +1462,6 @@ opt_W_getter(VALUE val, ID id)
void void
ruby_prog_init(void) ruby_prog_init(void)
{ {
init_ids();
rb_define_hooked_variable("$VERBOSE", &ruby_verbose, 0, verbose_setter); rb_define_hooked_variable("$VERBOSE", &ruby_verbose, 0, verbose_setter);
rb_define_hooked_variable("$-v", &ruby_verbose, 0, verbose_setter); rb_define_hooked_variable("$-v", &ruby_verbose, 0, verbose_setter);
rb_define_hooked_variable("$-w", &ruby_verbose, 0, verbose_setter); rb_define_hooked_variable("$-w", &ruby_verbose, 0, verbose_setter);
@ -1529,13 +1528,11 @@ ruby_process_options(int argc, char **argv)
struct cmdline_options opt; struct cmdline_options opt;
NODE *tree; NODE *tree;
MEMZERO(&opt, opt, 1);
ruby_script(argv[0]); /* for the time being */ ruby_script(argv[0]); /* for the time being */
rb_argv0 = rb_progname; rb_argv0 = rb_progname;
args.argc = argc; args.argc = argc;
args.argv = argv; args.argv = argv;
args.opt = &opt; args.opt = cmdline_options_init(&opt);
opt.src.enc.index = src_encoding_index;
opt.ext.enc.index = -1; opt.ext.enc.index = -1;
tree = (NODE *)rb_vm_call_cfunc(rb_vm_top_self(), tree = (NODE *)rb_vm_call_cfunc(rb_vm_top_self(),
process_options, (VALUE)&args, process_options, (VALUE)&args,

1
vm.c
View file

@ -1381,6 +1381,7 @@ static void
vm_init2(rb_vm_t *vm) vm_init2(rb_vm_t *vm)
{ {
MEMZERO(vm, rb_vm_t, 1); MEMZERO(vm, rb_vm_t, 1);
vm->src_encoding_index = -1;
} }
/* Thread */ /* Thread */

View file

@ -319,6 +319,8 @@ struct rb_vm_struct
/* hook */ /* hook */
rb_event_hook_t *event_hooks; rb_event_hook_t *event_hooks;
int src_encoding_index;
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE #if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
struct rb_objspace *objspace; struct rb_objspace *objspace;
#endif #endif