mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.stanza + tests: Bail out of loop if we are iterating too far, fixes #981
This commit is contained in:
parent
c17a785604
commit
3b0271f560
2 changed files with 13 additions and 0 deletions
|
@ -327,5 +327,12 @@ describe("util.stanza", function()
|
|||
end);
|
||||
assert.equal(3, #s.tags);
|
||||
end);
|
||||
it("errors on invalid data - #981", function ()
|
||||
local s = st.message({}, "Hello");
|
||||
s.tags[1] = st.clone(s.tags[1]);
|
||||
assert.has_error_match(function ()
|
||||
s:maptags(function () end);
|
||||
end, "Invalid stanza");
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
|
@ -217,6 +217,7 @@ end
|
|||
function stanza_mt:maptags(callback)
|
||||
local tags, curr_tag = self.tags, 1;
|
||||
local n_children, n_tags = #self, #tags;
|
||||
local max_iterations = n_children + 1;
|
||||
|
||||
local i = 1;
|
||||
while curr_tag <= n_tags and n_tags > 0 do
|
||||
|
@ -236,6 +237,11 @@ function stanza_mt:maptags(callback)
|
|||
curr_tag = curr_tag + 1;
|
||||
end
|
||||
i = i + 1;
|
||||
if i > max_iterations then
|
||||
-- COMPAT: Hopefully temporary guard against #981 while we
|
||||
-- figure out the root cause
|
||||
error("Invalid stanza state! Please report this error.");
|
||||
end
|
||||
end
|
||||
return self;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue