96afcd2dda4730051d0ec272e9d6c4b420621683
[project/firewall3.git] / options.h
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 #ifndef __FW3_OPTIONS_H
20 #define __FW3_OPTIONS_H
21
22
23 #include <errno.h>
24
25 #include <stdlib.h>
26 #include <stdarg.h>
27 #include <stdbool.h>
28
29 #include <ctype.h>
30 #include <string.h>
31
32 #include <netdb.h>
33 #include <arpa/inet.h>
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <netinet/ether.h>
37
38 #include <time.h>
39
40 #include <uci.h>
41
42 #include <libubox/list.h>
43 #include <libubox/utils.h>
44
45 #include "icmp_codes.h"
46 #include "utils.h"
47
48
49 enum fw3_table
50 {
51 FW3_TABLE_FILTER = 0,
52 FW3_TABLE_NAT = 1,
53 FW3_TABLE_MANGLE = 2,
54 FW3_TABLE_RAW = 3,
55 };
56
57 enum fw3_family
58 {
59 FW3_FAMILY_ANY = 0,
60 FW3_FAMILY_V4 = 4,
61 FW3_FAMILY_V6 = 5,
62 };
63
64 enum fw3_target
65 {
66 FW3_TARGET_UNSPEC = 0,
67 FW3_TARGET_ACCEPT = 6,
68 FW3_TARGET_REJECT = 7,
69 FW3_TARGET_DROP = 8,
70 FW3_TARGET_NOTRACK = 9,
71 FW3_TARGET_DNAT = 10,
72 FW3_TARGET_SNAT = 11,
73 };
74
75 enum fw3_default
76 {
77 FW3_DEFAULT_UNSPEC = 0,
78 FW3_DEFAULT_CUSTOM_CHAINS = 12,
79 FW3_DEFAULT_SYN_FLOOD = 13,
80 FW3_DEFAULT_MTU_FIX = 14,
81 FW3_DEFAULT_DROP_INVALID = 15,
82 };
83
84 extern const char *fw3_flag_names[FW3_DEFAULT_DROP_INVALID + 1];
85
86
87 enum fw3_limit_unit
88 {
89 FW3_LIMIT_UNIT_SECOND = 0,
90 FW3_LIMIT_UNIT_MINUTE = 1,
91 FW3_LIMIT_UNIT_HOUR = 2,
92 FW3_LIMIT_UNIT_DAY = 3,
93 };
94
95 enum fw3_ipset_method
96 {
97 FW3_IPSET_METHOD_UNSPEC = 0,
98 FW3_IPSET_METHOD_BITMAP = 1,
99 FW3_IPSET_METHOD_HASH = 2,
100 FW3_IPSET_METHOD_LIST = 3,
101 };
102
103 enum fw3_ipset_type
104 {
105 FW3_IPSET_TYPE_UNSPEC = 0,
106 FW3_IPSET_TYPE_IP = 1,
107 FW3_IPSET_TYPE_PORT = 2,
108 FW3_IPSET_TYPE_MAC = 3,
109 FW3_IPSET_TYPE_NET = 4,
110 FW3_IPSET_TYPE_SET = 5,
111 };
112
113 enum fw3_include_type
114 {
115 FW3_INC_TYPE_SCRIPT = 0,
116 FW3_INC_TYPE_RESTORE = 1,
117 };
118
119 struct fw3_ipset_datatype
120 {
121 struct list_head list;
122 enum fw3_ipset_type type;
123 bool dest;
124 };
125
126 struct fw3_device
127 {
128 struct list_head list;
129
130 bool set;
131 bool any;
132 bool invert;
133 char name[32];
134 };
135
136 struct fw3_address
137 {
138 struct list_head list;
139
140 bool set;
141 bool range;
142 bool invert;
143 enum fw3_family family;
144 int mask;
145 union {
146 struct in_addr v4;
147 struct in6_addr v6;
148 struct ether_addr mac;
149 } address;
150 union {
151 struct in_addr v4;
152 struct in6_addr v6;
153 struct ether_addr mac;
154 } address2;
155 };
156
157 struct fw3_mac
158 {
159 struct list_head list;
160
161 bool set;
162 bool invert;
163 struct ether_addr mac;
164 };
165
166 struct fw3_protocol
167 {
168 struct list_head list;
169
170 bool any;
171 bool invert;
172 uint16_t protocol;
173 };
174
175 struct fw3_port
176 {
177 struct list_head list;
178
179 bool set;
180 bool invert;
181 uint16_t port_min;
182 uint16_t port_max;
183 };
184
185 struct fw3_icmptype
186 {
187 struct list_head list;
188
189 bool invert;
190 enum fw3_family family;
191 uint8_t type;
192 uint8_t code_min;
193 uint8_t code_max;
194 uint8_t type6;
195 uint8_t code6_min;
196 uint8_t code6_max;
197 };
198
199 struct fw3_limit
200 {
201 bool invert;
202 int rate;
203 int burst;
204 enum fw3_limit_unit unit;
205 };
206
207 struct fw3_time
208 {
209 bool utc;
210 struct tm datestart;
211 struct tm datestop;
212 uint32_t timestart;
213 uint32_t timestop;
214 uint32_t monthdays; /* bit 0 is invert + 1 .. 31 */
215 uint8_t weekdays; /* bit 0 is invert + 1 .. 7 */
216 };
217
218 struct fw3_defaults
219 {
220 enum fw3_target policy_input;
221 enum fw3_target policy_output;
222 enum fw3_target policy_forward;
223
224 bool drop_invalid;
225
226 bool syn_flood;
227 struct fw3_limit syn_flood_rate;
228
229 bool tcp_syncookies;
230 bool tcp_ecn;
231 bool tcp_window_scaling;
232
233 bool accept_redirects;
234 bool accept_source_route;
235
236 bool custom_chains;
237
238 bool disable_ipv6;
239
240 uint16_t flags;
241 };
242
243 struct fw3_zone
244 {
245 struct list_head list;
246 struct list_head running_list;
247
248 const char *name;
249
250 enum fw3_family family;
251
252 enum fw3_target policy_input;
253 enum fw3_target policy_output;
254 enum fw3_target policy_forward;
255
256 struct list_head networks;
257 struct list_head devices;
258 struct list_head subnets;
259
260 const char *extra_src;
261 const char *extra_dest;
262
263 bool masq;
264 struct list_head masq_src;
265 struct list_head masq_dest;
266
267 bool conntrack;
268 bool mtu_fix;
269
270 bool log;
271 struct fw3_limit log_limit;
272
273 bool custom_chains;
274
275 uint16_t src_flags;
276 uint16_t dst_flags;
277 };
278
279 struct fw3_rule
280 {
281 struct list_head list;
282
283 const char *name;
284
285 enum fw3_family family;
286
287 struct fw3_zone *_src;
288 struct fw3_zone *_dest;
289
290 struct fw3_device src;
291 struct fw3_device dest;
292
293 struct fw3_ipset *_ipset;
294 struct fw3_device ipset;
295
296 struct list_head proto;
297
298 struct list_head ip_src;
299 struct list_head mac_src;
300 struct list_head port_src;
301
302 struct list_head ip_dest;
303 struct list_head port_dest;
304
305 struct list_head icmp_type;
306
307 struct fw3_limit limit;
308 struct fw3_time time;
309
310 enum fw3_target target;
311
312 const char *extra;
313 };
314
315 struct fw3_redirect
316 {
317 struct list_head list;
318
319 const char *name;
320
321 enum fw3_family family;
322
323 struct fw3_zone *_src;
324 struct fw3_zone *_dest;
325
326 struct fw3_device src;
327 struct fw3_device dest;
328
329 struct fw3_ipset *_ipset;
330 struct fw3_device ipset;
331
332 struct list_head proto;
333
334 struct fw3_address ip_src;
335 struct list_head mac_src;
336 struct fw3_port port_src;
337
338 struct fw3_address ip_dest;
339 struct fw3_port port_dest;
340
341 struct fw3_address ip_redir;
342 struct fw3_port port_redir;
343
344 struct fw3_time time;
345
346 enum fw3_target target;
347
348 const char *extra;
349
350 bool reflection;
351 };
352
353 struct fw3_forward
354 {
355 struct list_head list;
356
357 const char *name;
358
359 enum fw3_family family;
360
361 struct fw3_zone *_src;
362 struct fw3_zone *_dest;
363
364 struct fw3_device src;
365 struct fw3_device dest;
366 };
367
368 struct fw3_ipset
369 {
370 struct list_head list;
371 struct list_head running_list;
372
373 const char *name;
374 enum fw3_family family;
375
376 enum fw3_ipset_method method;
377 struct list_head datatypes;
378
379 struct fw3_address iprange;
380 struct fw3_port portrange;
381
382 int netmask;
383 int maxelem;
384 int hashsize;
385
386 int timeout;
387
388 const char *external;
389
390 uint16_t flags;
391 };
392
393 struct fw3_include
394 {
395 struct list_head list;
396 struct list_head running_list;
397
398 const char *name;
399 enum fw3_family family;
400
401 const char *path;
402 enum fw3_include_type type;
403 };
404
405 struct fw3_state
406 {
407 struct uci_context *uci;
408 struct fw3_defaults defaults;
409 struct list_head zones;
410 struct list_head rules;
411 struct list_head redirects;
412 struct list_head forwards;
413 struct list_head ipsets;
414 struct list_head includes;
415
416 struct fw3_defaults running_defaults;
417 struct list_head running_zones;
418 struct list_head running_ipsets;
419
420 bool disable_ipsets;
421 bool statefile;
422 };
423
424
425 struct fw3_option
426 {
427 const char *name;
428 bool (*parse)(void *, const char *);
429 uintptr_t offset;
430 size_t elem_size;
431 };
432
433 #define FW3_OPT(name, parse, structure, member) \
434 { name, fw3_parse_##parse, offsetof(struct fw3_##structure, member) }
435
436 #define FW3_LIST(name, parse, structure, member) \
437 { name, fw3_parse_##parse, offsetof(struct fw3_##structure, member), \
438 sizeof(struct fw3_##structure) }
439
440
441 bool fw3_parse_bool(void *ptr, const char *val);
442 bool fw3_parse_int(void *ptr, const char *val);
443 bool fw3_parse_string(void *ptr, const char *val);
444 bool fw3_parse_target(void *ptr, const char *val);
445 bool fw3_parse_limit(void *ptr, const char *val);
446 bool fw3_parse_device(void *ptr, const char *val);
447 bool fw3_parse_address(void *ptr, const char *val);
448 bool fw3_parse_mac(void *ptr, const char *val);
449 bool fw3_parse_port(void *ptr, const char *val);
450 bool fw3_parse_family(void *ptr, const char *val);
451 bool fw3_parse_icmptype(void *ptr, const char *val);
452 bool fw3_parse_protocol(void *ptr, const char *val);
453
454 bool fw3_parse_ipset_method(void *ptr, const char *val);
455 bool fw3_parse_ipset_datatype(void *ptr, const char *val);
456
457 bool fw3_parse_include_type(void *ptr, const char *val);
458
459 bool fw3_parse_date(void *ptr, const char *val);
460 bool fw3_parse_time(void *ptr, const char *val);
461 bool fw3_parse_weekdays(void *ptr, const char *val);
462 bool fw3_parse_monthdays(void *ptr, const char *val);
463
464 void fw3_parse_options(void *s, const struct fw3_option *opts,
465 struct uci_section *section);
466
467 void fw3_format_in_out(struct fw3_device *in, struct fw3_device *out);
468 void fw3_format_src_dest(struct fw3_address *src, struct fw3_address *dest);
469 void fw3_format_sport_dport(struct fw3_port *sp, struct fw3_port *dp);
470 void fw3_format_mac(struct fw3_mac *mac);
471 void fw3_format_protocol(struct fw3_protocol *proto, enum fw3_family family);
472 void fw3_format_icmptype(struct fw3_icmptype *icmp, enum fw3_family family);
473 void fw3_format_limit(struct fw3_limit *limit);
474 void fw3_format_ipset(struct fw3_ipset *ipset, bool invert);
475 void fw3_format_time(struct fw3_time *time);
476
477 void __fw3_format_comment(const char *comment, ...);
478 #define fw3_format_comment(...) __fw3_format_comment(__VA_ARGS__, NULL)
479
480 void fw3_format_extra(const char *extra);
481
482 #endif