Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/op_waf/waf/lua/common.lua

782 lines
20 KiB

6 years ago
6 years ago
local setmetatable = setmetatable
local _M = { _VERSION = '0.02' }
6 years ago
local mt = { __index = _M }
6 years ago
local json = require "cjson"
3 years ago
local sqlite3 = require "lsqlite3"
6 years ago
3 years ago
local ngx_match = ngx.re.find
local debug_mode = false
local waf_root = "{$WAF_ROOT}"
local cpath = waf_root.."/waf/"
3 years ago
local log_dir = waf_root.."/logs/"
local rpath = cpath.."/rule/"
function _M.new(self)
6 years ago
local self = {
waf_root = waf_root,
cpath = cpath,
rpath = rpath,
3 years ago
logdir = log_dir,
config = '',
site_config = '',
3 years ago
server_name = '',
3 years ago
global_tatal = nil,
params = nil,
6 years ago
}
return setmetatable(self, mt)
6 years ago
end
3 years ago
function _M.getInstance(self)
if rawget(self, "instance") == nil then
3 years ago
rawset(self, "instance", self:new())
if 0 == ngx.worker.id() then
self:cron()
end
3 years ago
end
assert(self.instance ~= nil)
return self.instance
end
3 years ago
function _M.initDB(self)
local path = log_dir .. "/waf.db"
db, err = sqlite3.open(path)
if err then
self:D("initDB err:"..tostring(err))
return nil
end
db:exec([[PRAGMA synchronous = 0]])
db:exec([[PRAGMA cache_size = 8000]])
db:exec([[PRAGMA page_size = 32768]])
db:exec([[PRAGMA journal_mode = wal]])
db:exec([[PRAGMA journal_size_limit = 1073741824]])
3 years ago
return db
3 years ago
end
-- 后台任务
function _M.cron(self)
local timer_every_get_data = function (premature)
self.clean_log()
end
ngx.timer.every(10, timer_every_get_data)
3 years ago
local timer_every_import_data = function (premature)
local llen, _ = ngx.shared.waf_limit:llen('waf_limit_logs')
if llen == 0 then
return true
end
local db = self:initDB()
db:exec([[BEGIN TRANSACTION]])
3 years ago
local stmt2 = db:prepare[[INSERT INTO logs(time, ip, domain, server_name, method, status_code, uri, user_agent, rule_name, reason)
VALUES(:time, :ip, :domain, :server_name, :method, :status_code, :uri, :user_agent, :rule_name, :reason)]]
if not stmt2 then
self:D("waf timer db:prepare fail!:"..tostring(stmt2))
return false
end
3 years ago
for i=1,llen do
local data, _ = ngx.shared.waf_limit:lpop('waf_limit_logs')
-- self:D("waf_limit_logs:"..data)
if not data then
break
end
local info = json.decode(data)
stmt2:bind_names{
time=info["time"],
ip=info["ip"],
domain=info["server_name"],
server_name=info["server_name"],
method=info["method"],
status_code=info["status_code"],
user_agent=info["user_agent"],
uri=info["request_uri"],
rule_name=info['rule_name'],
reason=info['reason']
}
local res, err = stmt2:step()
if tostring(res) == "5" then
self:D("waf the step database connection is busy, so it will be stored later.")
3 years ago
return false
end
stmt2:reset()
end
local res, err = db:execute([[COMMIT]])
if db and db:isopen() then
db:close()
end
end
ngx.timer.every(0.5, timer_every_import_data)
end
function _M.clean_log(self)
local db = self:initDB()
local now_date = os.date("*t")
local save_day = 90
local save_date_timestamp = os.time{year=now_date.year,
month=now_date.month, day=now_date.day-save_day, hour=0}
-- delete expire data
db:exec("DELETE FROM web_logs WHERE time<"..tostring(save_date_timestamp))
end
3 years ago
function _M.log(self, args, rule_name, reason)
3 years ago
args["rule_name"] = rule_name
args["reason"] = reason
local push_data = json.encode(args)
3 years ago
ngx.shared.waf_limit:rpush("waf_limit_logs", push_data)
-- self:D("push_data:"..push_data)
3 years ago
-- local db = self:initDB()
-- local stmt2 = db:prepare[[INSERT INTO logs(time, ip, domain, server_name, method, status_code, uri, user_agent, rule_name, reason)
-- VALUES(:time, :ip, :domain, :server_name, :method, :status_code, :uri, :user_agent, :rule_name, :reason)]]
-- db:exec([[BEGIN TRANSACTION]])
-- stmt2:bind_names{
-- time=args["time"],
-- ip=args["ip"],
-- domain=args["server_name"],
-- server_name=args["server_name"],
-- method=args["method"],
-- status_code=args["status_code"],
-- user_agent=args["user_agent"],
-- uri=args["request_uri"],
-- rule_name=rule_name,
-- reason=reason
-- }
-- local res, err = stmt2:step()
-- -- self:D("LOG[1]:"..tostring(res)..":"..tostring(err))
-- if tostring(res) == "5" then
-- self.D("waf the step database connection is busy, so it will be stored later.")
-- return false
-- end
-- stmt2:reset()
-- local res, err = db:execute([[COMMIT]])
-- -- self:D("LOG[2]:"..tostring(res)..":"..tostring(err))
-- if db and db:isopen() then
-- db:close()
-- end
-- return true
end
3 years ago
3 years ago
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
3 years ago
-- 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
3 years ago
function _M.is_working(self,sign)
local work_status = ngx.shared.waf_limit:get(sign.."_working")
if work_status ~= nil and work_status == true then
return true
end
return false
end
function _M.lock_working(self, sign)
local working_key = sign.."_working"
ngx.shared.waf_limit:set(working_key, true, 60)
end
function _M.unlock_working(self, sign)
local working_key = sign.."_working"
ngx.shared.waf_limit:set(working_key, false)
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
6 years ago
function _M.setConfData( self, config, site_config )
self.config = config
self.site_config = site_config
6 years ago
end
function _M.setParams( self, params )
self.params = params
end
6 years ago
function _M.is_min(self, ip1, ip2)
6 years ago
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
6 years ago
end
6 years ago
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
6 years ago
6 years ago
function _M.split(self, str,reps )
3 years ago
local rsList = {}
6 years ago
string.gsub(str,'[^'..reps..']+',function(w)
3 years ago
table.insert(rsList,w)
6 years ago
end)
3 years ago
return rsList
6 years ago
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
6 years ago
3 years ago
function _M.to_json(self, msg)
return json.encode(msg)
end
3 years ago
function _M.return_state(status,msg)
result = {}
result['status'] = status
result['msg'] = msg
return result
end
6 years ago
function _M.return_message(self, status, msg)
3 years ago
ngx.header.content_type = "application/json"
3 years ago
local data = self:return_state(status, msg)
3 years ago
ngx.say(json.encode(data))
ngx.exit(200)
6 years ago
end
function _M.return_html(self, status, html)
6 years ago
ngx.header.content_type = "text/html"
3 years ago
status = tonumber(status)
-- self:D("return_html:"..tostring(status))
3 years ago
if status == 200 then
ngx.say(html)
end
6 years ago
ngx.exit(status)
end
6 years ago
function _M.read_file_body(self, filename)
6 years ago
fp = io.open(filename, 'r')
if fp == nil then
6 years ago
return nil
end
3 years ago
local fbody = fp:read("*a")
6 years ago
fp:close()
if fbody == '' then
return nil
end
6 years ago
return fbody
6 years ago
end
3 years ago
function _M.read_file(self, name)
f = self.rpath .. name .. '.json'
3 years ago
local fbody = self:read_file_body(f)
3 years ago
if fbody == nil then
return {}
end
3 years ago
local data = json.decode(fbody)
3 years ago
return data
end
6 years ago
3 years ago
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
3 years ago
end
3 years ago
return new_rules
end
3 years ago
3 years ago
function _M.read_file_table( self, name )
return self:select_rule(self:read_file(name))
end
function _M.read_file_body_decode(self, name)
return json.decode(self:read_file_body(name))
3 years ago
end
6 years ago
function _M.write_file(self, filename, body)
6 years ago
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)
6 years ago
end
3 years ago
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
3 years ago
-- 是否文件迁入数据库中
function _M.is_migrating(self)
local migrating = self.waf_root +"/migrating"
local file = io.open(migrating, "rb")
if file then return true end
return false
end
6 years ago
6 years ago
function _M.continue_key(self,key)
key = tostring(key)
if string.len(key) > 64 then return false end;
3 years ago
local keys = { "content", "contents", "body", "msg", "file", "files", "img", "newcontent" }
6 years ago
for _,k in ipairs(keys)
do
if k == key then return false end;
end
return true;
end
6 years ago
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)
3 years ago
local cipn = self:split(client_ip,'.')
6 years ago
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
3 years ago
-- 定时异步同步统计信息
function _M.timer_stats_total(self)
local total_path = self.cpath .. 'total.json'
local total = ngx.shared.waf_limit:get(total_path)
if not total then
return false
end
3 years ago
return self:write_file_clear(total_path,total)
end
3 years ago
function _M.stats_total(self, name, rule)
6 years ago
local server_name = self.params['server_name']
3 years ago
local total_path = cpath .. 'total.json'
local total = ngx.shared.waf_limit:get(total_path)
if not total then
local tbody = self:read_file_body(total_path)
total = json.decode(tbody)
else
total = json.decode(total)
6 years ago
end
3 years ago
if not total then return false end
-- 开始计算
6 years ago
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
3 years ago
ngx.shared.waf_limit:set(total_path,json.encode(total))
-- 异步执行
3 years ago
-- 现在改再init_workder.lua 定时执行
3 years ago
-- ngx.timer.every(3, timer_stats_total_log)
6 years ago
end
3 years ago
-- 获取配置域名
function _M.get_sn(self, config_domains)
local request_name = ngx.var.server_name
local cache_name = ngx.shared.waf_limit:get(request_name)
if cache_name then return cache_name end
6 years ago
3 years ago
for _,v in ipairs(config_domains)
6 years ago
do
3 years ago
for _,cd_name in ipairs(v['domains'])
6 years ago
do
3 years ago
if request_name == cd_name then
ngx.shared.waf_limit:set(request_name,v['name'],86400)
6 years ago
return v['name']
end
end
end
3 years ago
return request_name
6 years ago
end
3 years ago
function _M.get_random(self,n)
math.randomseed(ngx.time())
local t = {
"0","1","2","3","4","5","6","7","8","9",
"a","b","c","d","e","f","g","h","i","j",
"k","l","m","n","o","p","q","r","s","t",
"u","v","w","x","y","z",
"A","B","C","D","E","F","G","H","I","J",
"K","L","M","N","O","P","Q","R","S","T",
"U","V","W","X","Y","Z",
}
local s = ""
for i =1, n do
s = s .. t[math.random(#t)]
end
return s
end
6 years ago
6 years ago
3 years ago
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
3 years ago
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
3 years ago
function _M.ngx_match_list(self, rules, content)
3 years ago
local args_type = type(content)
3 years ago
for i,rule in ipairs(rules)
do
if rule[1] == 1 then
3 years ago
if args_type == 'string' then
-- self:D("string: "..tostring(rule[2])..":".. tostring(content)..":"..tostring(rule[3]))
3 years ago
local t = self:is_ngx_match_orgin(rule[2], content, rule[3])
if t then
return true
end
end
3 years ago
if args_type == 'table' then
for _,arg_v in pairs(content) do
-- self:D("table : "..tostring(rule[2])..":".. tostring(arg_v)..":"..tostring(rule[3]))
3 years ago
local t = self:is_ngx_match_orgin(rule[2], arg_v, rule[3])
if t then
return true
end
end
3 years ago
end
3 years ago
3 years ago
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
6 years ago
function _M.write_log(self, name, rule)
3 years ago
local config = self.config
3 years ago
local params = self.params
3 years ago
local ip = params['ip']
local ngx_time = ngx.time()
3 years ago
local retry = config['retry']['retry']
local retry_time = config['retry']['retry_time']
local retry_cycle = config['retry']['retry_cycle']
6 years ago
3 years ago
local count = ngx.shared.waf_drop_ip:get(ip)
6 years ago
if count then
3 years ago
ngx.shared.waf_drop_ip:incr(ip, 1)
6 years ago
else
3 years ago
ngx.shared.waf_drop_ip:set(ip, 1, retry_cycle)
6 years ago
end
3 years ago
3 years ago
if config['log'] ~= true or self:is_site_config('log') ~= true then return false end
3 years ago
local method = params['method']
6 years ago
if error_rule then
rule = error_rule
error_rule = nil
end
3 years ago
local count = ngx.shared.waf_drop_ip:get(ip)
3 years ago
-- self:D("write_log; count:" ..tostring(count).. ",retry:" .. tostring(retry) )
3 years ago
if (count > retry and name ~= 'cc') then
3 years ago
local safe_count,_ = ngx.shared.waf_drop_sum:get(ip)
6 years ago
if not safe_count then
3 years ago
ngx.shared.waf_drop_sum:set(ip, 1, 86400)
6 years ago
safe_count = 1
else
3 years ago
ngx.shared.waf_drop_sum:incr(ip, 1)
6 years ago
end
local lock_time = retry_time * safe_count
if lock_time > 86400 then lock_time = 86400 end
3 years ago
3 years ago
retry_times = retry + 1
ngx.shared.waf_drop_ip:set(ip, retry_times, lock_time)
3 years ago
local reason = retry_cycle .. '秒以内累计超过'..retry..'次以上非法请求,封锁'.. lock_time ..''
self:log(params, name, reason)
3 years ago
elseif name ~= 'cc' then
self:log(params, name, rule)
6 years ago
end
3 years ago
self:stats_total(name, rule)
end
3 years ago
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()
3 years ago
for _,v in ipairs(site_config[server_name]['cdn_header'])
3 years ago
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
3 years ago
client_ip = self:split(header_tmp,',')[1]
-- return client_ip
3 years ago
break;
end
end
end
end
3 years ago
3 years ago
-- 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
3 years ago
return client_ip
3 years ago
end
3 years ago
-- ipv4
if not ngx.re.match(client_ip,"\\d+\\.\\d+\\.\\d+\\.\\d+") == nil or not self:is_ipaddr(client_ip) then
6 years ago
client_ip = ngx.var.remote_addr
if client_ip == nil then
client_ip = "unknown"
end
end
return client_ip
end
6 years ago
function _M.is_site_config(self,cname)
3 years ago
local site_config = self.site_config
if site_config[server_name] ~= nil then
6 years ago
if cname == 'cc' then
3 years ago
return site_config[server_name][cname]['open']
6 years ago
else
3 years ago
return site_config[server_name][cname]
6 years ago
end
end
return true
end
6 years ago
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
3 years ago
function _M.is_key(self, arr, key)
for _,v in ipairs(arr) do
if v == key then
return true
end
end
return false
end
6 years ago
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
6 years ago
6 years ago
function _M.t(self)
ngx.say(',,,')
end
return _M