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
7 * Jan Engelhardt <jengelh@computergmbh.de>
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.
14 #include <linux/module.h>
15 #include <linux/skbuff.h>
17 #include <linux/netfilter/x_tables.h>
18 #include <linux/netfilter/xt_conntrack.h>
19 #include <net/netfilter/nf_conntrack.h>
21 MODULE_LICENSE("GPL");
22 MODULE_AUTHOR("Marc Boucher <marc@mbsi.ca>");
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(ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
!=
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
& umask
->ip
) == uaddr
->ip
;
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 conntrack_mt(const struct sk_buff
*skb
, const struct net_device
*in
,
171 const struct net_device
*out
, const struct xt_match
*match
,
172 const void *matchinfo
, int offset
, unsigned int protoff
,
175 const struct xt_conntrack_mtinfo1
*info
= matchinfo
;
176 enum ip_conntrack_info ctinfo
;
177 const struct nf_conn
*ct
;
178 unsigned int statebit
;
180 ct
= nf_ct_get(skb
, &ctinfo
);
182 if (ct
== &nf_conntrack_untracked
)
183 statebit
= XT_CONNTRACK_STATE_UNTRACKED
;
185 statebit
= XT_CONNTRACK_STATE_BIT(ctinfo
);
187 statebit
= XT_CONNTRACK_STATE_INVALID
;
189 if (info
->match_flags
& XT_CONNTRACK_STATE
) {
191 if (test_bit(IPS_SRC_NAT_BIT
, &ct
->status
))
192 statebit
|= XT_CONNTRACK_STATE_SNAT
;
193 if (test_bit(IPS_DST_NAT_BIT
, &ct
->status
))
194 statebit
|= XT_CONNTRACK_STATE_DNAT
;
196 if ((info
->state_mask
& statebit
) ^
197 !(info
->invert_flags
& XT_CONNTRACK_STATE
))
202 return info
->match_flags
& XT_CONNTRACK_STATE
;
204 if ((info
->match_flags
& XT_CONNTRACK_PROTO
) &&
205 ((ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
==
206 info
->l4proto
) ^ !(info
->invert_flags
& XT_CONNTRACK_PROTO
)))
209 if (info
->match_flags
& XT_CONNTRACK_ORIGSRC
)
210 if (conntrack_mt_origsrc(ct
, info
, match
->family
) ^
211 !(info
->invert_flags
& XT_CONNTRACK_ORIGSRC
))
214 if (info
->match_flags
& XT_CONNTRACK_ORIGDST
)
215 if (conntrack_mt_origdst(ct
, info
, match
->family
) ^
216 !(info
->invert_flags
& XT_CONNTRACK_ORIGDST
))
219 if (info
->match_flags
& XT_CONNTRACK_REPLSRC
)
220 if (conntrack_mt_replsrc(ct
, info
, match
->family
) ^
221 !(info
->invert_flags
& XT_CONNTRACK_REPLSRC
))
224 if (info
->match_flags
& XT_CONNTRACK_REPLDST
)
225 if (conntrack_mt_repldst(ct
, info
, match
->family
) ^
226 !(info
->invert_flags
& XT_CONNTRACK_REPLDST
))
229 if ((info
->match_flags
& XT_CONNTRACK_STATUS
) &&
230 (!!(info
->status_mask
& ct
->status
) ^
231 !(info
->invert_flags
& XT_CONNTRACK_STATUS
)))
234 if (info
->match_flags
& XT_CONNTRACK_EXPIRES
) {
235 unsigned long expires
= 0;
237 if (timer_pending(&ct
->timeout
))
238 expires
= (ct
->timeout
.expires
- jiffies
) / HZ
;
239 if ((expires
>= info
->expires_min
&&
240 expires
<= info
->expires_max
) ^
241 !(info
->invert_flags
& XT_CONNTRACK_EXPIRES
))
248 conntrack_mt_check(const char *tablename
, const void *ip
,
249 const struct xt_match
*match
, void *matchinfo
,
250 unsigned int hook_mask
)
252 if (nf_ct_l3proto_try_module_get(match
->family
) < 0) {
253 printk(KERN_WARNING
"can't load conntrack support for "
254 "proto=%u\n", match
->family
);
261 conntrack_mt_destroy(const struct xt_match
*match
, void *matchinfo
)
263 nf_ct_l3proto_module_put(match
->family
);
267 struct compat_xt_conntrack_info
269 compat_uint_t statemask
;
270 compat_uint_t statusmask
;
271 struct ip_conntrack_old_tuple tuple
[IP_CT_DIR_MAX
];
272 struct in_addr sipmsk
[IP_CT_DIR_MAX
];
273 struct in_addr dipmsk
[IP_CT_DIR_MAX
];
274 compat_ulong_t expires_min
;
275 compat_ulong_t expires_max
;
280 static void conntrack_mt_compat_from_user_v0(void *dst
, void *src
)
282 const struct compat_xt_conntrack_info
*cm
= src
;
283 struct xt_conntrack_info m
= {
284 .statemask
= cm
->statemask
,
285 .statusmask
= cm
->statusmask
,
286 .expires_min
= cm
->expires_min
,
287 .expires_max
= cm
->expires_max
,
289 .invflags
= cm
->invflags
,
291 memcpy(m
.tuple
, cm
->tuple
, sizeof(m
.tuple
));
292 memcpy(m
.sipmsk
, cm
->sipmsk
, sizeof(m
.sipmsk
));
293 memcpy(m
.dipmsk
, cm
->dipmsk
, sizeof(m
.dipmsk
));
294 memcpy(dst
, &m
, sizeof(m
));
297 static int conntrack_mt_compat_to_user_v0(void __user
*dst
, void *src
)
299 const struct xt_conntrack_info
*m
= src
;
300 struct compat_xt_conntrack_info cm
= {
301 .statemask
= m
->statemask
,
302 .statusmask
= m
->statusmask
,
303 .expires_min
= m
->expires_min
,
304 .expires_max
= m
->expires_max
,
306 .invflags
= m
->invflags
,
308 memcpy(cm
.tuple
, m
->tuple
, sizeof(cm
.tuple
));
309 memcpy(cm
.sipmsk
, m
->sipmsk
, sizeof(cm
.sipmsk
));
310 memcpy(cm
.dipmsk
, m
->dipmsk
, sizeof(cm
.dipmsk
));
311 return copy_to_user(dst
, &cm
, sizeof(cm
)) ? -EFAULT
: 0;
315 static struct xt_match conntrack_mt_reg
[] __read_mostly
= {
320 .match
= conntrack_mt_v0
,
321 .checkentry
= conntrack_mt_check
,
322 .destroy
= conntrack_mt_destroy
,
323 .matchsize
= sizeof(struct xt_conntrack_info
),
326 .compatsize
= sizeof(struct compat_xt_conntrack_info
),
327 .compat_from_user
= conntrack_mt_compat_from_user_v0
,
328 .compat_to_user
= conntrack_mt_compat_to_user_v0
,
335 .matchsize
= sizeof(struct xt_conntrack_mtinfo1
),
336 .match
= conntrack_mt
,
337 .checkentry
= conntrack_mt_check
,
338 .destroy
= conntrack_mt_destroy
,
345 .matchsize
= sizeof(struct xt_conntrack_mtinfo1
),
346 .match
= conntrack_mt
,
347 .checkentry
= conntrack_mt_check
,
348 .destroy
= conntrack_mt_destroy
,
353 static int __init
conntrack_mt_init(void)
355 return xt_register_matches(conntrack_mt_reg
,
356 ARRAY_SIZE(conntrack_mt_reg
));
359 static void __exit
conntrack_mt_exit(void)
361 xt_unregister_matches(conntrack_mt_reg
, ARRAY_SIZE(conntrack_mt_reg
));
364 module_init(conntrack_mt_init
);
365 module_exit(conntrack_mt_exit
);