mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
ebdebb946d
4 changed files with 48 additions and 6 deletions
|
@ -591,7 +591,7 @@ function resolver:adddefaultnameservers() -- - - - - adddefaultnameservers
|
||||||
if resolv_conf then
|
if resolv_conf then
|
||||||
for line in resolv_conf:lines() do
|
for line in resolv_conf:lines() do
|
||||||
line = line:gsub("#.*$", "")
|
line = line:gsub("#.*$", "")
|
||||||
:match('^%s*nameserver%s+([%x:%.]*)%s*$');
|
:match('^%s*nameserver%s+([%x:%.]*%%?%S*)%s*$');
|
||||||
if line then
|
if line then
|
||||||
local ip = new_ip(line);
|
local ip = new_ip(line);
|
||||||
if ip then
|
if ip then
|
||||||
|
@ -853,8 +853,10 @@ function resolver:receive(rset) -- - - - - - - - - - - - - - - - - receive
|
||||||
--self.print(response);
|
--self.print(response);
|
||||||
|
|
||||||
for j,rr in pairs(response.answer) do
|
for j,rr in pairs(response.answer) do
|
||||||
|
if rr.name:sub(-#response.question[1].name, -1) == response.question[1].name then
|
||||||
self:remember(rr, response.question[1].type)
|
self:remember(rr, response.question[1].type)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- retire the query
|
-- retire the query
|
||||||
local queries = self.active[response.header.id];
|
local queries = self.active[response.header.id];
|
||||||
|
|
|
@ -49,6 +49,34 @@ if not mime_map then
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local forbidden_chars_pattern = "[/%z]";
|
||||||
|
if prosody.platform == "windows" then
|
||||||
|
forbidden_chars_pattern = "[/%z\001-\031\127\"*:<>?|]"
|
||||||
|
end
|
||||||
|
|
||||||
|
local urldecode = require "util.http".urldecode;
|
||||||
|
function sanitize_path(path)
|
||||||
|
local out = {};
|
||||||
|
|
||||||
|
local c = 0;
|
||||||
|
for component in path:gmatch("([^/]+)") do
|
||||||
|
component = urldecode(component);
|
||||||
|
if component:find(forbidden_chars_pattern) then
|
||||||
|
return nil;
|
||||||
|
elseif component == ".." then
|
||||||
|
if c <= 0 then
|
||||||
|
return nil;
|
||||||
|
end
|
||||||
|
out[c] = nil;
|
||||||
|
c = c - 1;
|
||||||
|
elseif component ~= "." then
|
||||||
|
c = c + 1;
|
||||||
|
out[c] = component;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return "/"..table.concat(out, "/");
|
||||||
|
end
|
||||||
|
|
||||||
local cache = setmetatable({}, { __mode = "kv" }); -- Let the garbage collector have it if it wants to.
|
local cache = setmetatable({}, { __mode = "kv" }); -- Let the garbage collector have it if it wants to.
|
||||||
|
|
||||||
function serve(opts)
|
function serve(opts)
|
||||||
|
@ -60,7 +88,11 @@ function serve(opts)
|
||||||
local directory_index = opts.directory_index;
|
local directory_index = opts.directory_index;
|
||||||
local function serve_file(event, path)
|
local function serve_file(event, path)
|
||||||
local request, response = event.request, event.response;
|
local request, response = event.request, event.response;
|
||||||
local orig_path = request.path;
|
path = sanitize_path(path);
|
||||||
|
if not path then
|
||||||
|
return 400;
|
||||||
|
end
|
||||||
|
local orig_path = sanitize_path(request.path);
|
||||||
local full_path = base_path .. (path and "/"..path or ""):gsub("/", path_sep);
|
local full_path = base_path .. (path and "/"..path or ""):gsub("/", path_sep);
|
||||||
local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
|
local attr = stat(full_path:match("^.*[^\\/]")); -- Strip trailing path separator because Windows
|
||||||
if not attr then
|
if not attr then
|
||||||
|
|
|
@ -14,6 +14,7 @@ function run_all_tests()
|
||||||
dotest "util.multitable"
|
dotest "util.multitable"
|
||||||
dotest "util.rfc6724"
|
dotest "util.rfc6724"
|
||||||
dotest "util.http"
|
dotest "util.http"
|
||||||
|
dotest "core.modulemanager"
|
||||||
dotest "core.stanza_router"
|
dotest "core.stanza_router"
|
||||||
dotest "core.s2smanager"
|
dotest "core.s2smanager"
|
||||||
dotest "core.configmanager"
|
dotest "core.configmanager"
|
||||||
|
@ -140,9 +141,12 @@ function dotest(unitname)
|
||||||
end
|
end
|
||||||
|
|
||||||
local oldmodule, old_M = _fakeG.module, _fakeG._M;
|
local oldmodule, old_M = _fakeG.module, _fakeG._M;
|
||||||
_fakeG.module = function () _M = unit end
|
_fakeG.module = function ()
|
||||||
|
setmetatable(unit, nil);
|
||||||
|
unit._M = unit;
|
||||||
|
end
|
||||||
setfenv(chunk, unit);
|
setfenv(chunk, unit);
|
||||||
local success, ret = pcall(chunk);
|
local success, err = pcall(chunk);
|
||||||
_fakeG.module, _fakeG._M = oldmodule, old_M;
|
_fakeG.module, _fakeG._M = oldmodule, old_M;
|
||||||
if not success then
|
if not success then
|
||||||
print("WARNING: ", "Failed to initialise module: "..unitname, err);
|
print("WARNING: ", "Failed to initialise module: "..unitname, err);
|
||||||
|
|
|
@ -25,6 +25,10 @@ local function new_ip(ipStr, proto)
|
||||||
elseif proto ~= "IPv4" and proto ~= "IPv6" then
|
elseif proto ~= "IPv4" and proto ~= "IPv6" then
|
||||||
return nil, "invalid protocol";
|
return nil, "invalid protocol";
|
||||||
end
|
end
|
||||||
|
local zone;
|
||||||
|
if proto == "IPv6" and ipStr:find('%', 1, true) then
|
||||||
|
ipStr, zone = ipStr:match("^(.-)%%(.*)");
|
||||||
|
end
|
||||||
if proto == "IPv6" and ipStr:find('.', 1, true) then
|
if proto == "IPv6" and ipStr:find('.', 1, true) then
|
||||||
local changed;
|
local changed;
|
||||||
ipStr, changed = ipStr:gsub(":(%d+)%.(%d+)%.(%d+)%.(%d+)$", function(a,b,c,d)
|
ipStr, changed = ipStr:gsub(":(%d+)%.(%d+)%.(%d+)%.(%d+)$", function(a,b,c,d)
|
||||||
|
@ -33,7 +37,7 @@ local function new_ip(ipStr, proto)
|
||||||
if changed ~= 1 then return nil, "invalid-address"; end
|
if changed ~= 1 then return nil, "invalid-address"; end
|
||||||
end
|
end
|
||||||
|
|
||||||
return setmetatable({ addr = ipStr, proto = proto }, ip_mt);
|
return setmetatable({ addr = ipStr, proto = proto, zone = zone }, ip_mt);
|
||||||
end
|
end
|
||||||
|
|
||||||
local function toBits(ip)
|
local function toBits(ip)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue