Ok..since running the test code does not require any external ruby libraries I can compile 1.9 on my machine without installing it, and run the test program.
Here's what I see:
- Ruby seems to "hang" (you can't interrupt it, and it doesn't exit by itself).
top shows ruby running at 100% CPU
strace shows no output once it goes into 100% CPU mode.
From this it's obvious Ruby goes into an infinite loop. And looking at each_byte in io.c, and adding a printf into the suspicious location reveals where we get stuck:
static VALUE
rb_io_each_byte(VALUE io)
{
rb_io_t *fptr;
char *p, *e;
RETURN_ENUMERATOR(io, 0, 0);
GetOpenFile(io, fptr);
for (;;) {
p = fptr->rbuf+fptr->rbuf_off;
e = p + fptr->rbuf_len;
printf("UH OH: %d < %d\n", p, e); /* INFINITE LOOP ALERT */
while (p < e) {
fptr->rbuf_off++;
fptr->rbuf_len--;
rb_yield(INT2FIX(*p & 0xff));
p++;
errno = 0;
}
rb_io_check_byte_readable(fptr);
READ_CHECK(fptr);
if (io_fillbuf(fptr) < 0) {
break;
}
}
return io;
}
On my machine it prints this:
UH OH: 0 < 0
UH OH: 137343104 < 137351296
UH OH: 137343119 < 137343104
UH OH: 137343119 < 137343104
UH OH: 137343119 < 137343104
...ad infinitum...
And 137343119 is NOT less than 137343104, which means we stop going into the while loop (which would yield the block).
When you run the code so that it doesn't hang you get this:
UH OH: 0 < 0
UH OH: 137341560 < 137349752
UH OH: 137341560 < 137349752
UH OH: 137341560 < 137349752
UH OH: 137341560 < 137349752
....
And 137341560 IS less than 137349752.
Anyway..that's all I got for now. Still no clue why it's happening. But now we at least know WHAT is happening. Someone who wrote that code could probably explain why it's happening immidiately.
Anyway..I still think the lseek calls somehow mess up ruby's internal file pointers, and the above loop goes haywire because of that.
EDIT
And here's a fix:
Change flush_before_seek in io.c to look like this:
static rb_io_t *
flush_before_seek(rb_io_t *fptr)
{
int wbuf_len = fptr->wbuf_len;
if (io_fflush(fptr) < 0)
rb_sys_fail(0);
if (wbuf_len != 0)
io_unread(fptr);
errno = 0;
return fptr;
}
What I added was the check for wbuf_len != 0, so that we don't do io_unread unnecessarily. Calling io_unread while in the each_byte loop is what messes things up. Skipping the unread makes things work and all the tests for make test still pass.
Anyway..it's not a proper fix, since there is some fundamental thought mistake with f.pos. It's just a workaround...but it fixes the above problem none the less :-/