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
|
Testing that rule declarations are mapped to the proper chains depending
on src and dest options.
-- Testcase --
{%
include("./root/usr/share/firewall4/main.uc", {
getenv: function(varname) {
switch (varname) {
case 'ACTION':
return 'print';
}
}
})
%}
-- End --
-- File uci/helpers.json --
{}
-- End --
-- File uci/firewall.json --
{
"rule": [
{
".description": "Neither source, nor dest => should result in an output rule",
"proto": "any"
},
{
".description": "Source any, no dest => should result in an input rule",
"proto": "any",
"src": "*"
},
{
".description": "Dest any, no source => should result in an output rule",
"proto": "any",
"dest": "*"
},
{
".description": "Source any, dest any => should result in a forward rule",
"proto": "any",
"src": "*",
"dest": "*"
}
]
}
-- End --
-- Expect stdout --
table inet fw4
flush table inet fw4
table inet fw4 {
#
# Defines
#
#
# User includes
#
include "/etc/nftables.d/*.nft"
#
# Filter rules
#
chain input {
type filter hook input priority filter; policy drop;
iif "lo" accept comment "!fw4: Accept traffic from loopback"
ct state vmap { established : accept, related : accept } comment "!fw4: Handle inbound flows"
counter comment "!fw4: @rule[1]"
}
chain forward {
type filter hook forward priority filter; policy drop;
ct state vmap { established : accept, related : accept } comment "!fw4: Handle forwarded flows"
counter comment "!fw4: @rule[3]"
}
chain output {
type filter hook output priority filter; policy drop;
oif "lo" accept comment "!fw4: Accept traffic towards loopback"
ct state vmap { established : accept, related : accept } comment "!fw4: Handle outbound flows"
counter comment "!fw4: @rule[0]"
counter comment "!fw4: @rule[2]"
}
chain prerouting {
type filter hook prerouting priority filter; policy accept;
}
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"
}
#
# NAT rules
#
chain dstnat {
type nat hook prerouting priority dstnat; policy accept;
}
chain srcnat {
type nat hook postrouting priority srcnat; policy accept;
}
#
# 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 --
|