Ruby 4.1.0dev (2026-09-21 revision 61de3dd727146cfcf24e8051595bb2fb842f37aa)
box.c (61de3dd727146cfcf24e8051595bb2fb842f37aa)
1/* indent-tabs-mode: nil */
2
3#include "eval_intern.h"
4#include "internal.h"
5#include "internal/box.h"
6#include "internal/class.h"
7#include "internal/eval.h"
8#include "internal/error.h"
9#include "internal/file.h"
10#include "internal/gc.h"
11#include "internal/hash.h"
12#include "internal/io.h"
13#include "internal/load.h"
14#include "internal/random.h"
15#include "internal/st.h"
16#include "internal/variable.h"
17#include "iseq.h"
19#include "ruby/util.h"
20#include "vm_core.h"
21#include "darray.h"
22#include "zjit.h"
23
24#include "builtin.h"
25
26#include <stdio.h>
27
28#ifdef HAVE_FCNTL_H
29#include <fcntl.h>
30#endif
31#ifdef HAVE_SYS_SENDFILE_H
32# include <sys/sendfile.h>
33#endif
34#ifdef HAVE_COPYFILE_H
35#include <copyfile.h>
36#endif
37
39VALUE rb_cBoxEntry = 0;
40VALUE rb_mBoxLoader = 0;
41
42static rb_box_t master_box[1]; /* Initialize in initialize_master_box() */
43static rb_box_t *root_box;
44static rb_box_t *main_box;
45
46static rb_box_gem_flags_t box_gem_flags[1];
47
48static char *tmp_dir;
49static bool tmp_dir_has_dirsep;
50
51#ifndef MAXPATHLEN
52# define MAXPATHLEN 1024
53#endif
54
55/* process-private 0700 directory for box-local copies of extensions */
56static char box_ext_tmp_dir[MAXPATHLEN];
57static rb_pid_t box_ext_tmp_dir_owner;
58static unsigned long box_ext_seq;
59
60#define BOX_TMP_PREFIX "_ruby_box_"
61
62#if defined(_WIN32)
63# define DIRSEP "\\"
64#else
65# define DIRSEP "/"
66#endif
67
68bool ruby_box_enabled = false; // extern
69bool ruby_box_init_done = false; // extern
70bool ruby_box_crashed = false; // extern, changed only in vm.c
71
72VALUE rb_resolve_feature_path(VALUE klass, VALUE fname);
73static VALUE rb_box_inspect(VALUE obj);
74
75void
76rb_box_set_gem_flags(rb_box_gem_flags_t *flags)
77{
78
79 box_gem_flags->gem = flags->gem;
80 box_gem_flags->error_highlight = flags->error_highlight;
81 box_gem_flags->did_you_mean = flags->did_you_mean;
82 box_gem_flags->syntax_suggest = flags->syntax_suggest;
83}
84
85void
86rb_box_init_done(void)
87{
88 ruby_box_init_done = true;
89}
90
91const rb_box_t *
92rb_master_box(void)
93{
94 return master_box;
95}
96
97const rb_box_t *
98rb_root_box(void)
99{
100 if (!root_box) // The root box isn't initialized yet - The Ruby runtime is in setup.
101 return master_box;
102 return root_box;
103}
104
105const rb_box_t *
106rb_main_box(void)
107{
108 return main_box;
109}
110
111// NOTE: must be called by Ruby thread
112const rb_box_t *
113rb_current_box(void)
114{
115 /*
116 * If RUBY_BOX is not set, the master box is the only available one.
117 *
118 * While the root/main boxes are not initialized, the master box is
119 * the only valid box.
120 * This early return is to avoid accessing EC before its setup.
121 */
122 if (!root_box)
123 return master_box;
124 if (!main_box)
125 return root_box;
126
127 return rb_vm_current_box(GET_EC());
128}
129
130// NOTE: must be called by Ruby thread
131const rb_box_t *
132rb_loading_box(void)
133{
134 if (!root_box)
135 return master_box;
136 if (!main_box)
137 return root_box;
138
139 return rb_vm_loading_box(GET_EC());
140}
141
142// NOTE: must be called by Ruby thread
143const rb_box_t *
144rb_current_box_in_crash_report(void)
145{
146 if (ruby_box_crashed)
147 return NULL;
148 return rb_current_box();
149}
150
151static long box_id_counter = 0;
152
153static long
154box_generate_id(void)
155{
156 long id;
157 RB_VM_LOCKING() {
158 id = ++box_id_counter;
159 }
160 return id;
161}
162
163static VALUE
164box_main_to_s(VALUE obj)
165{
166 return rb_str_new2("main");
167}
168
169static void
170box_entry_initialize(rb_box_t *box)
171{
172 const rb_box_t *master = rb_master_box();
173
174 // These will be updated immediately
175 box->box_object = 0;
176 box->box_id = 0;
177
178 box->top_self = rb_obj_alloc(rb_cObject);
179 rb_define_singleton_method(box->top_self, "to_s", box_main_to_s, 0);
180 rb_define_alias(rb_singleton_class(box->top_self), "inspect", "to_s");
181 box->load_path = rb_ary_dup(master->load_path);
182 box->expanded_load_path = rb_ary_dup(master->expanded_load_path);
183 box->load_path_snapshot = rb_ary_new();
184 box->load_path_check_cache = 0;
185 box->loaded_features = rb_ary_dup(master->loaded_features);
186 box->loaded_features_snapshot = rb_ary_new();
187 box->loaded_features_index = st_init_numtable();
188 box->loaded_features_realpaths = rb_hash_dup(master->loaded_features_realpaths);
189 box->loaded_features_realpath_map = rb_hash_dup(master->loaded_features_realpath_map);
190 box->loading_table = st_init_strtable();
191 box->ruby_dln_libmap = rb_hash_new();
192 box->gvar_tbl = rb_hash_new();
193 box->classext_cow_classes = st_init_numtable();
194
195 box->is_user = true;
196 box->is_optional = true;
197}
198
199void
200rb_box_gc_update_references(void *ptr)
201{
202 rb_box_t *box = (rb_box_t *)ptr;
203 if (!box) return;
204
205 if (box->box_object)
206 rb_gc_update_moved(&box->box_object);
207 if (box->top_self)
208 rb_gc_update_moved(&box->top_self);
209 rb_gc_update_moved(&box->load_path);
210 rb_gc_update_moved(&box->expanded_load_path);
211 rb_gc_update_moved(&box->load_path_snapshot);
212 if (box->load_path_check_cache) {
213 rb_gc_update_moved(&box->load_path_check_cache);
214 }
215 rb_gc_update_moved(&box->loaded_features);
216 rb_gc_update_moved(&box->loaded_features_snapshot);
217 rb_gc_update_moved(&box->loaded_features_realpaths);
218 rb_gc_update_moved(&box->loaded_features_realpath_map);
219 rb_gc_update_moved(&box->ruby_dln_libmap);
220 rb_gc_update_moved(&box->gvar_tbl);
221}
222
223void
224rb_box_entry_mark(void *ptr)
225{
226 const rb_box_t *box = (rb_box_t *)ptr;
227 if (!box) return;
228
229 rb_gc_mark(box->box_object);
230 rb_gc_mark(box->top_self);
231 rb_gc_mark(box->load_path);
232 rb_gc_mark(box->expanded_load_path);
233 rb_gc_mark(box->load_path_snapshot);
234 rb_gc_mark(box->load_path_check_cache);
235 rb_gc_mark(box->loaded_features);
236 rb_gc_mark(box->loaded_features_snapshot);
237 rb_gc_mark(box->loaded_features_realpaths);
238 rb_gc_mark(box->loaded_features_realpath_map);
239 if (box->loading_table) {
240 rb_mark_tbl(box->loading_table);
241 }
242 rb_gc_mark(box->ruby_dln_libmap);
243 rb_gc_mark(box->gvar_tbl);
244 if (box->classext_cow_classes) {
245 rb_mark_set(box->classext_cow_classes);
246 }
247}
248
249static int
250free_loading_table_entry(st_data_t key, st_data_t value, st_data_t arg)
251{
252 xfree((char *)key);
253 return ST_DELETE;
254}
255
256static int
257free_loaded_feature_index_i(st_data_t key, st_data_t value, st_data_t arg)
258{
259 if (!FIXNUM_P(value)) {
260 rb_darray_free_sized((void *)value, long);
261 }
262 return ST_CONTINUE;
263}
264
265static void
266free_box_st_tables(void *ptr)
267{
268 rb_box_t *box = (rb_box_t *)ptr;
269 if (box->loading_table) {
270 st_foreach(box->loading_table, free_loading_table_entry, 0);
271 st_free_table(box->loading_table);
272 box->loading_table = 0;
273 }
274
275 if (box->loaded_features_index) {
276 st_foreach(box->loaded_features_index, free_loaded_feature_index_i, 0);
277 st_free_table(box->loaded_features_index);
278 }
279}
280
281static int
282free_classext_for_box(st_data_t key, st_data_t _value, st_data_t box_arg)
283{
284 rb_classext_t *ext;
285 VALUE obj = (VALUE)key;
286 const rb_box_t *box = (const rb_box_t *)box_arg;
287
288 if (RB_TYPE_P(obj, T_CLASS) || RB_TYPE_P(obj, T_MODULE)) {
289 ext = rb_class_unlink_classext(obj, box);
290 rb_class_classext_free(obj, ext, false);
291 }
292 else if (RB_TYPE_P(obj, T_ICLASS)) {
293 ext = rb_class_unlink_classext(obj, box);
294 rb_iclass_classext_free(obj, ext, false);
295 }
296 else {
297 rb_bug("Invalid type of object in classext_cow_classes: %s", rb_type_str(BUILTIN_TYPE(obj)));
298 }
299 return ST_CONTINUE;
300}
301
302static void
303box_entry_free(void *ptr)
304{
305 const rb_box_t *box = (const rb_box_t *)ptr;
306
307 if (box->classext_cow_classes) {
308 st_foreach(box->classext_cow_classes, free_classext_for_box, (st_data_t)box);
309 }
310
311 free_box_st_tables(ptr);
312 SIZED_FREE(box);
313}
314
315static size_t
316box_entry_memsize(const void *ptr)
317{
318 size_t size = sizeof(rb_box_t);
319 const rb_box_t *box = (const rb_box_t *)ptr;
320 if (box->loaded_features_index) {
321 size += rb_st_memsize(box->loaded_features_index);
322 }
323 if (box->loading_table) {
324 size += rb_st_memsize(box->loading_table);
325 }
326 return size;
327}
328
329static const rb_data_type_t rb_box_data_type = {
330 "Ruby::Box::Entry",
331 {
332 rb_box_entry_mark,
333 box_entry_free,
334 box_entry_memsize,
335 rb_box_gc_update_references,
336 },
337 0, 0, RUBY_TYPED_FREE_IMMEDIATELY // TODO: enable RUBY_TYPED_WB_PROTECTED when inserting write barriers
338};
339
340static const rb_data_type_t rb_master_box_data_type = {
341 "Ruby::Box::Master",
342 {
343 rb_box_entry_mark,
344 free_box_st_tables,
345 box_entry_memsize,
346 rb_box_gc_update_references,
347 },
348 &rb_box_data_type, 0, RUBY_TYPED_THREAD_SAFE_FREE // TODO: enable RUBY_TYPED_WB_PROTECTED when inserting write barriers
349};
350
351VALUE
352rb_box_entry_alloc(VALUE klass)
353{
354 rb_box_t *entry;
355 VALUE obj = TypedData_Make_Struct(klass, rb_box_t, &rb_box_data_type, entry);
356 box_entry_initialize(entry);
357 return obj;
358}
359
360static rb_box_t *
361get_box_struct_internal(VALUE entry)
362{
363 rb_box_t *sval;
364 TypedData_Get_Struct(entry, rb_box_t, &rb_box_data_type, sval);
365 return sval;
366}
367
368rb_box_t *
369rb_get_box_t(VALUE box)
370{
371 VALUE entry;
372 ID id_box_entry;
373
374 VM_ASSERT(box);
375
376 if (NIL_P(box))
377 return (rb_box_t *)rb_root_box();
378
379 VM_ASSERT(BOX_OBJ_P(box));
380
381 CONST_ID(id_box_entry, "__box_entry__");
382 entry = rb_attr_get(box, id_box_entry);
383 return get_box_struct_internal(entry);
384}
385
386VALUE
387rb_get_box_object(rb_box_t *box)
388{
389 VM_ASSERT(box && box->box_object);
390 return box->box_object;
391}
392
393/*
394 * call-seq:
395 * Ruby::Box.new -> new_box
396 *
397 * Returns a new Ruby::Box object.
398 */
399static VALUE
400box_initialize(VALUE box_value)
401{
402 rb_box_t *box;
403 rb_classext_t *object_classext;
404 VALUE entry;
405 ID id_box_entry;
406 CONST_ID(id_box_entry, "__box_entry__");
407
408 if (!rb_box_available()) {
409 rb_raise(rb_eRuntimeError, "Ruby Box is disabled. Set RUBY_BOX=1 environment variable to use Ruby::Box.");
410 }
411
412 entry = rb_class_new_instance_pass_kw(0, NULL, rb_cBoxEntry);
413 box = get_box_struct_internal(entry);
414
415 box->box_object = box_value;
416 box->box_id = box_generate_id();
417 rb_define_singleton_method(box->load_path, "resolve_feature_path", rb_resolve_feature_path, 1);
418
419 // Set the Ruby::Box object unique/consistent from any boxes to have just single
420 // constant table from any view of every (including main) box.
421 // If a code in the box adds a constant, the constant will be visible even from root/main.
422 RCLASS_SET_PRIME_CLASSEXT_WRITABLE(box_value, true);
423
424 // Get a clean constant table of Object even by writable one
425 // because ns was just created, so it has not touched any constants yet.
426 object_classext = RCLASS_EXT_WRITABLE_IN_BOX(rb_cObject, box);
427 RCLASS_SET_CONST_TBL(box_value, RCLASSEXT_CONST_TBL(object_classext), true);
428
429 rb_ivar_set(box_value, id_box_entry, entry);
430
431 if (ruby_box_init_done) {
432 if (box_gem_flags->gem) {
433 rb_vm_call_cfunc_in_box(Qnil, rb_define_gem_modules, (VALUE)box_gem_flags, Qnil,
434 rb_str_new_cstr("before_prelude.user.dummy"), (const rb_box_t *)box);
435 rb_load_gem_prelude((VALUE)box);
436 }
437 }
438
439 // Invalidate ZJIT code that assumes only the root box is active
440 rb_zjit_invalidate_root_box();
441
442 return box_value;
443}
444
445/*
446 * call-seq:
447 * Ruby::Box.enabled? -> true or false
448 *
449 * Returns +true+ if Ruby::Box is enabled.
450 */
451static VALUE
452rb_box_s_getenabled(VALUE recv)
453{
454 return RBOOL(rb_box_available());
455}
456
457/*
458 * call-seq:
459 * Ruby::Box.current -> box, nil or false
460 *
461 * Returns the current box.
462 * Returns +nil+ if Ruby Box is not enabled.
463 */
464static VALUE
465rb_box_s_current(VALUE recv)
466{
467 const rb_box_t *box;
468
469 if (!rb_box_available())
470 return Qnil;
471
472 box = rb_vm_current_box(GET_EC());
473 VM_ASSERT(box && box->box_object);
474 return box->box_object;
475}
476
477/*
478 * call-seq:
479 * load_path -> array
480 *
481 * Returns box local load path.
482 */
483static VALUE
484rb_box_load_path(VALUE box)
485{
486 VM_ASSERT(BOX_OBJ_P(box));
487 return rb_get_box_t(box)->load_path;
488}
489
490#ifdef _WIN32
491UINT rb_w32_system_tmpdir(WCHAR *path, UINT len);
492#endif
493
494/* Copied from mjit.c Ruby 3.0.3 */
495static char *
496system_default_tmpdir(void)
497{
498 // c.f. ext/etc/etc.c:etc_systmpdir()
499#ifdef _WIN32
500 WCHAR tmppath[_MAX_PATH];
501 UINT len = rb_w32_system_tmpdir(tmppath, numberof(tmppath));
502 if (len) {
503 int blen = WideCharToMultiByte(CP_UTF8, 0, tmppath, len, NULL, 0, NULL, NULL);
504 char *tmpdir = xmalloc(blen + 1);
505 WideCharToMultiByte(CP_UTF8, 0, tmppath, len, tmpdir, blen, NULL, NULL);
506 tmpdir[blen] = '\0';
507 return tmpdir;
508 }
509#elif defined _CS_DARWIN_USER_TEMP_DIR
510 char path[MAXPATHLEN];
511 size_t len = confstr(_CS_DARWIN_USER_TEMP_DIR, path, sizeof(path));
512 if (len > 0) {
513 char *tmpdir = xmalloc(len);
514 if (len > sizeof(path)) {
515 confstr(_CS_DARWIN_USER_TEMP_DIR, tmpdir, len);
516 }
517 else {
518 memcpy(tmpdir, path, len);
519 }
520 return tmpdir;
521 }
522#endif
523 return 0;
524}
525
526static int
527check_tmpdir(const char *dir)
528{
529 struct stat st;
530
531 if (!dir) return FALSE;
532 if (stat(dir, &st)) return FALSE;
533#ifndef S_ISDIR
534# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
535#endif
536 if (!S_ISDIR(st.st_mode)) return FALSE;
537#ifndef _WIN32
538# ifndef S_IWOTH
539# define S_IWOTH 002
540# endif
541 if (st.st_mode & S_IWOTH) {
542# ifdef S_ISVTX
543 if (!(st.st_mode & S_ISVTX)) return FALSE;
544# else
545 return FALSE;
546# endif
547 }
548 if (access(dir, W_OK)) return FALSE;
549#endif
550 return TRUE;
551}
552
553static char *
554system_tmpdir(void)
555{
556 char *tmpdir;
557# define RETURN_ENV(name) \
558 if (check_tmpdir(tmpdir = getenv(name))) return ruby_strdup(tmpdir)
559 RETURN_ENV("TMPDIR");
560 RETURN_ENV("TMP");
561 tmpdir = system_default_tmpdir();
562 if (check_tmpdir(tmpdir)) return tmpdir;
563 return ruby_strdup("/tmp");
564# undef RETURN_ENV
565}
566
567/* end of copy */
568
569/* Box-local copies of extensions are placed in a process-private 0700
570 * directory with an unpredictable name, so that other local users cannot
571 * occupy the copy destination in a shared TMPDIR [Bug #22110], and so
572 * that the file name of each copy stays short regardless of the depth of
573 * the original path (a full path flattened into a single file name can
574 * exceed NAME_MAX). */
575static void
576ensure_box_ext_tmp_dir(void)
577{
578 /* A forked child inherits the parent's directory path; discard it so
579 * that each process creates its own directory and removes only that
580 * one at teardown. */
581 if (box_ext_tmp_dir[0] && box_ext_tmp_dir_owner != getpid()) {
582 box_ext_tmp_dir[0] = '\0';
583 box_ext_seq = 0;
584 }
585 if (box_ext_tmp_dir[0]) return;
586
587 int last_errno = 0;
588 for (int retry = 0; retry < 10; retry++) {
589 char path[MAXPATHLEN];
590 uint64_t suffix;
591 if (ruby_fill_random_bytes(&suffix, sizeof(suffix), FALSE) != 0) {
592 /* no random source; mkdir(0700) below still refuses hijacked names */
593 suffix = (uint64_t)(uintptr_t)&suffix ^ (uint64_t)retry;
594 }
595 int wrote = snprintf(path, sizeof(path), "%s%s%sp%"PRI_PIDT_PREFIX"u_%.16"PRIx64,
596 tmp_dir, tmp_dir_has_dirsep ? "" : DIRSEP,
597 BOX_TMP_PREFIX, getpid(), suffix);
598 if (wrote >= (int)sizeof(path)) {
599 rb_raise(rb_eLoadError, "TMPDIR for Ruby Box extensions is too long: %s", tmp_dir);
600 }
601 if (mkdir(path, 0700) == 0) {
602 strlcpy(box_ext_tmp_dir, path, sizeof(box_ext_tmp_dir));
603 box_ext_tmp_dir_owner = getpid();
604 return;
605 }
606 last_errno = errno;
607 if (last_errno != EEXIST) break;
608 }
609 rb_raise(rb_eLoadError, "can't create the temporary directory for Ruby Box extensions under %s: %s",
610 tmp_dir, strerror(last_errno));
611}
612
613enum copy_error_type {
614 COPY_ERROR_NONE,
615 COPY_ERROR_SRC_OPEN,
616 COPY_ERROR_DST_OPEN,
617 COPY_ERROR_SRC_READ,
618 COPY_ERROR_DST_WRITE,
619 COPY_ERROR_SRC_STAT,
620 COPY_ERROR_DST_CHMOD,
621 COPY_ERROR_SYSERR
622};
623
624static const char *
625copy_ext_file_error(char *message, size_t size, int copy_retvalue)
626{
627#ifdef _WIN32
628 int error = GetLastError();
629 char *p = message;
630 size_t len = snprintf(message, size, "%d: ", error);
631
632#define format_message(sublang) FormatMessage(\
633 FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, \
634 NULL, error, MAKELANGID(LANG_NEUTRAL, (sublang)), \
635 message + len, size - len, NULL)
636 if (format_message(SUBLANG_ENGLISH_US) == 0)
637 format_message(SUBLANG_DEFAULT);
638 for (p = message + len; *p; p++) {
639 if (*p == '\n' || *p == '\r')
640 *p = ' ';
641 }
642#else
643 switch (copy_retvalue) {
644 case COPY_ERROR_SRC_OPEN:
645 strlcpy(message, "can't open the extension path", size);
646 break;
647 case COPY_ERROR_DST_OPEN:
648 strlcpy(message, "can't open the file to write", size);
649 break;
650 case COPY_ERROR_SRC_READ:
651 strlcpy(message, "failed to read the extension path", size);
652 break;
653 case COPY_ERROR_DST_WRITE:
654 strlcpy(message, "failed to write the extension path", size);
655 break;
656 case COPY_ERROR_SRC_STAT:
657 strlcpy(message, "failed to stat the extension path to copy permissions", size);
658 break;
659 case COPY_ERROR_DST_CHMOD:
660 strlcpy(message, "failed to set permissions to the copied extension path", size);
661 break;
662 case COPY_ERROR_SYSERR:
663 strlcpy(message, strerror(errno), size);
664 break;
665 case COPY_ERROR_NONE: /* shouldn't be called */
666 default:
667 rb_bug("unknown return value of copy_ext_file: %d", copy_retvalue);
668 }
669#endif
670 return message;
671}
672
673#ifndef _WIN32
674static enum copy_error_type
675copy_stream(int src_fd, int dst_fd)
676{
677 char buffer[1024];
678 ssize_t rsize;
679
680 while ((rsize = read(src_fd, buffer, sizeof(buffer))) != 0) {
681 if (rsize < 0) return COPY_ERROR_SRC_READ;
682 for (size_t written = 0; written < (size_t)rsize;) {
683 ssize_t wsize = write(dst_fd, buffer+written, rsize-written);
684 if (wsize < 0) return COPY_ERROR_DST_WRITE;
685 written += (size_t)wsize;
686 }
687 }
688 return COPY_ERROR_NONE;
689}
690#endif
691
692static enum copy_error_type
693copy_ext_file(const char *src_path, const char *dst_path)
694{
695#if defined(_WIN32)
696 WCHAR *w_src = rb_w32_mbstr_to_wstr(CP_UTF8, src_path, -1, NULL);
697 WCHAR *w_dst = rb_w32_mbstr_to_wstr(CP_UTF8, dst_path, -1, NULL);
698 if (!w_src || !w_dst) {
699 free(w_src);
700 free(w_dst);
701 rb_memerror();
702 }
703
704 enum copy_error_type rvalue = CopyFileW(w_src, w_dst, TRUE) ?
705 COPY_ERROR_NONE : COPY_ERROR_SYSERR;
706 free(w_src);
707 free(w_dst);
708 return rvalue;
709#else
710# ifdef O_BINARY
711 const int bin = O_BINARY;
712# else
713 const int bin = 0;
714# endif
715# ifdef O_CLOEXEC
716 const int cloexec = O_CLOEXEC;
717# else
718 const int cloexec = 0;
719# endif
720 const int src_fd = open(src_path, O_RDONLY|cloexec|bin);
721 if (src_fd < 0) return COPY_ERROR_SRC_OPEN;
722 if (!cloexec) rb_maygvl_fd_fix_cloexec(src_fd);
723
724 struct stat src_st;
725 if (fstat(src_fd, &src_st)) {
726 close(src_fd);
727 return COPY_ERROR_SRC_STAT;
728 }
729
730 const int dst_fd = open(dst_path, O_WRONLY|O_CREAT|O_EXCL|cloexec|bin, S_IRWXU);
731 if (dst_fd < 0) {
732 close(src_fd);
733 return COPY_ERROR_DST_OPEN;
734 }
735 if (!cloexec) rb_maygvl_fd_fix_cloexec(dst_fd);
736
737 enum copy_error_type ret = COPY_ERROR_NONE;
738
739 if (fchmod(dst_fd, src_st.st_mode & 0777)) {
740 ret = COPY_ERROR_DST_CHMOD;
741 goto done;
742 }
743
744 const size_t count_max = (SIZE_MAX >> 1) + 1;
745 (void)count_max;
746
747# ifdef HAVE_COPY_FILE_RANGE
748 for (;;) {
749 ssize_t written = copy_file_range(src_fd, NULL, dst_fd, NULL, count_max, 0);
750 if (written == 0) goto done;
751 if (written < 0) break;
752 }
753# endif
754# ifdef HAVE_FCOPYFILE
755 if (fcopyfile(src_fd, dst_fd, NULL, COPYFILE_DATA) == 0) {
756 goto done;
757 }
758# endif
759# ifdef USE_SENDFILE
760 for (;;) {
761 ssize_t written = sendfile(src_fd, dst_fd, NULL count_max);
762 if (written == 0) goto done;
763 if (written < 0) break;
764 }
765# endif
766 ret = copy_stream(src_fd, dst_fd);
767
768 done:
769 close(src_fd);
770 if (dst_fd >= 0) close(dst_fd);
771 if (ret != COPY_ERROR_NONE) unlink(dst_path);
772 return ret;
773#endif
774}
775
776#if defined __CYGWIN__ || defined DOSISH
777#define isdirsep(x) ((x) == '/' || (x) == '\\')
778#else
779#define isdirsep(x) ((x) == '/')
780#endif
781
782static const char *
783ext_basename(const char *path)
784{
785 const char *base = path;
786 for (const char *pos = path; *pos; pos++) {
787 if (isdirsep(*pos)) base = pos + 1;
788 }
789 return base;
790}
791
792static void
793box_ext_cleanup_mark(void *p)
794{
795 rb_gc_mark((VALUE)p);
796}
797
798static void
799box_ext_cleanup_free(void *p)
800{
801 VALUE path = (VALUE)p;
802 unlink(RSTRING_PTR(path));
803}
804
805static const rb_data_type_t box_ext_cleanup_type = {
806 "box_ext_cleanup",
807 {box_ext_cleanup_mark, box_ext_cleanup_free},
809};
810
811void
812rb_box_cleanup_local_extension(VALUE cleanup)
813{
814 void *p = DATA_PTR(cleanup);
815 DATA_PTR(cleanup) = NULL;
816#ifndef _WIN32
817 if (p) box_ext_cleanup_free(p);
818#endif
819 (void)p;
820}
821
822#if defined(_WIN32)
824 struct box_local_ext_list *next;
825 HMODULE handle;
826};
827static struct box_local_ext_list *box_local_exts;
828#endif
829
830void
831rb_box_defer_unload_local_extension(void *handle)
832{
833#if defined(_WIN32)
834 /* A box-local copy of an extension DLL must stay loaded as long as
835 * objects created by it can be finalized; unloading is deferred to
836 * rb_box_unload_local_extensions after the objspace is destructed.
837 * The loaded copy cannot be deleted on Windows, so the file is also
838 * removed there instead of in box_ext_cleanup_free. */
839 struct box_local_ext_list *ext = malloc(sizeof(struct box_local_ext_list));
840 if (!ext) return;
841 ext->handle = (HMODULE)handle;
842 ext->next = box_local_exts;
843 box_local_exts = ext;
844#endif
845}
846
847void
848rb_box_unload_local_extensions(void)
849{
850#if defined(_WIN32)
851 struct box_local_ext_list *ext = box_local_exts;
852 box_local_exts = NULL;
853 while (ext) {
854 struct box_local_ext_list *next = ext->next;
855 WCHAR module_path[MAXPATHLEN];
856 DWORD len = GetModuleFileNameW(ext->handle, module_path, numberof(module_path));
857
858 FreeLibrary(ext->handle);
859 if (len > 0 && len < numberof(module_path)) DeleteFileW(module_path);
860 free(ext);
861 ext = next;
862 }
863#endif
864 if (box_ext_tmp_dir[0] && box_ext_tmp_dir_owner == getpid()) {
865 rmdir(box_ext_tmp_dir);
866 box_ext_tmp_dir[0] = '\0';
867 }
868}
869
870VALUE
871rb_box_local_extension(VALUE box_value, VALUE path, VALUE *cleanup)
872{
873 char ext_path[MAXPATHLEN];
874 int wrote;
875 const char *src_path = RSTRING_PTR(path);
876 rb_box_t *box = rb_get_box_t(box_value);
877
878 ensure_box_ext_tmp_dir();
879 wrote = snprintf(ext_path, sizeof(ext_path), "%s%s%ld_%lu_%s",
880 box_ext_tmp_dir, DIRSEP, box->box_id, box_ext_seq++, ext_basename(src_path));
881 if (wrote >= (int)sizeof(ext_path)) {
882 rb_raise(rb_eLoadError, "extension file path in the box is too long: %"PRIsVALUE, path);
883 }
884 VALUE new_path = rb_str_new_cstr(ext_path);
885 *cleanup = TypedData_Wrap_Struct(0, &box_ext_cleanup_type, NULL);
886 enum copy_error_type copy_error = copy_ext_file(src_path, ext_path);
887 if (copy_error) {
888 char message[1024];
889 copy_ext_file_error(message, sizeof(message), copy_error);
890 rb_raise(rb_eLoadError, "can't prepare the extension file for Ruby Box (%s from %"PRIsVALUE"): %s", ext_path, path, message);
891 }
892 DATA_PTR(*cleanup) = (void *)new_path;
893 return new_path;
894}
895
896static VALUE
897rb_box_load(int argc, VALUE *argv, VALUE box)
898{
899 VALUE fname, wrap;
900 rb_scan_args(argc, argv, "11", &fname, &wrap);
901
902 rb_vm_frame_flag_set_box_require(GET_EC());
903
904 return rb_load_entrypoint(fname, wrap);
905}
906
907static VALUE
908rb_box_require(VALUE box, VALUE fname)
909{
910 rb_vm_frame_flag_set_box_require(GET_EC());
911
912 return rb_require_string(fname);
913}
914
915static VALUE
916rb_box_require_relative(VALUE box, VALUE fname)
917{
918 rb_vm_frame_flag_set_box_require(GET_EC());
919
920 return rb_require_relative_entrypoint(fname);
921}
922
923static void
924initialize_master_box(void)
925{
926 rb_vm_t *vm = GET_VM();
927 rb_box_t *master = (rb_box_t *)rb_master_box();
928
929 master->load_path = rb_ary_new();
930 master->expanded_load_path = rb_ary_hidden_new(0);
931 master->load_path_snapshot = rb_ary_hidden_new(0);
932 master->load_path_check_cache = 0;
933 rb_define_singleton_method(master->load_path, "resolve_feature_path", rb_resolve_feature_path, 1);
934
935 master->loaded_features = rb_ary_new();
936 master->loaded_features_snapshot = rb_ary_hidden_new(0);
937 master->loaded_features_index = st_init_numtable();
938 master->loaded_features_realpaths = rb_hash_new();
939 rb_obj_hide(master->loaded_features_realpaths);
940 master->loaded_features_realpath_map = rb_hash_new();
941 rb_obj_hide(master->loaded_features_realpath_map);
942
943 master->ruby_dln_libmap = rb_hash_new();
944 master->gvar_tbl = rb_hash_new();
945 master->classext_cow_classes = NULL; // classext CoW never happen on the master box
946
947 vm->master_box = master;
948
949 if (rb_box_available()) {
950 VALUE master_box, entry;
951 ID id_box_entry;
952 CONST_ID(id_box_entry, "__box_entry__");
953
954 master_box = rb_obj_alloc(rb_cBox);
955 RCLASS_SET_PRIME_CLASSEXT_WRITABLE(master_box, true);
956 RCLASS_SET_CONST_TBL(master_box, RCLASSEXT_CONST_TBL(RCLASS_EXT_PRIME(rb_cObject)), true);
957
958 master->box_id = box_generate_id();
959 master->box_object = master_box;
960
961 entry = TypedData_Wrap_Struct(rb_cBoxEntry, &rb_master_box_data_type, master);
962 rb_ivar_set(master_box, id_box_entry, entry);
963
964 rb_gc_register_mark_object(master_box);
965 rb_gc_register_mark_object(entry);
966 }
967 else {
968 master->box_id = 1;
969 master->box_object = Qnil;
970 }
971}
972
973static VALUE
974rb_box_eval(VALUE box_value, VALUE str)
975{
976 const rb_iseq_t *iseq;
977 const rb_box_t *box;
978
979 StringValue(str);
980
981 iseq = rb_iseq_compile_iseq(str, rb_str_new_cstr("eval"));
982 VM_ASSERT(iseq);
983
984 box = (const rb_box_t *)rb_get_box_t(box_value);
985
986 return rb_iseq_eval(iseq, box);
987}
988
989static int box_experimental_warned = 0;
990
991RUBY_EXTERN const char ruby_api_version_name[];
992
993static VALUE
994box_value_initialize(bool root, bool user, bool optional)
995{
996 rb_box_t *box;
997 VALUE box_value = rb_class_new_instance(0, NULL, rb_cBox);
998
999 VM_ASSERT(BOX_OBJ_P(box_value));
1000
1001 box = rb_get_box_t(box_value);
1002 box->box_object = box_value;
1003 box->is_root = root;
1004 box->is_user = user;
1005 box->is_optional = optional;
1006 return box_value;
1007}
1008
1009void
1010rb_initialize_mandatory_boxes(void)
1011{
1012 VALUE root_box_value, main_box_value;
1013 rb_vm_t *vm = GET_VM();
1014
1015 VM_ASSERT(rb_box_available());
1016
1017 if (!box_experimental_warned) {
1019 "Ruby::Box is experimental, and the behavior may change in the future!\n"
1020 "See https://docs.ruby-lang.org/en/%s/Ruby/Box.html for known issues, etc.",
1021 ruby_api_version_name);
1022 box_experimental_warned = 1;
1023 }
1024
1025 root_box_value = box_value_initialize(true, false, false);
1026 main_box_value = box_value_initialize(false, true, false);
1027
1028 rb_const_set(rb_cBox, rb_intern("ROOT"), root_box_value);
1029 rb_const_set(rb_cBox, rb_intern("MAIN"), main_box_value);
1030
1031 vm->root_box = root_box = rb_get_box_t(root_box_value);
1032 vm->main_box = main_box = rb_get_box_t(main_box_value);
1033
1034 // create the writable classext of ::Object explicitly to finalize the set of visible top-level constants
1035 RCLASS_EXT_WRITABLE_IN_BOX(rb_cObject, root_box);
1036 RCLASS_EXT_WRITABLE_IN_BOX(rb_cObject, main_box);
1037}
1038
1039static VALUE
1040rb_box_inspect(VALUE obj)
1041{
1042 rb_box_t *box;
1043 VALUE r;
1044 if (obj == Qfalse) {
1045 r = rb_str_new_cstr("#<Ruby::Box:master>");
1046 return r;
1047 }
1048 box = rb_get_box_t(obj);
1049 r = rb_str_new_cstr("#<Ruby::Box:");
1050 rb_str_concat(r, rb_funcall(LONG2NUM(box->box_id), rb_intern("to_s"), 0));
1051 if (BOX_MASTER_P(box)) {
1052 rb_str_cat_cstr(r, ",master");
1053 }
1054 if (BOX_ROOT_P(box)) {
1055 rb_str_cat_cstr(r, ",root");
1056 }
1057 if (BOX_USER_P(box)) {
1058 rb_str_cat_cstr(r, ",user");
1059 }
1060 if (BOX_MAIN_P(box)) {
1061 rb_str_cat_cstr(r, ",main");
1062 }
1063 else if (BOX_OPTIONAL_P(box)) {
1064 rb_str_cat_cstr(r, ",optional");
1065 }
1066 rb_str_cat_cstr(r, ">");
1067 return r;
1068}
1069
1070static VALUE
1071rb_box_loading_func(int argc, VALUE *argv, VALUE _self)
1072{
1073 rb_vm_frame_flag_set_box_require(GET_EC());
1074 return rb_call_super(argc, argv);
1075}
1076
1077static void
1078box_define_loader_method(const char *name)
1079{
1080 rb_define_private_method(rb_mBoxLoader, name, rb_box_loading_func, -1);
1081 rb_define_singleton_method(rb_mBoxLoader, name, rb_box_loading_func, -1);
1082}
1083
1084void
1085Init_master_box(void)
1086{
1087 master_box->loading_table = st_init_strtable();
1088}
1089
1090void
1091Init_enable_box(void)
1092{
1093 const char *env = getenv("RUBY_BOX");
1094 if (env && strlen(env) == 1 && env[0] == '1') {
1095 ruby_box_enabled = true;
1096 }
1097 else {
1098 ruby_box_init_done = true;
1099 }
1100}
1101
1102/* :nodoc: */
1103static VALUE
1104rb_box_s_master(VALUE recv)
1105{
1106 return master_box->box_object;
1107}
1108
1109/* :nodoc: */
1110static VALUE
1111rb_box_s_root(VALUE recv)
1112{
1113 return root_box->box_object;
1114}
1115
1116/* :nodoc: */
1117static VALUE
1118rb_box_s_main(VALUE recv)
1119{
1120 return main_box->box_object;
1121}
1122
1123/* :nodoc: */
1124static VALUE
1125rb_box_master_p(VALUE box_value)
1126{
1127 const rb_box_t *box = (const rb_box_t *)rb_get_box_t(box_value);
1128 return RBOOL(BOX_MASTER_P(box));
1129}
1130
1131/* :nodoc: */
1132static VALUE
1133rb_box_root_p(VALUE box_value)
1134{
1135 const rb_box_t *box = (const rb_box_t *)rb_get_box_t(box_value);
1136 return RBOOL(BOX_ROOT_P(box));
1137}
1138
1139/* :nodoc: */
1140static VALUE
1141rb_box_main_p(VALUE box_value)
1142{
1143 const rb_box_t *box = (const rb_box_t *)rb_get_box_t(box_value);
1144 return RBOOL(BOX_MAIN_P(box));
1145}
1146
1147#if RUBY_DEBUG
1148
1149static const char *
1150classname(VALUE klass)
1151{
1152 VALUE p;
1153 if (!klass) {
1154 return "Qfalse";
1155 }
1156 p = RCLASSEXT_CLASSPATH(RCLASS_EXT_PRIME(klass));
1157 if (RTEST(p))
1158 return RSTRING_PTR(p);
1159 if (RB_TYPE_P(klass, T_CLASS) || RB_TYPE_P(klass, T_MODULE) || RB_TYPE_P(klass, T_ICLASS))
1160 return "AnyClassValue";
1161 return "NonClassValue";
1162}
1163
1164static enum rb_id_table_iterator_result
1165dump_classext_methods_i(ID mid, VALUE _val, void *data)
1166{
1167 VALUE ary = (VALUE)data;
1168 rb_ary_push(ary, rb_id2str(mid));
1169 return ID_TABLE_CONTINUE;
1170}
1171
1172static enum rb_id_table_iterator_result
1173dump_classext_constants_i(ID mid, VALUE _val, void *data)
1174{
1175 VALUE ary = (VALUE)data;
1176 rb_ary_push(ary, rb_id2str(mid));
1177 return ID_TABLE_CONTINUE;
1178}
1179
1180static void
1181dump_classext_i(rb_classext_t *ext, bool is_prime, VALUE _recv, void *data)
1182{
1183 char buf[4096];
1184 struct rb_id_table *tbl;
1185 VALUE ary, res = (VALUE)data;
1186
1187 snprintf(buf, 4096, "Ruby::Box %ld:%s classext %p\n",
1188 RCLASSEXT_BOX(ext)->box_id, is_prime ? " prime" : "", (void *)ext);
1189 rb_str_cat_cstr(res, buf);
1190
1191 snprintf(buf, 2048, " Super: %s\n", classname(RCLASSEXT_SUPER(ext)));
1192 rb_str_cat_cstr(res, buf);
1193
1194 tbl = RCLASSEXT_M_TBL(ext);
1195 if (tbl) {
1196 ary = rb_ary_new_capa((long)rb_id_table_size(tbl));
1197 rb_id_table_foreach(RCLASSEXT_M_TBL(ext), dump_classext_methods_i, (void *)ary);
1198 rb_ary_sort_bang(ary);
1199 snprintf(buf, 4096, " Methods(%ld): ", RARRAY_LEN(ary));
1200 rb_str_cat_cstr(res, buf);
1201 rb_str_concat(res, rb_ary_join(ary, rb_str_new_cstr(",")));
1202 rb_str_cat_cstr(res, "\n");
1203 }
1204 else {
1205 rb_str_cat_cstr(res, " Methods(0): .\n");
1206 }
1207
1208 tbl = RCLASSEXT_CONST_TBL(ext);
1209 if (tbl) {
1210 ary = rb_ary_new_capa((long)rb_id_table_size(tbl));
1211 rb_id_table_foreach(tbl, dump_classext_constants_i, (void *)ary);
1212 rb_ary_sort_bang(ary);
1213 snprintf(buf, 4096, " Constants(%ld): ", RARRAY_LEN(ary));
1214 rb_str_cat_cstr(res, buf);
1215 rb_str_concat(res, rb_ary_join(ary, rb_str_new_cstr(",")));
1216 rb_str_cat_cstr(res, "\n");
1217 }
1218 else {
1219 rb_str_cat_cstr(res, " Constants(0): .\n");
1220 }
1221}
1222
1223/* :nodoc: */
1224static VALUE
1225rb_f_dump_classext(VALUE recv, VALUE klass)
1226{
1227 /*
1228 * The desired output String value is:
1229 * Class: 0x88800932 (String) [singleton]
1230 * Prime classext box(2,main), readable(t), writable(f)
1231 * Non-prime classexts: 3
1232 * Box 2: prime classext 0x88800933
1233 * Super: Object
1234 * Methods(43): aaaaa, bbbb, cccc, dddd, eeeee, ffff, gggg, hhhhh, ...
1235 * Constants(12): FOO, Bar, ...
1236 * Box 5: classext 0x88800934
1237 * Super: Object
1238 * Methods(43): aaaaa, bbbb, cccc, dddd, eeeee, ffff, gggg, hhhhh, ...
1239 * Constants(12): FOO, Bar, ...
1240 */
1241 char buf[2048];
1242 VALUE res;
1243 const rb_classext_t *ext;
1244 const rb_box_t *box;
1245 st_table *classext_tbl;
1246
1247 if (!(RB_TYPE_P(klass, T_CLASS) || RB_TYPE_P(klass, T_MODULE))) {
1248 snprintf(buf, 2048, "Non-class/module value: %p (%s)\n", (void *)klass, rb_type_str(BUILTIN_TYPE(klass)));
1249 return rb_str_new_cstr(buf);
1250 }
1251
1252 if (RB_TYPE_P(klass, T_CLASS)) {
1253 snprintf(buf, 2048, "Class: %p (%s)%s\n",
1254 (void *)klass, classname(klass), RCLASS_SINGLETON_P(klass) ? " [singleton]" : "");
1255 }
1256 else {
1257 snprintf(buf, 2048, "Module: %p (%s)\n", (void *)klass, classname(klass));
1258 }
1259 res = rb_str_new_cstr(buf);
1260
1261 ext = RCLASS_EXT_PRIME(klass);
1262 box = RCLASSEXT_BOX(ext);
1263 snprintf(buf, 2048, "Prime classext box(%ld,%s), readable(%s), writable(%s)\n",
1264 box->box_id,
1265 BOX_MASTER_P(box) ? "master" : (BOX_ROOT_P(box) ? "root" : (BOX_MAIN_P(box) ? "main" : "optional")),
1266 RCLASS_PRIME_CLASSEXT_READABLE_P(klass) ? "t" : "f",
1267 RCLASS_PRIME_CLASSEXT_WRITABLE_P(klass) ? "t" : "f");
1268 rb_str_cat_cstr(res, buf);
1269
1270 classext_tbl = RCLASS_CLASSEXT_TBL(klass);
1271 if (!classext_tbl) {
1272 rb_str_cat_cstr(res, "Non-prime classexts: 0\n");
1273 }
1274 else {
1275 snprintf(buf, 2048, "Non-prime classexts: %zu\n", st_table_size(classext_tbl));
1276 rb_str_cat_cstr(res, buf);
1277 }
1278
1279 rb_class_classext_foreach(klass, dump_classext_i, (void *)res);
1280
1281 return res;
1282}
1283
1284#endif /* RUBY_DEBUG */
1285
1286/*
1287 * Document-class: Ruby::Box
1288 *
1289 * :markup: markdown
1290 * :include: doc/language/box.md
1291 */
1292void
1293Init_Box(void)
1294{
1295 tmp_dir = system_tmpdir();
1296 tmp_dir_has_dirsep = (strcmp(tmp_dir + (strlen(tmp_dir) - strlen(DIRSEP)), DIRSEP) == 0);
1297
1298 VALUE mRuby = rb_define_module("Ruby");
1299
1300 rb_cBox = rb_define_class_under(mRuby, "Box", rb_cModule);
1301 rb_define_method(rb_cBox, "initialize", box_initialize, 0);
1302
1303 /* :nodoc: */
1304 rb_cBoxEntry = rb_define_class_under(rb_cBox, "Entry", rb_cObject);
1305 rb_define_alloc_func(rb_cBoxEntry, rb_box_entry_alloc);
1306
1307 initialize_master_box();
1308
1309 /* :nodoc: */
1310 rb_mBoxLoader = rb_define_module_under(rb_cBox, "Loader");
1311 box_define_loader_method("require");
1312 box_define_loader_method("require_relative");
1313 box_define_loader_method("load");
1314
1315 if (rb_box_available()) {
1316 rb_include_module(rb_cObject, rb_mBoxLoader);
1317
1318 rb_define_singleton_method(rb_cBox, "master", rb_box_s_master, 0);
1319 rb_define_singleton_method(rb_cBox, "root", rb_box_s_root, 0);
1320 rb_define_singleton_method(rb_cBox, "main", rb_box_s_main, 0);
1321 rb_define_method(rb_cBox, "master?", rb_box_master_p, 0);
1322 rb_define_method(rb_cBox, "root?", rb_box_root_p, 0);
1323 rb_define_method(rb_cBox, "main?", rb_box_main_p, 0);
1324
1325#if RUBY_DEBUG
1326 rb_define_global_function("dump_classext", rb_f_dump_classext, 1);
1327#endif
1328 }
1329
1330 rb_define_singleton_method(rb_cBox, "enabled?", rb_box_s_getenabled, 0);
1331 rb_define_singleton_method(rb_cBox, "current", rb_box_s_current, 0);
1332
1333 rb_define_method(rb_cBox, "load_path", rb_box_load_path, 0);
1334 rb_define_method(rb_cBox, "load", rb_box_load, -1);
1335 rb_define_method(rb_cBox, "require", rb_box_require, 1);
1336 rb_define_method(rb_cBox, "require_relative", rb_box_require_relative, 1);
1337 rb_define_method(rb_cBox, "eval", rb_box_eval, 1);
1338
1339 rb_define_method(rb_cBox, "inspect", rb_box_inspect, 0);
1340}
#define rb_define_method(klass, mid, func, arity)
Defines klass#mid.
#define rb_define_singleton_method(klass, mid, func, arity)
Defines klass.mid.
#define rb_define_private_method(klass, mid, func, arity)
Defines klass#mid and makes it private.
#define rb_define_global_function(mid, func, arity)
Defines rb_mKernel #mid.
#define RUBY_EXTERN
Declaration of externally visible global variables.
Definition dllexport.h:45
Ruby-level global variables / constants, visible from C.
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
Definition class.c:1765
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
Definition class.c:3043
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
Definition class.c:3086
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Retrieves argument from argc and argv to given VALUE references according to the format string.
Definition class.c:3376
#define rb_str_new2
Old name of rb_str_new_cstr.
Definition string.h:1676
#define xfree
Old name of ruby_xfree.
Definition xmalloc.h:58
#define xmalloc
Old name of ruby_xmalloc.
Definition xmalloc.h:53
#define T_MODULE
Old name of RUBY_T_MODULE.
Definition value_type.h:70
#define T_ICLASS
Old name of RUBY_T_ICLASS.
Definition value_type.h:66
#define LONG2NUM
Old name of RB_LONG2NUM.
Definition long.h:50
#define Qnil
Old name of RUBY_Qnil.
#define Qfalse
Old name of RUBY_Qfalse.
#define NIL_P
Old name of RB_NIL_P.
#define T_CLASS
Old name of RUBY_T_CLASS.
Definition value_type.h:58
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
Definition value_type.h:85
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
Definition symbol.h:47
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
Definition error.c:478
VALUE rb_eLoadError
LoadError exception.
Definition error.c:1481
VALUE rb_eRuntimeError
RuntimeError exception.
Definition error.c:1461
@ RB_WARN_CATEGORY_EXPERIMENTAL
Warning is for experimental features.
Definition error.h:51
VALUE rb_cObject
Object class.
Definition object.c:60
VALUE rb_obj_alloc(VALUE klass)
Allocates an instance of the given class.
Definition object.c:2251
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
Definition object.c:2292
VALUE rb_cBox
Ruby::Box class.
Definition box.c:38
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
Definition object.c:94
VALUE rb_class_new_instance_pass_kw(int argc, const VALUE *argv, VALUE klass)
Identical to rb_class_new_instance(), except it passes the passed keywords if any to the #initialize ...
Definition object.c:2269
VALUE rb_cModule
Module class.
Definition object.c:61
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
Definition vm_eval.c:1123
VALUE rb_call_super(int argc, const VALUE *argv)
This resembles ruby's super.
Definition vm_eval.c:363
VALUE rb_ary_dup(VALUE ary)
Duplicates an array.
VALUE rb_ary_new(void)
Allocates a new, empty array.
VALUE rb_ary_new_capa(long capa)
Identical to rb_ary_new(), except it additionally specifies how many rooms of objects it should alloc...
VALUE rb_ary_hidden_new(long capa)
Allocates a hidden (no class) empty array.
VALUE rb_ary_push(VALUE ary, VALUE elem)
Special case of rb_ary_cat() that it adds only one element.
VALUE rb_ary_sort_bang(VALUE ary)
Destructively sorts the passed array in-place, according to each elements' <=> result.
VALUE rb_ary_join(VALUE ary, VALUE sep)
Recursively stringises the elements of the passed array, flattens that result, then joins the sequenc...
VALUE rb_require_string(VALUE feature)
Finds and loads the given feature, if absent.
Definition load.c:1497
VALUE rb_str_concat(VALUE dst, VALUE src)
Identical to rb_str_append(), except it also accepts an integer as a codepoint.
Definition string.c:4135
#define rb_str_cat_cstr(buf, str)
Identical to rb_str_cat(), except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1657
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
Definition string.h:1515
VALUE rb_ivar_set(VALUE obj, ID name, VALUE val)
Identical to rb_iv_set(), except it accepts the name as an ID instead of a C string.
Definition variable.c:2131
void rb_const_set(VALUE space, ID name, VALUE val)
Names a constant.
Definition variable.c:3974
void rb_define_alloc_func(VALUE klass, rb_alloc_func_t func)
Sets the allocator function of a class.
int len
Length of the buffer.
Definition io.h:8
char * ruby_strdup(const char *str)
This is our own version of strdup(3) that uses ruby_xmalloc() instead of system malloc (benefits our ...
Definition util.c:515
#define PRI_PIDT_PREFIX
A rb_sprintf() format prefix to be used for a pid_t parameter.
Definition pid_t.h:38
#define RARRAY_LEN
Just another name of rb_array_len.
Definition rarray.h:50
#define StringValue(v)
Ensures that the parameter object is a String.
Definition rstring.h:66
#define RUBY_TYPED_FREE_IMMEDIATELY
Macros to see if each corresponding flag is defined.
Definition rtypeddata.h:122
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
Definition rtypeddata.h:773
#define DATA_PTR(obj)
Convenient casting macro for backward compatibility.
Definition rtypeddata.h:439
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
Definition rtypeddata.h:557
#define TypedData_Make_Struct(klass, type, data_type, sval)
Identical to TypedData_Wrap_Struct, except it allocates a new data region internally instead of takin...
Definition rtypeddata.h:604
#define errno
Ractor-aware version of errno.
Definition ruby.h:388
#define RTEST
This is an old name of RB_TEST.
Internal header for Ruby Box.
Definition box.h:14
This is the struct that holds necessary info for a struct.
Definition rtypeddata.h:242
Definition st.h:79
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
Definition value.h:52
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.
Definition value_type.h:376