-- Copyright 2014 Christian Schoenebeck -- Licensed to the public under the Apache License 2.0. module("luci.tools.ddns", package.seeall) local NX = require "nixio" local NXFS = require "nixio.fs" local OPKG = require "luci.model.ipkg" local UCI = require "luci.model.uci" local SYS = require "luci.sys" local UTIL = require "luci.util" -- function to calculate seconds from given interval and unit function calc_seconds(interval, unit) if not tonumber(interval) then return nil elseif unit == "days" then return (tonumber(interval) * 86400) -- 60 sec * 60 min * 24 h elseif unit == "hours" then return (tonumber(interval) * 3600) -- 60 sec * 60 min elseif unit == "minutes" then return (tonumber(interval) * 60) -- 60 sec elseif unit == "seconds" then return tonumber(interval) else return nil end end -- check if IPv6 supported by OpenWrt function check_ipv6() return NXFS.access("/proc/net/ipv6_route") and NXFS.access("/usr/sbin/ip6tables") end -- check if Wget with SSL support or cURL installed function check_ssl() if (SYS.call([[ grep -i "\+ssl" /usr/bin/wget >/dev/null 2>&1 ]]) == 0) then return true else return NXFS.access("/usr/bin/curl") end end -- check if Wget with SSL or cURL with proxy support installed function check_proxy() -- we prefere GNU Wget for communication if (SYS.call([[ grep -i "\+ssl" /usr/bin/wget >/dev/null 2>&1 ]]) == 0) then return true -- if not installed cURL must support proxy elseif NXFS.access("/usr/bin/curl") then return (SYS.call([[ grep -i all_proxy /usr/lib/libcurl.so* >/dev/null 2>&1 ]]) == 0) -- only BusyBox Wget is installed else return NXFS.access("/usr/bin/wget") end end -- check if BIND host installed function check_bind_host() return NXFS.access("/usr/bin/host") end -- convert epoch date to given format function epoch2date(epoch, format) if not format or #format < 2 then local uci = UCI.cursor() format = uci:get("ddns", "global", "date_format") or "%F %R" uci:unload("ddns") end format = format:gsub("%%n", "
") -- replace newline format = format:gsub("%%t", " ") -- replace tab return os.date(format, epoch) end -- read lastupdate from [section].update file function get_lastupd(section) local uci = UCI.cursor() local run_dir = uci:get("ddns", "global", "run_dir") or "/var/run/ddns" local etime = tonumber(NXFS.readfile("%s/%s.update" % { run_dir, section } ) or 0 ) uci:unload("ddns") return etime end -- read PID from run file and verify if still running function get_pid(section) local uci = UCI.cursor() local run_dir = uci:get("ddns", "global", "run_dir") or "/var/run/ddns" local pid = tonumber(NXFS.readfile("%s/%s.pid" % { run_dir, section } ) or 0 ) if pid > 0 and not NX.kill(pid, 0) then pid = 0 end uci:unload("ddns") return pid end -- compare versions using "<=" "<" ">" ">=" "=" "<<" ">>" function ipkg_ver_compare(ver1, comp, ver2) if not ver1 or not (#ver1 > 0) or not ver2 or not (#ver2 > 0) or not comp or not (#comp > 0) then return nil end -- correct compare string if comp == "<>" or comp == "><" or comp == "!=" or comp == "~=" then comp = "~=" elseif comp == "<=" or comp == "<" or comp == "=<" then comp = "<=" elseif comp == ">=" or comp == ">" or comp == "=>" then comp = ">=" elseif comp == "=" or comp == "==" then comp = "==" elseif comp == "<<" then comp = "<" elseif comp == ">>" then comp = ">" else return nil end local av1 = UTIL.split(ver1, "[%.%-]", nil, true) local av2 = UTIL.split(ver2, "[%.%-]", nil, true) for i = 1, math.max(table.getn(av1),table.getn(av2)), 1 do local s1 = av1[i] or "" local s2 = av2[i] or "" local n1 = tonumber(s1) local n2 = tonumber(s2) -- one numeric and other empty string then set other to 0 if n1 and not n2 and (not s2 or #s2 == 0) then n2 = 0 end if n2 and not n1 and (not s1 or #s1 == 0) then n1 = 0 end local nc = (n1 and n2) -- numeric compare if nc then -- first "not equal" found return true if comp == "~=" and (n1 ~= n2) then return true end -- first "lower" found return true if (comp == "<" or comp == "<=") and (n1 < n2) then return true end -- first "greater" found return true if (comp == ">" or comp == ">=") and (n1 > n2) then return true end -- not equal then return false if (n1 ~= n2) then return false end else if comp == "~=" and (s1 ~= s2) then return true end if (comp == "<" or comp == "<=") and (s1 < s2) then return true end if (comp == ">" or comp == ">=") and (s1 > s2) then return true end if (s1 ~= s2) then return false end end end -- all equal then true return true end -- read version information for given package if installed function ipkg_ver_installed(pkg) local version = nil local control = io.open("/usr/lib/opkg/info/%s.control" % pkg, "r") if control then local ln repeat ln = control:read("*l") if ln and ln:match("^Version: ") then version = ln:gsub("^Version: ", "") break end until not ln control:close() end return version end -- replacement of build-in read of UCI option -- modified AbstractValue.cfgvalue(self, section) from cbi.lua -- needed to read from other option then current value definition function read_value(self, section, option) local value if self.tag_error[section] then value = self:formvalue(section) else value = self.map:get(section, option) end if not value then return nil elseif not self.cast or self.cast == type(value) then return value elseif self.cast == "string" then if type(value) == "table" then return value[1] end elseif self.cast == "table" then return { value } end end -- replacement of build-in Flag.parse of cbi.lua -- modified to mark section as changed if value changes -- current parse did not do this, but it is done AbstaractValue.parse() function flag_parse(self, section) local fexists = self.map:formvalue( luci.cbi.FEXIST_PREFIX .. self.config .. "." .. section .. "." .. self.option) if fexists then local fvalue = self:formvalue(section) and self.enabled or self.disabled local cvalue = self:cfgvalue(section) if fvalue ~= self.default or (not self.optional and not self.rmempty) then self:write(section, fvalue) else self:remove(section) end if (fvalue ~= cvalue) then self.section.changed = true end else self:remove(section) self.section.changed = true end end ----------------------------------------------------------------------------- -- copied from https://svn.nmap.org/nmap/nselib/url.lua -- @author Diego Nehab -- @author Eddie Bell --[[ URI parsing, composition and relative URL resolution LuaSocket toolkit. Author: Diego Nehab RCS ID: $Id: url.lua,v 1.37 2005/11/22 08:33:29 diego Exp $ parse_query and build_query added For nmap (Eddie Bell ) ]]-- --- -- Parses a URL and returns a table with all its parts according to RFC 2396. -- -- The following grammar describes the names given to the URL parts. -- -- ::= :///;?# -- ::= @: -- ::= [:] -- :: = {/} -- -- -- The leading / in / is considered part of -- . -- @param url URL of request. -- @param default Table with default values for each field. -- @return A table with the following fields, where RFC naming conventions have -- been preserved: -- scheme, authority, userinfo, -- user, password, host, -- port, path, params, -- query, and fragment. ----------------------------------------------------------------------------- function parse_url(url) --, default) -- initialize default parameters local parsed = {} -- for i,v in base.pairs(default or parsed) do -- parsed[i] = v -- end -- remove whitespace -- url = string.gsub(url, "%s", "") -- get fragment url = string.gsub(url, "#(.*)$", function(f) parsed.fragment = f return "" end) -- get scheme. Lower-case according to RFC 3986 section 3.1. url = string.gsub(url, "^([%w][%w%+%-%.]*)%:", function(s) parsed.scheme = string.lower(s); return "" end) -- get authority url = string.gsub(url, "^//([^/]*)", function(n) parsed.authority = n return "" end) -- get query stringing url = string.gsub(url, "%?(.*)", function(q) parsed.query = q return "" end) -- get params url = string.gsub(url, "%;(.*)", function(p) parsed.params = p return "" end) -- path is whatever was left parsed.path = url local authority = parsed.authority if not authority then return parsed end authority = string.gsub(authority,"^([^@]*)@", function(u) parsed.userinfo = u; return "" end) authority = string.gsub(authority, ":([0-9]*)$", function(p) if p ~= "" then parsed.port = p end; return "" end) if authority ~= "" then parsed.host = authority end local userinfo = parsed.userinfo if not userinfo then return parsed end userinfo = string.gsub(userinfo, ":([^:]*)$", function(p) parsed.password = p; return "" end) parsed.user = userinfo return parsed end