GNU Linux-libre 5.10.217-gnu1
[releases.git] / net / netfilter / ipset / ip_set_hash_netport.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (C) 2003-2013 Jozsef Kadlecsik <kadlec@netfilter.org> */
3
4 /* Kernel module implementing an IP set type: the hash:net,port type */
5
6 #include <linux/jhash.h>
7 #include <linux/module.h>
8 #include <linux/ip.h>
9 #include <linux/skbuff.h>
10 #include <linux/errno.h>
11 #include <linux/random.h>
12 #include <net/ip.h>
13 #include <net/ipv6.h>
14 #include <net/netlink.h>
15
16 #include <linux/netfilter.h>
17 #include <linux/netfilter/ipset/pfxlen.h>
18 #include <linux/netfilter/ipset/ip_set.h>
19 #include <linux/netfilter/ipset/ip_set_getport.h>
20 #include <linux/netfilter/ipset/ip_set_hash.h>
21
22 #define IPSET_TYPE_REV_MIN      0
23 /*                              1    SCTP and UDPLITE support added */
24 /*                              2    Range as input support for IPv4 added */
25 /*                              3    nomatch flag support added */
26 /*                              4    Counters support added */
27 /*                              5    Comments support added */
28 /*                              6    Forceadd support added */
29 #define IPSET_TYPE_REV_MAX      7 /* skbinfo support added */
30
31 MODULE_LICENSE("GPL");
32 MODULE_AUTHOR("Jozsef Kadlecsik <kadlec@netfilter.org>");
33 IP_SET_MODULE_DESC("hash:net,port", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX);
34 MODULE_ALIAS("ip_set_hash:net,port");
35
36 /* Type specific function prefix */
37 #define HTYPE           hash_netport
38 #define IP_SET_HASH_WITH_PROTO
39 #define IP_SET_HASH_WITH_NETS
40
41 /* We squeeze the "nomatch" flag into cidr: we don't support cidr == 0
42  * However this way we have to store internally cidr - 1,
43  * dancing back and forth.
44  */
45 #define IP_SET_HASH_WITH_NETS_PACKED
46
47 /* IPv4 variant */
48
49 /* Member elements */
50 struct hash_netport4_elem {
51         __be32 ip;
52         __be16 port;
53         u8 proto;
54         u8 cidr:7;
55         u8 nomatch:1;
56 };
57
58 /* Common functions */
59
60 static bool
61 hash_netport4_data_equal(const struct hash_netport4_elem *ip1,
62                          const struct hash_netport4_elem *ip2,
63                          u32 *multi)
64 {
65         return ip1->ip == ip2->ip &&
66                ip1->port == ip2->port &&
67                ip1->proto == ip2->proto &&
68                ip1->cidr == ip2->cidr;
69 }
70
71 static int
72 hash_netport4_do_data_match(const struct hash_netport4_elem *elem)
73 {
74         return elem->nomatch ? -ENOTEMPTY : 1;
75 }
76
77 static void
78 hash_netport4_data_set_flags(struct hash_netport4_elem *elem, u32 flags)
79 {
80         elem->nomatch = !!((flags >> 16) & IPSET_FLAG_NOMATCH);
81 }
82
83 static void
84 hash_netport4_data_reset_flags(struct hash_netport4_elem *elem, u8 *flags)
85 {
86         swap(*flags, elem->nomatch);
87 }
88
89 static void
90 hash_netport4_data_netmask(struct hash_netport4_elem *elem, u8 cidr)
91 {
92         elem->ip &= ip_set_netmask(cidr);
93         elem->cidr = cidr - 1;
94 }
95
96 static bool
97 hash_netport4_data_list(struct sk_buff *skb,
98                         const struct hash_netport4_elem *data)
99 {
100         u32 flags = data->nomatch ? IPSET_FLAG_NOMATCH : 0;
101
102         if (nla_put_ipaddr4(skb, IPSET_ATTR_IP, data->ip) ||
103             nla_put_net16(skb, IPSET_ATTR_PORT, data->port) ||
104             nla_put_u8(skb, IPSET_ATTR_CIDR, data->cidr + 1) ||
105             nla_put_u8(skb, IPSET_ATTR_PROTO, data->proto) ||
106             (flags &&
107              nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
108                 goto nla_put_failure;
109         return false;
110
111 nla_put_failure:
112         return true;
113 }
114
115 static void
116 hash_netport4_data_next(struct hash_netport4_elem *next,
117                         const struct hash_netport4_elem *d)
118 {
119         next->ip = d->ip;
120         next->port = d->port;
121 }
122
123 #define MTYPE           hash_netport4
124 #define HOST_MASK       32
125 #include "ip_set_hash_gen.h"
126
127 static int
128 hash_netport4_kadt(struct ip_set *set, const struct sk_buff *skb,
129                    const struct xt_action_param *par,
130                    enum ipset_adt adt, struct ip_set_adt_opt *opt)
131 {
132         const struct hash_netport4 *h = set->data;
133         ipset_adtfn adtfn = set->variant->adt[adt];
134         struct hash_netport4_elem e = {
135                 .cidr = INIT_CIDR(h->nets[0].cidr[0], HOST_MASK),
136         };
137         struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
138
139         if (adt == IPSET_TEST)
140                 e.cidr = HOST_MASK - 1;
141
142         if (!ip_set_get_ip4_port(skb, opt->flags & IPSET_DIM_TWO_SRC,
143                                  &e.port, &e.proto))
144                 return -EINVAL;
145
146         ip4addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip);
147         e.ip &= ip_set_netmask(e.cidr + 1);
148
149         return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
150 }
151
152 static int
153 hash_netport4_uadt(struct ip_set *set, struct nlattr *tb[],
154                    enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
155 {
156         struct hash_netport4 *h = set->data;
157         ipset_adtfn adtfn = set->variant->adt[adt];
158         struct hash_netport4_elem e = { .cidr = HOST_MASK - 1 };
159         struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
160         u32 port, port_to, p = 0, ip = 0, ip_to = 0, i = 0;
161         bool with_ports = false;
162         u8 cidr;
163         int ret;
164
165         if (tb[IPSET_ATTR_LINENO])
166                 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
167
168         if (unlikely(!tb[IPSET_ATTR_IP] ||
169                      !ip_set_attr_netorder(tb, IPSET_ATTR_PORT) ||
170                      !ip_set_optattr_netorder(tb, IPSET_ATTR_PORT_TO) ||
171                      !ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
172                 return -IPSET_ERR_PROTOCOL;
173
174         ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP], &ip);
175         if (ret)
176                 return ret;
177
178         ret = ip_set_get_extensions(set, tb, &ext);
179         if (ret)
180                 return ret;
181
182         if (tb[IPSET_ATTR_CIDR]) {
183                 cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
184                 if (!cidr || cidr > HOST_MASK)
185                         return -IPSET_ERR_INVALID_CIDR;
186                 e.cidr = cidr - 1;
187         }
188
189         e.port = nla_get_be16(tb[IPSET_ATTR_PORT]);
190
191         if (tb[IPSET_ATTR_PROTO]) {
192                 e.proto = nla_get_u8(tb[IPSET_ATTR_PROTO]);
193                 with_ports = ip_set_proto_with_ports(e.proto);
194
195                 if (e.proto == 0)
196                         return -IPSET_ERR_INVALID_PROTO;
197         } else {
198                 return -IPSET_ERR_MISSING_PROTO;
199         }
200
201         if (!(with_ports || e.proto == IPPROTO_ICMP))
202                 e.port = 0;
203
204         with_ports = with_ports && tb[IPSET_ATTR_PORT_TO];
205
206         if (tb[IPSET_ATTR_CADT_FLAGS]) {
207                 u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
208
209                 if (cadt_flags & IPSET_FLAG_NOMATCH)
210                         flags |= (IPSET_FLAG_NOMATCH << 16);
211         }
212
213         if (adt == IPSET_TEST || !(with_ports || tb[IPSET_ATTR_IP_TO])) {
214                 e.ip = htonl(ip & ip_set_hostmask(e.cidr + 1));
215                 ret = adtfn(set, &e, &ext, &ext, flags);
216                 return ip_set_enomatch(ret, flags, adt, set) ? -ret :
217                        ip_set_eexist(ret, flags) ? 0 : ret;
218         }
219
220         port = port_to = ntohs(e.port);
221         if (tb[IPSET_ATTR_PORT_TO]) {
222                 port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]);
223                 if (port_to < port)
224                         swap(port, port_to);
225         }
226         if (tb[IPSET_ATTR_IP_TO]) {
227                 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP_TO], &ip_to);
228                 if (ret)
229                         return ret;
230                 if (ip_to < ip)
231                         swap(ip, ip_to);
232                 if (ip + UINT_MAX == ip_to)
233                         return -IPSET_ERR_HASH_RANGE;
234         } else {
235                 ip_set_mask_from_to(ip, ip_to, e.cidr + 1);
236         }
237
238         if (retried) {
239                 ip = ntohl(h->next.ip);
240                 p = ntohs(h->next.port);
241         } else {
242                 p = port;
243         }
244         do {
245                 e.ip = htonl(ip);
246                 ip = ip_set_range_to_cidr(ip, ip_to, &cidr);
247                 e.cidr = cidr - 1;
248                 for (; p <= port_to; p++, i++) {
249                         e.port = htons(p);
250                         if (i > IPSET_MAX_RANGE) {
251                                 hash_netport4_data_next(&h->next, &e);
252                                 return -ERANGE;
253                         }
254                         ret = adtfn(set, &e, &ext, &ext, flags);
255                         if (ret && !ip_set_eexist(ret, flags))
256                                 return ret;
257
258                         ret = 0;
259                 }
260                 p = port;
261         } while (ip++ < ip_to);
262         return ret;
263 }
264
265 /* IPv6 variant */
266
267 struct hash_netport6_elem {
268         union nf_inet_addr ip;
269         __be16 port;
270         u8 proto;
271         u8 cidr:7;
272         u8 nomatch:1;
273 };
274
275 /* Common functions */
276
277 static bool
278 hash_netport6_data_equal(const struct hash_netport6_elem *ip1,
279                          const struct hash_netport6_elem *ip2,
280                          u32 *multi)
281 {
282         return ipv6_addr_equal(&ip1->ip.in6, &ip2->ip.in6) &&
283                ip1->port == ip2->port &&
284                ip1->proto == ip2->proto &&
285                ip1->cidr == ip2->cidr;
286 }
287
288 static int
289 hash_netport6_do_data_match(const struct hash_netport6_elem *elem)
290 {
291         return elem->nomatch ? -ENOTEMPTY : 1;
292 }
293
294 static void
295 hash_netport6_data_set_flags(struct hash_netport6_elem *elem, u32 flags)
296 {
297         elem->nomatch = !!((flags >> 16) & IPSET_FLAG_NOMATCH);
298 }
299
300 static void
301 hash_netport6_data_reset_flags(struct hash_netport6_elem *elem, u8 *flags)
302 {
303         swap(*flags, elem->nomatch);
304 }
305
306 static void
307 hash_netport6_data_netmask(struct hash_netport6_elem *elem, u8 cidr)
308 {
309         ip6_netmask(&elem->ip, cidr);
310         elem->cidr = cidr - 1;
311 }
312
313 static bool
314 hash_netport6_data_list(struct sk_buff *skb,
315                         const struct hash_netport6_elem *data)
316 {
317         u32 flags = data->nomatch ? IPSET_FLAG_NOMATCH : 0;
318
319         if (nla_put_ipaddr6(skb, IPSET_ATTR_IP, &data->ip.in6) ||
320             nla_put_net16(skb, IPSET_ATTR_PORT, data->port) ||
321             nla_put_u8(skb, IPSET_ATTR_CIDR, data->cidr + 1) ||
322             nla_put_u8(skb, IPSET_ATTR_PROTO, data->proto) ||
323             (flags &&
324              nla_put_net32(skb, IPSET_ATTR_CADT_FLAGS, htonl(flags))))
325                 goto nla_put_failure;
326         return false;
327
328 nla_put_failure:
329         return true;
330 }
331
332 static void
333 hash_netport6_data_next(struct hash_netport6_elem *next,
334                         const struct hash_netport6_elem *d)
335 {
336         next->port = d->port;
337 }
338
339 #undef MTYPE
340 #undef HOST_MASK
341
342 #define MTYPE           hash_netport6
343 #define HOST_MASK       128
344 #define IP_SET_EMIT_CREATE
345 #include "ip_set_hash_gen.h"
346
347 static int
348 hash_netport6_kadt(struct ip_set *set, const struct sk_buff *skb,
349                    const struct xt_action_param *par,
350                    enum ipset_adt adt, struct ip_set_adt_opt *opt)
351 {
352         const struct hash_netport6 *h = set->data;
353         ipset_adtfn adtfn = set->variant->adt[adt];
354         struct hash_netport6_elem e = {
355                 .cidr = INIT_CIDR(h->nets[0].cidr[0], HOST_MASK),
356         };
357         struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
358
359         if (adt == IPSET_TEST)
360                 e.cidr = HOST_MASK - 1;
361
362         if (!ip_set_get_ip6_port(skb, opt->flags & IPSET_DIM_TWO_SRC,
363                                  &e.port, &e.proto))
364                 return -EINVAL;
365
366         ip6addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip.in6);
367         ip6_netmask(&e.ip, e.cidr + 1);
368
369         return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
370 }
371
372 static int
373 hash_netport6_uadt(struct ip_set *set, struct nlattr *tb[],
374                    enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
375 {
376         const struct hash_netport6 *h = set->data;
377         ipset_adtfn adtfn = set->variant->adt[adt];
378         struct hash_netport6_elem e = { .cidr = HOST_MASK  - 1 };
379         struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
380         u32 port, port_to;
381         bool with_ports = false;
382         u8 cidr;
383         int ret;
384
385         if (tb[IPSET_ATTR_LINENO])
386                 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
387
388         if (unlikely(!tb[IPSET_ATTR_IP] ||
389                      !ip_set_attr_netorder(tb, IPSET_ATTR_PORT) ||
390                      !ip_set_optattr_netorder(tb, IPSET_ATTR_PORT_TO) ||
391                      !ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
392                 return -IPSET_ERR_PROTOCOL;
393         if (unlikely(tb[IPSET_ATTR_IP_TO]))
394                 return -IPSET_ERR_HASH_RANGE_UNSUPPORTED;
395
396         ret = ip_set_get_ipaddr6(tb[IPSET_ATTR_IP], &e.ip);
397         if (ret)
398                 return ret;
399
400         ret = ip_set_get_extensions(set, tb, &ext);
401         if (ret)
402                 return ret;
403
404         if (tb[IPSET_ATTR_CIDR]) {
405                 cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
406                 if (!cidr || cidr > HOST_MASK)
407                         return -IPSET_ERR_INVALID_CIDR;
408                 e.cidr = cidr - 1;
409         }
410         ip6_netmask(&e.ip, e.cidr + 1);
411
412         e.port = nla_get_be16(tb[IPSET_ATTR_PORT]);
413
414         if (tb[IPSET_ATTR_PROTO]) {
415                 e.proto = nla_get_u8(tb[IPSET_ATTR_PROTO]);
416                 with_ports = ip_set_proto_with_ports(e.proto);
417
418                 if (e.proto == 0)
419                         return -IPSET_ERR_INVALID_PROTO;
420         } else {
421                 return -IPSET_ERR_MISSING_PROTO;
422         }
423
424         if (!(with_ports || e.proto == IPPROTO_ICMPV6))
425                 e.port = 0;
426
427         if (tb[IPSET_ATTR_CADT_FLAGS]) {
428                 u32 cadt_flags = ip_set_get_h32(tb[IPSET_ATTR_CADT_FLAGS]);
429
430                 if (cadt_flags & IPSET_FLAG_NOMATCH)
431                         flags |= (IPSET_FLAG_NOMATCH << 16);
432         }
433
434         if (adt == IPSET_TEST || !with_ports || !tb[IPSET_ATTR_PORT_TO]) {
435                 ret = adtfn(set, &e, &ext, &ext, flags);
436                 return ip_set_enomatch(ret, flags, adt, set) ? -ret :
437                        ip_set_eexist(ret, flags) ? 0 : ret;
438         }
439
440         port = ntohs(e.port);
441         port_to = ip_set_get_h16(tb[IPSET_ATTR_PORT_TO]);
442         if (port > port_to)
443                 swap(port, port_to);
444
445         if (retried)
446                 port = ntohs(h->next.port);
447         for (; port <= port_to; port++) {
448                 e.port = htons(port);
449                 ret = adtfn(set, &e, &ext, &ext, flags);
450
451                 if (ret && !ip_set_eexist(ret, flags))
452                         return ret;
453
454                 ret = 0;
455         }
456         return ret;
457 }
458
459 static struct ip_set_type hash_netport_type __read_mostly = {
460         .name           = "hash:net,port",
461         .protocol       = IPSET_PROTOCOL,
462         .features       = IPSET_TYPE_IP | IPSET_TYPE_PORT | IPSET_TYPE_NOMATCH,
463         .dimension      = IPSET_DIM_TWO,
464         .family         = NFPROTO_UNSPEC,
465         .revision_min   = IPSET_TYPE_REV_MIN,
466         .revision_max   = IPSET_TYPE_REV_MAX,
467         .create         = hash_netport_create,
468         .create_policy  = {
469                 [IPSET_ATTR_HASHSIZE]   = { .type = NLA_U32 },
470                 [IPSET_ATTR_MAXELEM]    = { .type = NLA_U32 },
471                 [IPSET_ATTR_PROBES]     = { .type = NLA_U8 },
472                 [IPSET_ATTR_RESIZE]     = { .type = NLA_U8  },
473                 [IPSET_ATTR_PROTO]      = { .type = NLA_U8 },
474                 [IPSET_ATTR_TIMEOUT]    = { .type = NLA_U32 },
475                 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
476         },
477         .adt_policy     = {
478                 [IPSET_ATTR_IP]         = { .type = NLA_NESTED },
479                 [IPSET_ATTR_IP_TO]      = { .type = NLA_NESTED },
480                 [IPSET_ATTR_PORT]       = { .type = NLA_U16 },
481                 [IPSET_ATTR_PORT_TO]    = { .type = NLA_U16 },
482                 [IPSET_ATTR_PROTO]      = { .type = NLA_U8 },
483                 [IPSET_ATTR_CIDR]       = { .type = NLA_U8 },
484                 [IPSET_ATTR_TIMEOUT]    = { .type = NLA_U32 },
485                 [IPSET_ATTR_LINENO]     = { .type = NLA_U32 },
486                 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
487                 [IPSET_ATTR_BYTES]      = { .type = NLA_U64 },
488                 [IPSET_ATTR_PACKETS]    = { .type = NLA_U64 },
489                 [IPSET_ATTR_COMMENT]    = { .type = NLA_NUL_STRING,
490                                             .len  = IPSET_MAX_COMMENT_SIZE },
491                 [IPSET_ATTR_SKBMARK]    = { .type = NLA_U64 },
492                 [IPSET_ATTR_SKBPRIO]    = { .type = NLA_U32 },
493                 [IPSET_ATTR_SKBQUEUE]   = { .type = NLA_U16 },
494         },
495         .me             = THIS_MODULE,
496 };
497
498 static int __init
499 hash_netport_init(void)
500 {
501         return ip_set_type_register(&hash_netport_type);
502 }
503
504 static void __exit
505 hash_netport_fini(void)
506 {
507         rcu_barrier();
508         ip_set_type_unregister(&hash_netport_type);
509 }
510
511 module_init(hash_netport_init);
512 module_exit(hash_netport_fini);