1 /* 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 */ 10 #ifndef _UAPI_IP_SET_H 11 #define _UAPI_IP_SET_H 12 13 14 #include <linux/types.h> 15 16 /* The protocol version */ 17 #define IPSET_PROTOCOL 6 18 19 /* The max length of strings including NUL: set and type identifiers */ 20 #define IPSET_MAXNAMELEN 32 21 22 /* Message types and commands */ 23 enum ipset_cmd { 24 IPSET_CMD_NONE, 25 IPSET_CMD_PROTOCOL, /* 1: Return protocol version */ 26 IPSET_CMD_CREATE, /* 2: Create a new (empty) set */ 27 IPSET_CMD_DESTROY, /* 3: Destroy a (empty) set */ 28 IPSET_CMD_FLUSH, /* 4: Remove all elements from a set */ 29 IPSET_CMD_RENAME, /* 5: Rename a set */ 30 IPSET_CMD_SWAP, /* 6: Swap two sets */ 31 IPSET_CMD_LIST, /* 7: List sets */ 32 IPSET_CMD_SAVE, /* 8: Save sets */ 33 IPSET_CMD_ADD, /* 9: Add an element to a set */ 34 IPSET_CMD_DEL, /* 10: Delete an element from a set */ 35 IPSET_CMD_TEST, /* 11: Test an element in a set */ 36 IPSET_CMD_HEADER, /* 12: Get set header data only */ 37 IPSET_CMD_TYPE, /* 13: Get set type */ 38 IPSET_MSG_MAX, /* Netlink message commands */ 39 40 /* Commands in userspace: */ 41 IPSET_CMD_RESTORE = IPSET_MSG_MAX, /* 14: Enter restore mode */ 42 IPSET_CMD_HELP, /* 15: Get help */ 43 IPSET_CMD_VERSION, /* 16: Get program version */ 44 IPSET_CMD_QUIT, /* 17: Quit from interactive mode */ 45 46 IPSET_CMD_MAX, 47 48 IPSET_CMD_COMMIT = IPSET_CMD_MAX, /* 18: Commit buffered commands */ 49 }; 50 51 /* Attributes at command level */ 52 enum { 53 IPSET_ATTR_UNSPEC, 54 IPSET_ATTR_PROTOCOL, /* 1: Protocol version */ 55 IPSET_ATTR_SETNAME, /* 2: Name of the set */ 56 IPSET_ATTR_TYPENAME, /* 3: Typename */ 57 IPSET_ATTR_SETNAME2 = IPSET_ATTR_TYPENAME, /* Setname at rename/swap */ 58 IPSET_ATTR_REVISION, /* 4: Settype revision */ 59 IPSET_ATTR_FAMILY, /* 5: Settype family */ 60 IPSET_ATTR_FLAGS, /* 6: Flags at command level */ 61 IPSET_ATTR_DATA, /* 7: Nested attributes */ 62 IPSET_ATTR_ADT, /* 8: Multiple data containers */ 63 IPSET_ATTR_LINENO, /* 9: Restore lineno */ 64 IPSET_ATTR_PROTOCOL_MIN, /* 10: Minimal supported version number */ 65 IPSET_ATTR_REVISION_MIN = IPSET_ATTR_PROTOCOL_MIN, /* type rev min */ 66 __IPSET_ATTR_CMD_MAX, 67 }; 68 #define IPSET_ATTR_CMD_MAX (__IPSET_ATTR_CMD_MAX - 1) 69 70 /* CADT specific attributes */ 71 enum { 72 IPSET_ATTR_IP = IPSET_ATTR_UNSPEC + 1, 73 IPSET_ATTR_IP_FROM = IPSET_ATTR_IP, 74 IPSET_ATTR_IP_TO, /* 2 */ 75 IPSET_ATTR_CIDR, /* 3 */ 76 IPSET_ATTR_PORT, /* 4 */ 77 IPSET_ATTR_PORT_FROM = IPSET_ATTR_PORT, 78 IPSET_ATTR_PORT_TO, /* 5 */ 79 IPSET_ATTR_TIMEOUT, /* 6 */ 80 IPSET_ATTR_PROTO, /* 7 */ 81 IPSET_ATTR_CADT_FLAGS, /* 8 */ 82 IPSET_ATTR_CADT_LINENO = IPSET_ATTR_LINENO, /* 9 */ 83 /* Reserve empty slots */ 84 IPSET_ATTR_CADT_MAX = 16, 85 /* Create-only specific attributes */ 86 IPSET_ATTR_GC, 87 IPSET_ATTR_HASHSIZE, 88 IPSET_ATTR_MAXELEM, 89 IPSET_ATTR_NETMASK, 90 IPSET_ATTR_PROBES, 91 IPSET_ATTR_RESIZE, 92 IPSET_ATTR_SIZE, 93 /* Kernel-only */ 94 IPSET_ATTR_ELEMENTS, 95 IPSET_ATTR_REFERENCES, 96 IPSET_ATTR_MEMSIZE, 97 98 __IPSET_ATTR_CREATE_MAX, 99 }; 100 #define IPSET_ATTR_CREATE_MAX (__IPSET_ATTR_CREATE_MAX - 1) 101 102 /* ADT specific attributes */ 103 enum { 104 IPSET_ATTR_ETHER = IPSET_ATTR_CADT_MAX + 1, 105 IPSET_ATTR_NAME, 106 IPSET_ATTR_NAMEREF, 107 IPSET_ATTR_IP2, 108 IPSET_ATTR_CIDR2, 109 IPSET_ATTR_IP2_TO, 110 IPSET_ATTR_IFACE, 111 IPSET_ATTR_BYTES, 112 IPSET_ATTR_PACKETS, 113 IPSET_ATTR_SKBMARK, 114 IPSET_ATTR_SKBPRIO, 115 IPSET_ATTR_SKBQUEUE, 116 __IPSET_ATTR_ADT_MAX, 117 }; 118 #define IPSET_ATTR_ADT_MAX (__IPSET_ATTR_ADT_MAX - 1) 119 120 /* IP specific attributes */ 121 enum { 122 IPSET_ATTR_IPADDR_IPV4 = IPSET_ATTR_UNSPEC + 1, 123 IPSET_ATTR_IPADDR_IPV6, 124 __IPSET_ATTR_IPADDR_MAX, 125 }; 126 #define IPSET_ATTR_IPADDR_MAX (__IPSET_ATTR_IPADDR_MAX - 1) 127 128 /* Error codes */ 129 enum ipset_errno { 130 IPSET_ERR_PRIVATE = 4096, 131 IPSET_ERR_PROTOCOL, 132 IPSET_ERR_FIND_TYPE, 133 IPSET_ERR_MAX_SETS, 134 IPSET_ERR_BUSY, 135 IPSET_ERR_EXIST_SETNAME2, 136 IPSET_ERR_TYPE_MISMATCH, 137 IPSET_ERR_EXIST, 138 IPSET_ERR_INVALID_CIDR, 139 IPSET_ERR_INVALID_NETMASK, 140 IPSET_ERR_INVALID_FAMILY, 141 IPSET_ERR_TIMEOUT, 142 IPSET_ERR_REFERENCED, 143 IPSET_ERR_IPADDR_IPV4, 144 IPSET_ERR_IPADDR_IPV6, 145 IPSET_ERR_COUNTER, 146 IPSET_ERR_SKBINFO, 147 148 /* Type specific error codes */ 149 IPSET_ERR_TYPE_SPECIFIC = 4352, 150 }; 151 152 /* Flags at command level or match/target flags, lower half of cmdattrs */ 153 enum ipset_cmd_flags { 154 IPSET_FLAG_BIT_EXIST = 0, 155 IPSET_FLAG_EXIST = (1 << IPSET_FLAG_BIT_EXIST), 156 IPSET_FLAG_BIT_LIST_SETNAME = 1, 157 IPSET_FLAG_LIST_SETNAME = (1 << IPSET_FLAG_BIT_LIST_SETNAME), 158 IPSET_FLAG_BIT_LIST_HEADER = 2, 159 IPSET_FLAG_LIST_HEADER = (1 << IPSET_FLAG_BIT_LIST_HEADER), 160 IPSET_FLAG_BIT_SKIP_COUNTER_UPDATE = 3, 161 IPSET_FLAG_SKIP_COUNTER_UPDATE = 162 (1 << IPSET_FLAG_BIT_SKIP_COUNTER_UPDATE), 163 IPSET_FLAG_BIT_SKIP_SUBCOUNTER_UPDATE = 4, 164 IPSET_FLAG_SKIP_SUBCOUNTER_UPDATE = 165 (1 << IPSET_FLAG_BIT_SKIP_SUBCOUNTER_UPDATE), 166 IPSET_FLAG_BIT_MATCH_COUNTERS = 5, 167 IPSET_FLAG_MATCH_COUNTERS = (1 << IPSET_FLAG_BIT_MATCH_COUNTERS), 168 IPSET_FLAG_BIT_RETURN_NOMATCH = 7, 169 IPSET_FLAG_RETURN_NOMATCH = (1 << IPSET_FLAG_BIT_RETURN_NOMATCH), 170 IPSET_FLAG_BIT_MAP_SKBMARK = 8, 171 IPSET_FLAG_MAP_SKBMARK = (1 << IPSET_FLAG_BIT_MAP_SKBMARK), 172 IPSET_FLAG_BIT_MAP_SKBPRIO = 9, 173 IPSET_FLAG_MAP_SKBPRIO = (1 << IPSET_FLAG_BIT_MAP_SKBPRIO), 174 IPSET_FLAG_BIT_MAP_SKBQUEUE = 10, 175 IPSET_FLAG_MAP_SKBQUEUE = (1 << IPSET_FLAG_BIT_MAP_SKBQUEUE), 176 IPSET_FLAG_CMD_MAX = 15, 177 }; 178 179 /* Flags at CADT attribute level, upper half of cmdattrs */ 180 enum ipset_cadt_flags { 181 IPSET_FLAG_BIT_BEFORE = 0, 182 IPSET_FLAG_BEFORE = (1 << IPSET_FLAG_BIT_BEFORE), 183 IPSET_FLAG_BIT_PHYSDEV = 1, 184 IPSET_FLAG_PHYSDEV = (1 << IPSET_FLAG_BIT_PHYSDEV), 185 IPSET_FLAG_BIT_NOMATCH = 2, 186 IPSET_FLAG_NOMATCH = (1 << IPSET_FLAG_BIT_NOMATCH), 187 IPSET_FLAG_BIT_WITH_COUNTERS = 3, 188 IPSET_FLAG_WITH_COUNTERS = (1 << IPSET_FLAG_BIT_WITH_COUNTERS), 189 IPSET_FLAG_CADT_MAX = 15, 190 }; 191 192 /* Commands with settype-specific attributes */ 193 enum ipset_adt { 194 IPSET_ADD, 195 IPSET_DEL, 196 IPSET_TEST, 197 IPSET_ADT_MAX, 198 IPSET_CREATE = IPSET_ADT_MAX, 199 IPSET_CADT_MAX, 200 }; 201 202 /* Sets are identified by an index in kernel space. Tweak with ip_set_id_t 203 * and IPSET_INVALID_ID if you want to increase the max number of sets. 204 */ 205 typedef __u16 ip_set_id_t; 206 207 #define IPSET_INVALID_ID 65535 208 209 enum ip_set_dim { 210 IPSET_DIM_ZERO = 0, 211 IPSET_DIM_ONE, 212 IPSET_DIM_TWO, 213 IPSET_DIM_THREE, 214 /* Max dimension in elements. 215 * If changed, new revision of iptables match/target is required. 216 */ 217 IPSET_DIM_MAX = 6, 218 /* Backward compatibility: set match revision 2 */ 219 IPSET_BIT_RETURN_NOMATCH = 7, 220 }; 221 222 /* Option flags for kernel operations */ 223 enum ip_set_kopt { 224 IPSET_INV_MATCH = (1 << IPSET_DIM_ZERO), 225 IPSET_DIM_ONE_SRC = (1 << IPSET_DIM_ONE), 226 IPSET_DIM_TWO_SRC = (1 << IPSET_DIM_TWO), 227 IPSET_DIM_THREE_SRC = (1 << IPSET_DIM_THREE), 228 IPSET_RETURN_NOMATCH = (1 << IPSET_BIT_RETURN_NOMATCH), 229 }; 230 231 enum { 232 IPSET_COUNTER_NONE = 0, 233 IPSET_COUNTER_EQ, 234 IPSET_COUNTER_NE, 235 IPSET_COUNTER_LT, 236 IPSET_COUNTER_GT, 237 }; 238 239 /* Backward compatibility for set match v3 */ 240 struct ip_set_counter_match0 { 241 __u8 op; 242 __u64 value; 243 }; 244 245 struct ip_set_counter_match { 246 __aligned_u64 value; 247 __u8 op; 248 }; 249 250 /* Interface to iptables/ip6tables */ 251 252 #define SO_IP_SET 83 253 254 union ip_set_name_index { 255 char name[IPSET_MAXNAMELEN]; 256 ip_set_id_t index; 257 }; 258 259 #define IP_SET_OP_GET_BYNAME 0x00000006 /* Get set index by name */ 260 struct ip_set_req_get_set { 261 unsigned int op; 262 unsigned int version; 263 union ip_set_name_index set; 264 }; 265 266 #define IP_SET_OP_GET_BYINDEX 0x00000007 /* Get set name by index */ 267 /* Uses ip_set_req_get_set */ 268 269 #define IP_SET_OP_GET_FNAME 0x00000008 /* Get set index and family */ 270 struct ip_set_req_get_set_family { 271 unsigned int op; 272 unsigned int version; 273 unsigned int family; 274 union ip_set_name_index set; 275 }; 276 277 278 #define IP_SET_OP_VERSION 0x00000100 /* Ask kernel version */ 279 struct ip_set_req_version { 280 unsigned int op; 281 unsigned int version; 282 }; 283 284 #endif /* _UAPI_IP_SET_H */ 285