blob: 7958e84a65afa22a8d6f406da674b2843e93b041 [file] [log] [blame]
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +01001/* Copyright (C) 2000-2002 Joakim Axelsson <gozem@linux.nu>
2 * Patrick Schaaf <bof@bof.de>
3 * Martin Josefsson <gandalf@wlug.westbo.se>
4 * Copyright (C) 2003-2011 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
David Howellsa8201412012-10-09 09:48:55 +010010#ifndef _IP_SET_H
11#define _IP_SET_H
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010012
Jan Engelhardtae8ded12012-01-14 16:26:20 +010013#include <linux/ip.h>
14#include <linux/ipv6.h>
15#include <linux/netlink.h>
16#include <linux/netfilter.h>
17#include <linux/netfilter/x_tables.h>
Jozsef Kadlecsik10111a62012-09-21 21:59:32 +020018#include <linux/stringify.h>
Jan Engelhardtae8ded12012-01-14 16:26:20 +010019#include <linux/vmalloc.h>
20#include <net/netlink.h>
David Howellsa8201412012-10-09 09:48:55 +010021#include <uapi/linux/netfilter/ipset/ip_set.h>
Jan Engelhardtae8ded12012-01-14 16:26:20 +010022
Jozsef Kadlecsik10111a62012-09-21 21:59:32 +020023#define _IP_SET_MODULE_DESC(a, b, c) \
24 MODULE_DESCRIPTION(a " type of IP sets, revisions " b "-" c)
25#define IP_SET_MODULE_DESC(a, b, c) \
26 _IP_SET_MODULE_DESC(a, __stringify(b), __stringify(c))
27
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010028/* Set features */
29enum ip_set_feature {
30 IPSET_TYPE_IP_FLAG = 0,
31 IPSET_TYPE_IP = (1 << IPSET_TYPE_IP_FLAG),
32 IPSET_TYPE_PORT_FLAG = 1,
33 IPSET_TYPE_PORT = (1 << IPSET_TYPE_PORT_FLAG),
34 IPSET_TYPE_MAC_FLAG = 2,
35 IPSET_TYPE_MAC = (1 << IPSET_TYPE_MAC_FLAG),
36 IPSET_TYPE_IP2_FLAG = 3,
37 IPSET_TYPE_IP2 = (1 << IPSET_TYPE_IP2_FLAG),
38 IPSET_TYPE_NAME_FLAG = 4,
39 IPSET_TYPE_NAME = (1 << IPSET_TYPE_NAME_FLAG),
Jozsef Kadlecsike3853572011-06-16 19:00:48 +020040 IPSET_TYPE_IFACE_FLAG = 5,
41 IPSET_TYPE_IFACE = (1 << IPSET_TYPE_IFACE_FLAG),
Jozsef Kadlecsik3e0304a2012-09-21 22:02:36 +020042 IPSET_TYPE_NOMATCH_FLAG = 6,
43 IPSET_TYPE_NOMATCH = (1 << IPSET_TYPE_NOMATCH_FLAG),
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010044 /* Strictly speaking not a feature, but a flag for dumping:
45 * this settype must be dumped last */
46 IPSET_DUMP_LAST_FLAG = 7,
47 IPSET_DUMP_LAST = (1 << IPSET_DUMP_LAST_FLAG),
48};
49
50struct ip_set;
51
Jozsef Kadlecsik54162192011-06-16 18:40:55 +020052typedef int (*ipset_adtfn)(struct ip_set *set, void *value,
53 u32 timeout, u32 flags);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010054
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +020055/* Kernel API function options */
56struct ip_set_adt_opt {
57 u8 family; /* Actual protocol family */
58 u8 dim; /* Dimension of match/target */
59 u8 flags; /* Direction and negation flags */
60 u32 cmdflags; /* Command-like flags */
61 u32 timeout; /* Timeout value */
62};
63
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010064/* Set type, variant-specific part */
65struct ip_set_type_variant {
66 /* Kernelspace: test/add/del entries
67 * returns negative error code,
68 * zero for no match/success to add/delete
69 * positive for matching element */
Jozsef Kadlecsik3ace95c2012-09-21 22:01:45 +020070 int (*kadt)(struct ip_set *set, const struct sk_buff *skb,
Jozsef Kadlecsikb66554c2011-06-16 18:56:47 +020071 const struct xt_action_param *par,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +020072 enum ipset_adt adt, const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010073
74 /* Userspace: test/add/del entries
75 * returns negative error code,
76 * zero for no match/success to add/delete
77 * positive for matching element */
78 int (*uadt)(struct ip_set *set, struct nlattr *tb[],
Jozsef Kadlecsik3d14b172011-06-16 18:49:17 +020079 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010080
81 /* Low level add/del/test functions */
82 ipset_adtfn adt[IPSET_ADT_MAX];
83
84 /* When adding entries and set is full, try to resize the set */
85 int (*resize)(struct ip_set *set, bool retried);
86 /* Destroy the set */
87 void (*destroy)(struct ip_set *set);
88 /* Flush the elements */
89 void (*flush)(struct ip_set *set);
90 /* Expire entries before listing */
91 void (*expire)(struct ip_set *set);
92 /* List set header data */
93 int (*head)(struct ip_set *set, struct sk_buff *skb);
94 /* List elements */
95 int (*list)(const struct ip_set *set, struct sk_buff *skb,
96 struct netlink_callback *cb);
97
98 /* Return true if "b" set is the same as "a"
99 * according to the create set parameters */
100 bool (*same_set)(const struct ip_set *a, const struct ip_set *b);
101};
102
103/* The core set type structure */
104struct ip_set_type {
105 struct list_head list;
106
107 /* Typename */
108 char name[IPSET_MAXNAMELEN];
109 /* Protocol version */
110 u8 protocol;
111 /* Set features to control swapping */
112 u8 features;
113 /* Set type dimension */
114 u8 dimension;
Jan Engelhardtc15f1c82012-02-14 00:24:10 +0100115 /*
116 * Supported family: may be NFPROTO_UNSPEC for both
117 * NFPROTO_IPV4/NFPROTO_IPV6.
118 */
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100119 u8 family;
Jozsef Kadlecsikf1e00b32011-06-16 18:51:41 +0200120 /* Type revisions */
121 u8 revision_min, revision_max;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100122
123 /* Create set */
124 int (*create)(struct ip_set *set, struct nlattr *tb[], u32 flags);
125
126 /* Attribute policies */
127 const struct nla_policy create_policy[IPSET_ATTR_CREATE_MAX + 1];
128 const struct nla_policy adt_policy[IPSET_ATTR_ADT_MAX + 1];
129
130 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
131 struct module *me;
132};
133
134/* register and unregister set type */
135extern int ip_set_type_register(struct ip_set_type *set_type);
136extern void ip_set_type_unregister(struct ip_set_type *set_type);
137
138/* A generic IP set */
139struct ip_set {
140 /* The name of the set */
141 char name[IPSET_MAXNAMELEN];
142 /* Lock protecting the set data */
143 rwlock_t lock;
144 /* References to the set */
Jozsef Kadlecsik2f9f28b2011-04-04 15:19:25 +0200145 u32 ref;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100146 /* The core set type */
147 struct ip_set_type *type;
148 /* The type variant doing the real job */
149 const struct ip_set_type_variant *variant;
150 /* The actual INET family of the set */
151 u8 family;
Jozsef Kadlecsikf1e00b32011-06-16 18:51:41 +0200152 /* The type revision */
153 u8 revision;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100154 /* The type specific data */
155 void *data;
156};
157
158/* register and unregister set references */
159extern ip_set_id_t ip_set_get_byname(const char *name, struct ip_set **set);
160extern void ip_set_put_byindex(ip_set_id_t index);
Jozsef Kadlecsik15b4d932011-06-16 19:01:26 +0200161extern const char *ip_set_name_byindex(ip_set_id_t index);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100162extern ip_set_id_t ip_set_nfnl_get(const char *name);
163extern ip_set_id_t ip_set_nfnl_get_byindex(ip_set_id_t index);
164extern void ip_set_nfnl_put(ip_set_id_t index);
165
166/* API for iptables set match, and SET target */
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200167
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100168extern int ip_set_add(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikb66554c2011-06-16 18:56:47 +0200169 const struct xt_action_param *par,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200170 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100171extern int ip_set_del(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikb66554c2011-06-16 18:56:47 +0200172 const struct xt_action_param *par,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200173 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100174extern int ip_set_test(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikb66554c2011-06-16 18:56:47 +0200175 const struct xt_action_param *par,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200176 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100177
178/* Utility functions */
Jozsef Kadlecsik15b4d932011-06-16 19:01:26 +0200179extern void *ip_set_alloc(size_t size);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100180extern void ip_set_free(void *members);
181extern int ip_set_get_ipaddr4(struct nlattr *nla, __be32 *ipaddr);
182extern int ip_set_get_ipaddr6(struct nlattr *nla, union nf_inet_addr *ipaddr);
183
184static inline int
185ip_set_get_hostipaddr4(struct nlattr *nla, u32 *ipaddr)
186{
187 __be32 ip;
188 int ret = ip_set_get_ipaddr4(nla, &ip);
Jozsef Kadlecsik15b4d932011-06-16 19:01:26 +0200189
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100190 if (ret)
191 return ret;
192 *ipaddr = ntohl(ip);
193 return 0;
194}
195
196/* Ignore IPSET_ERR_EXIST errors if asked to do so? */
197static inline bool
198ip_set_eexist(int ret, u32 flags)
199{
200 return ret == -IPSET_ERR_EXIST && (flags & IPSET_FLAG_EXIST);
201}
202
203/* Check the NLA_F_NET_BYTEORDER flag */
204static inline bool
205ip_set_attr_netorder(struct nlattr *tb[], int type)
206{
207 return tb[type] && (tb[type]->nla_type & NLA_F_NET_BYTEORDER);
208}
209
210static inline bool
211ip_set_optattr_netorder(struct nlattr *tb[], int type)
212{
213 return !tb[type] || (tb[type]->nla_type & NLA_F_NET_BYTEORDER);
214}
215
216/* Useful converters */
217static inline u32
218ip_set_get_h32(const struct nlattr *attr)
219{
220 return ntohl(nla_get_be32(attr));
221}
222
223static inline u16
224ip_set_get_h16(const struct nlattr *attr)
225{
226 return ntohs(nla_get_be16(attr));
227}
228
229#define ipset_nest_start(skb, attr) nla_nest_start(skb, attr | NLA_F_NESTED)
230#define ipset_nest_end(skb, start) nla_nest_end(skb, start)
231
David S. Miller7cf78992012-04-01 19:54:46 -0400232static inline int nla_put_ipaddr4(struct sk_buff *skb, int type, __be32 ipaddr)
233{
234 struct nlattr *__nested = ipset_nest_start(skb, type);
235 int ret;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100236
David S. Miller7cf78992012-04-01 19:54:46 -0400237 if (!__nested)
238 return -EMSGSIZE;
239 ret = nla_put_net32(skb, IPSET_ATTR_IPADDR_IPV4, ipaddr);
240 if (!ret)
241 ipset_nest_end(skb, __nested);
242 return ret;
243}
244
Jozsef Kadlecsik3ace95c2012-09-21 22:01:45 +0200245static inline int nla_put_ipaddr6(struct sk_buff *skb, int type,
246 const struct in6_addr *ipaddrptr)
David S. Miller7cf78992012-04-01 19:54:46 -0400247{
248 struct nlattr *__nested = ipset_nest_start(skb, type);
249 int ret;
250
251 if (!__nested)
252 return -EMSGSIZE;
253 ret = nla_put(skb, IPSET_ATTR_IPADDR_IPV6,
254 sizeof(struct in6_addr), ipaddrptr);
255 if (!ret)
256 ipset_nest_end(skb, __nested);
257 return ret;
258}
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100259
260/* Get address from skbuff */
261static inline __be32
262ip4addr(const struct sk_buff *skb, bool src)
263{
264 return src ? ip_hdr(skb)->saddr : ip_hdr(skb)->daddr;
265}
266
267static inline void
268ip4addrptr(const struct sk_buff *skb, bool src, __be32 *addr)
269{
270 *addr = src ? ip_hdr(skb)->saddr : ip_hdr(skb)->daddr;
271}
272
273static inline void
274ip6addrptr(const struct sk_buff *skb, bool src, struct in6_addr *addr)
275{
276 memcpy(addr, src ? &ipv6_hdr(skb)->saddr : &ipv6_hdr(skb)->daddr,
277 sizeof(*addr));
278}
279
280/* Calculate the bytes required to store the inclusive range of a-b */
281static inline int
282bitmap_bytes(u32 a, u32 b)
283{
284 return 4 * ((((b - a + 8) / 8) + 3) / 4);
285}
286
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100287#endif /*_IP_SET_H */