b63db218aead1ea0761a2c2756eb737af619ba8c
[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_ANY)
182                                 {
183                                         warn_elem(e, "family ignored");
184                                         ipset->family = FW3_FAMILY_ANY;
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
212         return ipset;
213 }
214
215 void
216 fw3_load_ipsets(struct fw3_state *state, struct uci_package *p)
217 {
218         struct uci_section *s;
219         struct uci_element *e;
220         struct fw3_ipset *ipset;
221
222         INIT_LIST_HEAD(&state->ipsets);
223
224         if (state->disable_ipsets)
225                 return;
226
227         uci_foreach_element(&p->sections, e)
228         {
229                 s = uci_to_section(e);
230
231                 if (strcmp(s->type, "ipset"))
232                         continue;
233
234                 ipset = fw3_alloc_ipset();
235
236                 if (!ipset)
237                         continue;
238
239                 fw3_parse_options(ipset, fw3_ipset_opts, s);
240
241                 if (ipset->external)
242                 {
243                         if (!*ipset->external)
244                                 ipset->external = NULL;
245                         else if (!ipset->name)
246                                 ipset->name = ipset->external;
247                 }
248
249                 if (!ipset->name || !*ipset->name)
250                 {
251                         warn_elem(e, "must have a name assigned");
252                 }
253                 //else if (fw3_lookup_ipset(state, ipset->name) != NULL)
254                 //{
255                 //      warn_elem(e, "has duplicated set name '%s'", ipset->name);
256                 //}
257                 else if (list_empty(&ipset->datatypes))
258                 {
259                         warn_elem(e, "has no datatypes assigned");
260                 }
261                 else if (check_types(e, ipset))
262                 {
263                         list_add_tail(&ipset->list, &state->ipsets);
264                         continue;
265                 }
266
267                 fw3_free_ipset(ipset);
268         }
269 }
270
271
272 static void
273 create_ipset(struct fw3_ipset *ipset, struct fw3_state *state)
274 {
275         bool first = true;
276
277         struct fw3_ipset_datatype *type;
278
279         if (ipset->external)
280                 return;
281
282         info(" * Creating ipset %s", ipset->name);
283
284         first = true;
285         fw3_pr("create %s %s", ipset->name, fw3_ipset_method_names[ipset->method]);
286
287         list_for_each_entry(type, &ipset->datatypes, list)
288         {
289                 fw3_pr("%c%s", first ? ':' : ',', fw3_ipset_type_names[type->type]);
290                 first = false;
291         }
292
293         if (ipset->iprange.set)
294         {
295                 fw3_pr(" range %s", fw3_address_to_string(&ipset->iprange, false));
296         }
297         else if (ipset->portrange.set)
298         {
299                 fw3_pr(" range %u-%u",
300                        ipset->portrange.port_min, ipset->portrange.port_max);
301         }
302
303         if (ipset->family != FW3_FAMILY_ANY)
304                 fw3_pr(" family inet%s", (ipset->family == FW3_FAMILY_V4) ? "" : "6");
305
306         if (ipset->timeout > 0)
307                 fw3_pr(" timeout %u", ipset->timeout);
308
309         if (ipset->maxelem > 0)
310                 fw3_pr(" maxelem %u", ipset->maxelem);
311
312         if (ipset->netmask > 0)
313                 fw3_pr(" netmask %u", ipset->netmask);
314
315         if (ipset->hashsize > 0)
316                 fw3_pr(" hashsize %u", ipset->hashsize);
317
318         fw3_pr("\n");
319 }
320
321 void
322 fw3_create_ipsets(struct fw3_state *state)
323 {
324         struct fw3_ipset *ipset;
325
326         if (state->disable_ipsets)
327                 return;
328
329         list_for_each_entry(ipset, &state->ipsets, list)
330                 create_ipset(ipset, state);
331
332         fw3_pr("quit\n");
333 }
334
335 void
336 fw3_destroy_ipsets(struct fw3_state *state)
337 {
338         struct fw3_ipset *s;
339
340         list_for_each_entry(s, &state->ipsets, list)
341         {
342                 info(" * Deleting ipset %s", s->name);
343
344                 fw3_pr("flush %s\n", s->name);
345                 fw3_pr("destroy %s\n", s->name);
346         }
347
348         fw3_pr("quit\n");
349 }
350
351 struct fw3_ipset *
352 fw3_lookup_ipset(struct fw3_state *state, const char *name)
353 {
354         struct fw3_ipset *s;
355
356         if (list_empty(&state->ipsets))
357                 return NULL;
358
359         list_for_each_entry(s, &state->ipsets, list)
360         {
361                 if (strcmp(s->name, name))
362                         continue;
363
364                 return s;
365         }
366
367         return NULL;
368 }
369
370 bool
371 fw3_check_ipset(struct fw3_ipset *set)
372 {
373         bool rv = false;
374
375         socklen_t sz;
376         int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
377         struct ip_set_req_version req_ver;
378         struct ip_set_req_get_set req_name;
379
380         if (s < 0 || fcntl(s, F_SETFD, FD_CLOEXEC))
381                 goto out;
382
383         sz = sizeof(req_ver);
384         req_ver.op = IP_SET_OP_VERSION;
385
386         if (getsockopt(s, SOL_IP, SO_IP_SET, &req_ver, &sz))
387                 goto out;
388
389         sz = sizeof(req_name);
390         req_name.op = IP_SET_OP_GET_BYNAME;
391         req_name.version = req_ver.version;
392         snprintf(req_name.set.name, IPSET_MAXNAMELEN - 1, "%s",
393                  set->external ? set->external : set->name);
394
395         if (getsockopt(s, SOL_IP, SO_IP_SET, &req_name, &sz))
396                 goto out;
397
398         rv = ((sz == sizeof(req_name)) && (req_name.set.index != IPSET_INVALID_ID));
399
400 out:
401         if (s >= 0)
402                 close(s);
403
404         return rv;
405 }