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-2011 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/rculist.h>
22 #include <linux/rculist_nulls.h>
23 #include <linux/types.h>
24 #include <linux/timer.h>
25 #include <linux/security.h>
26 #include <linux/skbuff.h>
27 #include <linux/errno.h>
28 #include <linux/netlink.h>
29 #include <linux/spinlock.h>
30 #include <linux/interrupt.h>
31 #include <linux/slab.h>
33 #include <linux/netfilter.h>
34 #include <net/netlink.h>
36 #include <net/netfilter/nf_conntrack.h>
37 #include <net/netfilter/nf_conntrack_core.h>
38 #include <net/netfilter/nf_conntrack_expect.h>
39 #include <net/netfilter/nf_conntrack_helper.h>
40 #include <net/netfilter/nf_conntrack_l3proto.h>
41 #include <net/netfilter/nf_conntrack_l4proto.h>
42 #include <net/netfilter/nf_conntrack_tuple.h>
43 #include <net/netfilter/nf_conntrack_acct.h>
44 #include <net/netfilter/nf_conntrack_zones.h>
45 #include <net/netfilter/nf_conntrack_timestamp.h>
46 #ifdef CONFIG_NF_NAT_NEEDED
47 #include <net/netfilter/nf_nat_core.h>
48 #include <net/netfilter/nf_nat_protocol.h>
51 #include <linux/netfilter/nfnetlink.h>
52 #include <linux/netfilter/nfnetlink_conntrack.h>
54 MODULE_LICENSE("GPL");
56 static char __initdata version
[] = "0.93";
59 ctnetlink_dump_tuples_proto(struct sk_buff
*skb
,
60 const struct nf_conntrack_tuple
*tuple
,
61 struct nf_conntrack_l4proto
*l4proto
)
64 struct nlattr
*nest_parms
;
66 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_PROTO
| NLA_F_NESTED
);
69 NLA_PUT_U8(skb
, CTA_PROTO_NUM
, tuple
->dst
.protonum
);
71 if (likely(l4proto
->tuple_to_nlattr
))
72 ret
= l4proto
->tuple_to_nlattr(skb
, tuple
);
74 nla_nest_end(skb
, nest_parms
);
83 ctnetlink_dump_tuples_ip(struct sk_buff
*skb
,
84 const struct nf_conntrack_tuple
*tuple
,
85 struct nf_conntrack_l3proto
*l3proto
)
88 struct nlattr
*nest_parms
;
90 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_IP
| NLA_F_NESTED
);
94 if (likely(l3proto
->tuple_to_nlattr
))
95 ret
= l3proto
->tuple_to_nlattr(skb
, tuple
);
97 nla_nest_end(skb
, nest_parms
);
106 ctnetlink_dump_tuples(struct sk_buff
*skb
,
107 const struct nf_conntrack_tuple
*tuple
)
110 struct nf_conntrack_l3proto
*l3proto
;
111 struct nf_conntrack_l4proto
*l4proto
;
113 l3proto
= __nf_ct_l3proto_find(tuple
->src
.l3num
);
114 ret
= ctnetlink_dump_tuples_ip(skb
, tuple
, l3proto
);
116 if (unlikely(ret
< 0))
119 l4proto
= __nf_ct_l4proto_find(tuple
->src
.l3num
, tuple
->dst
.protonum
);
120 ret
= ctnetlink_dump_tuples_proto(skb
, tuple
, l4proto
);
126 ctnetlink_dump_status(struct sk_buff
*skb
, const struct nf_conn
*ct
)
128 NLA_PUT_BE32(skb
, CTA_STATUS
, htonl(ct
->status
));
136 ctnetlink_dump_timeout(struct sk_buff
*skb
, const struct nf_conn
*ct
)
138 long timeout
= ((long)ct
->timeout
.expires
- (long)jiffies
) / HZ
;
143 NLA_PUT_BE32(skb
, CTA_TIMEOUT
, htonl(timeout
));
151 ctnetlink_dump_protoinfo(struct sk_buff
*skb
, struct nf_conn
*ct
)
153 struct nf_conntrack_l4proto
*l4proto
;
154 struct nlattr
*nest_proto
;
157 l4proto
= __nf_ct_l4proto_find(nf_ct_l3num(ct
), nf_ct_protonum(ct
));
158 if (!l4proto
->to_nlattr
)
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 nla_nest_end(skb
, nest_proto
);
176 ctnetlink_dump_helpinfo(struct sk_buff
*skb
, const struct nf_conn
*ct
)
178 struct nlattr
*nest_helper
;
179 const struct nf_conn_help
*help
= nfct_help(ct
);
180 struct nf_conntrack_helper
*helper
;
185 helper
= rcu_dereference(help
->helper
);
189 nest_helper
= nla_nest_start(skb
, CTA_HELP
| NLA_F_NESTED
);
191 goto nla_put_failure
;
192 NLA_PUT_STRING(skb
, CTA_HELP_NAME
, helper
->name
);
194 if (helper
->to_nlattr
)
195 helper
->to_nlattr(skb
, ct
);
197 nla_nest_end(skb
, nest_helper
);
206 dump_counters(struct sk_buff
*skb
, u64 pkts
, u64 bytes
,
207 enum ip_conntrack_dir dir
)
209 enum ctattr_type type
= dir
? CTA_COUNTERS_REPLY
: CTA_COUNTERS_ORIG
;
210 struct nlattr
*nest_count
;
212 nest_count
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
214 goto nla_put_failure
;
216 NLA_PUT_BE64(skb
, CTA_COUNTERS_PACKETS
, cpu_to_be64(pkts
));
217 NLA_PUT_BE64(skb
, CTA_COUNTERS_BYTES
, cpu_to_be64(bytes
));
219 nla_nest_end(skb
, nest_count
);
228 ctnetlink_dump_counters(struct sk_buff
*skb
, const struct nf_conn
*ct
,
229 enum ip_conntrack_dir dir
, int type
)
231 struct nf_conn_counter
*acct
;
234 acct
= nf_conn_acct_find(ct
);
238 if (type
== IPCTNL_MSG_CT_GET_CTRZERO
) {
239 pkts
= atomic64_xchg(&acct
[dir
].packets
, 0);
240 bytes
= atomic64_xchg(&acct
[dir
].bytes
, 0);
242 pkts
= atomic64_read(&acct
[dir
].packets
);
243 bytes
= atomic64_read(&acct
[dir
].bytes
);
245 return dump_counters(skb
, pkts
, bytes
, dir
);
249 ctnetlink_dump_timestamp(struct sk_buff
*skb
, const struct nf_conn
*ct
)
251 struct nlattr
*nest_count
;
252 const struct nf_conn_tstamp
*tstamp
;
254 tstamp
= nf_conn_tstamp_find(ct
);
258 nest_count
= nla_nest_start(skb
, CTA_TIMESTAMP
| NLA_F_NESTED
);
260 goto nla_put_failure
;
262 NLA_PUT_BE64(skb
, CTA_TIMESTAMP_START
, cpu_to_be64(tstamp
->start
));
263 if (tstamp
->stop
!= 0) {
264 NLA_PUT_BE64(skb
, CTA_TIMESTAMP_STOP
,
265 cpu_to_be64(tstamp
->stop
));
267 nla_nest_end(skb
, nest_count
);
275 #ifdef CONFIG_NF_CONNTRACK_MARK
277 ctnetlink_dump_mark(struct sk_buff
*skb
, const struct nf_conn
*ct
)
279 NLA_PUT_BE32(skb
, CTA_MARK
, htonl(ct
->mark
));
286 #define ctnetlink_dump_mark(a, b) (0)
289 #ifdef CONFIG_NF_CONNTRACK_SECMARK
291 ctnetlink_dump_secctx(struct sk_buff
*skb
, const struct nf_conn
*ct
)
293 struct nlattr
*nest_secctx
;
297 ret
= security_secid_to_secctx(ct
->secmark
, &secctx
, &len
);
302 nest_secctx
= nla_nest_start(skb
, CTA_SECCTX
| NLA_F_NESTED
);
304 goto nla_put_failure
;
306 NLA_PUT_STRING(skb
, CTA_SECCTX_NAME
, secctx
);
307 nla_nest_end(skb
, nest_secctx
);
311 security_release_secctx(secctx
, len
);
315 #define ctnetlink_dump_secctx(a, b) (0)
318 #define master_tuple(ct) &(ct->master->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
321 ctnetlink_dump_master(struct sk_buff
*skb
, const struct nf_conn
*ct
)
323 struct nlattr
*nest_parms
;
325 if (!(ct
->status
& IPS_EXPECTED
))
328 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_MASTER
| NLA_F_NESTED
);
330 goto nla_put_failure
;
331 if (ctnetlink_dump_tuples(skb
, master_tuple(ct
)) < 0)
332 goto nla_put_failure
;
333 nla_nest_end(skb
, nest_parms
);
341 #ifdef CONFIG_NF_NAT_NEEDED
343 dump_nat_seq_adj(struct sk_buff
*skb
, const struct nf_nat_seq
*natseq
, int type
)
345 struct nlattr
*nest_parms
;
347 nest_parms
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
349 goto nla_put_failure
;
351 NLA_PUT_BE32(skb
, CTA_NAT_SEQ_CORRECTION_POS
,
352 htonl(natseq
->correction_pos
));
353 NLA_PUT_BE32(skb
, CTA_NAT_SEQ_OFFSET_BEFORE
,
354 htonl(natseq
->offset_before
));
355 NLA_PUT_BE32(skb
, CTA_NAT_SEQ_OFFSET_AFTER
,
356 htonl(natseq
->offset_after
));
358 nla_nest_end(skb
, nest_parms
);
367 ctnetlink_dump_nat_seq_adj(struct sk_buff
*skb
, const struct nf_conn
*ct
)
369 struct nf_nat_seq
*natseq
;
370 struct nf_conn_nat
*nat
= nfct_nat(ct
);
372 if (!(ct
->status
& IPS_SEQ_ADJUST
) || !nat
)
375 natseq
= &nat
->seq
[IP_CT_DIR_ORIGINAL
];
376 if (dump_nat_seq_adj(skb
, natseq
, CTA_NAT_SEQ_ADJ_ORIG
) == -1)
379 natseq
= &nat
->seq
[IP_CT_DIR_REPLY
];
380 if (dump_nat_seq_adj(skb
, natseq
, CTA_NAT_SEQ_ADJ_REPLY
) == -1)
386 #define ctnetlink_dump_nat_seq_adj(a, b) (0)
390 ctnetlink_dump_id(struct sk_buff
*skb
, const struct nf_conn
*ct
)
392 NLA_PUT_BE32(skb
, CTA_ID
, htonl((unsigned long)ct
));
400 ctnetlink_dump_use(struct sk_buff
*skb
, const struct nf_conn
*ct
)
402 NLA_PUT_BE32(skb
, CTA_USE
, htonl(atomic_read(&ct
->ct_general
.use
)));
410 ctnetlink_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
, u32 type
,
413 struct nlmsghdr
*nlh
;
414 struct nfgenmsg
*nfmsg
;
415 struct nlattr
*nest_parms
;
416 unsigned int flags
= pid
? NLM_F_MULTI
: 0, event
;
418 event
= (NFNL_SUBSYS_CTNETLINK
<< 8 | IPCTNL_MSG_CT_NEW
);
419 nlh
= nlmsg_put(skb
, pid
, seq
, event
, sizeof(*nfmsg
), flags
);
423 nfmsg
= nlmsg_data(nlh
);
424 nfmsg
->nfgen_family
= nf_ct_l3num(ct
);
425 nfmsg
->version
= NFNETLINK_V0
;
428 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_ORIG
| NLA_F_NESTED
);
430 goto nla_put_failure
;
431 if (ctnetlink_dump_tuples(skb
, nf_ct_tuple(ct
, IP_CT_DIR_ORIGINAL
)) < 0)
432 goto nla_put_failure
;
433 nla_nest_end(skb
, nest_parms
);
435 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_REPLY
| NLA_F_NESTED
);
437 goto nla_put_failure
;
438 if (ctnetlink_dump_tuples(skb
, nf_ct_tuple(ct
, IP_CT_DIR_REPLY
)) < 0)
439 goto nla_put_failure
;
440 nla_nest_end(skb
, nest_parms
);
443 NLA_PUT_BE16(skb
, CTA_ZONE
, htons(nf_ct_zone(ct
)));
445 if (ctnetlink_dump_status(skb
, ct
) < 0 ||
446 ctnetlink_dump_timeout(skb
, ct
) < 0 ||
447 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_ORIGINAL
, type
) < 0 ||
448 ctnetlink_dump_counters(skb
, ct
, IP_CT_DIR_REPLY
, type
) < 0 ||
449 ctnetlink_dump_timestamp(skb
, ct
) < 0 ||
450 ctnetlink_dump_protoinfo(skb
, ct
) < 0 ||
451 ctnetlink_dump_helpinfo(skb
, ct
) < 0 ||
452 ctnetlink_dump_mark(skb
, ct
) < 0 ||
453 ctnetlink_dump_secctx(skb
, ct
) < 0 ||
454 ctnetlink_dump_id(skb
, ct
) < 0 ||
455 ctnetlink_dump_use(skb
, ct
) < 0 ||
456 ctnetlink_dump_master(skb
, ct
) < 0 ||
457 ctnetlink_dump_nat_seq_adj(skb
, ct
) < 0)
458 goto nla_put_failure
;
465 nlmsg_cancel(skb
, nlh
);
469 #ifdef CONFIG_NF_CONNTRACK_EVENTS
471 ctnetlink_proto_size(const struct nf_conn
*ct
)
473 struct nf_conntrack_l3proto
*l3proto
;
474 struct nf_conntrack_l4proto
*l4proto
;
478 l3proto
= __nf_ct_l3proto_find(nf_ct_l3num(ct
));
479 len
+= l3proto
->nla_size
;
481 l4proto
= __nf_ct_l4proto_find(nf_ct_l3num(ct
), nf_ct_protonum(ct
));
482 len
+= l4proto
->nla_size
;
489 ctnetlink_counters_size(const struct nf_conn
*ct
)
491 if (!nf_ct_ext_exist(ct
, NF_CT_EXT_ACCT
))
493 return 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
494 + 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_PACKETS */
495 + 2 * nla_total_size(sizeof(uint64_t)) /* CTA_COUNTERS_BYTES */
500 ctnetlink_secctx_size(const struct nf_conn
*ct
)
502 #ifdef CONFIG_NF_CONNTRACK_SECMARK
505 ret
= security_secid_to_secctx(ct
->secmark
, NULL
, &len
);
509 return nla_total_size(0) /* CTA_SECCTX */
510 + nla_total_size(sizeof(char) * len
); /* CTA_SECCTX_NAME */
517 ctnetlink_timestamp_size(const struct nf_conn
*ct
)
519 #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
520 if (!nf_ct_ext_exist(ct
, NF_CT_EXT_TSTAMP
))
522 return nla_total_size(0) + 2 * nla_total_size(sizeof(uint64_t));
529 ctnetlink_nlmsg_size(const struct nf_conn
*ct
)
531 return NLMSG_ALIGN(sizeof(struct nfgenmsg
))
532 + 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
533 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
534 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
535 + 3 * nla_total_size(sizeof(u_int8_t
)) /* CTA_PROTO_NUM */
536 + nla_total_size(sizeof(u_int32_t
)) /* CTA_ID */
537 + nla_total_size(sizeof(u_int32_t
)) /* CTA_STATUS */
538 + ctnetlink_counters_size(ct
)
539 + ctnetlink_timestamp_size(ct
)
540 + nla_total_size(sizeof(u_int32_t
)) /* CTA_TIMEOUT */
541 + nla_total_size(0) /* CTA_PROTOINFO */
542 + nla_total_size(0) /* CTA_HELP */
543 + nla_total_size(NF_CT_HELPER_NAME_LEN
) /* CTA_HELP_NAME */
544 + ctnetlink_secctx_size(ct
)
545 #ifdef CONFIG_NF_NAT_NEEDED
546 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
547 + 6 * nla_total_size(sizeof(u_int32_t
)) /* CTA_NAT_SEQ_OFFSET */
549 #ifdef CONFIG_NF_CONNTRACK_MARK
550 + nla_total_size(sizeof(u_int32_t
)) /* CTA_MARK */
552 + ctnetlink_proto_size(ct
)
557 ctnetlink_conntrack_event(unsigned int events
, struct nf_ct_event
*item
)
560 struct nlmsghdr
*nlh
;
561 struct nfgenmsg
*nfmsg
;
562 struct nlattr
*nest_parms
;
563 struct nf_conn
*ct
= item
->ct
;
566 unsigned int flags
= 0, group
;
569 /* ignore our fake conntrack entry */
570 if (nf_ct_is_untracked(ct
))
573 if (events
& (1 << IPCT_DESTROY
)) {
574 type
= IPCTNL_MSG_CT_DELETE
;
575 group
= NFNLGRP_CONNTRACK_DESTROY
;
576 } else if (events
& ((1 << IPCT_NEW
) | (1 << IPCT_RELATED
))) {
577 type
= IPCTNL_MSG_CT_NEW
;
578 flags
= NLM_F_CREATE
|NLM_F_EXCL
;
579 group
= NFNLGRP_CONNTRACK_NEW
;
581 type
= IPCTNL_MSG_CT_NEW
;
582 group
= NFNLGRP_CONNTRACK_UPDATE
;
587 if (!item
->report
&& !nfnetlink_has_listeners(net
, group
))
590 skb
= nlmsg_new(ctnetlink_nlmsg_size(ct
), GFP_ATOMIC
);
594 type
|= NFNL_SUBSYS_CTNETLINK
<< 8;
595 nlh
= nlmsg_put(skb
, item
->pid
, 0, type
, sizeof(*nfmsg
), flags
);
599 nfmsg
= nlmsg_data(nlh
);
600 nfmsg
->nfgen_family
= nf_ct_l3num(ct
);
601 nfmsg
->version
= NFNETLINK_V0
;
605 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_ORIG
| NLA_F_NESTED
);
607 goto nla_put_failure
;
608 if (ctnetlink_dump_tuples(skb
, nf_ct_tuple(ct
, IP_CT_DIR_ORIGINAL
)) < 0)
609 goto nla_put_failure
;
610 nla_nest_end(skb
, nest_parms
);
612 nest_parms
= nla_nest_start(skb
, CTA_TUPLE_REPLY
| NLA_F_NESTED
);
614 goto nla_put_failure
;
615 if (ctnetlink_dump_tuples(skb
, nf_ct_tuple(ct
, IP_CT_DIR_REPLY
)) < 0)
616 goto nla_put_failure
;
617 nla_nest_end(skb
, nest_parms
);
620 NLA_PUT_BE16(skb
, CTA_ZONE
, htons(nf_ct_zone(ct
)));
622 if (ctnetlink_dump_id(skb
, ct
) < 0)
623 goto nla_put_failure
;
625 if (ctnetlink_dump_status(skb
, ct
) < 0)
626 goto nla_put_failure
;
628 if (events
& (1 << IPCT_DESTROY
)) {
629 if (ctnetlink_dump_counters(skb
, ct
,
630 IP_CT_DIR_ORIGINAL
, type
) < 0 ||
631 ctnetlink_dump_counters(skb
, ct
,
632 IP_CT_DIR_REPLY
, type
) < 0 ||
633 ctnetlink_dump_timestamp(skb
, ct
) < 0)
634 goto nla_put_failure
;
636 if (ctnetlink_dump_timeout(skb
, ct
) < 0)
637 goto nla_put_failure
;
639 if (events
& (1 << IPCT_PROTOINFO
)
640 && ctnetlink_dump_protoinfo(skb
, ct
) < 0)
641 goto nla_put_failure
;
643 if ((events
& (1 << IPCT_HELPER
) || nfct_help(ct
))
644 && ctnetlink_dump_helpinfo(skb
, ct
) < 0)
645 goto nla_put_failure
;
647 #ifdef CONFIG_NF_CONNTRACK_SECMARK
648 if ((events
& (1 << IPCT_SECMARK
) || ct
->secmark
)
649 && ctnetlink_dump_secctx(skb
, ct
) < 0)
650 goto nla_put_failure
;
653 if (events
& (1 << IPCT_RELATED
) &&
654 ctnetlink_dump_master(skb
, ct
) < 0)
655 goto nla_put_failure
;
657 if (events
& (1 << IPCT_NATSEQADJ
) &&
658 ctnetlink_dump_nat_seq_adj(skb
, ct
) < 0)
659 goto nla_put_failure
;
662 #ifdef CONFIG_NF_CONNTRACK_MARK
663 if ((events
& (1 << IPCT_MARK
) || ct
->mark
)
664 && ctnetlink_dump_mark(skb
, ct
) < 0)
665 goto nla_put_failure
;
670 err
= nfnetlink_send(skb
, net
, item
->pid
, group
, item
->report
,
672 if (err
== -ENOBUFS
|| err
== -EAGAIN
)
679 nlmsg_cancel(skb
, nlh
);
683 if (nfnetlink_set_err(net
, 0, group
, -ENOBUFS
) > 0)
688 #endif /* CONFIG_NF_CONNTRACK_EVENTS */
690 static int ctnetlink_done(struct netlink_callback
*cb
)
693 nf_ct_put((struct nf_conn
*)cb
->args
[1]);
698 ctnetlink_dump_table(struct sk_buff
*skb
, struct netlink_callback
*cb
)
700 struct net
*net
= sock_net(skb
->sk
);
701 struct nf_conn
*ct
, *last
;
702 struct nf_conntrack_tuple_hash
*h
;
703 struct hlist_nulls_node
*n
;
704 struct nfgenmsg
*nfmsg
= nlmsg_data(cb
->nlh
);
705 u_int8_t l3proto
= nfmsg
->nfgen_family
;
707 spin_lock_bh(&nf_conntrack_lock
);
708 last
= (struct nf_conn
*)cb
->args
[1];
709 for (; cb
->args
[0] < net
->ct
.htable_size
; cb
->args
[0]++) {
711 hlist_nulls_for_each_entry(h
, n
, &net
->ct
.hash
[cb
->args
[0]],
713 if (NF_CT_DIRECTION(h
) != IP_CT_DIR_ORIGINAL
)
715 ct
= nf_ct_tuplehash_to_ctrack(h
);
716 /* Dump entries of a given L3 protocol number.
717 * If it is not specified, ie. l3proto == 0,
718 * then dump everything. */
719 if (l3proto
&& nf_ct_l3num(ct
) != l3proto
)
726 if (ctnetlink_fill_info(skb
, NETLINK_CB(cb
->skb
).pid
,
729 cb
->nlh
->nlmsg_type
),
731 nf_conntrack_get(&ct
->ct_general
);
732 cb
->args
[1] = (unsigned long)ct
;
742 spin_unlock_bh(&nf_conntrack_lock
);
750 ctnetlink_parse_tuple_ip(struct nlattr
*attr
, struct nf_conntrack_tuple
*tuple
)
752 struct nlattr
*tb
[CTA_IP_MAX
+1];
753 struct nf_conntrack_l3proto
*l3proto
;
756 nla_parse_nested(tb
, CTA_IP_MAX
, attr
, NULL
);
759 l3proto
= __nf_ct_l3proto_find(tuple
->src
.l3num
);
761 if (likely(l3proto
->nlattr_to_tuple
)) {
762 ret
= nla_validate_nested(attr
, CTA_IP_MAX
,
763 l3proto
->nla_policy
);
765 ret
= l3proto
->nlattr_to_tuple(tb
, tuple
);
773 static const struct nla_policy proto_nla_policy
[CTA_PROTO_MAX
+1] = {
774 [CTA_PROTO_NUM
] = { .type
= NLA_U8
},
778 ctnetlink_parse_tuple_proto(struct nlattr
*attr
,
779 struct nf_conntrack_tuple
*tuple
)
781 struct nlattr
*tb
[CTA_PROTO_MAX
+1];
782 struct nf_conntrack_l4proto
*l4proto
;
785 ret
= nla_parse_nested(tb
, CTA_PROTO_MAX
, attr
, proto_nla_policy
);
789 if (!tb
[CTA_PROTO_NUM
])
791 tuple
->dst
.protonum
= nla_get_u8(tb
[CTA_PROTO_NUM
]);
794 l4proto
= __nf_ct_l4proto_find(tuple
->src
.l3num
, tuple
->dst
.protonum
);
796 if (likely(l4proto
->nlattr_to_tuple
)) {
797 ret
= nla_validate_nested(attr
, CTA_PROTO_MAX
,
798 l4proto
->nla_policy
);
800 ret
= l4proto
->nlattr_to_tuple(tb
, tuple
);
808 static const struct nla_policy tuple_nla_policy
[CTA_TUPLE_MAX
+1] = {
809 [CTA_TUPLE_IP
] = { .type
= NLA_NESTED
},
810 [CTA_TUPLE_PROTO
] = { .type
= NLA_NESTED
},
814 ctnetlink_parse_tuple(const struct nlattr
* const cda
[],
815 struct nf_conntrack_tuple
*tuple
,
816 enum ctattr_type type
, u_int8_t l3num
)
818 struct nlattr
*tb
[CTA_TUPLE_MAX
+1];
821 memset(tuple
, 0, sizeof(*tuple
));
823 nla_parse_nested(tb
, CTA_TUPLE_MAX
, cda
[type
], tuple_nla_policy
);
825 if (!tb
[CTA_TUPLE_IP
])
828 tuple
->src
.l3num
= l3num
;
830 err
= ctnetlink_parse_tuple_ip(tb
[CTA_TUPLE_IP
], tuple
);
834 if (!tb
[CTA_TUPLE_PROTO
])
837 err
= ctnetlink_parse_tuple_proto(tb
[CTA_TUPLE_PROTO
], tuple
);
841 /* orig and expect tuples get DIR_ORIGINAL */
842 if (type
== CTA_TUPLE_REPLY
)
843 tuple
->dst
.dir
= IP_CT_DIR_REPLY
;
845 tuple
->dst
.dir
= IP_CT_DIR_ORIGINAL
;
851 ctnetlink_parse_zone(const struct nlattr
*attr
, u16
*zone
)
854 #ifdef CONFIG_NF_CONNTRACK_ZONES
855 *zone
= ntohs(nla_get_be16(attr
));
865 static const struct nla_policy help_nla_policy
[CTA_HELP_MAX
+1] = {
866 [CTA_HELP_NAME
] = { .type
= NLA_NUL_STRING
},
870 ctnetlink_parse_help(const struct nlattr
*attr
, char **helper_name
)
872 struct nlattr
*tb
[CTA_HELP_MAX
+1];
874 nla_parse_nested(tb
, CTA_HELP_MAX
, attr
, help_nla_policy
);
876 if (!tb
[CTA_HELP_NAME
])
879 *helper_name
= nla_data(tb
[CTA_HELP_NAME
]);
884 static const struct nla_policy ct_nla_policy
[CTA_MAX
+1] = {
885 [CTA_TUPLE_ORIG
] = { .type
= NLA_NESTED
},
886 [CTA_TUPLE_REPLY
] = { .type
= NLA_NESTED
},
887 [CTA_STATUS
] = { .type
= NLA_U32
},
888 [CTA_PROTOINFO
] = { .type
= NLA_NESTED
},
889 [CTA_HELP
] = { .type
= NLA_NESTED
},
890 [CTA_NAT_SRC
] = { .type
= NLA_NESTED
},
891 [CTA_TIMEOUT
] = { .type
= NLA_U32
},
892 [CTA_MARK
] = { .type
= NLA_U32
},
893 [CTA_ID
] = { .type
= NLA_U32
},
894 [CTA_NAT_DST
] = { .type
= NLA_NESTED
},
895 [CTA_TUPLE_MASTER
] = { .type
= NLA_NESTED
},
896 [CTA_ZONE
] = { .type
= NLA_U16
},
900 ctnetlink_del_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
901 const struct nlmsghdr
*nlh
,
902 const struct nlattr
* const cda
[])
904 struct net
*net
= sock_net(ctnl
);
905 struct nf_conntrack_tuple_hash
*h
;
906 struct nf_conntrack_tuple tuple
;
908 struct nfgenmsg
*nfmsg
= nlmsg_data(nlh
);
909 u_int8_t u3
= nfmsg
->nfgen_family
;
913 err
= ctnetlink_parse_zone(cda
[CTA_ZONE
], &zone
);
917 if (cda
[CTA_TUPLE_ORIG
])
918 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_ORIG
, u3
);
919 else if (cda
[CTA_TUPLE_REPLY
])
920 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_REPLY
, u3
);
922 /* Flush the whole table */
923 nf_conntrack_flush_report(net
,
932 h
= nf_conntrack_find_get(net
, zone
, &tuple
);
936 ct
= nf_ct_tuplehash_to_ctrack(h
);
939 u_int32_t id
= ntohl(nla_get_be32(cda
[CTA_ID
]));
940 if (id
!= (u32
)(unsigned long)ct
) {
946 if (del_timer(&ct
->timeout
)) {
947 if (nf_conntrack_event_report(IPCT_DESTROY
, ct
,
949 nlmsg_report(nlh
)) < 0) {
950 nf_ct_delete_from_lists(ct
);
951 /* we failed to report the event, try later */
952 nf_ct_insert_dying_list(ct
);
956 /* death_by_timeout would report the event again */
957 set_bit(IPS_DYING_BIT
, &ct
->status
);
958 nf_ct_delete_from_lists(ct
);
967 ctnetlink_get_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
968 const struct nlmsghdr
*nlh
,
969 const struct nlattr
* const cda
[])
971 struct net
*net
= sock_net(ctnl
);
972 struct nf_conntrack_tuple_hash
*h
;
973 struct nf_conntrack_tuple tuple
;
975 struct sk_buff
*skb2
= NULL
;
976 struct nfgenmsg
*nfmsg
= nlmsg_data(nlh
);
977 u_int8_t u3
= nfmsg
->nfgen_family
;
981 if (nlh
->nlmsg_flags
& NLM_F_DUMP
)
982 return netlink_dump_start(ctnl
, skb
, nlh
, ctnetlink_dump_table
,
985 err
= ctnetlink_parse_zone(cda
[CTA_ZONE
], &zone
);
989 if (cda
[CTA_TUPLE_ORIG
])
990 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_ORIG
, u3
);
991 else if (cda
[CTA_TUPLE_REPLY
])
992 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_TUPLE_REPLY
, u3
);
999 h
= nf_conntrack_find_get(net
, zone
, &tuple
);
1003 ct
= nf_ct_tuplehash_to_ctrack(h
);
1006 skb2
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1013 err
= ctnetlink_fill_info(skb2
, NETLINK_CB(skb
).pid
, nlh
->nlmsg_seq
,
1014 NFNL_MSG_TYPE(nlh
->nlmsg_type
), ct
);
1020 err
= netlink_unicast(ctnl
, skb2
, NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
1029 /* this avoids a loop in nfnetlink. */
1030 return err
== -EAGAIN
? -ENOBUFS
: err
;
1033 #ifdef CONFIG_NF_NAT_NEEDED
1035 ctnetlink_parse_nat_setup(struct nf_conn
*ct
,
1036 enum nf_nat_manip_type manip
,
1037 const struct nlattr
*attr
)
1039 typeof(nfnetlink_parse_nat_setup_hook
) parse_nat_setup
;
1041 parse_nat_setup
= rcu_dereference(nfnetlink_parse_nat_setup_hook
);
1042 if (!parse_nat_setup
) {
1043 #ifdef CONFIG_MODULES
1046 if (request_module("nf-nat-ipv4") < 0) {
1053 if (nfnetlink_parse_nat_setup_hook
)
1059 return parse_nat_setup(ct
, manip
, attr
);
1064 ctnetlink_change_status(struct nf_conn
*ct
, const struct nlattr
* const cda
[])
1067 unsigned int status
= ntohl(nla_get_be32(cda
[CTA_STATUS
]));
1068 d
= ct
->status
^ status
;
1070 if (d
& (IPS_EXPECTED
|IPS_CONFIRMED
|IPS_DYING
))
1074 if (d
& IPS_SEEN_REPLY
&& !(status
& IPS_SEEN_REPLY
))
1075 /* SEEN_REPLY bit can only be set */
1078 if (d
& IPS_ASSURED
&& !(status
& IPS_ASSURED
))
1079 /* ASSURED bit can only be set */
1082 /* Be careful here, modifying NAT bits can screw up things,
1083 * so don't let users modify them directly if they don't pass
1085 ct
->status
|= status
& ~(IPS_NAT_DONE_MASK
| IPS_NAT_MASK
);
1090 ctnetlink_change_nat(struct nf_conn
*ct
, const struct nlattr
* const cda
[])
1092 #ifdef CONFIG_NF_NAT_NEEDED
1095 if (cda
[CTA_NAT_DST
]) {
1096 ret
= ctnetlink_parse_nat_setup(ct
,
1102 if (cda
[CTA_NAT_SRC
]) {
1103 ret
= ctnetlink_parse_nat_setup(ct
,
1116 ctnetlink_change_helper(struct nf_conn
*ct
, const struct nlattr
* const cda
[])
1118 struct nf_conntrack_helper
*helper
;
1119 struct nf_conn_help
*help
= nfct_help(ct
);
1120 char *helpname
= NULL
;
1123 /* don't change helper of sibling connections */
1127 err
= ctnetlink_parse_help(cda
[CTA_HELP
], &helpname
);
1131 if (!strcmp(helpname
, "")) {
1132 if (help
&& help
->helper
) {
1133 /* we had a helper before ... */
1134 nf_ct_remove_expectations(ct
);
1135 RCU_INIT_POINTER(help
->helper
, NULL
);
1141 helper
= __nf_conntrack_helper_find(helpname
, nf_ct_l3num(ct
),
1142 nf_ct_protonum(ct
));
1143 if (helper
== NULL
) {
1144 #ifdef CONFIG_MODULES
1145 spin_unlock_bh(&nf_conntrack_lock
);
1147 if (request_module("nfct-helper-%s", helpname
) < 0) {
1148 spin_lock_bh(&nf_conntrack_lock
);
1152 spin_lock_bh(&nf_conntrack_lock
);
1153 helper
= __nf_conntrack_helper_find(helpname
, nf_ct_l3num(ct
),
1154 nf_ct_protonum(ct
));
1162 if (help
->helper
== helper
)
1166 /* need to zero data of old helper */
1167 memset(&help
->help
, 0, sizeof(help
->help
));
1169 /* we cannot set a helper for an existing conntrack */
1173 rcu_assign_pointer(help
->helper
, helper
);
1179 ctnetlink_change_timeout(struct nf_conn
*ct
, const struct nlattr
* const cda
[])
1181 u_int32_t timeout
= ntohl(nla_get_be32(cda
[CTA_TIMEOUT
]));
1183 if (!del_timer(&ct
->timeout
))
1186 ct
->timeout
.expires
= jiffies
+ timeout
* HZ
;
1187 add_timer(&ct
->timeout
);
1192 static const struct nla_policy protoinfo_policy
[CTA_PROTOINFO_MAX
+1] = {
1193 [CTA_PROTOINFO_TCP
] = { .type
= NLA_NESTED
},
1194 [CTA_PROTOINFO_DCCP
] = { .type
= NLA_NESTED
},
1195 [CTA_PROTOINFO_SCTP
] = { .type
= NLA_NESTED
},
1199 ctnetlink_change_protoinfo(struct nf_conn
*ct
, const struct nlattr
* const cda
[])
1201 const struct nlattr
*attr
= cda
[CTA_PROTOINFO
];
1202 struct nlattr
*tb
[CTA_PROTOINFO_MAX
+1];
1203 struct nf_conntrack_l4proto
*l4proto
;
1206 nla_parse_nested(tb
, CTA_PROTOINFO_MAX
, attr
, protoinfo_policy
);
1209 l4proto
= __nf_ct_l4proto_find(nf_ct_l3num(ct
), nf_ct_protonum(ct
));
1210 if (l4proto
->from_nlattr
)
1211 err
= l4proto
->from_nlattr(tb
, ct
);
1217 #ifdef CONFIG_NF_NAT_NEEDED
1218 static const struct nla_policy nat_seq_policy
[CTA_NAT_SEQ_MAX
+1] = {
1219 [CTA_NAT_SEQ_CORRECTION_POS
] = { .type
= NLA_U32
},
1220 [CTA_NAT_SEQ_OFFSET_BEFORE
] = { .type
= NLA_U32
},
1221 [CTA_NAT_SEQ_OFFSET_AFTER
] = { .type
= NLA_U32
},
1225 change_nat_seq_adj(struct nf_nat_seq
*natseq
, const struct nlattr
* const attr
)
1227 struct nlattr
*cda
[CTA_NAT_SEQ_MAX
+1];
1229 nla_parse_nested(cda
, CTA_NAT_SEQ_MAX
, attr
, nat_seq_policy
);
1231 if (!cda
[CTA_NAT_SEQ_CORRECTION_POS
])
1234 natseq
->correction_pos
=
1235 ntohl(nla_get_be32(cda
[CTA_NAT_SEQ_CORRECTION_POS
]));
1237 if (!cda
[CTA_NAT_SEQ_OFFSET_BEFORE
])
1240 natseq
->offset_before
=
1241 ntohl(nla_get_be32(cda
[CTA_NAT_SEQ_OFFSET_BEFORE
]));
1243 if (!cda
[CTA_NAT_SEQ_OFFSET_AFTER
])
1246 natseq
->offset_after
=
1247 ntohl(nla_get_be32(cda
[CTA_NAT_SEQ_OFFSET_AFTER
]));
1253 ctnetlink_change_nat_seq_adj(struct nf_conn
*ct
,
1254 const struct nlattr
* const cda
[])
1257 struct nf_conn_nat
*nat
= nfct_nat(ct
);
1262 if (cda
[CTA_NAT_SEQ_ADJ_ORIG
]) {
1263 ret
= change_nat_seq_adj(&nat
->seq
[IP_CT_DIR_ORIGINAL
],
1264 cda
[CTA_NAT_SEQ_ADJ_ORIG
]);
1268 ct
->status
|= IPS_SEQ_ADJUST
;
1271 if (cda
[CTA_NAT_SEQ_ADJ_REPLY
]) {
1272 ret
= change_nat_seq_adj(&nat
->seq
[IP_CT_DIR_REPLY
],
1273 cda
[CTA_NAT_SEQ_ADJ_REPLY
]);
1277 ct
->status
|= IPS_SEQ_ADJUST
;
1285 ctnetlink_change_conntrack(struct nf_conn
*ct
,
1286 const struct nlattr
* const cda
[])
1290 /* only allow NAT changes and master assignation for new conntracks */
1291 if (cda
[CTA_NAT_SRC
] || cda
[CTA_NAT_DST
] || cda
[CTA_TUPLE_MASTER
])
1294 if (cda
[CTA_HELP
]) {
1295 err
= ctnetlink_change_helper(ct
, cda
);
1300 if (cda
[CTA_TIMEOUT
]) {
1301 err
= ctnetlink_change_timeout(ct
, cda
);
1306 if (cda
[CTA_STATUS
]) {
1307 err
= ctnetlink_change_status(ct
, cda
);
1312 if (cda
[CTA_PROTOINFO
]) {
1313 err
= ctnetlink_change_protoinfo(ct
, cda
);
1318 #if defined(CONFIG_NF_CONNTRACK_MARK)
1320 ct
->mark
= ntohl(nla_get_be32(cda
[CTA_MARK
]));
1323 #ifdef CONFIG_NF_NAT_NEEDED
1324 if (cda
[CTA_NAT_SEQ_ADJ_ORIG
] || cda
[CTA_NAT_SEQ_ADJ_REPLY
]) {
1325 err
= ctnetlink_change_nat_seq_adj(ct
, cda
);
1334 static struct nf_conn
*
1335 ctnetlink_create_conntrack(struct net
*net
, u16 zone
,
1336 const struct nlattr
* const cda
[],
1337 struct nf_conntrack_tuple
*otuple
,
1338 struct nf_conntrack_tuple
*rtuple
,
1343 struct nf_conntrack_helper
*helper
;
1344 struct nf_conn_tstamp
*tstamp
;
1346 ct
= nf_conntrack_alloc(net
, zone
, otuple
, rtuple
, GFP_ATOMIC
);
1348 return ERR_PTR(-ENOMEM
);
1350 if (!cda
[CTA_TIMEOUT
])
1352 ct
->timeout
.expires
= ntohl(nla_get_be32(cda
[CTA_TIMEOUT
]));
1354 ct
->timeout
.expires
= jiffies
+ ct
->timeout
.expires
* HZ
;
1357 if (cda
[CTA_HELP
]) {
1358 char *helpname
= NULL
;
1360 err
= ctnetlink_parse_help(cda
[CTA_HELP
], &helpname
);
1364 helper
= __nf_conntrack_helper_find(helpname
, nf_ct_l3num(ct
),
1365 nf_ct_protonum(ct
));
1366 if (helper
== NULL
) {
1368 #ifdef CONFIG_MODULES
1369 if (request_module("nfct-helper-%s", helpname
) < 0) {
1375 helper
= __nf_conntrack_helper_find(helpname
,
1377 nf_ct_protonum(ct
));
1387 struct nf_conn_help
*help
;
1389 help
= nf_ct_helper_ext_add(ct
, GFP_ATOMIC
);
1395 /* not in hash table yet so not strictly necessary */
1396 RCU_INIT_POINTER(help
->helper
, helper
);
1399 /* try an implicit helper assignation */
1400 err
= __nf_ct_try_assign_helper(ct
, NULL
, GFP_ATOMIC
);
1405 if (cda
[CTA_NAT_SRC
] || cda
[CTA_NAT_DST
]) {
1406 err
= ctnetlink_change_nat(ct
, cda
);
1411 nf_ct_acct_ext_add(ct
, GFP_ATOMIC
);
1412 nf_ct_tstamp_ext_add(ct
, GFP_ATOMIC
);
1413 nf_ct_ecache_ext_add(ct
, 0, 0, GFP_ATOMIC
);
1414 /* we must add conntrack extensions before confirmation. */
1415 ct
->status
|= IPS_CONFIRMED
;
1417 if (cda
[CTA_STATUS
]) {
1418 err
= ctnetlink_change_status(ct
, cda
);
1423 #ifdef CONFIG_NF_NAT_NEEDED
1424 if (cda
[CTA_NAT_SEQ_ADJ_ORIG
] || cda
[CTA_NAT_SEQ_ADJ_REPLY
]) {
1425 err
= ctnetlink_change_nat_seq_adj(ct
, cda
);
1431 memset(&ct
->proto
, 0, sizeof(ct
->proto
));
1432 if (cda
[CTA_PROTOINFO
]) {
1433 err
= ctnetlink_change_protoinfo(ct
, cda
);
1438 #if defined(CONFIG_NF_CONNTRACK_MARK)
1440 ct
->mark
= ntohl(nla_get_be32(cda
[CTA_MARK
]));
1443 /* setup master conntrack: this is a confirmed expectation */
1444 if (cda
[CTA_TUPLE_MASTER
]) {
1445 struct nf_conntrack_tuple master
;
1446 struct nf_conntrack_tuple_hash
*master_h
;
1447 struct nf_conn
*master_ct
;
1449 err
= ctnetlink_parse_tuple(cda
, &master
, CTA_TUPLE_MASTER
, u3
);
1453 master_h
= nf_conntrack_find_get(net
, zone
, &master
);
1454 if (master_h
== NULL
) {
1458 master_ct
= nf_ct_tuplehash_to_ctrack(master_h
);
1459 __set_bit(IPS_EXPECTED_BIT
, &ct
->status
);
1460 ct
->master
= master_ct
;
1462 tstamp
= nf_conn_tstamp_find(ct
);
1464 tstamp
->start
= ktime_to_ns(ktime_get_real());
1466 err
= nf_conntrack_hash_check_insert(ct
);
1477 nf_conntrack_free(ct
);
1478 return ERR_PTR(err
);
1482 ctnetlink_new_conntrack(struct sock
*ctnl
, struct sk_buff
*skb
,
1483 const struct nlmsghdr
*nlh
,
1484 const struct nlattr
* const cda
[])
1486 struct net
*net
= sock_net(ctnl
);
1487 struct nf_conntrack_tuple otuple
, rtuple
;
1488 struct nf_conntrack_tuple_hash
*h
= NULL
;
1489 struct nfgenmsg
*nfmsg
= nlmsg_data(nlh
);
1491 u_int8_t u3
= nfmsg
->nfgen_family
;
1495 err
= ctnetlink_parse_zone(cda
[CTA_ZONE
], &zone
);
1499 if (cda
[CTA_TUPLE_ORIG
]) {
1500 err
= ctnetlink_parse_tuple(cda
, &otuple
, CTA_TUPLE_ORIG
, u3
);
1505 if (cda
[CTA_TUPLE_REPLY
]) {
1506 err
= ctnetlink_parse_tuple(cda
, &rtuple
, CTA_TUPLE_REPLY
, u3
);
1511 if (cda
[CTA_TUPLE_ORIG
])
1512 h
= nf_conntrack_find_get(net
, zone
, &otuple
);
1513 else if (cda
[CTA_TUPLE_REPLY
])
1514 h
= nf_conntrack_find_get(net
, zone
, &rtuple
);
1518 if (nlh
->nlmsg_flags
& NLM_F_CREATE
) {
1519 enum ip_conntrack_events events
;
1521 ct
= ctnetlink_create_conntrack(net
, zone
, cda
, &otuple
,
1527 if (test_bit(IPS_EXPECTED_BIT
, &ct
->status
))
1528 events
= IPCT_RELATED
;
1532 nf_conntrack_eventmask_report((1 << IPCT_REPLY
) |
1533 (1 << IPCT_ASSURED
) |
1534 (1 << IPCT_HELPER
) |
1535 (1 << IPCT_PROTOINFO
) |
1536 (1 << IPCT_NATSEQADJ
) |
1537 (1 << IPCT_MARK
) | events
,
1538 ct
, NETLINK_CB(skb
).pid
,
1545 /* implicit 'else' */
1548 ct
= nf_ct_tuplehash_to_ctrack(h
);
1549 if (!(nlh
->nlmsg_flags
& NLM_F_EXCL
)) {
1550 spin_lock_bh(&nf_conntrack_lock
);
1551 err
= ctnetlink_change_conntrack(ct
, cda
);
1552 spin_unlock_bh(&nf_conntrack_lock
);
1554 nf_conntrack_eventmask_report((1 << IPCT_REPLY
) |
1555 (1 << IPCT_ASSURED
) |
1556 (1 << IPCT_HELPER
) |
1557 (1 << IPCT_PROTOINFO
) |
1558 (1 << IPCT_NATSEQADJ
) |
1560 ct
, NETLINK_CB(skb
).pid
,
1569 /***********************************************************************
1571 ***********************************************************************/
1574 ctnetlink_exp_dump_tuple(struct sk_buff
*skb
,
1575 const struct nf_conntrack_tuple
*tuple
,
1576 enum ctattr_expect type
)
1578 struct nlattr
*nest_parms
;
1580 nest_parms
= nla_nest_start(skb
, type
| NLA_F_NESTED
);
1582 goto nla_put_failure
;
1583 if (ctnetlink_dump_tuples(skb
, tuple
) < 0)
1584 goto nla_put_failure
;
1585 nla_nest_end(skb
, nest_parms
);
1594 ctnetlink_exp_dump_mask(struct sk_buff
*skb
,
1595 const struct nf_conntrack_tuple
*tuple
,
1596 const struct nf_conntrack_tuple_mask
*mask
)
1599 struct nf_conntrack_l3proto
*l3proto
;
1600 struct nf_conntrack_l4proto
*l4proto
;
1601 struct nf_conntrack_tuple m
;
1602 struct nlattr
*nest_parms
;
1604 memset(&m
, 0xFF, sizeof(m
));
1605 memcpy(&m
.src
.u3
, &mask
->src
.u3
, sizeof(m
.src
.u3
));
1606 m
.src
.u
.all
= mask
->src
.u
.all
;
1607 m
.dst
.protonum
= tuple
->dst
.protonum
;
1609 nest_parms
= nla_nest_start(skb
, CTA_EXPECT_MASK
| NLA_F_NESTED
);
1611 goto nla_put_failure
;
1613 l3proto
= __nf_ct_l3proto_find(tuple
->src
.l3num
);
1614 ret
= ctnetlink_dump_tuples_ip(skb
, &m
, l3proto
);
1616 if (unlikely(ret
< 0))
1617 goto nla_put_failure
;
1619 l4proto
= __nf_ct_l4proto_find(tuple
->src
.l3num
, tuple
->dst
.protonum
);
1620 ret
= ctnetlink_dump_tuples_proto(skb
, &m
, l4proto
);
1621 if (unlikely(ret
< 0))
1622 goto nla_put_failure
;
1624 nla_nest_end(skb
, nest_parms
);
1633 ctnetlink_exp_dump_expect(struct sk_buff
*skb
,
1634 const struct nf_conntrack_expect
*exp
)
1636 struct nf_conn
*master
= exp
->master
;
1637 long timeout
= ((long)exp
->timeout
.expires
- (long)jiffies
) / HZ
;
1638 struct nf_conn_help
*help
;
1643 if (ctnetlink_exp_dump_tuple(skb
, &exp
->tuple
, CTA_EXPECT_TUPLE
) < 0)
1644 goto nla_put_failure
;
1645 if (ctnetlink_exp_dump_mask(skb
, &exp
->tuple
, &exp
->mask
) < 0)
1646 goto nla_put_failure
;
1647 if (ctnetlink_exp_dump_tuple(skb
,
1648 &master
->tuplehash
[IP_CT_DIR_ORIGINAL
].tuple
,
1649 CTA_EXPECT_MASTER
) < 0)
1650 goto nla_put_failure
;
1652 NLA_PUT_BE32(skb
, CTA_EXPECT_TIMEOUT
, htonl(timeout
));
1653 NLA_PUT_BE32(skb
, CTA_EXPECT_ID
, htonl((unsigned long)exp
));
1654 NLA_PUT_BE32(skb
, CTA_EXPECT_FLAGS
, htonl(exp
->flags
));
1655 help
= nfct_help(master
);
1657 struct nf_conntrack_helper
*helper
;
1659 helper
= rcu_dereference(help
->helper
);
1661 NLA_PUT_STRING(skb
, CTA_EXPECT_HELP_NAME
, helper
->name
);
1671 ctnetlink_exp_fill_info(struct sk_buff
*skb
, u32 pid
, u32 seq
,
1672 int event
, const struct nf_conntrack_expect
*exp
)
1674 struct nlmsghdr
*nlh
;
1675 struct nfgenmsg
*nfmsg
;
1676 unsigned int flags
= pid
? NLM_F_MULTI
: 0;
1678 event
|= NFNL_SUBSYS_CTNETLINK_EXP
<< 8;
1679 nlh
= nlmsg_put(skb
, pid
, seq
, event
, sizeof(*nfmsg
), flags
);
1683 nfmsg
= nlmsg_data(nlh
);
1684 nfmsg
->nfgen_family
= exp
->tuple
.src
.l3num
;
1685 nfmsg
->version
= NFNETLINK_V0
;
1688 if (ctnetlink_exp_dump_expect(skb
, exp
) < 0)
1689 goto nla_put_failure
;
1691 nlmsg_end(skb
, nlh
);
1696 nlmsg_cancel(skb
, nlh
);
1700 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1702 ctnetlink_expect_event(unsigned int events
, struct nf_exp_event
*item
)
1704 struct nf_conntrack_expect
*exp
= item
->exp
;
1705 struct net
*net
= nf_ct_exp_net(exp
);
1706 struct nlmsghdr
*nlh
;
1707 struct nfgenmsg
*nfmsg
;
1708 struct sk_buff
*skb
;
1709 unsigned int type
, group
;
1712 if (events
& (1 << IPEXP_DESTROY
)) {
1713 type
= IPCTNL_MSG_EXP_DELETE
;
1714 group
= NFNLGRP_CONNTRACK_EXP_DESTROY
;
1715 } else if (events
& (1 << IPEXP_NEW
)) {
1716 type
= IPCTNL_MSG_EXP_NEW
;
1717 flags
= NLM_F_CREATE
|NLM_F_EXCL
;
1718 group
= NFNLGRP_CONNTRACK_EXP_NEW
;
1722 if (!item
->report
&& !nfnetlink_has_listeners(net
, group
))
1725 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
1729 type
|= NFNL_SUBSYS_CTNETLINK_EXP
<< 8;
1730 nlh
= nlmsg_put(skb
, item
->pid
, 0, type
, sizeof(*nfmsg
), flags
);
1734 nfmsg
= nlmsg_data(nlh
);
1735 nfmsg
->nfgen_family
= exp
->tuple
.src
.l3num
;
1736 nfmsg
->version
= NFNETLINK_V0
;
1740 if (ctnetlink_exp_dump_expect(skb
, exp
) < 0)
1741 goto nla_put_failure
;
1744 nlmsg_end(skb
, nlh
);
1745 nfnetlink_send(skb
, net
, item
->pid
, group
, item
->report
, GFP_ATOMIC
);
1750 nlmsg_cancel(skb
, nlh
);
1754 nfnetlink_set_err(net
, 0, 0, -ENOBUFS
);
1758 static int ctnetlink_exp_done(struct netlink_callback
*cb
)
1761 nf_ct_expect_put((struct nf_conntrack_expect
*)cb
->args
[1]);
1766 ctnetlink_exp_dump_table(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1768 struct net
*net
= sock_net(skb
->sk
);
1769 struct nf_conntrack_expect
*exp
, *last
;
1770 struct nfgenmsg
*nfmsg
= nlmsg_data(cb
->nlh
);
1771 struct hlist_node
*n
;
1772 u_int8_t l3proto
= nfmsg
->nfgen_family
;
1775 last
= (struct nf_conntrack_expect
*)cb
->args
[1];
1776 for (; cb
->args
[0] < nf_ct_expect_hsize
; cb
->args
[0]++) {
1778 hlist_for_each_entry(exp
, n
, &net
->ct
.expect_hash
[cb
->args
[0]],
1780 if (l3proto
&& exp
->tuple
.src
.l3num
!= l3proto
)
1787 if (ctnetlink_exp_fill_info(skb
,
1788 NETLINK_CB(cb
->skb
).pid
,
1792 if (!atomic_inc_not_zero(&exp
->use
))
1794 cb
->args
[1] = (unsigned long)exp
;
1806 nf_ct_expect_put(last
);
1811 static const struct nla_policy exp_nla_policy
[CTA_EXPECT_MAX
+1] = {
1812 [CTA_EXPECT_MASTER
] = { .type
= NLA_NESTED
},
1813 [CTA_EXPECT_TUPLE
] = { .type
= NLA_NESTED
},
1814 [CTA_EXPECT_MASK
] = { .type
= NLA_NESTED
},
1815 [CTA_EXPECT_TIMEOUT
] = { .type
= NLA_U32
},
1816 [CTA_EXPECT_ID
] = { .type
= NLA_U32
},
1817 [CTA_EXPECT_HELP_NAME
] = { .type
= NLA_NUL_STRING
},
1818 [CTA_EXPECT_ZONE
] = { .type
= NLA_U16
},
1819 [CTA_EXPECT_FLAGS
] = { .type
= NLA_U32
},
1823 ctnetlink_get_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1824 const struct nlmsghdr
*nlh
,
1825 const struct nlattr
* const cda
[])
1827 struct net
*net
= sock_net(ctnl
);
1828 struct nf_conntrack_tuple tuple
;
1829 struct nf_conntrack_expect
*exp
;
1830 struct sk_buff
*skb2
;
1831 struct nfgenmsg
*nfmsg
= nlmsg_data(nlh
);
1832 u_int8_t u3
= nfmsg
->nfgen_family
;
1836 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
1837 return netlink_dump_start(ctnl
, skb
, nlh
,
1838 ctnetlink_exp_dump_table
,
1839 ctnetlink_exp_done
, 0);
1842 err
= ctnetlink_parse_zone(cda
[CTA_EXPECT_ZONE
], &zone
);
1846 if (cda
[CTA_EXPECT_TUPLE
])
1847 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1848 else if (cda
[CTA_EXPECT_MASTER
])
1849 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_MASTER
, u3
);
1856 exp
= nf_ct_expect_find_get(net
, zone
, &tuple
);
1860 if (cda
[CTA_EXPECT_ID
]) {
1861 __be32 id
= nla_get_be32(cda
[CTA_EXPECT_ID
]);
1862 if (ntohl(id
) != (u32
)(unsigned long)exp
) {
1863 nf_ct_expect_put(exp
);
1869 skb2
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1871 nf_ct_expect_put(exp
);
1876 err
= ctnetlink_exp_fill_info(skb2
, NETLINK_CB(skb
).pid
,
1877 nlh
->nlmsg_seq
, IPCTNL_MSG_EXP_NEW
, exp
);
1879 nf_ct_expect_put(exp
);
1883 err
= netlink_unicast(ctnl
, skb2
, NETLINK_CB(skb
).pid
, MSG_DONTWAIT
);
1892 /* this avoids a loop in nfnetlink. */
1893 return err
== -EAGAIN
? -ENOBUFS
: err
;
1897 ctnetlink_del_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
1898 const struct nlmsghdr
*nlh
,
1899 const struct nlattr
* const cda
[])
1901 struct net
*net
= sock_net(ctnl
);
1902 struct nf_conntrack_expect
*exp
;
1903 struct nf_conntrack_tuple tuple
;
1904 struct nfgenmsg
*nfmsg
= nlmsg_data(nlh
);
1905 struct hlist_node
*n
, *next
;
1906 u_int8_t u3
= nfmsg
->nfgen_family
;
1911 if (cda
[CTA_EXPECT_TUPLE
]) {
1912 /* delete a single expect by tuple */
1913 err
= ctnetlink_parse_zone(cda
[CTA_EXPECT_ZONE
], &zone
);
1917 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
1921 /* bump usage count to 2 */
1922 exp
= nf_ct_expect_find_get(net
, zone
, &tuple
);
1926 if (cda
[CTA_EXPECT_ID
]) {
1927 __be32 id
= nla_get_be32(cda
[CTA_EXPECT_ID
]);
1928 if (ntohl(id
) != (u32
)(unsigned long)exp
) {
1929 nf_ct_expect_put(exp
);
1934 /* after list removal, usage count == 1 */
1935 spin_lock_bh(&nf_conntrack_lock
);
1936 if (del_timer(&exp
->timeout
)) {
1937 nf_ct_unlink_expect_report(exp
, NETLINK_CB(skb
).pid
,
1939 nf_ct_expect_put(exp
);
1941 spin_unlock_bh(&nf_conntrack_lock
);
1942 /* have to put what we 'get' above.
1943 * after this line usage count == 0 */
1944 nf_ct_expect_put(exp
);
1945 } else if (cda
[CTA_EXPECT_HELP_NAME
]) {
1946 char *name
= nla_data(cda
[CTA_EXPECT_HELP_NAME
]);
1947 struct nf_conn_help
*m_help
;
1949 /* delete all expectations for this helper */
1950 spin_lock_bh(&nf_conntrack_lock
);
1951 for (i
= 0; i
< nf_ct_expect_hsize
; i
++) {
1952 hlist_for_each_entry_safe(exp
, n
, next
,
1953 &net
->ct
.expect_hash
[i
],
1955 m_help
= nfct_help(exp
->master
);
1956 if (!strcmp(m_help
->helper
->name
, name
) &&
1957 del_timer(&exp
->timeout
)) {
1958 nf_ct_unlink_expect_report(exp
,
1959 NETLINK_CB(skb
).pid
,
1961 nf_ct_expect_put(exp
);
1965 spin_unlock_bh(&nf_conntrack_lock
);
1967 /* This basically means we have to flush everything*/
1968 spin_lock_bh(&nf_conntrack_lock
);
1969 for (i
= 0; i
< nf_ct_expect_hsize
; i
++) {
1970 hlist_for_each_entry_safe(exp
, n
, next
,
1971 &net
->ct
.expect_hash
[i
],
1973 if (del_timer(&exp
->timeout
)) {
1974 nf_ct_unlink_expect_report(exp
,
1975 NETLINK_CB(skb
).pid
,
1977 nf_ct_expect_put(exp
);
1981 spin_unlock_bh(&nf_conntrack_lock
);
1987 ctnetlink_change_expect(struct nf_conntrack_expect
*x
,
1988 const struct nlattr
* const cda
[])
1994 ctnetlink_create_expect(struct net
*net
, u16 zone
,
1995 const struct nlattr
* const cda
[],
1997 u32 pid
, int report
)
1999 struct nf_conntrack_tuple tuple
, mask
, master_tuple
;
2000 struct nf_conntrack_tuple_hash
*h
= NULL
;
2001 struct nf_conntrack_expect
*exp
;
2003 struct nf_conn_help
*help
;
2006 /* caller guarantees that those three CTA_EXPECT_* exist */
2007 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
2010 err
= ctnetlink_parse_tuple(cda
, &mask
, CTA_EXPECT_MASK
, u3
);
2013 err
= ctnetlink_parse_tuple(cda
, &master_tuple
, CTA_EXPECT_MASTER
, u3
);
2017 /* Look for master conntrack of this expectation */
2018 h
= nf_conntrack_find_get(net
, zone
, &master_tuple
);
2021 ct
= nf_ct_tuplehash_to_ctrack(h
);
2022 exp
= nf_ct_expect_alloc(ct
);
2027 help
= nfct_help(ct
);
2029 if (!cda
[CTA_EXPECT_TIMEOUT
]) {
2033 exp
->timeout
.expires
=
2034 jiffies
+ ntohl(nla_get_be32(cda
[CTA_EXPECT_TIMEOUT
])) * HZ
;
2036 exp
->flags
= NF_CT_EXPECT_USERSPACE
;
2037 if (cda
[CTA_EXPECT_FLAGS
]) {
2039 ntohl(nla_get_be32(cda
[CTA_EXPECT_FLAGS
]));
2042 if (cda
[CTA_EXPECT_FLAGS
]) {
2043 exp
->flags
= ntohl(nla_get_be32(cda
[CTA_EXPECT_FLAGS
]));
2044 exp
->flags
&= ~NF_CT_EXPECT_USERSPACE
;
2050 exp
->expectfn
= NULL
;
2053 memcpy(&exp
->tuple
, &tuple
, sizeof(struct nf_conntrack_tuple
));
2054 memcpy(&exp
->mask
.src
.u3
, &mask
.src
.u3
, sizeof(exp
->mask
.src
.u3
));
2055 exp
->mask
.src
.u
.all
= mask
.src
.u
.all
;
2057 err
= nf_ct_expect_related_report(exp
, pid
, report
);
2058 nf_ct_expect_put(exp
);
2061 nf_ct_put(nf_ct_tuplehash_to_ctrack(h
));
2066 ctnetlink_new_expect(struct sock
*ctnl
, struct sk_buff
*skb
,
2067 const struct nlmsghdr
*nlh
,
2068 const struct nlattr
* const cda
[])
2070 struct net
*net
= sock_net(ctnl
);
2071 struct nf_conntrack_tuple tuple
;
2072 struct nf_conntrack_expect
*exp
;
2073 struct nfgenmsg
*nfmsg
= nlmsg_data(nlh
);
2074 u_int8_t u3
= nfmsg
->nfgen_family
;
2078 if (!cda
[CTA_EXPECT_TUPLE
]
2079 || !cda
[CTA_EXPECT_MASK
]
2080 || !cda
[CTA_EXPECT_MASTER
])
2083 err
= ctnetlink_parse_zone(cda
[CTA_EXPECT_ZONE
], &zone
);
2087 err
= ctnetlink_parse_tuple(cda
, &tuple
, CTA_EXPECT_TUPLE
, u3
);
2091 spin_lock_bh(&nf_conntrack_lock
);
2092 exp
= __nf_ct_expect_find(net
, zone
, &tuple
);
2095 spin_unlock_bh(&nf_conntrack_lock
);
2097 if (nlh
->nlmsg_flags
& NLM_F_CREATE
) {
2098 err
= ctnetlink_create_expect(net
, zone
, cda
,
2100 NETLINK_CB(skb
).pid
,
2107 if (!(nlh
->nlmsg_flags
& NLM_F_EXCL
))
2108 err
= ctnetlink_change_expect(exp
, cda
);
2109 spin_unlock_bh(&nf_conntrack_lock
);
2114 #ifdef CONFIG_NF_CONNTRACK_EVENTS
2115 static struct nf_ct_event_notifier ctnl_notifier
= {
2116 .fcn
= ctnetlink_conntrack_event
,
2119 static struct nf_exp_event_notifier ctnl_notifier_exp
= {
2120 .fcn
= ctnetlink_expect_event
,
2124 static const struct nfnl_callback ctnl_cb
[IPCTNL_MSG_MAX
] = {
2125 [IPCTNL_MSG_CT_NEW
] = { .call
= ctnetlink_new_conntrack
,
2126 .attr_count
= CTA_MAX
,
2127 .policy
= ct_nla_policy
},
2128 [IPCTNL_MSG_CT_GET
] = { .call
= ctnetlink_get_conntrack
,
2129 .attr_count
= CTA_MAX
,
2130 .policy
= ct_nla_policy
},
2131 [IPCTNL_MSG_CT_DELETE
] = { .call
= ctnetlink_del_conntrack
,
2132 .attr_count
= CTA_MAX
,
2133 .policy
= ct_nla_policy
},
2134 [IPCTNL_MSG_CT_GET_CTRZERO
] = { .call
= ctnetlink_get_conntrack
,
2135 .attr_count
= CTA_MAX
,
2136 .policy
= ct_nla_policy
},
2139 static const struct nfnl_callback ctnl_exp_cb
[IPCTNL_MSG_EXP_MAX
] = {
2140 [IPCTNL_MSG_EXP_GET
] = { .call
= ctnetlink_get_expect
,
2141 .attr_count
= CTA_EXPECT_MAX
,
2142 .policy
= exp_nla_policy
},
2143 [IPCTNL_MSG_EXP_NEW
] = { .call
= ctnetlink_new_expect
,
2144 .attr_count
= CTA_EXPECT_MAX
,
2145 .policy
= exp_nla_policy
},
2146 [IPCTNL_MSG_EXP_DELETE
] = { .call
= ctnetlink_del_expect
,
2147 .attr_count
= CTA_EXPECT_MAX
,
2148 .policy
= exp_nla_policy
},
2151 static const struct nfnetlink_subsystem ctnl_subsys
= {
2152 .name
= "conntrack",
2153 .subsys_id
= NFNL_SUBSYS_CTNETLINK
,
2154 .cb_count
= IPCTNL_MSG_MAX
,
2158 static const struct nfnetlink_subsystem ctnl_exp_subsys
= {
2159 .name
= "conntrack_expect",
2160 .subsys_id
= NFNL_SUBSYS_CTNETLINK_EXP
,
2161 .cb_count
= IPCTNL_MSG_EXP_MAX
,
2165 MODULE_ALIAS("ip_conntrack_netlink");
2166 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK
);
2167 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP
);
2169 static int __net_init
ctnetlink_net_init(struct net
*net
)
2171 #ifdef CONFIG_NF_CONNTRACK_EVENTS
2174 ret
= nf_conntrack_register_notifier(net
, &ctnl_notifier
);
2176 pr_err("ctnetlink_init: cannot register notifier.\n");
2180 ret
= nf_ct_expect_register_notifier(net
, &ctnl_notifier_exp
);
2182 pr_err("ctnetlink_init: cannot expect register notifier.\n");
2183 goto err_unreg_notifier
;
2188 #ifdef CONFIG_NF_CONNTRACK_EVENTS
2190 nf_conntrack_unregister_notifier(net
, &ctnl_notifier
);
2196 static void ctnetlink_net_exit(struct net
*net
)
2198 #ifdef CONFIG_NF_CONNTRACK_EVENTS
2199 nf_ct_expect_unregister_notifier(net
, &ctnl_notifier_exp
);
2200 nf_conntrack_unregister_notifier(net
, &ctnl_notifier
);
2204 static void __net_exit
ctnetlink_net_exit_batch(struct list_head
*net_exit_list
)
2208 list_for_each_entry(net
, net_exit_list
, exit_list
)
2209 ctnetlink_net_exit(net
);
2212 static struct pernet_operations ctnetlink_net_ops
= {
2213 .init
= ctnetlink_net_init
,
2214 .exit_batch
= ctnetlink_net_exit_batch
,
2217 static int __init
ctnetlink_init(void)
2221 pr_info("ctnetlink v%s: registering with nfnetlink.\n", version
);
2222 ret
= nfnetlink_subsys_register(&ctnl_subsys
);
2224 pr_err("ctnetlink_init: cannot register with nfnetlink.\n");
2228 ret
= nfnetlink_subsys_register(&ctnl_exp_subsys
);
2230 pr_err("ctnetlink_init: cannot register exp with nfnetlink.\n");
2231 goto err_unreg_subsys
;
2234 if (register_pernet_subsys(&ctnetlink_net_ops
)) {
2235 pr_err("ctnetlink_init: cannot register pernet operations\n");
2236 goto err_unreg_exp_subsys
;
2241 err_unreg_exp_subsys
:
2242 nfnetlink_subsys_unregister(&ctnl_exp_subsys
);
2244 nfnetlink_subsys_unregister(&ctnl_subsys
);
2249 static void __exit
ctnetlink_exit(void)
2251 pr_info("ctnetlink: unregistering from nfnetlink.\n");
2253 unregister_pernet_subsys(&ctnetlink_net_ops
);
2254 nfnetlink_subsys_unregister(&ctnl_exp_subsys
);
2255 nfnetlink_subsys_unregister(&ctnl_subsys
);
2258 module_init(ctnetlink_init
);
2259 module_exit(ctnetlink_exit
);