Issue #7982 has been reported by erik.s.chang (Erik Chang). ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982 Author: erik.s.chang (Erik Chang) Status: Open Priority: Normal Assignee: Category: Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
on 2013-02-28 01:54
on 2013-02-28 02:22
Issue #7982 has been updated by jeremyevans0 (Jeremy Evans). I don't think this is just the %lli format. It is probably at least the %li format as well. home_run's test suite fails on 2.0.0-p0 (working fine on 1.8.7 and 1.9.3), with the following backtrace: #0 0x0000031c9da03eea in kill () at <stdin>:2 #1 0x0000031c9da6a6ca in abort () at /usr/src/lib/libc/stdlib/abort.c:70 #2 0x0000031c931a82ad in rb_bug () from /usr/local/lib/libruby20.so.0.0 #3 0x0000031c932514bd in sigsegv () from /usr/local/lib/libruby20.so.0.0 #4 <signal handler called> #5 0x0000031c9325efd0 in rb_obj_as_string () from /usr/local/lib/libruby20.so.0.0 #6 0x0000031c93254be8 in ruby__sfvextra () from /usr/local/lib/libruby20.so.0.0 #7 0x0000031c9325310f in BSD_vfprintf () from /usr/local/lib/libruby20.so.0.0 #8 0x0000031c93254eef in rb_enc_vsprintf () from /usr/local/lib/libruby20.so.0.0 #9 0x0000031c931a6f0f in rb_raise () from /usr/local/lib/libruby20.so.0.0 #10 0x0000031c9e6d582b in rhrd_s_civil (argc=3, argv=0x31c8ffd0358, klass=3421292953680) at ../../../../ext/date_ext/date_ext.c:1565 1565 rb_raise(rb_eArgError, "invalid date (year: %li, month: %li, day: %li)", year, month, day); Changing %li to %ld makes it no longer fail at that location (it fails at the next location using %li instead). This is on: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-openbsd] ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982#change-37171 Author: erik.s.chang (Erik Chang) Status: Open Priority: Normal Assignee: Category: Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
on 2013-02-28 03:56
Issue #7982 has been updated by phasis68 (Heesob Park).
Here is a patch:
diff --git a/vsnprintf.c b/vsnprintf.c.new
index 1e4cdc5..29bdfda 100644
--- a/vsnprintf.c
+++ b/vsnprintf.c.new
@@ -809,10 +809,10 @@ reswitch: switch (ch) {
if (fp->vextra && (flags & INTPTR_MASK) == INTPTR_FLAG) {
FLUSH();
#if defined _HAVE_SANE_QUAD_ && SIZEOF_VOIDP == SIZEOF_LONG_LONG
- uqval = va_arg(ap, u_quad_t);
+ uqval = LL2NUM(va_arg(ap, u_quad_t));
cp = (*fp->vextra)(fp, sizeof(uqval), &uqval, &fieldsz, sign);
#else
- ulval = va_arg(ap, u_long);
+ ulval = LONG2NUM(va_arg(ap, u_long));
cp = (*fp->vextra)(fp, sizeof(ulval), &ulval, &fieldsz, sign);
#endif
sign = '\0';
----------------------------------------
Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1)
https://bugs.ruby-lang.org/issues/7982#change-37177
Author: erik.s.chang (Erik Chang)
Status: Open
Priority: Normal
Assignee:
Category:
Target version: current: 2.1.0
ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux]
This was not a problem on 1.9.3
Run attached "t" extension with:
ruby -rt -e '"".blowup(0xffffffff + 1)'
to reproduce. Using %lld works around the issue.
on 2013-02-28 07:00
Issue #7982 has been updated by nobu (Nobuyoshi Nakada).
Status changed from Open to Rejected
=begin
Sorry, you can't use (({%i})) for (({rb_raise()})), (({rb_warn()})), and
so on.
It's now used for (({Object}))s.
Use (({%d})) instead.
=end
----------------------------------------
Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1)
https://bugs.ruby-lang.org/issues/7982#change-37185
Author: erik.s.chang (Erik Chang)
Status: Rejected
Priority: Normal
Assignee:
Category:
Target version: current: 2.1.0
ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux]
This was not a problem on 1.9.3
Run attached "t" extension with:
ruby -rt -e '"".blowup(0xffffffff + 1)'
to reproduce. Using %lld works around the issue.
on 2013-02-28 08:39
On 02/28 02:59, nobu (Nobuyoshi Nakada) wrote:
> =end
The Changelog entry for this is:
* vsnprintf.c (BSD_vfprintf): [EXPERIMENTAL] object representation in
rb_enc_vsprintf(). [Feature #5896]
There is no indication that %i is now handled differently than before.
For a C programmer, overriding %i which has historically been used for
integers is very confusing and error prone. It is true that ruby is
not C, but this is a C API, and rb_raise's documentation in README.EXT
states:
void rb_raise(rb_eRuntimeError, const char *fmt, ...) ::
Raises RuntimeError. The fmt is a format string just like printf().
I content that the format string syntax in ruby 2.0.0 is not "just
like printf()". Maybe "similar to printf(), with the following
exceptions: ..."?
As this is still marked EXPERIMENTAL, it would be better if another
letter that isn't already supported by printf(3) was used instead.
At the very least, if you plan to continue the use of %i for object
representation, there should be specific notes in the documentation.
Thanks,
Jeremy
on 2013-02-28 10:01
Issue #7982 has been updated by nobu (Nobuyoshi Nakada). Category set to doc Status changed from Rejected to Open jeremyevans (Jeremy Evans) wrote: > I content that the format string syntax in ruby 2.0.0 is not "just > like printf()". Maybe "similar to printf(), with the following > exceptions: ..."? Thank you, I'll add it later. ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982#change-37188 Author: erik.s.chang (Erik Chang) Status: Open Priority: Normal Assignee: Category: doc Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
on 2013-04-28 01:13
Issue #7982 has been updated by zzak (Zachary Scott). Status changed from Closed to Assigned Assignee set to nobu (Nobuyoshi Nakada) % Done changed from 100 to 50 @nobu, how does this look? Any other places we should add this? Are there any more formats that should be avoided? ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982#change-38974 Author: erik.s.chang (Erik Chang) Status: Assigned Priority: Normal Assignee: nobu (Nobuyoshi Nakada) Category: doc Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] Backport: This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
on 2013-04-28 01:16
Issue #7982 has been updated by zzak (Zachary Scott). Backport set to 1.9.3: UNKNOWN, 2.0.0: UNKNOWN ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982#change-38975 Author: erik.s.chang (Erik Chang) Status: Assigned Priority: Normal Assignee: nobu (Nobuyoshi Nakada) Category: doc Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] Backport: 1.9.3: UNKNOWN, 2.0.0: UNKNOWN This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
on 2013-04-28 01:17
Issue #7982 has been updated by zzak (Zachary Scott). Backport changed from 1.9.3: UNKNOWN, 2.0.0: UNKNOWN to 2.0.0: UNKNOWN ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982#change-38976 Author: erik.s.chang (Erik Chang) Status: Assigned Priority: Normal Assignee: nobu (Nobuyoshi Nakada) Category: doc Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] Backport: 2.0.0: UNKNOWN This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
on 2013-04-28 02:43
Issue #7982 has been updated by zzak (Zachary Scott). Status changed from Closed to Assigned Assignee changed from nobu (Nobuyoshi Nakada) to nagachika (Tomoyuki Chikanaga) % Done changed from 100 to 50 How is this? We should backport this too ---------------------------------------- Bug #7982: rb_raise segfaults on %lli format with (0xffffffff + 1) https://bugs.ruby-lang.org/issues/7982#change-38983 Author: erik.s.chang (Erik Chang) Status: Assigned Priority: Normal Assignee: nagachika (Tomoyuki Chikanaga) Category: doc Target version: current: 2.1.0 ruby -v: ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-linux] Backport: 2.0.0: UNKNOWN This was not a problem on 1.9.3 Run attached "t" extension with: ruby -rt -e '"".blowup(0xffffffff + 1)' to reproduce. Using %lld works around the issue.
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.