summaryrefslogtreecommitdiffhomepage
path: root/libs/core/luasrc/model/firewall.lua
blob: a1daf5a7019e4266eb9ba8691176a281827f46ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
--[[
LuCI - Firewall model

Copyright 2009 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 type, pairs, ipairs, table, luci, math
	= type, pairs, ipairs, table, luci, math

local lmo = require "lmo"
local utl = require "luci.util"
local uct = require "luci.model.uci.bind"

module "luci.model.firewall"


local ub = uct.bind("firewall")

function init(cursor)
	if cursor then
		cursor:unload("firewall")
		cursor:load("firewall")
		ub:init(cursor)
	end
end

function add_zone(self, n)
	if n and #n > 0 and n:match("^[a-zA-Z0-9_]+$") and not self:get_zone(n) then
		local z = ub.uci:section("firewall", "zone", nil, {
			name    = n,
			network = " ",
			input   = defaults:input()   or "DROP",
			forward = defaults:forward() or "DROP",
			output  = defaults:output()  or "DROP"
		})

		return z and zone(z)
	end
end

function get_zone(self, n)
	local z
	ub.uci:foreach("firewall", "zone",
		function(s)
			if n and s.name == n then
				z = s['.name']
				return false
			end
		end)
	return z and zone(z)
end

function get_zones(self)
	local zones = { }
	ub.uci:foreach("firewall", "zone",
		function(s)
			if s.name then
				zones[#zones+1] = zone(s['.name'])
			end
		end)
	return zones
end

function get_zone_by_network(self, net)
	local z
	ub.uci:foreach("firewall", "zone",
		function(s)
			if s.name and net then
				local n
				for _, n in ipairs(ub:list(s.network or s.name)) do
					if n == net then
						z = s['.name']
						return false
					end
				end
			end
		end)
	return z and zone(z)
end

function del_zone(self, n)
	local r = false
	ub.uci:foreach("firewall", "zone",
		function(s)
			if n and s.name == n then
				r = ub.uci:delete("firewall", s['.name'])
				return false
			end
		end)
	if r then
		ub.uci:foreach("firewall", "rule",
			function(s)
				if s.src == n or s.dest == n then
					ub.uci:delete("firewall", s['.name'])
				end
			end)
		ub.uci:foreach("firewall", "redirect",
			function(s)
				if s.src == n then
					ub.uci:delete("firewall", s['.name'])
				end
			end)
		ub.uci:foreach("firewall", "forwarding",
			function(s)
				if s.src == n then
					ub.uci:delete("firewall", s['.name'])
				end
			end)
	end
	return r
end

function rename_zone(self, old, new)
	local r = false
	if new and #new > 0 and new:match("^[a-zA-Z0-9_]+$") and not self:get_zone(new) then
		ub.uci:foreach("firewall", "zone",
			function(s)
				if n and s.name == old then
					ub.uci:set("firewall", s['.name'], "name", new)
					r = true
					return false
				end
			end)
		if r then
			ub.uci:foreach("firewall", "rule",
				function(s)
					if s.src == old then
						ub.uci:set("firewall", s['.name'], "src", new)
					elseif s.dest == old then
						ub.uci:set("firewall", s['.name'], "dest", new)
					end
				end)
			ub.uci:foreach("firewall", "redirect",
				function(s)
					if s.src == old then
						ub.uci:set("firewall", s['.name'], "src", new)
					end
				end)
			ub.uci:foreach("firewall", "forwarding",
				function(s)
					if s.src == old then
						ub.uci:set("firewall", s['.name'], "src", new)
					end
				end)
		end
	end
	return r
end

function del_network(self, net)
	local z
	if net then
		for _, z in ipairs(self:get_zones()) do
			z:del_network(net)
		end
	end
end


defaults = ub:usection("defaults")
defaults:property_bool("syn_flood")
defaults:property_bool("drop_invalid")
defaults:property("input")
defaults:property("forward")
defaults:property("output")


zone = ub:section("zone")
zone:property_bool("masq")
zone:property("name")
zone:property("network")
zone:property("input")
zone:property("forward")
zone:property("output")

function zone.add_network(self, net)
	if ub.uci:get("network", net) == "interface" then
		local networks = ub:list(self:network() or self:name(), net)
		if #networks > 0 then
			self:network(table.concat(networks, " "))
		else
			self:network(" ")
		end
	end
end

function zone.del_network(self, net)
	local networks = ub:list(self:network() or self:name(), nil, net)
	if #networks > 0 then
		self:network(table.concat(networks, " "))
	else
		self:network(" ")
	end
end

function zone.get_networks(self)
	return ub:list(self:network() or self:name())
end

function zone.get_forwardings_by(self, what)
	local name = self:name()
	local forwards = { }
	ub.uci:foreach("firewall", "forwarding",
		function(s)
			if s.src and s.dest and s[what] == name then
				forwards[#forwards+1] = forwarding(s['.name'])
			end
		end)
	return forwards
end

function zone.add_forwarding_to(self, dest, with_mtu_fix)
	local exist, forward
	for _, forward in ipairs(self:get_forwardings_by('src')) do
		if forward:dest() == dest then
			exist = true
			break
		end
	end
	if not exist and dest ~= self:name() then
		local s = ub.uci:section("firewall", "forwarding", nil, {
			src     = self:name(),
			dest    = dest,
			mtu_fix = with_mtu_fix and "1" or "0"
		})
		return s and forwarding(s)
	end
end

function zone.add_forwarding_from(self, src, with_mtu_fix)
	local exist, forward
	for _, forward in ipairs(self:get_forwardings_by('dest')) do
		if forward:src() == src then
			exist = true
			break
		end
	end
	if not exist and src ~= self:name() then
		local s = ub.uci:section("firewall", "forwarding", nil, {
			src     = src,
			dest    = self:name(),
			mtu_fix = with_mtu_fix and "1" or "0"
		})
		return s and forwarding(s)
	end
end

function zone.del_forwardings_by(self, what)
	local name = self:name()
	ub.uci:foreach("firewall", "forwarding",
		function(s)
			if s.src and s.dest and s[what] == name then
				ub.uci:delete("firewall", s['.name'])
			end
		end)
end

function zone.add_redirect(self, options)
	options = options or { }
	options.src = self:name()
	local s = ub.uci:section("firewall", "redirect", nil, options)
	return s and redirect(s)
end

function zone.add_rule(self, options)
	options = options or { }
	options.src = self:name()
	local s = ub.uci:section("firewall", "rule", nil, options)
	return s and rule(s)
end

function zone.get_color(self)
	if self and self:name() == "lan" then
		return "#90f090"
	elseif self and self:name() == "wan" then
		return "#f09090"
	elseif self then
		math.randomseed(lmo.hash(self:name()))

		local r   = math.random(128)
		local g   = math.random(128)
		local min = 0
		local max = 128

		if ( r + g ) < 128 then
			min = 128 - r - g
		else
			max = 255 - r - g
		end

		local b = min + math.floor( math.random() * ( max - min ) )

		return "#%02x%02x%02x" % { 0xFF - r, 0xFF - g, 0xFF - b }
	else
		return "#eeeeee"
	end
end


forwarding = ub:section("forwarding")
forwarding:property_bool("mtu_fix")
forwarding:property("src")
forwarding:property("dest")

function forwarding.src_zone(self)
	return zone(self:src())
end

function forwarding.dest_zone(self)
	return zone(self:dest())
end


rule = ub:section("rule")
rule:property("src")
rule:property("src_ip")
rule:property("src_mac")
rule:property("src_port")
rule:property("dest")
rule:property("dest_ip")
rule:property("dest_port")
rule:property("proto")
rule:property("target")

function rule.src_zone(self)
	return zone(self:src())
end


redirect = ub:section("redirect")
redirect:property("src")
redirect:property("src_ip")
redirect:property("src_mac")
redirect:property("src_port")
redirect:property("src_dport")
redirect:property("dest_ip")
redirect:property("dest_port")
redirect:property("proto")

function redirect.src_zone(self)
	return zone(self:src())
end