summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-02-05Hash: check flags before accessing ifnone; ref #980Yukihiro "Matz" Matsumoto
2016-02-04cache UTF8 status for utf8_strlen(); ref #980Yukihiro "Matz" Matsumoto
2016-02-04cache mrb_regexp_p(); ref #980Yukihiro "Matz" Matsumoto
2016-02-04Merge pull request #3096 from hlogmans/masterYukihiro "Matz" Matsumoto
Fix missing dependency on mruby-print to support 'puts'
2016-02-03Fix missing dependency on mruby-print to support 'puts'Hugo Logmans
2016-01-31Merge pull request #3093 from retrage/retrage/devYukihiro "Matz" Matsumoto
Add String#rjust to mruby-string-ext
2016-01-31Merge pull request #3092 from kenhys/fix-suportedYukihiro "Matz" Matsumoto
Fix a typo
2016-01-31Fix a typoHAYASHI Kentaro
su ported -> supported ^
2016-01-30Merge pull request #29 from rmalizia44/patch-1Tomoyuki Sahara
Add _WIN32_WINNT definition to Avoid Windows Compilation Errors
2016-01-30Add String#rjust test to mruby-string-extAkira Moroo
2016-01-30Add String#rjust to mruby-string-extAkira Moroo
2016-01-28Add _WIN32_WINNT definition to Avoid Windows Compilation Errorsrmalizia44
the line #define _WIN32_WINNT 0x0501 will cause ws2tcpip.h to implement the missing functions freeaddrinfo, getaddrinfo and getnameinfo on windows
2016-01-28Merge pull request #3091 from visualsayed/fix_hash_replace_methodYukihiro "Matz" Matsumoto
protect NoMethodError from calling to_hash in replace
2016-01-27protect NoMethodError from calling to_hash in replaceSayed Abdelhaleem
2016-01-22Merge pull request #3090 from kou/fix-segv-by-stack-extension-in-mrb-get-argsYukihiro "Matz" Matsumoto
Fix SEGV by stack extension in mrb_get_args()
2016-01-22Fix SEGV by stack extension in mrb_get_args()Kouhei Sutou
mrb_get_args() keeps pointer of the current stack. But address of the current stack maybe changed by method call. 'i' format character calls #to_i when the argument isn't integer but has #to_i. Here is a code that may call #to_i in mrb_get_args(): case 'i': // ... default: *p = mrb_fixnum(mrb_Integer(mrb, ARGV[arg_i])); break; // ... Here is a code #to_i is called: class X def initialize(i) @i = i end def to_i @i end end [][X.new(0), 0] # X#to_i is called So, mrb_get_args() shouldn't keep pointer and use it. mrb_get_args() should always refer mrb->ci->stack to use valid address of the current stack.
2016-01-21Merge pull request #57 from MaximAbramchuck/patch-1Tomoyuki Sahara
Add installation instructions
2016-01-21mruby-random: fixed wrong fixnum conversionYukihiro "Matz" Matsumoto
2016-01-20Add installation instructionsMaxim Abramchuk
2016-01-20Merge pull request #3088 from maclover7/patch-1Yukihiro "Matz" Matsumoto
Small grammar fix
2016-01-19Small grammar fixJon Moss
[ci skip]
2016-01-19Merge pull request #3087 from kou/fix-segv-on-rerasing-no-memory-errorYukihiro "Matz" Matsumoto
Fix SEGV on re-raising NoMemoryError
2016-01-19Fix SEGV on re-raising NoMemoryErrorKouhei Sutou
Think about the following Ruby script: segv.rb: begin lambda do lambda do "x" * 1000 # NoMemoryError end.call end.call rescue raise end If memory can't allocate after `"x" * 1000`, mruby crashes. Because L_RAISE: block in mrb_vm_exec() calls mrb_env_unshare() via cipop() and mrb_env_unshare() uses allocated memory without NULL check: L_RAISE: block: L_RAISE: // ... while (ci[0].ridx == ci[-1].ridx) { cipop(mrb); // ... } cipop(): static void cipop(mrb_state *mrb) { struct mrb_context *c = mrb->c; if (c->ci->env) { mrb_env_unshare(mrb, c->ci->env); } c->ci--; } mrb_env_unshare(): MRB_API void mrb_env_unshare(mrb_state *mrb, struct REnv *e) { size_t len = (size_t)MRB_ENV_STACK_LEN(e); // p is NULL in this case mrb_value *p = (mrb_value *)mrb_malloc(mrb, sizeof(mrb_value)*len); MRB_ENV_UNSHARE_STACK(e); if (len > 0) { stack_copy(p, e->stack, len); // p is NULL but used. It causes SEGV. } e->stack = p; mrb_write_barrier(mrb, (struct RBasic *)e); } To solve the SEGV, this change always raises NoMemoryError even when realloc() is failed after the first NoMemoryError in mrb_realloc(). mrb_unv_unshare() doesn't need to check NULL with this change. But it causes infinite loop in the following while: L_RAISE: // ... while (ci[0].ridx == ci[-1].ridx) { cipop(mrb); // ... } Because cipop() never pops ci. This change includes cipop() change. The change pops ci even when mrb_unv_unshare() is failed by NoMemoryError. This case can be reproduced by the following program: #include <stdlib.h> #include <mruby.h> #include <mruby/compile.h> static void * allocf(mrb_state *mrb, void *ptr, size_t size, void *ud) { static mrb_bool always_fail = FALSE; if (size == 1001) { always_fail = TRUE; } if (always_fail) { return NULL; } if (size == 0) { free(ptr); return NULL; } else { return realloc(ptr, size); } } int main(int argc, char **argv) { mrb_state *mrb; mrbc_context *c; FILE *file; mrb = mrb_open_allocf(allocf, NULL); c = mrbc_context_new(mrb); file = fopen(argv[1], "r"); mrb_load_file_cxt(mrb, file, c); fclose(file); mrbc_context_free(mrb, c); mrb_close(mrb); return EXIT_SUCCESS; } Try the following command lines: % cc -I include -L build/host/lib -O0 -g3 -o no-memory no-memory.c -lmruby -lm % ./no-memory segv.rb
2016-01-18Merge pull request #28 from zzak/port-ntop-pton-win32Tomoyuki Sahara
Port inet_ntop and inet_pton for WIN32
2016-01-18Merge pull request #27 from zzak/fix-udpsock-warningTomoyuki Sahara
Fix warning: variable 'udpsock' set but not used
2016-01-18Port inet_ntop and inet_pton for WIN32Zachary Scott
Without these functions, compilation fails on MinGW
2016-01-18Fix warning: variable 'udpsock' set but not usedZachary Scott
2016-01-18Merge pull request #3086 from pra85/2016Yukihiro "Matz" Matsumoto
Update license year range to 2016
2016-01-18Update license year range to 2016Prayag Verma
2016-01-14Merge pull request #3084 from syohex/all-zerosYukihiro "Matz" Matsumoto
Fix passing all zero string to Kernel#Integer
2016-01-14Fix all zero string caseSyohei YOSHIDA
2016-01-14Add tests which passes all zero string to Kernel#IntegerSyohei YOSHIDA
2016-01-14Merge pull request #3082 from ↵Yukihiro "Matz" Matsumoto
jefffederman/feature/install-mruby-with-ruby-install Update README to mention ruby version management tools
2016-01-13Update README to mention ruby version management toolsJeff Federman
2016-01-13Merge pull request #3081 from val00274/fix_toolchains_paramsYukihiro "Matz" Matsumoto
Fix build error in ruby 1.8.
2016-01-13Fix build error in ruby 1.8.asatou
Apply change of #2978 to :clang, :gcc, :visualcpp toolchains
2016-01-11Merge pull request #3080 from kou/fix-class-variable-in-moduleYukihiro "Matz" Matsumoto
Fix class variable reference in module
2016-01-11Fix class variable reference in moduleKouhei Sutou
Fix #3079
2016-01-08fixed a problem with upvar access from instance_eval; ref #3072Yukihiro "Matz" Matsumoto
2016-01-08Merge pull request #3077 from sgnr/output-backtrace-segfaultYukihiro "Matz" Matsumoto
Fix segfault on mrb_exc_backtrace.
2016-01-07Fix segfault on mrb_exc_backtrace.Simon Génier
The code to iterate over backtrace locations was changed in #3065, but unfortunately output_backtrace was not correctly updated to forward the callback.
2016-01-07replace mrb_toplevel_run() by mrb_top_run()Yukihiro "Matz" Matsumoto
2016-01-07mruby-eval: fixed receiver value in eval context; close #3072Yukihiro "Matz" Matsumoto
2016-01-07change mrb_run related API names; compatibility macros providedYukihiro "Matz" Matsumoto
2016-01-07move KHASH_DECLARE(ht..) to mruby/hash.h; close #3073Yukihiro "Matz" Matsumoto
2016-01-07mruby-sprintf to use mrb_int formatting macros; ref #3076Yukihiro "Matz" Matsumoto
2016-01-07Merge pull request #3074 from syohex/precision-parameter-typeYukihiro "Matz" Matsumoto
printf precision parameter must be 'int' type
2016-01-07printf precision parameter must be 'int' typeSyohei YOSHIDA
There is a problem when MRB_INT64 is enabled.
2016-01-06Merge pull request #3071 from ksss/symbolYukihiro "Matz" Matsumoto
symname_p support `!~`
2016-01-06Merge pull request #3070 from kazuho/kazuho/printf-specifiersYukihiro "Matz" Matsumoto
provide macro to ease using printf mrb_int