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>
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");
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
,
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
;
45 statebit
= XT_CONNTRACK_STATE_BIT(ctinfo
);
47 statebit
= XT_CONNTRACK_STATE_INVALID
;
49 if (sinfo
->flags
& XT_CONNTRACK_STATE
) {
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,
62 if (sinfo
->flags
& ~XT_CONNTRACK_STATE
)
67 if (sinfo
->flags
& XT_CONNTRACK_PROTO
&&
68 FWINV(nf_ct_protonum(ct
) !=
69 sinfo
->tuple
[IP_CT_DIR_ORIGINAL
].dst
.protonum
,
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
))
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
))
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
))
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
))
101 if (sinfo
->flags
& XT_CONNTRACK_STATUS
&&
102 FWINV((ct
->status
& sinfo
->statusmask
) == 0,
103 XT_CONNTRACK_STATUS
))
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
))
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
,
134 conntrack_mt_origsrc(const struct nf_conn
*ct
,
135 const struct xt_conntrack_mtinfo1
*info
,
138 return conntrack_addrcmp(&ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.u3
,
139 &info
->origsrc_addr
, &info
->origsrc_mask
, family
);
143 conntrack_mt_origdst(const struct nf_conn
*ct
,
144 const struct xt_conntrack_mtinfo1
*info
,
147 return conntrack_addrcmp(&ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.u3
,
148 &info
->origdst_addr
, &info
->origdst_mask
, family
);
152 conntrack_mt_replsrc(const struct nf_conn
*ct
,
153 const struct xt_conntrack_mtinfo1
*info
,
156 return conntrack_addrcmp(&ct
->tuplehash
[IP_CT_DIR_REPLY
].tuple
.src
.u3
,
157 &info
->replsrc_addr
, &info
->replsrc_mask
, family
);
161 conntrack_mt_repldst(const struct nf_conn
*ct
,
162 const struct xt_conntrack_mtinfo1
*info
,
165 return conntrack_addrcmp(&ct
->tuplehash
[IP_CT_DIR_REPLY
].tuple
.dst
.u3
,
166 &info
->repldst_addr
, &info
->repldst_mask
, family
);
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 (nf_ct_protonum(ct
) == info
->l4proto
) ^
178 !(info
->invert_flags
& XT_CONNTRACK_PROTO
))
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
))
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
))
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
))
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
))
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
,
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
;
223 statebit
= XT_CONNTRACK_STATE_BIT(ctinfo
);
225 statebit
= XT_CONNTRACK_STATE_INVALID
;
227 if (info
->match_flags
& XT_CONNTRACK_STATE
) {
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
))
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
))
246 if (info
->match_flags
& XT_CONNTRACK_ORIGSRC
)
247 if (conntrack_mt_origsrc(ct
, info
, match
->family
) ^
248 !(info
->invert_flags
& XT_CONNTRACK_ORIGSRC
))
251 if (info
->match_flags
& XT_CONNTRACK_ORIGDST
)
252 if (conntrack_mt_origdst(ct
, info
, match
->family
) ^
253 !(info
->invert_flags
& XT_CONNTRACK_ORIGDST
))
256 if (info
->match_flags
& XT_CONNTRACK_REPLSRC
)
257 if (conntrack_mt_replsrc(ct
, info
, match
->family
) ^
258 !(info
->invert_flags
& XT_CONNTRACK_REPLSRC
))
261 if (info
->match_flags
& XT_CONNTRACK_REPLDST
)
262 if (conntrack_mt_repldst(ct
, info
, match
->family
) ^
263 !(info
->invert_flags
& XT_CONNTRACK_REPLDST
))
266 if (!ct_proto_port_check(info
, ct
))
269 if ((info
->match_flags
& XT_CONNTRACK_STATUS
) &&
270 (!!(info
->status_mask
& ct
->status
) ^
271 !(info
->invert_flags
& XT_CONNTRACK_STATUS
)))
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
))
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
);
301 conntrack_mt_destroy(const struct xt_match
*match
, void *matchinfo
)
303 nf_ct_l3proto_module_put(match
->family
);
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
;
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
,
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
,
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;
355 static struct xt_match conntrack_mt_reg
[] __read_mostly
= {
360 .match
= conntrack_mt_v0
,
361 .checkentry
= conntrack_mt_check
,
362 .destroy
= conntrack_mt_destroy
,
363 .matchsize
= sizeof(struct xt_conntrack_info
),
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
,
375 .matchsize
= sizeof(struct xt_conntrack_mtinfo1
),
376 .match
= conntrack_mt
,
377 .checkentry
= conntrack_mt_check
,
378 .destroy
= conntrack_mt_destroy
,
385 .matchsize
= sizeof(struct xt_conntrack_mtinfo1
),
386 .match
= conntrack_mt
,
387 .checkentry
= conntrack_mt_check
,
388 .destroy
= conntrack_mt_destroy
,
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
);