Use zone_name_src_ACTION chain for input rules with non-wildcard source
[project/firewall3.git] / ipsets.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 "ipsets.h"
20
21
22 const struct fw3_option fw3_ipset_opts[] = {
23 FW3_OPT("enabled", bool, ipset, enabled),
24
25 FW3_OPT("name", string, ipset, name),
26 FW3_OPT("family", family, ipset, family),
27
28 FW3_OPT("storage", ipset_method, ipset, method),
29 FW3_LIST("match", ipset_datatype, ipset, datatypes),
30
31 FW3_OPT("iprange", address, ipset, iprange),
32 FW3_OPT("portrange", port, ipset, portrange),
33
34 FW3_OPT("netmask", int, ipset, netmask),
35 FW3_OPT("maxelem", int, ipset, maxelem),
36 FW3_OPT("hashsize", int, ipset, hashsize),
37 FW3_OPT("timeout", int, ipset, timeout),
38
39 FW3_OPT("external", string, ipset, external),
40
41 { }
42 };
43
44 #define T(m, t1, t2, t3, r, o) \
45 { FW3_IPSET_METHOD_##m, \
46 FW3_IPSET_TYPE_##t1 | (FW3_IPSET_TYPE_##t2 << 8) | (FW3_IPSET_TYPE_##t3 << 16), \
47 r, o }
48
49 enum ipset_optflag {
50 OPT_IPRANGE = (1 << 0),
51 OPT_PORTRANGE = (1 << 1),
52 OPT_NETMASK = (1 << 2),
53 OPT_HASHSIZE = (1 << 3),
54 OPT_MAXELEM = (1 << 4),
55 OPT_FAMILY = (1 << 5),
56 };
57
58 struct ipset_type {
59 enum fw3_ipset_method method;
60 uint32_t types;
61 uint8_t required;
62 uint8_t optional;
63 };
64
65 static struct ipset_type ipset_types[] = {
66 T(BITMAP, IP, UNSPEC, UNSPEC, OPT_IPRANGE, OPT_NETMASK),
67 T(BITMAP, IP, MAC, UNSPEC, OPT_IPRANGE, 0),
68 T(BITMAP, PORT, UNSPEC, UNSPEC, OPT_PORTRANGE, 0),
69
70 T(HASH, IP, UNSPEC, UNSPEC, 0,
71 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM | OPT_NETMASK),
72 T(HASH, NET, UNSPEC, UNSPEC, 0,
73 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
74 T(HASH, IP, PORT, UNSPEC, 0,
75 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
76 T(HASH, NET, PORT, UNSPEC, 0,
77 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
78 T(HASH, IP, PORT, IP, 0,
79 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
80 T(HASH, IP, PORT, NET, 0,
81 OPT_FAMILY | OPT_HASHSIZE | OPT_MAXELEM),
82
83 T(LIST, SET, UNSPEC, UNSPEC, 0, OPT_MAXELEM),
84 };
85
86
87 static bool
88 check_types(struct uci_element *e, struct fw3_ipset *ipset)
89 {
90 int i = 0;
91 uint32_t typelist = 0;
92 struct fw3_ipset_datatype *type;
93
94 list_for_each_entry(type, &ipset->datatypes, list)
95 {
96 if (i >= 3)
97 {
98 warn_elem(e, "must not have more than 3 datatypes assigned");
99 return false;
100 }
101
102 typelist |= (type->type << (i++ * 8));
103 }
104
105 /* find a suitable storage method if none specified */
106 if (ipset->method == FW3_IPSET_METHOD_UNSPEC)
107 {
108 for (i = 0; i < ARRAY_SIZE(ipset_types); i++)
109 {
110 if (ipset_types[i].types == typelist)
111 {
112 ipset->method = ipset_types[i].method;
113
114 warn_elem(e, "defines no storage method, assuming '%s'",
115 fw3_ipset_method_names[ipset->method]);
116
117 break;
118 }
119 }
120 }
121
122 //typelist |= ipset->method;
123
124 for (i = 0; i < ARRAY_SIZE(ipset_types); i++)
125 {
126 if (ipset_types[i].method == ipset->method &&
127 ipset_types[i].types == typelist)
128 {
129 if (!ipset->external)
130 {
131 if ((ipset_types[i].required & OPT_IPRANGE) &&
132 !ipset->iprange.set)
133 {
134 warn_elem(e, "requires an ip range");
135 return false;
136 }
137
138 if ((ipset_types[i].required & OPT_PORTRANGE) &&
139 !ipset->portrange.set)
140 {
141 warn_elem(e, "requires a port range");
142 return false;
143 }
144
145 if (!(ipset_types[i].required & OPT_IPRANGE) &&
146 ipset->iprange.set)
147 {
148 warn_elem(e, "iprange ignored");
149 ipset->iprange.set = false;
150 }
151
152 if (!(ipset_types[i].required & OPT_PORTRANGE) &&
153 ipset->portrange.set)
154 {
155 warn_elem(e, "portrange ignored");
156 ipset->portrange.set = false;
157 }
158
159 if (!(ipset_types[i].optional & OPT_NETMASK) &&
160 ipset->netmask > 0)
161 {
162 warn_elem(e, "netmask ignored");
163 ipset->netmask = 0;
164 }
165
166 if (!(ipset_types[i].optional & OPT_HASHSIZE) &&
167 ipset->hashsize > 0)
168 {
169 warn_elem(e, "hashsize ignored");
170 ipset->hashsize = 0;
171 }
172
173 if (!(ipset_types[i].optional & OPT_MAXELEM) &&
174 ipset->maxelem > 0)
175 {
176 warn_elem(e, "maxelem ignored");
177 ipset->maxelem = 0;
178 }
179
180 if (!(ipset_types[i].optional & OPT_FAMILY) &&
181 ipset->family != FW3_FAMILY_V4)
182 {
183 warn_elem(e, "family ignored");
184 ipset->family = FW3_FAMILY_V4;
185 }
186 }
187
188 return true;
189 }
190 }
191
192 warn_elem(e, "has an invalid combination of storage method and matches");
193 return false;
194 }
195
196 struct fw3_ipset *
197 fw3_alloc_ipset(void)
198 {
199 struct fw3_ipset *ipset;
200
201 ipset = malloc(sizeof(*ipset));
202
203 if (!ipset)
204 return NULL;
205
206 memset(ipset, 0, sizeof(*ipset));
207
208 INIT_LIST_HEAD(&ipset->datatypes);
209
210 ipset->enabled = true;
211 ipset->family = FW3_FAMILY_V4;
212
213 return ipset;
214 }
215
216 void
217 fw3_load_ipsets(struct fw3_state *state, struct uci_package *p)
218 {
219 struct uci_section *s;
220 struct uci_element *e;
221 struct fw3_ipset *ipset;
222
223 INIT_LIST_HEAD(&state->ipsets);
224
225 if (state->disable_ipsets)
226 return;
227
228 uci_foreach_element(&p->sections, e)
229 {
230 s = uci_to_section(e);
231
232 if (strcmp(s->type, "ipset"))
233 continue;
234
235 ipset = fw3_alloc_ipset();
236
237 if (!ipset)
238 continue;
239
240 fw3_parse_options(ipset, fw3_ipset_opts, s);
241
242 if (ipset->external)
243 {
244 if (!*ipset->external)
245 ipset->external = NULL;
246 else if (!ipset->name)
247 ipset->name = ipset->external;
248 }
249
250 if (!ipset->name || !*ipset->name)
251 {
252 warn_elem(e, "must have a name assigned");
253 }
254 //else if (fw3_lookup_ipset(state, ipset->name) != NULL)
255 //{
256 // warn_elem(e, "has duplicated set name '%s'", ipset->name);
257 //}
258 else if (ipset->family == FW3_FAMILY_ANY)
259 {
260 warn_elem(e, "must not have family 'any'");
261 }
262 else if (list_empty(&ipset->datatypes))
263 {
264 warn_elem(e, "has no datatypes assigned");
265 }
266 else if (check_types(e, ipset))
267 {
268 list_add_tail(&ipset->list, &state->ipsets);
269 continue;
270 }
271
272 fw3_free_ipset(ipset);
273 }
274 }
275
276
277 static void
278 create_ipset(struct fw3_ipset *ipset, struct fw3_state *state)
279 {
280 bool first = true;
281
282 struct fw3_ipset_datatype *type;
283
284 info(" * Creating ipset %s", ipset->name);
285
286 first = true;
287 fw3_pr("create %s %s", ipset->name, fw3_ipset_method_names[ipset->method]);
288
289 list_for_each_entry(type, &ipset->datatypes, list)
290 {
291 fw3_pr("%c%s", first ? ':' : ',', fw3_ipset_type_names[type->type]);
292 first = false;
293 }
294
295 if (ipset->iprange.set)
296 {
297 fw3_pr(" range %s", fw3_address_to_string(&ipset->iprange, false));
298 }
299 else if (ipset->portrange.set)
300 {
301 fw3_pr(" range %u-%u",
302 ipset->portrange.port_min, ipset->portrange.port_max);
303 }
304
305 fw3_pr(" family inet%s", (ipset->family == FW3_FAMILY_V4) ? "" : "6");
306
307 if (ipset->timeout > 0)
308 fw3_pr(" timeout %u", ipset->timeout);
309
310 if (ipset->maxelem > 0)
311 fw3_pr(" maxelem %u", ipset->maxelem);
312
313 if (ipset->netmask > 0)
314 fw3_pr(" netmask %u", ipset->netmask);
315
316 if (ipset->hashsize > 0)
317 fw3_pr(" hashsize %u", ipset->hashsize);
318
319 fw3_pr("\n");
320 }
321
322 void
323 fw3_create_ipsets(struct fw3_state *state)
324 {
325 int tries;
326 bool exec = false;
327 struct fw3_ipset *ipset;
328
329 if (state->disable_ipsets)
330 return;
331
332 /* spawn ipsets */
333 list_for_each_entry(ipset, &state->ipsets, list)
334 {
335 if (ipset->external)
336 continue;
337
338 if (!exec)
339 {
340 exec = fw3_command_pipe(false, "ipset", "-exist", "-");
341
342 if (!exec)
343 return;
344 }
345
346 create_ipset(ipset, state);
347 }
348
349 if (exec)
350 {
351 fw3_pr("quit\n");
352 fw3_command_close();
353 }
354
355 /* wait for ipsets to appear */
356 list_for_each_entry(ipset, &state->ipsets, list)
357 {
358 if (ipset->external)
359 continue;
360
361 for (tries = 0; !fw3_check_ipset(ipset) && tries < 10; tries++)
362 usleep(50000);
363 }
364 }
365
366 void
367 fw3_destroy_ipsets(struct fw3_state *state)
368 {
369 int tries;
370 bool exec = false;
371 struct fw3_ipset *ipset;
372
373 /* destroy ipsets */
374 list_for_each_entry(ipset, &state->ipsets, list)
375 {
376 if (!exec)
377 {
378 exec = fw3_command_pipe(false, "ipset", "-exist", "-");
379
380 if (!exec)
381 return;
382 }
383
384 info(" * Deleting ipset %s", ipset->name);
385
386 fw3_pr("flush %s\n", ipset->name);
387 fw3_pr("destroy %s\n", ipset->name);
388 }
389
390 if (exec)
391 {
392 fw3_pr("quit\n");
393 fw3_command_close();
394 }
395
396 /* wait for ipsets to disappear */
397 list_for_each_entry(ipset, &state->ipsets, list)
398 {
399 if (ipset->external)
400 continue;
401
402 for (tries = 0; fw3_check_ipset(ipset) && tries < 10; tries++)
403 usleep(50000);
404 }
405 }
406
407 struct fw3_ipset *
408 fw3_lookup_ipset(struct fw3_state *state, const char *name)
409 {
410 struct fw3_ipset *s;
411
412 if (list_empty(&state->ipsets))
413 return NULL;
414
415 list_for_each_entry(s, &state->ipsets, list)
416 {
417 if (strcmp(s->name, name))
418 continue;
419
420 return s;
421 }
422
423 return NULL;
424 }
425
426 bool
427 fw3_check_ipset(struct fw3_ipset *set)
428 {
429 bool rv = false;
430
431 socklen_t sz;
432 int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
433 struct ip_set_req_version req_ver;
434 struct ip_set_req_get_set req_name;
435
436 if (s < 0 || fcntl(s, F_SETFD, FD_CLOEXEC))
437 goto out;
438
439 sz = sizeof(req_ver);
440 req_ver.op = IP_SET_OP_VERSION;
441
442 if (getsockopt(s, SOL_IP, SO_IP_SET, &req_ver, &sz))
443 goto out;
444
445 sz = sizeof(req_name);
446 req_name.op = IP_SET_OP_GET_BYNAME;
447 req_name.version = req_ver.version;
448 snprintf(req_name.set.name, IPSET_MAXNAMELEN - 1, "%s",
449 set->external ? set->external : set->name);
450
451 if (getsockopt(s, SOL_IP, SO_IP_SET, &req_name, &sz))
452 goto out;
453
454 rv = ((sz == sizeof(req_name)) && (req_name.set.index != IPSET_INVALID_ID));
455
456 out:
457 if (s >= 0)
458 close(s);
459
460 return rv;
461 }