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
|
Testing that zones sharing a name no longer render duplicate nftables
defines and chains, which nft rejects wholesale. The first zone of a given
name wins and later ones are skipped with a diagnostic; a zone declared via
ubus never displaces a uci zone of the same name.
-- Testcase --
{%
include("./root/usr/share/firewall4/main.uc", {
getenv: function(varname) {
switch (varname) {
case 'ACTION':
return 'print';
}
}
})
%}
-- End --
-- File uci/helpers.json --
{}
-- End --
-- File fs/open~_sys_class_net_br-lan_flags.txt --
0x1103
-- End --
-- File fs/open~_sys_class_net_pppoe-wan_flags.txt --
0x1103
-- End --
-- File ubus/network.interface~dump.json --
{
"interface": [
{
"interface": "lan",
"up": true,
"l3_device": "br-lan",
"proto": "static",
"device": "br-lan",
"ipv4-address": [ { "address": "192.168.1.1", "mask": 24 } ],
"data": {}
},
{
"interface": "wan",
"up": true,
"l3_device": "pppoe-wan",
"proto": "pppoe",
"device": "eth1",
"ipv4-address": [ { "address": "10.11.12.194", "mask": 24 } ],
"data": {}
}
]
}
-- End --
-- File ubus/service~get_data~type-firewall.json --
{
"svc1": {
"firewall": [
{
"type": "zone",
"name": "czdup",
"subnet": [ "10.99.0.0/24" ]
}
]
},
"svc2": {
"firewall": [
{
"type": "zone",
"name": "czdup",
"subnet": [ "10.98.0.0/24" ]
}
]
},
"svc3": {
"firewall": [
{
"type": "zone",
"name": "wan",
"input": "ACCEPT"
}
]
}
}
-- End --
-- File uci/firewall.json --
{
"defaults": [
{
"input": "ACCEPT",
"output": "ACCEPT",
"forward": "REJECT"
}
],
"zone": [
{
"name": "lan",
"input": "ACCEPT",
"output": "ACCEPT",
"forward": "ACCEPT",
"network": "lan"
},
{
"name": "wan",
"input": "REJECT",
"output": "ACCEPT",
"forward": "REJECT",
"masq": "1",
"network": "wan"
},
{
"name": "lan",
"input": "REJECT",
"output": "REJECT",
"forward": "REJECT"
}
]
}
-- End --
-- Expect stderr --
[!] ubus:svc2 zone (czdup) has a duplicate name, ignoring section
[!] ubus:svc3 zone (wan) duplicates a uci zone, ignoring section
[!] Section @zone[2] (lan) has a duplicate name, ignoring section
-- End --
-- Expect stdout --
table inet fw4
flush table inet fw4
table inet fw4 {
#
# Defines
#
define czdup_devices = { }
define czdup_subnets = { 10.99.0.0/24 }
define lan_devices = { "br-lan" }
define lan_subnets = { 192.168.1.0/24 }
define wan_devices = { "pppoe-wan" }
define wan_subnets = { 10.11.12.0/24 }
#
# User includes
#
include "/etc/nftables.d/*.nft"
#
# Filter rules
#
chain input {
type filter hook input priority filter; policy accept;
iif "lo" accept comment "!fw4: Accept traffic from loopback"
ct state vmap { established : accept, related : accept } comment "!fw4: Handle inbound flows"
meta nfproto ipv4 ip saddr 10.99.0.0/24 jump input_czdup comment "!fw4: Handle czdup IPv4 input traffic"
iifname "br-lan" jump input_lan comment "!fw4: Handle lan IPv4/IPv6 input traffic"
iifname "pppoe-wan" jump input_wan comment "!fw4: Handle wan IPv4/IPv6 input traffic"
}
chain forward {
type filter hook forward priority filter; policy drop;
ct state vmap { established : accept, related : accept } comment "!fw4: Handle forwarded flows"
meta nfproto ipv4 ip saddr 10.99.0.0/24 jump forward_czdup comment "!fw4: Handle czdup IPv4 forward traffic"
iifname "br-lan" jump forward_lan comment "!fw4: Handle lan IPv4/IPv6 forward traffic"
iifname "pppoe-wan" jump forward_wan comment "!fw4: Handle wan IPv4/IPv6 forward traffic"
jump handle_reject
}
chain output {
type filter hook output priority filter; policy accept;
oif "lo" accept comment "!fw4: Accept traffic towards loopback"
ct state vmap { established : accept, related : accept } comment "!fw4: Handle outbound flows"
meta nfproto ipv4 ip daddr 10.99.0.0/24 jump output_czdup comment "!fw4: Handle czdup IPv4 output traffic"
oifname "br-lan" jump output_lan comment "!fw4: Handle lan IPv4/IPv6 output traffic"
oifname "pppoe-wan" jump output_wan comment "!fw4: Handle wan IPv4/IPv6 output traffic"
}
chain prerouting {
type filter hook prerouting priority filter; policy accept;
meta nfproto ipv4 ip saddr 10.99.0.0/24 jump helper_czdup comment "!fw4: Handle czdup IPv4 helper assignment"
iifname "br-lan" jump helper_lan comment "!fw4: Handle lan IPv4/IPv6 helper assignment"
}
chain handle_reject {
meta l4proto tcp reject with tcp reset comment "!fw4: Reject TCP traffic"
reject with icmpx type port-unreachable comment "!fw4: Reject any other traffic"
}
chain input_czdup {
jump drop_from_czdup
}
chain output_czdup {
jump drop_to_czdup
}
chain forward_czdup {
jump drop_to_czdup
}
chain helper_czdup {
}
chain drop_from_czdup {
meta nfproto ipv4 ip saddr 10.99.0.0/24 counter drop comment "!fw4: drop czdup IPv4 traffic"
}
chain drop_to_czdup {
meta nfproto ipv4 ip daddr 10.99.0.0/24 counter drop comment "!fw4: drop czdup IPv4 traffic"
}
chain input_lan {
jump accept_from_lan
}
chain output_lan {
jump accept_to_lan
}
chain forward_lan {
jump accept_to_lan
}
chain helper_lan {
}
chain accept_from_lan {
iifname "br-lan" counter accept comment "!fw4: accept lan IPv4/IPv6 traffic"
}
chain accept_to_lan {
oifname "br-lan" counter accept comment "!fw4: accept lan IPv4/IPv6 traffic"
}
chain input_wan {
jump reject_from_wan
}
chain output_wan {
jump accept_to_wan
}
chain forward_wan {
jump reject_to_wan
}
chain accept_to_wan {
meta nfproto ipv4 oifname "pppoe-wan" ct state invalid counter drop comment "!fw4: Prevent NAT leakage"
oifname "pppoe-wan" counter accept comment "!fw4: accept wan IPv4/IPv6 traffic"
}
chain reject_from_wan {
iifname "pppoe-wan" counter jump handle_reject comment "!fw4: reject wan IPv4/IPv6 traffic"
}
chain reject_to_wan {
oifname "pppoe-wan" counter jump handle_reject comment "!fw4: reject wan IPv4/IPv6 traffic"
}
#
# NAT rules
#
chain dstnat {
type nat hook prerouting priority dstnat; policy accept;
}
chain srcnat {
type nat hook postrouting priority srcnat; policy accept;
oifname "pppoe-wan" jump srcnat_wan comment "!fw4: Handle wan IPv4/IPv6 srcnat traffic"
}
chain srcnat_wan {
meta nfproto ipv4 masquerade comment "!fw4: Masquerade IPv4 wan traffic"
}
#
# Raw rules (notrack)
#
chain raw_prerouting {
type filter hook prerouting priority raw; policy accept;
}
chain raw_output {
type filter hook output priority raw; policy accept;
}
#
# Mangle rules
#
chain mangle_prerouting {
type filter hook prerouting priority mangle; policy accept;
}
chain mangle_postrouting {
type filter hook postrouting priority mangle; policy accept;
}
chain mangle_input {
type filter hook input priority mangle; policy accept;
}
chain mangle_output {
type route hook output priority mangle; policy accept;
}
chain mangle_forward {
type filter hook forward priority mangle; policy accept;
}
}
-- End --
|