1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
/*
* WARNING: Do *NOT* ever include this file, only for internal use!
* Use the set/get API in order to set/get the conntrack attributes
*/
#ifndef _NFCT_OBJECT_H_
#define _NFCT_OBJECT_H_
#include <internal/bitops.h>
#include <libnetfilter_conntrack/libnetfilter_conntrack.h>
/*
* nfct callback handler object
*/
struct nfct_handle {
struct nfnl_handle *nfnlh;
struct nfnl_subsys_handle *nfnlssh_ct;
struct nfnl_subsys_handle *nfnlssh_exp;
/* callback handler for the new API */
struct nfnl_callback nfnl_cb_ct;
struct nfnl_callback nfnl_cb_exp;
int (*cb)(enum nf_conntrack_msg_type type,
struct nf_conntrack *ct,
void *data);
/* This is the second version of the callback that includes
* the Netlink header. This is the result of an early design
* error, hiding Netlink details is evil. You end needing some
* internal information at some point like the Netlink PortID. */
int (*cb2)(const struct nlmsghdr *nlh,
enum nf_conntrack_msg_type type,
struct nf_conntrack *ct,
void *data);
int (*expect_cb)(enum nf_conntrack_msg_type type,
struct nf_expect *exp,
void *data);
/* second version of the expect callback: it includes netlink header */
int (*expect_cb2)(const struct nlmsghdr *nlh,
enum nf_conntrack_msg_type type,
struct nf_expect *exp,
void *data);
};
/* container used to pass data to nfnl callbacks */
struct __data_container {
struct nfct_handle *h;
enum nf_conntrack_msg_type type;
void *data;
};
/*
* conntrack object
*/
union __nfct_l4_src {
/* Add other protocols here. */
uint16_t all;
struct {
uint16_t port;
} tcp;
struct {
uint16_t port;
} udp;
struct {
uint16_t id;
} icmp;
struct {
uint16_t port;
} sctp;
struct {
uint16_t port;
} dccp;
};
union __nfct_l4_dst {
/* Add other protocols here. */
uint16_t all;
struct {
uint16_t port;
} tcp;
struct {
uint16_t port;
} udp;
struct {
uint8_t type, code;
} icmp;
struct {
uint16_t port;
} sctp;
struct {
uint16_t port;
} dccp;
};
union __nfct_address {
uint32_t v4;
struct in6_addr v6;
};
struct __nfct_tuple {
union __nfct_address src;
union __nfct_address dst;
uint8_t l3protonum;
uint8_t protonum;
uint16_t zone;
union __nfct_l4_src l4src;
union __nfct_l4_dst l4dst;
};
#define __DIR_ORIG 0
#define __DIR_REPL 1
#define __DIR_MAX __DIR_REPL+1
#define __DIR_MASTER 2
union __nfct_protoinfo {
struct {
uint8_t state;
struct {
uint8_t value;
uint8_t mask;
} flags[__DIR_MAX];
uint8_t wscale[__DIR_MAX];
} tcp;
struct {
uint8_t state;
uint32_t vtag[__DIR_MAX];
} sctp;
struct {
uint8_t state;
uint8_t role;
uint64_t handshake_seq;
} dccp;
};
struct __nfct_counters {
uint64_t packets;
uint64_t bytes;
};
struct __nfct_nat {
union __nfct_address min_ip, max_ip;
union __nfct_l4_src l4min, l4max;
};
struct nfct_tuple_head {
struct __nfct_tuple orig;
#define __NFCT_BITSET 3
uint32_t set[__NFCT_BITSET];
};
struct nf_conntrack {
struct nfct_tuple_head head;
struct __nfct_tuple repl;
struct __nfct_tuple master;
uint32_t timeout;
uint32_t mark;
uint32_t secmark;
uint32_t status;
uint32_t use;
uint32_t id;
uint16_t zone;
char helper_name[NFCT_HELPER_NAME_MAX];
/* According to Eric Paris <eparis@redhat.com> this field can be up to 4096
* bytes long. For that reason, we allocate this dynamically. */
char *secctx;
union __nfct_protoinfo protoinfo;
struct __nfct_counters counters[__DIR_MAX];
struct __nfct_nat snat;
struct __nfct_nat dnat;
struct {
uint32_t correction_pos;
uint32_t offset_before;
uint32_t offset_after;
} natseq[__DIR_MAX];
struct {
uint64_t start;
uint64_t stop;
} timestamp;
struct {
uint32_t isn;
uint32_t its;
uint32_t tsoff;
} synproxy;
void *helper_info;
size_t helper_info_len;
struct nfct_bitmask *connlabels;
struct nfct_bitmask *connlabels_mask;
};
/*
* conntrack filter object
*/
struct nfct_filter {
/*
* As many other objects in this library, the attributes are
* private. This gives us the chance to modify the layout and
* object size.
*
* Another observation, although this object might seem too
* memory consuming, it is only needed to build the filter. Thus,
* once it is attached, you can release this object.
*/
/*
* filter logic: use positive or negative logic
*/
enum nfct_filter_logic logic[NFCT_FILTER_MAX];
/*
* This the layer 4 protocol map for filtering. Not more than 255
* protocols. Although IPPROTO_MAX is currently 263, there are many
* fewer protocols defined in netinet/in.h, so no one should reach this
* limit.
*/
#define __FILTER_L4PROTO_MAX 255
uint32_t l4proto_map[DIV_ROUND_UP(IPPROTO_MAX, 32)];
uint32_t l4proto_len;
struct {
/*
* No limitations in the protocol filtering. We use a map of
* 16 bits per protocol. As for now, DCCP has 10 states, TCP has
* 10 states, SCTP has 8 state. Therefore, 16 bits is enough.
*/
#define __FILTER_PROTO_MAX 16
uint16_t map;
uint16_t len;
} l4proto_state[IPPROTO_MAX];
#define __FILTER_ADDR_SRC 0
#define __FILTER_ADDR_DST 1
/*
* FIXME: For IPv4 filtering, up to 127 IPs by now.
* This limitation is related to the existing autogenerated BSF code
* (two BSF lines per comparison) and the fact that the maximum
* jump offset is 0xff which is 255.
*/
uint32_t l3proto_elems[2];
struct {
#define __FILTER_ADDR_MAX 127
uint32_t addr;
uint32_t mask;
} l3proto[2][__FILTER_ADDR_MAX];
/*
* FIXME: For IPv6 filtering, up to 20 IPs/masks (12 BSF lines
* per comparison). I think that it is not worthy to try to support
* more than that for performance reasons. It seems that oprofile
* shows bad numbers for very large BSF code.
*/
uint32_t l3proto_elems_ipv6[2];
struct {
#define __FILTER_IPV6_MAX 20
uint32_t addr[4];
uint32_t mask[4];
} l3proto_ipv6[2][__FILTER_IPV6_MAX];
uint32_t mark_elems;
struct {
#define __FILTER_MARK_MAX 127
uint32_t val;
uint32_t mask;
} mark[__FILTER_MARK_MAX];
uint32_t zone_elems;
#define __FILTER_ZONE_MAX 127
uint16_t zone[__FILTER_ZONE_MAX];
uint32_t set[1];
};
/*
* conntrack filter dump object
*/
struct nfct_filter_dump {
struct nf_conntrack ct;
struct nfct_filter_dump_mark mark;
struct nfct_filter_dump_mark status;
uint8_t l3num;
uint32_t set;
uint16_t zone;
};
/*
* expectation object
*/
#define __NFCT_EXPECTFN_MAX 24 /* maximum symbol length. */
struct nf_expect {
struct nfct_tuple_head master;
struct nfct_tuple_head expected;
struct nfct_tuple_head mask;
struct nfct_tuple_head nat;
uint32_t timeout;
uint32_t id;
uint16_t zone;
uint32_t flags;
uint32_t class;
char helper_name[NFCT_HELPER_NAME_MAX];
uint32_t nat_dir;
char expectfn[__NFCT_EXPECTFN_MAX];
uint32_t set[1];
};
/*
* bitmask object
*/
struct nfct_bitmask {
unsigned int words;
uint32_t bits[];
};
struct nfct_labelmap;
#endif
|