ipsets: allow blank/commented lines with loadfile
[project/firewall3.git] / ipsets.c
1 /*
2 * firewall3 - 3rd OpenWrt UCI firewall implementation
3 *
4 * Copyright (C) 2013 Jo-Philipp Wich <jo@mein.io>
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 <ctype.h>
20
21 #include "ipsets.h"
22
23
24 const struct fw3_option fw3_ipset_opts[] = {
25 FW3_OPT("enabled", bool, ipset, enabled),
26 FW3_OPT("reload_set", bool, ipset, reload_set),
27 FW3_OPT("counters", bool, ipset, counters),
28 FW3_OPT("comment", bool, ipset, comment),
29
30 FW3_OPT("name", string, ipset, name),
31 FW3_OPT("family", family, ipset, family),
32
33 FW3_OPT("storage", ipset_method, ipset, method),
34 FW3_LIST("match", ipset_datatype, ipset, datatypes),
35
36 FW3_OPT("iprange", address, ipset, iprange),
37 FW3_OPT("portrange", port, ipset, portrange),
38
39 FW3_OPT("netmask", int, ipset, netmask),
40 FW3_OPT("maxelem", int, ipset, maxelem),
41 FW3_OPT("hashsize", int, ipset, hashsize),
42 FW3_OPT("timeout", int, ipset, timeout),
43
44 FW3_OPT("external", string, ipset, external),
45
46 FW3_LIST("entry", setentry, ipset, entries),
47 FW3_OPT("loadfile", string, ipset, loadfile),
48
49 { }
50 };
51
52 #define T(m, t1, t2, t3, r, o) \
53 { FW3_IPSET_METHOD_##m, \
54 FW3_IPSET_TYPE_##t1 | (FW3_IPSET_TYPE_##t2 << 8) | (FW3_IPSET_TYPE_##t3 << 16), \
55 r, o }
56
57 enum ipset_optflag {
58 OPT_IPRANGE = (1 << 0),
59 OPT_PORTRANGE = (1 << 1),
60 OPT_NETMASK = (1 << 2),
61 OPT_HASHSIZE = (1 << 3),
62 OPT_MAXELEM = (1 << 4),
63 OPT_FAMILY = (1 << 5),
64 };
65
66 struct ipset_type {
67 enum fw3_ipset_method method;
68 uint32_t types;
69 uint8_t required;
70 uint8_t optional;
71 };
72
73 static struct ipset_type ipset_types[] = {
74 T(BITMAP, IP, UNSPEC, UNSPEC, OPT_IPRANGE, OPT_NETMASK),
75 T(BITMAP, IP, MAC, UNSPEC, OPT_IPRANGE, 0),
76 T(BITMAP, PORT, UNSPEC, UNSPEC, OPT_PORTRANGE, 0),
77
78 T(HASH, IP, UNSPEC, UNSPEC, 0,
79 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM | OPT_NETMASK),
80 T(HASH, NET, UNSPEC, UNSPEC, 0,
81 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
82 T(HASH, IP, PORT, UNSPEC, 0,
83 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
84 T(HASH, NET, PORT, UNSPEC, 0,
85 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
86 T(HASH, IP, PORT, IP, 0,
87 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
88 T(HASH, IP, PORT, NET, 0,
89 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
90
91 T(LIST, SET, UNSPEC, UNSPEC, 0, OPT_MAXELEM),
92 };
93
94
95 static bool
96 check_types(struct uci_element *e, struct fw3_ipset *ipset)
97 {
98 int i = 0;
99 uint32_t typelist = 0;
100 struct fw3_ipset_datatype *type;
101
102 list_for_each_entry(type, &ipset->datatypes, list)
103 {
104 if (i >= 3)
105 {
106 warn_section("ipset", ipset, e, "must not have more than 3 datatypes assigned");
107 return false;
108 }
109
110 typelist |= (type->type << (i++ * 8));
111 }
112
113 /* find a suitable storage method if none specified */
114 if (ipset->method == FW3_IPSET_METHOD_UNSPEC)
115 {
116 for (i = 0; i < ARRAY_SIZE(ipset_types); i++)
117 {
118 /* skip type for v6 if it does not support family */
119 if (ipset->family != FW3_FAMILY_V4 &&
120 !(ipset_types[i].optional & OPT_FAMILY))
121 continue;
122
123 if (ipset_types[i].types == typelist)
124 {
125 ipset->method = ipset_types[i].method;
126
127 warn_section("ipset", ipset, e, "defines no storage method, assuming '%s'",
128 fw3_ipset_method_names[ipset->method]);
129
130 break;
131 }
132 }
133 }
134
135 //typelist |= ipset->method;
136
137 for (i = 0; i < ARRAY_SIZE(ipset_types); i++)
138 {
139 if (ipset_types[i].method == ipset->method &&
140 ipset_types[i].types == typelist)
141 {
142 if (!ipset->external)
143 {
144 if ((ipset_types[i].required & OPT_IPRANGE) &&
145 !ipset->iprange.set)
146 {
147 warn_section("ipset", ipset, e, "requires an ip range");
148 return false;
149 }
150
151 if ((ipset_types[i].required & OPT_PORTRANGE) &&
152 !ipset->portrange.set)
153 {
154 warn_section("ipset", ipset, e, "requires a port range");
155 return false;
156 }
157
158 if (!(ipset_types[i].required & OPT_IPRANGE) &&
159 ipset->iprange.set)
160 {
161 warn_section("ipset", ipset, e, "iprange ignored");
162 ipset->iprange.set = false;
163 }
164
165 if (!(ipset_types[i].required & OPT_PORTRANGE) &&
166 ipset->portrange.set)
167 {
168 warn_section("ipset", ipset, e, "portrange ignored");
169 ipset->portrange.set = false;
170 }
171
172 if (!(ipset_types[i].optional & OPT_NETMASK) &&
173 ipset->netmask > 0)
174 {
175 warn_section("ipset", ipset, e, "netmask ignored");
176 ipset->netmask = 0;
177 }
178
179 if (!(ipset_types[i].optional & OPT_HASHSIZE) &&
180 ipset->hashsize > 0)
181 {
182 warn_section("ipset", ipset, e, "hashsize ignored");
183 ipset->hashsize = 0;
184 }
185
186 if (!(ipset_types[i].optional & OPT_MAXELEM) &&
187 ipset->maxelem > 0)
188 {
189 warn_section("ipset", ipset, e, "maxelem ignored");
190 ipset->maxelem = 0;
191 }
192
193 if (!(ipset_types[i].optional & OPT_FAMILY) &&
194 ipset->family != FW3_FAMILY_V4)
195 {
196 warn_section("ipset", ipset, e, "family ignored");
197 ipset->family = FW3_FAMILY_V4;
198 }
199 }
200
201 return true;
202 }
203 }
204
205 warn_section("ipset", ipset, e, "has an invalid combination of storage method and matches");
206 return false;
207 }
208
209 static bool
210 check_ipset(struct fw3_state *state, struct fw3_ipset *ipset, struct uci_element *e)
211 {
212 if (!ipset->enabled) {
213 return false;
214 }
215
216 if (ipset->external)
217 {
218 if (!*ipset->external)
219 ipset->external = NULL;
220 else if (!ipset->name)
221 ipset->name = ipset->external;
222 }
223
224 if (!ipset->name || !*ipset->name)
225 {
226 warn_section("ipset", ipset, e, "ipset must have a name assigned");
227 }
228 //else if (fw3_lookup_ipset(state, ipset->name) != NULL)
229 //{
230 // warn_section("ipset", ipset, e, "has duplicated set name", ipset->name);
231 //}
232 else if (ipset->family == FW3_FAMILY_ANY)
233 {
234 warn_section("ipset", ipset, e, "must not have family 'any'");
235 }
236 else if (ipset->iprange.set && ipset->family != ipset->iprange.family)
237 {
238 warn_section("ipset", ipset, e, "has iprange of wrong address family");
239 }
240 else if (list_empty(&ipset->datatypes))
241 {
242 warn_section("ipset", ipset, e, "has no datatypes assigned");
243 }
244 else if (check_types(e, ipset))
245 {
246 return true;
247 }
248
249 return false;
250 }
251
252 static struct fw3_ipset *
253 fw3_alloc_ipset(struct fw3_state *state)
254 {
255 struct fw3_ipset *ipset;
256
257 ipset = calloc(1, sizeof(*ipset));
258 if (!ipset)
259 return NULL;
260
261 INIT_LIST_HEAD(&ipset->datatypes);
262 INIT_LIST_HEAD(&ipset->entries);
263
264 ipset->comment = false;
265 ipset->counters = false;
266 ipset->enabled = true;
267 ipset->family = FW3_FAMILY_V4;
268 ipset->reload_set = false;
269
270 list_add_tail(&ipset->list, &state->ipsets);
271
272 return ipset;
273 }
274
275 void
276 fw3_load_ipsets(struct fw3_state *state, struct uci_package *p,
277 struct blob_attr *a)
278 {
279 struct uci_section *s;
280 struct uci_element *e;
281 struct fw3_ipset *ipset;
282 struct blob_attr *entry;
283 unsigned rem;
284
285 INIT_LIST_HEAD(&state->ipsets);
286
287 if (state->disable_ipsets)
288 return;
289
290 blob_for_each_attr(entry, a, rem)
291 {
292 const char *type;
293 const char *name = "ubus ipset";
294
295 if (!fw3_attr_parse_name_type(entry, &name, &type))
296 continue;
297
298 if (strcmp(type, "ipset"))
299 continue;
300
301 ipset = fw3_alloc_ipset(state);
302 if (!ipset)
303 continue;
304
305 if (!fw3_parse_blob_options(ipset, fw3_ipset_opts, entry, name))
306 {
307 warn_section("ipset", ipset, NULL, "skipped due to invalid options");
308 fw3_free_ipset(ipset);
309 continue;
310 }
311
312 if (!check_ipset(state, ipset, NULL))
313 fw3_free_ipset(ipset);
314 }
315
316 uci_foreach_element(&p->sections, e)
317 {
318 s = uci_to_section(e);
319
320 if (strcmp(s->type, "ipset"))
321 continue;
322
323 ipset = fw3_alloc_ipset(state);
324
325 if (!ipset)
326 continue;
327
328 if (!fw3_parse_options(ipset, fw3_ipset_opts, s))
329 warn_elem(e, "has invalid options");
330
331 if (!check_ipset(state, ipset, e))
332 fw3_free_ipset(ipset);
333 }
334 }
335
336
337 static void
338 load_file(struct fw3_ipset *ipset)
339 {
340 FILE *f;
341 char line[128];
342 char *p;
343
344 if (!ipset->loadfile)
345 return;
346
347 info(" * Loading file %s", ipset->loadfile);
348
349 f = fopen(ipset->loadfile, "r");
350
351 if (!f) {
352 info(" ! Skipping due to open error: %s", strerror(errno));
353 return;
354 }
355
356 while (fgets(line, sizeof(line), f)) {
357 p = line;
358 while (isspace(*p))
359 p++;
360 if (*p && *p != '#')
361 fw3_pr("add %s %s", ipset->name, line);
362 }
363
364 fclose(f);
365 }
366
367 static void
368 create_ipset(struct fw3_ipset *ipset, struct fw3_state *state)
369 {
370 bool first = true;
371 struct fw3_setentry *entry;
372 struct fw3_ipset_datatype *type;
373
374 info(" * Creating ipset %s", ipset->name);
375
376 first = true;
377 fw3_pr("create %s %s", ipset->name, fw3_ipset_method_names[ipset->method]);
378
379 list_for_each_entry(type, &ipset->datatypes, list)
380 {
381 fw3_pr("%c%s", first ? ':' : ',', fw3_ipset_type_names[type->type]);
382 first = false;
383 }
384
385 if (ipset->method == FW3_IPSET_METHOD_HASH)
386 fw3_pr(" family inet%s", (ipset->family == FW3_FAMILY_V4) ? "" : "6");
387
388 if (ipset->iprange.set)
389 {
390 fw3_pr(" range %s", fw3_address_to_string(&ipset->iprange, false, true));
391 }
392 else if (ipset->portrange.set)
393 {
394 fw3_pr(" range %u-%u",
395 ipset->portrange.port_min, ipset->portrange.port_max);
396 }
397
398 if (ipset->timeout > 0)
399 fw3_pr(" timeout %u", ipset->timeout);
400
401 if (ipset->maxelem > 0)
402 fw3_pr(" maxelem %u", ipset->maxelem);
403
404 if (ipset->netmask > 0)
405 fw3_pr(" netmask %u", ipset->netmask);
406
407 if (ipset->hashsize > 0)
408 fw3_pr(" hashsize %u", ipset->hashsize);
409
410 if (ipset->counters)
411 fw3_pr(" counters");
412
413 if (ipset->comment)
414 fw3_pr(" comment");
415
416 fw3_pr("\n");
417
418 list_for_each_entry(entry, &ipset->entries, list)
419 fw3_pr("add %s %s\n", ipset->name, entry->value);
420
421 load_file(ipset);
422 }
423
424 void
425 fw3_create_ipsets(struct fw3_state *state, enum fw3_family family,
426 bool reload_set)
427 {
428 unsigned int delay, tries;
429 bool exec = false;
430 struct fw3_ipset *ipset;
431
432 if (state->disable_ipsets)
433 return;
434
435 /* spawn ipsets */
436 list_for_each_entry(ipset, &state->ipsets, list)
437 {
438 if (ipset->family != family)
439 continue;
440
441 if (ipset->external)
442 continue;
443
444 if (fw3_check_ipset(ipset) &&
445 (reload_set && !ipset->reload_set))
446 continue;
447
448 if (!exec)
449 {
450 exec = fw3_command_pipe(false, "ipset", "-exist", "-");
451
452 if (!exec)
453 return;
454 }
455
456 create_ipset(ipset, state);
457 }
458
459 if (exec)
460 {
461 fw3_pr("quit\n");
462 fw3_command_close();
463 }
464
465 /* wait a little expontially for ipsets to appear */
466 list_for_each_entry(ipset, &state->ipsets, list)
467 {
468 if (ipset->external)
469 continue;
470
471 delay = 5;
472 for (tries = 0; !fw3_check_ipset(ipset) && tries < 10; tries++)
473 usleep(delay<<1);
474 }
475 }
476
477 void
478 fw3_destroy_ipsets(struct fw3_state *state, enum fw3_family family,
479 bool reload_set)
480 {
481 unsigned int delay, tries;
482 bool exec = false;
483 struct fw3_ipset *ipset;
484
485 if (state->disable_ipsets)
486 return;
487
488 /* destroy ipsets */
489 list_for_each_entry(ipset, &state->ipsets, list)
490 {
491 if (ipset->family != family ||
492 (reload_set && !ipset->reload_set))
493 continue;
494
495 if (!exec)
496 {
497 exec = fw3_command_pipe(false, "ipset", "-exist", "-");
498
499 if (!exec)
500 return;
501 }
502
503 info(" * Deleting ipset %s", ipset->name);
504
505 fw3_pr("flush %s\n", ipset->name);
506 fw3_pr("destroy %s\n", ipset->name);
507 }
508
509 if (exec)
510 {
511 fw3_pr("quit\n");
512 fw3_command_close();
513 }
514
515 /* wait for ipsets to disappear */
516 list_for_each_entry(ipset, &state->ipsets, list)
517 {
518 if (ipset->external)
519 continue;
520
521 delay = 5;
522 for (tries = 0; fw3_check_ipset(ipset) && tries < 10; tries++)
523 usleep(delay<<1);
524 }
525 }
526
527 struct fw3_ipset *
528 fw3_lookup_ipset(struct fw3_state *state, const char *name)
529 {
530 struct fw3_ipset *s;
531
532 if (list_empty(&state->ipsets))
533 return NULL;
534
535 list_for_each_entry(s, &state->ipsets, list)
536 {
537 if (strcmp(s->name, name))
538 continue;
539
540 return s;
541 }
542
543 return NULL;
544 }
545
546 bool
547 fw3_check_ipset(struct fw3_ipset *set)
548 {
549 bool rv = false;
550
551 socklen_t sz;
552 int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
553 struct ip_set_req_version req_ver;
554 struct ip_set_req_get_set req_name;
555
556 if (s < 0 || fcntl(s, F_SETFD, FD_CLOEXEC))
557 goto out;
558
559 sz = sizeof(req_ver);
560 req_ver.op = IP_SET_OP_VERSION;
561
562 if (getsockopt(s, SOL_IP, SO_IP_SET, &req_ver, &sz))
563 goto out;
564
565 sz = sizeof(req_name);
566 req_name.op = IP_SET_OP_GET_BYNAME;
567 req_name.version = req_ver.version;
568 snprintf(req_name.set.name, IPSET_MAXNAMELEN - 1, "%s",
569 set->external ? set->external : set->name);
570
571 if (getsockopt(s, SOL_IP, SO_IP_SET, &req_name, &sz))
572 goto out;
573
574 rv = ((sz == sizeof(req_name)) && (req_name.set.index != IPSET_INVALID_ID));
575
576 out:
577 if (s >= 0)
578 close(s);
579
580 return rv;
581 }
582
583 void
584 fw3_ipsets_update_run_state(enum fw3_family family, struct fw3_state *run_state,
585 struct fw3_state *cfg_state)
586 {
587 struct fw3_ipset *ipset_run, *ipset_cfg;
588 bool in_cfg;
589
590 list_for_each_entry(ipset_run, &run_state->ipsets, list) {
591 if (ipset_run->family != family)
592 continue;
593
594 in_cfg = false;
595
596 list_for_each_entry(ipset_cfg, &cfg_state->ipsets, list) {
597 if (ipset_cfg->family != family)
598 continue;
599
600 if (strlen(ipset_run->name) ==
601 strlen(ipset_cfg->name) &&
602 !strcmp(ipset_run->name, ipset_cfg->name)) {
603 in_cfg = true;
604 break;
605 }
606 }
607
608 /* If a set is found in run_state, but not in cfg_state then the
609 * set has been deleted/renamed. Set reload_set to true to force
610 * the old set to be destroyed in the "stop" fase of the reload.
611 * If the set is found, then copy the reload_set value from the
612 * configuration state. This ensures that the elements are
613 * always updated according to the configuration, and not the
614 * runtime state (which the user might have forgotten).
615 */
616 if (!in_cfg)
617 ipset_run->reload_set = true;
618 else
619 ipset_run->reload_set = ipset_cfg->reload_set;
620 }
621 }