From 3eabe5eb522aefe2e2e2bc3d9ba47d681dcd1d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= Date: Sun, 27 Mar 2022 10:47:19 +0200 Subject: [PATCH] refactor static-ip to match babel settings --- package/gluon-static-ip/check_site.lua | 12 +++++++----- .../luasrc/lib/gluon/upgrade/540-static-ip | 12 ++++++------ .../lib/gluon/config-mode/model/admin/staticip.lua | 14 +++++++------- 3 files changed, 20 insertions(+), 18 deletions(-) diff --git a/package/gluon-static-ip/check_site.lua b/package/gluon-static-ip/check_site.lua index 40e491b4..534e1822 100644 --- a/package/gluon-static-ip/check_site.lua +++ b/package/gluon-static-ip/check_site.lua @@ -1,6 +1,8 @@ --- TODO: conditional range required when tmp set +if need_string({'node_prefix4'}, false) then -- optional + need_number({'node_prefix4_range'}, true) + need_boolean({'node_prefix4_temporary'}, false) +end -need_string({'tmpIp4'}, false) -need_number({'tmpIp4Range'}, false) -need_string({'tmpIp6'}, false) -need_number({'tmpIp6Range'}, false) +need_string({'node_prefix6'}, true) -- always required +need_number({'node_prefix6_range'}, false) +need_boolean({'node_prefix6_temporary'}, false) diff --git a/package/gluon-static-ip/luasrc/lib/gluon/upgrade/540-static-ip b/package/gluon-static-ip/luasrc/lib/gluon/upgrade/540-static-ip index 9ba71b2e..c9d44fd6 100755 --- a/package/gluon-static-ip/luasrc/lib/gluon/upgrade/540-static-ip +++ b/package/gluon-static-ip/luasrc/lib/gluon/upgrade/540-static-ip @@ -64,11 +64,11 @@ local function static_ip(name, ifname, macaddr, actually_use) local static6 = uci:get('gluon-static-ip', name, 'ip6') if site.prefix4() then - if not static4 and site.tmpIp4() and name ~= 'loopback' then - local tmp4 = ip.new(site.tmpIp4()) + if not static4 and site.node_prefix4() and name ~= 'loopback' then + local tmp4 = ip.new(site.node_prefix4()) -- magic that turns mac into random number - local ipnum = ipnum(macaddr, IPV4_PREFIX_MAX - site.tmpIp4Range()) + local ipnum = ipnum(macaddr, IPV4_PREFIX_MAX - site.node_prefix4_range()) -- the rare case where we get 0 or 1 as our mac based number if ipnum < 2 then @@ -80,11 +80,11 @@ local function static_ip(name, ifname, macaddr, actually_use) end if site.prefix6() then - if not static6 and site.tmpIp6() and (site.tmpIp6Everywhere() or name == 'loopback') then - local tmp6 = ip.new(site.tmpIp6()) + if not static6 and site.node_prefix6() and (site.tmpIp6Everywhere() or name == 'loopback') then + local tmp6 = ip.new(site.node_prefix6()) -- magic that turns mac into random number - local ipnum = ipnum(macaddr, IPV6_PREFIX_MAX - site.tmpIp6Range(), true) + local ipnum = ipnum(macaddr, IPV6_PREFIX_MAX - site.node_prefix6_range(64), true) -- the rare case where we get 0 or 1 as our mac based number if tonumber(ipnum:gsub(':', ''), 16) < 2 then diff --git a/package/gluon-web-static-ip/luasrc/lib/gluon/config-mode/model/admin/staticip.lua b/package/gluon-web-static-ip/luasrc/lib/gluon/config-mode/model/admin/staticip.lua index bb58f804..eb5b2308 100644 --- a/package/gluon-web-static-ip/luasrc/lib/gluon/config-mode/model/admin/staticip.lua +++ b/package/gluon-web-static-ip/luasrc/lib/gluon/config-mode/model/admin/staticip.lua @@ -38,8 +38,8 @@ local function intf_setting(intf, desc, enabled) if site.prefix4() and intf ~= 'loopback' then local v4addr = uci:get('gluon-static-ip', intf, 'ip4') - if site.tmpIp4() and v4addr then - local tmp = ip.new(site.tmpIp4(), site.tmpIp4Range()) + if site.node_prefix4() and v4addr and site.node_prefix4_temporary() then + local tmp = ip.new(site.node_prefix4(), site.node_prefix4()) local isTmp = tmp:contains(ip.new(v4addr):host()) if isTmp then @@ -59,11 +59,11 @@ local function intf_setting(intf, desc, enabled) -- TODO: datatype = "ip4cidr" v4.datatype = "maxlength(32)" v4.default = v4addr - v4.required = site.tmpIp4() + v4.required = site.node_prefix4() function v4:write(data) -- TODO: validate via datatype - if data == '' and not site.tmpIp4() then + if data == '' and not site.node_prefix4() then data = null end @@ -78,8 +78,8 @@ local function intf_setting(intf, desc, enabled) if site.prefix6() then local v6addr = uci:get('gluon-static-ip', intf, 'ip6') - if site.tmpIp6() and v6addr then - local tmp = ip.new(site.tmpIp6(), site.tmpIp6Range()) + if site.node_prefix6() and v6addr and site.node_prefix6_temporary() then + local tmp = ip.new(site.node_prefix6(), site.node_prefix6_range(64)) local isTmp = tmp:contains(ip.new(v6addr):host()) if isTmp then @@ -102,7 +102,7 @@ local function intf_setting(intf, desc, enabled) function v6:write(data) -- TODO: validate via datatype - if data == '' and (not site.tmpIp6() or (not site.tmpIp6Everywhere() or intf ~= 'loopback')) then + if data == '' and (not site.node_prefix6() or (not site.tmpIp6Everywhere() or intf ~= 'loopback')) then data = null end