Consolidate and unify argument order for functions
[project/firewall3.git] / rules.c
1 /*
2 * firewall3 - 3rd OpenWrt UCI firewall implementation
3 *
4 * Copyright (C) 2013 Jo-Philipp Wich <jow@openwrt.org>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #include "rules.h"
20
21
22 const struct fw3_option fw3_rule_opts[] = {
23 FW3_OPT("enabled", bool, rule, enabled),
24
25 FW3_OPT("name", string, rule, name),
26 FW3_OPT("family", family, rule, family),
27
28 FW3_OPT("src", device, rule, src),
29 FW3_OPT("dest", device, rule, dest),
30
31 FW3_OPT("ipset", device, rule, ipset),
32
33 FW3_LIST("proto", protocol, rule, proto),
34
35 FW3_LIST("src_ip", address, rule, ip_src),
36 FW3_LIST("src_mac", mac, rule, mac_src),
37 FW3_LIST("src_port", port, rule, port_src),
38
39 FW3_LIST("dest_ip", address, rule, ip_dest),
40 FW3_LIST("dest_port", port, rule, port_dest),
41
42 FW3_LIST("icmp_type", icmptype, rule, icmp_type),
43 FW3_OPT("extra", string, rule, extra),
44
45 FW3_OPT("limit", limit, rule, limit),
46 FW3_OPT("limit_burst", int, rule, limit.burst),
47
48 FW3_OPT("utc_time", bool, rule, time.utc),
49 FW3_OPT("start_date", date, rule, time.datestart),
50 FW3_OPT("stop_date", date, rule, time.datestop),
51 FW3_OPT("start_time", time, rule, time.timestart),
52 FW3_OPT("stop_time", time, rule, time.timestop),
53 FW3_OPT("weekdays", weekdays, rule, time.weekdays),
54 FW3_OPT("monthdays", monthdays, rule, time.monthdays),
55
56 FW3_OPT("target", target, rule, target),
57
58 { }
59 };
60
61
62 void
63 fw3_load_rules(struct fw3_state *state, struct uci_package *p)
64 {
65 struct uci_section *s;
66 struct uci_element *e;
67 struct fw3_rule *rule;
68
69 INIT_LIST_HEAD(&state->rules);
70
71 uci_foreach_element(&p->sections, e)
72 {
73 s = uci_to_section(e);
74
75 if (strcmp(s->type, "rule"))
76 continue;
77
78 rule = malloc(sizeof(*rule));
79
80 if (!rule)
81 continue;
82
83 memset(rule, 0, sizeof(*rule));
84
85 INIT_LIST_HEAD(&rule->proto);
86
87 INIT_LIST_HEAD(&rule->ip_src);
88 INIT_LIST_HEAD(&rule->mac_src);
89 INIT_LIST_HEAD(&rule->port_src);
90
91 INIT_LIST_HEAD(&rule->ip_dest);
92 INIT_LIST_HEAD(&rule->port_dest);
93
94 INIT_LIST_HEAD(&rule->icmp_type);
95
96 rule->enabled = true;
97
98 fw3_parse_options(rule, fw3_rule_opts, s);
99
100 if (!rule->enabled)
101 {
102 fw3_free_rule(rule);
103 continue;
104 }
105
106 if (rule->src.invert || rule->dest.invert)
107 {
108 warn_elem(e, "must not have inverted 'src' or 'dest' options");
109 fw3_free_rule(rule);
110 continue;
111 }
112 else if (rule->src.set && !rule->src.any &&
113 !(rule->_src = fw3_lookup_zone(state, rule->src.name, false)))
114 {
115 warn_elem(e, "refers to not existing zone '%s'", rule->src.name);
116 fw3_free_rule(rule);
117 continue;
118 }
119 else if (rule->dest.set && !rule->dest.any &&
120 !(rule->_dest = fw3_lookup_zone(state, rule->dest.name, false)))
121 {
122 warn_elem(e, "refers to not existing zone '%s'", rule->dest.name);
123 fw3_free_rule(rule);
124 continue;
125 }
126 else if (rule->ipset.set && state->disable_ipsets)
127 {
128 warn_elem(e, "skipped due to disabled ipset support");
129 fw3_free_rule(rule);
130 continue;
131 }
132 else if (rule->ipset.set && !rule->ipset.any &&
133 !(rule->_ipset = fw3_lookup_ipset(state, rule->ipset.name, false)))
134 {
135 warn_elem(e, "refers to unknown ipset '%s'", rule->ipset.name);
136 fw3_free_rule(rule);
137 continue;
138 }
139
140 if (!rule->_src && rule->target == FW3_FLAG_NOTRACK)
141 {
142 warn_elem(e, "is set to target NOTRACK but has no source assigned");
143 fw3_free_rule(rule);
144 continue;
145 }
146
147 if (!rule->_src && !rule->_dest && !rule->src.any && !rule->dest.any)
148 {
149 warn_elem(e, "has neither a source nor a destination zone assigned "
150 "- assuming an output rule");
151 }
152
153 if (rule->target == FW3_FLAG_UNSPEC)
154 {
155 warn_elem(e, "has no target specified, defaulting to REJECT");
156 rule->target = FW3_FLAG_REJECT;
157 }
158 else if (rule->target > FW3_FLAG_NOTRACK)
159 {
160 warn_elem(e, "has invalid target specified, defaulting to REJECT");
161 rule->target = FW3_FLAG_REJECT;
162 }
163
164 /* NB: rule family... */
165 if (rule->_dest)
166 {
167 setbit(rule->_dest->flags[0], rule->target);
168 setbit(rule->_dest->flags[1], rule->target);
169 }
170
171 list_add_tail(&rule->list, &state->rules);
172 continue;
173 }
174 }
175
176
177 static void
178 print_chain(struct fw3_rule *rule)
179 {
180 char chain[256];
181
182 sprintf(chain, "delegate_output");
183
184 if (rule->target == FW3_FLAG_NOTRACK)
185 {
186 sprintf(chain, "zone_%s_notrack", rule->src.name);
187 }
188 else
189 {
190 if (rule->src.set)
191 {
192 if (!rule->src.any)
193 {
194 if (rule->dest.set)
195 sprintf(chain, "zone_%s_forward", rule->src.name);
196 else
197 sprintf(chain, "zone_%s_input", rule->src.name);
198 }
199 else
200 {
201 if (rule->dest.set)
202 sprintf(chain, "delegate_forward");
203 else
204 sprintf(chain, "delegate_input");
205 }
206 }
207
208 if (rule->dest.set && !rule->src.set)
209 sprintf(chain, "zone_%s_output", rule->dest.name);
210 }
211
212 fw3_pr("-A %s", chain);
213 }
214
215 static void print_target(struct fw3_rule *rule)
216 {
217 const char *target;
218
219 switch(rule->target)
220 {
221 case FW3_FLAG_ACCEPT:
222 case FW3_FLAG_DROP:
223 case FW3_FLAG_NOTRACK:
224 target = fw3_flag_names[rule->target];
225 break;
226
227 default:
228 target = fw3_flag_names[FW3_FLAG_REJECT];
229 break;
230 }
231
232 if (rule->dest.set && !rule->dest.any)
233 fw3_pr(" -j zone_%s_dest_%s\n", rule->dest.name, target);
234 else if (rule->target == FW3_FLAG_REJECT)
235 fw3_pr(" -j reject\n");
236 else
237 fw3_pr(" -j %s\n", target);
238 }
239
240 static void
241 print_rule(struct fw3_state *state, enum fw3_family family,
242 enum fw3_table table, struct fw3_rule *rule,
243 struct fw3_protocol *proto,
244 struct fw3_address *sip, struct fw3_address *dip,
245 struct fw3_port *sport, struct fw3_port *dport,
246 struct fw3_mac *mac, struct fw3_icmptype *icmptype)
247 {
248 if (!fw3_is_family(sip, family) || !fw3_is_family(dip, family))
249 {
250 info(" ! Skipping due to different family of ip address");
251 return;
252 }
253
254 if (proto->protocol == 58 && family == FW3_FAMILY_V4)
255 {
256 info(" ! Skipping due to different family of protocol");
257 return;
258 }
259
260 print_chain(rule);
261 fw3_format_ipset(rule->_ipset, rule->ipset.invert);
262 fw3_format_protocol(proto, family);
263 fw3_format_src_dest(sip, dip);
264 fw3_format_sport_dport(sport, dport);
265 fw3_format_icmptype(icmptype, family);
266 fw3_format_mac(mac);
267 fw3_format_limit(&rule->limit);
268 fw3_format_time(&rule->time);
269 fw3_format_extra(rule->extra);
270 fw3_format_comment(rule->name);
271 print_target(rule);
272 }
273
274 static void
275 expand_rule(struct fw3_state *state, enum fw3_family family,
276 enum fw3_table table, struct fw3_rule *rule, int num)
277 {
278 struct fw3_protocol *proto;
279 struct fw3_address *sip;
280 struct fw3_address *dip;
281 struct fw3_port *sport;
282 struct fw3_port *dport;
283 struct fw3_mac *mac;
284 struct fw3_icmptype *icmptype;
285
286 struct list_head *sports = NULL;
287 struct list_head *dports = NULL;
288 struct list_head *icmptypes = NULL;
289
290 struct list_head empty;
291 INIT_LIST_HEAD(&empty);
292
293 if (!fw3_is_family(rule, family))
294 return;
295
296 if ((table == FW3_TABLE_RAW && rule->target != FW3_FLAG_NOTRACK) ||
297 (table != FW3_TABLE_FILTER))
298 return;
299
300 if (rule->name)
301 info(" * Rule '%s'", rule->name);
302 else
303 info(" * Rule #%u", num);
304
305 if (!fw3_is_family(rule->_src, family) ||
306 !fw3_is_family(rule->_dest, family))
307 {
308 info(" ! Skipping due to different family of zone");
309 return;
310 }
311
312 if (rule->_ipset)
313 {
314 if (!fw3_is_family(rule->_ipset, family))
315 {
316 info(" ! Skipping due to different family in ipset");
317 return;
318 }
319
320 set(rule->_ipset->flags, family, family);
321 }
322
323 list_for_each_entry(proto, &rule->proto, list)
324 {
325 /* icmp / ipv6-icmp */
326 if (proto->protocol == 1 || proto->protocol == 58)
327 {
328 sports = &empty;
329 dports = &empty;
330 icmptypes = &rule->icmp_type;
331 }
332 else
333 {
334 sports = &rule->port_src;
335 dports = &rule->port_dest;
336 icmptypes = &empty;
337 }
338
339 fw3_foreach(sip, &rule->ip_src)
340 fw3_foreach(dip, &rule->ip_dest)
341 fw3_foreach(sport, sports)
342 fw3_foreach(dport, dports)
343 fw3_foreach(mac, &rule->mac_src)
344 fw3_foreach(icmptype, icmptypes)
345 print_rule(state, family, table, rule, proto, sip, dip,
346 sport, dport, mac, icmptype);
347 }
348 }
349
350 void
351 fw3_print_rules(struct fw3_state *state, enum fw3_family family,
352 enum fw3_table table)
353 {
354 int num = 0;
355 struct fw3_rule *rule;
356
357 list_for_each_entry(rule, &state->rules, list)
358 expand_rule(state, family, table, rule, num++);
359 }