Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / netfilter / xt_conntrack.c
blob0c50b289405537348d4004108e7559169ff9031e
1 /*
2 * xt_conntrack - Netfilter module to match connection tracking
3 * information. (Superset of Rusty's minimalistic state match.)
5 * (C) 2001 Marc Boucher (marc@mbsi.ca).
6 * Copyright © CC Computer Consultants GmbH, 2007 - 2008
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
15 #include <net/ipv6.h>
16 #include <linux/netfilter/x_tables.h>
17 #include <linux/netfilter/xt_conntrack.h>
18 #include <net/netfilter/nf_conntrack.h>
20 MODULE_LICENSE("GPL");
21 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
22 MODULE_AUTHOR("Jan Engelhardt <jengelh@computergmbh.de>");
23 MODULE_DESCRIPTION("Xtables: connection tracking state match");
24 MODULE_ALIAS("ipt_conntrack");
25 MODULE_ALIAS("ip6t_conntrack");
27 static bool
28 conntrack_mt_v0(const struct sk_buff *skb, const struct net_device *in,
29 const struct net_device *out, const struct xt_match *match,
30 const void *matchinfo, int offset, unsigned int protoff,
31 bool *hotdrop)
33 const struct xt_conntrack_info *sinfo = matchinfo;
34 const struct nf_conn *ct;
35 enum ip_conntrack_info ctinfo;
36 unsigned int statebit;
38 ct = nf_ct_get(skb, &ctinfo);
40 #define FWINV(bool, invflg) ((bool) ^ !!(sinfo->invflags & (invflg)))
42 if (ct == &nf_conntrack_untracked)
43 statebit = XT_CONNTRACK_STATE_UNTRACKED;
44 else if (ct)
45 statebit = XT_CONNTRACK_STATE_BIT(ctinfo);
46 else
47 statebit = XT_CONNTRACK_STATE_INVALID;
49 if (sinfo->flags & XT_CONNTRACK_STATE) {
50 if (ct) {
51 if (test_bit(IPS_SRC_NAT_BIT, &ct->status))
52 statebit |= XT_CONNTRACK_STATE_SNAT;
53 if (test_bit(IPS_DST_NAT_BIT, &ct->status))
54 statebit |= XT_CONNTRACK_STATE_DNAT;
56 if (FWINV((statebit & sinfo->statemask) == 0,
57 XT_CONNTRACK_STATE))
58 return false;
61 if (ct == NULL) {
62 if (sinfo->flags & ~XT_CONNTRACK_STATE)
63 return false;
64 return true;
67 if (sinfo->flags & XT_CONNTRACK_PROTO &&
68 FWINV(ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.protonum !=
69 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum,
70 XT_CONNTRACK_PROTO))
71 return false;
73 if (sinfo->flags & XT_CONNTRACK_ORIGSRC &&
74 FWINV((ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3.ip &
75 sinfo->sipmsk[IP_CT_DIR_ORIGINAL].s_addr) !=
76 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip,
77 XT_CONNTRACK_ORIGSRC))
78 return false;
80 if (sinfo->flags & XT_CONNTRACK_ORIGDST &&
81 FWINV((ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.u3.ip &
82 sinfo->dipmsk[IP_CT_DIR_ORIGINAL].s_addr) !=
83 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.ip,
84 XT_CONNTRACK_ORIGDST))
85 return false;
87 if (sinfo->flags & XT_CONNTRACK_REPLSRC &&
88 FWINV((ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.u3.ip &
89 sinfo->sipmsk[IP_CT_DIR_REPLY].s_addr) !=
90 sinfo->tuple[IP_CT_DIR_REPLY].src.ip,
91 XT_CONNTRACK_REPLSRC))
92 return false;
94 if (sinfo->flags & XT_CONNTRACK_REPLDST &&
95 FWINV((ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3.ip &
96 sinfo->dipmsk[IP_CT_DIR_REPLY].s_addr) !=
97 sinfo->tuple[IP_CT_DIR_REPLY].dst.ip,
98 XT_CONNTRACK_REPLDST))
99 return false;
101 if (sinfo->flags & XT_CONNTRACK_STATUS &&
102 FWINV((ct->status & sinfo->statusmask) == 0,
103 XT_CONNTRACK_STATUS))
104 return false;
106 if(sinfo->flags & XT_CONNTRACK_EXPIRES) {
107 unsigned long expires = timer_pending(&ct->timeout) ?
108 (ct->timeout.expires - jiffies)/HZ : 0;
110 if (FWINV(!(expires >= sinfo->expires_min &&
111 expires <= sinfo->expires_max),
112 XT_CONNTRACK_EXPIRES))
113 return false;
115 return true;
116 #undef FWINV
119 static bool
120 conntrack_addrcmp(const union nf_inet_addr *kaddr,
121 const union nf_inet_addr *uaddr,
122 const union nf_inet_addr *umask, unsigned int l3proto)
124 if (l3proto == AF_INET)
125 return ((kaddr->ip ^ uaddr->ip) & umask->ip) == 0;
126 else if (l3proto == AF_INET6)
127 return ipv6_masked_addr_cmp(&kaddr->in6, &umask->in6,
128 &uaddr->in6) == 0;
129 else
130 return false;
133 static inline bool
134 conntrack_mt_origsrc(const struct nf_conn *ct,
135 const struct xt_conntrack_mtinfo1 *info,
136 unsigned int family)
138 return conntrack_addrcmp(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.u3,
139 &info->origsrc_addr, &info->origsrc_mask, family);
142 static inline bool
143 conntrack_mt_origdst(const struct nf_conn *ct,
144 const struct xt_conntrack_mtinfo1 *info,
145 unsigned int family)
147 return conntrack_addrcmp(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.dst.u3,
148 &info->origdst_addr, &info->origdst_mask, family);
151 static inline bool
152 conntrack_mt_replsrc(const struct nf_conn *ct,
153 const struct xt_conntrack_mtinfo1 *info,
154 unsigned int family)
156 return conntrack_addrcmp(&ct->tuplehash[IP_CT_DIR_REPLY].tuple.src.u3,
157 &info->replsrc_addr, &info->replsrc_mask, family);
160 static inline bool
161 conntrack_mt_repldst(const struct nf_conn *ct,
162 const struct xt_conntrack_mtinfo1 *info,
163 unsigned int family)
165 return conntrack_addrcmp(&ct->tuplehash[IP_CT_DIR_REPLY].tuple.dst.u3,
166 &info->repldst_addr, &info->repldst_mask, family);
169 static inline bool
170 ct_proto_port_check(const struct xt_conntrack_mtinfo1 *info,
171 const struct nf_conn *ct)
173 const struct nf_conntrack_tuple *tuple;
175 tuple = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
176 if ((info->match_flags & XT_CONNTRACK_PROTO) &&
177 (tuple->dst.protonum == info->l4proto) ^
178 !(info->invert_flags & XT_CONNTRACK_PROTO))
179 return false;
181 /* Shortcut to match all recognized protocols by using ->src.all. */
182 if ((info->match_flags & XT_CONNTRACK_ORIGSRC_PORT) &&
183 (tuple->src.u.all == info->origsrc_port) ^
184 !(info->invert_flags & XT_CONNTRACK_ORIGSRC_PORT))
185 return false;
187 if ((info->match_flags & XT_CONNTRACK_ORIGDST_PORT) &&
188 (tuple->dst.u.all == info->origdst_port) ^
189 !(info->invert_flags & XT_CONNTRACK_ORIGDST_PORT))
190 return false;
192 tuple = &ct->tuplehash[IP_CT_DIR_REPLY].tuple;
194 if ((info->match_flags & XT_CONNTRACK_REPLSRC_PORT) &&
195 (tuple->src.u.all == info->replsrc_port) ^
196 !(info->invert_flags & XT_CONNTRACK_REPLSRC_PORT))
197 return false;
199 if ((info->match_flags & XT_CONNTRACK_REPLDST_PORT) &&
200 (tuple->dst.u.all == info->repldst_port) ^
201 !(info->invert_flags & XT_CONNTRACK_REPLDST_PORT))
202 return false;
204 return true;
207 static bool
208 conntrack_mt(const struct sk_buff *skb, const struct net_device *in,
209 const struct net_device *out, const struct xt_match *match,
210 const void *matchinfo, int offset, unsigned int protoff,
211 bool *hotdrop)
213 const struct xt_conntrack_mtinfo1 *info = matchinfo;
214 enum ip_conntrack_info ctinfo;
215 const struct nf_conn *ct;
216 unsigned int statebit;
218 ct = nf_ct_get(skb, &ctinfo);
220 if (ct == &nf_conntrack_untracked)
221 statebit = XT_CONNTRACK_STATE_UNTRACKED;
222 else if (ct != NULL)
223 statebit = XT_CONNTRACK_STATE_BIT(ctinfo);
224 else
225 statebit = XT_CONNTRACK_STATE_INVALID;
227 if (info->match_flags & XT_CONNTRACK_STATE) {
228 if (ct != NULL) {
229 if (test_bit(IPS_SRC_NAT_BIT, &ct->status))
230 statebit |= XT_CONNTRACK_STATE_SNAT;
231 if (test_bit(IPS_DST_NAT_BIT, &ct->status))
232 statebit |= XT_CONNTRACK_STATE_DNAT;
234 if (!!(info->state_mask & statebit) ^
235 !(info->invert_flags & XT_CONNTRACK_STATE))
236 return false;
239 if (ct == NULL)
240 return info->match_flags & XT_CONNTRACK_STATE;
241 if ((info->match_flags & XT_CONNTRACK_DIRECTION) &&
242 (CTINFO2DIR(ctinfo) == IP_CT_DIR_ORIGINAL) ^
243 !!(info->invert_flags & XT_CONNTRACK_DIRECTION))
244 return false;
246 if (info->match_flags & XT_CONNTRACK_ORIGSRC)
247 if (conntrack_mt_origsrc(ct, info, match->family) ^
248 !(info->invert_flags & XT_CONNTRACK_ORIGSRC))
249 return false;
251 if (info->match_flags & XT_CONNTRACK_ORIGDST)
252 if (conntrack_mt_origdst(ct, info, match->family) ^
253 !(info->invert_flags & XT_CONNTRACK_ORIGDST))
254 return false;
256 if (info->match_flags & XT_CONNTRACK_REPLSRC)
257 if (conntrack_mt_replsrc(ct, info, match->family) ^
258 !(info->invert_flags & XT_CONNTRACK_REPLSRC))
259 return false;
261 if (info->match_flags & XT_CONNTRACK_REPLDST)
262 if (conntrack_mt_repldst(ct, info, match->family) ^
263 !(info->invert_flags & XT_CONNTRACK_REPLDST))
264 return false;
266 if (!ct_proto_port_check(info, ct))
267 return false;
269 if ((info->match_flags & XT_CONNTRACK_STATUS) &&
270 (!!(info->status_mask & ct->status) ^
271 !(info->invert_flags & XT_CONNTRACK_STATUS)))
272 return false;
274 if (info->match_flags & XT_CONNTRACK_EXPIRES) {
275 unsigned long expires = 0;
277 if (timer_pending(&ct->timeout))
278 expires = (ct->timeout.expires - jiffies) / HZ;
279 if ((expires >= info->expires_min &&
280 expires <= info->expires_max) ^
281 !(info->invert_flags & XT_CONNTRACK_EXPIRES))
282 return false;
284 return true;
287 static bool
288 conntrack_mt_check(const char *tablename, const void *ip,
289 const struct xt_match *match, void *matchinfo,
290 unsigned int hook_mask)
292 if (nf_ct_l3proto_try_module_get(match->family) < 0) {
293 printk(KERN_WARNING "can't load conntrack support for "
294 "proto=%u\n", match->family);
295 return false;
297 return true;
300 static void
301 conntrack_mt_destroy(const struct xt_match *match, void *matchinfo)
303 nf_ct_l3proto_module_put(match->family);
306 #ifdef CONFIG_COMPAT
307 struct compat_xt_conntrack_info
309 compat_uint_t statemask;
310 compat_uint_t statusmask;
311 struct ip_conntrack_old_tuple tuple[IP_CT_DIR_MAX];
312 struct in_addr sipmsk[IP_CT_DIR_MAX];
313 struct in_addr dipmsk[IP_CT_DIR_MAX];
314 compat_ulong_t expires_min;
315 compat_ulong_t expires_max;
316 u_int8_t flags;
317 u_int8_t invflags;
320 static void conntrack_mt_compat_from_user_v0(void *dst, void *src)
322 const struct compat_xt_conntrack_info *cm = src;
323 struct xt_conntrack_info m = {
324 .statemask = cm->statemask,
325 .statusmask = cm->statusmask,
326 .expires_min = cm->expires_min,
327 .expires_max = cm->expires_max,
328 .flags = cm->flags,
329 .invflags = cm->invflags,
331 memcpy(m.tuple, cm->tuple, sizeof(m.tuple));
332 memcpy(m.sipmsk, cm->sipmsk, sizeof(m.sipmsk));
333 memcpy(m.dipmsk, cm->dipmsk, sizeof(m.dipmsk));
334 memcpy(dst, &m, sizeof(m));
337 static int conntrack_mt_compat_to_user_v0(void __user *dst, void *src)
339 const struct xt_conntrack_info *m = src;
340 struct compat_xt_conntrack_info cm = {
341 .statemask = m->statemask,
342 .statusmask = m->statusmask,
343 .expires_min = m->expires_min,
344 .expires_max = m->expires_max,
345 .flags = m->flags,
346 .invflags = m->invflags,
348 memcpy(cm.tuple, m->tuple, sizeof(cm.tuple));
349 memcpy(cm.sipmsk, m->sipmsk, sizeof(cm.sipmsk));
350 memcpy(cm.dipmsk, m->dipmsk, sizeof(cm.dipmsk));
351 return copy_to_user(dst, &cm, sizeof(cm)) ? -EFAULT : 0;
353 #endif
355 static struct xt_match conntrack_mt_reg[] __read_mostly = {
357 .name = "conntrack",
358 .revision = 0,
359 .family = AF_INET,
360 .match = conntrack_mt_v0,
361 .checkentry = conntrack_mt_check,
362 .destroy = conntrack_mt_destroy,
363 .matchsize = sizeof(struct xt_conntrack_info),
364 .me = THIS_MODULE,
365 #ifdef CONFIG_COMPAT
366 .compatsize = sizeof(struct compat_xt_conntrack_info),
367 .compat_from_user = conntrack_mt_compat_from_user_v0,
368 .compat_to_user = conntrack_mt_compat_to_user_v0,
369 #endif
372 .name = "conntrack",
373 .revision = 1,
374 .family = AF_INET,
375 .matchsize = sizeof(struct xt_conntrack_mtinfo1),
376 .match = conntrack_mt,
377 .checkentry = conntrack_mt_check,
378 .destroy = conntrack_mt_destroy,
379 .me = THIS_MODULE,
382 .name = "conntrack",
383 .revision = 1,
384 .family = AF_INET6,
385 .matchsize = sizeof(struct xt_conntrack_mtinfo1),
386 .match = conntrack_mt,
387 .checkentry = conntrack_mt_check,
388 .destroy = conntrack_mt_destroy,
389 .me = THIS_MODULE,
393 static int __init conntrack_mt_init(void)
395 return xt_register_matches(conntrack_mt_reg,
396 ARRAY_SIZE(conntrack_mt_reg));
399 static void __exit conntrack_mt_exit(void)
401 xt_unregister_matches(conntrack_mt_reg, ARRAY_SIZE(conntrack_mt_reg));
404 module_init(conntrack_mt_init);
405 module_exit(conntrack_mt_exit);