Merge pull request #1794 from dibdot/adblock
[project/luci.git] / applications / luci-app-firewall / luasrc / model / cbi / firewall / zone-details.lua
1 -- Copyright 2008 Steven Barth <steven@midlink.org>
2 -- Copyright 2010-2011 Jo-Philipp Wich <jow@openwrt.org>
3 -- Licensed to the public under the Apache License 2.0.
4
5 local nw = require "luci.model.network"
6 local fw = require "luci.model.firewall"
7 local ds = require "luci.dispatcher"
8 local ut = require "luci.util"
9
10 local m, p, i, v
11 local s, name, net, family, msrc, mdest, log, lim
12 local s2, out, inp
13
14
15 m = Map("firewall", translate("Firewall - Zone Settings"))
16 m.redirect = luci.dispatcher.build_url("admin/network/firewall/zones")
17
18 fw.init(m.uci)
19 nw.init(m.uci)
20
21
22 local zone = fw:get_zone(arg[1])
23 if not zone then
24         luci.http.redirect(ds.build_url("admin/network/firewall/zones"))
25         return
26 else
27         m.title = "%s - %s" %{
28                 translate("Firewall - Zone Settings"),
29                 translatef("Zone %q", zone:name() or "?")
30         }
31 end
32
33
34 s = m:section(NamedSection, zone.sid, "zone",
35         translatef("Zone %q", zone:name()),
36         translatef("This section defines common properties of %q. \
37                 The <em>input</em> and <em>output</em> options set the default \
38                 policies for traffic entering and leaving this zone while the \
39                 <em>forward</em> option describes the policy for forwarded traffic \
40                 between different networks within the zone. \
41                 <em>Covered networks</em> specifies which available networks are \
42                 members of this zone.", zone:name()))
43
44 s.anonymous = true
45 s.addremove = false
46
47 m.on_commit = function(map)
48         local zone = fw:get_zone(arg[1])
49         if zone then
50                 s.section  = zone.sid
51                 s2.section = zone.sid
52         end
53 end
54
55
56 s:tab("general", translate("General Settings"))
57 s:tab("advanced", translate("Advanced Settings"))
58
59
60 name = s:taboption("general", Value, "name", translate("Name"))
61 name.optional = false
62 name.forcewrite = true
63 name.datatype = "and(uciname,maxlength(11))"
64
65 function name.write(self, section, value)
66         if zone:name() ~= value then
67                 fw:rename_zone(zone:name(), value)
68                 out.exclude = value
69                 inp.exclude = value
70         end
71 end
72
73 p = {
74         s:taboption("general", ListValue, "input", translate("Input")),
75         s:taboption("general", ListValue, "output", translate("Output")),
76         s:taboption("general", ListValue, "forward", translate("Forward"))
77 }
78
79 for i, v in ipairs(p) do
80         v:value("REJECT", translate("reject"))
81         v:value("DROP", translate("drop"))
82         v:value("ACCEPT", translate("accept"))
83 end
84
85 s:taboption("general", Flag, "masq", translate("Masquerading"))
86 s:taboption("general", Flag, "mtu_fix", translate("MSS clamping"))
87
88 net = s:taboption("general", Value, "network", translate("Covered networks"))
89 net.template = "cbi/network_netlist"
90 net.widget = "checkbox"
91 net.cast = "string"
92
93 function net.formvalue(self, section)
94         return Value.formvalue(self, section) or "-"
95 end
96
97 function net.cfgvalue(self, section)
98         return Value.cfgvalue(self, section) or name:cfgvalue(section)
99 end
100
101 function net.write(self, section, value)
102         zone:clear_networks()
103
104         local n
105         for n in ut.imatch(value) do
106                 zone:add_network(n)
107         end
108 end
109
110
111 family = s:taboption("advanced", ListValue, "family",
112         translate("Restrict to address family"))
113
114 family.rmempty = true
115 family:value("", translate("IPv4 and IPv6"))
116 family:value("ipv4", translate("IPv4 only"))
117 family:value("ipv6", translate("IPv6 only"))
118
119 msrc = s:taboption("advanced", DynamicList, "masq_src",
120         translate("Restrict Masquerading to given source subnets"))
121
122 msrc.optional = true
123 msrc.datatype = "list(neg(or(uciname,hostname,ipmask4)))"
124 msrc.placeholder = "0.0.0.0/0"
125 msrc:depends("family", "")
126 msrc:depends("family", "ipv4")
127
128 mdest = s:taboption("advanced", DynamicList, "masq_dest",
129         translate("Restrict Masquerading to given destination subnets"))
130
131 mdest.optional = true
132 mdest.datatype = "list(neg(or(uciname,hostname,ipmask4)))"
133 mdest.placeholder = "0.0.0.0/0"
134 mdest:depends("family", "")
135 mdest:depends("family", "ipv4")
136
137 s:taboption("advanced", Flag, "conntrack",
138         translate("Force connection tracking"))
139
140 log = s:taboption("advanced", Flag, "log",
141         translate("Enable logging on this zone"))
142
143 log.rmempty = true
144 log.enabled = "1"
145
146 lim = s:taboption("advanced", Value, "log_limit",
147         translate("Limit log messages"))
148
149 lim.placeholder = "10/minute"
150 lim:depends("log", "1")
151
152
153 s2 = m:section(NamedSection, zone.sid, "fwd_out",
154         translate("Inter-Zone Forwarding"),
155         translatef("The options below control the forwarding policies between \
156                 this zone (%s) and other zones. <em>Destination zones</em> cover \
157                 forwarded traffic <strong>originating from %q</strong>. \
158                 <em>Source zones</em> match forwarded traffic from other zones \
159                 <strong>targeted at %q</strong>. The forwarding rule is \
160                 <em>unidirectional</em>, e.g. a forward from lan to wan does \
161                 <em>not</em> imply a permission to forward from wan to lan as well.",
162                 zone:name(), zone:name(), zone:name()
163
164         ))
165
166 out = s2:option(Value, "out",
167         translate("Allow forward to <em>destination zones</em>:"))
168
169 out.nocreate = true
170 out.widget = "checkbox"
171 out.exclude = zone:name()
172 out.template = "cbi/firewall_zonelist"
173
174 inp = s2:option(Value, "in",
175         translate("Allow forward from <em>source zones</em>:"))
176
177 inp.nocreate = true
178 inp.widget = "checkbox"
179 inp.exclude = zone:name()
180 inp.template = "cbi/firewall_zonelist"
181
182 function out.cfgvalue(self, section)
183         local v = { }
184         local f
185         for _, f in ipairs(zone:get_forwardings_by("src")) do
186                 v[#v+1] = f:dest()
187         end
188         return table.concat(v, " ")
189 end
190
191 function inp.cfgvalue(self, section)
192         local v = { }
193         local f
194         for _, f in ipairs(zone:get_forwardings_by("dest")) do
195                 v[#v+1] = f:src()
196         end
197         return v
198 end
199
200 function out.formvalue(self, section)
201         return Value.formvalue(self, section) or "-"
202 end
203
204 function inp.formvalue(self, section)
205         return Value.formvalue(self, section) or "-"
206 end
207
208 function out.write(self, section, value)
209         zone:del_forwardings_by("src")
210
211         local f
212         for f in ut.imatch(value) do
213                 zone:add_forwarding_to(f)
214         end
215 end
216
217 function inp.write(self, section, value)
218         zone:del_forwardings_by("dest")
219
220         local f
221         for f in ut.imatch(value) do
222                 zone:add_forwarding_from(f)
223         end
224 end
225
226 return m