blob: 68b21f5d6a844bc06d9b279f463a1cabb543b951 [file] [log] [blame]
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +01001#ifndef _IP_SET_H
2#define _IP_SET_H
3
4/* Copyright (C) 2000-2002 Joakim Axelsson <gozem@linux.nu>
5 * Patrick Schaaf <bof@bof.de>
6 * Martin Josefsson <gandalf@wlug.westbo.se>
7 * Copyright (C) 2003-2011 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14/* The protocol version */
15#define IPSET_PROTOCOL 6
16
17/* The max length of strings including NUL: set and type identifiers */
18#define IPSET_MAXNAMELEN 32
19
20/* Message types and commands */
21enum ipset_cmd {
22 IPSET_CMD_NONE,
23 IPSET_CMD_PROTOCOL, /* 1: Return protocol version */
24 IPSET_CMD_CREATE, /* 2: Create a new (empty) set */
25 IPSET_CMD_DESTROY, /* 3: Destroy a (empty) set */
26 IPSET_CMD_FLUSH, /* 4: Remove all elements from a set */
27 IPSET_CMD_RENAME, /* 5: Rename a set */
28 IPSET_CMD_SWAP, /* 6: Swap two sets */
29 IPSET_CMD_LIST, /* 7: List sets */
30 IPSET_CMD_SAVE, /* 8: Save sets */
31 IPSET_CMD_ADD, /* 9: Add an element to a set */
32 IPSET_CMD_DEL, /* 10: Delete an element from a set */
33 IPSET_CMD_TEST, /* 11: Test an element in a set */
34 IPSET_CMD_HEADER, /* 12: Get set header data only */
35 IPSET_CMD_TYPE, /* 13: Get set type */
36 IPSET_MSG_MAX, /* Netlink message commands */
37
38 /* Commands in userspace: */
39 IPSET_CMD_RESTORE = IPSET_MSG_MAX, /* 14: Enter restore mode */
40 IPSET_CMD_HELP, /* 15: Get help */
41 IPSET_CMD_VERSION, /* 16: Get program version */
42 IPSET_CMD_QUIT, /* 17: Quit from interactive mode */
43
44 IPSET_CMD_MAX,
45
46 IPSET_CMD_COMMIT = IPSET_CMD_MAX, /* 18: Commit buffered commands */
47};
48
49/* Attributes at command level */
50enum {
51 IPSET_ATTR_UNSPEC,
52 IPSET_ATTR_PROTOCOL, /* 1: Protocol version */
53 IPSET_ATTR_SETNAME, /* 2: Name of the set */
54 IPSET_ATTR_TYPENAME, /* 3: Typename */
55 IPSET_ATTR_SETNAME2 = IPSET_ATTR_TYPENAME, /* Setname at rename/swap */
56 IPSET_ATTR_REVISION, /* 4: Settype revision */
57 IPSET_ATTR_FAMILY, /* 5: Settype family */
58 IPSET_ATTR_FLAGS, /* 6: Flags at command level */
59 IPSET_ATTR_DATA, /* 7: Nested attributes */
60 IPSET_ATTR_ADT, /* 8: Multiple data containers */
61 IPSET_ATTR_LINENO, /* 9: Restore lineno */
62 IPSET_ATTR_PROTOCOL_MIN, /* 10: Minimal supported version number */
63 IPSET_ATTR_REVISION_MIN = IPSET_ATTR_PROTOCOL_MIN, /* type rev min */
64 __IPSET_ATTR_CMD_MAX,
65};
66#define IPSET_ATTR_CMD_MAX (__IPSET_ATTR_CMD_MAX - 1)
67
68/* CADT specific attributes */
69enum {
70 IPSET_ATTR_IP = IPSET_ATTR_UNSPEC + 1,
71 IPSET_ATTR_IP_FROM = IPSET_ATTR_IP,
72 IPSET_ATTR_IP_TO, /* 2 */
73 IPSET_ATTR_CIDR, /* 3 */
74 IPSET_ATTR_PORT, /* 4 */
75 IPSET_ATTR_PORT_FROM = IPSET_ATTR_PORT,
76 IPSET_ATTR_PORT_TO, /* 5 */
77 IPSET_ATTR_TIMEOUT, /* 6 */
78 IPSET_ATTR_PROTO, /* 7 */
79 IPSET_ATTR_CADT_FLAGS, /* 8 */
80 IPSET_ATTR_CADT_LINENO = IPSET_ATTR_LINENO, /* 9 */
81 /* Reserve empty slots */
82 IPSET_ATTR_CADT_MAX = 16,
83 /* Create-only specific attributes */
84 IPSET_ATTR_GC,
85 IPSET_ATTR_HASHSIZE,
86 IPSET_ATTR_MAXELEM,
87 IPSET_ATTR_NETMASK,
88 IPSET_ATTR_PROBES,
89 IPSET_ATTR_RESIZE,
90 IPSET_ATTR_SIZE,
91 /* Kernel-only */
92 IPSET_ATTR_ELEMENTS,
93 IPSET_ATTR_REFERENCES,
94 IPSET_ATTR_MEMSIZE,
95
96 __IPSET_ATTR_CREATE_MAX,
97};
98#define IPSET_ATTR_CREATE_MAX (__IPSET_ATTR_CREATE_MAX - 1)
99
100/* ADT specific attributes */
101enum {
102 IPSET_ATTR_ETHER = IPSET_ATTR_CADT_MAX + 1,
103 IPSET_ATTR_NAME,
104 IPSET_ATTR_NAMEREF,
105 IPSET_ATTR_IP2,
106 IPSET_ATTR_CIDR2,
107 __IPSET_ATTR_ADT_MAX,
108};
109#define IPSET_ATTR_ADT_MAX (__IPSET_ATTR_ADT_MAX - 1)
110
111/* IP specific attributes */
112enum {
113 IPSET_ATTR_IPADDR_IPV4 = IPSET_ATTR_UNSPEC + 1,
114 IPSET_ATTR_IPADDR_IPV6,
115 __IPSET_ATTR_IPADDR_MAX,
116};
117#define IPSET_ATTR_IPADDR_MAX (__IPSET_ATTR_IPADDR_MAX - 1)
118
119/* Error codes */
120enum ipset_errno {
121 IPSET_ERR_PRIVATE = 4096,
122 IPSET_ERR_PROTOCOL,
123 IPSET_ERR_FIND_TYPE,
124 IPSET_ERR_MAX_SETS,
125 IPSET_ERR_BUSY,
126 IPSET_ERR_EXIST_SETNAME2,
127 IPSET_ERR_TYPE_MISMATCH,
128 IPSET_ERR_EXIST,
129 IPSET_ERR_INVALID_CIDR,
130 IPSET_ERR_INVALID_NETMASK,
131 IPSET_ERR_INVALID_FAMILY,
132 IPSET_ERR_TIMEOUT,
133 IPSET_ERR_REFERENCED,
134 IPSET_ERR_IPADDR_IPV4,
135 IPSET_ERR_IPADDR_IPV6,
136
137 /* Type specific error codes */
138 IPSET_ERR_TYPE_SPECIFIC = 4352,
139};
140
141/* Flags at command level */
142enum ipset_cmd_flags {
143 IPSET_FLAG_BIT_EXIST = 0,
144 IPSET_FLAG_EXIST = (1 << IPSET_FLAG_BIT_EXIST),
145};
146
147/* Flags at CADT attribute level */
148enum ipset_cadt_flags {
149 IPSET_FLAG_BIT_BEFORE = 0,
150 IPSET_FLAG_BEFORE = (1 << IPSET_FLAG_BIT_BEFORE),
151};
152
153/* Commands with settype-specific attributes */
154enum ipset_adt {
155 IPSET_ADD,
156 IPSET_DEL,
157 IPSET_TEST,
158 IPSET_ADT_MAX,
159 IPSET_CREATE = IPSET_ADT_MAX,
160 IPSET_CADT_MAX,
161};
162
163#ifdef __KERNEL__
164#include <linux/ip.h>
165#include <linux/ipv6.h>
166#include <linux/netlink.h>
167#include <linux/netfilter.h>
168#include <linux/vmalloc.h>
169#include <net/netlink.h>
170
171/* Sets are identified by an index in kernel space. Tweak with ip_set_id_t
172 * and IPSET_INVALID_ID if you want to increase the max number of sets.
173 */
174typedef u16 ip_set_id_t;
175
176#define IPSET_INVALID_ID 65535
177
178enum ip_set_dim {
179 IPSET_DIM_ZERO = 0,
180 IPSET_DIM_ONE,
181 IPSET_DIM_TWO,
182 IPSET_DIM_THREE,
183 /* Max dimension in elements.
184 * If changed, new revision of iptables match/target is required.
185 */
186 IPSET_DIM_MAX = 6,
187};
188
189/* Option flags for kernel operations */
190enum ip_set_kopt {
191 IPSET_INV_MATCH = (1 << IPSET_DIM_ZERO),
192 IPSET_DIM_ONE_SRC = (1 << IPSET_DIM_ONE),
193 IPSET_DIM_TWO_SRC = (1 << IPSET_DIM_TWO),
194 IPSET_DIM_THREE_SRC = (1 << IPSET_DIM_THREE),
195};
196
197/* Set features */
198enum ip_set_feature {
199 IPSET_TYPE_IP_FLAG = 0,
200 IPSET_TYPE_IP = (1 << IPSET_TYPE_IP_FLAG),
201 IPSET_TYPE_PORT_FLAG = 1,
202 IPSET_TYPE_PORT = (1 << IPSET_TYPE_PORT_FLAG),
203 IPSET_TYPE_MAC_FLAG = 2,
204 IPSET_TYPE_MAC = (1 << IPSET_TYPE_MAC_FLAG),
205 IPSET_TYPE_IP2_FLAG = 3,
206 IPSET_TYPE_IP2 = (1 << IPSET_TYPE_IP2_FLAG),
207 IPSET_TYPE_NAME_FLAG = 4,
208 IPSET_TYPE_NAME = (1 << IPSET_TYPE_NAME_FLAG),
209 /* Strictly speaking not a feature, but a flag for dumping:
210 * this settype must be dumped last */
211 IPSET_DUMP_LAST_FLAG = 7,
212 IPSET_DUMP_LAST = (1 << IPSET_DUMP_LAST_FLAG),
213};
214
215struct ip_set;
216
Jozsef Kadlecsik54162192011-06-16 18:40:55 +0200217typedef int (*ipset_adtfn)(struct ip_set *set, void *value,
218 u32 timeout, u32 flags);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100219
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200220/* Kernel API function options */
221struct ip_set_adt_opt {
222 u8 family; /* Actual protocol family */
223 u8 dim; /* Dimension of match/target */
224 u8 flags; /* Direction and negation flags */
225 u32 cmdflags; /* Command-like flags */
226 u32 timeout; /* Timeout value */
227};
228
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100229/* Set type, variant-specific part */
230struct ip_set_type_variant {
231 /* Kernelspace: test/add/del entries
232 * returns negative error code,
233 * zero for no match/success to add/delete
234 * positive for matching element */
235 int (*kadt)(struct ip_set *set, const struct sk_buff * skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200236 enum ipset_adt adt, const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100237
238 /* Userspace: test/add/del entries
239 * returns negative error code,
240 * zero for no match/success to add/delete
241 * positive for matching element */
242 int (*uadt)(struct ip_set *set, struct nlattr *tb[],
243 enum ipset_adt adt, u32 *lineno, u32 flags);
244
245 /* Low level add/del/test functions */
246 ipset_adtfn adt[IPSET_ADT_MAX];
247
248 /* When adding entries and set is full, try to resize the set */
249 int (*resize)(struct ip_set *set, bool retried);
250 /* Destroy the set */
251 void (*destroy)(struct ip_set *set);
252 /* Flush the elements */
253 void (*flush)(struct ip_set *set);
254 /* Expire entries before listing */
255 void (*expire)(struct ip_set *set);
256 /* List set header data */
257 int (*head)(struct ip_set *set, struct sk_buff *skb);
258 /* List elements */
259 int (*list)(const struct ip_set *set, struct sk_buff *skb,
260 struct netlink_callback *cb);
261
262 /* Return true if "b" set is the same as "a"
263 * according to the create set parameters */
264 bool (*same_set)(const struct ip_set *a, const struct ip_set *b);
265};
266
267/* The core set type structure */
268struct ip_set_type {
269 struct list_head list;
270
271 /* Typename */
272 char name[IPSET_MAXNAMELEN];
273 /* Protocol version */
274 u8 protocol;
275 /* Set features to control swapping */
276 u8 features;
277 /* Set type dimension */
278 u8 dimension;
279 /* Supported family: may be AF_UNSPEC for both AF_INET/AF_INET6 */
280 u8 family;
281 /* Type revision */
282 u8 revision;
283
284 /* Create set */
285 int (*create)(struct ip_set *set, struct nlattr *tb[], u32 flags);
286
287 /* Attribute policies */
288 const struct nla_policy create_policy[IPSET_ATTR_CREATE_MAX + 1];
289 const struct nla_policy adt_policy[IPSET_ATTR_ADT_MAX + 1];
290
291 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
292 struct module *me;
293};
294
295/* register and unregister set type */
296extern int ip_set_type_register(struct ip_set_type *set_type);
297extern void ip_set_type_unregister(struct ip_set_type *set_type);
298
299/* A generic IP set */
300struct ip_set {
301 /* The name of the set */
302 char name[IPSET_MAXNAMELEN];
303 /* Lock protecting the set data */
304 rwlock_t lock;
305 /* References to the set */
Jozsef Kadlecsik2f9f28b2011-04-04 15:19:25 +0200306 u32 ref;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100307 /* The core set type */
308 struct ip_set_type *type;
309 /* The type variant doing the real job */
310 const struct ip_set_type_variant *variant;
311 /* The actual INET family of the set */
312 u8 family;
313 /* The type specific data */
314 void *data;
315};
316
317/* register and unregister set references */
318extern ip_set_id_t ip_set_get_byname(const char *name, struct ip_set **set);
319extern void ip_set_put_byindex(ip_set_id_t index);
320extern const char * ip_set_name_byindex(ip_set_id_t index);
321extern ip_set_id_t ip_set_nfnl_get(const char *name);
322extern ip_set_id_t ip_set_nfnl_get_byindex(ip_set_id_t index);
323extern void ip_set_nfnl_put(ip_set_id_t index);
324
325/* API for iptables set match, and SET target */
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200326
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100327extern int ip_set_add(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200328 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100329extern int ip_set_del(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200330 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100331extern int ip_set_test(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200332 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100333
334/* Utility functions */
335extern void * ip_set_alloc(size_t size);
336extern void ip_set_free(void *members);
337extern int ip_set_get_ipaddr4(struct nlattr *nla, __be32 *ipaddr);
338extern int ip_set_get_ipaddr6(struct nlattr *nla, union nf_inet_addr *ipaddr);
339
340static inline int
341ip_set_get_hostipaddr4(struct nlattr *nla, u32 *ipaddr)
342{
343 __be32 ip;
344 int ret = ip_set_get_ipaddr4(nla, &ip);
345
346 if (ret)
347 return ret;
348 *ipaddr = ntohl(ip);
349 return 0;
350}
351
352/* Ignore IPSET_ERR_EXIST errors if asked to do so? */
353static inline bool
354ip_set_eexist(int ret, u32 flags)
355{
356 return ret == -IPSET_ERR_EXIST && (flags & IPSET_FLAG_EXIST);
357}
358
359/* Check the NLA_F_NET_BYTEORDER flag */
360static inline bool
361ip_set_attr_netorder(struct nlattr *tb[], int type)
362{
363 return tb[type] && (tb[type]->nla_type & NLA_F_NET_BYTEORDER);
364}
365
366static inline bool
367ip_set_optattr_netorder(struct nlattr *tb[], int type)
368{
369 return !tb[type] || (tb[type]->nla_type & NLA_F_NET_BYTEORDER);
370}
371
372/* Useful converters */
373static inline u32
374ip_set_get_h32(const struct nlattr *attr)
375{
376 return ntohl(nla_get_be32(attr));
377}
378
379static inline u16
380ip_set_get_h16(const struct nlattr *attr)
381{
382 return ntohs(nla_get_be16(attr));
383}
384
385#define ipset_nest_start(skb, attr) nla_nest_start(skb, attr | NLA_F_NESTED)
386#define ipset_nest_end(skb, start) nla_nest_end(skb, start)
387
388#define NLA_PUT_IPADDR4(skb, type, ipaddr) \
389do { \
390 struct nlattr *__nested = ipset_nest_start(skb, type); \
391 \
392 if (!__nested) \
393 goto nla_put_failure; \
394 NLA_PUT_NET32(skb, IPSET_ATTR_IPADDR_IPV4, ipaddr); \
395 ipset_nest_end(skb, __nested); \
396} while (0)
397
398#define NLA_PUT_IPADDR6(skb, type, ipaddrptr) \
399do { \
400 struct nlattr *__nested = ipset_nest_start(skb, type); \
401 \
402 if (!__nested) \
403 goto nla_put_failure; \
404 NLA_PUT(skb, IPSET_ATTR_IPADDR_IPV6, \
405 sizeof(struct in6_addr), ipaddrptr); \
406 ipset_nest_end(skb, __nested); \
407} while (0)
408
409/* Get address from skbuff */
410static inline __be32
411ip4addr(const struct sk_buff *skb, bool src)
412{
413 return src ? ip_hdr(skb)->saddr : ip_hdr(skb)->daddr;
414}
415
416static inline void
417ip4addrptr(const struct sk_buff *skb, bool src, __be32 *addr)
418{
419 *addr = src ? ip_hdr(skb)->saddr : ip_hdr(skb)->daddr;
420}
421
422static inline void
423ip6addrptr(const struct sk_buff *skb, bool src, struct in6_addr *addr)
424{
425 memcpy(addr, src ? &ipv6_hdr(skb)->saddr : &ipv6_hdr(skb)->daddr,
426 sizeof(*addr));
427}
428
429/* Calculate the bytes required to store the inclusive range of a-b */
430static inline int
431bitmap_bytes(u32 a, u32 b)
432{
433 return 4 * ((((b - a + 8) / 8) + 3) / 4);
434}
435
436/* Interface to iptables/ip6tables */
437
438#define SO_IP_SET 83
439
440union ip_set_name_index {
441 char name[IPSET_MAXNAMELEN];
442 ip_set_id_t index;
443};
444
445#define IP_SET_OP_GET_BYNAME 0x00000006 /* Get set index by name */
446struct ip_set_req_get_set {
447 unsigned op;
448 unsigned version;
449 union ip_set_name_index set;
450};
451
452#define IP_SET_OP_GET_BYINDEX 0x00000007 /* Get set name by index */
453/* Uses ip_set_req_get_set */
454
455#define IP_SET_OP_VERSION 0x00000100 /* Ask kernel version */
456struct ip_set_req_version {
457 unsigned op;
458 unsigned version;
459};
460
461#endif /* __KERNEL__ */
462
463#endif /*_IP_SET_H */