Merge pull request #1242 from yousong/shadowsocks-libev
[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
72         m.redirect = ds.build_url("admin/network/firewall/zones", value)
73         m.title = "%s - %s" %{
74                 translate("Firewall - Zone Settings"),
75                 translatef("Zone %q", value or "?")
76         }
77 end
78
79 p = {
80         s:taboption("general", ListValue, "input", translate("Input")),
81         s:taboption("general", ListValue, "output", translate("Output")),
82         s:taboption("general", ListValue, "forward", translate("Forward"))
83 }
84
85 for i, v in ipairs(p) do
86         v:value("REJECT", translate("reject"))
87         v:value("DROP", translate("drop"))
88         v:value("ACCEPT", translate("accept"))
89 end
90
91 s:taboption("general", Flag, "masq", translate("Masquerading"))
92 s:taboption("general", Flag, "mtu_fix", translate("MSS clamping"))
93
94 net = s:taboption("general", Value, "network", translate("Covered networks"))
95 net.template = "cbi/network_netlist"
96 net.widget = "checkbox"
97 net.cast = "string"
98
99 function net.formvalue(self, section)
100         return Value.formvalue(self, section) or "-"
101 end
102
103 function net.cfgvalue(self, section)
104         return Value.cfgvalue(self, section) or name:cfgvalue(section)
105 end
106
107 function net.write(self, section, value)
108         zone:clear_networks()
109
110         local n
111         for n in ut.imatch(value) do
112                 zone:add_network(n)
113         end
114 end
115
116
117 family = s:taboption("advanced", ListValue, "family",
118         translate("Restrict to address family"))
119
120 family.rmempty = true
121 family:value("", translate("IPv4 and IPv6"))
122 family:value("ipv4", translate("IPv4 only"))
123 family:value("ipv6", translate("IPv6 only"))
124
125 msrc = s:taboption("advanced", DynamicList, "masq_src",
126         translate("Restrict Masquerading to given source subnets"))
127
128 msrc.optional = true
129 msrc.datatype = "list(neg(or(uciname,hostname,ipmask4)))"
130 msrc.placeholder = "0.0.0.0/0"
131 msrc:depends("family", "")
132 msrc:depends("family", "ipv4")
133
134 mdest = s:taboption("advanced", DynamicList, "masq_dest",
135         translate("Restrict Masquerading to given destination subnets"))
136
137 mdest.optional = true
138 mdest.datatype = "list(neg(or(uciname,hostname,ipmask4)))"
139 mdest.placeholder = "0.0.0.0/0"
140 mdest:depends("family", "")
141 mdest:depends("family", "ipv4")
142
143 s:taboption("advanced", Flag, "conntrack",
144         translate("Force connection tracking"))
145
146 log = s:taboption("advanced", Flag, "log",
147         translate("Enable logging on this zone"))
148
149 log.rmempty = true
150 log.enabled = "1"
151
152 lim = s:taboption("advanced", Value, "log_limit",
153         translate("Limit log messages"))
154
155 lim.placeholder = "10/minute"
156 lim:depends("log", "1")
157
158
159 s2 = m:section(NamedSection, zone.sid, "fwd_out",
160         translate("Inter-Zone Forwarding"),
161         translatef("The options below control the forwarding policies between \
162                 this zone (%s) and other zones. <em>Destination zones</em> cover \
163                 forwarded traffic <strong>originating from %q</strong>. \
164                 <em>Source zones</em> match forwarded traffic from other zones \
165                 <strong>targeted at %q</strong>. The forwarding rule is \
166                 <em>unidirectional</em>, e.g. a forward from lan to wan does \
167                 <em>not</em> imply a permission to forward from wan to lan as well.",
168                 zone:name(), zone:name(), zone:name()
169
170         ))
171
172 out = s2:option(Value, "out",
173         translate("Allow forward to <em>destination zones</em>:"))
174
175 out.nocreate = true
176 out.widget = "checkbox"
177 out.exclude = zone:name()
178 out.template = "cbi/firewall_zonelist"
179
180 inp = s2:option(Value, "in",
181         translate("Allow forward from <em>source zones</em>:"))
182
183 inp.nocreate = true
184 inp.widget = "checkbox"
185 inp.exclude = zone:name()
186 inp.template = "cbi/firewall_zonelist"
187
188 function out.cfgvalue(self, section)
189         local v = { }
190         local f
191         for _, f in ipairs(zone:get_forwardings_by("src")) do
192                 v[#v+1] = f:dest()
193         end
194         return table.concat(v, " ")
195 end
196
197 function inp.cfgvalue(self, section)
198         local v = { }
199         local f
200         for _, f in ipairs(zone:get_forwardings_by("dest")) do
201                 v[#v+1] = f:src()
202         end
203         return v
204 end
205
206 function out.formvalue(self, section)
207         return Value.formvalue(self, section) or "-"
208 end
209
210 function inp.formvalue(self, section)
211         return Value.formvalue(self, section) or "-"
212 end
213
214 function out.write(self, section, value)
215         zone:del_forwardings_by("src")
216
217         local f
218         for f in ut.imatch(value) do
219                 zone:add_forwarding_to(f)
220         end
221 end
222
223 function inp.write(self, section, value)
224         zone:del_forwardings_by("dest")
225
226         local f
227         for f in ut.imatch(value) do
228                 zone:add_forwarding_from(f)
229         end
230 end
231
232 return m