1 /* Connection tracking via netlink socket. Allows for user space
2 * protocol helpers and general trouble making from userspace.
4 * (C) 2001 by Jay Schulist <jschlst@samba.org>
5 * (C) 2002-2006 by Harald Welte <laforge@gnumonks.org>
6 * (C) 2003 by Patrick Mchardy <kaber@trash.net>
7 * (C) 2005-2007 by Pablo Neira Ayuso <pablo@netfilter.org>
9 * Initial connection tracking via netlink development funded and
10 * generally made possible by Network Robots, Inc. (www.networkrobots.com)
12 * Further development of this code funded by Astaro AG (http://www.astaro.com)
14 * This software may be used and distributed according to the terms
15 * of the GNU General Public License, incorporated herein by reference.
18 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/types.h>
22 #include <linux/timer.h>
23 #include <linux/skbuff.h>
24 #include <linux/errno.h>
25 #include <linux/netlink.h>
26 #include <linux/spinlock.h>
27 #include <linux/interrupt.h>
28 #include <linux/notifier.h>
30 #include <linux/netfilter.h>
31 #include <net/netlink.h>
32 #include <net/netfilter/nf_conntrack.h>
33 #include <net/netfilter/nf_conntrack_core.h>
34 #include <net/netfilter/nf_conntrack_expect.h>
35 #include <net/netfilter/nf_conntrack_helper.h>
36 #include <net/netfilter/nf_conntrack_l3proto.h>
37 #include <net/netfilter/nf_conntrack_l4proto.h>
38 #include <net/netfilter/nf_conntrack_tuple.h>
39 #ifdef CONFIG_NF_NAT_NEEDED
40 #include <net/netfilter/nf_nat_core.h>
41 #include <net/netfilter/nf_nat_protocol.h>
44 #include <linux/netfilter/nfnetlink.h>
45 #include <linux/netfilter/nfnetlink_conntrack.h>
47 MODULE_LICENSE("GPL");
49 static char __initdata version
[] = "0.93";
52 ctnetlink_dump_tuples_proto(struct sk_buff
*skb
,
53 const struct nf_conntrack_tuple
*tuple
,
54 struct nf_conntrack_l4proto
*l4proto
)
57 struct nlattr
*nest_parms
;
59 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_PROTO
| NLA_F_NESTED
);
62 NLA_PUT(skb
, CTA_PROTO_NUM
, sizeof(u_int8_t
), &tuple
->dst
.protonum
);
64 if (likely(l4proto
->tuple_to_nlattr
))
65 ret
= l4proto
->tuple_to_nlattr(skb
, tuple
);
67 nla_nest_end(skb
, nest_parms
);
76 ctnetlink_dump_tuples_ip(struct sk_buff
*skb
,
77 const struct nf_conntrack_tuple
*tuple
,
78 struct nf_conntrack_l3proto
*l3proto
)
81 struct nlattr
*nest_parms
;
83 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_IP
| NLA_F_NESTED
);
87 if (likely(l3proto
->tuple_to_nlattr
))
88 ret
= l3proto
->tuple_to_nlattr(skb
, tuple
);
90 nla_nest_end(skb
, nest_parms
);
99 ctnetlink_dump_tuples(struct sk_buff
*skb
,
100 const struct nf_conntrack_tuple
*tuple
)
103 struct nf_conntrack_l3proto
*l3proto
;
104 struct nf_conntrack_l4proto
*l4proto
;
106 l3proto
= nf_ct_l3proto_find_get(tuple
->src
.l3num
);
107 ret
= ctnetlink_dump_tuples_ip(skb
, tuple
, l3proto
);
108 nf_ct_l3proto_put(l3proto
);
110 if (unlikely(ret
< 0))
113 l4proto
= nf_ct_l4proto_find_get(tuple
->src
.l3num
, tuple
->dst
.protonum
);
114 ret
= ctnetlink_dump_tuples_proto(skb
, tuple
, l4proto
);
115 nf_ct_l4proto_put(l4proto
);
121 ctnetlink_dump_status(struct sk_buff
*skb
, const struct nf_conn
*ct
)
123 __be32 status
= htonl((u_int32_t
) ct
->status
);
124 NLA_PUT(skb
, CTA_STATUS
, sizeof(status
), &status
);
132 ctnetlink_dump_timeout(struct sk_buff
*skb
, const struct nf_conn
*ct
)
134 long timeout_l
= ct
->timeout
.expires
- jiffies
;
140 timeout
= htonl(timeout_l
/ HZ
);
142 NLA_PUT(skb
, CTA_TIMEOUT
, sizeof(timeout
), &timeout
);
150 ctnetlink_dump_protoinfo(struct sk_buff
*skb
, const struct nf_conn
*ct
)
152 struct nf_conntrack_l4proto
*l4proto
= nf_ct_l4proto_find_get(ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
, ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
);
153 struct nlattr
*nest_proto
;
156 if (!l4proto
->to_nlattr
) {
157 nf_ct_l4proto_put(l4proto
);
161 nest_proto
= nla_nest_start(skb
, CTA_PROTOINFO
| NLA_F_NESTED
);
163 goto nla_put_failure
;
165 ret
= l4proto
->to_nlattr(skb
, nest_proto
, ct
);
167 nf_ct_l4proto_put(l4proto
);
169 nla_nest_end(skb
, nest_proto
);
174 nf_ct_l4proto_put(l4proto
);
179 ctnetlink_dump_helpinfo(struct sk_buff
*skb
, const struct nf_conn
*ct
)
181 struct nlattr
*nest_helper
;
182 const struct nf_conn_help
*help
= nfct_help(ct
);
183 struct nf_conntrack_helper
*helper
;
189 helper
= rcu_dereference(help
->helper
);
193 nest_helper
= nla_nest_start(skb
, CTA_HELP
| NLA_F_NESTED
);
195 goto nla_put_failure
;
196 NLA_PUT(skb
, CTA_HELP_NAME
, strlen(helper
->name
), helper
->name
);
198 if (helper
->to_nlattr
)
199 helper
->to_nlattr(skb
, ct
);
201 nla_nest_end(skb
, nest_helper
);
211 #ifdef CONFIG_NF_CT_ACCT
213 ctnetlink_dump_counters(struct sk_buff
*skb
, const struct nf_conn
*ct
,
214 enum ip_conntrack_dir dir
)
216 enum ctattr_type type
= dir
? CTA_COUNTERS_REPLY
: CTA_COUNTERS_ORIG
;
217 struct nlattr
*nest_count
;
220 nest_count
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
222 goto nla_put_failure
;
224 tmp
= htonl(ct
->counters
[dir
].packets
);
225 NLA_PUT(skb
, CTA_COUNTERS32_PACKETS
, sizeof(u_int32_t
), &tmp
);
227 tmp
= htonl(ct
->counters
[dir
].bytes
);
228 NLA_PUT(skb
, CTA_COUNTERS32_BYTES
, sizeof(u_int32_t
), &tmp
);
230 nla_nest_end(skb
, nest_count
);
238 #define ctnetlink_dump_counters(a, b, c) (0)
241 #ifdef CONFIG_NF_CONNTRACK_MARK
243 ctnetlink_dump_mark(struct sk_buff
*skb
, const struct nf_conn
*ct
)
245 __be32 mark
= htonl(ct
->mark
);
247 NLA_PUT(skb
, CTA_MARK
, sizeof(u_int32_t
), &mark
);
254 #define ctnetlink_dump_mark(a, b) (0)
258 ctnetlink_dump_id(struct sk_buff
*skb
, const struct nf_conn
*ct
)
260 __be32 id
= htonl((unsigned long)ct
);
261 NLA_PUT(skb
, CTA_ID
, sizeof(u_int32_t
), &id
);
269 ctnetlink_dump_use(struct sk_buff
*skb
, const struct nf_conn
*ct
)
271 __be32 use
= htonl(atomic_read(&ct
->ct_general
.use
));
273 NLA_PUT(skb
, CTA_USE
, sizeof(u_int32_t
), &use
);
280 #define tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
283 ctnetlink_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
284 int event
, int nowait
,
285 const struct nf_conn
*ct
)
287 struct nlmsghdr
*nlh
;
288 struct nfgenmsg
*nfmsg
;
289 struct nlattr
*nest_parms
;
290 unsigned char *b
= skb_tail_pointer(skb
);
292 event
|= NFNL_SUBSYS_CTNETLINK
<< 8;
293 nlh
= NLMSG_PUT(skb
, pid
, seq
, event
, sizeof(struct nfgenmsg
));
294 nfmsg
= NLMSG_DATA(nlh
);
296 nlh
->nlmsg_flags
= (nowait
&& pid
) ? NLM_F_MULTI
: 0;
297 nfmsg
->nfgen_family
=
298 ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
;
299 nfmsg
->version
= NFNETLINK_V0
;
302 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_ORIG
| NLA_F_NESTED
);
304 goto nla_put_failure
;
305 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_ORIGINAL
)) < 0)
306 goto nla_put_failure
;
307 nla_nest_end(skb
, nest_parms
);
309 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_REPLY
| NLA_F_NESTED
);
311 goto nla_put_failure
;
312 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_REPLY
)) < 0)
313 goto nla_put_failure
;
314 nla_nest_end(skb
, nest_parms
);
316 if (ctnetlink_dump_status(skb
, ct
) < 0 ||
317 ctnetlink_dump_timeout(skb
, ct
) < 0 ||
318 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
) < 0 ||
319 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
) < 0 ||
320 ctnetlink_dump_protoinfo(skb
, ct
) < 0 ||
321 ctnetlink_dump_helpinfo(skb
, ct
) < 0 ||
322 ctnetlink_dump_mark(skb
, ct
) < 0 ||
323 ctnetlink_dump_id(skb
, ct
) < 0 ||
324 ctnetlink_dump_use(skb
, ct
) < 0)
325 goto nla_put_failure
;
327 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
336 #ifdef CONFIG_NF_CONNTRACK_EVENTS
337 static int ctnetlink_conntrack_event(struct notifier_block
*this,
338 unsigned long events
, void *ptr
)
340 struct nlmsghdr
*nlh
;
341 struct nfgenmsg
*nfmsg
;
342 struct nlattr
*nest_parms
;
343 struct nf_conn
*ct
= (struct nf_conn
*)ptr
;
347 unsigned int flags
= 0, group
;
349 /* ignore our fake conntrack entry */
350 if (ct
== &nf_conntrack_untracked
)
353 if (events
& IPCT_DESTROY
) {
354 type
= IPCTNL_MSG_CT_DELETE
;
355 group
= NFNLGRP_CONNTRACK_DESTROY
;
356 } else if (events
& (IPCT_NEW
| IPCT_RELATED
)) {
357 type
= IPCTNL_MSG_CT_NEW
;
358 flags
= NLM_F_CREATE
|NLM_F_EXCL
;
359 group
= NFNLGRP_CONNTRACK_NEW
;
360 } else if (events
& (IPCT_STATUS
| IPCT_PROTOINFO
)) {
361 type
= IPCTNL_MSG_CT_NEW
;
362 group
= NFNLGRP_CONNTRACK_UPDATE
;
366 if (!nfnetlink_has_listeners(group
))
369 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_ATOMIC
);
375 type
|= NFNL_SUBSYS_CTNETLINK
<< 8;
376 nlh
= NLMSG_PUT(skb
, 0, 0, type
, sizeof(struct nfgenmsg
));
377 nfmsg
= NLMSG_DATA(nlh
);
379 nlh
->nlmsg_flags
= flags
;
380 nfmsg
->nfgen_family
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
;
381 nfmsg
->version
= NFNETLINK_V0
;
384 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_ORIG
| NLA_F_NESTED
);
386 goto nla_put_failure
;
387 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_ORIGINAL
)) < 0)
388 goto nla_put_failure
;
389 nla_nest_end(skb
, nest_parms
);
391 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_REPLY
| NLA_F_NESTED
);
393 goto nla_put_failure
;
394 if (ctnetlink_dump_tuples(skb
, tuple(ct
, IP_CT_DIR_REPLY
)) < 0)
395 goto nla_put_failure
;
396 nla_nest_end(skb
, nest_parms
);
398 if (events
& IPCT_DESTROY
) {
399 if (ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
) < 0 ||
400 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
) < 0)
401 goto nla_put_failure
;
403 if (ctnetlink_dump_status(skb
, ct
) < 0)
404 goto nla_put_failure
;
406 if (ctnetlink_dump_timeout(skb
, ct
) < 0)
407 goto nla_put_failure
;
409 if (events
& IPCT_PROTOINFO
410 && ctnetlink_dump_protoinfo(skb
, ct
) < 0)
411 goto nla_put_failure
;
413 if ((events
& IPCT_HELPER
|| nfct_help(ct
))
414 && ctnetlink_dump_helpinfo(skb
, ct
) < 0)
415 goto nla_put_failure
;
417 #ifdef CONFIG_NF_CONNTRACK_MARK
418 if ((events
& IPCT_MARK
|| ct
->mark
)
419 && ctnetlink_dump_mark(skb
, ct
) < 0)
420 goto nla_put_failure
;
423 if (events
& IPCT_COUNTER_FILLING
&&
424 (ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
) < 0 ||
425 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
) < 0))
426 goto nla_put_failure
;
429 nlh
->nlmsg_len
= skb
->tail
- b
;
430 nfnetlink_send(skb
, 0, group
, 0);
438 #endif /* CONFIG_NF_CONNTRACK_EVENTS */
440 static int ctnetlink_done(struct netlink_callback
*cb
)
443 nf_ct_put((struct nf_conn
*)cb
->args
[1]);
447 #define L3PROTO(ct) ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple.src.l3num
450 ctnetlink_dump_table(struct sk_buff
*skb
, struct netlink_callback
*cb
)
452 struct nf_conn
*ct
, *last
;
453 struct nf_conntrack_tuple_hash
*h
;
454 struct hlist_node
*n
;
455 struct nfgenmsg
*nfmsg
= NLMSG_DATA(cb
->nlh
);
456 u_int8_t l3proto
= nfmsg
->nfgen_family
;
458 read_lock_bh(&nf_conntrack_lock
);
459 last
= (struct nf_conn
*)cb
->args
[1];
460 for (; cb
->args
[0] < nf_conntrack_htable_size
; cb
->args
[0]++) {
462 hlist_for_each_entry(h
, n
, &nf_conntrack_hash
[cb
->args
[0]],
464 if (NF_CT_DIRECTION(h
) != IP_CT_DIR_ORIGINAL
)
466 ct
= nf_ct_tuplehash_to_ctrack(h
);
467 /* Dump entries of a given L3 protocol number.
468 * If it is not specified, ie. l3proto == 0,
469 * then dump everything. */
470 if (l3proto
&& L3PROTO(ct
) != l3proto
)
477 if (ctnetlink_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
481 nf_conntrack_get(&ct
->ct_general
);
482 cb
->args
[1] = (unsigned long)ct
;
485 #ifdef CONFIG_NF_CT_ACCT
486 if (NFNL_MSG_TYPE(cb
->nlh
->nlmsg_type
) ==
487 IPCTNL_MSG_CT_GET_CTRZERO
)
488 memset(&ct
->counters
, 0, sizeof(ct
->counters
));
497 read_unlock_bh(&nf_conntrack_lock
);
505 ctnetlink_parse_tuple_ip(struct nlattr
*attr
, struct nf_conntrack_tuple
*tuple
)
507 struct nlattr
*tb
[CTA_IP_MAX
+1];
508 struct nf_conntrack_l3proto
*l3proto
;
511 nla_parse_nested(tb
, CTA_IP_MAX
, attr
, NULL
);
513 l3proto
= nf_ct_l3proto_find_get(tuple
->src
.l3num
);
515 if (likely(l3proto
->nlattr_to_tuple
)) {
516 ret
= nla_validate_nested(attr
, CTA_IP_MAX
,
517 l3proto
->nla_policy
);
519 ret
= l3proto
->nlattr_to_tuple(tb
, tuple
);
522 nf_ct_l3proto_put(l3proto
);
527 static const struct nla_policy proto_nla_policy
[CTA_PROTO_MAX
+1] = {
528 [CTA_PROTO_NUM
] = { .type
= NLA_U8
},
532 ctnetlink_parse_tuple_proto(struct nlattr
*attr
,
533 struct nf_conntrack_tuple
*tuple
)
535 struct nlattr
*tb
[CTA_PROTO_MAX
+1];
536 struct nf_conntrack_l4proto
*l4proto
;
539 ret
= nla_parse_nested(tb
, CTA_PROTO_MAX
, attr
, proto_nla_policy
);
543 if (!tb
[CTA_PROTO_NUM
])
545 tuple
->dst
.protonum
= *(u_int8_t
*)nla_data(tb
[CTA_PROTO_NUM
]);
547 l4proto
= nf_ct_l4proto_find_get(tuple
->src
.l3num
, tuple
->dst
.protonum
);
549 if (likely(l4proto
->nlattr_to_tuple
)) {
550 ret
= nla_validate_nested(attr
, CTA_PROTO_MAX
,
551 l4proto
->nla_policy
);
553 ret
= l4proto
->nlattr_to_tuple(tb
, tuple
);
556 nf_ct_l4proto_put(l4proto
);
562 ctnetlink_parse_tuple(struct nlattr
*cda
[], struct nf_conntrack_tuple
*tuple
,
563 enum ctattr_tuple type
, u_int8_t l3num
)
565 struct nlattr
*tb
[CTA_TUPLE_MAX
+1];
568 memset(tuple
, 0, sizeof(*tuple
));
570 nla_parse_nested(tb
, CTA_TUPLE_MAX
, cda
[type
], NULL
);
572 if (!tb
[CTA_TUPLE_IP
])
575 tuple
->src
.l3num
= l3num
;
577 err
= ctnetlink_parse_tuple_ip(tb
[CTA_TUPLE_IP
], tuple
);
581 if (!tb
[CTA_TUPLE_PROTO
])
584 err
= ctnetlink_parse_tuple_proto(tb
[CTA_TUPLE_PROTO
], tuple
);
588 /* orig and expect tuples get DIR_ORIGINAL */
589 if (type
== CTA_TUPLE_REPLY
)
590 tuple
->dst
.dir
= IP_CT_DIR_REPLY
;
592 tuple
->dst
.dir
= IP_CT_DIR_ORIGINAL
;
597 #ifdef CONFIG_NF_NAT_NEEDED
598 static const struct nla_policy protonat_nla_policy
[CTA_PROTONAT_MAX
+1] = {
599 [CTA_PROTONAT_PORT_MIN
] = { .type
= NLA_U16
},
600 [CTA_PROTONAT_PORT_MAX
] = { .type
= NLA_U16
},
603 static int nfnetlink_parse_nat_proto(struct nlattr
*attr
,
604 const struct nf_conn
*ct
,
605 struct nf_nat_range
*range
)
607 struct nlattr
*tb
[CTA_PROTONAT_MAX
+1];
608 struct nf_nat_protocol
*npt
;
611 err
= nla_parse_nested(tb
, CTA_PROTONAT_MAX
, attr
, protonat_nla_policy
);
615 npt
= nf_nat_proto_find_get(ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
);
617 if (!npt
->nlattr_to_range
) {
618 nf_nat_proto_put(npt
);
622 /* nlattr_to_range returns 1 if it parsed, 0 if not, neg. on error */
623 if (npt
->nlattr_to_range(tb
, range
) > 0)
624 range
->flags
|= IP_NAT_RANGE_PROTO_SPECIFIED
;
626 nf_nat_proto_put(npt
);
631 static const struct nla_policy nat_nla_policy
[CTA_NAT_MAX
+1] = {
632 [CTA_NAT_MINIP
] = { .type
= NLA_U32
},
633 [CTA_NAT_MAXIP
] = { .type
= NLA_U32
},
637 nfnetlink_parse_nat(struct nlattr
*nat
,
638 const struct nf_conn
*ct
, struct nf_nat_range
*range
)
640 struct nlattr
*tb
[CTA_NAT_MAX
+1];
643 memset(range
, 0, sizeof(*range
));
645 err
= nla_parse_nested(tb
, CTA_NAT_MAX
, nat
, nat_nla_policy
);
649 if (tb
[CTA_NAT_MINIP
])
650 range
->min_ip
= *(__be32
*)nla_data(tb
[CTA_NAT_MINIP
]);
652 if (!tb
[CTA_NAT_MAXIP
])
653 range
->max_ip
= range
->min_ip
;
655 range
->max_ip
= *(__be32
*)nla_data(tb
[CTA_NAT_MAXIP
]);
658 range
->flags
|= IP_NAT_RANGE_MAP_IPS
;
660 if (!tb
[CTA_NAT_PROTO
])
663 err
= nfnetlink_parse_nat_proto(tb
[CTA_NAT_PROTO
], ct
, range
);
672 ctnetlink_parse_help(struct nlattr
*attr
, char **helper_name
)
674 struct nlattr
*tb
[CTA_HELP_MAX
+1];
676 nla_parse_nested(tb
, CTA_HELP_MAX
, attr
, NULL
);
678 if (!tb
[CTA_HELP_NAME
])
681 *helper_name
= nla_data(tb
[CTA_HELP_NAME
]);
686 static const struct nla_policy ct_nla_policy
[CTA_MAX
+1] = {
687 [CTA_STATUS
] = { .type
= NLA_U32
},
688 [CTA_TIMEOUT
] = { .type
= NLA_U32
},
689 [CTA_MARK
] = { .type
= NLA_U32
},
690 [CTA_USE
] = { .type
= NLA_U32
},
691 [CTA_ID
] = { .type
= NLA_U32
},
695 ctnetlink_del_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
696 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
698 struct nf_conntrack_tuple_hash
*h
;
699 struct nf_conntrack_tuple tuple
;
701 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
702 u_int8_t u3
= nfmsg
->nfgen_family
;
705 if (cda
[CTA_TUPLE_ORIG
])
706 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_ORIG
, u3
);
707 else if (cda
[CTA_TUPLE_REPLY
])
708 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_REPLY
, u3
);
710 /* Flush the whole table */
711 nf_conntrack_flush();
718 h
= nf_conntrack_find_get(&tuple
);
722 ct
= nf_ct_tuplehash_to_ctrack(h
);
725 u_int32_t id
= ntohl(*(__be32
*)nla_data(cda
[CTA_ID
]));
726 if (id
!= (u32
)(unsigned long)ct
) {
731 if (del_timer(&ct
->timeout
))
732 ct
->timeout
.function((unsigned long)ct
);
740 ctnetlink_get_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
741 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
743 struct nf_conntrack_tuple_hash
*h
;
744 struct nf_conntrack_tuple tuple
;
746 struct sk_buff
*skb2
= NULL
;
747 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
748 u_int8_t u3
= nfmsg
->nfgen_family
;
751 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
752 #ifndef CONFIG_NF_CT_ACCT
753 if (NFNL_MSG_TYPE(nlh
->nlmsg_type
) == IPCTNL_MSG_CT_GET_CTRZERO
)
756 return netlink_dump_start(ctnl
, skb
, nlh
, ctnetlink_dump_table
,
760 if (cda
[CTA_TUPLE_ORIG
])
761 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_ORIG
, u3
);
762 else if (cda
[CTA_TUPLE_REPLY
])
763 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_REPLY
, u3
);
770 h
= nf_conntrack_find_get(&tuple
);
774 ct
= nf_ct_tuplehash_to_ctrack(h
);
777 skb2
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
783 err
= ctnetlink_fill_info(skb2
, NETLINK_CB(skb
).pid
, nlh
->nlmsg_seq
,
784 IPCTNL_MSG_CT_NEW
, 1, ct
);
789 err
= netlink_unicast(ctnl
, skb2
, NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
802 ctnetlink_change_status(struct nf_conn
*ct
, struct nlattr
*cda
[])
805 unsigned int status
= ntohl(*(__be32
*)nla_data(cda
[CTA_STATUS
]));
806 d
= ct
->status
^ status
;
808 if (d
& (IPS_EXPECTED
|IPS_CONFIRMED
|IPS_DYING
))
812 if (d
& IPS_SEEN_REPLY
&& !(status
& IPS_SEEN_REPLY
))
813 /* SEEN_REPLY bit can only be set */
817 if (d
& IPS_ASSURED
&& !(status
& IPS_ASSURED
))
818 /* ASSURED bit can only be set */
821 if (cda
[CTA_NAT_SRC
] || cda
[CTA_NAT_DST
]) {
822 #ifndef CONFIG_NF_NAT_NEEDED
825 struct nf_nat_range range
;
827 if (cda
[CTA_NAT_DST
]) {
828 if (nfnetlink_parse_nat(cda
[CTA_NAT_DST
], ct
,
831 if (nf_nat_initialized(ct
,
832 HOOK2MANIP(NF_IP_PRE_ROUTING
)))
834 nf_nat_setup_info(ct
, &range
, NF_IP_PRE_ROUTING
);
836 if (cda
[CTA_NAT_SRC
]) {
837 if (nfnetlink_parse_nat(cda
[CTA_NAT_SRC
], ct
,
840 if (nf_nat_initialized(ct
,
841 HOOK2MANIP(NF_IP_POST_ROUTING
)))
843 nf_nat_setup_info(ct
, &range
, NF_IP_POST_ROUTING
);
848 /* Be careful here, modifying NAT bits can screw up things,
849 * so don't let users modify them directly if they don't pass
851 ct
->status
|= status
& ~(IPS_NAT_DONE_MASK
| IPS_NAT_MASK
);
857 ctnetlink_change_helper(struct nf_conn
*ct
, struct nlattr
*cda
[])
859 struct nf_conntrack_helper
*helper
;
860 struct nf_conn_help
*help
= nfct_help(ct
);
864 /* don't change helper of sibling connections */
868 err
= ctnetlink_parse_help(cda
[CTA_HELP
], &helpname
);
872 if (!strcmp(helpname
, "")) {
873 if (help
&& help
->helper
) {
874 /* we had a helper before ... */
875 nf_ct_remove_expectations(ct
);
876 rcu_assign_pointer(help
->helper
, NULL
);
882 helper
= __nf_conntrack_helper_find_byname(helpname
);
887 if (help
->helper
== helper
)
891 /* need to zero data of old helper */
892 memset(&help
->help
, 0, sizeof(help
->help
));
894 help
= nf_ct_helper_ext_add(ct
, GFP_KERNEL
);
899 rcu_assign_pointer(help
->helper
, helper
);
905 ctnetlink_change_timeout(struct nf_conn
*ct
, struct nlattr
*cda
[])
907 u_int32_t timeout
= ntohl(*(__be32
*)nla_data(cda
[CTA_TIMEOUT
]));
909 if (!del_timer(&ct
->timeout
))
912 ct
->timeout
.expires
= jiffies
+ timeout
* HZ
;
913 add_timer(&ct
->timeout
);
919 ctnetlink_change_protoinfo(struct nf_conn
*ct
, struct nlattr
*cda
[])
921 struct nlattr
*tb
[CTA_PROTOINFO_MAX
+1], *attr
= cda
[CTA_PROTOINFO
];
922 struct nf_conntrack_l4proto
*l4proto
;
923 u_int16_t npt
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.dst
.protonum
;
924 u_int16_t l3num
= ct
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
.src
.l3num
;
927 nla_parse_nested(tb
, CTA_PROTOINFO_MAX
, attr
, NULL
);
929 l4proto
= nf_ct_l4proto_find_get(l3num
, npt
);
931 if (l4proto
->from_nlattr
)
932 err
= l4proto
->from_nlattr(tb
, ct
);
933 nf_ct_l4proto_put(l4proto
);
939 ctnetlink_change_conntrack(struct nf_conn
*ct
, struct nlattr
*cda
[])
944 err
= ctnetlink_change_helper(ct
, cda
);
949 if (cda
[CTA_TIMEOUT
]) {
950 err
= ctnetlink_change_timeout(ct
, cda
);
955 if (cda
[CTA_STATUS
]) {
956 err
= ctnetlink_change_status(ct
, cda
);
961 if (cda
[CTA_PROTOINFO
]) {
962 err
= ctnetlink_change_protoinfo(ct
, cda
);
967 #if defined(CONFIG_NF_CONNTRACK_MARK)
969 ct
->mark
= ntohl(*(__be32
*)nla_data(cda
[CTA_MARK
]));
976 ctnetlink_create_conntrack(struct nlattr
*cda
[],
977 struct nf_conntrack_tuple
*otuple
,
978 struct nf_conntrack_tuple
*rtuple
,
979 struct nf_conn
*master_ct
)
983 struct nf_conn_help
*help
;
984 struct nf_conntrack_helper
*helper
;
986 ct
= nf_conntrack_alloc(otuple
, rtuple
);
987 if (ct
== NULL
|| IS_ERR(ct
))
990 if (!cda
[CTA_TIMEOUT
])
992 ct
->timeout
.expires
= ntohl(*(__be32
*)nla_data(cda
[CTA_TIMEOUT
]));
994 ct
->timeout
.expires
= jiffies
+ ct
->timeout
.expires
* HZ
;
995 ct
->status
|= IPS_CONFIRMED
;
997 if (cda
[CTA_STATUS
]) {
998 err
= ctnetlink_change_status(ct
, cda
);
1003 if (cda
[CTA_PROTOINFO
]) {
1004 err
= ctnetlink_change_protoinfo(ct
, cda
);
1009 #if defined(CONFIG_NF_CONNTRACK_MARK)
1011 ct
->mark
= ntohl(*(__be32
*)nla_data(cda
[CTA_MARK
]));
1014 helper
= nf_ct_helper_find_get(rtuple
);
1016 help
= nf_ct_helper_ext_add(ct
, GFP_KERNEL
);
1018 nf_ct_helper_put(helper
);
1022 /* not in hash table yet so not strictly necessary */
1023 rcu_assign_pointer(help
->helper
, helper
);
1026 /* setup master conntrack: this is a confirmed expectation */
1028 ct
->master
= master_ct
;
1030 add_timer(&ct
->timeout
);
1031 nf_conntrack_hash_insert(ct
);
1034 nf_ct_helper_put(helper
);
1039 nf_conntrack_free(ct
);
1044 ctnetlink_new_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
1045 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1047 struct nf_conntrack_tuple otuple
, rtuple
;
1048 struct nf_conntrack_tuple_hash
*h
= NULL
;
1049 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1050 u_int8_t u3
= nfmsg
->nfgen_family
;
1053 if (cda
[CTA_TUPLE_ORIG
]) {
1054 err
= ctnetlink_parse_tuple(cda
, &otuple
, CTA_TUPLE_ORIG
, u3
);
1059 if (cda
[CTA_TUPLE_REPLY
]) {
1060 err
= ctnetlink_parse_tuple(cda
, &rtuple
, CTA_TUPLE_REPLY
, u3
);
1065 write_lock_bh(&nf_conntrack_lock
);
1066 if (cda
[CTA_TUPLE_ORIG
])
1067 h
= __nf_conntrack_find(&otuple
, NULL
);
1068 else if (cda
[CTA_TUPLE_REPLY
])
1069 h
= __nf_conntrack_find(&rtuple
, NULL
);
1072 struct nf_conntrack_tuple master
;
1073 struct nf_conntrack_tuple_hash
*master_h
= NULL
;
1074 struct nf_conn
*master_ct
= NULL
;
1076 if (cda
[CTA_TUPLE_MASTER
]) {
1077 err
= ctnetlink_parse_tuple(cda
,
1084 master_h
= __nf_conntrack_find(&master
, NULL
);
1085 if (master_h
== NULL
) {
1089 master_ct
= nf_ct_tuplehash_to_ctrack(master_h
);
1090 atomic_inc(&master_ct
->ct_general
.use
);
1093 write_unlock_bh(&nf_conntrack_lock
);
1095 if (nlh
->nlmsg_flags
& NLM_F_CREATE
)
1096 err
= ctnetlink_create_conntrack(cda
,
1100 if (err
< 0 && master_ct
)
1101 nf_ct_put(master_ct
);
1105 /* implicit 'else' */
1107 /* We manipulate the conntrack inside the global conntrack table lock,
1108 * so there's no need to increase the refcount */
1110 if (!(nlh
->nlmsg_flags
& NLM_F_EXCL
)) {
1111 /* we only allow nat config for new conntracks */
1112 if (cda
[CTA_NAT_SRC
] || cda
[CTA_NAT_DST
]) {
1116 /* can't link an existing conntrack to a master */
1117 if (cda
[CTA_TUPLE_MASTER
]) {
1121 err
= ctnetlink_change_conntrack(nf_ct_tuplehash_to_ctrack(h
),
1126 write_unlock_bh(&nf_conntrack_lock
);
1130 /***********************************************************************
1132 ***********************************************************************/
1135 ctnetlink_exp_dump_tuple(struct sk_buff
*skb
,
1136 const struct nf_conntrack_tuple
*tuple
,
1137 enum ctattr_expect type
)
1139 struct nlattr
*nest_parms
;
1141 nest_parms
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
1143 goto nla_put_failure
;
1144 if (ctnetlink_dump_tuples(skb
, tuple
) < 0)
1145 goto nla_put_failure
;
1146 nla_nest_end(skb
, nest_parms
);
1155 ctnetlink_exp_dump_mask(struct sk_buff
*skb
,
1156 const struct nf_conntrack_tuple
*tuple
,
1157 const struct nf_conntrack_tuple_mask
*mask
)
1160 struct nf_conntrack_l3proto
*l3proto
;
1161 struct nf_conntrack_l4proto
*l4proto
;
1162 struct nf_conntrack_tuple m
;
1163 struct nlattr
*nest_parms
;
1165 memset(&m
, 0xFF, sizeof(m
));
1166 m
.src
.u
.all
= mask
->src
.u
.all
;
1167 memcpy(&m
.src
.u3
, &mask
->src
.u3
, sizeof(m
.src
.u3
));
1169 nest_parms
= nla_nest_start(skb
, CTA_EXPECT_MASK
| NLA_F_NESTED
);
1171 goto nla_put_failure
;
1173 l3proto
= nf_ct_l3proto_find_get(tuple
->src
.l3num
);
1174 ret
= ctnetlink_dump_tuples_ip(skb
, &m
, l3proto
);
1175 nf_ct_l3proto_put(l3proto
);
1177 if (unlikely(ret
< 0))
1178 goto nla_put_failure
;
1180 l4proto
= nf_ct_l4proto_find_get(tuple
->src
.l3num
, tuple
->dst
.protonum
);
1181 ret
= ctnetlink_dump_tuples_proto(skb
, &m
, l4proto
);
1182 nf_ct_l4proto_put(l4proto
);
1183 if (unlikely(ret
< 0))
1184 goto nla_put_failure
;
1186 nla_nest_end(skb
, nest_parms
);
1195 ctnetlink_exp_dump_expect(struct sk_buff
*skb
,
1196 const struct nf_conntrack_expect
*exp
)
1198 struct nf_conn
*master
= exp
->master
;
1199 __be32 timeout
= htonl((exp
->timeout
.expires
- jiffies
) / HZ
);
1200 __be32 id
= htonl((unsigned long)exp
);
1202 if (ctnetlink_exp_dump_tuple(skb
, &exp
->tuple
, CTA_EXPECT_TUPLE
) < 0)
1203 goto nla_put_failure
;
1204 if (ctnetlink_exp_dump_mask(skb
, &exp
->tuple
, &exp
->mask
) < 0)
1205 goto nla_put_failure
;
1206 if (ctnetlink_exp_dump_tuple(skb
,
1207 &master
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
,
1208 CTA_EXPECT_MASTER
) < 0)
1209 goto nla_put_failure
;
1211 NLA_PUT(skb
, CTA_EXPECT_TIMEOUT
, sizeof(timeout
), &timeout
);
1212 NLA_PUT(skb
, CTA_EXPECT_ID
, sizeof(u_int32_t
), &id
);
1221 ctnetlink_exp_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
1224 const struct nf_conntrack_expect
*exp
)
1226 struct nlmsghdr
*nlh
;
1227 struct nfgenmsg
*nfmsg
;
1228 unsigned char *b
= skb_tail_pointer(skb
);
1230 event
|= NFNL_SUBSYS_CTNETLINK_EXP
<< 8;
1231 nlh
= NLMSG_PUT(skb
, pid
, seq
, event
, sizeof(struct nfgenmsg
));
1232 nfmsg
= NLMSG_DATA(nlh
);
1234 nlh
->nlmsg_flags
= (nowait
&& pid
) ? NLM_F_MULTI
: 0;
1235 nfmsg
->nfgen_family
= exp
->tuple
.src
.l3num
;
1236 nfmsg
->version
= NFNETLINK_V0
;
1239 if (ctnetlink_exp_dump_expect(skb
, exp
) < 0)
1240 goto nla_put_failure
;
1242 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
1251 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1252 static int ctnetlink_expect_event(struct notifier_block
*this,
1253 unsigned long events
, void *ptr
)
1255 struct nlmsghdr
*nlh
;
1256 struct nfgenmsg
*nfmsg
;
1257 struct nf_conntrack_expect
*exp
= (struct nf_conntrack_expect
*)ptr
;
1258 struct sk_buff
*skb
;
1263 if (events
& IPEXP_NEW
) {
1264 type
= IPCTNL_MSG_EXP_NEW
;
1265 flags
= NLM_F_CREATE
|NLM_F_EXCL
;
1269 if (!nfnetlink_has_listeners(NFNLGRP_CONNTRACK_EXP_NEW
))
1272 skb
= alloc_skb(NLMSG_GOODSIZE
, GFP_ATOMIC
);
1278 type
|= NFNL_SUBSYS_CTNETLINK_EXP
<< 8;
1279 nlh
= NLMSG_PUT(skb
, 0, 0, type
, sizeof(struct nfgenmsg
));
1280 nfmsg
= NLMSG_DATA(nlh
);
1282 nlh
->nlmsg_flags
= flags
;
1283 nfmsg
->nfgen_family
= exp
->tuple
.src
.l3num
;
1284 nfmsg
->version
= NFNETLINK_V0
;
1287 if (ctnetlink_exp_dump_expect(skb
, exp
) < 0)
1288 goto nla_put_failure
;
1290 nlh
->nlmsg_len
= skb
->tail
- b
;
1291 nfnetlink_send(skb
, 0, NFNLGRP_CONNTRACK_EXP_NEW
, 0);
1300 static int ctnetlink_exp_done(struct netlink_callback
*cb
)
1303 nf_ct_expect_put((struct nf_conntrack_expect
*)cb
->args
[1]);
1308 ctnetlink_exp_dump_table(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1310 struct nf_conntrack_expect
*exp
, *last
;
1311 struct nfgenmsg
*nfmsg
= NLMSG_DATA(cb
->nlh
);
1312 struct hlist_node
*n
;
1313 u_int8_t l3proto
= nfmsg
->nfgen_family
;
1315 read_lock_bh(&nf_conntrack_lock
);
1316 last
= (struct nf_conntrack_expect
*)cb
->args
[1];
1317 for (; cb
->args
[0] < nf_ct_expect_hsize
; cb
->args
[0]++) {
1319 hlist_for_each_entry(exp
, n
, &nf_ct_expect_hash
[cb
->args
[0]],
1321 if (l3proto
&& exp
->tuple
.src
.l3num
!= l3proto
)
1328 if (ctnetlink_exp_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
1332 atomic_inc(&exp
->use
);
1333 cb
->args
[1] = (unsigned long)exp
;
1343 read_unlock_bh(&nf_conntrack_lock
);
1345 nf_ct_expect_put(last
);
1350 static const struct nla_policy exp_nla_policy
[CTA_EXPECT_MAX
+1] = {
1351 [CTA_EXPECT_TIMEOUT
] = { .type
= NLA_U32
},
1352 [CTA_EXPECT_ID
] = { .type
= NLA_U32
},
1356 ctnetlink_get_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1357 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1359 struct nf_conntrack_tuple tuple
;
1360 struct nf_conntrack_expect
*exp
;
1361 struct sk_buff
*skb2
;
1362 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1363 u_int8_t u3
= nfmsg
->nfgen_family
;
1366 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
1367 return netlink_dump_start(ctnl
, skb
, nlh
,
1368 ctnetlink_exp_dump_table
,
1369 ctnetlink_exp_done
);
1372 if (cda
[CTA_EXPECT_MASTER
])
1373 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_MASTER
, u3
);
1380 exp
= nf_ct_expect_find_get(&tuple
);
1384 if (cda
[CTA_EXPECT_ID
]) {
1385 __be32 id
= *(__be32
*)nla_data(cda
[CTA_EXPECT_ID
]);
1386 if (ntohl(id
) != (u32
)(unsigned long)exp
) {
1387 nf_ct_expect_put(exp
);
1393 skb2
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
1397 err
= ctnetlink_exp_fill_info(skb2
, NETLINK_CB(skb
).pid
,
1398 nlh
->nlmsg_seq
, IPCTNL_MSG_EXP_NEW
,
1403 nf_ct_expect_put(exp
);
1405 return netlink_unicast(ctnl
, skb2
, NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
1410 nf_ct_expect_put(exp
);
1415 ctnetlink_del_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1416 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1418 struct nf_conntrack_expect
*exp
;
1419 struct nf_conntrack_tuple tuple
;
1420 struct nf_conntrack_helper
*h
;
1421 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1422 struct hlist_node
*n
, *next
;
1423 u_int8_t u3
= nfmsg
->nfgen_family
;
1427 if (cda
[CTA_EXPECT_TUPLE
]) {
1428 /* delete a single expect by tuple */
1429 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1433 /* bump usage count to 2 */
1434 exp
= nf_ct_expect_find_get(&tuple
);
1438 if (cda
[CTA_EXPECT_ID
]) {
1439 __be32 id
= *(__be32
*)nla_data(cda
[CTA_EXPECT_ID
]);
1440 if (ntohl(id
) != (u32
)(unsigned long)exp
) {
1441 nf_ct_expect_put(exp
);
1446 /* after list removal, usage count == 1 */
1447 nf_ct_unexpect_related(exp
);
1448 /* have to put what we 'get' above.
1449 * after this line usage count == 0 */
1450 nf_ct_expect_put(exp
);
1451 } else if (cda
[CTA_EXPECT_HELP_NAME
]) {
1452 char *name
= nla_data(cda
[CTA_EXPECT_HELP_NAME
]);
1453 struct nf_conn_help
*m_help
;
1455 /* delete all expectations for this helper */
1456 write_lock_bh(&nf_conntrack_lock
);
1457 h
= __nf_conntrack_helper_find_byname(name
);
1459 write_unlock_bh(&nf_conntrack_lock
);
1462 for (i
= 0; i
< nf_ct_expect_hsize
; i
++) {
1463 hlist_for_each_entry_safe(exp
, n
, next
,
1464 &nf_ct_expect_hash
[i
],
1466 m_help
= nfct_help(exp
->master
);
1467 if (m_help
->helper
== h
1468 && del_timer(&exp
->timeout
)) {
1469 nf_ct_unlink_expect(exp
);
1470 nf_ct_expect_put(exp
);
1474 write_unlock_bh(&nf_conntrack_lock
);
1476 /* This basically means we have to flush everything*/
1477 write_lock_bh(&nf_conntrack_lock
);
1478 for (i
= 0; i
< nf_ct_expect_hsize
; i
++) {
1479 hlist_for_each_entry_safe(exp
, n
, next
,
1480 &nf_ct_expect_hash
[i
],
1482 if (del_timer(&exp
->timeout
)) {
1483 nf_ct_unlink_expect(exp
);
1484 nf_ct_expect_put(exp
);
1488 write_unlock_bh(&nf_conntrack_lock
);
1494 ctnetlink_change_expect(struct nf_conntrack_expect
*x
, struct nlattr
*cda
[])
1500 ctnetlink_create_expect(struct nlattr
*cda
[], u_int8_t u3
)
1502 struct nf_conntrack_tuple tuple
, mask
, master_tuple
;
1503 struct nf_conntrack_tuple_hash
*h
= NULL
;
1504 struct nf_conntrack_expect
*exp
;
1506 struct nf_conn_help
*help
;
1509 /* caller guarantees that those three CTA_EXPECT_* exist */
1510 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1513 err
= ctnetlink_parse_tuple(cda
, &mask
, CTA_EXPECT_MASK
, u3
);
1516 err
= ctnetlink_parse_tuple(cda
, &master_tuple
, CTA_EXPECT_MASTER
, u3
);
1520 /* Look for master conntrack of this expectation */
1521 h
= nf_conntrack_find_get(&master_tuple
);
1524 ct
= nf_ct_tuplehash_to_ctrack(h
);
1525 help
= nfct_help(ct
);
1527 if (!help
|| !help
->helper
) {
1528 /* such conntrack hasn't got any helper, abort */
1533 exp
= nf_ct_expect_alloc(ct
);
1539 exp
->expectfn
= NULL
;
1543 memcpy(&exp
->tuple
, &tuple
, sizeof(struct nf_conntrack_tuple
));
1544 memcpy(&exp
->mask
.src
.u3
, &mask
.src
.u3
, sizeof(exp
->mask
.src
.u3
));
1545 exp
->mask
.src
.u
.all
= mask
.src
.u
.all
;
1547 err
= nf_ct_expect_related(exp
);
1548 nf_ct_expect_put(exp
);
1551 nf_ct_put(nf_ct_tuplehash_to_ctrack(h
));
1556 ctnetlink_new_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1557 struct nlmsghdr
*nlh
, struct nlattr
*cda
[])
1559 struct nf_conntrack_tuple tuple
;
1560 struct nf_conntrack_expect
*exp
;
1561 struct nfgenmsg
*nfmsg
= NLMSG_DATA(nlh
);
1562 u_int8_t u3
= nfmsg
->nfgen_family
;
1565 if (!cda
[CTA_EXPECT_TUPLE
]
1566 || !cda
[CTA_EXPECT_MASK
]
1567 || !cda
[CTA_EXPECT_MASTER
])
1570 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1574 write_lock_bh(&nf_conntrack_lock
);
1575 exp
= __nf_ct_expect_find(&tuple
);
1578 write_unlock_bh(&nf_conntrack_lock
);
1580 if (nlh
->nlmsg_flags
& NLM_F_CREATE
)
1581 err
= ctnetlink_create_expect(cda
, u3
);
1586 if (!(nlh
->nlmsg_flags
& NLM_F_EXCL
))
1587 err
= ctnetlink_change_expect(exp
, cda
);
1588 write_unlock_bh(&nf_conntrack_lock
);
1593 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1594 static struct notifier_block ctnl_notifier
= {
1595 .notifier_call
= ctnetlink_conntrack_event
,
1598 static struct notifier_block ctnl_notifier_exp
= {
1599 .notifier_call
= ctnetlink_expect_event
,
1603 static const struct nfnl_callback ctnl_cb
[IPCTNL_MSG_MAX
] = {
1604 [IPCTNL_MSG_CT_NEW
] = { .call
= ctnetlink_new_conntrack
,
1605 .attr_count
= CTA_MAX
,
1606 .policy
= ct_nla_policy
},
1607 [IPCTNL_MSG_CT_GET
] = { .call
= ctnetlink_get_conntrack
,
1608 .attr_count
= CTA_MAX
,
1609 .policy
= ct_nla_policy
},
1610 [IPCTNL_MSG_CT_DELETE
] = { .call
= ctnetlink_del_conntrack
,
1611 .attr_count
= CTA_MAX
,
1612 .policy
= ct_nla_policy
},
1613 [IPCTNL_MSG_CT_GET_CTRZERO
] = { .call
= ctnetlink_get_conntrack
,
1614 .attr_count
= CTA_MAX
,
1615 .policy
= ct_nla_policy
},
1618 static const struct nfnl_callback ctnl_exp_cb
[IPCTNL_MSG_EXP_MAX
] = {
1619 [IPCTNL_MSG_EXP_GET
] = { .call
= ctnetlink_get_expect
,
1620 .attr_count
= CTA_EXPECT_MAX
,
1621 .policy
= exp_nla_policy
},
1622 [IPCTNL_MSG_EXP_NEW
] = { .call
= ctnetlink_new_expect
,
1623 .attr_count
= CTA_EXPECT_MAX
,
1624 .policy
= exp_nla_policy
},
1625 [IPCTNL_MSG_EXP_DELETE
] = { .call
= ctnetlink_del_expect
,
1626 .attr_count
= CTA_EXPECT_MAX
,
1627 .policy
= exp_nla_policy
},
1630 static const struct nfnetlink_subsystem ctnl_subsys
= {
1631 .name
= "conntrack",
1632 .subsys_id
= NFNL_SUBSYS_CTNETLINK
,
1633 .cb_count
= IPCTNL_MSG_MAX
,
1637 static const struct nfnetlink_subsystem ctnl_exp_subsys
= {
1638 .name
= "conntrack_expect",
1639 .subsys_id
= NFNL_SUBSYS_CTNETLINK_EXP
,
1640 .cb_count
= IPCTNL_MSG_EXP_MAX
,
1644 MODULE_ALIAS("ip_conntrack_netlink");
1645 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK
);
1646 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP
);
1648 static int __init
ctnetlink_init(void)
1652 printk("ctnetlink v%s: registering with nfnetlink.\n", version
);
1653 ret
= nfnetlink_subsys_register(&ctnl_subsys
);
1655 printk("ctnetlink_init: cannot register with nfnetlink.\n");
1659 ret
= nfnetlink_subsys_register(&ctnl_exp_subsys
);
1661 printk("ctnetlink_init: cannot register exp with nfnetlink.\n");
1662 goto err_unreg_subsys
;
1665 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1666 ret
= nf_conntrack_register_notifier(&ctnl_notifier
);
1668 printk("ctnetlink_init: cannot register notifier.\n");
1669 goto err_unreg_exp_subsys
;
1672 ret
= nf_ct_expect_register_notifier(&ctnl_notifier_exp
);
1674 printk("ctnetlink_init: cannot expect register notifier.\n");
1675 goto err_unreg_notifier
;
1681 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1683 nf_conntrack_unregister_notifier(&ctnl_notifier
);
1684 err_unreg_exp_subsys
:
1685 nfnetlink_subsys_unregister(&ctnl_exp_subsys
);
1688 nfnetlink_subsys_unregister(&ctnl_subsys
);
1693 static void __exit
ctnetlink_exit(void)
1695 printk("ctnetlink: unregistering from nfnetlink.\n");
1697 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1698 nf_ct_expect_unregister_notifier(&ctnl_notifier_exp
);
1699 nf_conntrack_unregister_notifier(&ctnl_notifier
);
1702 nfnetlink_subsys_unregister(&ctnl_exp_subsys
);
1703 nfnetlink_subsys_unregister(&ctnl_subsys
);
1707 module_init(ctnetlink_init
);
1708 module_exit(ctnetlink_exit
);