redis-lua icon indicating copy to clipboard operation
redis-lua copied to clipboard

pipeline table.insert #2 argument out of bound

Open suseyang opened this issue 10 years ago • 10 comments

in redis.lua file, pipeline function Line 516 request is {}, empty, so #request get 0, it's a bad argument for table.insert

suseyang avatar Jan 28 '15 13:01 suseyang

But the call to 'client.network.write' adds data to requests

If I'm not mistaken:

local reply = cmd(client, ...)  <--- this will end up inserting data in 'requests' table
-- so here #requests can't be zero
table_insert(parsers, #requests, reply.parser)
return reply

ignacio avatar Jan 28 '15 14:01 ignacio

sounds reasonable, but in particular situation, request is empty, that's a sure thing. and lua don't allow #2 argument to be 0, so an empty table can't use table.insert with #2 argument, which is a strange design i think. if Line 516 isn't wrong, then the responsibility falls to the code before it by not catching the error in advance.

suseyang avatar Jan 29 '15 03:01 suseyang

Do you have a test case to reproduce the error?

ignacio avatar Jan 29 '15 12:01 ignacio

Not sure I understand what the issue is, any tiny snippet of code to reproduce it?

nrk avatar Jun 22 '15 17:06 nrk

I'm seeing this issue as well.

redis-lua
   2.0.4-1 (installed) - /usr/local/lib/luarocks/rocks
local redis = require("redis")
local r = redis.connect()

r:pipeline(function(pipe)
    pipe:zadd("FOO", 1, "BAR")
    pipe:zadd("FOO", 2, "BAZ")
end)
lua: /usr/local/share/lua/5.2/redis.lua:802: /usr/local/share/lua/5.2/redis.lua:471: bad argument #2 to 'table_insert' (position out of bounds)
stack traceback:
    [C]: in function 'error'
    /usr/local/share/lua/5.2/redis.lua:802: in function 'error'
    /usr/local/share/lua/5.2/redis.lua:480: in function 'pipeline'
    test.lua:5: in main chunk
    [C]: in ?

benwilber avatar Sep 03 '15 23:09 benwilber

@benwilber Did you find a fix for this?

janeczku avatar Dec 19 '15 20:12 janeczku

I got the same problem, but it seems that it comes from lua version: in 5.1:

t = {}
table.insert(t, 1, nil)
print(#t) --> 0, but
table.insert(t, 2, nil) --> no error

in 5.2 and 5.3:

t = {}
table.insert(t, 1, nil)
print(#t) --> 0
table.insert(t, 2, nil) --> ERROR: bad argument #2 to 'insert' (position out of bounds)

corrected for me by changing in pipeline function:

table_insert(parsers, #requests, reply.parser)

by

parsers[#requests] = reply.parser

I'm working on a more complete patch and I submit a pull request

cedroyer avatar Dec 29 '15 10:12 cedroyer

:+1: well done @cedroyer! This seems to affect Lua >= 5.2 indeed.

janeczku avatar Dec 29 '15 20:12 janeczku

I think the correct fix is to change:

table_insert(parsers, #requests, reply.parser)

to:

table_insert(parsers, reply.parser)

This keeps the requests and parsers tables parallel, i.e. for requests[n] the correct parser is parsers[n].

jaysoffian avatar Feb 01 '17 06:02 jaysoffian

I disagree, if you use: table_insert(parsers, reply.parser) and reply.parser is nil (and that seems to be the case), your table won't change and the next parser you add in parsers will be insert at the wrong place (n-1), that's why table_insert(parsers, #requests, reply.parser) was used in the library.

use parsers[#requests] = reply.parser works for me with lua 5.3 and I think it also works for lua 5.1 and 5.2.

cedroyer avatar Feb 01 '17 11:02 cedroyer