3#include "eval_intern.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/st.h"
15#include "internal/variable.h"
24#ifdef HAVE_SYS_SENDFILE_H
25# include <sys/sendfile.h>
32VALUE rb_cBoxEntry = 0;
33VALUE rb_mBoxLoader = 0;
38static bool tmp_dir_has_dirsep;
40#define BOX_TMP_PREFIX "_ruby_box_"
43# define MAXPATHLEN 1024
52bool ruby_box_enabled =
false;
53bool ruby_box_init_done =
false;
54bool ruby_box_crashed =
false;
58static void cleanup_all_local_extensions(
VALUE libmap);
63 ruby_box_init_done =
true;
91 return rb_vm_current_box(GET_EC());
100 return rb_vm_loading_box(GET_EC());
104rb_current_box_in_crash_report(
void)
106 if (ruby_box_crashed)
108 return rb_current_box();
111static long box_id_counter = 0;
118 id = ++box_id_counter;
124box_main_to_s(
VALUE obj)
132 const rb_box_t *root = rb_root_box();
142 box->expanded_load_path =
rb_ary_dup(root->expanded_load_path);
144 box->load_path_check_cache = 0;
145 box->loaded_features =
rb_ary_dup(root->loaded_features);
147 box->loaded_features_index = st_init_numtable();
148 box->loaded_features_realpaths = rb_hash_dup(root->loaded_features_realpaths);
149 box->loaded_features_realpath_map = rb_hash_dup(root->loaded_features_realpath_map);
150 box->loading_table = st_init_strtable();
151 box->ruby_dln_libmap = rb_hash_new_with_size(0);
152 box->gvar_tbl = rb_hash_new_with_size(0);
153 box->classext_cow_classes = st_init_numtable();
156 box->is_optional =
true;
160rb_box_gc_update_references(
void *ptr)
166 box->box_object = rb_gc_location(box->box_object);
168 box->top_self = rb_gc_location(box->top_self);
169 box->load_path = rb_gc_location(box->load_path);
170 box->expanded_load_path = rb_gc_location(box->expanded_load_path);
171 box->load_path_snapshot = rb_gc_location(box->load_path_snapshot);
172 if (box->load_path_check_cache) {
173 box->load_path_check_cache = rb_gc_location(box->load_path_check_cache);
175 box->loaded_features = rb_gc_location(box->loaded_features);
176 box->loaded_features_snapshot = rb_gc_location(box->loaded_features_snapshot);
177 box->loaded_features_realpaths = rb_gc_location(box->loaded_features_realpaths);
178 box->loaded_features_realpath_map = rb_gc_location(box->loaded_features_realpath_map);
179 box->ruby_dln_libmap = rb_gc_location(box->ruby_dln_libmap);
180 box->gvar_tbl = rb_gc_location(box->gvar_tbl);
184rb_box_entry_mark(
void *ptr)
189 rb_gc_mark(box->box_object);
190 rb_gc_mark(box->top_self);
191 rb_gc_mark(box->load_path);
192 rb_gc_mark(box->expanded_load_path);
193 rb_gc_mark(box->load_path_snapshot);
194 rb_gc_mark(box->load_path_check_cache);
195 rb_gc_mark(box->loaded_features);
196 rb_gc_mark(box->loaded_features_snapshot);
197 rb_gc_mark(box->loaded_features_realpaths);
198 rb_gc_mark(box->loaded_features_realpath_map);
199 if (box->loading_table) {
200 rb_mark_tbl(box->loading_table);
202 rb_gc_mark(box->ruby_dln_libmap);
203 rb_gc_mark(box->gvar_tbl);
204 if (box->classext_cow_classes) {
205 rb_mark_tbl(box->classext_cow_classes);
210free_loading_table_entry(st_data_t key, st_data_t value, st_data_t arg)
217free_loaded_feature_index_i(st_data_t key, st_data_t value, st_data_t arg)
220 rb_darray_free((
void *)value);
226box_root_free(
void *ptr)
229 if (box->loading_table) {
230 st_foreach(box->loading_table, free_loading_table_entry, 0);
231 st_free_table(box->loading_table);
232 box->loading_table = 0;
235 if (box->loaded_features_index) {
236 st_foreach(box->loaded_features_index, free_loaded_feature_index_i, 0);
237 st_free_table(box->loaded_features_index);
242free_classext_for_box(st_data_t _key, st_data_t obj_value, st_data_t box_arg)
249 ext = rb_class_unlink_classext(obj, box);
250 rb_class_classext_free(obj, ext,
false);
253 ext = rb_class_unlink_classext(obj, box);
254 rb_iclass_classext_free(obj, ext,
false);
257 rb_bug(
"Invalid type of object in classext_cow_classes: %s", rb_type_str(
BUILTIN_TYPE(obj)));
263box_entry_free(
void *ptr)
267 if (box->classext_cow_classes) {
268 st_foreach(box->classext_cow_classes, free_classext_for_box, (st_data_t)box);
271 cleanup_all_local_extensions(box->ruby_dln_libmap);
278box_entry_memsize(
const void *ptr)
282 if (box->loaded_features_index) {
283 size += rb_st_memsize(box->loaded_features_index);
285 if (box->loading_table) {
286 size += rb_st_memsize(box->loading_table);
297 rb_box_gc_update_references,
299 0, 0, RUBY_TYPED_FREE_IMMEDIATELY
308 rb_box_gc_update_references,
310 &rb_box_data_type, 0, RUBY_TYPED_FREE_IMMEDIATELY
314rb_box_entry_alloc(
VALUE klass)
318 box_entry_initialize(entry);
323get_box_struct_internal(
VALUE entry)
331rb_get_box_t(
VALUE box)
341 VM_ASSERT(BOX_OBJ_P(box));
343 CONST_ID(id_box_entry,
"__box_entry__");
344 entry = rb_attr_get(box, id_box_entry);
345 return get_box_struct_internal(entry);
351 VM_ASSERT(box && box->box_object);
352 return box->box_object;
362box_initialize(
VALUE box_value)
368 CONST_ID(id_box_entry,
"__box_entry__");
370 if (!rb_box_available()) {
371 rb_raise(
rb_eRuntimeError,
"Ruby Box is disabled. Set RUBY_BOX=1 environment variable to use Ruby::Box.");
375 box = get_box_struct_internal(entry);
377 box->box_object = box_value;
378 box->box_id = box_generate_id();
384 RCLASS_SET_PRIME_CLASSEXT_WRITABLE(box_value,
true);
388 object_classext = RCLASS_EXT_WRITABLE_IN_BOX(rb_cObject, box);
389 RCLASS_SET_CONST_TBL(box_value, RCLASSEXT_CONST_TBL(object_classext),
true);
403rb_box_s_getenabled(
VALUE recv)
405 return RBOOL(rb_box_available());
416rb_box_s_current(
VALUE recv)
420 if (!rb_box_available())
423 box = rb_vm_current_box(GET_EC());
424 VM_ASSERT(box && box->box_object);
425 return box->box_object;
435rb_box_load_path(
VALUE box)
437 VM_ASSERT(BOX_OBJ_P(box));
438 return rb_get_box_t(box)->load_path;
442UINT rb_w32_system_tmpdir(WCHAR *path, UINT
len);
447system_default_tmpdir(
void)
451 WCHAR tmppath[_MAX_PATH];
452 UINT
len = rb_w32_system_tmpdir(tmppath, numberof(tmppath));
454 int blen = WideCharToMultiByte(CP_UTF8, 0, tmppath,
len, NULL, 0, NULL, NULL);
455 char *tmpdir =
xmalloc(blen + 1);
456 WideCharToMultiByte(CP_UTF8, 0, tmppath,
len, tmpdir, blen, NULL, NULL);
460#elif defined _CS_DARWIN_USER_TEMP_DIR
461 char path[MAXPATHLEN];
462 size_t len = confstr(_CS_DARWIN_USER_TEMP_DIR, path,
sizeof(path));
465 if (
len >
sizeof(path)) {
466 confstr(_CS_DARWIN_USER_TEMP_DIR, tmpdir,
len);
469 memcpy(tmpdir, path,
len);
478check_tmpdir(
const char *dir)
482 if (!dir)
return FALSE;
483 if (stat(dir, &st))
return FALSE;
485# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
487 if (!S_ISDIR(st.st_mode))
return FALSE;
492 if (st.st_mode & S_IWOTH) {
494 if (!(st.st_mode & S_ISVTX))
return FALSE;
499 if (access(dir, W_OK))
return FALSE;
508# define RETURN_ENV(name) \
509 if (check_tmpdir(tmpdir = getenv(name))) return ruby_strdup(tmpdir)
510 RETURN_ENV(
"TMPDIR");
512 tmpdir = system_default_tmpdir();
513 if (check_tmpdir(tmpdir))
return tmpdir;
521sprint_ext_filename(
char *str,
size_t size,
long box_id,
const char *prefix,
const char *basename)
523 if (tmp_dir_has_dirsep) {
524 return snprintf(str, size,
"%s%sp%"PRI_PIDT_PREFIX"u_%ld_%s", tmp_dir, prefix, getpid(), box_id, basename);
526 return snprintf(str, size,
"%s%s%sp%"PRI_PIDT_PREFIX"u_%ld_%s", tmp_dir, DIRSEP, prefix, getpid(), box_id, basename);
529enum copy_error_type {
534 COPY_ERROR_DST_WRITE,
536 COPY_ERROR_DST_CHMOD,
541copy_ext_file_error(
char *message,
size_t size,
int copy_retvalue)
544 int error = GetLastError();
546 size_t len = snprintf(message, size,
"%d: ", error);
548#define format_message(sublang) FormatMessage(\
549 FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, \
550 NULL, error, MAKELANGID(LANG_NEUTRAL, (sublang)), \
551 message + len, size - len, NULL)
552 if (format_message(SUBLANG_ENGLISH_US) == 0)
553 format_message(SUBLANG_DEFAULT);
554 for (p = message +
len; *p; p++) {
555 if (*p ==
'\n' || *p ==
'\r')
559 switch (copy_retvalue) {
560 case COPY_ERROR_SRC_OPEN:
561 strlcpy(message,
"can't open the extension path", size);
563 case COPY_ERROR_DST_OPEN:
564 strlcpy(message,
"can't open the file to write", size);
566 case COPY_ERROR_SRC_READ:
567 strlcpy(message,
"failed to read the extension path", size);
569 case COPY_ERROR_DST_WRITE:
570 strlcpy(message,
"failed to write the extension path", size);
572 case COPY_ERROR_SRC_STAT:
573 strlcpy(message,
"failed to stat the extension path to copy permissions", size);
575 case COPY_ERROR_DST_CHMOD:
576 strlcpy(message,
"failed to set permissions to the copied extension path", size);
578 case COPY_ERROR_SYSERR:
579 strlcpy(message, strerror(
errno), size);
581 case COPY_ERROR_NONE:
583 rb_bug(
"unknown return value of copy_ext_file: %d", copy_retvalue);
590static enum copy_error_type
591copy_stream(
int src_fd,
int dst_fd)
596 while ((rsize = read(src_fd, buffer,
sizeof(buffer))) != 0) {
597 if (rsize < 0)
return COPY_ERROR_SRC_READ;
598 for (
size_t written = 0; written < (size_t)rsize;) {
599 ssize_t wsize = write(dst_fd, buffer+written, rsize-written);
600 if (wsize < 0)
return COPY_ERROR_DST_WRITE;
601 written += (size_t)wsize;
604 return COPY_ERROR_NONE;
608static enum copy_error_type
609copy_ext_file(
const char *src_path,
const char *dst_path)
612 WCHAR *w_src = rb_w32_mbstr_to_wstr(CP_UTF8, src_path, -1, NULL);
613 WCHAR *w_dst = rb_w32_mbstr_to_wstr(CP_UTF8, dst_path, -1, NULL);
614 if (!w_src || !w_dst) {
620 enum copy_error_type rvalue = CopyFileW(w_src, w_dst, TRUE) ?
621 COPY_ERROR_NONE : COPY_ERROR_SYSERR;
627 const int bin = O_BINARY;
632 const int cloexec = O_CLOEXEC;
634 const int cloexec = 0;
636 const int src_fd = open(src_path, O_RDONLY|cloexec|bin);
637 if (src_fd < 0)
return COPY_ERROR_SRC_OPEN;
638 if (!cloexec) rb_maygvl_fd_fix_cloexec(src_fd);
641 if (fstat(src_fd, &src_st)) {
643 return COPY_ERROR_SRC_STAT;
646 const int dst_fd = open(dst_path, O_WRONLY|O_CREAT|O_EXCL|cloexec|bin, S_IRWXU);
649 return COPY_ERROR_DST_OPEN;
651 if (!cloexec) rb_maygvl_fd_fix_cloexec(dst_fd);
653 enum copy_error_type ret = COPY_ERROR_NONE;
655 if (fchmod(dst_fd, src_st.st_mode & 0777)) {
656 ret = COPY_ERROR_DST_CHMOD;
660 const size_t count_max = (SIZE_MAX >> 1) + 1;
663# ifdef HAVE_COPY_FILE_RANGE
665 ssize_t written = copy_file_range(src_fd, NULL, dst_fd, NULL, count_max, 0);
666 if (written == 0)
goto done;
667 if (written < 0)
break;
670# ifdef HAVE_FCOPYFILE
671 if (fcopyfile(src_fd, dst_fd, NULL, COPYFILE_DATA) == 0) {
677 ssize_t written = sendfile(src_fd, dst_fd, NULL count_max);
678 if (written == 0)
goto done;
679 if (written < 0)
break;
682 ret = copy_stream(src_fd, dst_fd);
686 if (dst_fd >= 0) close(dst_fd);
687 if (ret != COPY_ERROR_NONE) unlink(dst_path);
692#if defined __CYGWIN__ || defined DOSISH
693#define isdirsep(x) ((x) == '/' || (x) == '\\')
695#define isdirsep(x) ((x) == '/')
698#define IS_SOEXT(e) (strcmp((e), ".so") == 0 || strcmp((e), ".o") == 0)
699#define IS_DLEXT(e) (strcmp((e), DLEXT) == 0)
702fname_without_suffix(
const char *fname,
char *rvalue,
size_t rsize)
704 size_t len = strlen(fname);
706 for (pos = fname +
len; pos > fname; pos--) {
707 if (IS_SOEXT(pos) || IS_DLEXT(pos)) {
711 if (fname +
len - pos > DLEXT_MAXLEN)
break;
713 if (
len > rsize - 1)
len = rsize - 1;
714 memcpy(rvalue, fname,
len);
719escaped_basename(
const char *path,
const char *fname,
char *rvalue,
size_t rsize)
722 const char *leaf = path, *found;
724 while ((found = strstr(leaf + 1, fname)) != NULL) {
727 strlcpy(rvalue, leaf, rsize);
728 for (pos = rvalue; *pos; pos++) {
729 if (isdirsep(*pos)) {
736box_ext_cleanup_mark(
void *p)
738 rb_gc_mark((
VALUE)p);
742box_ext_cleanup_free(
void *p)
745 unlink(RSTRING_PTR(path));
750 {box_ext_cleanup_mark, box_ext_cleanup_free},
751 .flags = RUBY_TYPED_FREE_IMMEDIATELY,
755rb_box_cleanup_local_extension(
VALUE cleanup)
760 if (p) box_ext_cleanup_free(p);
769 HMODULE h = (HMODULE)NUM2PTR(value);
770 WCHAR module_path[MAXPATHLEN];
771 DWORD
len = GetModuleFileNameW(h, module_path, numberof(module_path));
774 if (
len > 0 &&
len < numberof(module_path)) DeleteFileW(module_path);
780cleanup_all_local_extensions(
VALUE libmap)
788 char ext_path[MAXPATHLEN], fname2[MAXPATHLEN], basename[MAXPATHLEN];
790 const char *src_path = RSTRING_PTR(path), *fname_ptr = RSTRING_PTR(fname);
791 rb_box_t *box = rb_get_box_t(box_value);
793 fname_without_suffix(fname_ptr, fname2,
sizeof(fname2));
794 escaped_basename(src_path, fname2, basename,
sizeof(basename));
796 wrote = sprint_ext_filename(ext_path,
sizeof(ext_path), box->box_id, BOX_TMP_PREFIX, basename);
797 if (wrote >= (
int)
sizeof(ext_path)) {
798 rb_bug(
"Extension file path in the box was too long");
802 enum copy_error_type copy_error = copy_ext_file(src_path, ext_path);
805 copy_ext_file_error(message,
sizeof(message), copy_error);
806 rb_raise(
rb_eLoadError,
"can't prepare the extension file for Ruby Box (%s from %"PRIsVALUE
"): %s", ext_path, path, message);
808 DATA_PTR(*cleanup) = (
void *)new_path;
818 rb_vm_frame_flag_set_box_require(GET_EC());
820 VALUE args = rb_ary_new_from_args(2, fname, wrap);
821 return rb_load_entrypoint(args);
827 rb_vm_frame_flag_set_box_require(GET_EC());
833rb_box_require_relative(
VALUE box,
VALUE fname)
835 rb_vm_frame_flag_set_box_require(GET_EC());
837 return rb_require_relative_entrypoint(fname);
841initialize_root_box(
void)
849 root->load_path_check_cache = 0;
854 root->loaded_features_index = st_init_numtable();
855 root->loaded_features_realpaths = rb_hash_new();
857 root->loaded_features_realpath_map = rb_hash_new();
860 root->ruby_dln_libmap = rb_hash_new_with_size(0);
861 root->gvar_tbl = rb_hash_new_with_size(0);
862 root->classext_cow_classes = NULL;
866 if (rb_box_available()) {
867 VALUE root_box, entry;
869 CONST_ID(id_box_entry,
"__box_entry__");
872 RCLASS_SET_PRIME_CLASSEXT_WRITABLE(root_box,
true);
873 RCLASS_SET_CONST_TBL(root_box, RCLASSEXT_CONST_TBL(RCLASS_EXT_PRIME(rb_cObject)),
true);
875 root->box_id = box_generate_id();
876 root->box_object = root_box;
883 root->box_object =
Qnil;
898 box = (
const rb_box_t *)rb_get_box_t(box_value);
900 return rb_iseq_eval(iseq, box);
903static int box_experimental_warned = 0;
908rb_initialize_main_box(
void)
911 VALUE main_box_value;
914 VM_ASSERT(rb_box_available());
916 if (!box_experimental_warned) {
918 "Ruby::Box is experimental, and the behavior may change in the future!\n"
919 "See https://docs.ruby-lang.org/en/%s/Ruby/Box.html for known issues, etc.",
920 ruby_api_version_name);
921 box_experimental_warned = 1;
925 VM_ASSERT(BOX_OBJ_P(main_box_value));
926 box = rb_get_box_t(main_box_value);
927 box->box_object = main_box_value;
929 box->is_optional =
false;
933 vm->main_box = main_box = box;
936 RCLASS_EXT_WRITABLE_IN_BOX(rb_cObject, box);
940rb_box_inspect(
VALUE obj)
948 box = rb_get_box_t(obj);
951 if (BOX_ROOT_P(box)) {
954 if (BOX_USER_P(box)) {
957 if (BOX_MAIN_P(box)) {
960 else if (BOX_OPTIONAL_P(box)) {
968rb_box_loading_func(
int argc,
VALUE *argv,
VALUE _self)
970 rb_vm_frame_flag_set_box_require(GET_EC());
975box_define_loader_method(
const char *name)
984 root_box->loading_table = st_init_strtable();
990 const char *env = getenv(
"RUBY_BOX");
991 if (env && strlen(env) == 1 && env[0] ==
'1') {
992 ruby_box_enabled =
true;
995 ruby_box_init_done =
true;
1001rb_box_s_root(
VALUE recv)
1003 return root_box->box_object;
1008rb_box_s_main(
VALUE recv)
1010 return main_box->box_object;
1015rb_box_root_p(
VALUE box_value)
1018 return RBOOL(BOX_ROOT_P(box));
1023rb_box_main_p(
VALUE box_value)
1026 return RBOOL(BOX_MAIN_P(box));
1032classname(
VALUE klass)
1038 p = RCLASSEXT_CLASSPATH(RCLASS_EXT_PRIME(klass));
1040 return RSTRING_PTR(p);
1042 return "AnyClassValue";
1043 return "NonClassValue";
1046static enum rb_id_table_iterator_result
1047dump_classext_methods_i(
ID mid,
VALUE _val,
void *data)
1051 return ID_TABLE_CONTINUE;
1054static enum rb_id_table_iterator_result
1055dump_classext_constants_i(
ID mid,
VALUE _val,
void *data)
1059 return ID_TABLE_CONTINUE;
1069 snprintf(buf, 4096,
"Ruby::Box %ld:%s classext %p\n",
1070 RCLASSEXT_BOX(ext)->box_id, is_prime ?
" prime" :
"", (void *)ext);
1073 snprintf(buf, 2048,
" Super: %s\n", classname(RCLASSEXT_SUPER(ext)));
1076 tbl = RCLASSEXT_M_TBL(ext);
1079 rb_id_table_foreach(RCLASSEXT_M_TBL(ext), dump_classext_methods_i, (
void *)ary);
1081 snprintf(buf, 4096,
" Methods(%ld): ",
RARRAY_LEN(ary));
1090 tbl = RCLASSEXT_CONST_TBL(ext);
1093 rb_id_table_foreach(tbl, dump_classext_constants_i, (
void *)ary);
1095 snprintf(buf, 4096,
" Constants(%ld): ",
RARRAY_LEN(ary));
1130 snprintf(buf, 2048,
"Non-class/module value: %p (%s)\n", (
void *)klass, rb_type_str(
BUILTIN_TYPE(klass)));
1135 snprintf(buf, 2048,
"Class: %p (%s)%s\n",
1136 (
void *)klass, classname(klass), RCLASS_SINGLETON_P(klass) ?
" [singleton]" :
"");
1139 snprintf(buf, 2048,
"Module: %p (%s)\n", (
void *)klass, classname(klass));
1143 ext = RCLASS_EXT_PRIME(klass);
1144 box = RCLASSEXT_BOX(ext);
1145 snprintf(buf, 2048,
"Prime classext box(%ld,%s), readable(%s), writable(%s)\n",
1147 BOX_ROOT_P(box) ?
"root" : (BOX_MAIN_P(box) ?
"main" :
"optional"),
1148 RCLASS_PRIME_CLASSEXT_READABLE_P(klass) ?
"t" :
"f",
1149 RCLASS_PRIME_CLASSEXT_WRITABLE_P(klass) ?
"t" :
"f");
1152 classext_tbl = RCLASS_CLASSEXT_TBL(klass);
1153 if (!classext_tbl) {
1157 snprintf(buf, 2048,
"Non-prime classexts: %zu\n", st_table_size(classext_tbl));
1161 rb_class_classext_foreach(klass, dump_classext_i, (
void *)res);
1177 tmp_dir = system_tmpdir();
1178 tmp_dir_has_dirsep = (strcmp(tmp_dir + (strlen(tmp_dir) - strlen(DIRSEP)), DIRSEP) == 0);
1189 initialize_root_box();
1193 box_define_loader_method(
"require");
1194 box_define_loader_method(
"require_relative");
1195 box_define_loader_method(
"load");
1197 if (rb_box_available()) {
#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.
Ruby-level global variables / constants, visible from C.
void rb_include_module(VALUE klass, VALUE module)
Includes a module to a class.
VALUE rb_singleton_class(VALUE obj)
Finds or creates the singleton class of the passed object.
VALUE rb_define_class_under(VALUE outer, const char *name, VALUE super)
Defines a class under the namespace of outer.
VALUE rb_define_module(const char *name)
Defines a top-level module.
VALUE rb_define_module_under(VALUE outer, const char *name)
Defines a module under the namespace of outer.
void rb_define_alias(VALUE klass, const char *name1, const char *name2)
Defines an alias of a method.
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.
#define rb_str_new2
Old name of rb_str_new_cstr.
#define xfree
Old name of ruby_xfree.
#define xmalloc
Old name of ruby_xmalloc.
#define T_MODULE
Old name of RUBY_T_MODULE.
#define T_ICLASS
Old name of RUBY_T_ICLASS.
#define LONG2NUM
Old name of RB_LONG2NUM.
#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.
#define BUILTIN_TYPE
Old name of RB_BUILTIN_TYPE.
#define FIXNUM_P
Old name of RB_FIXNUM_P.
#define CONST_ID
Old name of RUBY_CONST_ID.
void rb_category_warn(rb_warning_category_t category, const char *fmt,...)
Identical to rb_category_warning(), except it reports unless $VERBOSE is nil.
VALUE rb_eLoadError
LoadError exception.
VALUE rb_eRuntimeError
RuntimeError exception.
@ RB_WARN_CATEGORY_EXPERIMENTAL
Warning is for experimental features.
VALUE rb_obj_alloc(VALUE klass)
Allocates an instance of the given class.
VALUE rb_class_new_instance(int argc, const VALUE *argv, VALUE klass)
Allocates, then initialises an instance of the given class.
VALUE rb_cBox
Ruby::Box class.
VALUE rb_obj_hide(VALUE obj)
Make the object invisible from Ruby code.
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 ...
VALUE rb_cModule
Module class.
VALUE rb_funcall(VALUE recv, ID mid, int n,...)
Calls a method.
VALUE rb_call_super(int argc, const VALUE *argv)
This resembles ruby's super.
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.
VALUE rb_str_concat(VALUE dst, VALUE src)
Identical to rb_str_append(), except it also accepts an integer as a codepoint.
#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.
#define rb_str_new_cstr(str)
Identical to rb_str_new, except it assumes the passed pointer is a pointer to a C string.
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.
void rb_const_set(VALUE space, ID name, VALUE val)
Names a constant.
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.
char * ruby_strdup(const char *str)
This is our own version of strdup(3) that uses ruby_xmalloc() instead of system malloc (benefits our ...
void rb_hash_foreach(VALUE q, int_type *w, VALUE e)
Iteration over the given hash.
#define PRI_PIDT_PREFIX
A rb_sprintf() format prefix to be used for a pid_t parameter.
#define RARRAY_LEN
Just another name of rb_array_len.
#define DATA_PTR(obj)
Convenient getter macro.
#define StringValue(v)
Ensures that the parameter object is a String.
#define TypedData_Get_Struct(obj, type, data_type, sval)
Obtains a C struct from inside of a wrapper Ruby object.
#define TypedData_Wrap_Struct(klass, data_type, sval)
Converts sval, a pointer to your struct, into a Ruby object.
#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...
#define errno
Ractor-aware version of errno.
#define RTEST
This is an old name of RB_TEST.
Internal header for Ruby Box.
This is the struct that holds necessary info for a struct.
uintptr_t ID
Type that represents a Ruby identifier such as a variable name.
uintptr_t VALUE
Type that represents a Ruby object.
static bool RB_TYPE_P(VALUE obj, enum ruby_value_type t)
Queries if the given object is of given type.