[#101179] Spectre Mitigations — Amel <amel.smajic@...>
Hi there!
5 messages
2020/12/01
[#101180] Re: Spectre Mitigations
— Chris Seaton <chris@...>
2020/12/01
I wouldn’t recommend using Ruby to run in-process untrusted code in the first place. Are people doing that?
[#101694] Ruby 3.0.0 Released — "NARUSE, Yui" <naruse@...>
We are pleased to announce the release of Ruby 3.0.0. From 2015 we
4 messages
2020/12/25
[ruby-core:101626] [Ruby master Bug#17425] Ripper.lex raises unexpected error
From:
nov@...
Date:
2020-12-22 10:02:40 UTC
List:
ruby-core #101626
Issue #17425 has been reported by no6v (Nobuhiro IMAI).
----------------------------------------
Bug #17425: Ripper.lex raises unexpected error
https://bugs.ruby-lang.org/issues/17425
* Author: no6v (Nobuhiro IMAI)
* Status: Open
* Priority: Normal
* ruby -v: ruby 3.0.0dev (2020-12-22T08:12:51Z master f2f00e24fa) [x86_64-linux]
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN
----------------------------------------
```
$ cat /tmp/l.rb
require "ripper"
pp Ripper.lex("def foo(arg1?:) end")
$ ./ruby -v /tmp/l.rb
ruby 3.0.0dev (2020-12-22T08:12:51Z master f2f00e24fa) [x86_64-linux]
/var/tmp/git/ruby/ruby/.local/lib/ruby/3.0.0/ripper/lexer.rb:198:in `on_error2': undefined method `pos' for 30279:Integer (NoMethodError)
```
```
Breakpoint 1, ripper_dispatch2 (p=p@entry=0x555555c73240, mid=34721, a=93824999713440, b=b@entry=41775) at ripper.y:13336
13336 {
(gdb) rp p->lex.input
T_STRING: "def foo(arg1?:) end"
bytesize:19 (embed) encoding:1 coderange:7bit $1 = (struct RString *) 0x555555c77400
(gdb) rb_id2name mid
ID: l(34721): on_param_error
(gdb) rp a
T_STRING: "formal argument must be local variable"
bytesize:38 encoding:1 coderange:unknown $2 = (struct RString *) 0x555555c76aa0
(gdb) rp b
FIXNUM: 20887
(gdb) rb_id2name b
ID: j(41775): arg1?
(gdb) up
#1 0x00007ffff2c30719 in formal_argument (p=p@entry=0x555555c73240, lhs=lhs@entry=41775) at ripper.y:7881
7881 ERR("formal argument must be local variable");
(gdb) c
Continuing.
/var/tmp/git/ruby/ruby/.local/lib/ruby/3.0.0/ripper/lexer.rb:198:in `on_error2': undefined method `pos' for 20887:Integer (NoMethodError)
```
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>