2011-10-03 13:57:11 +00:00
|
|
|
--[[
|
|
|
|
LuCI - Network model - 3G, PPP, PPtP, PPPoE and PPPoA protocol extension
|
|
|
|
|
|
|
|
Copyright 2011 Jo-Philipp Wich <xm@subsignal.org>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
|
|
|
local netmod = luci.model.network
|
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
local _, p
|
|
|
|
for _, p in ipairs({"ppp", "pptp", "pppoe", "pppoa", "3g"}) do
|
2011-10-03 13:57:11 +00:00
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
local proto = netmod:register_protocol(p)
|
2011-10-03 13:57:11 +00:00
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.get_i18n(self)
|
|
|
|
if p == "ppp" then
|
|
|
|
return luci.i18n.translate("PPP")
|
|
|
|
elseif p == "pptp" then
|
|
|
|
return luci.i18n.translate("PPtP")
|
|
|
|
elseif p == "3g" then
|
|
|
|
return luci.i18n.translate("UMTS/GPRS/EV-DO")
|
|
|
|
elseif p == "pppoe" then
|
|
|
|
return luci.i18n.translate("PPPoE")
|
|
|
|
elseif p == "pppoa" then
|
|
|
|
return luci.i18n.translate("PPPoATM")
|
|
|
|
end
|
|
|
|
end
|
2011-10-03 13:57:11 +00:00
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.ifname(self)
|
|
|
|
return p .. "-" .. self.sid
|
|
|
|
end
|
2011-10-03 13:57:11 +00:00
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.opkg_package(self)
|
2012-06-11 22:41:32 +00:00
|
|
|
if p == "ppp" then
|
2011-10-04 13:32:18 +00:00
|
|
|
return p
|
|
|
|
elseif p == "3g" then
|
|
|
|
return "comgt"
|
2012-06-11 22:41:32 +00:00
|
|
|
elseif p == "pptp" then
|
|
|
|
return "ppp-mod-pptp"
|
2011-10-04 13:32:18 +00:00
|
|
|
elseif p == "pppoe" then
|
|
|
|
return "ppp-mod-pppoe"
|
|
|
|
elseif p == "pppoa" then
|
|
|
|
return "ppp-mod-pppoa"
|
|
|
|
end
|
|
|
|
end
|
2011-10-03 13:57:11 +00:00
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.is_installed(self)
|
2012-05-31 16:16:32 +00:00
|
|
|
if p == "pppoa" then
|
2012-04-27 18:10:51 +00:00
|
|
|
return (nixio.fs.glob("/usr/lib/pppd/*/pppoatm.so")() ~= nil)
|
|
|
|
elseif p == "pppoe" then
|
|
|
|
return (nixio.fs.glob("/usr/lib/pppd/*/rp-pppoe.so")() ~= nil)
|
2012-06-11 22:41:32 +00:00
|
|
|
elseif p == "pptp" then
|
|
|
|
return (nixio.fs.glob("/usr/lib/pppd/*/pptp.so")() ~= nil)
|
2012-04-27 18:10:51 +00:00
|
|
|
elseif p == "3g" then
|
|
|
|
return nixio.fs.access("/lib/netifd/proto/3g.sh")
|
|
|
|
else
|
|
|
|
return nixio.fs.access("/lib/netifd/proto/ppp.sh")
|
|
|
|
end
|
2011-10-03 13:57:11 +00:00
|
|
|
end
|
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.is_floating(self)
|
|
|
|
return (p ~= "pppoe")
|
|
|
|
end
|
|
|
|
|
|
|
|
function proto.is_virtual(self)
|
|
|
|
return true
|
2011-10-03 13:57:11 +00:00
|
|
|
end
|
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.get_interfaces(self)
|
|
|
|
if self:is_floating() then
|
|
|
|
return nil
|
|
|
|
else
|
|
|
|
return netmod.protocol.get_interfaces(self)
|
|
|
|
end
|
|
|
|
end
|
2011-10-03 13:57:11 +00:00
|
|
|
|
2011-10-04 13:32:18 +00:00
|
|
|
function proto.contains_interface(self, ifc)
|
|
|
|
if self:is_floating() then
|
|
|
|
return (netmod:ifnameof(ifc) == self:ifname())
|
|
|
|
else
|
2011-10-09 19:25:43 +00:00
|
|
|
return netmod.protocol.contains_interface(self, ifc)
|
2011-10-04 13:32:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
netmod:register_pattern_virtual("^%s-%%w" % p)
|
|
|
|
end
|