From ccc6fc77ca7f75294c45f3cd571473488df0042d Mon Sep 17 00:00:00 2001 From: Alexander Poslavsky Date: Fri, 2 Nov 2007 09:24:27 +0000 Subject: trying to get shorewall to install+status indicator, cleanup git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@252 ab2d0c66-481e-0410-8bed-d214d4d58bed --- app/cfgfile/firewall.cfg | 55 ---------------------- app/shorewall-controller.lua | 102 ----------------------------------------- app/shorewall-html.lsp | 41 ----------------- app/shorewall-read-html.lsp | 24 ---------- app/shorewall-restart-html.lsp | 66 -------------------------- app/shorewall-start-html.lsp | 66 -------------------------- app/shorewall-stop-html.lsp | 66 -------------------------- app/shorewall.menu | 2 - 8 files changed, 422 deletions(-) delete mode 100644 app/cfgfile/firewall.cfg delete mode 100644 app/shorewall-controller.lua delete mode 100644 app/shorewall-html.lsp delete mode 100644 app/shorewall-read-html.lsp delete mode 100644 app/shorewall-restart-html.lsp delete mode 100644 app/shorewall-start-html.lsp delete mode 100644 app/shorewall-stop-html.lsp delete mode 100644 app/shorewall.menu diff --git a/app/cfgfile/firewall.cfg b/app/cfgfile/firewall.cfg deleted file mode 100644 index 60ba9d6..0000000 --- a/app/cfgfile/firewall.cfg +++ /dev/null @@ -1,55 +0,0 @@ ---[[ cfgfile-model loads all .cfg files in this directory and - evaluates them by putting return ({ ... }) around file contents. - This file contains body of lua table with one item per config file. - Each item is table with following keys currently having meaning: - app - string that is used to group items by controller - section - string that is used to group items visually on page - name - short name that is shown to user - filename - filesystem path of config file - descr - descr, one liner ---]] - -{ app="firewall", section="general", - name="params", filename="/etc/shorewall/params", - descr="Define variables used in the other configuration files." }, -{ app="firewall", section="general", - name="shorewall", filename="/etc/shorewall/shorewall.conf", - descr="Modify global configuration settings." }, -{ app="firewall", section="firewalling", - name="zones", filename="/etc/shorewall/zones", - descr="Name network partitions. Firewall rules are applied to defined zones." }, -{ app="firewall", section="firewalling", - name="interfaces", filename="/etc/shorewall/interfaces", - descr="Map physical interfaces to named zones." }, -{ app="firewall", section="firewalling", - name="hosts", filename="/etc/shorewall/hosts", - descr="Name specific hosts within zones." }, -{ app="firewall", section="firewalling", - name="policy", filename="/etc/shorewall/policy", - descr="Set default rules (policies) for zones." }, -{ app="firewall", section="firewalling", - name="rules", filename="/etc/shorewall/rules", - descr="Define exceptions to policies." }, -{ app="firewall", section="firewalling", - name="routestopped", filename="/etc/shorewall/routestopped", - descr="Define hosts that can access this host when the firewall is \"stopped\"" }, -{ app="firewall", section="firewalling", - name="tunnels", filename="/etc/shorewall/tunnels", - descr="Specify ipsec tunnel endpoints" }, -{ app="firewall", section="firewalling", - name="blacklist", filename="/etc/shorewall/blacklist", - descr="List ip addresses or names that should be denied all access to the firewall." }, -{ app="firewall", section="nat", - name="masq", filename="/etc/shorewall/masq", - descr="Define dynamic Masquerading or DNAT tables" }, -{ app="firewall", section="nat", - name="nat", filename="/etc/shorewall/nat", - descr="Define static Network Address Translation table" }, -{ app="firewall", section="qos", - name="tos", filename="/etc/shorewall/tos", - descr="Specify type of service markers for packets traversing the firewall." }, -{ app="firewall", section="qos", - name="tcrules", filename="/etc/shorewall/tcrules", - descr="Define traffic control rules." }, - --- /* vim: set filetype=lua : */ diff --git a/app/shorewall-controller.lua b/app/shorewall-controller.lua deleted file mode 100644 index f1583cf..0000000 --- a/app/shorewall-controller.lua +++ /dev/null @@ -1,102 +0,0 @@ -module(..., package.seeall) - -local list_redir = function(self) - self.conf.action = "read" - self.conf.type = "redir" - error(self.conf) -end - -mvc={} -mvc.on_load = function(self, parent) - --TODO: This needs to be looked at - --there has to be cute, standard way of loading models into controller - self.cfgfile = self:soft_require("cfgfile-model") - setmetatable(self.cfgfile, self.cfgfile) - self.cfgfile.__index = self.worker - self.service = self:soft_require("service-model") - setmetatable(self.service, self.service) - self.service.__index = self.worker - if (self.worker[self.conf.action] == nil) or (self.conf.action == "init") then - self.worker[self.conf.action] = list_redir(self) - end -end - --- Public methods --- /hostname/get - -read = function(self) - return { - list=self.cfgfile:list("firewall"), - script=ENV["SCRIPT_NAME"], - prefix=self.conf.prefix, - controller=self.conf.controller, - action="update", - } -end - -update = function(self) - local id = tonumber(self.clientdata.id) or -1 - local result - local data - - result, data = self.cfgfile:get(id) - if not result then return list_redir(self) end - - if self.clientdata.cmd then - for k,v in pairs (data) do - if self.clientdata[k] then - data[k].value = self.clientdata[k] - end - end - result, data = self.cfgfile:set(id, data) - if result then return list_redir(self) end - end - - data.cmd = cfe { type="action", value="save", label="action" } - return cfe{ type="form", - option={ script=ENV["SCRIPT_NAME"], - prefix=self.conf.prefix, - controller = self.conf.controller, - action = "update", - extra = ""}, - value = data} -end - -local function service(self, action) - local id = tonumber(self.clientdata.id) or -1 - local svc = self.service:list("firewall") - local ret = { - script=ENV["SCRIPT_NAME"], - prefix=self.conf.prefix, - controller = self.conf.controller, - action={}, - title="Firewall", - text={}, - active={ id=id } - } - for i,s in pairs(svc) do - for i,a in ipairs(s.actions) do - ret.action[#ret.action + 1] = { - name = a, - section = s.name .. " (" .. tostring(s.status) .. ")", - id = s.id, - label = a, - } - end - end - if self.clientdata[action] then - local result, report = self.service:update(id, action) - local label = "Error" - if result then - ret.active.action = action - label = "Report" - end - ret.text[#ret.text + 1] = { label=label, content=report } - end - return ret -end - -start = function(self) return service(self, "start") end -stop = function(self) return service(self, "stop") end -restart = function(self) return service(self, "restart") end - diff --git a/app/shorewall-html.lsp b/app/shorewall-html.lsp deleted file mode 100644 index efb1c38..0000000 --- a/app/shorewall-html.lsp +++ /dev/null @@ -1,41 +0,0 @@ -

Edit

- diff --git a/app/shorewall-read-html.lsp b/app/shorewall-read-html.lsp deleted file mode 100644 index c4732a0..0000000 --- a/app/shorewall-read-html.lsp +++ /dev/null @@ -1,24 +0,0 @@ - - - - -

Edit

- - -

diff --git a/app/shorewall-restart-html.lsp b/app/shorewall-restart-html.lsp deleted file mode 100644 index 2daa4bc..0000000 --- a/app/shorewall-restart-html.lsp +++ /dev/null @@ -1,66 +0,0 @@ -

diff --git a/app/shorewall-start-html.lsp b/app/shorewall-start-html.lsp deleted file mode 100644 index 2daa4bc..0000000 --- a/app/shorewall-start-html.lsp +++ /dev/null @@ -1,66 +0,0 @@ -

diff --git a/app/shorewall-stop-html.lsp b/app/shorewall-stop-html.lsp deleted file mode 100644 index 2daa4bc..0000000 --- a/app/shorewall-stop-html.lsp +++ /dev/null @@ -1,66 +0,0 @@ -

diff --git a/app/shorewall.menu b/app/shorewall.menu deleted file mode 100644 index 21066d5..0000000 --- a/app/shorewall.menu +++ /dev/null @@ -1,2 +0,0 @@ -Networking Shorewall Define read - -- cgit v1.2.3