blob: ac31e382472bdf4e60be21804125547b8779b1e3 [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),
Jozsef Kadlecsikc1e2e042011-06-16 18:47:07 +0200145 IPSET_FLAG_BIT_LIST_SETNAME = 1,
146 IPSET_FLAG_LIST_SETNAME = (1 << IPSET_FLAG_BIT_LIST_SETNAME),
147 IPSET_FLAG_BIT_LIST_HEADER = 2,
148 IPSET_FLAG_LIST_HEADER = (1 << IPSET_FLAG_BIT_LIST_HEADER),
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100149};
150
151/* Flags at CADT attribute level */
152enum ipset_cadt_flags {
153 IPSET_FLAG_BIT_BEFORE = 0,
154 IPSET_FLAG_BEFORE = (1 << IPSET_FLAG_BIT_BEFORE),
155};
156
157/* Commands with settype-specific attributes */
158enum ipset_adt {
159 IPSET_ADD,
160 IPSET_DEL,
161 IPSET_TEST,
162 IPSET_ADT_MAX,
163 IPSET_CREATE = IPSET_ADT_MAX,
164 IPSET_CADT_MAX,
165};
166
167#ifdef __KERNEL__
168#include <linux/ip.h>
169#include <linux/ipv6.h>
170#include <linux/netlink.h>
171#include <linux/netfilter.h>
172#include <linux/vmalloc.h>
173#include <net/netlink.h>
174
175/* Sets are identified by an index in kernel space. Tweak with ip_set_id_t
176 * and IPSET_INVALID_ID if you want to increase the max number of sets.
177 */
178typedef u16 ip_set_id_t;
179
180#define IPSET_INVALID_ID 65535
181
182enum ip_set_dim {
183 IPSET_DIM_ZERO = 0,
184 IPSET_DIM_ONE,
185 IPSET_DIM_TWO,
186 IPSET_DIM_THREE,
187 /* Max dimension in elements.
188 * If changed, new revision of iptables match/target is required.
189 */
190 IPSET_DIM_MAX = 6,
191};
192
193/* Option flags for kernel operations */
194enum ip_set_kopt {
195 IPSET_INV_MATCH = (1 << IPSET_DIM_ZERO),
196 IPSET_DIM_ONE_SRC = (1 << IPSET_DIM_ONE),
197 IPSET_DIM_TWO_SRC = (1 << IPSET_DIM_TWO),
198 IPSET_DIM_THREE_SRC = (1 << IPSET_DIM_THREE),
199};
200
201/* Set features */
202enum ip_set_feature {
203 IPSET_TYPE_IP_FLAG = 0,
204 IPSET_TYPE_IP = (1 << IPSET_TYPE_IP_FLAG),
205 IPSET_TYPE_PORT_FLAG = 1,
206 IPSET_TYPE_PORT = (1 << IPSET_TYPE_PORT_FLAG),
207 IPSET_TYPE_MAC_FLAG = 2,
208 IPSET_TYPE_MAC = (1 << IPSET_TYPE_MAC_FLAG),
209 IPSET_TYPE_IP2_FLAG = 3,
210 IPSET_TYPE_IP2 = (1 << IPSET_TYPE_IP2_FLAG),
211 IPSET_TYPE_NAME_FLAG = 4,
212 IPSET_TYPE_NAME = (1 << IPSET_TYPE_NAME_FLAG),
213 /* Strictly speaking not a feature, but a flag for dumping:
214 * this settype must be dumped last */
215 IPSET_DUMP_LAST_FLAG = 7,
216 IPSET_DUMP_LAST = (1 << IPSET_DUMP_LAST_FLAG),
217};
218
219struct ip_set;
220
Jozsef Kadlecsik54162192011-06-16 18:40:55 +0200221typedef int (*ipset_adtfn)(struct ip_set *set, void *value,
222 u32 timeout, u32 flags);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100223
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200224/* Kernel API function options */
225struct ip_set_adt_opt {
226 u8 family; /* Actual protocol family */
227 u8 dim; /* Dimension of match/target */
228 u8 flags; /* Direction and negation flags */
229 u32 cmdflags; /* Command-like flags */
230 u32 timeout; /* Timeout value */
231};
232
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100233/* Set type, variant-specific part */
234struct ip_set_type_variant {
235 /* Kernelspace: test/add/del entries
236 * returns negative error code,
237 * zero for no match/success to add/delete
238 * positive for matching element */
239 int (*kadt)(struct ip_set *set, const struct sk_buff * skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200240 enum ipset_adt adt, const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100241
242 /* Userspace: test/add/del entries
243 * returns negative error code,
244 * zero for no match/success to add/delete
245 * positive for matching element */
246 int (*uadt)(struct ip_set *set, struct nlattr *tb[],
Jozsef Kadlecsik3d14b172011-06-16 18:49:17 +0200247 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100248
249 /* Low level add/del/test functions */
250 ipset_adtfn adt[IPSET_ADT_MAX];
251
252 /* When adding entries and set is full, try to resize the set */
253 int (*resize)(struct ip_set *set, bool retried);
254 /* Destroy the set */
255 void (*destroy)(struct ip_set *set);
256 /* Flush the elements */
257 void (*flush)(struct ip_set *set);
258 /* Expire entries before listing */
259 void (*expire)(struct ip_set *set);
260 /* List set header data */
261 int (*head)(struct ip_set *set, struct sk_buff *skb);
262 /* List elements */
263 int (*list)(const struct ip_set *set, struct sk_buff *skb,
264 struct netlink_callback *cb);
265
266 /* Return true if "b" set is the same as "a"
267 * according to the create set parameters */
268 bool (*same_set)(const struct ip_set *a, const struct ip_set *b);
269};
270
271/* The core set type structure */
272struct ip_set_type {
273 struct list_head list;
274
275 /* Typename */
276 char name[IPSET_MAXNAMELEN];
277 /* Protocol version */
278 u8 protocol;
279 /* Set features to control swapping */
280 u8 features;
281 /* Set type dimension */
282 u8 dimension;
283 /* Supported family: may be AF_UNSPEC for both AF_INET/AF_INET6 */
284 u8 family;
Jozsef Kadlecsikf1e00b32011-06-16 18:51:41 +0200285 /* Type revisions */
286 u8 revision_min, revision_max;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100287
288 /* Create set */
289 int (*create)(struct ip_set *set, struct nlattr *tb[], u32 flags);
290
291 /* Attribute policies */
292 const struct nla_policy create_policy[IPSET_ATTR_CREATE_MAX + 1];
293 const struct nla_policy adt_policy[IPSET_ATTR_ADT_MAX + 1];
294
295 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
296 struct module *me;
297};
298
299/* register and unregister set type */
300extern int ip_set_type_register(struct ip_set_type *set_type);
301extern void ip_set_type_unregister(struct ip_set_type *set_type);
302
303/* A generic IP set */
304struct ip_set {
305 /* The name of the set */
306 char name[IPSET_MAXNAMELEN];
307 /* Lock protecting the set data */
308 rwlock_t lock;
309 /* References to the set */
Jozsef Kadlecsik2f9f28b2011-04-04 15:19:25 +0200310 u32 ref;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100311 /* The core set type */
312 struct ip_set_type *type;
313 /* The type variant doing the real job */
314 const struct ip_set_type_variant *variant;
315 /* The actual INET family of the set */
316 u8 family;
Jozsef Kadlecsikf1e00b32011-06-16 18:51:41 +0200317 /* The type revision */
318 u8 revision;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100319 /* The type specific data */
320 void *data;
321};
322
323/* register and unregister set references */
324extern ip_set_id_t ip_set_get_byname(const char *name, struct ip_set **set);
325extern void ip_set_put_byindex(ip_set_id_t index);
326extern const char * ip_set_name_byindex(ip_set_id_t index);
327extern ip_set_id_t ip_set_nfnl_get(const char *name);
328extern ip_set_id_t ip_set_nfnl_get_byindex(ip_set_id_t index);
329extern void ip_set_nfnl_put(ip_set_id_t index);
330
331/* API for iptables set match, and SET target */
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200332
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100333extern int ip_set_add(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200334 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100335extern int ip_set_del(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200336 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100337extern int ip_set_test(ip_set_id_t id, const struct sk_buff *skb,
Jozsef Kadlecsikac8cc922011-06-16 18:42:40 +0200338 const struct ip_set_adt_opt *opt);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100339
340/* Utility functions */
341extern void * ip_set_alloc(size_t size);
342extern void ip_set_free(void *members);
343extern int ip_set_get_ipaddr4(struct nlattr *nla, __be32 *ipaddr);
344extern int ip_set_get_ipaddr6(struct nlattr *nla, union nf_inet_addr *ipaddr);
345
346static inline int
347ip_set_get_hostipaddr4(struct nlattr *nla, u32 *ipaddr)
348{
349 __be32 ip;
350 int ret = ip_set_get_ipaddr4(nla, &ip);
351
352 if (ret)
353 return ret;
354 *ipaddr = ntohl(ip);
355 return 0;
356}
357
358/* Ignore IPSET_ERR_EXIST errors if asked to do so? */
359static inline bool
360ip_set_eexist(int ret, u32 flags)
361{
362 return ret == -IPSET_ERR_EXIST && (flags & IPSET_FLAG_EXIST);
363}
364
365/* Check the NLA_F_NET_BYTEORDER flag */
366static inline bool
367ip_set_attr_netorder(struct nlattr *tb[], int type)
368{
369 return tb[type] && (tb[type]->nla_type & NLA_F_NET_BYTEORDER);
370}
371
372static inline bool
373ip_set_optattr_netorder(struct nlattr *tb[], int type)
374{
375 return !tb[type] || (tb[type]->nla_type & NLA_F_NET_BYTEORDER);
376}
377
378/* Useful converters */
379static inline u32
380ip_set_get_h32(const struct nlattr *attr)
381{
382 return ntohl(nla_get_be32(attr));
383}
384
385static inline u16
386ip_set_get_h16(const struct nlattr *attr)
387{
388 return ntohs(nla_get_be16(attr));
389}
390
391#define ipset_nest_start(skb, attr) nla_nest_start(skb, attr | NLA_F_NESTED)
392#define ipset_nest_end(skb, start) nla_nest_end(skb, start)
393
394#define NLA_PUT_IPADDR4(skb, type, ipaddr) \
395do { \
396 struct nlattr *__nested = ipset_nest_start(skb, type); \
397 \
398 if (!__nested) \
399 goto nla_put_failure; \
400 NLA_PUT_NET32(skb, IPSET_ATTR_IPADDR_IPV4, ipaddr); \
401 ipset_nest_end(skb, __nested); \
402} while (0)
403
404#define NLA_PUT_IPADDR6(skb, type, ipaddrptr) \
405do { \
406 struct nlattr *__nested = ipset_nest_start(skb, type); \
407 \
408 if (!__nested) \
409 goto nla_put_failure; \
410 NLA_PUT(skb, IPSET_ATTR_IPADDR_IPV6, \
411 sizeof(struct in6_addr), ipaddrptr); \
412 ipset_nest_end(skb, __nested); \
413} while (0)
414
415/* Get address from skbuff */
416static inline __be32
417ip4addr(const struct sk_buff *skb, bool src)
418{
419 return src ? ip_hdr(skb)->saddr : ip_hdr(skb)->daddr;
420}
421
422static inline void
423ip4addrptr(const struct sk_buff *skb, bool src, __be32 *addr)
424{
425 *addr = src ? ip_hdr(skb)->saddr : ip_hdr(skb)->daddr;
426}
427
428static inline void
429ip6addrptr(const struct sk_buff *skb, bool src, struct in6_addr *addr)
430{
431 memcpy(addr, src ? &ipv6_hdr(skb)->saddr : &ipv6_hdr(skb)->daddr,
432 sizeof(*addr));
433}
434
435/* Calculate the bytes required to store the inclusive range of a-b */
436static inline int
437bitmap_bytes(u32 a, u32 b)
438{
439 return 4 * ((((b - a + 8) / 8) + 3) / 4);
440}
441
442/* Interface to iptables/ip6tables */
443
444#define SO_IP_SET 83
445
446union ip_set_name_index {
447 char name[IPSET_MAXNAMELEN];
448 ip_set_id_t index;
449};
450
451#define IP_SET_OP_GET_BYNAME 0x00000006 /* Get set index by name */
452struct ip_set_req_get_set {
453 unsigned op;
454 unsigned version;
455 union ip_set_name_index set;
456};
457
458#define IP_SET_OP_GET_BYINDEX 0x00000007 /* Get set name by index */
459/* Uses ip_set_req_get_set */
460
461#define IP_SET_OP_VERSION 0x00000100 /* Ask kernel version */
462struct ip_set_req_version {
463 unsigned op;
464 unsigned version;
465};
466
467#endif /* __KERNEL__ */
468
469#endif /*_IP_SET_H */