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-2008 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/skbuff.h>
26 #include <linux/errno.h>
27 #include <linux/netlink.h>
28 #include <linux/spinlock.h>
29 #include <linux/interrupt.h>
30 #include <linux/notifier.h>
32 #include <linux/netfilter.h>
33 #include <net/netlink.h>
34 #include <net/netfilter/nf_conntrack.h>
35 #include <net/netfilter/nf_conntrack_core.h>
36 #include <net/netfilter/nf_conntrack_expect.h>
37 #include <net/netfilter/nf_conntrack_helper.h>
38 #include <net/netfilter/nf_conntrack_l3proto.h>
39 #include <net/netfilter/nf_conntrack_l4proto.h>
40 #include <net/netfilter/nf_conntrack_tuple.h>
41 #include <net/netfilter/nf_conntrack_acct.h>
42 #ifdef CONFIG_NF_NAT_NEEDED
43 #include <net/netfilter/nf_nat_core.h>
44 #include <net/netfilter/nf_nat_protocol.h>
47 #include <linux/netfilter/nfnetlink.h>
48 #include <linux/netfilter/nfnetlink_conntrack.h>
50 MODULE_LICENSE("GPL");
52 static char __initdata version[] = "0.93";
55 ctnetlink_dump_tuples_proto(struct sk_buff *skb,
56 const struct nf_conntrack_tuple *tuple,
57 struct nf_conntrack_l4proto *l4proto)
60 struct nlattr *nest_parms;
62 nest_parms = nla_nest_start(skb, CTA_TUPLE_PROTO | NLA_F_NESTED);
65 NLA_PUT_U8(skb, CTA_PROTO_NUM, tuple->dst.protonum);
67 if (likely(l4proto->tuple_to_nlattr))
68 ret = l4proto->tuple_to_nlattr(skb, tuple);
70 nla_nest_end(skb, nest_parms);
79 ctnetlink_dump_tuples_ip(struct sk_buff *skb,
80 const struct nf_conntrack_tuple *tuple,
81 struct nf_conntrack_l3proto *l3proto)
84 struct nlattr *nest_parms;
86 nest_parms = nla_nest_start(skb, CTA_TUPLE_IP | NLA_F_NESTED);
90 if (likely(l3proto->tuple_to_nlattr))
91 ret = l3proto->tuple_to_nlattr(skb, tuple);
93 nla_nest_end(skb, nest_parms);
102 ctnetlink_dump_tuples(struct sk_buff *skb,
103 const struct nf_conntrack_tuple *tuple)
106 struct nf_conntrack_l3proto *l3proto;
107 struct nf_conntrack_l4proto *l4proto;
109 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
110 ret = ctnetlink_dump_tuples_ip(skb, tuple, l3proto);
112 if (unlikely(ret < 0))
115 l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
116 ret = ctnetlink_dump_tuples_proto(skb, tuple, l4proto);
122 ctnetlink_dump_status(struct sk_buff *skb, const struct nf_conn *ct)
124 NLA_PUT_BE32(skb, CTA_STATUS, htonl(ct->status));
132 ctnetlink_dump_timeout(struct sk_buff *skb, const struct nf_conn *ct)
134 long timeout = (ct->timeout.expires - jiffies) / HZ;
139 NLA_PUT_BE32(skb, CTA_TIMEOUT, htonl(timeout));
147 ctnetlink_dump_protoinfo(struct sk_buff *skb, const struct nf_conn *ct)
149 struct nf_conntrack_l4proto *l4proto;
150 struct nlattr *nest_proto;
153 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
154 if (!l4proto->to_nlattr)
157 nest_proto = nla_nest_start(skb, CTA_PROTOINFO | NLA_F_NESTED);
159 goto nla_put_failure;
161 ret = l4proto->to_nlattr(skb, nest_proto, ct);
163 nla_nest_end(skb, nest_proto);
172 ctnetlink_dump_helpinfo(struct sk_buff *skb, const struct nf_conn *ct)
174 struct nlattr *nest_helper;
175 const struct nf_conn_help *help = nfct_help(ct);
176 struct nf_conntrack_helper *helper;
181 helper = rcu_dereference(help->helper);
185 nest_helper = nla_nest_start(skb, CTA_HELP | NLA_F_NESTED);
187 goto nla_put_failure;
188 NLA_PUT_STRING(skb, CTA_HELP_NAME, helper->name);
190 if (helper->to_nlattr)
191 helper->to_nlattr(skb, ct);
193 nla_nest_end(skb, nest_helper);
202 ctnetlink_dump_counters(struct sk_buff *skb, const struct nf_conn *ct,
203 enum ip_conntrack_dir dir)
205 enum ctattr_type type = dir ? CTA_COUNTERS_REPLY: CTA_COUNTERS_ORIG;
206 struct nlattr *nest_count;
207 const struct nf_conn_counter *acct;
209 acct = nf_conn_acct_find(ct);
213 nest_count = nla_nest_start(skb, type | NLA_F_NESTED);
215 goto nla_put_failure;
217 NLA_PUT_BE64(skb, CTA_COUNTERS_PACKETS,
218 cpu_to_be64(acct[dir].packets));
219 NLA_PUT_BE64(skb, CTA_COUNTERS_BYTES,
220 cpu_to_be64(acct[dir].bytes));
222 nla_nest_end(skb, nest_count);
230 #ifdef CONFIG_NF_CONNTRACK_MARK
232 ctnetlink_dump_mark(struct sk_buff *skb, const struct nf_conn *ct)
234 NLA_PUT_BE32(skb, CTA_MARK, htonl(ct->mark));
241 #define ctnetlink_dump_mark(a, b) (0)
244 #ifdef CONFIG_NF_CONNTRACK_SECMARK
246 ctnetlink_dump_secmark(struct sk_buff *skb, const struct nf_conn *ct)
248 NLA_PUT_BE32(skb, CTA_SECMARK, htonl(ct->secmark));
255 #define ctnetlink_dump_secmark(a, b) (0)
258 #define master_tuple(ct) &(ct->master->tuplehash[IP_CT_DIR_ORIGINAL].tuple)
261 ctnetlink_dump_master(struct sk_buff *skb, const struct nf_conn *ct)
263 struct nlattr *nest_parms;
265 if (!(ct->status & IPS_EXPECTED))
268 nest_parms = nla_nest_start(skb, CTA_TUPLE_MASTER | NLA_F_NESTED);
270 goto nla_put_failure;
271 if (ctnetlink_dump_tuples(skb, master_tuple(ct)) < 0)
272 goto nla_put_failure;
273 nla_nest_end(skb, nest_parms);
281 #ifdef CONFIG_NF_NAT_NEEDED
283 dump_nat_seq_adj(struct sk_buff *skb, const struct nf_nat_seq *natseq, int type)
285 struct nlattr *nest_parms;
287 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
289 goto nla_put_failure;
291 NLA_PUT_BE32(skb, CTA_NAT_SEQ_CORRECTION_POS,
292 htonl(natseq->correction_pos));
293 NLA_PUT_BE32(skb, CTA_NAT_SEQ_OFFSET_BEFORE,
294 htonl(natseq->offset_before));
295 NLA_PUT_BE32(skb, CTA_NAT_SEQ_OFFSET_AFTER,
296 htonl(natseq->offset_after));
298 nla_nest_end(skb, nest_parms);
307 ctnetlink_dump_nat_seq_adj(struct sk_buff *skb, const struct nf_conn *ct)
309 struct nf_nat_seq *natseq;
310 struct nf_conn_nat *nat = nfct_nat(ct);
312 if (!(ct->status & IPS_SEQ_ADJUST) || !nat)
315 natseq = &nat->seq[IP_CT_DIR_ORIGINAL];
316 if (dump_nat_seq_adj(skb, natseq, CTA_NAT_SEQ_ADJ_ORIG) == -1)
319 natseq = &nat->seq[IP_CT_DIR_REPLY];
320 if (dump_nat_seq_adj(skb, natseq, CTA_NAT_SEQ_ADJ_REPLY) == -1)
326 #define ctnetlink_dump_nat_seq_adj(a, b) (0)
330 ctnetlink_dump_id(struct sk_buff *skb, const struct nf_conn *ct)
332 NLA_PUT_BE32(skb, CTA_ID, htonl((unsigned long)ct));
340 ctnetlink_dump_use(struct sk_buff *skb, const struct nf_conn *ct)
342 NLA_PUT_BE32(skb, CTA_USE, htonl(atomic_read(&ct->ct_general.use)));
349 #define tuple(ct, dir) (&(ct)->tuplehash[dir].tuple)
352 ctnetlink_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
353 int event, int nowait,
354 const struct nf_conn *ct)
356 struct nlmsghdr *nlh;
357 struct nfgenmsg *nfmsg;
358 struct nlattr *nest_parms;
359 unsigned char *b = skb_tail_pointer(skb);
361 event |= NFNL_SUBSYS_CTNETLINK << 8;
362 nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(struct nfgenmsg));
363 nfmsg = NLMSG_DATA(nlh);
365 nlh->nlmsg_flags = (nowait && pid) ? NLM_F_MULTI : 0;
366 nfmsg->nfgen_family = nf_ct_l3num(ct);
367 nfmsg->version = NFNETLINK_V0;
370 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
372 goto nla_put_failure;
373 if (ctnetlink_dump_tuples(skb, tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
374 goto nla_put_failure;
375 nla_nest_end(skb, nest_parms);
377 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
379 goto nla_put_failure;
380 if (ctnetlink_dump_tuples(skb, tuple(ct, IP_CT_DIR_REPLY)) < 0)
381 goto nla_put_failure;
382 nla_nest_end(skb, nest_parms);
384 if (ctnetlink_dump_status(skb, ct) < 0 ||
385 ctnetlink_dump_timeout(skb, ct) < 0 ||
386 ctnetlink_dump_counters(skb, ct, IP_CT_DIR_ORIGINAL) < 0 ||
387 ctnetlink_dump_counters(skb, ct, IP_CT_DIR_REPLY) < 0 ||
388 ctnetlink_dump_protoinfo(skb, ct) < 0 ||
389 ctnetlink_dump_helpinfo(skb, ct) < 0 ||
390 ctnetlink_dump_mark(skb, ct) < 0 ||
391 ctnetlink_dump_secmark(skb, ct) < 0 ||
392 ctnetlink_dump_id(skb, ct) < 0 ||
393 ctnetlink_dump_use(skb, ct) < 0 ||
394 ctnetlink_dump_master(skb, ct) < 0 ||
395 ctnetlink_dump_nat_seq_adj(skb, ct) < 0)
396 goto nla_put_failure;
398 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
407 #ifdef CONFIG_NF_CONNTRACK_EVENTS
409 * The general structure of a ctnetlink event is
412 * <l3/l4-proto-attributes>
414 * <l3/l4-proto-attributes>
418 * <l4-proto-attributes>
420 * <l3/l4-proto-attributes>
422 * Therefore the formular is
424 * size = sizeof(headers) + sizeof(generic_nlas) + 3 * sizeof(tuple_nlas)
425 * + sizeof(protoinfo_nlas)
427 static struct sk_buff *
428 ctnetlink_alloc_skb(const struct nf_conntrack_tuple *tuple, gfp_t gfp)
430 struct nf_conntrack_l3proto *l3proto;
431 struct nf_conntrack_l4proto *l4proto;
434 #define NLA_TYPE_SIZE(type) nla_total_size(sizeof(type))
436 /* proto independant part */
437 len = NLMSG_SPACE(sizeof(struct nfgenmsg))
438 + 3 * nla_total_size(0) /* CTA_TUPLE_ORIG|REPL|MASTER */
439 + 3 * nla_total_size(0) /* CTA_TUPLE_IP */
440 + 3 * nla_total_size(0) /* CTA_TUPLE_PROTO */
441 + 3 * NLA_TYPE_SIZE(u_int8_t) /* CTA_PROTO_NUM */
442 + NLA_TYPE_SIZE(u_int32_t) /* CTA_ID */
443 + NLA_TYPE_SIZE(u_int32_t) /* CTA_STATUS */
444 #ifdef CONFIG_NF_CT_ACCT
445 + 2 * nla_total_size(0) /* CTA_COUNTERS_ORIG|REPL */
446 + 2 * NLA_TYPE_SIZE(uint64_t) /* CTA_COUNTERS_PACKETS */
447 + 2 * NLA_TYPE_SIZE(uint64_t) /* CTA_COUNTERS_BYTES */
449 + NLA_TYPE_SIZE(u_int32_t) /* CTA_TIMEOUT */
450 + nla_total_size(0) /* CTA_PROTOINFO */
451 + nla_total_size(0) /* CTA_HELP */
452 + nla_total_size(NF_CT_HELPER_NAME_LEN) /* CTA_HELP_NAME */
453 #ifdef CONFIG_NF_CONNTRACK_SECMARK
454 + NLA_TYPE_SIZE(u_int32_t) /* CTA_SECMARK */
456 #ifdef CONFIG_NF_NAT_NEEDED
457 + 2 * nla_total_size(0) /* CTA_NAT_SEQ_ADJ_ORIG|REPL */
458 + 2 * NLA_TYPE_SIZE(u_int32_t) /* CTA_NAT_SEQ_CORRECTION_POS */
459 + 2 * NLA_TYPE_SIZE(u_int32_t) /* CTA_NAT_SEQ_CORRECTION_BEFORE */
460 + 2 * NLA_TYPE_SIZE(u_int32_t) /* CTA_NAT_SEQ_CORRECTION_AFTER */
462 #ifdef CONFIG_NF_CONNTRACK_MARK
463 + NLA_TYPE_SIZE(u_int32_t) /* CTA_MARK */
470 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
471 len += l3proto->nla_size;
473 l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
474 len += l4proto->nla_size;
477 return alloc_skb(len, gfp);
480 static int ctnetlink_conntrack_event(struct notifier_block *this,
481 unsigned long events, void *ptr)
483 struct nlmsghdr *nlh;
484 struct nfgenmsg *nfmsg;
485 struct nlattr *nest_parms;
486 struct nf_ct_event *item = (struct nf_ct_event *)ptr;
487 struct nf_conn *ct = item->ct;
491 unsigned int flags = 0, group;
493 /* ignore our fake conntrack entry */
494 if (ct == &nf_conntrack_untracked)
497 if (events & IPCT_DESTROY) {
498 type = IPCTNL_MSG_CT_DELETE;
499 group = NFNLGRP_CONNTRACK_DESTROY;
500 } else if (events & (IPCT_NEW | IPCT_RELATED)) {
501 type = IPCTNL_MSG_CT_NEW;
502 flags = NLM_F_CREATE|NLM_F_EXCL;
503 group = NFNLGRP_CONNTRACK_NEW;
504 } else if (events & (IPCT_STATUS | IPCT_PROTOINFO)) {
505 type = IPCTNL_MSG_CT_NEW;
506 group = NFNLGRP_CONNTRACK_UPDATE;
510 if (!item->report && !nfnetlink_has_listeners(group))
513 skb = ctnetlink_alloc_skb(tuple(ct, IP_CT_DIR_ORIGINAL), GFP_ATOMIC);
519 type |= NFNL_SUBSYS_CTNETLINK << 8;
520 nlh = NLMSG_PUT(skb, item->pid, 0, type, sizeof(struct nfgenmsg));
521 nfmsg = NLMSG_DATA(nlh);
523 nlh->nlmsg_flags = flags;
524 nfmsg->nfgen_family = nf_ct_l3num(ct);
525 nfmsg->version = NFNETLINK_V0;
529 nest_parms = nla_nest_start(skb, CTA_TUPLE_ORIG | NLA_F_NESTED);
531 goto nla_put_failure;
532 if (ctnetlink_dump_tuples(skb, tuple(ct, IP_CT_DIR_ORIGINAL)) < 0)
533 goto nla_put_failure;
534 nla_nest_end(skb, nest_parms);
536 nest_parms = nla_nest_start(skb, CTA_TUPLE_REPLY | NLA_F_NESTED);
538 goto nla_put_failure;
539 if (ctnetlink_dump_tuples(skb, tuple(ct, IP_CT_DIR_REPLY)) < 0)
540 goto nla_put_failure;
541 nla_nest_end(skb, nest_parms);
543 if (ctnetlink_dump_id(skb, ct) < 0)
544 goto nla_put_failure;
546 if (ctnetlink_dump_status(skb, ct) < 0)
547 goto nla_put_failure;
549 if (events & IPCT_DESTROY) {
550 if (ctnetlink_dump_counters(skb, ct, IP_CT_DIR_ORIGINAL) < 0 ||
551 ctnetlink_dump_counters(skb, ct, IP_CT_DIR_REPLY) < 0)
552 goto nla_put_failure;
554 if (ctnetlink_dump_timeout(skb, ct) < 0)
555 goto nla_put_failure;
557 if (events & IPCT_PROTOINFO
558 && ctnetlink_dump_protoinfo(skb, ct) < 0)
559 goto nla_put_failure;
561 if ((events & IPCT_HELPER || nfct_help(ct))
562 && ctnetlink_dump_helpinfo(skb, ct) < 0)
563 goto nla_put_failure;
565 #ifdef CONFIG_NF_CONNTRACK_SECMARK
566 if ((events & IPCT_SECMARK || ct->secmark)
567 && ctnetlink_dump_secmark(skb, ct) < 0)
568 goto nla_put_failure;
571 if (events & IPCT_RELATED &&
572 ctnetlink_dump_master(skb, ct) < 0)
573 goto nla_put_failure;
575 if (events & IPCT_NATSEQADJ &&
576 ctnetlink_dump_nat_seq_adj(skb, ct) < 0)
577 goto nla_put_failure;
580 #ifdef CONFIG_NF_CONNTRACK_MARK
581 if ((events & IPCT_MARK || ct->mark)
582 && ctnetlink_dump_mark(skb, ct) < 0)
583 goto nla_put_failure;
587 nlh->nlmsg_len = skb->tail - b;
588 nfnetlink_send(skb, item->pid, group, item->report);
594 nfnetlink_set_err(0, group, -ENOBUFS);
598 #endif /* CONFIG_NF_CONNTRACK_EVENTS */
600 static int ctnetlink_done(struct netlink_callback *cb)
603 nf_ct_put((struct nf_conn *)cb->args[1]);
608 ctnetlink_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
610 struct nf_conn *ct, *last;
611 struct nf_conntrack_tuple_hash *h;
612 struct hlist_nulls_node *n;
613 struct nfgenmsg *nfmsg = NLMSG_DATA(cb->nlh);
614 u_int8_t l3proto = nfmsg->nfgen_family;
617 last = (struct nf_conn *)cb->args[1];
618 for (; cb->args[0] < nf_conntrack_htable_size; cb->args[0]++) {
620 hlist_nulls_for_each_entry_rcu(h, n, &init_net.ct.hash[cb->args[0]],
622 if (NF_CT_DIRECTION(h) != IP_CT_DIR_ORIGINAL)
624 ct = nf_ct_tuplehash_to_ctrack(h);
625 if (!atomic_inc_not_zero(&ct->ct_general.use))
627 /* Dump entries of a given L3 protocol number.
628 * If it is not specified, ie. l3proto == 0,
629 * then dump everything. */
630 if (l3proto && nf_ct_l3num(ct) != l3proto)
637 if (ctnetlink_fill_info(skb, NETLINK_CB(cb->skb).pid,
641 cb->args[1] = (unsigned long)ct;
645 if (NFNL_MSG_TYPE(cb->nlh->nlmsg_type) ==
646 IPCTNL_MSG_CT_GET_CTRZERO) {
647 struct nf_conn_counter *acct;
649 acct = nf_conn_acct_find(ct);
651 memset(acct, 0, sizeof(struct nf_conn_counter[IP_CT_DIR_MAX]));
670 ctnetlink_parse_tuple_ip(struct nlattr *attr, struct nf_conntrack_tuple *tuple)
672 struct nlattr *tb[CTA_IP_MAX+1];
673 struct nf_conntrack_l3proto *l3proto;
676 nla_parse_nested(tb, CTA_IP_MAX, attr, NULL);
679 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
681 if (likely(l3proto->nlattr_to_tuple)) {
682 ret = nla_validate_nested(attr, CTA_IP_MAX,
683 l3proto->nla_policy);
685 ret = l3proto->nlattr_to_tuple(tb, tuple);
693 static const struct nla_policy proto_nla_policy[CTA_PROTO_MAX+1] = {
694 [CTA_PROTO_NUM] = { .type = NLA_U8 },
698 ctnetlink_parse_tuple_proto(struct nlattr *attr,
699 struct nf_conntrack_tuple *tuple)
701 struct nlattr *tb[CTA_PROTO_MAX+1];
702 struct nf_conntrack_l4proto *l4proto;
705 ret = nla_parse_nested(tb, CTA_PROTO_MAX, attr, proto_nla_policy);
709 if (!tb[CTA_PROTO_NUM])
711 tuple->dst.protonum = nla_get_u8(tb[CTA_PROTO_NUM]);
714 l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
716 if (likely(l4proto->nlattr_to_tuple)) {
717 ret = nla_validate_nested(attr, CTA_PROTO_MAX,
718 l4proto->nla_policy);
720 ret = l4proto->nlattr_to_tuple(tb, tuple);
729 ctnetlink_parse_tuple(struct nlattr *cda[], struct nf_conntrack_tuple *tuple,
730 enum ctattr_tuple type, u_int8_t l3num)
732 struct nlattr *tb[CTA_TUPLE_MAX+1];
735 memset(tuple, 0, sizeof(*tuple));
737 nla_parse_nested(tb, CTA_TUPLE_MAX, cda[type], NULL);
739 if (!tb[CTA_TUPLE_IP])
742 tuple->src.l3num = l3num;
744 err = ctnetlink_parse_tuple_ip(tb[CTA_TUPLE_IP], tuple);
748 if (!tb[CTA_TUPLE_PROTO])
751 err = ctnetlink_parse_tuple_proto(tb[CTA_TUPLE_PROTO], tuple);
755 /* orig and expect tuples get DIR_ORIGINAL */
756 if (type == CTA_TUPLE_REPLY)
757 tuple->dst.dir = IP_CT_DIR_REPLY;
759 tuple->dst.dir = IP_CT_DIR_ORIGINAL;
765 ctnetlink_parse_help(struct nlattr *attr, char **helper_name)
767 struct nlattr *tb[CTA_HELP_MAX+1];
769 nla_parse_nested(tb, CTA_HELP_MAX, attr, NULL);
771 if (!tb[CTA_HELP_NAME])
774 *helper_name = nla_data(tb[CTA_HELP_NAME]);
779 static const struct nla_policy ct_nla_policy[CTA_MAX+1] = {
780 [CTA_STATUS] = { .type = NLA_U32 },
781 [CTA_TIMEOUT] = { .type = NLA_U32 },
782 [CTA_MARK] = { .type = NLA_U32 },
783 [CTA_USE] = { .type = NLA_U32 },
784 [CTA_ID] = { .type = NLA_U32 },
788 ctnetlink_del_conntrack(struct sock *ctnl, struct sk_buff *skb,
789 struct nlmsghdr *nlh, struct nlattr *cda[])
791 struct nf_conntrack_tuple_hash *h;
792 struct nf_conntrack_tuple tuple;
794 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
795 u_int8_t u3 = nfmsg->nfgen_family;
798 if (cda[CTA_TUPLE_ORIG])
799 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG, u3);
800 else if (cda[CTA_TUPLE_REPLY])
801 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY, u3);
803 /* Flush the whole table */
804 nf_conntrack_flush(&init_net,
813 h = nf_conntrack_find_get(&init_net, &tuple);
817 ct = nf_ct_tuplehash_to_ctrack(h);
820 u_int32_t id = ntohl(nla_get_be32(cda[CTA_ID]));
821 if (id != (u32)(unsigned long)ct) {
827 nf_conntrack_event_report(IPCT_DESTROY,
832 /* death_by_timeout would report the event again */
833 set_bit(IPS_DYING_BIT, &ct->status);
842 ctnetlink_get_conntrack(struct sock *ctnl, struct sk_buff *skb,
843 struct nlmsghdr *nlh, struct nlattr *cda[])
845 struct nf_conntrack_tuple_hash *h;
846 struct nf_conntrack_tuple tuple;
848 struct sk_buff *skb2 = NULL;
849 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
850 u_int8_t u3 = nfmsg->nfgen_family;
853 if (nlh->nlmsg_flags & NLM_F_DUMP)
854 return netlink_dump_start(ctnl, skb, nlh, ctnetlink_dump_table,
857 if (cda[CTA_TUPLE_ORIG])
858 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_ORIG, u3);
859 else if (cda[CTA_TUPLE_REPLY])
860 err = ctnetlink_parse_tuple(cda, &tuple, CTA_TUPLE_REPLY, u3);
867 h = nf_conntrack_find_get(&init_net, &tuple);
871 ct = nf_ct_tuplehash_to_ctrack(h);
874 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
881 err = ctnetlink_fill_info(skb2, NETLINK_CB(skb).pid, nlh->nlmsg_seq,
882 IPCTNL_MSG_CT_NEW, 1, ct);
888 err = netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
900 #ifdef CONFIG_NF_NAT_NEEDED
902 ctnetlink_parse_nat_setup(struct nf_conn *ct,
903 enum nf_nat_manip_type manip,
906 typeof(nfnetlink_parse_nat_setup_hook) parse_nat_setup;
908 parse_nat_setup = rcu_dereference(nfnetlink_parse_nat_setup_hook);
909 if (!parse_nat_setup) {
910 #ifdef CONFIG_MODULES
912 spin_unlock_bh(&nf_conntrack_lock);
914 if (request_module("nf-nat-ipv4") < 0) {
916 spin_lock_bh(&nf_conntrack_lock);
921 spin_lock_bh(&nf_conntrack_lock);
923 if (nfnetlink_parse_nat_setup_hook)
929 return parse_nat_setup(ct, manip, attr);
934 ctnetlink_change_status(struct nf_conn *ct, struct nlattr *cda[])
937 unsigned int status = ntohl(nla_get_be32(cda[CTA_STATUS]));
938 d = ct->status ^ status;
940 if (d & (IPS_EXPECTED|IPS_CONFIRMED|IPS_DYING))
944 if (d & IPS_SEEN_REPLY && !(status & IPS_SEEN_REPLY))
945 /* SEEN_REPLY bit can only be set */
948 if (d & IPS_ASSURED && !(status & IPS_ASSURED))
949 /* ASSURED bit can only be set */
952 /* Be careful here, modifying NAT bits can screw up things,
953 * so don't let users modify them directly if they don't pass
955 ct->status |= status & ~(IPS_NAT_DONE_MASK | IPS_NAT_MASK);
960 ctnetlink_change_nat(struct nf_conn *ct, struct nlattr *cda[])
962 #ifdef CONFIG_NF_NAT_NEEDED
965 if (cda[CTA_NAT_DST]) {
966 ret = ctnetlink_parse_nat_setup(ct,
972 if (cda[CTA_NAT_SRC]) {
973 ret = ctnetlink_parse_nat_setup(ct,
986 ctnetlink_change_helper(struct nf_conn *ct, struct nlattr *cda[])
988 struct nf_conntrack_helper *helper;
989 struct nf_conn_help *help = nfct_help(ct);
993 /* don't change helper of sibling connections */
997 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname);
1001 if (!strcmp(helpname, "")) {
1002 if (help && help->helper) {
1003 /* we had a helper before ... */
1004 nf_ct_remove_expectations(ct);
1005 rcu_assign_pointer(help->helper, NULL);
1011 helper = __nf_conntrack_helper_find_byname(helpname);
1012 if (helper == NULL) {
1013 #ifdef CONFIG_MODULES
1014 spin_unlock_bh(&nf_conntrack_lock);
1016 if (request_module("nfct-helper-%s", helpname) < 0) {
1017 spin_lock_bh(&nf_conntrack_lock);
1021 spin_lock_bh(&nf_conntrack_lock);
1022 helper = __nf_conntrack_helper_find_byname(helpname);
1030 if (help->helper == helper)
1034 /* need to zero data of old helper */
1035 memset(&help->help, 0, sizeof(help->help));
1037 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
1042 rcu_assign_pointer(help->helper, helper);
1048 ctnetlink_change_timeout(struct nf_conn *ct, struct nlattr *cda[])
1050 u_int32_t timeout = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
1052 if (!del_timer(&ct->timeout))
1055 ct->timeout.expires = jiffies + timeout * HZ;
1056 add_timer(&ct->timeout);
1062 ctnetlink_change_protoinfo(struct nf_conn *ct, struct nlattr *cda[])
1064 struct nlattr *tb[CTA_PROTOINFO_MAX+1], *attr = cda[CTA_PROTOINFO];
1065 struct nf_conntrack_l4proto *l4proto;
1068 nla_parse_nested(tb, CTA_PROTOINFO_MAX, attr, NULL);
1071 l4proto = __nf_ct_l4proto_find(nf_ct_l3num(ct), nf_ct_protonum(ct));
1072 if (l4proto->from_nlattr)
1073 err = l4proto->from_nlattr(tb, ct);
1079 #ifdef CONFIG_NF_NAT_NEEDED
1081 change_nat_seq_adj(struct nf_nat_seq *natseq, struct nlattr *attr)
1083 struct nlattr *cda[CTA_NAT_SEQ_MAX+1];
1085 nla_parse_nested(cda, CTA_NAT_SEQ_MAX, attr, NULL);
1087 if (!cda[CTA_NAT_SEQ_CORRECTION_POS])
1090 natseq->correction_pos =
1091 ntohl(nla_get_be32(cda[CTA_NAT_SEQ_CORRECTION_POS]));
1093 if (!cda[CTA_NAT_SEQ_OFFSET_BEFORE])
1096 natseq->offset_before =
1097 ntohl(nla_get_be32(cda[CTA_NAT_SEQ_OFFSET_BEFORE]));
1099 if (!cda[CTA_NAT_SEQ_OFFSET_AFTER])
1102 natseq->offset_after =
1103 ntohl(nla_get_be32(cda[CTA_NAT_SEQ_OFFSET_AFTER]));
1109 ctnetlink_change_nat_seq_adj(struct nf_conn *ct, struct nlattr *cda[])
1112 struct nf_conn_nat *nat = nfct_nat(ct);
1117 if (cda[CTA_NAT_SEQ_ADJ_ORIG]) {
1118 ret = change_nat_seq_adj(&nat->seq[IP_CT_DIR_ORIGINAL],
1119 cda[CTA_NAT_SEQ_ADJ_ORIG]);
1123 ct->status |= IPS_SEQ_ADJUST;
1126 if (cda[CTA_NAT_SEQ_ADJ_REPLY]) {
1127 ret = change_nat_seq_adj(&nat->seq[IP_CT_DIR_REPLY],
1128 cda[CTA_NAT_SEQ_ADJ_REPLY]);
1132 ct->status |= IPS_SEQ_ADJUST;
1140 ctnetlink_change_conntrack(struct nf_conn *ct, struct nlattr *cda[])
1144 /* only allow NAT changes and master assignation for new conntracks */
1145 if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST] || cda[CTA_TUPLE_MASTER])
1148 if (cda[CTA_HELP]) {
1149 err = ctnetlink_change_helper(ct, cda);
1154 if (cda[CTA_TIMEOUT]) {
1155 err = ctnetlink_change_timeout(ct, cda);
1160 if (cda[CTA_STATUS]) {
1161 err = ctnetlink_change_status(ct, cda);
1166 if (cda[CTA_PROTOINFO]) {
1167 err = ctnetlink_change_protoinfo(ct, cda);
1172 #if defined(CONFIG_NF_CONNTRACK_MARK)
1174 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1177 #ifdef CONFIG_NF_NAT_NEEDED
1178 if (cda[CTA_NAT_SEQ_ADJ_ORIG] || cda[CTA_NAT_SEQ_ADJ_REPLY]) {
1179 err = ctnetlink_change_nat_seq_adj(ct, cda);
1189 ctnetlink_event_report(struct nf_conn *ct, u32 pid, int report)
1191 unsigned int events = 0;
1193 if (test_bit(IPS_EXPECTED_BIT, &ct->status))
1194 events |= IPCT_RELATED;
1198 nf_conntrack_event_report(IPCT_STATUS |
1210 static struct nf_conn *
1211 ctnetlink_create_conntrack(struct nlattr *cda[],
1212 struct nf_conntrack_tuple *otuple,
1213 struct nf_conntrack_tuple *rtuple,
1218 struct nf_conntrack_helper *helper;
1220 ct = nf_conntrack_alloc(&init_net, otuple, rtuple, GFP_ATOMIC);
1222 return ERR_PTR(-ENOMEM);
1224 if (!cda[CTA_TIMEOUT])
1226 ct->timeout.expires = ntohl(nla_get_be32(cda[CTA_TIMEOUT]));
1228 ct->timeout.expires = jiffies + ct->timeout.expires * HZ;
1229 ct->status |= IPS_CONFIRMED;
1232 if (cda[CTA_HELP]) {
1235 err = ctnetlink_parse_help(cda[CTA_HELP], &helpname);
1239 helper = __nf_conntrack_helper_find_byname(helpname);
1240 if (helper == NULL) {
1242 #ifdef CONFIG_MODULES
1243 if (request_module("nfct-helper-%s", helpname) < 0) {
1249 helper = __nf_conntrack_helper_find_byname(helpname);
1259 struct nf_conn_help *help;
1261 help = nf_ct_helper_ext_add(ct, GFP_ATOMIC);
1267 /* not in hash table yet so not strictly necessary */
1268 rcu_assign_pointer(help->helper, helper);
1271 /* try an implicit helper assignation */
1272 err = __nf_ct_try_assign_helper(ct, GFP_ATOMIC);
1277 if (cda[CTA_STATUS]) {
1278 err = ctnetlink_change_status(ct, cda);
1283 if (cda[CTA_NAT_SRC] || cda[CTA_NAT_DST]) {
1284 err = ctnetlink_change_nat(ct, cda);
1289 #ifdef CONFIG_NF_NAT_NEEDED
1290 if (cda[CTA_NAT_SEQ_ADJ_ORIG] || cda[CTA_NAT_SEQ_ADJ_REPLY]) {
1291 err = ctnetlink_change_nat_seq_adj(ct, cda);
1297 if (cda[CTA_PROTOINFO]) {
1298 err = ctnetlink_change_protoinfo(ct, cda);
1303 nf_ct_acct_ext_add(ct, GFP_ATOMIC);
1305 #if defined(CONFIG_NF_CONNTRACK_MARK)
1307 ct->mark = ntohl(nla_get_be32(cda[CTA_MARK]));
1310 /* setup master conntrack: this is a confirmed expectation */
1311 if (cda[CTA_TUPLE_MASTER]) {
1312 struct nf_conntrack_tuple master;
1313 struct nf_conntrack_tuple_hash *master_h;
1314 struct nf_conn *master_ct;
1316 err = ctnetlink_parse_tuple(cda, &master, CTA_TUPLE_MASTER, u3);
1320 master_h = nf_conntrack_find_get(&init_net, &master);
1321 if (master_h == NULL) {
1325 master_ct = nf_ct_tuplehash_to_ctrack(master_h);
1326 __set_bit(IPS_EXPECTED_BIT, &ct->status);
1327 ct->master = master_ct;
1330 add_timer(&ct->timeout);
1331 nf_conntrack_hash_insert(ct);
1339 nf_conntrack_free(ct);
1340 return ERR_PTR(err);
1344 ctnetlink_new_conntrack(struct sock *ctnl, struct sk_buff *skb,
1345 struct nlmsghdr *nlh, struct nlattr *cda[])
1347 struct nf_conntrack_tuple otuple, rtuple;
1348 struct nf_conntrack_tuple_hash *h = NULL;
1349 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
1350 u_int8_t u3 = nfmsg->nfgen_family;
1353 if (cda[CTA_TUPLE_ORIG]) {
1354 err = ctnetlink_parse_tuple(cda, &otuple, CTA_TUPLE_ORIG, u3);
1359 if (cda[CTA_TUPLE_REPLY]) {
1360 err = ctnetlink_parse_tuple(cda, &rtuple, CTA_TUPLE_REPLY, u3);
1365 spin_lock_bh(&nf_conntrack_lock);
1366 if (cda[CTA_TUPLE_ORIG])
1367 h = __nf_conntrack_find(&init_net, &otuple);
1368 else if (cda[CTA_TUPLE_REPLY])
1369 h = __nf_conntrack_find(&init_net, &rtuple);
1373 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1376 ct = ctnetlink_create_conntrack(cda, &otuple,
1383 nf_conntrack_get(&ct->ct_general);
1384 spin_unlock_bh(&nf_conntrack_lock);
1385 ctnetlink_event_report(ct,
1386 NETLINK_CB(skb).pid,
1390 spin_unlock_bh(&nf_conntrack_lock);
1394 /* implicit 'else' */
1396 /* We manipulate the conntrack inside the global conntrack table lock,
1397 * so there's no need to increase the refcount */
1399 if (!(nlh->nlmsg_flags & NLM_F_EXCL)) {
1400 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
1402 err = ctnetlink_change_conntrack(ct, cda);
1404 nf_conntrack_get(&ct->ct_general);
1405 spin_unlock_bh(&nf_conntrack_lock);
1406 ctnetlink_event_report(ct,
1407 NETLINK_CB(skb).pid,
1411 spin_unlock_bh(&nf_conntrack_lock);
1417 spin_unlock_bh(&nf_conntrack_lock);
1421 /***********************************************************************
1423 ***********************************************************************/
1426 ctnetlink_exp_dump_tuple(struct sk_buff *skb,
1427 const struct nf_conntrack_tuple *tuple,
1428 enum ctattr_expect type)
1430 struct nlattr *nest_parms;
1432 nest_parms = nla_nest_start(skb, type | NLA_F_NESTED);
1434 goto nla_put_failure;
1435 if (ctnetlink_dump_tuples(skb, tuple) < 0)
1436 goto nla_put_failure;
1437 nla_nest_end(skb, nest_parms);
1446 ctnetlink_exp_dump_mask(struct sk_buff *skb,
1447 const struct nf_conntrack_tuple *tuple,
1448 const struct nf_conntrack_tuple_mask *mask)
1451 struct nf_conntrack_l3proto *l3proto;
1452 struct nf_conntrack_l4proto *l4proto;
1453 struct nf_conntrack_tuple m;
1454 struct nlattr *nest_parms;
1456 memset(&m, 0xFF, sizeof(m));
1457 m.src.u.all = mask->src.u.all;
1458 memcpy(&m.src.u3, &mask->src.u3, sizeof(m.src.u3));
1460 nest_parms = nla_nest_start(skb, CTA_EXPECT_MASK | NLA_F_NESTED);
1462 goto nla_put_failure;
1464 l3proto = __nf_ct_l3proto_find(tuple->src.l3num);
1465 ret = ctnetlink_dump_tuples_ip(skb, &m, l3proto);
1467 if (unlikely(ret < 0))
1468 goto nla_put_failure;
1470 l4proto = __nf_ct_l4proto_find(tuple->src.l3num, tuple->dst.protonum);
1471 ret = ctnetlink_dump_tuples_proto(skb, &m, l4proto);
1472 if (unlikely(ret < 0))
1473 goto nla_put_failure;
1475 nla_nest_end(skb, nest_parms);
1484 ctnetlink_exp_dump_expect(struct sk_buff *skb,
1485 const struct nf_conntrack_expect *exp)
1487 struct nf_conn *master = exp->master;
1488 long timeout = (exp->timeout.expires - jiffies) / HZ;
1493 if (ctnetlink_exp_dump_tuple(skb, &exp->tuple, CTA_EXPECT_TUPLE) < 0)
1494 goto nla_put_failure;
1495 if (ctnetlink_exp_dump_mask(skb, &exp->tuple, &exp->mask) < 0)
1496 goto nla_put_failure;
1497 if (ctnetlink_exp_dump_tuple(skb,
1498 &master->tuplehash[IP_CT_DIR_ORIGINAL].tuple,
1499 CTA_EXPECT_MASTER) < 0)
1500 goto nla_put_failure;
1502 NLA_PUT_BE32(skb, CTA_EXPECT_TIMEOUT, htonl(timeout));
1503 NLA_PUT_BE32(skb, CTA_EXPECT_ID, htonl((unsigned long)exp));
1512 ctnetlink_exp_fill_info(struct sk_buff *skb, u32 pid, u32 seq,
1515 const struct nf_conntrack_expect *exp)
1517 struct nlmsghdr *nlh;
1518 struct nfgenmsg *nfmsg;
1519 unsigned char *b = skb_tail_pointer(skb);
1521 event |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
1522 nlh = NLMSG_PUT(skb, pid, seq, event, sizeof(struct nfgenmsg));
1523 nfmsg = NLMSG_DATA(nlh);
1525 nlh->nlmsg_flags = (nowait && pid) ? NLM_F_MULTI : 0;
1526 nfmsg->nfgen_family = exp->tuple.src.l3num;
1527 nfmsg->version = NFNETLINK_V0;
1530 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
1531 goto nla_put_failure;
1533 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
1542 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1543 static int ctnetlink_expect_event(struct notifier_block *this,
1544 unsigned long events, void *ptr)
1546 struct nlmsghdr *nlh;
1547 struct nfgenmsg *nfmsg;
1548 struct nf_exp_event *item = (struct nf_exp_event *)ptr;
1549 struct nf_conntrack_expect *exp = item->exp;
1550 struct sk_buff *skb;
1555 if (events & IPEXP_NEW) {
1556 type = IPCTNL_MSG_EXP_NEW;
1557 flags = NLM_F_CREATE|NLM_F_EXCL;
1561 if (!item->report &&
1562 !nfnetlink_has_listeners(NFNLGRP_CONNTRACK_EXP_NEW))
1565 skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC);
1571 type |= NFNL_SUBSYS_CTNETLINK_EXP << 8;
1572 nlh = NLMSG_PUT(skb, item->pid, 0, type, sizeof(struct nfgenmsg));
1573 nfmsg = NLMSG_DATA(nlh);
1575 nlh->nlmsg_flags = flags;
1576 nfmsg->nfgen_family = exp->tuple.src.l3num;
1577 nfmsg->version = NFNETLINK_V0;
1581 if (ctnetlink_exp_dump_expect(skb, exp) < 0)
1582 goto nla_put_failure;
1585 nlh->nlmsg_len = skb->tail - b;
1586 nfnetlink_send(skb, item->pid, NFNLGRP_CONNTRACK_EXP_NEW, item->report);
1592 nfnetlink_set_err(0, 0, -ENOBUFS);
1597 static int ctnetlink_exp_done(struct netlink_callback *cb)
1600 nf_ct_expect_put((struct nf_conntrack_expect *)cb->args[1]);
1605 ctnetlink_exp_dump_table(struct sk_buff *skb, struct netlink_callback *cb)
1607 struct net *net = &init_net;
1608 struct nf_conntrack_expect *exp, *last;
1609 struct nfgenmsg *nfmsg = NLMSG_DATA(cb->nlh);
1610 struct hlist_node *n;
1611 u_int8_t l3proto = nfmsg->nfgen_family;
1614 last = (struct nf_conntrack_expect *)cb->args[1];
1615 for (; cb->args[0] < nf_ct_expect_hsize; cb->args[0]++) {
1617 hlist_for_each_entry(exp, n, &net->ct.expect_hash[cb->args[0]],
1619 if (l3proto && exp->tuple.src.l3num != l3proto)
1626 if (ctnetlink_exp_fill_info(skb, NETLINK_CB(cb->skb).pid,
1630 if (!atomic_inc_not_zero(&exp->use))
1632 cb->args[1] = (unsigned long)exp;
1644 nf_ct_expect_put(last);
1649 static const struct nla_policy exp_nla_policy[CTA_EXPECT_MAX+1] = {
1650 [CTA_EXPECT_TIMEOUT] = { .type = NLA_U32 },
1651 [CTA_EXPECT_ID] = { .type = NLA_U32 },
1655 ctnetlink_get_expect(struct sock *ctnl, struct sk_buff *skb,
1656 struct nlmsghdr *nlh, struct nlattr *cda[])
1658 struct nf_conntrack_tuple tuple;
1659 struct nf_conntrack_expect *exp;
1660 struct sk_buff *skb2;
1661 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
1662 u_int8_t u3 = nfmsg->nfgen_family;
1665 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1666 return netlink_dump_start(ctnl, skb, nlh,
1667 ctnetlink_exp_dump_table,
1668 ctnetlink_exp_done);
1671 if (cda[CTA_EXPECT_MASTER])
1672 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_MASTER, u3);
1679 exp = nf_ct_expect_find_get(&init_net, &tuple);
1683 if (cda[CTA_EXPECT_ID]) {
1684 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
1685 if (ntohl(id) != (u32)(unsigned long)exp) {
1686 nf_ct_expect_put(exp);
1692 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1697 err = ctnetlink_exp_fill_info(skb2, NETLINK_CB(skb).pid,
1698 nlh->nlmsg_seq, IPCTNL_MSG_EXP_NEW,
1704 nf_ct_expect_put(exp);
1706 return netlink_unicast(ctnl, skb2, NETLINK_CB(skb).pid, MSG_DONTWAIT);
1711 nf_ct_expect_put(exp);
1716 ctnetlink_del_expect(struct sock *ctnl, struct sk_buff *skb,
1717 struct nlmsghdr *nlh, struct nlattr *cda[])
1719 struct nf_conntrack_expect *exp;
1720 struct nf_conntrack_tuple tuple;
1721 struct nf_conntrack_helper *h;
1722 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
1723 struct hlist_node *n, *next;
1724 u_int8_t u3 = nfmsg->nfgen_family;
1728 if (cda[CTA_EXPECT_TUPLE]) {
1729 /* delete a single expect by tuple */
1730 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1734 /* bump usage count to 2 */
1735 exp = nf_ct_expect_find_get(&init_net, &tuple);
1739 if (cda[CTA_EXPECT_ID]) {
1740 __be32 id = nla_get_be32(cda[CTA_EXPECT_ID]);
1741 if (ntohl(id) != (u32)(unsigned long)exp) {
1742 nf_ct_expect_put(exp);
1747 /* after list removal, usage count == 1 */
1748 nf_ct_unexpect_related(exp);
1749 /* have to put what we 'get' above.
1750 * after this line usage count == 0 */
1751 nf_ct_expect_put(exp);
1752 } else if (cda[CTA_EXPECT_HELP_NAME]) {
1753 char *name = nla_data(cda[CTA_EXPECT_HELP_NAME]);
1754 struct nf_conn_help *m_help;
1756 /* delete all expectations for this helper */
1757 spin_lock_bh(&nf_conntrack_lock);
1758 h = __nf_conntrack_helper_find_byname(name);
1760 spin_unlock_bh(&nf_conntrack_lock);
1763 for (i = 0; i < nf_ct_expect_hsize; i++) {
1764 hlist_for_each_entry_safe(exp, n, next,
1765 &init_net.ct.expect_hash[i],
1767 m_help = nfct_help(exp->master);
1768 if (m_help->helper == h
1769 && del_timer(&exp->timeout)) {
1770 nf_ct_unlink_expect(exp);
1771 nf_ct_expect_put(exp);
1775 spin_unlock_bh(&nf_conntrack_lock);
1777 /* This basically means we have to flush everything*/
1778 spin_lock_bh(&nf_conntrack_lock);
1779 for (i = 0; i < nf_ct_expect_hsize; i++) {
1780 hlist_for_each_entry_safe(exp, n, next,
1781 &init_net.ct.expect_hash[i],
1783 if (del_timer(&exp->timeout)) {
1784 nf_ct_unlink_expect(exp);
1785 nf_ct_expect_put(exp);
1789 spin_unlock_bh(&nf_conntrack_lock);
1795 ctnetlink_change_expect(struct nf_conntrack_expect *x, struct nlattr *cda[])
1801 ctnetlink_create_expect(struct nlattr *cda[], u_int8_t u3, u32 pid, int report)
1803 struct nf_conntrack_tuple tuple, mask, master_tuple;
1804 struct nf_conntrack_tuple_hash *h = NULL;
1805 struct nf_conntrack_expect *exp;
1807 struct nf_conn_help *help;
1810 /* caller guarantees that those three CTA_EXPECT_* exist */
1811 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1814 err = ctnetlink_parse_tuple(cda, &mask, CTA_EXPECT_MASK, u3);
1817 err = ctnetlink_parse_tuple(cda, &master_tuple, CTA_EXPECT_MASTER, u3);
1821 /* Look for master conntrack of this expectation */
1822 h = nf_conntrack_find_get(&init_net, &master_tuple);
1825 ct = nf_ct_tuplehash_to_ctrack(h);
1826 help = nfct_help(ct);
1828 if (!help || !help->helper) {
1829 /* such conntrack hasn't got any helper, abort */
1834 exp = nf_ct_expect_alloc(ct);
1841 exp->expectfn = NULL;
1845 memcpy(&exp->tuple, &tuple, sizeof(struct nf_conntrack_tuple));
1846 memcpy(&exp->mask.src.u3, &mask.src.u3, sizeof(exp->mask.src.u3));
1847 exp->mask.src.u.all = mask.src.u.all;
1849 err = nf_ct_expect_related_report(exp, pid, report);
1850 nf_ct_expect_put(exp);
1853 nf_ct_put(nf_ct_tuplehash_to_ctrack(h));
1858 ctnetlink_new_expect(struct sock *ctnl, struct sk_buff *skb,
1859 struct nlmsghdr *nlh, struct nlattr *cda[])
1861 struct nf_conntrack_tuple tuple;
1862 struct nf_conntrack_expect *exp;
1863 struct nfgenmsg *nfmsg = NLMSG_DATA(nlh);
1864 u_int8_t u3 = nfmsg->nfgen_family;
1867 if (!cda[CTA_EXPECT_TUPLE]
1868 || !cda[CTA_EXPECT_MASK]
1869 || !cda[CTA_EXPECT_MASTER])
1872 err = ctnetlink_parse_tuple(cda, &tuple, CTA_EXPECT_TUPLE, u3);
1876 spin_lock_bh(&nf_conntrack_lock);
1877 exp = __nf_ct_expect_find(&init_net, &tuple);
1880 spin_unlock_bh(&nf_conntrack_lock);
1882 if (nlh->nlmsg_flags & NLM_F_CREATE) {
1883 err = ctnetlink_create_expect(cda,
1885 NETLINK_CB(skb).pid,
1892 if (!(nlh->nlmsg_flags & NLM_F_EXCL))
1893 err = ctnetlink_change_expect(exp, cda);
1894 spin_unlock_bh(&nf_conntrack_lock);
1899 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1900 static struct notifier_block ctnl_notifier = {
1901 .notifier_call = ctnetlink_conntrack_event,
1904 static struct notifier_block ctnl_notifier_exp = {
1905 .notifier_call = ctnetlink_expect_event,
1909 static const struct nfnl_callback ctnl_cb[IPCTNL_MSG_MAX] = {
1910 [IPCTNL_MSG_CT_NEW] = { .call = ctnetlink_new_conntrack,
1911 .attr_count = CTA_MAX,
1912 .policy = ct_nla_policy },
1913 [IPCTNL_MSG_CT_GET] = { .call = ctnetlink_get_conntrack,
1914 .attr_count = CTA_MAX,
1915 .policy = ct_nla_policy },
1916 [IPCTNL_MSG_CT_DELETE] = { .call = ctnetlink_del_conntrack,
1917 .attr_count = CTA_MAX,
1918 .policy = ct_nla_policy },
1919 [IPCTNL_MSG_CT_GET_CTRZERO] = { .call = ctnetlink_get_conntrack,
1920 .attr_count = CTA_MAX,
1921 .policy = ct_nla_policy },
1924 static const struct nfnl_callback ctnl_exp_cb[IPCTNL_MSG_EXP_MAX] = {
1925 [IPCTNL_MSG_EXP_GET] = { .call = ctnetlink_get_expect,
1926 .attr_count = CTA_EXPECT_MAX,
1927 .policy = exp_nla_policy },
1928 [IPCTNL_MSG_EXP_NEW] = { .call = ctnetlink_new_expect,
1929 .attr_count = CTA_EXPECT_MAX,
1930 .policy = exp_nla_policy },
1931 [IPCTNL_MSG_EXP_DELETE] = { .call = ctnetlink_del_expect,
1932 .attr_count = CTA_EXPECT_MAX,
1933 .policy = exp_nla_policy },
1936 static const struct nfnetlink_subsystem ctnl_subsys = {
1937 .name = "conntrack",
1938 .subsys_id = NFNL_SUBSYS_CTNETLINK,
1939 .cb_count = IPCTNL_MSG_MAX,
1943 static const struct nfnetlink_subsystem ctnl_exp_subsys = {
1944 .name = "conntrack_expect",
1945 .subsys_id = NFNL_SUBSYS_CTNETLINK_EXP,
1946 .cb_count = IPCTNL_MSG_EXP_MAX,
1950 MODULE_ALIAS("ip_conntrack_netlink");
1951 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK);
1952 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_CTNETLINK_EXP);
1954 static int __init ctnetlink_init(void)
1958 printk("ctnetlink v%s: registering with nfnetlink.\n", version);
1959 ret = nfnetlink_subsys_register(&ctnl_subsys);
1961 printk("ctnetlink_init: cannot register with nfnetlink.\n");
1965 ret = nfnetlink_subsys_register(&ctnl_exp_subsys);
1967 printk("ctnetlink_init: cannot register exp with nfnetlink.\n");
1968 goto err_unreg_subsys;
1971 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1972 ret = nf_conntrack_register_notifier(&ctnl_notifier);
1974 printk("ctnetlink_init: cannot register notifier.\n");
1975 goto err_unreg_exp_subsys;
1978 ret = nf_ct_expect_register_notifier(&ctnl_notifier_exp);
1980 printk("ctnetlink_init: cannot expect register notifier.\n");
1981 goto err_unreg_notifier;
1987 #ifdef CONFIG_NF_CONNTRACK_EVENTS
1989 nf_conntrack_unregister_notifier(&ctnl_notifier);
1990 err_unreg_exp_subsys:
1991 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
1994 nfnetlink_subsys_unregister(&ctnl_subsys);
1999 static void __exit ctnetlink_exit(void)
2001 printk("ctnetlink: unregistering from nfnetlink.\n");
2003 #ifdef CONFIG_NF_CONNTRACK_EVENTS
2004 nf_ct_expect_unregister_notifier(&ctnl_notifier_exp);
2005 nf_conntrack_unregister_notifier(&ctnl_notifier);
2008 nfnetlink_subsys_unregister(&ctnl_exp_subsys);
2009 nfnetlink_subsys_unregister(&ctnl_subsys);
2013 module_init(ctnetlink_init);
2014 module_exit(ctnetlink_exit);