GNU Linux-libre 5.10.217-gnu1
[releases.git] / net / netfilter / ipset / ip_set_hash_ipmark.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:ip,mark 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 #include <net/tcp.h>
16
17 #include <linux/netfilter.h>
18 #include <linux/netfilter/ipset/pfxlen.h>
19 #include <linux/netfilter/ipset/ip_set.h>
20 #include <linux/netfilter/ipset/ip_set_hash.h>
21
22 #define IPSET_TYPE_REV_MIN      0
23 /*                              1          Forceadd support */
24 #define IPSET_TYPE_REV_MAX      2       /* skbinfo support  */
25
26 MODULE_LICENSE("GPL");
27 MODULE_AUTHOR("Vytas Dauksa <vytas.dauksa@smoothwall.net>");
28 IP_SET_MODULE_DESC("hash:ip,mark", IPSET_TYPE_REV_MIN, IPSET_TYPE_REV_MAX);
29 MODULE_ALIAS("ip_set_hash:ip,mark");
30
31 /* Type specific function prefix */
32 #define HTYPE           hash_ipmark
33 #define IP_SET_HASH_WITH_MARKMASK
34
35 /* IPv4 variant */
36
37 /* Member elements */
38 struct hash_ipmark4_elem {
39         __be32 ip;
40         __u32 mark;
41 };
42
43 /* Common functions */
44
45 static bool
46 hash_ipmark4_data_equal(const struct hash_ipmark4_elem *ip1,
47                         const struct hash_ipmark4_elem *ip2,
48                         u32 *multi)
49 {
50         return ip1->ip == ip2->ip &&
51                ip1->mark == ip2->mark;
52 }
53
54 static bool
55 hash_ipmark4_data_list(struct sk_buff *skb,
56                        const struct hash_ipmark4_elem *data)
57 {
58         if (nla_put_ipaddr4(skb, IPSET_ATTR_IP, data->ip) ||
59             nla_put_net32(skb, IPSET_ATTR_MARK, htonl(data->mark)))
60                 goto nla_put_failure;
61         return false;
62
63 nla_put_failure:
64         return true;
65 }
66
67 static void
68 hash_ipmark4_data_next(struct hash_ipmark4_elem *next,
69                        const struct hash_ipmark4_elem *d)
70 {
71         next->ip = d->ip;
72 }
73
74 #define MTYPE           hash_ipmark4
75 #define HOST_MASK       32
76 #include "ip_set_hash_gen.h"
77
78 static int
79 hash_ipmark4_kadt(struct ip_set *set, const struct sk_buff *skb,
80                   const struct xt_action_param *par,
81                   enum ipset_adt adt, struct ip_set_adt_opt *opt)
82 {
83         const struct hash_ipmark4 *h = set->data;
84         ipset_adtfn adtfn = set->variant->adt[adt];
85         struct hash_ipmark4_elem e = { };
86         struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
87
88         e.mark = skb->mark;
89         e.mark &= h->markmask;
90
91         ip4addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip);
92         return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
93 }
94
95 static int
96 hash_ipmark4_uadt(struct ip_set *set, struct nlattr *tb[],
97                   enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
98 {
99         struct hash_ipmark4 *h = set->data;
100         ipset_adtfn adtfn = set->variant->adt[adt];
101         struct hash_ipmark4_elem e = { };
102         struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
103         u32 ip, ip_to = 0, i = 0;
104         int ret;
105
106         if (tb[IPSET_ATTR_LINENO])
107                 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
108
109         if (unlikely(!tb[IPSET_ATTR_IP] ||
110                      !ip_set_attr_netorder(tb, IPSET_ATTR_MARK)))
111                 return -IPSET_ERR_PROTOCOL;
112
113         ret = ip_set_get_ipaddr4(tb[IPSET_ATTR_IP], &e.ip);
114         if (ret)
115                 return ret;
116
117         ret = ip_set_get_extensions(set, tb, &ext);
118         if (ret)
119                 return ret;
120
121         e.mark = ntohl(nla_get_be32(tb[IPSET_ATTR_MARK]));
122         e.mark &= h->markmask;
123         if (e.mark == 0 && e.ip == 0)
124                 return -IPSET_ERR_HASH_ELEM;
125
126         if (adt == IPSET_TEST ||
127             !(tb[IPSET_ATTR_IP_TO] || tb[IPSET_ATTR_CIDR])) {
128                 ret = adtfn(set, &e, &ext, &ext, flags);
129                 return ip_set_eexist(ret, flags) ? 0 : ret;
130         }
131
132         ip_to = ip = ntohl(e.ip);
133         if (tb[IPSET_ATTR_IP_TO]) {
134                 ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP_TO], &ip_to);
135                 if (ret)
136                         return ret;
137                 if (ip > ip_to) {
138                         if (e.mark == 0 && ip_to == 0)
139                                 return -IPSET_ERR_HASH_ELEM;
140                         swap(ip, ip_to);
141                 }
142         } else if (tb[IPSET_ATTR_CIDR]) {
143                 u8 cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
144
145                 if (!cidr || cidr > HOST_MASK)
146                         return -IPSET_ERR_INVALID_CIDR;
147                 ip_set_mask_from_to(ip, ip_to, cidr);
148         }
149
150         if (retried)
151                 ip = ntohl(h->next.ip);
152         for (; ip <= ip_to; ip++, i++) {
153                 e.ip = htonl(ip);
154                 if (i > IPSET_MAX_RANGE) {
155                         hash_ipmark4_data_next(&h->next, &e);
156                         return -ERANGE;
157                 }
158                 ret = adtfn(set, &e, &ext, &ext, flags);
159
160                 if (ret && !ip_set_eexist(ret, flags))
161                         return ret;
162
163                 ret = 0;
164         }
165         return ret;
166 }
167
168 /* IPv6 variant */
169
170 struct hash_ipmark6_elem {
171         union nf_inet_addr ip;
172         __u32 mark;
173 };
174
175 /* Common functions */
176
177 static bool
178 hash_ipmark6_data_equal(const struct hash_ipmark6_elem *ip1,
179                         const struct hash_ipmark6_elem *ip2,
180                         u32 *multi)
181 {
182         return ipv6_addr_equal(&ip1->ip.in6, &ip2->ip.in6) &&
183                ip1->mark == ip2->mark;
184 }
185
186 static bool
187 hash_ipmark6_data_list(struct sk_buff *skb,
188                        const struct hash_ipmark6_elem *data)
189 {
190         if (nla_put_ipaddr6(skb, IPSET_ATTR_IP, &data->ip.in6) ||
191             nla_put_net32(skb, IPSET_ATTR_MARK, htonl(data->mark)))
192                 goto nla_put_failure;
193         return false;
194
195 nla_put_failure:
196         return true;
197 }
198
199 static void
200 hash_ipmark6_data_next(struct hash_ipmark6_elem *next,
201                        const struct hash_ipmark6_elem *d)
202 {
203 }
204
205 #undef MTYPE
206 #undef HOST_MASK
207
208 #define MTYPE           hash_ipmark6
209 #define HOST_MASK       128
210 #define IP_SET_EMIT_CREATE
211 #include "ip_set_hash_gen.h"
212
213 static int
214 hash_ipmark6_kadt(struct ip_set *set, const struct sk_buff *skb,
215                   const struct xt_action_param *par,
216                   enum ipset_adt adt, struct ip_set_adt_opt *opt)
217 {
218         const struct hash_ipmark6 *h = set->data;
219         ipset_adtfn adtfn = set->variant->adt[adt];
220         struct hash_ipmark6_elem e = { };
221         struct ip_set_ext ext = IP_SET_INIT_KEXT(skb, opt, set);
222
223         e.mark = skb->mark;
224         e.mark &= h->markmask;
225
226         ip6addrptr(skb, opt->flags & IPSET_DIM_ONE_SRC, &e.ip.in6);
227         return adtfn(set, &e, &ext, &opt->ext, opt->cmdflags);
228 }
229
230 static int
231 hash_ipmark6_uadt(struct ip_set *set, struct nlattr *tb[],
232                   enum ipset_adt adt, u32 *lineno, u32 flags, bool retried)
233 {
234         const struct hash_ipmark6 *h = set->data;
235         ipset_adtfn adtfn = set->variant->adt[adt];
236         struct hash_ipmark6_elem e = { };
237         struct ip_set_ext ext = IP_SET_INIT_UEXT(set);
238         int ret;
239
240         if (tb[IPSET_ATTR_LINENO])
241                 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
242
243         if (unlikely(!tb[IPSET_ATTR_IP] ||
244                      !ip_set_attr_netorder(tb, IPSET_ATTR_MARK)))
245                 return -IPSET_ERR_PROTOCOL;
246         if (unlikely(tb[IPSET_ATTR_IP_TO]))
247                 return -IPSET_ERR_HASH_RANGE_UNSUPPORTED;
248         if (unlikely(tb[IPSET_ATTR_CIDR])) {
249                 u8 cidr = nla_get_u8(tb[IPSET_ATTR_CIDR]);
250
251                 if (cidr != HOST_MASK)
252                         return -IPSET_ERR_INVALID_CIDR;
253         }
254
255         ret = ip_set_get_ipaddr6(tb[IPSET_ATTR_IP], &e.ip);
256         if (ret)
257                 return ret;
258
259         ret = ip_set_get_extensions(set, tb, &ext);
260         if (ret)
261                 return ret;
262
263         e.mark = ntohl(nla_get_be32(tb[IPSET_ATTR_MARK]));
264         e.mark &= h->markmask;
265
266         if (adt == IPSET_TEST) {
267                 ret = adtfn(set, &e, &ext, &ext, flags);
268                 return ip_set_eexist(ret, flags) ? 0 : ret;
269         }
270
271         ret = adtfn(set, &e, &ext, &ext, flags);
272         if (ret && !ip_set_eexist(ret, flags))
273                 return ret;
274
275         return 0;
276 }
277
278 static struct ip_set_type hash_ipmark_type __read_mostly = {
279         .name           = "hash:ip,mark",
280         .protocol       = IPSET_PROTOCOL,
281         .features       = IPSET_TYPE_IP | IPSET_TYPE_MARK,
282         .dimension      = IPSET_DIM_TWO,
283         .family         = NFPROTO_UNSPEC,
284         .revision_min   = IPSET_TYPE_REV_MIN,
285         .revision_max   = IPSET_TYPE_REV_MAX,
286         .create         = hash_ipmark_create,
287         .create_policy  = {
288                 [IPSET_ATTR_MARKMASK]   = { .type = NLA_U32 },
289                 [IPSET_ATTR_HASHSIZE]   = { .type = NLA_U32 },
290                 [IPSET_ATTR_MAXELEM]    = { .type = NLA_U32 },
291                 [IPSET_ATTR_PROBES]     = { .type = NLA_U8 },
292                 [IPSET_ATTR_RESIZE]     = { .type = NLA_U8  },
293                 [IPSET_ATTR_TIMEOUT]    = { .type = NLA_U32 },
294                 [IPSET_ATTR_CADT_FLAGS] = { .type = NLA_U32 },
295         },
296         .adt_policy     = {
297                 [IPSET_ATTR_IP]         = { .type = NLA_NESTED },
298                 [IPSET_ATTR_IP_TO]      = { .type = NLA_NESTED },
299                 [IPSET_ATTR_MARK]       = { .type = NLA_U32 },
300                 [IPSET_ATTR_CIDR]       = { .type = NLA_U8 },
301                 [IPSET_ATTR_TIMEOUT]    = { .type = NLA_U32 },
302                 [IPSET_ATTR_LINENO]     = { .type = NLA_U32 },
303                 [IPSET_ATTR_BYTES]      = { .type = NLA_U64 },
304                 [IPSET_ATTR_PACKETS]    = { .type = NLA_U64 },
305                 [IPSET_ATTR_COMMENT]    = { .type = NLA_NUL_STRING,
306                                             .len  = IPSET_MAX_COMMENT_SIZE },
307                 [IPSET_ATTR_SKBMARK]    = { .type = NLA_U64 },
308                 [IPSET_ATTR_SKBPRIO]    = { .type = NLA_U32 },
309                 [IPSET_ATTR_SKBQUEUE]   = { .type = NLA_U16 },
310         },
311         .me             = THIS_MODULE,
312 };
313
314 static int __init
315 hash_ipmark_init(void)
316 {
317         return ip_set_type_register(&hash_ipmark_type);
318 }
319
320 static void __exit
321 hash_ipmark_fini(void)
322 {
323         rcu_barrier();
324         ip_set_type_unregister(&hash_ipmark_type);
325 }
326
327 module_init(hash_ipmark_init);
328 module_exit(hash_ipmark_fini);