|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
local _M = { _VERSION = '0.02' }
|
|
|
|
local mt = { __index = _M }
|
|
|
|
|
|
|
|
local json = require "cjson"
|
|
|
|
local ngx_match = ngx.re.find
|
|
|
|
|
|
|
|
local debug_mode = false
|
|
|
|
|
|
|
|
local waf_root = "{$WAF_ROOT}"
|
|
|
|
local cpath = waf_root.."/waf/"
|
|
|
|
local logdir = waf_root.."/logs/"
|
|
|
|
local rpath = cpath.."/rule/"
|
|
|
|
|
|
|
|
function _M.new(self)
|
|
|
|
|
|
|
|
local self = {
|
|
|
|
waf_root = waf_root,
|
|
|
|
cpath = cpath,
|
|
|
|
rpath = rpath,
|
|
|
|
logdir = logdir,
|
|
|
|
config = '',
|
|
|
|
site_config = '',
|
|
|
|
server_name = '',
|
|
|
|
params = nil
|
|
|
|
}
|
|
|
|
return setmetatable(self, mt)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.setDebug(self, mode)
|
|
|
|
debug_mode = mode
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- 调试方式
|
|
|
|
function _M.D(self, msg)
|
|
|
|
|
|
|
|
if not debug_mode then return true end
|
|
|
|
|
|
|
|
local _msg = ''
|
|
|
|
if type(msg) == 'table' then
|
|
|
|
for key, val in pairs(msg) do
|
|
|
|
_msg = tostring( key)..':'.."\n"
|
|
|
|
end
|
|
|
|
elseif type(msg) == 'string' then
|
|
|
|
_msg = msg
|
|
|
|
elseif type(msg) == 'nil' then
|
|
|
|
_msg = 'nil'
|
|
|
|
else
|
|
|
|
_msg = msg
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local fp = io.open(waf_root.."/debug.log", "ab")
|
|
|
|
if fp == nil then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
-- local localtime = os.date("%Y-%m-%d %H:%M:%S")
|
|
|
|
local localtime = ngx.localtime()
|
|
|
|
if server_name then
|
|
|
|
fp:write(tostring(_msg) .. "\n")
|
|
|
|
else
|
|
|
|
fp:write(localtime..":"..tostring(_msg) .. "\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
fp:flush()
|
|
|
|
fp:close()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local function write_file_clear(filename, body)
|
|
|
|
fp = io.open(filename,'w')
|
|
|
|
if fp == nil then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
fp:write(body)
|
|
|
|
fp:flush()
|
|
|
|
fp:close()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.setConfData( self, config, site_config )
|
|
|
|
self.config = config
|
|
|
|
self.site_config = site_config
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.setParams( self, params )
|
|
|
|
self.params = params
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.is_min(self, ip1, ip2)
|
|
|
|
n = 0
|
|
|
|
for _,v in ipairs({1,2,3,4})
|
|
|
|
do
|
|
|
|
if ip1[v] == ip2[v] then
|
|
|
|
n = n + 1
|
|
|
|
elseif ip1[v] > ip2[v] then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.is_max(self,ip1,ip2)
|
|
|
|
n = 0
|
|
|
|
for _,v in ipairs({1,2,3,4})
|
|
|
|
do
|
|
|
|
if ip1[v] == ip2[v] then
|
|
|
|
n = n + 1
|
|
|
|
elseif ip1[v] < ip2[v] then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.split(self, str,reps )
|
|
|
|
local resultStrList = {}
|
|
|
|
string.gsub(str,'[^'..reps..']+',function(w)
|
|
|
|
table.insert(resultStrList,w)
|
|
|
|
end)
|
|
|
|
return resultStrList
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.arrip(self, ipstr)
|
|
|
|
if ipstr == 'unknown' then return {0,0,0,0} end
|
|
|
|
if string.find(ipstr,':') then return ipstr end
|
|
|
|
iparr = self:split(ipstr,'.')
|
|
|
|
iparr[1] = tonumber(iparr[1])
|
|
|
|
iparr[2] = tonumber(iparr[2])
|
|
|
|
iparr[3] = tonumber(iparr[3])
|
|
|
|
iparr[4] = tonumber(iparr[4])
|
|
|
|
return iparr
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.compare_ip(self,ips)
|
|
|
|
local ip = self.params["ip"]
|
|
|
|
local ipn = self.params["ipn"]
|
|
|
|
if ip == 'unknown' then return true end
|
|
|
|
if string.find(ip,':') then return false end
|
|
|
|
if not self:is_max(ipn,ips[2]) then return false end
|
|
|
|
if not self:is_min(ipn,ips[1]) then return false end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.to_json(self, msg)
|
|
|
|
return json.encode(msg)
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.return_message(self, status, msg)
|
|
|
|
ngx.header.content_type = "application/json;"
|
|
|
|
ngx.status = status
|
|
|
|
ngx.say(json.encode(msg))
|
|
|
|
ngx.exit(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.return_html(self,status,html)
|
|
|
|
ngx.header.content_type = "text/html"
|
|
|
|
ngx.status = status
|
|
|
|
ngx.say(html)
|
|
|
|
ngx.exit(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.read_file_body(self, filename)
|
|
|
|
|
|
|
|
local key = "file_config_"..filename
|
|
|
|
fbody = ngx.shared.limit:get(key, fbody)
|
|
|
|
if fbody then
|
|
|
|
return fbody
|
|
|
|
end
|
|
|
|
-- self:D("read_file_body:"..filename)
|
|
|
|
fp = io.open(filename, 'r')
|
|
|
|
if fp == nil then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
fbody = fp:read("*a")
|
|
|
|
fp:close()
|
|
|
|
if fbody == '' then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
ngx.shared.limit:set(key,fbody)
|
|
|
|
return fbody
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.read_file(self, name)
|
|
|
|
f = self.rpath .. name .. '.json'
|
|
|
|
local key = "read_file_"..name
|
|
|
|
fbody = ngx.shared.limit:get(key, fbody)
|
|
|
|
if fbody then
|
|
|
|
return fbody
|
|
|
|
end
|
|
|
|
-- self:D("read_file:"..name)
|
|
|
|
fbody = self:read_file_body(f)
|
|
|
|
if fbody == nil then
|
|
|
|
return {}
|
|
|
|
end
|
|
|
|
|
|
|
|
data = json.decode(fbody)
|
|
|
|
ngx.shared.limit:set(key,data)
|
|
|
|
return data
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.read_file_table( self, name )
|
|
|
|
return self:select_rule(self:read_file(name))
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.write_file(self, filename, body)
|
|
|
|
fp = io.open(filename,'ab')
|
|
|
|
if fp == nil then
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
fp:write(body)
|
|
|
|
fp:flush()
|
|
|
|
fp:close()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.write_file_clear(self, filename, body)
|
|
|
|
return write_file_clear(filename, body)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.write_drop_ip(self, is_drop, drop_time)
|
|
|
|
local filename = self.logdir .. 'drop_ip.log'
|
|
|
|
|
|
|
|
local fp = io.open(filename,'ab')
|
|
|
|
local server_name = self.params["server_name"]
|
|
|
|
local ip = self.params["server_name"]
|
|
|
|
local request_uri = self.params["request_uri"]
|
|
|
|
|
|
|
|
if fp == nil then return false end
|
|
|
|
local logtmp = {os.time(),ip,server_name,request_uri,drop_time,is_drop}
|
|
|
|
local logstr = json.encode(logtmp) .. "\n"
|
|
|
|
fp:write(logstr)
|
|
|
|
fp:flush()
|
|
|
|
fp:close()
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.write_to_file(self, logstr)
|
|
|
|
local server_name = self.params['server_name']
|
|
|
|
local filename = self.logdir .. '/' .. server_name .. '_' .. ngx.today() .. '.log'
|
|
|
|
self:write_file(filename, logstr)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.continue_key(self,key)
|
|
|
|
key = tostring(key)
|
|
|
|
if string.len(key) > 64 then return false end;
|
|
|
|
local keys = {"content","contents","body","msg","file","files","img","newcontent"}
|
|
|
|
for _,k in ipairs(keys)
|
|
|
|
do
|
|
|
|
if k == key then return false end;
|
|
|
|
end
|
|
|
|
return true;
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.array_len(self, arr)
|
|
|
|
if not arr then return 0 end
|
|
|
|
local count = 0
|
|
|
|
for _,v in ipairs(arr)
|
|
|
|
do
|
|
|
|
count = count + 1
|
|
|
|
end
|
|
|
|
return count
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.is_ipaddr(self, client_ip)
|
|
|
|
local cipn = self:split_bylog(client_ip,'.')
|
|
|
|
if self:array_len(cipn) < 4 then return false end
|
|
|
|
for _,v in ipairs({1,2,3,4})
|
|
|
|
do
|
|
|
|
local ipv = tonumber(cipn[v])
|
|
|
|
if ipv == nil then return false end
|
|
|
|
if ipv > 255 or ipv < 0 then return false end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.read_file_body_decode(self, filename)
|
|
|
|
return json.decode(self:read_file_body(filename))
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.select_rule(self, rules)
|
|
|
|
if not rules then return {} end
|
|
|
|
new_rules = {}
|
|
|
|
for i,v in ipairs(rules)
|
|
|
|
do
|
|
|
|
if v[1] == 1 then
|
|
|
|
table.insert(new_rules,v[2])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return new_rules
|
|
|
|
end
|
|
|
|
|
|
|
|
local function timer_at_inc_log(premature)
|
|
|
|
local total_path = cpath .. 'total.json'
|
|
|
|
local tbody = ngx.shared.limit:get(total_path)
|
|
|
|
if not tbody then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
return write_file_clear(total_path,tbody)
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.inc_log(self, name, rule)
|
|
|
|
|
|
|
|
local server_name = self.params['server_name']
|
|
|
|
local total_path = self.cpath .. 'total.json'
|
|
|
|
local tbody = ngx.shared.limit:get(total_path)
|
|
|
|
if not tbody then
|
|
|
|
tbody = self:read_file_body(total_path)
|
|
|
|
if not tbody then return false end
|
|
|
|
end
|
|
|
|
|
|
|
|
local total = json.decode(tbody)
|
|
|
|
|
|
|
|
-- 开始计算
|
|
|
|
if not total['sites'] then total['sites'] = {} end
|
|
|
|
if not total['sites'][server_name] then total['sites'][server_name] = {} end
|
|
|
|
if not total['sites'][server_name][name] then total['sites'][server_name][name] = 0 end
|
|
|
|
if not total['rules'] then total['rules'] = {} end
|
|
|
|
if not total['rules'][name] then total['rules'][name] = 0 end
|
|
|
|
if not total['total'] then total['total'] = 0 end
|
|
|
|
total['total'] = total['total'] + 1
|
|
|
|
total['sites'][server_name][name] = total['sites'][server_name][name] + 1
|
|
|
|
total['rules'][name] = total['rules'][name] + 1
|
|
|
|
|
|
|
|
local total_log = json.encode(total)
|
|
|
|
if not total_log then return false end
|
|
|
|
|
|
|
|
ngx.shared.limit:set(total_path,total_log)
|
|
|
|
|
|
|
|
-- 异步执行
|
|
|
|
-- ngx.timer.at(0, timer_at_inc_log)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
---------------------------------------------------
|
|
|
|
|
|
|
|
function _M.get_server_name(self)
|
|
|
|
local c_name = ngx.var.server_name
|
|
|
|
local my_name = ngx.shared.limit:get(c_name)
|
|
|
|
if my_name then return my_name end
|
|
|
|
local tmp = self:read_file_body(self.cpath .. 'domains.json')
|
|
|
|
if not tmp then return c_name end
|
|
|
|
local domains = json.decode(tmp)
|
|
|
|
for _,v in ipairs(domains)
|
|
|
|
do
|
|
|
|
for _,d_name in ipairs(v['domains'])
|
|
|
|
do
|
|
|
|
if c_name == d_name then
|
|
|
|
ngx.shared.limit:set(c_name,v['name'],3600)
|
|
|
|
return v['name']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return c_name
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _M.is_ngx_match_orgin(self,rule,match, sign)
|
|
|
|
if ngx_match(ngx.unescape_uri(match), rule,"isjo") then
|
|
|
|
error_rule = rule .. ' >> ' .. sign .. ':' .. match
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.ngx_match_string(self, rule, content,sign)
|
|
|
|
local t = self:is_ngx_match_orgin(rule, content, sign)
|
|
|
|
if t then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.ngx_match_list(self, rules, content)
|
|
|
|
for i,rule in ipairs(rules)
|
|
|
|
do
|
|
|
|
if rule[1] == 1 then
|
|
|
|
local t = self:is_ngx_match_orgin(rule[2], content, rule[3])
|
|
|
|
if t then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.is_ngx_match_ua(self, rules, content)
|
|
|
|
-- ngx.header.content_type = "text/html"
|
|
|
|
for i,rule in ipairs(rules)
|
|
|
|
do
|
|
|
|
-- 开启的规则,才匹配。
|
|
|
|
if rule[1] == 1 then
|
|
|
|
local t = self:is_ngx_match_orgin(rule[2], content, rule[3])
|
|
|
|
if t then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.is_ngx_match_post(self, rules, content)
|
|
|
|
for i,rule in ipairs(rules)
|
|
|
|
do
|
|
|
|
-- 开启的规则,才匹配。
|
|
|
|
if rule[1] == 1 then
|
|
|
|
local t = self:is_ngx_match_orgin(rule[2],content, rule[3])
|
|
|
|
if t then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.is_ngx_match(self, rules, sbody, rule_name)
|
|
|
|
if rules == nil or sbody == nil then return false end
|
|
|
|
if type(sbody) == "string" then
|
|
|
|
sbody = {sbody}
|
|
|
|
end
|
|
|
|
|
|
|
|
if type(rules) == "string" then
|
|
|
|
rules = {rules}
|
|
|
|
end
|
|
|
|
|
|
|
|
for k,body in pairs(sbody)
|
|
|
|
do
|
|
|
|
if self:continue_key(k) then
|
|
|
|
for i,rule in ipairs(rules)
|
|
|
|
do
|
|
|
|
if self.site_config[server_name] and rule_name then
|
|
|
|
local n = i - 1
|
|
|
|
for _,j in ipairs(self.site_config[server_name]['disable_rule'][rule_name])
|
|
|
|
do
|
|
|
|
if n == j then
|
|
|
|
rule = ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if body and rule ~="" then
|
|
|
|
if type(body) == "string" then
|
|
|
|
if ngx_match(ngx.unescape_uri(body),rule,"isjo") then
|
|
|
|
error_rule = rule .. ' >> ' .. k .. ':' .. body
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if type(k) == "string" then
|
|
|
|
if ngx_match(ngx.unescape_uri(k),rule,"isjo") then
|
|
|
|
error_rule = rule .. ' >> ' .. k
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.write_log(self, name, rule)
|
|
|
|
|
|
|
|
local ip = self.params['ip']
|
|
|
|
local retry = self.config['retry']['retry']
|
|
|
|
local retry_time = self.config['retry']['retry_time']
|
|
|
|
local retry_cycle = self.config['retry']['retry_cycle']
|
|
|
|
|
|
|
|
local count, _ = ngx.shared.drop_ip:get(ip)
|
|
|
|
if count then
|
|
|
|
ngx.shared.drop_ip:incr(ip,1)
|
|
|
|
else
|
|
|
|
ngx.shared.drop_ip:set(ip,1,retry_cycle)
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.config['log'] ~= true or self:is_site_config('log') ~= true then return false end
|
|
|
|
local method = ngx.req.get_method()
|
|
|
|
if error_rule then
|
|
|
|
rule = error_rule
|
|
|
|
error_rule = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
local logtmp = {ngx.localtime(), ip, method, ngx.var.request_uri, ngx.var.http_user_agent, name, rule}
|
|
|
|
local logstr = json.encode(logtmp) .. "\n"
|
|
|
|
local count,_ = ngx.shared.drop_ip:get(ip)
|
|
|
|
if count > retry and name ~= 'cc' then
|
|
|
|
local safe_count,_ = ngx.shared.drop_sum:get(ip)
|
|
|
|
if not safe_count then
|
|
|
|
ngx.shared.drop_sum:set(ip,1,86400)
|
|
|
|
safe_count = 1
|
|
|
|
else
|
|
|
|
ngx.shared.drop_sum:incr(ip,1)
|
|
|
|
end
|
|
|
|
local lock_time = retry_time * safe_count
|
|
|
|
if lock_time > 86400 then lock_time = 86400 end
|
|
|
|
logtmp = {ngx.localtime(),ip,method,ngx.var.request_uri, ngx.var.http_user_agent,name,retry_cycle .. '秒以内累计超过'..retry..'次以上非法请求,封锁'.. lock_time ..'秒'}
|
|
|
|
logstr = logstr .. json.encode(logtmp) .. "\n"
|
|
|
|
ngx.shared.drop_ip:set(ip,retry+1,lock_time)
|
|
|
|
self:write_drop_ip('inc',lock_time)
|
|
|
|
end
|
|
|
|
self:write_to_file(logstr)
|
|
|
|
self:inc_log(name,rule)
|
|
|
|
end
|
|
|
|
|
|
|
|
local ffi = require("ffi")
|
|
|
|
ffi.cdef[[
|
|
|
|
struct timeval {
|
|
|
|
long int tv_sec;
|
|
|
|
long int tv_usec;
|
|
|
|
};
|
|
|
|
int gettimeofday(struct timeval *tv, void *tz);
|
|
|
|
]];
|
|
|
|
local tm = ffi.new("struct timeval");
|
|
|
|
|
|
|
|
-- 返回微秒级时间戳
|
|
|
|
function _M.current_time_millis()
|
|
|
|
ffi.C.gettimeofday(tm,nil);
|
|
|
|
local sec = tonumber(tm.tv_sec);
|
|
|
|
local usec = tonumber(tm.tv_usec);
|
|
|
|
return sec + usec * 10^-6;
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.bench(self, limit, sign, call)
|
|
|
|
local func_start = self.current_time_millis()
|
|
|
|
for i=1,limit do
|
|
|
|
call()
|
|
|
|
end
|
|
|
|
local func_end = self.current_time_millis()
|
|
|
|
local cos = func_end - func_start
|
|
|
|
|
|
|
|
self:D("["..sign.."][start]:"..tostring(func_start))
|
|
|
|
self:D("["..sign.."][end]:"..tostring(func_end))
|
|
|
|
self:D("cos["..sign.."]:"..tostring(cos))
|
|
|
|
end
|
|
|
|
|
|
|
|
-- 测试方法保留
|
|
|
|
function _M.split_bylog_debug(self, str,reps)
|
|
|
|
local resultStrList = {}
|
|
|
|
|
|
|
|
self:bench(1000000, "string.gsub",function()
|
|
|
|
string.gsub(str,'[^'..reps..']+', function(w)
|
|
|
|
table.insert(resultStrList,w)
|
|
|
|
return w
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- string.gsub(str,'[^'..reps..']+', function(w)
|
|
|
|
-- table.insert(resultStrList,w)
|
|
|
|
-- end)
|
|
|
|
|
|
|
|
self:bench(1000000, "ngx.re.gsub" ,function()
|
|
|
|
ngx.re.gsub(str,'[^'..reps..']+', function(w)
|
|
|
|
table.insert(resultStrList,w[0])
|
|
|
|
return w
|
|
|
|
end, "ijo")
|
|
|
|
end)
|
|
|
|
|
|
|
|
return resultStrList
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.split_bylog(self, str,reps)
|
|
|
|
local resultStrList = {}
|
|
|
|
string.gsub(str,'[^'..reps..']+', function(w)
|
|
|
|
table.insert(resultStrList,w)
|
|
|
|
end)
|
|
|
|
return resultStrList
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.get_real_ip(self, server_name)
|
|
|
|
local client_ip = "unknown"
|
|
|
|
local site_config = self.site_config
|
|
|
|
if site_config[server_name] then
|
|
|
|
if site_config[server_name]['cdn'] then
|
|
|
|
local request_header = ngx.req.get_headers()
|
|
|
|
for _,v in ipairs(self.site_config[server_name]['cdn_header'])
|
|
|
|
do
|
|
|
|
if request_header[v] ~= nil and request_header[v] ~= "" then
|
|
|
|
local header_tmp = request_header[v]
|
|
|
|
if type(header_tmp) == "table" then header_tmp = header_tmp[1] end
|
|
|
|
client_ip = self:split_bylog(header_tmp,',')[1]
|
|
|
|
-- return client_ip
|
|
|
|
break;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- ipv6
|
|
|
|
if type(client_ip) == 'table' then client_ip = "" end
|
|
|
|
if client_ip ~= "unknown" and ngx.re.match(client_ip,"^([a-fA-F0-9]*):") then
|
|
|
|
return client_ip
|
|
|
|
end
|
|
|
|
|
|
|
|
-- ipv4
|
|
|
|
if not ngx.re.match(client_ip,"\\d+\\.\\d+\\.\\d+\\.\\d+") == nil or not self:is_ipaddr(client_ip) then
|
|
|
|
client_ip = ngx.var.remote_addr
|
|
|
|
if client_ip == nil then
|
|
|
|
client_ip = "unknown"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return client_ip
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.is_site_config(self,cname)
|
|
|
|
if self.site_config[server_name] ~= nil then
|
|
|
|
if cname == 'cc' then
|
|
|
|
return self.site_config[server_name][cname]['open']
|
|
|
|
else
|
|
|
|
return self.site_config[server_name][cname]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
function _M.get_boundary(self)
|
|
|
|
local header = self.params["request_header"]["content-type"]
|
|
|
|
if not header then return nil end
|
|
|
|
if type(header) == "table" then
|
|
|
|
header = header[1]
|
|
|
|
end
|
|
|
|
|
|
|
|
local m = string.match(header, ";%s*boundary=\"([^\"]+)\"")
|
|
|
|
if m then
|
|
|
|
return m
|
|
|
|
end
|
|
|
|
return string.match(header, ";%s*boundary=([^\",;]+)")
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.return_post_data(self)
|
|
|
|
if method ~= "POST" then return false end
|
|
|
|
content_length = tonumber(self.params["request_header"]['content-length'])
|
|
|
|
if not content_length then return false end
|
|
|
|
max_len = 2560 * 1024000
|
|
|
|
if content_length > max_len then return false end
|
|
|
|
local boundary = self:get_boundary()
|
|
|
|
if boundary then
|
|
|
|
ngx.req.read_body()
|
|
|
|
local data = ngx.req.get_body_data()
|
|
|
|
if not data then return false end
|
|
|
|
local tmp = ngx.re.match(data,[[filename=\"(.+)\.(.*)\"]])
|
|
|
|
if not tmp then return false end
|
|
|
|
if not tmp[2] then return false end
|
|
|
|
return tmp[2]
|
|
|
|
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function _M.t(self)
|
|
|
|
ngx.say(',,,')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
return _M
|